html, body, h1, p {
	margin: 0;
	padding: 0;
}

h1 {
	font-family: 'Open Sans', sans-serif;
	font-size: 48px;
	font-weight: 300;
	line-height: 3rem;
	color: white;
}

p {
	font-family: 'Open Sans', sans-serif;
	font-size: 18px;
	font-weight: 400;
	color: white;
}

#navbar {
	background-color: transparent;
	position: fixed; 
	top: 0;
	width: calc(100% - 96px);
	transition: all 250ms ease-in;
	padding: 18px 48px;
	display: flex;
	justify-content: space-between;
}

#navbar.nav-down {
	top: 0;
	background-color: #282b2f;
}

#navbar.nav-up {
	top: -90px;
	background-color: transparent;
}


#navbar a {
	float: right;
	display: block;
	color: white;
	text-align: center;
	padding: 16px;
	text-decoration: none;
	font-family: 'Montserrat', 'Open Sans', sans-serif;
	text-transform: uppercase;
	font-size: 13px;
	font-weight: 700;
}

#navbar a.active {
	border-bottom: 3px solid white;
}

#nav ul {
	display: flex;
	list-style-type: none;
	margin: 0;
}

#wrap {
	height: 100%;
	width: 100%;
}

#main-logo {
	height: 48px;
	width: auto;
}


#hero, #corporate, #cinema, #creative, #contact {
	outline: none;
}

#hero {
	background-image: url('assets/img/Top_hero_img.jpg');
	background-attachment: fixed;
	background-position: center;
	background-size: cover;
	height: 100vh;
	display: flex;
	align-items: center;
	box-shadow: 0px -3px 0px  rgb(226, 58, 62) inset;
}

#hero-text {
	width: 420px;
	height: 540px;
	padding-left: 200px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
}

#subtitle {
	padding: 12px 0;
}

.button {
	font-family: 'Montserrat', 'Open Sans', sans-serif;
	font-size: 10pt;
	font-weight: 700;
	text-transform: uppercase;
	background: white;
	color: black;
	padding: 16px 60px;
	border-radius: 60px;
	margin: 24px 0;
	text-decoration: none;
}

#corporate {
	display: flex;
}

#corporate-left {
	background-image: url('assets/img/corporate1.jpg');
	background-position: top center;
	background-size: cover;
	width: 50%;
	height: 540px;
}

.watermark {
	background-image: url('assets/img/watermark_ccc_BG.jpg');
	background-position: center;
	background-size: cover;
	width: 50%;
	height: 540px;
}

.watermark h1 {
	color: black;
}

.watermark p {
	color: rgb(100, 100, 100);
}

#cinema {
	background-image: url('assets/img/cinema.jpg');
	background-position: center;
	background-size: cover;
	height: 700px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

#cinema p {
	color: rgb(180, 180, 180);
}

#creative {
	display: flex;
}

#creative-right {
	background-image: url('assets/img/Creative.jpg');
	background-position: center;
	background-size: cover;
	width: 50%;
	height: 540px;
}

#contact {
	background: #181b1d;
	display: flex;
	align-items: center;
	height: 320px;
}

#contact-left {
	width: 50%;
	display: flex;
}

#contact-text {
	margin: auto;
	width: 350px;
}

#contact-text h1 {
	color: rgb(200, 200, 200);
}

#contact-text p {
	font-family: 'Montserrat', 'Open Sans', sans-serif;
	font-size: 13px;
	text-transform: uppercase;
	font-weight: 700;
	color: rgb(200, 200, 200);
}

#contact-text a {
	color: rgb(200, 200, 200);
}

#contact-right {
	margin: auto;
}

.contact-pair {
	display: flex;
	align-items: center;
	width: 350px;
	margin-bottom: 25px;
}

.contact-pair p {
	color: rgb(200, 200, 200);
}

#email, #phone {
	border-bottom: 1px solid rgb(56, 56, 56);
	text-decoration: none;
	color: rgb(200, 200, 200);
	font-family: 'Open Sans', sans-serif;
}

#footer {
	background: #282b2f;
	color: #5b626b;
	width: 100%;
}

#footer-logo {
	height: 64px;
	margin-right: 24px;
	width: auto;
}

#footer-left {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50%;
}

#footer-left p {
	color: #5b626b;
	font-size: 12px;
	padding-right: 60px;
}

.section-text {
	width: 420px;
	height: 540px;
	margin: auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
}

.section-text-center {
	width: 500px;
	height: 540px;
	margin: auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.section-text-center p {
	text-align: center;
}

.title-icon {
	height: 45px;
	width: 45px;
	padding-right: 18px;
}

.divider {
	padding: 24px 0;
}

.section-title {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}


/* Hamburger button */
.hamburger {
	padding: 15px 15px;
	display: none;
	cursor: pointer;
	transition-property: opacity, filter;
	transition-duration: 0.15s;
	transition-timing-function: linear;
	font: inherit;
	color: inherit;
	text-transform: none;
	background-color: transparent;
	border: 0;
	margin: 0;
	overflow: visible;
  }

.hamburger:hover {
	opacity: 0.7;
}

.hamburger.is-active:hover {
	opacity: 0.7;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
	background-color: #fff;
}

.hamburger-box {
	width: 30px;
	height: 24px;
	display: inline-block;
	position: relative;
}

.hamburger-inner {
	display: block;
	top: 50%;
	margin-top: -2px;
}

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
	width: 30px;
	height: 3px;
	background-color: #fff;
	border-radius: 4px;
	position: absolute;
	transition-property: transform;
	transition-duration: 0.15s;
	transition-timing-function: ease;
}

.hamburger-inner::before, .hamburger-inner::after {
	content: "";
	display: block;
}

.hamburger-inner::before {
	top: -10px;
}

.hamburger-inner::after {
	bottom: -10px;
}

/* Hamburger Animation */
.hamburger--slider .hamburger-inner {
	top: 2px;
}

.hamburger--slider .hamburger-inner::before {
	top: 10px;
	transition-property: transform, opacity;
	transition-timing-function: ease;
	transition-duration: 0.15s;
}

.hamburger--slider .hamburger-inner::after {
	top: 20px;
}

.hamburger--slider.is-active .hamburger-inner {
	transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--slider.is-active .hamburger-inner::before {
	transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
	opacity: 0;
}

.hamburger--slider.is-active .hamburger-inner::after {
	transform: translate3d(0, -20px, 0) rotate(-90deg);
}



/* Old iPad Portrait and Landscape */
@media only screen 
  and (min-device-width: 768px) 
  and (max-device-width: 1024px) 
  and (-webkit-min-device-pixel-ratio: 1) {
	#hero {
		background-attachment: scroll;
		background-image: url('assets/img/Top_hero_img_ipad2.jpg');
	}
}


@media (min-width: 600px) and (max-width: 1024px) {
	
	#main-logo {
		height: 48px;
		width: auto;
	}

	#hero-text {
		padding-left: 48px;
	}
	
	#corporate {
		display: block;
	}
	
	#corporate-left {
		width: 100%;
	}
	
	.watermark {
		width: 100%;
	}
	
	
	#cinema {
		align-items: flex-start;
	}
	
	#creative {
		display: block;
	}
	
	#creative-right {
		width: 100%;
	}
	
	#contact {
		height: 540px;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}
	
	#contact-left {
		width: 100%;
	}
	
	#contact-text {
		width: 350px;
	}

	.vertical-divider {
		display: none;
	}
	
	#contact-right {
		padding-top: 24px;
		width: 350px;
		margin: 0;
	}
	
	#email, #phone {
		border-bottom: 1px solid rgb(56, 56, 56);
		text-decoration: none;
		color: rgb(200, 200, 200);
		font-family: 'Open Sans', sans-serif;
	}
	
	#footer-logo {
		height: 48px;
		margin-right: 12px;
		width: auto;
	}
	
	#footer-left {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
		padding-top: 20px;
		padding-bottom: 20px;
	}

	.section-text {
		width: 360px;
	}
	
	.section-text-center {
		width: 360px;
		align-items: flex-start;
	}
	
	.section-text-center p {
		text-align: left;
	}

}

@media only screen 
  and (min-device-width: 375px) 
  and (max-device-width: 667px) 
  and (-webkit-min-device-pixel-ratio: 2)
  and (orientation: landscape) { 

	  #hero {
		  height: 450px;
		  background-attachment: scroll !important;
		  background-image: url('assets/img/Top_hero_img_ipad2.jpg');
		  background-size: cover;
		}

	  h1 {
		  font-size: 32px;
		  line-height: 1.0;
	  }

		#cinema, #corporate-left, .watermark, .section-text, #contact {
			height: 110vh;
		}
}

@media (max-width: 600px) {
	
	h1 {
		font-size: 36px;
		line-height: 2.25rem;
	}
	
	p {
		font-size: 16px;
		font-weight: 400;
	}
	
	#navbar {
		background-color: #282b2f;
		padding: 8px;
		width: calc(100% - 16px);
	}

	.hamburger {
		display: inline-block;
		position: absolute;
		top: 10px;
		right: 15px;
	}

	#nav {
		display: none;
	}

	#navbar.open {
		background: #282b2f !important;
	}

	#navbar.open, #navbar.open #nav {
		display: block;
	}

	#navbar.open ul {
		display: block;
		margin-top: 5px;
	}

	#navbar.open ul li {
		display: block;
	}

	#navbar.open ul a {
		display: block;
		width: 100%;
		padding: 20px 16px;
		background: rgba(40, 43, 47, 0.75);
		/* background: #282b2f; */
	}
	
	#main-logo {
		height: 48px;
		width: auto;
	}
	
	#hero {
		display: flex;
		justify-content: center;
		align-items: center;
		background-attachment: scroll !important;
		box-shadow: 0px -3px 0px  rgb(226, 58, 62) inset;
	}
	
	#hero-text {
		width: 300px;
		padding-left: 32px;
	}
	
	#subtitle {
		padding: 12px 0;
		width: 300px;
	}
	
	#corporate {
		display: block;
	}
	
	#corporate-left {
		width: 100%;
		height: 540px;
	}
	
	.watermark {
		width: 100%;
		height: 540px;
	}
	
	#cinema {
		background-image: url('assets/img/cinema.jpg');
		background-size: cover;
		height: 700px;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	
	#cinema p {
		color: rgb(180, 180, 180);
	}
	
	#creative {
		display: block;
	}
	
	#creative-right {
		width: 100%;
	}
	
	#contact {
		display: flex;
		flex-direction: column;
		justify-content: center;
		height: 320px;
	}
	
	#contact-left {
		width: 100%;
		display: flex;
	}
	
	#contact-text {
		margin: auto;
		width: 280px;
	}
	
	#contact-text p {
		font-family: 'Montserrat', 'Open Sans', sans-serif;
		font-size: 13px;
		text-transform: uppercase;
		font-weight: 700;
		color: rgb(200, 200, 200);
	}

	.vertical-divider {
		display: none;
	}
	
	#contact-right {
		margin: 0 auto;
	}
	
	.contact-pair {
		width: 280px;
		margin: 20px auto;
	}
	
	#footer-logo {
		height: 32px;
		margin-right: 8px;
	}
	
	#footer-left {
		width: 100%;
		padding-top: 20px;
		padding-bottom: 20px;
	}
	
	.section-text {
		width: 280px;
		margin: auto;
		padding-left: 32px;
	}
	
	.section-text-center {
		width: 280px;
		height: 540px;
		margin: auto;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: flex-start;
		padding-left: 32px;
	}
	
	.section-text-center p {
		text-align: left;
	}
	
	.title-icon {
		height: 30px;
		width: 30px;
		padding-right: 12px;
	}

}
