:root {
    --bg-color: #080a0b;
    --highlight-color: #e35928;
}

body {
	margin: 0;
	padding: 0;
	background-color: var(--bg-color);
	text-align: center;
	font-family: 'Geogrotesque', Helvetica, Arial, sans-serif;
	font-weight: 2;
	font-style: normal;
	color: white;
}

#container {
	width: 960px;
	padding: 0;
	display: block;
	margin: 0 auto;
	border: 0;
	text-align: center;
}

#homepage-header {
	margin: 0;
	padding: 0;
	margin-top: 30px;
	margin-bottom: 20px;
	color: white;
}

h1 {
	margin: 0;
	padding: 0;
	padding-left: 20px;
	padding-right: 20px;
	letter-spacing: 12px;
	text-indent: 12px;
	font-weight: 2;
}

h2 {
	margin: 0;
	padding: 0;
	padding-left: 20px;
	padding-right: 20px;
	letter-spacing: 10px;
	text-indent: 10px;
	font-weight: 2;
}

a {
	margin: 0;
	padding: 0;
	text-decoration: none;
	color: white;
}

#my-name {
	margin-bottom: 15px;
}

#my-title {
	;
}

#cta {
	width: 170px;
	height: 22px;
	line-height: 20px;
	padding: 20px;
	border: 0;
	background-color: var(--highlight-color);
	color: white;
	text-align: center;
	letter-spacing: 2px;
	text-indent: 2px;
	font-weight: 2;
}

#cta a {
	color: white;
}

#cta:hover {
	background-color: white;
	color: var(--highlight-color);
	transition: 0.5s;
}

#cta:hover a {
	color: var(--highlight-color);
	transition: 0.5s;
}

.hvr-grow {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-grow:hover, .hvr-grow:focus, .hvr-grow:active {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

/************************ NAVIGATION ************************/

/****** ALL NAVIGATION ******/

.nav {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align:center;
}

.nav li {
  display:inline-block;
  *display:inline; /* ie7 fix */
  zoom:1; /* hasLayout ie7 trigger */
  list-style:none;
}

.nav li a {
  display: block;
  text-decoration: none;
}

.nav li a:hover {
  color: var(--highlight-color);
  transition: 0.5s;
}

.nav-active a {
  letter-spacing: 8px;
  text-indent: 8px;
  font-weight: 3;
  color: white;
}

.nav-inactive a {
  letter-spacing: 8px;
  text-indent: 8px;
  font-weight: 2;
  color: #9a9a9a;
}

/****** MAIN NAVIGATION ******/

#nav-main {
  font-size:18px;
  letter-spacing: 8px;
  text-indent: 8px;
  padding-top: 20px;
  padding-bottom: 20px;
}

#nav-main li a {
  padding: 0px 25px;
}

/****** WORK NAVIGATION ******/

#nav-work {
  font-size:18px;
  letter-spacing: 8px;
  text-indent: 8px;
  padding-top: 20px;
  padding-bottom: 20px;
}

#nav-work li a {
  padding: 0px 15px;
}



/************************ HOMEPAGE ************************/

.rounded {
	border-radius: 5px;
}

.showreel {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	max-width: 100%;
	height: auto;
	border: 0;
}
		
.showreel iframe,
.showreel object,
.showreel embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.one-column {
	width: 100%;
	height: 538px;
	display: block;
	padding: 0;
	border: 0;
	background-color: white;
	text-align: center;
}

.two-column {
	width: 475px;
	height: 266px;
	display: block;
	margin-top: 10px;
	padding: 0;
	border: 0;
	float: left;
	background-color: white;
	text-align: center;
}

.spacer {
	margin-right: 10px;
}

#btn-back {
	text-decoration: none;
	color: white;
	padding-left: 20px;
	padding-right: 20px;
	letter-spacing: 10px;
	text-indent: 10px;
}

#btn-back:hover {
	color: var(--highlight-color);
	transition: 0.5s;
}



/************************ FOOTER ************************/

#footer {
	display: block;
	margin: 0;
	padding: 0;
	margin-bottom: 50px;
}

.social-media-icon {
	height: 40px;
	margin-top: 40px;
	margin-left: 10px;
	margin-right: 10px;
	fill: white;
}

svg:hover path { 
    fill: var(--highlight-color);
	transition: 0.5s;
}



/************************ PROJECT TILES ON HOMEPAGE ************************/

.project {
	background-size: auto 100% !important;
	background-position: center center !important;
}

.project:hover {
	background-size: auto 110% !important;
	transition: 0.2s;
}

#project-blank {
	background-color: var(--bg-color);
}




/************************ PROJECT PAGES ************************/

#project-header {
	margin: 0;
	padding: 0;
	padding-top: 30px;
	padding-bottom: 20px;
	color: white;
}






.project-video {
	display: inline-block;
	position: relative;
	overflow: hidden;
	max-width: 100%;
	height: auto;
	border: 0;
	margin-left: 5px;
	margin-right: 5px;
	margin-top: 10px;
}
		
.project-video iframe,
.project-video object,
.project-video embed {
	width: 100%;
	height: 100%;
	border: 0;
}

.project-text {
	padding-top: 30px;
	padding-left: 20px;
	padding-right: 20px;
	color: white;
}

.extra-padding {
	padding-bottom: 6px;
}

.project-challenge-solution {
	padding-top: 30px;
    vertical-align: top;
    display: inline-block;
    text-align: center;
	padding-left: 10px;
	padding-right: 10px;
    width: 440px;
}


.spacer-top {
  margin-top: 30px;
}

.process-title {
  padding-top: 30px;
  padding-bottom: 6px;
}

.media-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding-bottom: 30px;
}

/* Default ratio for .media-frame */
.media-frame {
  aspect-ratio: 4 / 5;
  background-color: white;
  overflow: hidden;
  position: relative;
}

.video-frame {
  position: relative;
  overflow: hidden;
}

.video-frame iframe,
.video-frame video {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 0;
  transform: translate(-50%, -50%);
  pointer-events: none; /* Keep non-interactive if you want */
}

.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;      /* Fills and crops, never under-cropped */
  position: absolute;
  top: 0;
  left: 0;
  border: 0;
  transform: none;        /* Remove translate(-50%, -50%) */
  pointer-events: none;   /* Optional: disables interaction */
}

.background-img {
  background-size: 100% auto !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

/* Ratio-specific utilities */
.ratio-1x1   { aspect-ratio: 1 / 1; }
.ratio-16x9  { aspect-ratio: 16 / 9; }
.ratio-4x5   { aspect-ratio: 4 / 5; }
.ratio-9x16  { aspect-ratio: 9 / 16; }
.ratio-2x3   { aspect-ratio: 2 / 3; }
.ratio-3x2   { aspect-ratio: 3 / 2; }

.one-up {
  flex: 0 0 100%;
  max-width: 100%;
}

.two-up {
  flex: 0 0 48%;
  max-width: 48%;
}

.three-up {
  flex: 0 0 30%;
  max-width: 30%;
}

.four-up {
  flex: 0 0 22%;
  max-width: 22%;
}

/**********************(************************************/




#project-testimonial {
	padding-top: 10px;
	padding-left: 20px;
	padding-right: 20px;
}

#project-testimonial-quote, #project-testimonial-name {
	font-size: 24px;
	font-style: italic;
	color: white;
	margin-left: -18px;
}

#project-testimonial-quote::before {
	content: '"';
	font-size: 4rem;
	line-height: 0px;
	position: relative; 
	bottom: -20px;
	padding-right: 16px;
}

#project-testimonial-quote::after {
	content: '"';
	font-size: 4rem;
	line-height: 0px;
	position: relative; 
	bottom: -34px;
}

.project-result {
    vertical-align: top;
    display: inline-block;
    text-align: center;
	padding-left: 10px;
	padding-right: 10px;
	width: 200px;
}

.project-result-figure {
	font-size: 50px;
}

#project-credits {
	padding-top: 30px;
	padding-left: 20px;
	padding-right: 20px;
	color: white;
}

#collateral-work {
	padding-top: 30px;
	padding-left: 20px;
	padding-right: 20px;
}

.collateral {
    vertical-align: top;
    display: inline-block;
    text-align: center;
	margin-left: 20px;
	margin-right: 20px;
	margin-bottom: 10px;
	width: 438px;
	height: 246px;
	border: 0;
}

.project-video-4-5 {
	width: 220px;
	height: 275px;
}

.project-video-1-1 {
	width: 275px;
	height: 275px;
}

.project-video-9-16 {
	width: 155px;
	height: 275px;
}

.project-video-16-9 {
	width: 960px;
	height: 540px;
}

.project-video-16-9-double {
	width: 475px;
	height: 267px;
}

.project-video-18-9 {
	width: 960px;
	height: 480px;
}

.project-video-18-9-double {
	width: 475px;
	height: 238px;
}

.project-video-25-9 {
	width: 960px;
	height: 343px;
}

.project-video-30-9 {
	width: 960px;
	height: 288px;
}

.project-video-36-9 {
	width: 960px;
	height: 240px;
}

.project-video-36-9-double {
	width: 475px;
	height: 118px;
}

div.award {
    vertical-align: top;
    display: inline-block;
    text-align: center;
    width: 120px;
}

.award-image {
	width: auto;
	height: 50px;
	margin-top: 30px;
}

.award-caption {
    display: block;
    padding-top: 4px;
    font-size: 12px;
}


/************************ OTHER PAGES ************************/

#other-header {
	margin: 0;
	padding: 0;
	padding-top: 30px;
	padding-bottom: 20px;
	color: white;
}

.other-text {
	padding-top: 0;
	padding-left: 20px;
	padding-right: 20px;
	color: white;
}

#contact-form {
	max-width: 600px;
	width: 100%;
	margin: 0 auto;
	text-align: center;
	height: 350px;
}

form label {
	text-align: left;
	float: left;
	padding-top: 10px;
}

form input, textarea {
	width: 100%;
	font-weight: 3;
	resize: vertical;
}

form input:focus::placeholder, textarea:focus::placeholder {
	color: transparent;
	opacity: 0.2;
}

form input {
	height: 30px;
}

form textarea {
	height: 100px;
}

form button {
	width: 110px;
  	height: 40px;
	background-color: var(--highlight-color);
	color: white;
	border: 0;
	float: left;
	text-align: center;
	letter-spacing: 2px;
	text-indent: 2px;
	font-weight: 2;
	font-size: 18px;
}

form button:hover {
	background-color: white;
	color: var(--highlight-color);
    cursor: pointer;
	transition: 0.5s;
}

form button:hover a {
	color: var(--highlight-color);
	transition: 0.5s;
}

.contact-form-label {
	text-align: left;
}

#about-section {
	display: flex;
	flex-direction: row;
	width: 100%;
}

#about-photo {
	background-size: auto 100% !important;
	background-position: center center !important;
	width: 30%;
	height: 310px;
}

#about-text {
	text-align: left;
	text-align: justify;
	text-justify: inter-word;
	flex: 1; 
	padding-bottom: 20px;
	padding-left: 30px;
	height: 300px;
}













@media screen and (max-width: 960px) {

#container {
	width: 640px;
}

.two-column {
	width: 315px;
}

.project-video-16-9 {
	width: 640px;
	height: 360px;
}

.project-video-18-9 {
	width: 640px;
	height: 320px;
}

.project-video-25-9 {
	width: 640px;
	height: 229px;
}

.project-video-30-9 {
	width: 640px;
	height: 192px;
}

.project-video-36-9 {
	width: 640px;
	height: 160px;
}

#about-photo {
	height: 456px;
}

#about-text {
	height: 450px;
}

.collateral {
	margin-left: 5px;
	margin-right: 5px;
	width: 308px;
	height: 178px;
}

}





@media screen and (max-width: 768px) {

#about-section {
	flex-direction: column;
}

#about-photo {
	width: 190px;
	height: 200px;
    margin: 0 auto;
    margin-bottom: 30px;
}

#about-text {
	width: 91%;
	text-align: center;
	height: auto;
	padding-bottom: 10px;
}

.collateral {
	width: 280px;
    height: 156px;
}

}





@media screen and (max-width: 640px) {

#container {
	width: 100%;
}

.two-column {
	width: 100%;
	height: 280px;
}

.spacer {
	margin-right: 0;
}

.project-video-16-9 {
	width: 512px;
	height: 288px;
}

.project-video-18-9 {
	width: 512px;
	height: 256px;
}

.project-video-25-9 {
	width: 512px;
	height: 183px;
}

.project-video-30-9 {
	width: 512px;
	height: 154px;
}

.project-video-36-9 {
	width: 512px;
	height: 128px;
}

.project-challenge-solution {
    width: 82%;
}

#about-section {
	flex-direction: column;
}

#about-photo {
	;
}

#about-text {
	;
}

#contact-form {
  max-width: 360px;
}

}





@media screen and (max-width: 512px) {

.two-column {
	width: 100%;
	height: 230px;
}

.project-video {
	display: block;
	margin-left: 0;
	margin-right: 0;
}

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

.project-video {
	width: 90%;
    height: initial;
    margin: 0 auto;
}

.project-video-4-5 {
    padding-bottom: 117%;
}

.project-video-1-1 {
    padding-bottom: 94%;
}

.project-video-9-16 {
    padding-bottom: 157%;
}

.project-video-16-9 {
	width: 425px;
	height: 239px;
}

.project-video-16-9-double {
	width: 425px;
	height: 239px;
}

.project-video-18-9 {
	width: 425px;
	height: 213px;
}

.project-video-25-9 {
	width: 425px;
	height: 152px;
}

.project-video-30-9 {
	width: 425px;
	height: 128px;
}

.project-video-36-9 {
	width: 425px;
	height: 106px;
}

.collateral {
	width: 100%
	height: initial;
}

#about-text {
	width: 88%;
}



}



@media screen and (max-width: 425px) {

.two-column {
	width: 100%;
	height: 190px;
}

.project-video-16-9 {
	width: 384px;
	height: 216px;
}

.project-video-16-9-double {
	width: 384px;
	height: 216px;
}

.project-video-18-9 {
	width: 384px;
	height: 192px;
}

.project-video-25-9 {
	width: 384px;
	height: 137px;
}

.project-video-30-9 {
	width: 384px;
	height: 115px;
}

.project-video-36-9 {
	width: 384px;
	height: 96px;
}

#about-text {
	width: 85%;
}

#contact-form {
  max-width: 340px;
}

}





@media screen and (max-width: 384px) {

.two-column {
	width: 100%;
	height: 170px;
}

.project-video-16-9 {
	width: 375px;
	height: 211px;
}

.project-video-16-9-double {
	width: 375px;
	height: 211px;
}

.project-video-18-9 {
	width: 375px;
	height: 188px;
}

.project-video-25-9 {
	width: 375px;
	height: 134px;
}

.project-video-30-9 {
	width: 375px;
	height: 113px;
}

.project-video-36-9 {
	width: 375px;
	height: 94px;
}

#contact-form {
  max-width: 320px;
}

}



@media screen and (max-width: 375px) {

.project-video-16-9 {
	width: 320px;
	height: 180px;
}

.project-video-16-9-double {
	width: 320px;
	height: 180px;
}

.project-video-18-9 {
	width: 320px;
	height: 160px;
}

.project-video-25-9 {
	width: 320px;
	height: 114px;
}

.project-video-30-9 {
	width: 320px;
	height: 96px;
}

.project-video-36-9 {
	width: 320px;
	height: 80px;
}

#about-text {
	width: 84%;
}

#contact-form {
  max-width: 280px;
}

}




@media screen and (max-width: 320px) {

h1 {
	font-size: 1.4em;
}

h2 {
	font-size: 1.2em;
}

.two-column {
	width: 100%;
	height: 150px;
}

.project-video-16-9 {
	width: 262px;
	height: 147px;
}

.project-video-16-9-double {
	width: 262px;
	height: 147px;
}

.project-video-18-9 {
	width: 262px;
	height: 131px;
}

.project-video-25-9 {
	width: 262px;
	height: 94px;
}

.project-video-30-9 {
	width: 262px;
	height: 79px;
}

.project-video-36-9 {
	width: 262px;
	height: 66px;
}

.collateral {
	width: 90%;
}

#about-text {
	width: 81%;
}

#contact-form {
  max-width: 220px;
}

}



@media screen and (max-width: 262px) {

.two-column {
	width: 100%;
	height: 120px;
}

.project-video-16-9 {
	width: 212px;
	height: 119px;
}

.project-video-16-9-double {
	width: 212px;
	height: 119px;
}

.project-video-18-9 {
	width: 212px;
	height: 106px;
}

.project-video-25-9 {
	width: 212px;
	height: 76px;
}

.project-video-30-9 {
	width: 212px;
	height: 64px;
}

.project-video-36-9 {
	width: 212px;
	height: 53px;
}

#about-text {
	width: 77%;
}

#contact-form {
  max-width: 210px;
}

}





















