@charset "UTF-8";

/***** RESET *****/

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}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}

/***** RADIO TV *****/

* {
	padding: 0;
	margin: 0;
}

html, body {
	background-color: #111111;
	font-family: 'Courier', Sans-Serif;
	font-size: 12px;
	line-height: 18px;
}

/***** LAYOUT *****/

#logo {
	background-image: url('../images/main/radiotv_black.png');
	background-size: contain;
	background-repeat: no-repeat;
	height: 36px;
	width: 100px;
	display: block;
	position: absolute;
	top: 30px;
	left: 30px;
	z-index: 200;
	-webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
	opacity: 0;
}

#logo.white { background-image: url('../images/main/radiotv_white.png');}


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

#btn_menu {
	height: 30px;
	width: 30px;
	display: block;
	background-image: url('../images/main/menu.svg');
	background-size: 30px 60px;
	background-position: 0px -30px;
	position: fixed;
	top: 30px;
	right: 30px;
	z-index: 100;
	opacity: 0;
}

#btn_menu.white { background-position: 0px 0px; }

#btn_menu:hover { background-position: 0px 0px; }
#btn_menu.white:hover { background-position: 0 -30px; }

#navigation {
	width: auto;
	height: auto;
	display: none;
	position: fixed;
	top: 70px;
	right: 30px;
	z-index: 100;
}

#navigation li {
	font-size: 16px;
	text-align: right;
	margin: 10px 0 10px 0;
}

#navigation a {
	background-color: #fff;
	color: #000;
	padding: 5px 10px 5px 10px;
	display: inline;
}

#navigation a.black {
	background-color: #000;
	color: #fff;
}

/***** WELCOME *****/

#welcome {
	padding-top: 100px;
	text-align: center;
	padding-bottom: 100px;
	opacity: 0;
	background-color: #fff;
	-webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
#welcome.black { background-color: #000; }
#welcome.black #home_footer { background-color: #000; color: #222222; }

#welcome_text {
	width: 90%;
	margin: auto;
}

#home_footer {
	text-align: center;
	color: #000;
	line-height: 16px;
	background-color: #fff;
	width: 80%;
	max-width: 400px;
	margin: auto;
	opacity: 1;
	font-weight: bold;
	-webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}


/***** OVERLAY *****/

#btn_close {
	height: 30px;
	width: 30px;
	display: none;
	background-image: url(../images/main/btn_close.svg);
	position: fixed;
	top: 30px;
	right: 30px;
	z-index: 1001;
}
#btn_close:hover { cursor: pointer; }

#overlay_holder {
	background-color: #da3832;
	height: 100vh;
	width: 100vw;
	position: fixed;
	z-index: 100;
	display: none;
}

#overlay_black {
	height: 100vh;
	width: 100vw;
	background-color: #000;
	position: relative;
	display: none;
}


#overlay_video_holder {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80%;
	max-width: 800px;
	background-color: #000;
}

/***** VIDEO *****/

#reel_black {
	background-color: #000;
	height: 100vh;
	position: relative;
	display: none;
}

#video_holder_demo_reel, #overlay_video_holder {
	max-width: 1000px;
    height: auto;
    margin: auto;
	display: block;
	margin-bottom: 25px;
}

#video_holder_demo_reel { opacity: 1; margin-top: 50px; }

#video, #overlay_video {
	position: relative;
    width: 100%;
	padding-top: 43%;
	display: block;
	overflow: hidden;
}

#video iframe, #overlay_video iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
	overflow: hidden;
}

/***** CONTENT ******/

.block_white,
.block_black,
.block_red,
.block_dark_black {
	padding: 100px 0px 100px 0px;
	width: 100vw;
	background-color: #fff;
}

.block_black { background-color: #161616; }
.block_dark_black { background-color: #111111; }
.block_red { background-color: #da3832; }

.content {
	margin: auto;
	width: 90%;
	max-width: 1200px;
}
.content.demo_reel { max-width: 1000px; }


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

#projects, #reels {
	background-color: orange;
	padding: 0;
	margin: 0;
	opacity: 0;
}


.project {
	width: calc(100% / 4);
	height: 300px;
	float: left;
	background-color: #000;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	background-color: #fff;
	position: relative;
}

#reels .project:first-child,
#reels .project:nth-child(2),
#reels .project:nth-child(3){
	width: calc((100% / 3) - 2px);
	height: 400px;
	border: 1px solid #000;
}

#reels .project:nth-child(2){
	border-left: none;
	border-right: none;
	width: calc(100% / 3);
}

#project_reel_animation .project_text,
#project_reel_motiongraphics .project_text,
#project_reel_commercial .project_text{
	color: transparent;	
}

.project_text {
	color: #fff;
	margin: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	text-transform: lowercase;
	font-style: italic;
	cursor: pointer;
}

.project_name {
	font-weight: bold;	
	text-transform: uppercase;
	font-style: normal;
}

.project_hover_bg {
	position: absolute;
	height: 100%;
	width: 100%;
	opacity: 0;
}

.project:hover .project_hover_bg {
	background-color: #da3832;
	background-repeat: no-repeat;
	-webkit-transition: opacity 0.5s ease;
    -moz-transition: opacity 0.5s ease;
    -o-transition: opacity 0.5s ease;
    transition: opacity 0.5s ease;
	cursor: pointer;
	opacity: .95;
}

#reels .project:first-child .project_hover_bg,
#reels .project:nth-child(2) .project_hover_bg,
#reels .project:nth-child(3) .project_hover_bg {
	background-image: url('../images/projects/reel_animation_hover.jpg');
	background-position: center center;
	background-size: cover;
}
#reels .project:nth-child(2) .project_hover_bg { background-image: url('../images/projects/reel_motiongraphics_hover.jpg'); }
#reels .project:nth-child(3) .project_hover_bg { background-image: url('../images/projects/reel_commercial_hover.jpg'); }

#project_skiing_song .project_text,
#project_party_legends .project_text {
	color: #000;	
}

/***** DESIGN WORK *****/

.block_dark_black .content { color: #cccccc; }
.block_dark_black .content b { color: #f1f1f1; }

.design_holder {
	width: 100%;
	height: auto;
}

.design_holder div {}
.design_holder div img { 
	width: 97%;
	margin: auto;
}
.design_holder .one {}
.design_holder .one img { margin-left: 0 }

.design_holder .two img { margin-right: 0 }


#design_text {
	color: #ccc;
	width: 80%;
	margin: auto;
	margin-top: 100px;
	text-align: center;
}

/***** DECKS *****/

#decks { opacity: 0; }

/***** SERVICES *****/

#block_4 { max-width: 1200px; margin: auto; }
#services { opacity: 0; }

.sub_block {
	width: 40%;
	margin: 0 5% 0 5%;
	float: left;
}

.sub_block:nth-child(3){
	clear: both;
	width: 90%;
	margin-top: 75px;
	text-align: center;
}

.service {
	width: 100%;
	float: left;
	text-align: left;
	margin-bottom: 25px;
}

/***** CLIENTS *****/

#clients {}

.client-logo {
	width: calc(20% - 20px);
	height: 40px;
	float: left;
	margin: 0px 20px 20px 0px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
}

.client-logo img { display: none; }

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

#footer {
	padding: 15px 0px 15px 0px;
	text-align: center;
	background-color: #111111;
	color: #fff;
	font-size: 6px;
	border-top: 1px solid #da3832;
}

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

a {
	color: #ccc;
	text-decoration: none;
	font-weight: bold;
}

a:hover {
	text-decoration:
	underline;
	color: #da3832;
}

h1 {
	font-family: "bebas";
	font-size: 80px;
	font-weight: bold;
	line-height: 80px;
}


h2 {
	font-family: "bebas";
	font-size: 36px;
	line-height: 50px;
	color: #da3832;
}

h3 {
	font-weight: bold;
	text-transform: uppercase;
	font-size: 14px;
	color: #da3832;
}

b {	
	font-weight: bold;
	color: #da3832;
}

.sub {
	color: #111111;
	font-family: "Baskerville";
	font-weight: normal;
	font-style: italic;
}

.clear { 
	clear: both;
	display: block;
	background-color: green;
}

.noScroll { overflow: hidden; }

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

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

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

#test {
	background-color: teal;
	position: fixed;
	top: 30px;
	left: 30px;
	display: none;
}

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

	#test { background-color: orange; }
	
	#welcome { padding: 50px; }
	
	.project { height: 150px; }
	
	#reels .project:first-child,
	#reels .project:nth-child(2), 
	#reels .project:nth-child(3){
		width: 100%;
		height: 150px;
		background-size: contain !important;
		border: 1px solid #000;
		background-image: url('../images/projects/reel_animation_thin.jpg') !important;
	}
	
	#reels .project:nth-child(2){
		border-top: none;
		border-bottom: none;
		background-image: url('../images/projects/reel_motiongraphics_thin.jpg') !important;
	}
	
	#reels .project:nth-child(3){
		background-image: url('../images/projects/reel_commercial_thin.jpg') !important;
	}
	
	#reels .project:first-child .project_hover_bg,
	#reels .project:nth-child(2) .project_hover_bg,
	#reels .project:nth-child(3) .project_hover_bg {
		background-image: url('../images/projects/reel_animation_thin_hover.jpg');
		background-position: center center;
		background-size: contain;
	}
	#reels .project:nth-child(2) .project_hover_bg { background-image: url('../images/projects/reel_motiongraphics_thin_hover.jpg'); }
	#reels .project:nth-child(3) .project_hover_bg { background-image: url('../images/projects/reel_commercial_thin_hover.jpg'); }
	
	#overlay_video_holder {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 100%;
		max-width: 1000px;
		max-height: 1000px;
	}
	
	#video, #overlay_video {
		padding-top: 80%;
	}
}

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

	#test { background-color: green; }
	
	.project {
		width: 50%;
	}
	
	#reels .project:first-child,
	#reels .project:nth-child(2), 
	#reels .project:nth-child(3){
		width: 100%;
		height: 100px;
		background-size: contain !important;
		background-repeat: no-repeat !important;
		background-color: #fff;
	}
	
	.project_hover:hover { background-repeat: no-repeat !important; }
	
	.sub_block {
		width: 80%;
		margin: auto;
		margin-bottom: 50px;
		float: none;
		text-align: center;
	}
	
	.sub_block:nth-child(3) {
		padding-top: 50px;
	}
	
	#decks {
		padding-top: 35px;
		padding-bottom: 35px;
	}
}
