/*
/
/	FONTS
/
*/

@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,400;0,800;1,400&display=swap');







/*
/
/	RESET
/
*/

html, body, button, 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;
}
body {
	line-height: 1;
}
ul {
	list-style: none;
}
/* allow styling of individual svg symbol instances */
svg path {
	fill: inherit;
}





/*
/
/	CORE
/
*/

:root {
	--color-bgd: 41,0,0;					/* #290000 */
	--color-hover: 244,169,0;				/* F4A900 */
	--color-offblack: 16,16,16;				/* #101010 */
	--color-offwhite: 242,242,242;			/* #F2F2F2 */
}
body {
	font-family: 'Raleway', sans-serif;
	background-color: rgb(var(--color-bgd));
	color: rgb(var(--color-offwhite));
}
section {
	padding: 20px;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	border-bottom: 1px solid rgba(var(--color-offwhite),.15);
}
section h1 {
	margin: 0 auto 20px auto;
	font-weight: 800;
	font-size: 24px;
	text-transform: uppercase;
	text-align: center;
}
section h2 {
	font-weight: 800;
}
section p,li {
	font-weight: 400;
}
em {
	font-style: italic;
}
button {
	padding: 7px 10px 7px 10px;
	font-weight: 800;
	font-size: 12px;
	text-transform: uppercase;
	color: rgba(var(--color-offwhite),1);
	background-color: rgba(var(--color-offwhite),.1);
	border: 1px solid rgba(var(--color-offwhite),.1);
	border-radius: 2px;
	height: auto;
	cursor: pointer;
	box-sizing: border-box;
}
button:hover {
	color: rgb(var(--color-hover));
	border: 1px solid rgb(var(--color-hover));
	background-color: rgba(var(--color-offblack),.5);
}
.fpo {
	background: rgba(0,255,255,0.25);
	border: 1px solid rgba(0,255,255,0.50);
}
a:link, a:visited {
	color: rgb(var(--color-offwhite));
	text-decoration: underline;
}
a:hover, a:active {
	color: rgb(var(--color-hover));
}
@media only screen and (min-width: 768px) {
	section h1 {
		margin: 10px auto 30px auto;
		font-size: 32px;
	}
}
@media only screen and (min-width: 1024px) {
	section {
		padding: 40px;
	}
	section h1 {
		margin: 0 auto 30px auto;
		font-size: 40px;
	}
	button {
		padding: 10px 15px 9px 15px;
		font-size: 16px;
	}
}
@media only screen and (min-width: 1440px) {
	section {
		padding: 80px;
	}
	section .wrapper {
		margin: 0 auto;
		width: 1280px;
	}
}





/*
/
/	NAV & STICKY HEADER
/
*/

nav {
	margin: 20px 0 25px 0;
	text-shadow: 0 0 20px rgba(0,0,0,.9);
}
nav ul {
	display: flex;
	align-items: center;
	justify-content: center;
}
nav ul li {
	font-weight: 800;
	font-size: 16px;
	text-transform: uppercase;
}
nav ul li:not(:last-child) a {
	margin: 0 20px 0 0;
}
nav a {
	color: rgb(var(--color-offwhite));
	text-decoration: none !important;
}
nav a:hover {
	color: rgb(var(--color-hover));
}
#sticky {
	position: fixed;
	top: -60px;
	width: 100%;
	height: 50px;
	background-color: rgb(var(--color-bgd));
	border-bottom: 1px solid black;
	transition: all .25s ease-in-out;
	box-shadow: 0 4px 6px 0 rgba(0,0,0,.5);
	z-index: 99;
	background-image:
		linear-gradient(to right, rgba(0,0,0,.75), rgba(0,0,0,0), rgba(0,0,0,.75)),
		url(../img/bgd1.jpg);
	background-repeat:
		no-repeat,
		no-repeat;
	background-position:
		center center,
		center center;
	background-size:
		cover,
		cover;
}
#sticky .logo {
	width: auto;
	height: 30px;
}
#sticky .logowide {
	display: none;
}
#sticky nav {
	margin: 10px 20px;
	display: flex;
}
#sticky nav ul {
	margin-left: auto;
}
#sticky nav ul li {
	font-size: 13px;
}
#sticky nav ul li:not(:last-child) a {
	margin: 0 15px 0 0;
}
.stickyshow {
	/* must include "important" */
	top: 0 !important;
}

@media only screen and (min-width: 768px) {
	nav ul li {
		font-size: 20px !important;
	}
	nav ul li:not(:last-child) a {
		margin: 0 20px 0 0 !important;
	}
	#head nav {
		margin: 20px 0 0 0;
	}
	#sticky .logostacked {
		display: none;
	}
	#sticky .logowide {
		display: initial;
	}
}
@media only screen and (min-width: 1024px) {
	nav ul li {
		font-size: 24px !important;
	}
	nav ul li:not(:last-child) a {
		margin: 0 30px 0 0 !important;
	}
}
@media only screen and (min-width: 1440px) {
	#head nav {
		margin: 40px 0 0 0;
	}
}






/*
/
/	HEAD
/
*/

#head {
	background-image:
		linear-gradient(to right, rgba(0,0,0,.75), rgba(0,0,0,0)),
		url(../img/bgd1.jpg);
	background-repeat:
		no-repeat,
		no-repeat;
	background-position:
		center center,
		center center;
	border-bottom: none;
}
.lockup {
	margin: 0 auto;
	width: 90%;
	-webkit-filter: drop-shadow(0 0 20px rgba(0,0,0,.75));
	filter: drop-shadow(0 0 20px rgba(0,0,0,.75));
}
.lockup img {
	width: 100%;
	height: auto;
	display: block;
}
.lockup img:first-child {
	/*
	margin: 0 0 5px 10px;
	width: 35%;
	*/
}
.lockup img:last-child {
	/*
	margin: -5px 0 0 0;
	*/
}
.garlands {
	margin: 0 0 10px 0;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	/* gap: 20px; */
}
.garlands img {
	margin: 0 20px 0 0;
	width: 100px;
}
.garlands li {
	text-align: center;
}
.garlands li:first-child {
}
.garlands a {
	display: block;
	font-weight: 800;
	font-size: 12px;
	line-height: 14px;
	text-decoration: none;
}
.garlands a span {
	font-weight: 400;
	text-decoration: underline;
}
.garlands a:hover {
	color: rgb(var(--color-offwhite));
}
.garlands a:hover span {
	color: rgb(var(--color-hover));
}
.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%;
}
@media only screen and (min-width: 768px) {
	#head .wrapper {
		margin: 0 auto;
		display: grid;
		grid-auto-flow: column;
		grid-template-columns: 40% auto;
		grid-column-gap: 20px;
	}
	.lockup {
		width: 100%;
	}
	.garlands a {
		font-size: 14px;
		line-height: 16px;
	}
	.embed-container {
	}
	.embed-container iframe, .embed-container object, .embed-container embed {
	}
}
@media only screen and (min-width: 1024px) {
	#head .wrapper {
		grid-column-gap: 40px;
	}
	.garlands {
		margin: 0 0 20px 0;
	}
	.garlands img {
		width: 125px;
	}
	.garlands a {
		font-size: 16px;
		line-height: 18px;
	}
}
@media only screen and (min-width: 1440px) {
}










/*
/
/	ABOUT
/
*/

#about {
	background: url(../img/bgd4.jpg);
}
#about .col1 {
	text-align: center;
}
#about p {
	margin: 0 0 10px 0;
	font-size: 14px;
	line-height: 20px;
}
#about li {
	font-size: 14px;
	line-height: 20px;
}
#about h2 {
	font-size: 16px;
}
.poster {
	margin: 0 auto 20px auto;
	width: 40%;
	height: auto;
	border: 1px solid transparent;
}
.poster:hover {
	border: 1px solid rgb(var(--color-hover));
}
#expand {
	display: none;
}
#about button {
	margin: 0 0 20px 0;
}
.credits {
	display: grid;
	grid-auto-flow: column;
	grid-template-rows: repeat(2,auto);
	grid-template-columns: repeat(2,1fr);
	grid-gap: 10px;
}
@media only screen and (min-width: 768px) {
	#about .wrapper {
		display: grid;
		grid-auto-flow: column;
		grid-template-columns: 15% auto 20%;
		grid-gap: 20px;
	}
	#about p {
		margin: 0 0 20px 0;
		font-size: 16px;
		line-height: 22px;
	}
	#about h2 {
	}
	#about li {
	}
	.poster {
		margin: 0;
		width: 100%;
		height: auto;
	}
	.credits {
		grid-auto-flow: row;
		grid-template-columns: none;
		grid-gap: 20px;
	}
}
@media only screen and (min-width: 1024px) {
	#about .wrapper {
		grid-gap: 40px;
	}
	#about p {
		font-size: 20px;
		line-height: 28px;
	}
	#about h2 {
		font-size: 18px;
	}
	#about li {
		font-size: 16px;
		line-height: 22px;
	}
}
@media only screen and (min-width: 1440px) {
}







/*
/
/	WATCH
/
*/

#watch {
	background: url(../img/bgd3.jpg);
}
.theater {
	padding: 20px 0;
	border-bottom: 1px solid rgba(var(--color-offwhite),.15);
}
.theater:last-child {
	border-bottom: none;
}
.theater li {
	font-size: 16px;
	/* vertically center */
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.theater li:first-child {
	margin: 0 0 5px 0;
	font-weight: 800;
}
.theater small {
	margin: 3px 0 0 10px;
	font-size: 12px;
	text-transform: uppercase;
	color: rgba(var(--color-offwhite),.7);
}
.theater img {
	margin: 0 0 0 10px;
	width: 100px;
	height: auto;
}
.theater button {
	margin: 0;
}
.stream {
	margin: 0 auto;
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	width: 100%;
	/* gap: 20px; */
}
.stream li {
	display: block;
	flex: 1 1 100%;
	list-style-type: none;
}
.stream li:first-child {
	margin: 0 20px 0 0;
}
.stream button {
	padding: 20px 0;
	width: 100%;
	height: 100%;
}
.stream button svg {
	fill: rgb(var(--color-offwhite));
}
.stream button:hover svg {
	fill: rgb(var(--color-hover));
}
.stream .one {
	width: 100px;
	height: 24px;
}
.stream .two {
	width: 100px;
	height: 14px;
}
@media only screen and (min-width: 768px) {
	.theater {
		display: grid;
		grid-auto-flow: column;
		grid-template-columns: 15% auto 20%;
		grid-gap: 20px;
	}
	.theater li {
		font-size: 18px;
	}
	.theater li:first-child {
		margin: 0;
		font-weight: 800;
	}
	.theater img {
		margin: 0 0 0 20px;
		width: 125px;
	}
	.theater button {
		margin: 0;
	}
	.stream {
		width: 80%;
		/* gap: 30px; */
	}
	.stream li:first-child {
		margin: 0 30px 0 0;
	}
	.stream .one {
		width: 200px;
		height: 48px;
	}
	.stream .two {
		width: 200px;
		height: 28px;
	}
}
@media only screen and (min-width: 1024px) {
	.theater {
		grid-gap: 40px;
	}
	.theater li {
		font-size: 20px;
	}
	.theater small {
		margin: 5px 0 0 10px;
		font-size: 14px;
	}
	.stream {
		width: 70%;
		/* gap: 40px; */
	}
	.stream li:first-child {
		margin: 0 40px 0 0;
	}
	.stream button {
		padding: 30px 0;
	}
}
@media only screen and (min-width: 1440px) {
	.stream {
		width: 60%;
	}
}










/*
/
/	PRESS
/
*/

#press {
	background: url(../img/bgd2.jpg);
}
#press figure {
	margin: 0 0 30px 0;
}
#press figure a {
	display: block;
	text-decoration: none !important;
}
#press figure a:hover blockquote {
	color: rgb(var(--color-offwhite));
}
#press figure a cite span {
	text-decoration: underline;
}
#press blockquote {
	margin: 0 0 10px 0;
	font-size: 14px;
	line-height: 20px;
}
#press cite {
	margin: 20px 0 0 20px;
	font-size: 14px;
}
#press cite:before {
	content: "\2014 ";
	text-decoration: none !imporant;
}
#press p {
	margin: 40px auto 0 auto;
	text-align: center;
	font-size: 14px;
}

@media only screen and (min-width: 768px) {
	#press .wrapper {
		display: grid;
		grid-template-columns: repeat(2,1fr);
		grid-template-rows: repeat(2,1fr);
		grid-gap: 20px;
	}
	#press figure {
		margin: 0;
	}
	#press blockquote,
	#press p {
		font-size: 16px;
		line-height: 22px;
	}
	#press cite {
		font-size: 15px;
	}
}
@media only screen and (min-width: 1024px) {
	#press .wrapper {
		grid-gap: 40px;
	}
	#press blockquote,
	#press p {
		font-size: 20px;
		line-height: 28px;
	}
	#press cite {
		font-size: 18px;
	}
}
@media only screen and (min-width: 1440px) {
}







/*
/
/	FOOTER
/
*/

#footer ul {
	margin: 20px auto;
	display: flex;
	align-items: center;
	justify-content: center;
}
#footer li:first-of-type {
	margin: 0 20px 0 0;
}
#footer img.cbsn {
	width: 125px;
	height: auto;
}
#footer img.topic {
	width: 100px;
	height: auto;
}
#footer p {
	margin: 20px auto;
	text-align: center;
	font-size: 12px;
	line-height: 14px;
}
@media only screen and (min-width: 768px) {
	#footer ul {
		margin: 40px auto;
	}
	#footer li:first-of-type {
		margin: 0 40px 0 0;
	}
	#footer img.cbsn {
		width: 200px;
	}
	#footer img.topic {
		width: 150px;
	}
	#footer p {
		font-size: 14px;
	}
}










@media only screen and (min-width: 768px) {
}
@media only screen and (min-width: 1024px) {
}
@media only screen and (min-width: 1440px) {
}




