@font-face {
	font-family: OnTheEndFont;
	src: url('OnTheEndFont.woff');
}
/* -----------GENERAL----------- */

html {
	scroll-behavior: smooth;
	background-color: #0f0c21;
}
* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
body {
	background-color: #ccc;
}
p.body-copy {
	font-family: "Jost", sans-serif;
	color: #fff;
	font-size: 1rem;
}
p.cast-name {
	font-family: "Jost", sans-serif;
	color: #fff;
	font-size: 1.5rem;
	text-align: center;
}
span.cast-title {
	font-family: OnTheEndFont;
	font-size: 1.5rem;
	filter: drop-shadow(-4px -2px 0px #0a0e39);
	color: #fba72b;
	text-align: center;
}
h2.headers {
	font-family: OnTheEndFont;
	font-size: 60px;
	filter: drop-shadow(-4px -2px 0px #0a0e39);
	color: #fba72b;
	text-align: center;
	padding-top: 100px;
	padding-bottom: 40px;
}
a.gold-btn {
	color: #2e2438;
	font-family: "Jost", sans-serif;
	border-radius: 5px;
	background-color: #fba72b;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px 20px;
	width: 250px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-decoration: none;
	transition: all 0.3s ease-in-out;
	margin: 0 auto;
}
a.gold-btn:hover {
	background-color: #cd8823;
	border: 1px solid #fff;
	color: #fff;
}
/* -----------NAV----------- */

.nav-holder {
	display: flex;
	flex-direction: row;
	position: fixed;
	padding-top: 10px;
	align-items: center;
	left: 0;
	right: 0;
	width: 100%;
	padding-bottom: 10px;
	background-color: transparent;
	transition: background-color 0.3s ease;
	z-index: 1000;
}
.nav-holder.scrolled {
	background-color: rgba(11, 8, 27, 0.7);
}
.nav-parent .nav-item-container {
	width: 50%;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.nav-parent .festival-logos {
	width: 50%;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.nav-parent .festival-logos img {
	width: 100px;
	margin-left: 20px;
}
.nav-parent a.nav-item {
	font-family: OnTheEndFont;
	font-size: 30px;
	filter: drop-shadow(-4px -2px 0px #0a0e39);
	color: #fba72b;
	text-decoration: none;
	transition: all 0.3s ease-in-out;
}
.nav-parent a.nav-item:not(:first-child) {
	padding-left: 30px;
}
.nav-parent a.nav-item:hover {
	color: #cd8823;
	-webkit-text-stroke: 0.5px #0a0e39;
}
/* -----------HERO----------- */

.hero-parent {
	background-image: url("img/Main-BG.jpg");
	background-size: cover;
	background-position: top;
	background-repeat: no-repeat;
	background-attachment: fixed;
}
.hero-parent h1 {
	visibility: hidden;
}
.hero-parent .col-md-12 {
	display: flex;
	flex-direction: column;
	max-width: 730px;
	align-items: center;
	margin: 0 auto;
	margin-top: 600px;
	margin-bottom: 100px;
}
.hero-parent .hero-directors-name {
	max-width: 200px;
}
.hero-parent .hero-ontheendlogo {
	max-width: 500px;
}
.hero-parent .body-copy {
	text-align: center;
	padding-bottom: 20px;
}
.hero-parent .festival-logos-mobile {
	display: none;
}
.hero-parent a:hover {
	cursor: pointer;
}
/* -----------SYNOPSIS----------- */

.synopsis-parent {
	background-image: url("img/Alt-BG-1.jpg");
	background-repeat: none;
	background-size: cover;
	background-position: top;
	background-attachment: fixed;
}
.synopsis-parent .col-md-12 {
	max-width: 780px;
	margin: 0 auto;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-bottom: 100px;
}
/* -----------CAST----------- */

.cast-parent {
	background-color: #0f0c21;
	padding-bottom: 0px;
}
.cast-parent .col-md-12 {
	max-width: 780px;
	margin: 0 auto;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-top: 50px;
	padding-bottom: 100px;
}
.carousel-cell2 {
	width: 20%;
	height: 700px;
	/* flex-box, center image in cell */
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	align-items: center;
	flex-direction: column;
}
.carousel-cell2 img {
	display: block;
	max-width: 100%;
	max-height: 100%;
	/* dim unselected */
	opacity: 0.4;
	-webkit-transform: scale(0.85);
	transform: scale(0.85);
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s, transform 0.3s;
	transition: opacity 0.3s, transform 0.3s;
}
.carousel-cell2 p.cast-name {
	opacity: 0.4;
}
.carousel-cell2.is-selected p.cast-name {
	opacity: 1;
}
.carousel-cell2.is-selected img {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-filter: none;
	filter: none;
	border: 2px solid #fca72a;
	border-radius: 100%;
}
.carousel-cell2.is-selected p.cast-desc {
	opacity: 1;
	display: block;
}
.carousel-cell2 p.cast-desc {
	font-family: "Jost", sans-serif;
	color: #fff;
	font-size: 1rem;
	text-align: center;
	opacity: 0;
	display: none;
}
/* -----------GALLERY----------- */

.gallery-parent {
	background-image: url("img/Alt-BG-1.jpg");
	background-repeat: none;
	background-size: cover;
	background-position: top;
	padding-bottom: 100px;
	background-attachment: fixed;
}
.carousel-cell {
	width: 60%;
	height: 500px;
	/* flex-box, center image in cell */
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	align-items: center;
	flex-direction: column;
}
.carousel-cell img {
	display: block;
	max-width: 100%;
	max-height: 100%;
	/* dim unselected */
	opacity: 0.7;
	-webkit-transform: scale(0.85);
	transform: scale(0.85);
	-webkit-filter: blur(5px);
	filter: blur(5px);
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s, transform 0.3s, -webkit-filter 0.3s, filter 0.3s;
	transition: opacity 0.3s, transform 0.3s, filter 0.3s;
}
.carousel-cell:hover {
	cursor: zoom-in;
}
.carousel-cell.is-selected img {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-filter: none;
	filter: none;
	border: 2px solid #fca72a;
}
/* -----------PRESS----------- */

.press-parent {
	background-color: #0f0c21;
	padding-bottom: 0px;
}
.carousel-cell3 {
	width: 30%;
	height: 400px;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
	-webkit-align-items: center;
	align-items: center;
	flex-direction: column;
	padding-left: 30px;
}
.carousel-cell3 p.cast-name {
	opacity: 0.4;
}
.carousel-cell3.is-selected p.cast-desc {
	opacity: 1;
}
.carousel-cell3 p.cast-desc {
	font-family: "Jost", sans-serif;
	color: #fff;
	font-size: 1rem;
	text-align: left;
	opacity: 0.5;
	padding: 20px;
}
.press-parent a.gold-btn {
	margin-left: 20px !important;
}
/* -----------WATCH----------- */

.watch-parent {
	background-image: url("img/Alt-BG-1.jpg");
	background-repeat: none;
	background-size: cover;
	background-position: top;
	padding-bottom: 50px;
	background-attachment: fixed;
}
.watch-parent .col-md-12 {
	max-width: 780px;
	margin: 0 auto;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-bottom: 100px;
}
.watch-parent .festival-logos {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 20px;
}
.watch-parent .festival-logos img {
	width: 100px;
	margin-left: 20px;
}
/* -----------CONTACT----------- */

.contact-parent {
	background-color: #0f0c21;
	padding-bottom: 90px;
	padding-top: 50px;
	background-attachment: fixed;
}
.contact-parent .col-md-4 {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.contact-parent .col-md-4 img {
	max-width: 200px;
}
/* -----------WEB CREDIT----------- */

.web-credit-parent {
	padding-top: 50px;
	padding-bottom: 50px;
	background-color: #000;
}
.web-credit-parent a, .web-credit-parent p {
	max-width: 400px;
	margin: 0 auto;
	display: block;
	color: #fff;
	text-align: center;
	font-family: "Jost", sans-serif;
}
.web-credit-parent img {
	max-width: 200px;
}
.web-credit-parent .mobile-only {
	display: none;
}
.web-credit-parent .desktop-only {
	display: block;
}
/* -----------GENERAL CAROUSEL STYLES----------- */

.carousel {
	background: transparent;
}
.flickity-page-dots {
	display: none;
}
/* buttons, no circle */

.flickity-prev-next-button {
	width: 60px;
	height: 60px;
	background: #fba72b !important;
	opacity: 1;
}
.flickity-prev-next-button:hover {
	opacity: 0.6;
	background: #fba72b;
}
/* arrow color */

.flickity-prev-next-button .arrow {
	fill: #2e2438 !important;
}
.flickity-prev-next-button.no-svg {
	color: #2e2438 !important;
}
/* closer to edge */

.flickity-prev-next-button.previous {
	left: 0;
}
.flickity-prev-next-button.next {
	right: 0;
}
/* hide disabled button */

.flickity-prev-next-button:disabled {
	display: none;
}
/* -----------ENLARGE PHOTOS----------- */

.modal {
	display: none;
	position: fixed;
	z-index: 100000;
	padding-top: 100px;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.9) !important;
}
.modal-content {
	margin: auto;
	display: block;
	width: 100%;
	max-width: 1000px;
	background-color: transparent !important;
}
.modal-content video {
	width: 100%;
	height: 100%;
	margin-top: 100px;
}
.modal-content, #caption {
	-webkit-animation-name: zoom;
	-webkit-animation-duration: 0.6s;
	animation-name: zoom;
	animation-duration: 0.6s;
}
@-webkit-keyframes zoom {
	from {
		transform: scale(0)
	}
	to {
		transform: scale(1)
	}
}
@keyframes zoom {
	from {
		transform: scale(0.1)
	}
	to {
		transform: scale(1)
	}
}
.close, .close2 {
	position: absolute;
	top: 15px;
	left: 35px;
	text-align: left;
	font-family: OnTheEndFont;
	font-size: 2.5rem;
	filter: drop-shadow(-4px -2px 0px #0a0e39);
	color: #fba72b;
	transition: 0.3s;
}
.close:hover, .close:focus {
	color: #bbb;
	text-decoration: none;
	cursor: pointer;
}
.close2:hover, .close2:focus {
	color: #bbb;
	text-decoration: none;
	cursor: pointer;
}
/* -----------MEDIA QUERIES----------- */

@media screen and (max-width:1050px) {
	h2.headers {
		font-family: OnTheEndFont;
		font-size: 50px;
		filter: drop-shadow(-4px -2px 0px #0a0e39);
		color: #fba72b;
		text-align: center;
		padding-top: 100px;
		padding-bottom: 40px;
	}
	p.cast-name {
		font-family: "Jost", sans-serif;
		color: #fff;
		font-size: 1rem;
		text-align: center;
	}
	span.cast-title {
		font-size: 1rem;
	}
	.nav-holder {
		flex-direction: column;
		align-items: center;
		justify-content: center;
		height: 100px;
		width: 100vw;
	}
	.nav-holder.scrolled {
		height: 100px;
	}
	.nav-parent .nav-item-container {
		width: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		margin-top: 20px;
	}
	.nav-parent a.nav-item {
		font-size: 20px;
		margin-left: 3px;
	}
	.nav-parent .festival-logos {
		display: none;
	}
	.hero-parent .festival-logos-mobile {
		width: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		margin-top: 50px;
	}
	.hero-parent .festival-logos-mobile img {
		width: 75px;
		margin-left: 10px;
	}
	.hero-parent {
		background-attachment: scroll;
	}
	.hero-parent .col-md-12 {
		max-width: 350px;
		margin-top: 40vh;
		margin-bottom: 100px;
	}
	.hero-parent .hero-directors-name {
		max-width: 180px;
	}
	.hero-parent .hero-ontheendlogo {
		max-width: 350px;
	}
	.synopsis-parent {
		background-attachment: scroll;
	}
	.synopsis-parent .col-md-12 {
		padding-left: 20px;
		padding-right: 20px;
	}
	.gallery-parent {
		background-attachment: scroll;
	}
	.press-parent a.gold-btn {
		transform: scale(0.75);
		margin-left: -20px !important;
		float: left;
	}
	.contact-parent {
		background-attachment: scroll;
	}
	/* GALLERY CAROUSEL */
	.carousel-cell {
		width: 60%;
		height: 200px;
	}
	/* CAST CAROUSEL */
	.carousel-cell2 {
		width: 50%;
		height: 750px;
	}
	/* PRESS CAROUSEL */
	.carousel-cell3 {
		width: 60%;
		height: 500px;
		opacity: 0.7;
		-webkit-transform: scale(0.85);
		transform: scale(0.85);
		-webkit-filter: blur(5px);
		filter: blur(5px);
		-webkit-transition: opacity 0.3s, -webkit-transform 0.3s, transform 0.3s, -webkit-filter 0.3s, filter 0.3s;
		transition: opacity 0.3s, transform 0.3s, filter 0.3s;
	}
	.carousel-cell3.is-selected {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1);
		-webkit-filter: none;
		filter: none;
	}
	.carousel-cell3 p.cast-desc {
		padding: 10px;
	}
	.responsive {
		width: 49.99999%;
		margin: 6px 0;
	}
	.modal-content {
		width: 100%;
	}
	.contact-parent .col-md-4 {
		padding-bottom: 50px;
	}
	.watch-parent {
		background-attachment: scroll;
	}
	.watch-parent .festival-logos img {
		width: 50px;
		display: flex;
		margin-left: 20px;
	}
	.watch-parent .festival-logos {
		width: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		margin-top: 50px;
	}
	.web-credit-parent .mobile-only {
		display: block;
		margin-top: 10px;
	}
	.web-credit-parent .desktop-only {
		display: none;
	}
	.web-credit-parent .codeandstyle-logo {
		margin-top: 20px;
	}
	.web-credit-parent .moontown-logo {
		margin-top: 40px;
	}
}
@media screen and (max-width:430px) {
	.nav-parent a.nav-item {
		font-size: 16px;
		margin-left: 0px;
	}
	/* PRESS CAROUSEL */
	.carousel-cell3 {
		width: 60%;
		height: 700px;
	}
	.web-credit-parent .mobile-only {
		display: block;
		margin-top: 10px;
	}
	.web-credit-parent .desktop-only {
		display: none;
	}
	.web-credit-parent .codeandstyle-logo {
		margin-top: 20px;
	}
	.web-credit-parent .moontown-logo {
		margin-top: 40px;
	}
}