<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
	padding: 0;
	margin: 0;
}

.site {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

.site-content {
  flex: 1;
}

.page_home { background-color: #000; }
.page_about { background-color: #000; }
.page_contact { background-color: #d8ccb2; }
.page_project { background-color: #d8ccb2; }
.page_projects { background-color: #000; }

#page.page_home #footer { display: none; }
#page.page_home #nav { display: none; }
#page.page_home #header_spacer { display: none; }

.hidden { opacity: 0; }

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

#header_spacer {
	height: 110px;
	width: 100vw;
	background-color: #000;
	display: block;
}

#nav {
	height: 50px;
	width: calc(100vw - 60px);
	background-color: #000;
	position: fixed;
	padding: 30px;
	z-index: 100;
}

#nav_mobile {
	height: 100px;
	width: 100vw;
	background-color: #000;
	position: fixed;
	top: 110px;
	z-index: 100;
	display: none;
}

#logo {
	height: 50px;
	width: 140px;
	background-color: #000;
	display: block;
	float: left;
}

#logo img {
	max-height: 100%;	
}

#navigation {
	height: auto;
	width: auto;
	float: right;
	display: block;
	padding-top: 20px;
}

#btn_mobile {
	height:  45px;
	width: 45px;
	background-color: #000;
	background-image: url('images/btn_mobile.svg');
	background-size: 45px 90px;
	display: none;
	float: right;
}
#btn_mobile:hover {
	background-position: 0 -45px;	
}

#nav_mobile ul li,
#navigation ul li {
	padding: 0;
	margin: 0;
	float: left;
	list-style: none;
	margin-left: 20px;
	text-transform: uppercase;
	
	font-family: 'proxima_novaregular';
	font-size: 12px;
}
#nav_mobile ul li {
	float: none;
	padding: 15px 25px 15px 30px;
	margin: 0;
	background-color: #000;
}

#nav_mobile ul li a,
#navigation ul li a {
	color: #fff;
	text-decoration: none;
	border-bottom: 1px solid rgba(192, 192, 192, 0);
	-webkit-transition: border 500ms ease;
	-moz-transition: border 500ms ease;
	-ms-transition: border 500ms ease;
	-o-transition: border 500ms ease;
	transition: border 500ms ease; 
	padding-bottom: 3px;
}

#navigation ul li a:hover {
  border-bottom: 1px solid rgba(192, 192, 192, 1);
}

#navigation ul li a.selected {
	border-bottom: 1px solid rgba(192, 192, 192, 1);
}

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

#footer {
	width: 100vw;
	background-color: #000;
	display: block;
	text-align: center;
	color: #d8ccb2;
	padding: 30px 0 30px 0;
	font-family: 'proxima_novaregular';
	text-transform: uppercase;
	font-size: 10px;
}

/****** HOME ******/

#home {
	height: 100%;
	width: 100%;
	display: block;
	background-color: #000;
	
    overflow: hidden;
	position: fixed;
	z-index: 1000;
}

#home video {
	position: fixed; left: 0; top: 0;
	min-width: 100%; min-height: 100%;
	width: auto; height: auto; z-index: -100;
	left: 50%;
transform: translateX(-50%);
}

@media (min-aspect-ratio: 16/9) {
  #home video {
    width: 100%;
    height: auto;
  }
}

@media (max-aspect-ratio: 16/9) {
  #home video {
    width: auto;
    height: 100%;
  }
}

/***** ABOUT ******/

#about_quote_block,
#about_body_block,
#about_team_block,
#project_block {
	height: auto;
	width: 100vw;
	background-color: #ac4828;
	display: block;
	padding: 75px 0 75px 0;
}
#about_body_block { background-color: #d8ccb2; }
#about_team_block { background-color: #000; }
#project_block { background-color: #d8ccb2; }


#project_content_holder,
#about_quote_text,
#about_body_holder,
#about_team_holder {
	width: 80%;
	max-width: 1000px;
	display: block;
	margin: auto;
	text-align: center;
	font-family: 'bebas_neueregular';
	font-size: 30px;
}
#project_content_holder { max-width: 800px; }

#about_body_holder {
	font-family: 'proxima_novaregular';
	font-size: 12px;
	text-align: justify;
	line-height: 20px;
}
#about_body_holder hr { display: none; }

#about_body_text {
	width: 60%;
	float: left;
	margin-right: 50px;
	text-align: justify;
	font-family: 'proxima_novaregular';
	font-size: 12px;
	text-align: justify;
	line-height: 20px;
}

#about_body_text p { margin-bottom: 20px; }

#about_upcoming_projects {
	width: calc(40% - 50px);
	float: left;
	text-align: left;
}

.headline {
	font-family: 'bebas_neueregular';
	text-transform: uppercase;
	font-size: 20px;
	display: block;	
}
#project_body_text .headline { font-size: 36px; margin-bottom: 10px; }

#about_upcoming_projects ul {
	padding-top: 5px;
	list-style: none;
	text-transform: uppercase;
}

#about_upcoming_projects ul li {
	margin-bottom: 10px;	
}

#about_upcoming_projects ul li a {
	color: #000;
}

#about_upcoming_projects ul li a:hover {
  color: #ac4828;
}

#about_team_holder { color: #fff; }

#about_team_holder .headline {
	color: #d8ccb2;
	font-size: 30px;
}

#about_team_holder hr {
	padding: 0;
	margin-top: 50px;
	width: 100%;
	height: 1px;
	border: none;
	border-bottom: 1px solid #ada38e;
	display: block;
}

#team_member {
	height: auto;
	width: 100%;
	display: block;
	border-bottom: 1px solid #333;
	padding: 50px 0 50px 0;
}

#team_member_image {
	height: auto;
	width: 250px;
	display: block;
	float: left;
	margin-right: 20px;
}

#team_member_image img {
	width: 100%;	
}

#team_member_text {
	width: calc(100% - 270px);
	height: auto;
	color: #666;
	font-family: 'proxima_novaregular';
	font-size: 12px;
	line-height: 20px;
	float: left;
	text-align: justify;
}

.team_member_name {
	font-family: 'bebas_neueregular';
	text-transform: uppercase;
	font-size: 28px;
	color: #ac4828;
	display: block;
}

.team_member_role {
	display: block;
	color: #d8ccb2;
	font-size: 14px;
	margin-bottom: 10px;
	text-transform: uppercase;
}

/****** PROJECTS *****/

#projects_holder {
	height: calc(100vh - 170px);
	width: 100vw;
	display: block;
}

.project {
	background-color: #cb5a3a;
	min-height: 300px;
	height: calc((100vh - 170px)/3);
	width: calc(100vw / 3);
	display: block;
	float: left;
	position: relative;
	opacity: 0;
}

.project.project_blank {
	background-color: #080808;
	background-image: url('http://www.3311productions.com/wp-content/uploads/2020/06/3311_blank.jpg');
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 180px 100px;
}

#project_name {
	color: #fff;
	position: absolute;
	left: 25px;
	bottom: 25px;
	font-family: 'proxima_novaregular';
	text-transform: uppercase;
	font-size: 11px;
	z-index: 2;
}

#project_image {
	height: 100%;
	width: 100%;
	position: absolute;
	z-index: 1;
	background-size: cover;
	background-position: center center;
	
	background-color: #cb5a3a;
	background-blend-mode: multiply;
	transition: background-color .5s;
}

.project:hover { cursor: pointer; }
.project:hover #project_image {
	background-color: transparent;
}
.project.project_blank:hover { cursor: default; }

.dot {
	height: 5px;
	width: 5px;
	background-color: #ac4828;
	border-radius: 50%;
	display: inline-block;
	margin-right: 10px;
	margin-bottom: 1px;
}

#netflix,
#amazon,
#hulu,
#itunes {
	width: 150px;
	height: 69px;
	display: block;
	margin-bottom: 10px;
	opacity: .8;
	background-size: contain;
}

#netflix:hover,
#amazon:hover,
#hulu:hover,
#itunes:hover {
	opacity: 1;
	cursor: pointer;
}

#netflix { background-image: url('images/netflix.png'); }
#amazon { background-image: url('images/amazon.png'); }
#hulu { background-image: url('images/hulu.png'); }
#itunes { background-image: url('images/itunes.png'); }



/***** PROJECT PAGE *****/


#project_video_bg {
	height: auto;
	width: 100vw;
	background-color: #cb5a3a;
	display: block;
	padding: 50px 0 50px 0;
	background-size: cover;
	background-position: center center;
	background-blend-mode: multiply;
}

#project_video_holder {
	max-width: 800px;
	height: auto;
	margin: auto;
}

#project_video {
	position: relative; 
    width: 100%;
	padding-top: 56.25%;
}

#project_video iframe {
	position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

#project_video #video_image {
	background-color: transparent;
	position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
	background-position: center center;
	background-size: contain;
}

#project_body_text {
	width: calc(100% - 225px);
	float: left;
	margin-right: 50px;
	text-align: justify;
	font-family: 'proxima_novaregular';
	font-size: 12px;
	text-align: justify;
	line-height: 20px;
	opacity: 0;
}

#project_body_text.no_links {
	width: 100%;
	/*text-align: center;*/
}

#project_body_text a { color: #000; }
#project_body_text a:hover { color: #cb5a3a; }

#about_body_text p { margin-bottom: 20px; }

#project_links {
	width: 175px;
	float: left;
	text-align: left;
	opacity: 0;
}

#project_body_text hr {
	margin: 25px 0 25px 0;
	border: none;
	border-bottom: 1px solid #ada38e;
}

#project_links img {
	width: 75px;
	height: 75px;
	display: block;
	margin: 5px 15px 15px 0;
}

#project_links .headline { margin-bottom: 5px; }

/****** CONTACT ******/

#map {
	background-color: #cb5a3a;
	height: 400px;
	width: 100vw;
	display: table-cell;
  	vertical-align: middle;
	text-align: center;
	background-size: 130%;
	background-position: center center;
}

#map_icon {
	height: 60px;
	width: 86px;
	display: inline-block;
	margin-top: -100px;
}
#map_icon img { max-width: 100%; }

#contact_block {
	width: 500px;
	height: 200px;
	max-width: 1000px;
	margin: auto;
	margin-top: 75px;
	margin-bottom: 75px;
}

#contact_sub {
	width: 250px;
	height: 200px;
	float: left;
	margin-right: 50px;
}

#contact_sub.contact_sub_last {
	margin-right: 0;	
	width: 200px;
}

#contact_sub p {
	text-align: justify;
	font-family: 'proxima_novaregular';
	font-size: 12px;
	text-align: justify;
	line-height: 20px;
	padding-top: 5px;
}
#contact_sub a { color: #000; }
#contact_sub a:hover { color: #cb5a3a; }

/****** MISC ******/

#clear {
	clear: both;
}



/***** RESPONSIVE *****/

#mobile {
	height: 40px;
	width: 40px;
	display: none;
	background-color: #fff;
	z-index: 1000;
}

@media only screen and (max-width:1000px) {
	#mobile { background-color: orange; }
	
	.project {
		width: 50vw;
	}
	
	.project:first-child #project_image, .project:first-child {
		width: 100vw;
	}
	
	#project_links,
	#project_body_text,
	#about_body_text,
	#about_upcoming_projects {
		float: none;
		width: 100%;
		margin: 0;
		padding: 0;
		margin-bottom: 50px;
	}
	#about_upcoming_projects {
		text-align: center;	
	}
	
	#map { background-size: 200%; height: 300px; }
	
	#nav_mobile {
		height: 0px;
	}
	
	#contact_sub.contact_sub_last {
		margin: auto;
	}
}

@media only screen and (max-width:700px) {
	#project_video_bg { padding: 0px; }
	
	#mobile { background-color: red; }
	
	#navigation { padding: 0; }
	
	#btn_mobile {
		display: block;
	}
	
	#navigation ul { 
		display: none;	
	}
	
	#nav_mobile {
		height: 160px;
		display: none;
	}
	
	#nav {
		height: auto;
	}
	
	#logo {
		height: 25px;
		width: 70px;
	}
	
	#btn_mobile {
		height: 25px;
		width: 25px;
		background-size: 25px 50px;
	}
	#btn_mobile:hover {
		background-position: 0px -25px;
	}
	
	#header_spacer {
		height: 80px;
	}
	
	#nav_mobile {
		top: 80px;
	}
	
	#project_links {
		width: 150px;
		float: none;
		margin: auto;
		text-align: center;
	}
	
	#project_links img {
		margin: 5px 0 15px 0;
	}
	
	.headline {
		text-align: center;
	}
	
	#project_body_text p {
		text-align: center;
	}
	
}

@media only screen and (max-width:600px) {
	#mobile { background-color: teal; }
	
	.project {
		width: 100vw;	
	}
	
	#contact_block,
	#contact_sub {
		height: auto;
		margin-bottom: 30px;
		text-align: center;
	}
	#contact_sub p { text-align: center; }
	
	#team_member_image,
	#team_member_text,
	#contact_sub {
		float: none;
		width: 100%;
	}
	#team_member_image { margin-bottom: 20px; }
	#map { background-size: 300%; }
	
	.team_member_name,
	.team_member_role {
		text-align: center;
	}
}


/***** FONTS *****/

@font-face {
    font-family: 'proxima_novaregular';
    src: url('fonts/proximanova-regular-webfont.woff2') format('woff2'),
         url('fonts/proximanova-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'bebas_neueregular';
    src: url('fonts/bebasneue-regular-webfont.woff2') format('woff2'),
         url('fonts/bebasneue-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'proxima_novablack';
    src: url('fonts/proximanova-black-webfont.woff2') format('woff2'),
         url('fonts/proximanova-black-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}</pre></body></html>