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;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* END RESET */

/* ############################################################## VARIABLE LISTINGS ############################################################## */
/* ############################################################## VARIABLE LISTINGS ############################################################## */
/* ############################################################## VARIABLE LISTINGS ############################################################## */

:root {
	--base-color: #1e1e1e;
	--main-text: #fbfbfb;
	--secondary-bg: #333333;
	--link-softblue: #a0b1d1;
	--hardblue: #8691A6;
	--highlight-orange: #f5a954;
	--highest: #444444;
	--halfstep: #333333;
	--stepdown: #222222;
	--softborder: #777777;
	--secondary: #f3f3f3;
	--secondarylight: #a0b1d1;
	--philo: #333333;
	--slidecolor: #555555;
	--nextproject: #3a3e41;
	--boxshadow: 0 2px 4px #00000020;
	--hovershadow: 0 8px 8px #00000050;
	--insetshadow: inset 0 2px 4px #00000012;
}

/* \/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\ BEGIN DARK MODE \/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\ */
/* \/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\ BEGIN DARK MODE \/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\ */
/* \/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\ BEGIN DARK MODE \/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\ */
/* \/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\ BEGIN DARK MODE \/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\ */
/* \/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\ BEGIN DARK MODE \/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\ */

.darkmode {
	--base-color: #f8f8f8;
	--main-text: #161C15;
	--secondary-bg: #f1f1f1;
	--link-softblue: #8691A6;
	--hardblue: #575859;
	--highlight-orange: #f5a954;
	--highest: #ffffff;
	--halfstep: #f5f5f5;
	--stepdown: #eeeeee;
	--softborder: #cccccc;
	--secondary: #f3f3f3;
	--secondarylight: #8691a6;
	--philo: #eeeeee;
	--nextproject: #8691A6;
	--slidecolor: #f8f8f8;
	--boxshadow: 0 2px 4px #00000020;
	--hovershadow: 0 8px 8px #00000050;
	--insetshadow: inset 0 2px 4px #00000012;
}

/* ############################################################### //END VARIABLES ############################################################### */
/* ############################################################### //END VARIABLES ############################################################### */
/* ############################################################### //END VARIABLES ############################################################### */

/* GLOBAL STYLES */

strong {
	font-weight: 700;
}

s {
	text-decoration: line-through;
}

a:link {
  color: var(--link-softblue);
  font-weight: 700;
}

a:visited {
  color: var(--link-softblue);
}

a:active {
  color: var(--link-softblue);
}

a:hover {
  color: var(--highlight-orange);
}

.wrapper {
	width: 1280px;
	margin: 0 auto;
	display: flex;
  flex-direction: row;
  justify-content: space-between;
	align-items: center;
  box-sizing: border-box;
	padding: 0 20px;
}

/* STRUCTUAL ELEMENTS */

body {
  font-family: Inter, sans-serif;
  background-color: var(--base-color);
  color: var(--main-text);
}

header {
  width: 100%;
  padding: 20px;
  background-color: var(--highest);
  border-bottom: 1px solid var(--stepdown);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
	align-items: center;
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: var(--boxshadow);
  max-height: 80px;
  z-index: 3;
}

header #logo {
  font-weight: 700;
  font-size: 20px;
  align-self: center;
}

header div#logo br.smhide {
	display: none;
}

header #logo a:link {
	text-decoration: none;
	color: var(--main-text);
}

header #logo a:visited {
	text-decoration: none;
	color: var(--main-text);
}

header #logo a:active {
	text-decoration: none;
	color: var(--main-text);
}

header #logo a:hover {
	text-decoration: none;
	color: var(--main-text);
}

header div#spell {
	display: flex;
	flex-direction: row;
	align-items: center;
	font-size: 20px;
	position: absolute;
	left: calc(50% - 18px);
}

header div#theme-switch {
	height: 34px;
	width: 34px;
	padding: 0;
	border-radius: 50%;
	background-color: var(--stepdown);
	border: 1px solid var(--softborder);
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	position: relative;
	box-shadow: 0 0 0 0 #00000050;
  transition: box-shadow 1s;
}

.darkmode header div#theme-switch {
	height: 34px;
	width: 34px;
	padding: 0;
	border-radius: 50%;
	background-color: var(--stepdown);
	border: 1px solid var(--softborder);
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	position: relative;
	box-shadow: 0 0 0 0 #ffffff50;
  transition: box-shadow 1s;
}

header div#theme-switch::after {
  position: absolute;
  display: none;
  content: "Cast a spell?";
  top: 44px;
  font-size: 12px;
  width: 84px;
  background-color: var(--base-color);
  text-align: center;
  box-sizing: border-box;
  padding: 5px;
  border-radius: 5px;
  border: 1px solid var(--softborder);
	opacity: 0;
}

header div#theme-switch.shazam::after {
  position: absolute;
  display: block;
  content: "SHAZAM!";
  top: 44px;
  font-size: 12px;
  width: 84px;
  background-color: var(--base-color);
  text-align: center;
  box-sizing: border-box;
  padding: 5px;
  border-radius: 5px;
  border: 1px solid var(--softborder);
	opacity: 0;
}

header div#theme-switch:hover::after {
	opacity: 100%;
	display: block;
}

header div#theme-switch:hover {
	box-shadow: 0 0 100px 0 #00000050;
}

.darkmode header div#theme-switch:hover {
	box-shadow: 0 0 100px 0 #ffffff50;
}

/*header div#theme-switch svg {
	fill: var(--main-text);
}

header div#theme-switch svg:last-child {
	display: none;
}

.darkmode header div#theme-switch svg:first-child {
	display: none;
}

.darkmode header div#theme-switch svg:last-child {
	display: block;
}*/

header nav {

}

header nav ul {

}

header nav ul li {
  display: inline-block;
}

header nav ul li a {
  font-size: 16px;
  font-weight: 700;
  background: var(--halfstep);
  border: 1px solid var(--softborder);
  border-radius: 5px;
  padding: 7px 10px 6px;
  color: #555;
  cursor: pointer;
  transition: 0.25s;
  text-decoration: none;
  display: block;
  text-align: center;
	box-sizing: border-box;
}

header nav ul li a:link {
	color: var(--maintext);
}

header nav ul li a:visited {
	color: var(--maintext);
}

header nav ul li a:active {
	color: var(--maintext);
}

header nav ul li a:hover {
	color: var(--highest);
	background: var(--highlight-orange);
  border: 1px solid var(--highest);
}

header nav ul li a:hover {

}

main {
	padding-top: 72px;
	background-color: var(--secondary-bg);
  background-repeat: repeat;
  background-position: top;
  background-image: url("../images/dots2.png");
}

main section {

}

main section#imgstage {

}

main section#imgstage img {
	width: 100%;
	display: block;
}

main section#hero {
  width: 100%;
  padding: 100px 0;
}

main section#hero h1 {
  width: 800px;
  font-size: 50px;
  text-align: center;
  line-height: 60px;
  margin: 0 auto;
  font-weight: 700;
}

main section#hero h2 {
  width: 800px;
  font-size: 22px;
  text-align: center;
  line-height: 28px;
  margin: 0 auto;
  font-weight: 250;
  padding-top: 40px;
}

main section#hero blockquote {
  width: 800px;
  font-size: 15px;
  text-align: center;
  line-height: 24px;
  margin: 40px auto 0;
  font-weight: 250;
  padding: 30px 40px;
  border: 1px solid var(--softborder);
  display: block;
  background-color: var(--base-color);
  border-radius: 10px;
  font-style: italic;
  box-sizing: border-box;
  position: relative;
  box-shadow: var(--boxshadow);
}

main section#hero blockquote::before {
  content: "\201c";
  position: absolute;
  top: 40px;
  left: 10px;
  font-size: 60px;
}

main section#hero blockquote::after {
  content: "\201d";
  position: absolute;
  bottom: 0px;
  right: 30px;
  font-size: 60px;
}

main section#hero a:link.cta, main section#hero a:visited.cta, main section#hero a:active.cta {
  color: #ffffff;
  text-decoration: none;
  display: block;
  margin: 40px auto 0;
  max-width: 170px;
  text-align: center;
}

main section#work, main section#allwork {
  padding-top: 100px;
  padding-bottom: 100px;
}

main section#work {
	background-color: var(--base-color);
	border-top: 1px solid var(--highest);
}

main section#work h2, main section#allwork h2 {
  max-width: 800px;
  margin: 0 auto;
  font-size: 44px;
  text-align: center;
  line-height: 50px;
  font-weight: 700;
}

main section#work p, main section#allwork p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 18px;
  text-align: center;
  line-height: 24px;
  padding-top: 10px;
  font-weight: 250;
}

main section#work p a:link, main section#work p a:visited, main section#work p a:active {
  margin-top: 20px;
  color: #ffffff;
  text-decoration: none;
	display: inline-block;
}

main section#work div#featuredworks, main section#allwork div.workrow {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 40px;
  box-sizing: border-box;
}

main section#work div#featuredworks {
	padding: 40px 20px;
}

main section#allwork div.workrow {
	padding: 20px;
}

main section#work div#featuredworks a.feature, main section#allwork div.workrow a.feature {
  box-shadow: var(--boxshadow);
  min-height: 100px;
  background-color: var(--highest);
  border-radius: 10px;
  transition: 0.5s;
  cursor: pointer;
  overflow: hidden;
  text-decoration: none;
  color: var(--maintext);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/*main section#work div#featuredworks a.feature:first-child {
	background-color: #fff5d6;
}

main section#work div#featuredworks a.feature:nth-child(2) {
	background-color: #c6d6f5;
}

main section#work div#featuredworks a.feature:last-child {
	background-color: #d3dadb;
}*/

main section#work div#featuredworks a.feature:hover, main section#allwork div.workrow a.feature:hover {
  box-shadow: var(--hovershadow);
}

main section#work div#featuredworks a.feature img, main section#allwork div.workrow a.feature img {
  max-width: 100%;
}

main section#work div#featuredworks a.feature div.sidehop, main section#allwork div.workrow a.feature div.sidehop {
  display: flex;
  flex-direction: column;
  height: 100%;
}

main section#work div#featuredworks a.feature div.sidehop h3, main section#allwork div.workrow a.feature div.sidehop h3 {
  text-align: left;
  display: block;
  padding: 20px 20px 0;
  font-weight: 700;
  font-size: 22px;
  transition: 0.5s;
}

main section#work div#featuredworks a.feature:hover div.sidehop h3, main section#allwork div.workrow a.feature:hover div.sidehop h3 {
  color: var(--highlightorage);
}

main section#work div#featuredworks a.feature div.sidehop p, main section#allwork div.workrow a.feature div.sidehop p {
  text-align: left;
  display: block;
  padding: 20px;
  line-height: 28px;
  font-size: 16px;
  flex-grow: 4;
}

main section#work div#featuredworks a.feature div.sidehop div.metric, main section#allwork div.workrow a.feature div.sidehop div.metric {
  display: block;
  width: calc(100% - 40px);
  position: relative;
  padding: 15px;
  border-radius: 7px;
  background-color: var(--halfstep);
  margin: 0 20px;
  box-sizing: border-box;
  color: var(--link-softblue);
  font-weight: 700;
  font-size: 15px;
}

main section#work div#featuredworks a.feature div.sidehop div.pillcontainer, main section#allwork div.workrow a.feature div.sidehop div.pillcontainer {
  display: flex;
  box-sizing: border-box;
  padding: 20px 15px;
  border-spacing: 5px 0px;
	gap: 10px;
}

main section#work div#featuredworks a.feature div.sidehop div.pill, main section#allwork div.workrow a.feature div.sidehop div.pill {
  border-radius: 50px;
  background-color: var(--halfstep);
  padding: 10px;
  font-size: 12px;
  font-weight: 300;
  text-align: center;
  align-self: center;
}

main section#about {
  width: 100%;
  box-sizing: border-box;
  padding: 40px;
	box-shadow: var(--insetshadow);
}

main section#about h2 {
  max-width: 800px;
  margin: 0 auto;
  font-size: 44px;
  text-align: center;
  line-height: 50px;
  font-weight: 700;
}

main section#about p {
  max-width: 800px;
  font-size: 18px;
  text-align: center;
  line-height: 24px;
  margin: 0 auto;
  font-weight: 250;
  padding-top: 40px;
}

main section#about div#photogallery {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 40px auto 0;
  max-width: 1200px;
  justify-content: center;
  gap: 20px;
}

main section#about div#photogallery img {
  max-width: 100%;
  box-shadow: var(--boxshadow);
  height: 320px;
}

main section#about div#philosophy {
  max-width: 800px;
  margin: 40px auto 0;
  border-radius: 10px;
  display: flex;
  flex-direction: row;
  background: var(--base-color);
  box-sizing: border-box;
  padding: 30px;
  border: 1px solid var(--softborder);
  box-shadow: var(--boxshadow);
}

main section#about div#philosophy div.leftside, main section#about div#philosophy div.rightside {
  width: 50%;
}

main section#about div#philosophy div.leftside h3 {
  font-weight: 700;
  font-size: 22px;
}

main section#about div#philosophy div.leftside p {
  padding-top: 20px;
  font-size: 16px;
  line-height: 22px;
  text-align: left;
  font-weight: 250;
  padding-right: 20px;
}

main section#about div#philosophy div.rightside ul {
  display: block;
  background-color: var(--philo);
  box-sizing: border-box;
  padding: 40px 40px 25px 40px;
  border-radius: 7px;
}

main section#about div#philosophy div.rightside ul li {
  list-style-type: circle;
  list-style-position: outside;
  padding-bottom: 15px;
}

main section#about div#businessconnection {
  max-width: 800px;
  margin: 20px auto 0;
  border-radius: 10px;
  background: var(--base-color);
  box-sizing: border-box;
  padding: 30px;
  border: 1px solid var(--softborder);
  box-shadow: var(--boxshadow);
}

main section#about div#businessconnection h3 {
	font-weight: 700;
  font-size: 22px;
}

main section#about div#businessconnection p {
  text-align: left;
  font-size: 16px;
  padding-top: 20px;
  line-height: 22px;
}

main section#about div#nonwork {
  display: flex;
  max-width: 800px;
  margin: 0 auto;
  flex-direction: row;
  justify-content: space-between;
  box-sizing: border-box;
  padding-top: 20px;
  gap: 20px;
}

main section#about div#nonwork div.fact {
  background: var(--base-color);
  border: 1px solid var(--softborder);
  box-shadow: var(--boxshadow);
  box-sizing: border-box;
  border-radius: 10px;
  padding: 20px;
  width: 33%;
}

main section#about div#nonwork div.fact h4 {
  font-size: 20px;
  font-weight: 700;
  padding-bottom: 20px;
  display: block;
  width: 100%;
  text-align: left;
}

main section#about div#nonwork div.fact ul {

}

main section#about div#nonwork div.fact ul li {
  list-style-type: circle;
  list-style-position: inside;
  padding-bottom: 15px;
  font-size: 13px;
}

main section#contact {
  width: 100%;
  box-sizing: border-box;
  padding: 40px;
  border-top: 1px solid var(--highest);
	background-color: var(--base-color);
}

main section#contact h2 {
  max-width: 800px;
  margin: 0 auto;
  font-size: 44px;
  text-align: center;
  line-height: 50px;
  font-weight: 700;
}

main section#contact p {
  max-width: 800px;
  font-size: 18px;
  text-align: center;
  line-height: 24px;
  margin: 0 auto;
  font-weight: 250;
  padding-top: 40px;
}

main section#contact div#contactbox {
  max-width: 800px;
  margin: 40px auto 10px;
  font-weight: 250;
  box-sizing: border-box;
  padding: 20px;
  background-color: var(--highest);
  border-radius: 10px;
  box-shadow: var(--boxshadow);
}

main section#contact div#contactbox h3 {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
}

main section#contact div#contactbox p {
  padding-top: 20px;
  font-size: 16px;
  line-height: 20px;
}

main section#contact div#contactbox div.buttonrow {
  padding-top: 20px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 20px;
}

footer {
  width: 100%;
  box-sizing: border-box;
  padding: 40px;
  background-color: var(--highest);
  text-align: center;
	line-height: 24px;
}

footer img {
  max-width: 24px;
  vertical-align: middle;
}

/* BEGIN CLASSES*/

.cta, a.cta:link, a.cta:visited, a.cta:active {
  border: none;
  background: var(--hardblue);
  color: #ffffff;
  padding: 10px;
  font-size: 20px;
  border-radius: 5px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.5s;
	text-decoration: none;
	text-align: center;
}

.cta:hover, a:hover.cta {
  background-color: var(--highlight-orange);
}

.secondary, a.seconday:link, a.secondary:link, a.secondary:active {
  border: 1px solid var(--softborder);
  background: var(--secondary);
  color: var(--hardblue);
  padding: 10px;
  font-size: 20px;
  border-radius: 5px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.5s;
	text-decoration: none;
	text-align: center;
}

.secondary:hover, a:hover.secondary {
  background-color: #465561;
  color: #ffffff;
}

.blur {

}

.dontwrap {
	white-space: nowrap;
}

.highlight {
  color: var(--secondarylight);
}

.special {
  color: var(--highlight-orange);
}

.hidden {
  display: none;
}

.mobhidden {
  display: inline;
}

.embed-container {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	max-width: 100%;
}

.embed-container iframe, .embed-container object, .embed-container embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

em {
	font-style: italic;
}

hr {
  border-top: 2px solid var(--softborder);
  border-bottom: none;
  border-left: none;
  border-right: none;
  margin-bottom: 40px;
}

hr.softer {
  border-top: 1px dashed var(--softborder);
  border-bottom: none;
  border-left: none;
  border-right: none;
  margin-bottom: 40px;
}

main section.slide div.formula {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 10px;
  padding: 30px 40px;
  border: 1px solid var(--softborder);
  background-color: var(--highest);
  border-radius: 10px;
  box-sizing: border-box;
  box-shadow: var(--boxshadow);
  justify-content: center;
	align-items: center;;
  margin-bottom: 20px;
}

main section.slide div.formula div.result {
	text-align: right;
}

main section.slide div.formula div.division {
	display: flex;
	flex-direction: column;
}

main section.slide div.formula div.division div.top {
	border-bottom: 1px solid var(--hardblue);
	text-align: center;
	padding: 5px 0;
}

main section.slide div.formula div.division div.bottom {
	text-align: center;
	padding: 5px 0;
}

main section.slide div.formula div.multiply {
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	align-items: center;
}

main section.slide div.formula div.multiply div {
	padding: 0 5px;
}

main section.slide p img.floatright {
	float: right;
	margin-left: 20px;
}

main section.slide p img.data {
  max-width: 280px;
  border-radius: 10px;
  border: 1px solid var(--hardblue);
  box-shadow: var(--boxshadow);
}

/* END CLASSES */

/* [][][][][][][][][][][][][][][][][][][][][][][][][][][] // START 2ND PAGE ELEMENTS [][][][][][][][][][][][][][][][][][][][][][][][][][][] */

main section#stage {
	padding: 100px 0 0;
}

main section#stage h1 {
	max-width: 800px;
  margin: 0 auto;
  font-size: 44px;
  text-align: center;
  line-height: 50px;
  font-weight: 700;
}

main section#stage p {
	max-width: 800px;
  font-size: 18px;
  text-align: center;
  line-height: 24px;
  margin: 0 auto;
  font-weight: 250;
  padding-top: 40px;
}

main section#stage img {
  margin: 40px auto 0;
  max-width: 1280px;
  display: block;
}

main section#slide1 {
	border-top: 1px solid var(--highest);
	background-color: var(--slidecolor);
}

main section#slide1 div#overview {

}

main section#slide1 div#overview p {
	max-width: 530px;
}

main section#slide1 div#role {

}

main section#slide2 {
	box-shadow: var(--insetshadow);
}

main section#slide3 {
	border-top: 1px solid var(--highest);
	background-color: var(--slidecolor);
}

main section#slide3 blockquote {
  width: 800px;
  font-size: 15px;
  text-align: center;
  line-height: 24px;
  margin: 0px auto 0;
  font-weight: 250;
  padding: 30px 40px;
  border: 1px solid var(--softborder);
  display: block;
  background-color: var(--base-color);
  border-radius: 10px;
  font-style: italic;
  box-sizing: border-box;
  position: relative;
  box-shadow: var(--boxshadow);
}

main section#slide3 blockquote::before {
  content: "\201c";
  position: absolute;
  top: 40px;
  left: 10px;
  font-size: 60px;
}

main section#slide3 blockquote::after {
  content: "\201d";
  position: absolute;
  bottom: 0px;
  right: 30px;
  font-size: 60px;
}

main section#slide4 {
	box-shadow: var(--insetshadow);
}

main section#slide5 {
	border-top: 1px solid var(--highest);
	background-color: var(--slidecolor);
}

main section#slide6 {
	box-shadow: var(--insetshadow);
}

main section#slide7 {
	border-top: 1px solid var(--highest);
	background-color: var(--slidecolor);
}

main section div#businesswin {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 40px;
  padding: 30px 40px;
  border: 1px solid var(--softborder);
  background-color: var(--highest);
  border-radius: 10px;
  box-sizing: border-box;
  box-shadow: var(--boxshadow);
  justify-content: space-between;
  margin-bottom: 40px;
}

main section div#businesswin div.winbox {

}

main section div#businesswin div.winbox h4 {
	font-weight: 500;
	text-align: center;
	font-size: 15px;
}

main section div#businesswin div.winbox p.stat {
  font-weight: 700;
  font-size: 35px;
	text-align: center;
}

main section div#figmabox {
  max-width: 230px;
  width: 100%;
  box-sizing: border-box;
  padding: 10px;
  margin: 0 auto;
  background-color: var(--halfstep);
  border-radius: 10px;
  box-shadow: var(--boxshadow);
  border: solid 1px var(--softborder);
}

main section div#figmabox a:link, main section div#figmabox a:visited, main section div#figmabox a:active, main section div#figmabox a:hover {
	display: flex;
	flex-direction: row;
	gap: 20px;
	text-decoration: none;
	color: var(--maintext);
}

main section div#figmabox div.left {

}

main section div#figmabox img {
	height: 44px;
}

main section div#figmabox div.right {

}

main section div#figmabox div.right span.sml {
	font-size: 10px;
	line-height: 12px;
}

main section#nextproject {
	padding: 80px 0;
	background-color: var(--nextproject);
	border-top: 1px solid var(--highest);
	background-repeat: repeat;
  background-position: top;
  background-image: url("../images/bgtexture.png");
}

main section#nextproject h2 {
	color: #ffffff;
	font-weight: 700;
	margin-bottom: 40px;
	font-size: 28px;
}

main section#nextproject div#npholder, main section.slide div.sidebyside {
	display: flex;
	flex-direction: row;
	gap: 40px;
}

main section#nextproject div#npholder div.side {

}

main section#nextproject div#npholder div.side div.tags {
	display: flex;
	flex-direction: row;
	gap: 10px;
	margin-bottom: 20px;
}

main section#nextproject div#npholder div.side div.tags div.tag {
  background-color: #fbfbfb;
	color: #161C15;
  border-radius: 20px;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  align-self: center;
}

main section#nextproject div#npholder div.side h3 {
	color: #ffffff;
	font-weight: 700;
	font-size: 22px;
	padding-bottom: 20px;
}

main section#nextproject div#npholder div.side p {
	color: #ffffff;
	font-size: 16px;
	line-height: 22px;
}

main section#nextproject div#npholder div.side img {
  max-width: 323px;
}

main section#nextproject div#npholder div.side a.cta {
  color: #ffffff;
  text-decoration: none;
  margin: 40px auto 20px;
  display: block;
  text-align: center;
  width: 200px;
}

main section#nextproject div#npholder div.side a.viewall {
	color: #ffffff;
	text-align: center;
	display: block;
	transition: 0.5s;
}

main section#nextproject div#npholder div.side a:hover.viewall {
	color: var(--highlight-orange);
}

/* BEGIN CLASSES PAGE 2 */

br.mobhidden2 {
	display: none;
}

main section.slide {
	padding: 100px 0 80px;
	width: 100%;
}

main section.slide ul {
  padding-left: 20px;
	padding-bottom: 10px;
}

main section.slide ul li {
  list-style-type: circle;
  list-style-position: outside;
  padding-bottom: 15px;
}

main section.slide div.sidebyside {
	display: flex;
	flex-direction: row;
	max-width: 800px;
	margin: 0 auto;
	gap: 40px;
}

main section.slide div.sidebyside2 {
	display: flex;
	flex-direction: row;
	max-width: 800px;
	margin: 0 auto;
	gap: 10px;
}

main section.slide div.sidebyside div img, main section.slide div.sidebyside2 div img {
	max-width: 100%;
}

main section.slide div.container, main section#nextproject div.container {
	max-width: 800px;
	margin: 0 auto;
}

main section.slide h2 {
  font-weight: 700;
  font-size: 26px;
  padding-bottom: 40px;
}

main section.slide h3 {
  font-size: 20px;
  font-weight: 700;
  padding-bottom: 20px;
}

main section.slide p {
	text-align: left;
  padding: 0 0 20px;
  line-height: 28px;
  font-size: 16px;
}

main section.slide p a.cta {
  text-align: center;
  margin: 0 auto;
  color: #ffffff;
  text-decoration: none;
}

main section.slide p.centering {
	text-align: center;
}

main section.slide p img {
	max-width: 100%;
	box-shadow: var(--boxshadow);
}

main section.slide p img.noshade {
	box-shadow: none;
}

main section.slide p.date {
	display: block;
	border-top: 1px solid var(--softborder);
	border-bottom: 1px solid var(--softborder);
	padding: 15px 0;
	margin-bottom: 20px;
}

main section.slide div.push {
	margin-bottom: 40px;
}

/* [][][][][][][][][][][][][][][][][][][][][][][][][][][][][][] NEW MEDIA SIZE [][][][][][][][][][][][][][][][][][][][][][][][][][][][][][] */
/* [][][][][][][][][][][][][][][][][][][][][][][][][][][][][][] NEW MEDIA SIZE [][][][][][][][][][][][][][][][][][][][][][][][][][][][][][] */
/* [][][][][][][][][][][][][][][][][][][][][][][][][][][][][][] NEW MEDIA SIZE [][][][][][][][][][][][][][][][][][][][][][][][][][][][][][] */
/* [][][][][][][][][][][][][][][][][][][][][][][][][][][][][][] NEW MEDIA SIZE [][][][][][][][][][][][][][][][][][][][][][][][][][][][][][] */
/* [][][][][][][][][][][][][][][][][][][][][][][][][][][][][][] NEW MEDIA SIZE [][][][][][][][][][][][][][][][][][][][][][][][][][][][][][] */

@media all and (max-width: 1280px) and (min-width: 1024px) {

	.wrapper {
		width: 100%;
	}

	main section#work div#featuredworks, main section#work div.workrow {
	  width: 100%;
	  gap: 20px;
	}

	main section#work div#featuredworks a.feature div.sidehop h3, main section#work div.workrow a.feature div.sidehop h3 {
	  font-size: 19px;
	}

	main section#stage img {
		max-width: 100%;
		box-sizing: border-box;
		padding: 0 20px;
	}

	main section#about div#photogallery {
		flex-direction: row;
		flex-wrap: nowrap;
		max-width: 100%;
		justify-content: center;
		gap: 20px;
		box-sizing: border-box;
		padding: 0 20px;
		align-content: center;
	}

	main section#about div#photogallery img {
		 max-width: 100%;
		 height: 195px;
	 }

}

/* [][][][][][][][][][][][][][][][][][][][][][][][][][][][][][] NEW MEDIA SIZE [][][][][][][][][][][][][][][][][][][][][][][][][][][][][][] */
/* [][][][][][][][][][][][][][][][][][][][][][][][][][][][][][] NEW MEDIA SIZE [][][][][][][][][][][][][][][][][][][][][][][][][][][][][][] */
/* [][][][][][][][][][][][][][][][][][][][][][][][][][][][][][] NEW MEDIA SIZE [][][][][][][][][][][][][][][][][][][][][][][][][][][][][][] */
/* [][][][][][][][][][][][][][][][][][][][][][][][][][][][][][] NEW MEDIA SIZE [][][][][][][][][][][][][][][][][][][][][][][][][][][][][][] */
/* [][][][][][][][][][][][][][][][][][][][][][][][][][][][][][] NEW MEDIA SIZE [][][][][][][][][][][][][][][][][][][][][][][][][][][][][][] */

@media all and (max-width: 1023px) and (min-width: 800px) {

	main {
		padding: 0;
	}

	.wrapper {
		width: 100%;
		padding: 0;
	}

	header div#spell {
	  position: relative;
	  left: inherit;
	}

  main section#hero {
    width: 100%;
    padding: 140px 20px 100px;
    box-sizing: border-box;
  }

  main section#hero h1 {
    width: 100%;
    font-size: 44px;
  }

  main section#hero h2 {
    width: 100%;
    font-size: 20px;
  }

  main section#hero blockquote {
    width: 100%;
    font-size: 14px;
  }

	main section#allwork h2 {
		font-size: 34px;
	}

	main section#work p, main section#allwork p {
	  box-sizing: border-box;
		padding-left: 20px;
		padding-right: 20px;
	}

  main section#work div#featuredworks, main section#allwork div.workrow {
    flex-direction: column;
  }

  main section#work div#featuredworks a.feature, main section#allwork div.workrow a.feature {
    flex-direction: row;
  }

  main section#work div#featuredworks a.feature img, main section#allwork div.workrow a.feature img {
    max-width: 50%;
    align-self: center;
  }

  main section#about div#nonwork div.fact ul li {
    font-size: 12px;
  }

	main section#stage h1 {
		font-size: 34px;
	}

	main section#stage img {
		max-width: 100%;
		box-sizing: border-box;
		padding: 0 20px;
	}

	main section.slide div.container, main section#nextproject div.container {
	  box-sizing: border-box;
	  padding: 0 20px;
	}

	main section.slide div.sidebyside {
	  gap: 20px;
	  box-sizing: border-box;
	  padding: 0 20px;
	}

	main section#about div#photogallery {
		flex-direction: row;
		flex-wrap: wrap;
		max-width: 100%;
		justify-content: center;
		gap: 20px;
		box-sizing: border-box;
		padding: 0 20px;
		align-content: center;
	}

	main section#about div#photogallery img {
		 max-width: 100%;
		 height: 195px;
	 }

	main section#imgstage img {
	  margin-top: 50px;
	}

}

/* [][][][][][][][][][][][][][][][][][][][][][][][][][][][][][] NEW MEDIA SIZE [][][][][][][][][][][][][][][][][][][][][][][][][][][][][][] */
/* [][][][][][][][][][][][][][][][][][][][][][][][][][][][][][] NEW MEDIA SIZE [][][][][][][][][][][][][][][][][][][][][][][][][][][][][][] */
/* [][][][][][][][][][][][][][][][][][][][][][][][][][][][][][] NEW MEDIA SIZE [][][][][][][][][][][][][][][][][][][][][][][][][][][][][][] */
/* [][][][][][][][][][][][][][][][][][][][][][][][][][][][][][] NEW MEDIA SIZE [][][][][][][][][][][][][][][][][][][][][][][][][][][][][][] */
/* [][][][][][][][][][][][][][][][][][][][][][][][][][][][][][] NEW MEDIA SIZE [][][][][][][][][][][][][][][][][][][][][][][][][][][][][][] */

@media all and (max-width: 799px) and (min-width: 340px) {

	.wrapper {
		width: 100%;
		padding: 0;
	}

  header nav div.hidden {
    display: block;
  }

  header span.mobhidden {
    display: none;
  }

	br.mobhidden2 {
		display: inline;
	}

	header div#logo {
		width: 132px;
		font-size: 14px;
	}

  header div#logo span.highlight {
    font-size: 12px;
  }

	header div#spell {
	  display: flex;
	  flex-direction: row;
	  align-items: center;
	  font-size: 20px;
	  position: absolute;
	  left: calc(50% - 18px);
	}

	header div#theme-switch::after {
	  display: none;
	}

	header div#theme-switch.shazam::after {
		display: none;
	}

  header nav div#mobilemenu {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    cursor: pointer;
		font-size: 14px;
   }

  header nav div#bars {
    height: 34px;
    width: 34px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
  }

  header nav div#bars div.bar {
    background-color: var(--main-text);
    width: 100%;
    height: 20%;
		transition: 0.3s;
  }

	header nav div#bars div.bar:first-child.close {
		transform: rotate(-45deg) translate(-9px, 10px);
	}

	header nav div#bars div.bar:nth-child(2).close {
		display: none;
	}

	header nav div#bars div.bar:last-child.close {
		transform: rotate(45deg) translate(-9px, -10px);
	}

	header nav ul {
	 display: none;
	 position: absolute;
	 background-color: var(--base-color);
	 width: 100%;
	 right: 0;
	 top: 74px;
	 box-sizing: border-box;
	 padding: 0 0px;
	 box-shadow: var(--boxshadow);
	 border: 3px solid var(--highest);
 }

	header nav ul li {
		display: block;
	}

	header nav ul li a {
		width: 100%;
		border-radius: 0;
		padding: 35px 10px;
		border-bottom: 2px solid var(--highest);
		border-top: none;
		border-left: 0;
		border-right: 0;
		box-sizing: border-box;
	}

	header nav ul li:last-child a {
		border: none;
	}

	main {
		padding: 0;
	}

	main section#imgstage img {
	  margin-top: 74px;
	}

  main section#hero {
    width: 100%;
    padding: 140px 20px 50px;
    box-sizing: border-box;
  }

  main section#hero h1 {
    width: 100%;
    font-size: 34px;
    line-height: 40px;
  }

  main section#hero h1 br {
    display: inline-block;
  }

	main section#hero h1 br.mobhidden {
		display: none;
	}

  main section#hero h2 {
    width: 100%;
    font-size: 18px;
  }

  main section#hero blockquote::before {
    top: 30px;
    font-size: 50px;
    left: 5px;
  }

  main section#hero blockquote {
    width: 100%;
    font-size: 14px;
    padding: 20px 30px;
  }

	main section#hero blockquote br.hidden {
		display: inline-block;
	}

  main section#hero blockquote::after {
    right: 20px;
    font-size: 50px;
  }

	main section#stage {
		padding: 140px 0 50px;
	}

	main section#stage p {
    width: 100%;
    font-size: 18px;
    line-height: 28px;
    box-sizing: border-box;
    padding: 40px 20px 0;
  }

  main section#work {
    padding-top: 50px;
    padding-bottom: 50px;
  }

	main section#allwork {
		padding-bottom: 20px;
	}

  main section#work h2, main section#allwork h2 {
    max-width: 100%;
    font-size: 30px;
    line-height: 50px;
  }

  main section#work p, main section#allwork p {
    padding: 10px 20px 0;
    line-height: 28px;
  }

  main section#work div#featuredworks, main section#allwork div.workrow {
    flex-direction: column;
  }

  main section#work div#featuredworks a.feature, main section#allwork div.workrow a.feature {
    flex-direction: column;
  }

  main section#work div#featuredworks a.feature img, main section#allwork div.workrow a.feature img {
    max-width: 100%;
    align-self: center;
  }

  main section#about {
    padding: 40px 20px;
  }

  main section#about h2 {
    max-width: 100%;
    font-size: 30px;
    line-height: 50px;
  }


  main section#about p {
    line-height: 28px;
    padding-top: 20px;
  }

  main section#about div#philosophy {
    max-width: 100%;
    flex-direction: column;
  }

  main section#about div#philosophy div.leftside, main section#about div#philosophy div.rightside {
    width: 100%;
  }

  main section#about div#philosophy div.leftside p {
    padding: 20px 0;
  }

  main section#about div#nonwork {
    max-width: 100%;
    flex-direction: column;
    gap: 20px;
  }

  main section#about div#nonwork div.fact {
    width: 100%
  }

  main section#about div#nonwork div.fact ul li {
    font-size: 16px;
  }

  main section#contact h2 {
    max-width: 100%;
    font-size: 30px;
    line-height: 50px;
  }

  main section#contact p {
    line-height: 28px;
    padding-top: 20px;
  }

  main section#contact div#contactbox div.buttonrow {
    flex-direction: column;
  }

	main section#stage h1 {
		font-size: 34px;
	}

	main section#stage img {
		max-width: 100%;
		box-sizing: border-box;
		padding: 0 20px;
	}

	main section.slide div.formula {
	  gap: 20px;
	  padding: 20px;
	  margin-bottom: 20px;
	}

	main section.slide div.formula div.result {
	  white-space: nowrap;
		text-align: left;
	}

	main section.slide div.formula div.division {
	  font-size: 14px;
	}

	main section.slide div.formula div.multiply {
	  text-align: center;
	  font-size: 14px;
		line-height: 20px;
	}

	main section.slide {
		padding: 50px 0;
	}

	main section.slide h2 {
	  line-height: 34px;
	}

	main section.slide div.sidebyside, main section.slide div.sidebyside2 {
    gap: 20px;
    box-sizing: border-box;
    padding: 0 20px;
    flex-direction: column;
  }

	main section.slide div.container, main section#nextproject div.container {
		box-sizing: border-box;
		padding: 0 20px;
	}

	main section div#businesswin {
		flex-direction: column;
	}

	main section#nextproject div#npholder {
		flex-direction: column;
	}

	main section#nextproject div#npholder div.side img {
	  max-width: 100%;
	}

	main section#about div#photogallery {
		flex-direction: column;
		flex-wrap: nowrap;
		max-width: 100%;
		justify-content: center;
		column-gap: 0;
		row-gap: 20px;
		box-sizing: border-box;
		padding: 0;
		align-content: center;
	}

	main section#about div#photogallery img {
		 max-width: 100%;
		 max-height: 100%;
		 height: inherit;
	 }

	 main section#slide3 blockquote {
	   width: 100%;
	   padding: 20px;
	 }

	 main section#slide3 blockquote::before {
	   content: "\201c";
	   position: absolute;
	   top: 25px;
	   left: 7px;
	   font-size: 60px;
	 }

	 main section#slide3 blockquote::after {
	   content: "\201d";
	   position: absolute;
	   bottom: 0px;
	   right: 15px;
	   font-size: 60px;
	 }

	 main section.slide p img.data {
		 max-width: 100%;
	 }

	 main section.slide p img.floatright {
		 float: none;
		 margin: 0;
	 }

  footer {
    font-size: 14px;
  }

}

/* [][][][][][][][][][][][][][][][][][][][][][][][][][][][][][] NEW MEDIA SIZE [][][][][][][][][][][][][][][][][][][][][][][][][][][][][][] */
/* [][][][][][][][][][][][][][][][][][][][][][][][][][][][][][] NEW MEDIA SIZE [][][][][][][][][][][][][][][][][][][][][][][][][][][][][][] */
/* [][][][][][][][][][][][][][][][][][][][][][][][][][][][][][] NEW MEDIA SIZE [][][][][][][][][][][][][][][][][][][][][][][][][][][][][][] */
/* [][][][][][][][][][][][][][][][][][][][][][][][][][][][][][] NEW MEDIA SIZE [][][][][][][][][][][][][][][][][][][][][][][][][][][][][][] */
/* [][][][][][][][][][][][][][][][][][][][][][][][][][][][][][] NEW MEDIA SIZE [][][][][][][][][][][][][][][][][][][][][][][][][][][][][][] */

@media all and (max-width: 339px) and (min-width: 0px) {

	.wrapper {
		width: 100%;
		padding: 0;
	}

  header nav div.hidden {
    display: block;
  }

  header span.mobhidden {
    display: none;
  }

	br.mobhidden2 {
		display: inline;
	}

	header div#logo {
	 width: 100px;
	 font-size: 14px;
 	}

	header div#logo br.smhide {
		display: block;
	}

  header div#logo span.highlight {
    font-size: 12px;
  }

	header div#theme-switch::after {
	  display: none;
	}

	header div#theme-switch.shazam::after {
		display: none;
	}

  header nav div#mobilemenu {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    cursor: pointer;
		font-size: 14px;
   }

  header nav div#bars {
    height: 34px;
    width: 34px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
  }

  header nav div#bars div.bar {
    background-color: var(--main-text);
    width: 100%;
    height: 20%;
		transition: 0.3s;
  }

	header nav div#bars div.bar:first-child.close {
		transform: rotate(-45deg) translate(-9px, 10px);
	}

	header nav div#bars div.bar:nth-child(2).close {
		display: none;
	}

	header nav div#bars div.bar:last-child.close {
		transform: rotate(45deg) translate(-9px, -10px);
	}

	header nav ul {
	 display: none;
	 position: absolute;
	 background-color: var(--base-color);
	 width: 100%;
	 right: 0;
	 top: 74px;
	 box-sizing: border-box;
	 padding: 0 0px;
	 box-shadow: var(--boxshadow);
	 border: 3px solid var(--highest);
 }

	header nav ul li {
		display: block;
	}

	header nav ul li a {
		width: 100%;
		border-radius: 0;
		padding: 35px 10px;
		border-bottom: 1px solid var(--stepdown);
		border-top: none;
		border-left: 0;
		border-right: 0;
	}

	header nav ul li:last-child a {
		border: none;
	}

	main {
		padding: 0;
	}

	main section#imgstage img {
	  margin-top: 80px;
	}

  main section#hero {
    width: 100%;
    padding: 140px 20px 50px;
    box-sizing: border-box;
  }

  main section#hero h1 {
    width: 100%;
    font-size: 34px;
    line-height: 40px;
  }

  main section#hero h1 br {
    display: inline-block;
  }

	main section#hero h1 br.mobhidden {
		display: none;
	}

  main section#hero h2 {
    width: 100%;
    font-size: 18px;
  }

  main section#hero blockquote::before {
    top: 30px;
    font-size: 50px;
    left: 5px;
  }

  main section#hero blockquote {
    width: 100%;
    font-size: 14px;
    padding: 20px 30px;
  }

	main section#hero blockquote br.hidden {
		display: inline-block;
	}

  main section#hero blockquote::after {
    right: 20px;
    font-size: 50px;
  }

	main section#stage {
		padding: 140px 0 50px;
	}

	main section#stage p {
    width: 100%;
    font-size: 18px;
    line-height: 28px;
    box-sizing: border-box;
    padding: 40px 20px 0;
  }

  main section#work {
    padding-top: 50px;
    padding-bottom: 50px;
  }

	main section#allwork {
		padding-bottom: 20px;
	}

  main section#work h2, main section#allwork h2 {
    max-width: 100%;
    font-size: 30px;
    line-height: 50px;
  }

  main section#work p, main section#allwork p {
    padding: 10px 20px 0;
    line-height: 28px;
  }

  main section#work div#featuredworks, main section#allwork div.workrow {
    flex-direction: column;
  }

  main section#work div#featuredworks a.feature, main section#allwork div.workrow a.feature {
    flex-direction: column;
  }

  main section#work div#featuredworks a.feature img, main section#allwork div.workrow a.feature img {
    max-width: 100%;
    align-self: center;
  }

  main section#about {
    padding: 40px 20px;
  }

  main section#about h2 {
    max-width: 100%;
    font-size: 30px;
    line-height: 50px;
  }


  main section#about p {
    line-height: 28px;
    padding-top: 20px;
  }

  main section#about div#philosophy {
    max-width: 100%;
    flex-direction: column;
  }

  main section#about div#philosophy div.leftside, main section#about div#philosophy div.rightside {
    width: 100%;
  }

  main section#about div#philosophy div.leftside p {
    padding: 20px 0;
  }

  main section#about div#nonwork {
    max-width: 100%;
    flex-direction: column;
    gap: 20px;
  }

  main section#about div#nonwork div.fact {
    width: 100%
  }

  main section#about div#nonwork div.fact ul li {
    font-size: 16px;
  }

  main section#contact h2 {
    max-width: 100%;
    font-size: 30px;
    line-height: 50px;
  }

  main section#contact p {
    line-height: 28px;
    padding-top: 20px;
  }

  main section#contact div#contactbox div.buttonrow {
    flex-direction: column;
  }

	main section#stage h1 {
		font-size: 34px;
	}

	main section#stage img {
		max-width: 100%;
		box-sizing: border-box;
		padding: 0 20px;
	}

	main section.slide div.formula {
	  gap: 20px;
	  padding: 20px;
	  margin-bottom: 20px;
	}

	main section.slide div.formula div.result {
	  white-space: nowrap;
		text-align: left;
	}

	main section.slide div.formula div.division {
	  font-size: 14px;
	}

	main section.slide div.formula div.multiply {
	  text-align: center;
	  font-size: 14px;
		line-height: 20px;
	}

	main section.slide {
		padding: 50px 0;
	}

	main section.slide h2 {
	  line-height: 34px;
	}

	main section.slide div.sidebyside, main section.slide div.sidebyside2 {
    gap: 20px;
    box-sizing: border-box;
    padding: 0 20px;
    flex-direction: column;
  }

	main section.slide div.container, main section#nextproject div.container {
		box-sizing: border-box;
		padding: 0 20px;
	}

	main section div#businesswin {
		flex-direction: column;
	}

	main section#nextproject div#npholder {
		flex-direction: column;
	}

	main section#nextproject div#npholder div.side img {
	  max-width: 100%;
	}

	main section#about div#photogallery {
		flex-direction: column;
		flex-wrap: nowrap;
		max-width: 100%;
		justify-content: center;
		column-gap: 0;
		row-gap: 20px;
		box-sizing: border-box;
		padding: 0;
		align-content: center;
	}

	main section#about div#photogallery img {
		 max-width: 100%;
		 max-height: 100%;
		 height: inherit;
	 }

	 main section#slide3 blockquote {
	   width: 100%;
	   padding: 20px;
	 }

	 main section#slide3 blockquote::before {
	   content: "\201c";
	   position: absolute;
	   top: 25px;
	   left: 7px;
	   font-size: 60px;
	 }

	 main section#slide3 blockquote::after {
	   content: "\201d";
	   position: absolute;
	   bottom: 0px;
	   right: 15px;
	   font-size: 60px;
	 }

	 main section.slide p img.data {
		 max-width: 100%;
	 }

	 main section.slide p img.floatright {
		 float: none;
		 margin: 0;
	 }

  footer {
    font-size: 14px;
  }

}
