
/*
html {
	scroll-behavior: smooth;
}*/

body {
	margin:0;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Roboto", sans-serif;
	background-color: rgba(242,242,242,1);
	
}

figure {
	margin: 0;
}

figcaption {
	width: 70%;
	
	margin-top: 10px;
	font: -apple-system-body;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
	"Roboto", sans-serif;
	font-size: 17px;
	font-weight: 300;
	margin-bottom: 31.25pt;
	line-height:1.5;
}

#threeColumn figcaption {
	width: 100%;
}

.coverPages {
	width: 85%; 
	padding-top: 25px; 
	padding-bottom: 25px; 
	margin-left: auto; 
	margin-right: auto;
}

#coverColumn img:hover {
	box-shadow: 0px 10px 25px rgba(0,0,0,0.5);
	transition: box-shadow 0.25s ease-out;
}

#coverColumn img {
	box-shadow: 0px 10px 0px rgba(0,0,0,0);
	margin-bottom: 0;
	padding-bottom: 0;
	transition: box-shadow 0.25s ease-out;
}

#downloadSVG::before {
	content: url('img/symbols/download.svg');
}

#blogSVG::before {
	content: url('img/symbols/blog.svg');
}

#siteSVG::before {
	content: url('img/symbols/site.svg');
}

#resumeSVG::before {
	content: url('img/symbols/resume.svg');
}

#twitterSVG::before {
	content: url('img/symbols/twitter.svg');
}

	
#navigation a { 
	text-decoration: none;
	padding: 8px;
	background: rgba(220, 220, 220, 0);
	
	border-radius: 8px;
	color: rgb(0,0,0);
	transition: background 0.25s ease-in-out;
}

#downloadLinks a { 
	text-decoration: none;
	border-bottom: 2px solid rgba(220, 220, 220, 0);
	color: rgb(0,0,0);
	transition: border-bottom 0.25s ease-in-out;
}

#secondaryNavigation a {
	text-decoration: none;
	border-bottom: 2px solid rgba(80, 80, 80, 1);
	color: rgb(0,0,0);
	transition: border-bottom 0.25s ease-in-out;
}

#downloadLinks a:hover {
	border-bottom: 2px solid rgba(80, 80, 80, 1);
	transition: border-bottom 0.25s ease-in-out;
}

.navGroup a {
	padding: 0;
}

#navigation a:hover {
	background: rgba(220, 220, 220, 1);
	transition: background 0.25s ease-in-out;
}


.downloadColumn {
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	flex-direction: column;
}

//masqualero

.main {
	background-color: rgba(242,242,242,1);
	width:100%;	
	float: left;
	flex: 1 0 auto;
	min-height: 100%;
}

.container {
	width: 80%;
	margin-left: auto;
	margin-right: auto;
	margin-top: 60px;
}

#extraMargin {
	margin-top: 120px;
}

.content {
	width:100%;
	margin-left: auto;
	margin-right: auto;
}

.contentGrid {
	width: 80%;
	margin-left: auto;
	margin-right: auto;
}

#headerText {
	width: 70%;
	float: left;
}

.textDescription {
	width: 80%;
	float: left;
	margin-right: 20%;
	
	margin-top: 1.5%;
	margin-bottom: 5px;
}

.light {
	display: block;
	visibility: visible;
}

.dark {
	display: none;
	visibility: hidden;
}

.grid {
	width:100%;
	margin-top:1.5%;
	display: grid;
	grid-column-gap: 30px;
	grid-auto-rows: 1fr;
	grid-row-gap: 30px;
	border-radius: 25px;
}

.twoOneGrid {
	width: 100%;
	margin-top: 1.5%;
	display: grid;
	grid-auto-rows: 2fr;
	grid-template-columns: 2fr 1fr;
	grid-column-gap: 30px;
}



.caseStudyItem {
	width:100%;
	margin-top:1.5%;
	
	display: grid;
	grid-column-gap: 0px;
	grid-template-rows: auto 1fr auto;
	grid-auto-rows: 0fr;
	grid-row-gap: 0px;
	
	background: rgba(255, 255, 255, 1);
	border-radius: 25px;
	
	box-shadow: 0px 10px 0px rgba(0,0,0,0);
	transition: box-shadow 0.25s ease-out;
}

.caseStudyItem:hover {
	box-shadow: 0px 10px 25px rgba(0,0,0,0.25);
	transition: box-shadow 0.25s ease-out;
}

.caseStudyItem img {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	border-radius: 25px 25px 0px 0px;
	//margin-top: 5%;
}

#navBox {
	grid-template-columns: repeat(4, 1fr);
}


#fourColumn {
	grid-template-columns: repeat(4, 1fr);
}

#fiveColumn {
	grid-template-columns: repeat(5, 1fr);
}

#threeColumn {
	grid-template-columns: repeat(3, 1fr);
}

#coverColumn {
	grid-template-columns: repeat(3, 1fr);
}


#twoColumn {
	grid-template-columns: repeat(2, 1fr);
}

#oneColumn{
	grid-template-columns: repeat(1, 1fr);
}

.readMoreButton {
	text-decoration: none;
	color: #000;
}

.readMoreButton:visited {
	text-decoration: none;
	color: #000;
}

.flex-container {
	  display: flex;
	  flex-wrap: nowrap;
	  flex-direction: row;
	  align-items: center;
	  justify-content: center;
}

.flex-container-column {
	  display: flex;
	  flex-wrap: nowrap;
	  flex-direction: column;
	  align-items: center;
	  justify-content: center;
}
	
.flex-container > div {
	  width: 50%;
	  text-align: left;
}

.inline-flex-container {
	  display: flex;
	  flex-wrap: wrap;
	  flex-direction: row;
	  align-items: left;
	  justify-content: left;
	  margin-bottom: 20px;
}

.inline-flex-container > span {
	margin-top: 12px;
	margin-bottom: 12px;
}

.rightBox {
	width: 28%;
	margin-left: 2%;
	float: right;
	margin-bottom: 20px;
}


.header {
	position: fixed;
	display: block;
	width: 75%;
	
	background: rgba(242, 242, 242, 0.8);
	
	backdrop-filter: blur(42px);
	-webkit-backdrop-filter: blur(42px);
	
	padding-left: 12.5%;
	padding-right: 12.5%;
	
	padding-top: 15px;
	padding-bottom: 15px;
	
	z-index: 1000;
	top: 0;
}

@media screen and (min-width: 590px) {
	.header {
		display: flex;
		justify-content: center;
		align-items: center;
	}
}

.navGroup {
	width: 60%;
	margin-left: auto;
	margin-right: auto;
}

.contactButtons {
	width: 65%;
	margin-top: 20px;
	margin-bottom: 20px;
	
	margin-left: 17.5%;
	margin-right: 17.5%;
	float: left;
}

hr {
	border: 0;
	width: 100%;
	height: 1px;
	background: rgba(225, 225, 225, 1);
	margin:0
}

.listButton {
	width: 23%;
	
	margin-left: 0;
	padding: 1%;
	float: left;
	
	border-radius: 25px;
	text-decoration: none;
	
	font-size: 14pt;
	text-align: center;
	
	background: rgba(255, 255, 255, 0);
	color: #000;
	transition: background 0.25s ease-out;
}

.listButton:hover, .listButton:active {
	background: rgba(180, 180, 180, 0.5);
	transition: background 0.25s ease-out;
}

.active .listButton {
	background: rgba(180, 180, 180, 0.5);
	font-weight: 500;
	transition: background 0.25s font-weight 0.25s ease-out;
}

.listButton:visited {
	color: rgba(0, 0, 0, 1);
}


.columnFlexBox {
	display: flex;
	flex-wrap: nowrap;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.columnFlexBox > div {
	  width: 90%;
	  text-align: left;
}


.gridItem {}

.gridItem img {
	filter: drop-shadow(0px 0px 0px rgba(0,0,0,0));
	transform: scale(1.0);
	-webkit-transition: filter 0.25s, transform 0.25s;
}

.gridItem:hover img {
	filter: drop-shadow(0px 10px 20px rgba(0,0,0,0.25));
	transform: scale(1.01);
	-webkit-transition: filter 0.25s, transform 0.25s;
}

#press {
	filter: grayscale(0%);
}

#press:hover {
	filter: grayscale(0%);
}

#bondi .gridItem img {
	transform: scale(1.0);
	-webkit-transition: filter 0.35s, transform 0.35s ease-out;
}

#bondi .gridItem:hover img {
	transform: scale(1.0);
	-webkit-transition: filter 0.35s, transform 0.35s ease-out;
}

#bondi .gridItem:hover {
	transform: scale(1.1);
	-webkit-transition: transform 0.35s ease-out;
}

#lookup {
	box-shadow: 0px 0px 0px rgba(0,0,0,0);
	transform-origin: center;
	transform: scale(1);
	-webkit-transition: background-color 0.25s, transform 0.25s;
}

#lookup:hover {
	//background-color: rgba(17, 108, 225, 0.8);
	
	box-shadow: 0px 10px 10px rgba(0,0,0,0);
	//color: #FFF;
	transform-origin: center;
	transform: scale(1.01);
	-webkit-transition: background-color 0.25s, box-shadow: 0.25s, transform 0.25s;
}



#largeHeading {
	font-weight: bold;
	font-size: 60px;
	margin-bottom: 10px;
}

#title {
	font-weight: bold;
	font-size: 40px;
	margin-bottom: 10px;
}

#smallTitle {
	font-weight: bold;
	font-size: 30px;
	margin-bottom: 0px;
}

#subtitle {
	font: -apple-system-subtitle;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
	"Roboto", sans-serif;
	font-size: 19px;
	font-weight: 600;
	margin-bottom: 0;
	margin-top: 0;
	line-height:1.5;
}

#smallCaps {
	font: -apple-system-subtitle;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
	"Roboto", sans-serif;
	font-size: 19px;
	font-weight: 600;
	font-variant: small-caps;
	margin-bottom: 0;
	margin-top: 0;
	line-height:1.5;
}

.caseStudyItem #smallCaps {
	color: rgba(114, 114, 114, 1);
}



#lightBody {
	font: -apple-system-body;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
	"Roboto", sans-serif;
	font-size: 19px;
	font-weight: lighter;
	margin-bottom: 31.25pt;
	line-height:1.5;
}

#bodyText {
	font: -apple-system-body;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
	"Roboto", sans-serif;
	font-size: 19px;
	font-weight: 300;
	margin-bottom: 31.25pt;
	line-height:1.5;
}

#link {
	font: -apple-system-subtitle;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Roboto", sans-serif;
    font-size: 19px;
    font-weight: regular;
}

.footer{
	width:100%;
	background-color: rgba(42,42,42,1);
	float:left;
	margin-top:5%;
	font-size:100%;
	flex-shrink: 0;
}

.footerText{
	padding-top:50px;
	padding-bottom:50px;
	width:80%;
	text-align:right;
	color:#fff;

}

#work {
	scroll-margin-top: 72px;
}

#recognition {
	scroll-margin-top: 72px;
}

#coverage {
	scroll-margin-top: 72px;
}

#prototyping {
	scroll-margin-top: 72px;
}

#moreWork {
	scroll-margin-top: 72px;
}


@media (hover: none) {
	
	#bodyText {
		font: -apple-system-body;
	}
	
	#largeHeading {
		font: -apple-system-subtitle;
	}
	
	#link {
		font: -apple-system-subtitle;
	}
	
} 

@media all and (max-width: 950px) and (min-width: 590px) {
	
	.header {
		width: 100%;
		margin-left: 0;
		margin-right: 0;
		padding-left: 0;
		padding-right: 0;
	}
	
	.navGroup {
		width: 80%;
	}
	
	.contentGrid {
		width: 95%;
		margin-top:50px;
	}

	.grid {
		display: grid;	
		grid-column-gap: 30px;
		grid-row-gap: 30px;
		grid-auto-rows: 0fr;
	}
	
	#oneColumn {
		grid-template-columns: repeat(1, 1fr);
	}
	
	#twoColumn {
		grid-template-columns: repeat(2, 1fr);
	}
	
	#threeColumn {
		grid-template-columns: repeat(2, 1fr);
	}
	
	#coverColumn {
		grid-template-columns: repeat(2, 1fr);
	}
	
	#fourColumn {
		grid-template-columns: repeat(4, 1fr);
	}
	
	#fiveColumn {
		grid-template-columns: repeat(3, 1fr);
	}
	
	
	#navBox {
		grid-template-columns: repeat(4, 1fr);
	}
	
	.flex-container {
		flex-direction: column;
	}
	
	.flex-container > div {
		  width: 90%;
		  text-align: left;
	}
	
	
}

@media all and (max-width: 590px) {
	
	
	#bodyText {
    	font-size: 12pt;
	}
	
	#largeHeading {	
	    font-size: 25pt;
	}
	
	#title {
		font-size: 20pt;
	}
	
	#lightBody {
    	font-size: 11pt;
	}

	#headerText {
		width: 100%;
	}
	
	.textDescription {
		width: 100%;
		float: left;
		margin-right: 0%;
		margin-top: 1.5%;
	}
	
	.container {
		width: 90%;
		margin-top: 60px;
	}
	
	#extraMargin {
		margin-top: 80px;
	}
	
	.contentGrid {
		width: 95%;
		margin-top:50px;
	}

	.grid {
		display: grid;	
		grid-column-gap: 30px;
		grid-row-gap: 30px;
		grid-auto-rows: 0fr;
	}
	
	.caseStudyItem {
		box-shadow: 0px 10px 0px rgba(0,0,0,0);
		transition: box-shadow 0.25s ease-out;
	}
	
	#oneColumn {
		grid-template-columns: repeat(1, 1fr);
	}
	
	#twoColumn {
		grid-template-columns: repeat(1, 1fr);
	}
	
	#threeColumn {
		grid-template-columns: repeat(1, 1fr);
	}
	
	#coverColumn {
		grid-template-columns: repeat(2, 1fr);
	}
	
	#fourColumn {
		grid-template-columns: repeat(2, 1fr);
	}
	
	#fiveColumn {
		grid-template-columns: repeat(2, 1fr);
	}
	
	#navBox {
		grid-template-columns: repeat(4, 1fr);
	}
	
	.flex-container {
		flex-direction: column;
	}
	
	.flex-container > div {
		  width: 90%;
		  text-align: left;
	}
	
	
	.header {
		width: 100%;
		margin-left: 0;
		margin-right: 0;
		padding-left: 0;
		padding-right: 0;
	}
	
	.navGroup {
		width: 95%;
	}
	
	.listButton {
		font-size: 12px;
	}
	
	.contactButtons {
		width: 95%;
		
		margin-left: 2.5%;
		margin-right: 2.5%;
	}
	.rightBox {
		width: 100%;
		margin-left: 1%;
	}
	
	.twoOneGrid {
		display: block;
		grid-template-columns: 1fr;
		margin-bottom: 20px;
	}
	
	.downloadColumn {
		
		padding-left: 0px;
		padding-top: 0px;
	}
	
	figcaption {
		width: 100%;
	}
}

@media (prefers-color-scheme: dark) {
	body {
		background-color: rgba(20,20,25,1);	
		color: #FFF;
	}
	
	.main {
		background-color: rgba(20,20,25,1);
	}
	
	.header {
		background: rgba(20, 20, 20, 0.5);
		color: #FFF;
	}
	
	.light {
		display: none;
		visibility: hidden;
	}
	
	.dark {
		display: block;
		visibility: visible;
	}
		
	.gridItem {
		background-color: rgba(50, 50, 50, 0);
	}


	.readMoreButton {
		text-decoration: none;
		color: #FFF;
	}
	
	.caseStudyItem {
		background: rgba(42, 42, 42, 1);
	}
	
	#press {
		filter: grayscale(0%);
	}
	
	
	.nav-item {
		
		background: rgba(80, 80, 80, 0);
		color: #FFF;
	}
	
	.nav-item:hover {
		background: rgba(80, 80, 80, 0.5);
		transition: background 0.25s ease-out;
	}
	
	.nav-item:visited {
		color: rgba(0, 0, 0, 1);
	}
	
	.listButton {
		background: rgba(80, 80, 80, 0);
		color: #FFF;
	}
	
	.listButton:hover, .listButton:active {
		background: rgba(80, 80, 80, 0.5);
	}
	
	.active .listButton {
		background: rgba(80, 80, 80, 0.5);
	}
	

.readMoreButton:visited {
	text-decoration: none;
	color: #FFF;
}

hr {
	background: rgba(55, 55, 55, 1);
}


#navigation a { 
	
	background: rgba(80,80, 80, 0);
	color: rgb(255, 255, 255);
}

#navigation a:hover {
	background: rgba(80,80, 80, 1);
}

#downloadLinks a { 
	color: rgb(250,250,250);
	transition: border-bottom 0.25s ease-in-out;
}


#downloadLinks a:hover {
	border-bottom: 2px solid rgba(220, 220, 220, 1);
	transition: border-bottom 0.25s ease-in-out;
}

	#downloadSVG::before {
		
		content: url('img/symbols/dark/download.svg');
	}
	
	#blogSVG::before {
		
		content: url('img/symbols/dark/blog.svg');
	}
	
	#siteSVG::before {
		content: url('img/symbols/dark/site.svg');
	}
	
	#resumeSVG::before {
		content: url('img/symbols/dark/resume.svg');
	}
	
	#twitterSVG::before {
		content: url('img/symbols/dark/twitter.svg');
	}
}
