/**************************************************
		Content
 **************************************************

	To change before deployment:
		add VHX embed


	01. Browser Reset
	02. Basic styles
	03. General
	04. Intersections
	05. Loading bar
	06. Hero
	07. Quotes
	08. Trailer
	09. Shortinfo
	10. Donate
	11. Contributors
	12. Screening guide
	13. Quote tiles
	14. Further info
	15. Footer


/**************************************************
	01. Browser 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,
figure, figcaption, footer, header, hgroup, 
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}



/**************************************************
	02. Basic Styles
 **************************************************/

:root {
	font-size: 16px;
	line-height: 1.6;
}

html, body {
	margin: 0px;
	padding: 0px;
	width: 100%;
	height: 100%;
	font-size: 16px;
}

body {
	color: #3A3B40;;
	font-family: "acumin-pro", "Acumin Pro", Acumin, serif;
	font-weight: 200;
	
	line-height: 1.6;				/*	41.6px	*/
	-webkit-text-size-adjust: none;
	-webkit-font-smoothing: auto;
	hanging-punctuation: force-end;
}

h1, h2, h3, h4, h5, h6, .alpha, .beta, .gamma, .delta, .epsilon, .zeta {
	-webkit-column-break-after: avoid;
	-moz-column-break-after: avoid;
	break-after: avoid;
}

p {
	margin-bottom: 1.6em;
	hanging-punctuation: force-end;
}

p:last-child, p:empty {
	margin-bottom: 0;
}

ul, ol {
	list-style-type: none;
	list-style-position: outside;
}

img {
	outline: 0;
	display: block;
}

.ie7 img {
	-ms-interpolation-mode: bicubic;
}

strong, b {
	font-weight: 500;
}

em, i {
	font-style: oblique;
}

a, a:link, a:visited, a:active, a:focus {
	color: #000;
	text-decoration: none;
	outline: none;
}

a:hover {
	text-decoration: underline;
	outline: none;
}

sup, sub {
	font-size: 0.8em;
	line-height: 1em;
	vertical-align: super
}

sub {
	vertical-align: sub;
}

/**************************************************
	03. General
 **************************************************/

.acumin-em {
	letter-spacing: .4px;
}

.button {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 204px;
	height: 84px;

	font-weight: 400;
	letter-spacing: 0.2px;
	line-height: 1;
	text-align: center;
	color: transparent;
	cursor: pointer;

	-webkit-transition: background 0.5s ease;
	   -moz-transition: background 0.5s ease;
	     -o-transition: background 0.5s ease;
			transition: background 0.5s ease;
}

.button a,
.button a:link,
.button a:visited,
.button a:active,
.button a:focus,
.button a:hover,
a.button,
a.button:link,
a.button:visited,
a.button:active,
a.button:focus,
a.button:hover,
.hero-info a,
.hero-info a:link,
.hero-info a:visited,
.hero-info a:active,
.hero-info a:focus,
.hero-info a:hover {
	color: transparent;
}

.sm-btn {
	width: 26px;
	height: 26px;
	background-size: 26px 26px;
	background-repeat: no-repeat;
	cursor: pointer;

	-webkit-transition: background 0.3s ease;
	   -moz-transition: background 0.3s ease;
	     -o-transition: background 0.3s ease;
			transition: background 0.3s ease; 
}

.sm-btn.facebook-btn { background-image: url(../img/socialmedia/facebook.svg); }
.sm-btn.facebook-btn:hover { background-image: url(../img/socialmedia/facebook_alt.svg); }
.sm-btn.instagram-btn { background-image: url(../img/socialmedia/instagram.svg); }
.sm-btn.instagram-btn:hover { background-image: url(../img/socialmedia/instagram_alt.svg); }
.sm-btn.twitter-btn { background-image: url(../img/socialmedia/twitter.svg); }
.sm-btn.twitter-btn:hover { background-image: url(../img/socialmedia/twitter_alt.svg); }


*[class*="georule"] {
	border-style: solid;
}

*[class*="georule"][class$="top"] {
	border-top-width: 6px;
	border-image-slice: 12 0;
	border-image-repeat: round stretch;
}

*[class*="georule"][class$="right"]	 {
	border-right-width: 6px;
	border-image-slice: 0 12;
	border-image-repeat: stretch round;
}

*[class*="georule"][class$="bottom"] {
	border-bottom-width: 6px;
	border-image-slice: 12 0;
	border-image-repeat: round stretch;
}

*[class*="georule"][class$="left"]	 {
	border-left-width: 6px;
	border-image-slice: 0 12;
	border-image-repeat: stretch round;
}

.georule-red-top,
.georule-red-bottom {
	-moz-border-image: url(../img/georule_red.svg);
	-webkit-border-image: url(../img/georule_red.svg);
	-o-border-image: url(../img/georule_red.svg);
	border-image-source: url(../img/georule_red.svg);
}

.georule-blue-top,
.georule-blue-bottom {
	-moz-border-image: url(../img/georule_blue.svg);
	-webkit-border-image: url(../img/georule_blue.svg);
	-o-border-image: url(../img/georule_blue.svg);
	border-image-source: url(../img/georule_blue.svg);
}

.georule-purple-top,
.georule-purple-bottom {
	-moz-border-image: url(../img/georule_purple.svg);
	-webkit-border-image: url(../img/georule_purple.svg);
	-o-border-image: url(../img/georule_purple.svg);
	border-image-source: url(../img/georule_purple.svg);
}

.georule-black-left,
.georule-black-right {
	-moz-border-image: url(../img/georule_black_vert.svg);
	-webkit-border-image: url(../img/georule_black_vert.svg);
	-o-border-image: url(../img/georule_black_vert.svg);
	border-image-source: url(../img/georule_black_vert.svg);
}

.georule-black-top,
.georule-black-bottom {
	-moz-border-image: url(../img/georule_black.svg);
	-webkit-border-image: url(../img/georule_black.svg);
	-o-border-image: url(../img/georule_black.svg);
	border-image-source: url(../img/georule_black.svg);
}

*[class*='georule-large'][class$="-bottom"] {
	padding-right: 16px;
	-webkit-clip-path: inset(0 16px 0 0);
	clip-path: inset(0 16px 0 0);
}

.georule-large-black-bottom {
	-moz-border-image: url(../img/georule_large_black.svg);
	-webkit-border-image: url(../img/georule_large_black.svg);
	-o-border-image: url(../img/georule_large_black.svg);
	border-image-source: url(../img/georule_large_black.svg);
}

.georule-large-white-bottom {
	-moz-border-image: url(../img/georule_large_white.svg);
	-webkit-border-image: url(../img/georule_large_white.svg);
	-o-border-image: url(../img/georule_large_white.svg);
	border-image-source: url(../img/georule_large_white.svg);
}

.georule-large-red-left, .georule-large-red-right {
	-moz-border-image: url(../img/georule_large_red_vert.svg);
	-webkit-border-image: url(../img/georule_large_red_vert.svg);
	-o-border-image: url(../img/georule_large_red_vert.svg);
	border-image-source: url(../img/georule_large_red_vert.svg);
}

@media (min-width: 600px) {
	.wrapper {
		padding: 15px;
	}

	*[class*="georule"][class$="top"] {
		border-top-width: 12px;
	}

	*[class*="georule"][class$="right"]	 {
		border-right-width: 13px;
	}

	*[class*="georule"][class$="bottom"] {
		border-bottom-width: 12px;
	}

	*[class*="georule"][class$="left"]	 {
		border-left-width: 13px;
	}

	*[class*='georule-large'][class$="-bottom"] {
		padding-right: 25px;
		-webkit-clip-path: inset(0 32px 0 0);
		clip-path: inset(0 32px 0 0);
	}
}

@media (max-width: 899px) {
	.quote-tile .georule-large-red-right,
	.quote-tile .georule-large-red-left {
		border-right-width: 0;
		border-left-width: 12px;
	}
}

@media (min-width: 900px) {
	.sm-btn {
		width: 17px;
		height: 17px;
		background-size: 17px 17px;
	}
}

@media (min-width: 1800px) {
	.wrapper {
		padding: 20px;
	}
}

/**************************************************
	04. Intersections
 **************************************************/

.divider {
	width: 100vw;
/*	position: relative;
	overflow: hidden; */
}

.divider-bridge {
	height: 100vw;
	padding: 0 0 1.5rem;
	margin: -15px 0 15px 0px;
}

.divider-hill {
	height: calc(50vh - 15px);
	padding-bottom: 1.25rem;
	margin-bottom: 1.25rem;
}

.divider-teargas {
	height: 100vw;
	margin: -15px 0 0 0px;
}

.divider img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 50%;
}

.divider-hill img {
	object-position: 50% 17%;
}

.claim,
.claim-small {
	display: inline-block;
	margin: 16rem auto;
	font-family: "canada-type-gibson", "Canada Type Gibson", sans-serif;
	letter-spacing: 5.75px;
}

.not-a-riot, .join {
	font-size: 4.75rem;
	font-weight: 700;
	text-transform: uppercase;
}

.not-a-riot {
	position: relative;
	height: 100vh;
	margin: 0;
}

.not-a-riot img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 50%;
}

.not-a-riot .claim {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
	margin: 0 0 0 12px;

	text-align: center;
	font-size: 3rem;
	line-height: 1.5625;
	color: #FFF;
}


.not-a-riot .claim-large {
	display: none;
}

.not-a-riot .claim span {
	display: inline-block;
	line-height: 0.8;
}

.join {
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
}

.join .claim,
.join .claim-small {
	width: 3em;
	font-size: 4rem;
	line-height: 1.3;
	letter-spacing: 4.25px;
	text-align: center;
	margin: 1.6rem 0 1.6rem 32px;
}


@media (max-width: 549px) {
	.join .claim {
		display: none;
	}

	.join .claim-small span {
		padding-right: 9px;
		margin-right: -46px;
		margin-left: -11px;
		padding-bottom: 7px;
	}
}

@media (min-width: 550px) {
	.join .claim {
		width: 100vw;
	}

	.join .claim-small {
		display: none;
	}
}

@media (min-width: 600px) {
	.divider {
		margin-left: -15px;
	}

	.join {
		min-height: 50vh;
	}

	.join .claim-small {
		display: none;
	}

	.not-a-riot {
		margin: 0 0 0 -15px;
	}

	.not-a-riot .claim {
		font-size: 6rem;
		line-height: 1;
	}
}


@media (max-width: 899px) {
	.not-a-riot {
		min-height: 450px;
		width: 100vw;
	}

	.not-a-riot .flexible {
		display: none;
	}

	.not-a-riot .claim {
		margin: 0 auto;
	}

	.not-a-riot .claim-small {
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		align-items: center;
	}

	.not-a-riot .claim span:not(:last-child) {
		border-width: 0;
		padding-right: 0;
		-webkit-clip-path: none;
		clip-path: none;
	}

	.not-a-riot .claim span:last-child {
		margin-left: 20px;
		padding-right: 12px;
		padding-bottom: 1rem;
	}

	.not-a-riot .claim span:not(:first-child) {
		margin-top: 30px;
	}

	.not-a-riot .claim span:nth-child(2) {
		padding-right: 0px;
		padding-left: 4px;
	}

	.divider-teargas, .join {
		width: 100vw;
		height: 100vh;
	}

	.join .claim,
	.join .claim-small {
		line-height: 1.1;
		border-width: 0;
		padding-right: 0;
		-webkit-clip-path: none;
		clip-path: none;
		margin-left: 0;
	}

}

@media (max-width: 547px) and (orientation: landscape) {
	.not-a-riot .claim-large span {
		border-bottom: 0;
	}

	.join .claim-small {
		width: calc(100vw - 10px);
		margin-left: 10px;
		font-size: 3rem;
	}

	.join .claim-small span {
		margin: 0 4px 0 0;
		padding: 0;
		-webkit-clip-path: none;
		clip-path: none;
		border-bottom: 0;

	}
}

@media (max-width: 749px) and (orientation: landscape) {
	.not-a-riot {
		min-height: initial;
	}

	.not-a-riot .claim-large {
		display: inline-block;
		width: 100vw;
		margin-top: 10px;
		font-size: 3rem;
		line-height: 1;
	}

	.not-a-riot .claim-large span {
		line-height: 1;
	}

	.not-a-riot .claim-small {
		display: none;
	}

	.join .claim span {
		margin: 0 -57px 0 -60px !important;
		padding: 0 27px 76px 17px;
	}
}

@media (min-width: 550px) and (max-width: 899px) {
	.join .claim span,
	.join .claim-small span {
		margin-right: -25px;
		margin-left: 0;
		padding-bottom: 14px;
	}
}

@media (min-width: 600px) and (max-width: 899px) {
	.not-a-riot .claim span:last-child {
		margin-left: 30px;
		padding-right: 27px;
		padding-bottom: 1rem;
	}
}

@media (min-width: 900px) {
	.divider {
		width: 100%;
		margin: 15px auto;
	}

	.divider-bridge {
		height: calc(50vh - 15px);
		margin: -15px auto 15px;
	}

	.divider-teargas {
		height: 100vw;
		margin: -15px auto 0;
	}

	.not-a-riot {
		height: calc(100vh - 30px);
		min-height: 690px;
	}

	.not-a-riot .claim {
		width: 100%;
		font-size: 9rem;
		margin: 0 0 0 13px;
	}

	.not-a-riot .claim span {
		display: inline;
	}

	.not-a-riot .claim-small .georule-large-white-bottom:first-child {
		padding-right: 1px;
	}

	.not-a-riot .claim-small span:nth-child(1),
	.not-a-riot .claim-small span:nth-child(2) {
		border-bottom: 0;
	}

	.not-a-riot .claim span:nth-child(1) {
		padding-right: 32px;
	}

	.not-a-riot .claim span:nth-child(2) {
		margin-left: -55px;
		padding-right: 0;
		padding-left: 60px;
	}

	.not-a-riot .claim span:nth-child(4) {
	}

	.not-a-riot .claim span:nth-child(5) {
		margin-left: -57px;
		padding-right: 0;
		padding-left: 20px;
	}

	.not-a-riot .claim span:nth-child(6) {
		margin-left: -55px;
		padding-right: 29px;
		padding-left: 60px;
	}

	.join .claim {
		width: auto;
		font-size: 4.975rem;
		letter-spacing: 6.25px;
		padding-bottom: 6px;
		padding-right: 23px;
		margin-right: -27px;
		margin-left: -5px;
	}

	.join .claim br.flexible {
		display: none;
	}

	.join .claim span {
		border-width: 0;
		padding-right: 0;
		-webkit-clip-path: none;
		clip-path: none;
	}

	.divider-teargas {
		height: calc(50vh - 15px);
	}
}

@media (min-width: 960px) {
	.join .claim {
		font-size: 5.375rem;
	}
}

@media (min-width: 1200px) {
	.not-a-riot .claim {
		font-size: 6.1875rem;
	}

	.not-a-riot .flexible {
		display: none;
	}

	.not-a-riot .claim-small {
		display: none;
	}

	.not-a-riot .claim-large {
		display: block;
	}
}

@media (min-width: 1800px) {
	.divider {
		margin: 20px auto;
	}

	.divider-bridge {
		height: calc(50vh - 20px);
		margin: -20px auto 20px;
	}

	.divider-hill {
		height: calc(50vh - 20px);
	}

	.divider-teargas {
		height: calc(50vh - 20px);
	}

	.not-a-riot {
		height: calc(100vh - 40px);
	}

	.join .claim {
		font-size: 7.1875rem;
	}
}

@media (min-width: 2200px) {
	.join .claim {
		font-size: 13.375rem;
	}
}

/**************************************************
	05. Loading bar
 **************************************************/

.header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 4;
	width: 100%;
	height: 5px;

	-webkit-transition: opacity 0.5s ease;
	   -moz-transition: opacity 0.5s ease;
	     -o-transition: opacity 0.5s ease;
	        transition: opacity 0.5s ease;
}

.header .progress {
	width: 0;
	height: 100%;
	background-color: #32BBD5;
}

.header.ready .progress {
	opacity: 0;
	pointer-events: none;
}

.js .header .backtotop {
	position: fixed;
	top: 1.5rem;
	right: 1.5rem;
	width: 41px;
	height: 41px;
	cursor: pointer;
	opacity: 0;

	background: url(../img/returnarrow_blue.png) no-repeat 0 0;
	background-size: 100% 100%;

	-webkit-transition: opacity 0.5s ease;
	   -moz-transition: opacity 0.5s ease;
	     -o-transition: opacity 0.5s ease;
	        transition: opacity 0.5s ease;
}

.js .backtotop.inview {
	opacity: 1;
}



/**************************************************
	06. Hero
 **************************************************/

.hero {
	width: 100%;
	height: 100vh;
}

.hero .teaser {
	position: relative;
	height: 100vh;
}

.hero .video-container {
	position: relative;
	height: 100vh;
	overflow: hidden;
	background-color: #333333;
}

.hero .video-container img {
	position: relative;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 50%;
	z-index: 2;

	-webkit-transition: opacity 2.5s ease;
	   -moz-transition: opacity 2.5s ease;
	     -o-transition: opacity 2.5s ease;
	        transition: opacity 2.5s ease;
}

.hero.ready .video-container img {
	opacity: 0;
	pointer-events: none;
}

.hero.video-over .video-container img {
	opacity: 1;
}

.hero .video-container video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	object-fit: cover;
	object-position: 50% 50%;
}

.js .hero:not(.ready) .video-container video {
	opacity: 0;
}

.js .hero.video-over .video-container video {
	opacity: 1;
}

.hero .movie-logo {
	position: absolute;
	z-index: 3;
	top: 50%;
	left: 50%;
	width: 80%;
	max-width: 550px;
	transform: translate(-50%, -50%);

	-webkit-transition: opacity 0.5s 0.5s ease;
	   -moz-transition: opacity 0.5s 0.5s ease;
	     -o-transition: opacity 0.5s 0.5s ease;
	        transition: opacity 0.5s 0.5s ease;
}

.hero.ready .movie-logo {
	opacity: 0;
	pointer-events: none;
}

.hero.video-over .movie-logo {
	opacity: 1;
}

.hero .movie-logo img {
	width: 100%;
	height: auto;
}

.hero .hero-info {
	position: absolute;
	z-index: 4;
	left: 50%;
	bottom: 60px;
	transform: translateX(-50%);
	width: 100%;
}
				
.hero .watch-now {
	margin: 0 auto 5px;
	background-image: url(../img/buttons/btn_watchnow.svg);

	font-size: 0.825rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.2px;
}

.hero .watch-now.local-screenings {
	background-image: url(../img/buttons/btn_localscreenings.svg);
}

.hero .watch-now:hover {
	background-image: url(../img/buttons/btn_watchnow_alt.svg);
}

.hero .watch-now.local-screenings:hover {
	background-image: url(../img/buttons/btn_localscreenings_alt.svg);
}

.hero .subline {
	display: flex;
	justify-content: center;
	align-items: center;

	-webkit-transition: opacity 0.5s ease;
	   -moz-transition: opacity 0.5s ease;
	     -o-transition: opacity 0.5s ease;
	        transition: opacity 0.5s ease;
}

.hero.ready .subline {
	opacity: 0;
	pointer-events: none;
}

.hero.video-over .subline {
	-webkit-transition: opacity 1s 2.5s ease;
	   -moz-transition: opacity 1s 2.5s ease;
	     -o-transition: opacity 1s 2.5s ease;
	        transition: opacity 1s 2.5s ease;
	opacity: 1;
}

.hero .subline-left {
	position: absolute;
	top: calc(-70vh + 32px);
	left: 12%;
	display: flex;
	justify-content: flex-start;
	width: 118px;
	flex-shrink: 0;
	flex-grow: 0;
}

.hero .subline-right {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	width: 100%;
	flex-shrink: 0;
	flex-grow: 0;
}

.hero-info .subline-right {
	position: absolute;
	top: calc(-70vh + 40px);
	left: -6%;
	flex-direction: row-reverse;
}

.hero-info-small .subline-right {
	display: none;
}

.hero .subline-center {
	flex-shrink: 0;
	flex-grow: 0;
}

.hero .watch-trailer {
	background-image: url(../img/buttons/btn_watchthetrailer.svg);
	background-size: cover;
}

.hero .watch-trailer:hover { background-image: url(../img/buttons/btn_watchthetrailer_alt.svg); }

.hero .premier {
	display: inline-block;
	
	font-weight: 400;
	font-size: 1.125rem;
	letter-spacing: 1.5px;
	line-height: 1;
	color: #FFF;
}

.hero .premier:not(.netflix) {
	padding: 5px 0;
	margin-right: 30px;
	border-top: 1px solid #FFF;
	border-bottom: 1px solid #FFF;
	text-transform: uppercase;
	font-family: "rift", Rift, sans-serif;
}

.hero .premier.netflix {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;

	padding: 0 14px;
	border-left: 1px solid #FFF;
	border-right: 1px solid #FFF;
}

.hero .premier.netflix span {
	font-family: 'Ramabhadra', sans-serif;
	font-size: 13px;
	font-weight: 400;
	margin-bottom: 7px;
}

.hero .premier.netflix span a {
	color: #FFF;
}

.hero .premier.netflix img {
	width: 30vw;
	height: auto;
}

.hero .premier .date {
	font-weight: 600;
	letter-spacing: .8px;
}

.hero .social-media {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	height: calc(8.1074925vw + 20px);
	padding: 0 1.2rem;
	border-left: 1px solid #fff;
}

.hero .sm-btn {
	width: 24px;
	height: 24px;
	background-size: 24px 24px;
}

.hero .sm-btn + .sm-btn {
	margin-left: 0.5rem;
}

.hero .sm-btn.facebook-btn { background-image: url(../img/socialmedia/facebook_white.svg); }
.hero .sm-btn.instagram-btn { background-image: url(../img/socialmedia/instagram_white.svg); }
.hero .sm-btn.twitter-btn { background-image: url(../img/socialmedia/twitter_white.svg); }

.hero .scroll-down,
.hero .scroll-down-small {
	position: absolute;
	bottom: 10px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 3;
	width: 40px;
	height: 40px;
	background-repeat: no-repeat;
	background-position: 0 0;
	background-image: url(../img/scrolldown.svg);

	cursor: pointer;

	-webkit-transition: background 0.5s ease;
	   -moz-transition: background 0.5s ease;
	     -o-transition: background 0.5s ease;
			transition: background 0.5s ease;
}

.hero .scroll-down-small {
	position: static;
	margin-bottom: 10px;
	transform: none;
}

.js .hero .scroll-down:hover,
.js .hero .scroll-down-small:hover {
	background-image: url(../img/scrolldown_alt.svg);
}


.hero .hero-info-small {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	width: 100%;
	height: 100vh;
	min-height: 100vh;
	background-color: #373737;
}


.hero-info-small .hero-info-top {
	position: relative;
	top: 40px;
	left: calc(50% - 128px);

	display: flex;
	justify-content: flex-end;
	align-items: center;
	flex-wrap: wrap;
	width: 240px;
}

.hero-info-small .hero-info-top .premier {
	margin: 0 auto calc(50vh - 222px);
	width: 200px;
}

.hero-info-small .hero-info-top .hero-info-tribeca {
	width: 50%;
}

.hero-info img,
.hero-info-small img {
	width: 100%;
	height: auto;
}

.hero-info-small .hero-info-middle {
	width: 240px;
	margin-bottom: calc(50% - 257px);
}

.hero-info-small .subline-left {
	display: none;
}

.hero-info-small .subline-center {
	width: 100%;
}

.hero .watch-now,
.hero .watch-trailer {
	width: 160px;
	height: 66px;
	background-size: 100% 100%;
}


@media (max-width: 749px) {
	.hero .video-container {
		z-index: 3;
		clip-path: inset(0px 0px 0vh 0px);
		-webkit-transition: clip-path 0.8s ease;
		   -moz-transition: clip-path 0.8s ease;
	    	 -o-transition: clip-path 0.8s ease;
				transition: clip-path 0.8s ease;
	}

	.hero .video-container.slide-out {
		clip-path: inset(0px 0px 100vh 0px);
	}
}


@media (max-width: 749px) and (orientation: landscape) {
	.hero {
		width: 100vw;
		margin: 0px;
	}

	.hero .movie-logo {
		width: 45%;
		max-width: 350px;
	}

	.hero .watch-now {
		margin-bottom: 0;
	}

	.hero .hero-info {
		bottom: 50px;
	}

	.hero-info-small .hero-info-top {
		flex-wrap: nowrap;
		left: calc(50% - 120px);
	}

	.hero-info-small .hero-info-top .premier {
		margin: 0 20px 0 0;
	}	

	.hero .subline {
		margin: -72px auto 0;
	}

	.hero .subline-left {
		display: flex;
		position: static;
		justify-content: flex-start;
		width: auto;
		padding-right: 20px;
		margin-left: 16px;
	}

	.hero .hero-info .subline-left {
		padding-right: 100px;
	}

	.hero .subline-center {
		padding-left: 100px;
	}

	.hero-info .subline-right {
		display: none;
	}

	.hero-info-tribeca {
		display: none;
	}

	.hero-info-small .hero-info-middle {
		width: 80%;
		max-width: 550px;
	}

	.hero-info-bottom {
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: center;
		margin-bottom: 10px;
	}

	.hero-info-bottom .watch-now-button {

	}

	.hero-info-bottom .subline-center {
		width: auto;
		padding-left: 20px;
	}
}

@media (min-width: 600px) {
	.hero {
		width: 100vw;
		margin: -15px 0 0 -15px;
	}
}


@media (min-width: 750px) {
	.hero {
		width: 100vw;
		margin: -15px 0 0 -15px;
	}

	.hero .watch-now {
		margin: 0 auto -8px;
	}

	.hero .hero-info-small {
		display: none;
	}

	.hero .subline-left {
		display: flex;
		position: static;
		justify-content: flex-end;
		width: calc(50% - 125px);
		padding: 0;
		margin: 0 30px 0 0;
	}

	.hero .subline-left img {
		width: auto;
	}

	.hero .subline-right {
		display: flex;
		position: static;
		margin-left: 30px;
		width: calc(50% - 125px);
		flex-direction: row;
	}

	.hero .premier.netflix img {
		width: 142px;
	}

	.hero .social-media {
		padding: 0 1rem;
		height: 2.25rem;
		border-right: 1px solid #fff;
	}

	.hero .sm-btn {
		width: 20px;
		height: 20px;
		background-size: 20px 20px;
	}

	.hero .premier.netflix + .social-media {
		border-left: 0;
	}
}

@media (min-width: 638px) {
	.hero .watch-now {
		margin: 0 auto;
	}
}

@media (min-width: 673px) {
	.hero .watch-now {
		margin: 0 auto 10px;
	}
}



@media (min-width: 900px) {
	.hero {
		width: 100%;
		height: calc(100vh - 15px);
		margin: 0 auto;
	}

	.hero .teaser {
		height: 100%;
	}

	.hero .video-container {
		height: calc(100% - 15px);
	}

	.hero-info {
		bottom: 50px;
	}

	.hero .premier {
		font-size: 1.5625rem;
	}

	.hero .subline {
		margin: 0;
	}

	.hero .watch-now, .hero .watch-trailer {
		width: 204px;
		height: 84px;
	}

	.hero .movie-logo {
		width: 50%;
	}

	.hero .scroll-down {
		bottom: 0;
	}

}

@media (min-width: 750px) and (max-width: 1199px) {
/*	.hero .subline-left,
	.hero .subline-right {
		margin-top: -200px;
	} */

	.hero .subline-right .social-media {
		position: absolute;
		top: calc(-100vh + 280px);
		right: 40px;
	}
}

@media (min-width: 1200px) {
	.hero .watch-now {
		margin: 0 auto 15px;
	}

	.hero .movie-logo {
		width: 40%;
	}
}

@media (min-width: 1800px) {
	.hero {
		height: calc(100vh - 20px);
	}

	.hero .video-container {
		height: calc(100% - 20px);
	}
}



/**************************************************
	07. Quotes
 **************************************************/

.quote-awake {
	position: relative;
	width: 100%;
	height: calc(50vh + 15px);
}

.quote-awake span {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);

	display: block;
	font-family: "buenard", Buenard, serif;
	font-size: 1.375rem;
	white-space: pre;
}

.quote-pyramid {
	width: 100%;
	max-width: 860px;
	margin: 4rem auto 4.25rem;
}

.quote-pyramid blockquote {
	text-align: center;
	line-height: 2.1;
}

.quote-pyramid blockquote span {
	display: block;
	font-family: "buenard", Buenard, serif;
	font-size: 0.75rem;
}

.quote-pyramid blockquote span:first-child {
	font-family: "canada-type-gibson", "Canada Type Gibson", sans-serif;
	font-size: 0.6375rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.2px;
	word-spacing: 0.2px;
}

.quote-pyramid blockquote span:nth-last-child(2):before {
	content: '';
	display: block;
	width: 195px;
	height: 24px;
	background: url(../img/tipis.png) no-repeat 0 0;
	background-size: 100% 100%;
	margin: 0.375rem auto;
}

.quote-pyramid cite {
	display: block;
	margin-top: 28px;
	font-family: "canada-type-gibson", "Canada Type Gibson", sans-serif;
	font-size: 0.6375rem;
	font-weight: 600;
	text-transform: uppercase;
	text-align: center;
}

.quote-watched {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 2rem auto 2rem;
	min-height: calc(50vh - 15px);
}

.quote-watched span br.flexible {
	display: none;
}

.quote-watched span br.flexible:nth-child(2) {
	display: none;
}

.quote-inner {
	font-family: "canada-type-gibson", "Canada Type Gibson", sans-serif;
	font-size: 1.75rem;
	line-height: 1;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 2px;
	word-spacing: 2px;
	text-align: center;
	padding: 0 10px;
}

.quote-watched span {
	line-height: 1.6;
}

@media (min-width: 600px) {
	.quote-pyramid blockquote span {
		font-size: 1rem;
	}

	.quote-pyramid blockquote span:first-child {
		font-size: 0.8125rem;
	}

	.quote-pyramid cite {
		font-size: 0.7rem;
	}

/*	.quote-watched {
		margin: 2rem auto -2rem;
	} */

	.quote-inner {
		font-size: 2rem;
		padding: 0;
	}

	.quote-awake span {
		font-size: 42px;
	}

	.quote-watched span br.flexible:nth-child(1),
	.quote-watched span br.flexible:nth-child(3),
	.quote-watched span br.flexible:nth-child(4) {
		display: inline;
	}
}


@media (min-width: 900px) {
	.quote-inner {
		font-size: 2.25rem;
	}

	.quote-watched span + span {
		margin-top: 10px;
	}

	.quote-watched span br.flexible:nth-child(2) {
		display: inline;
	}

	.quote-watched span br.flexible:nth-child(1),
	.quote-watched span br.flexible:nth-child(3) {
		display: none;
	}
}


@media (min-width: 1200px) {
	.quote-pyramid {
		max-width: 860px;
	}

	.quote-inner {
		font-size: 3.125rem;
	}
}

@media (min-width: 1800px) {
	.quote-inner {
		font-size: 3.75rem;
	}

	.quote-awake {
		height: calc(50vh + 20px);
	}

	.quote-watched {
		height: calc(50vh - 20px);
	}
}


/**************************************************
	08. Trailer
 **************************************************/

.trailer {
	position: relative;
	width: 100%;
	margin: 4.375rem auto 0;

	box-sizing: border-box;
	border-style: solid;
	border-width: 0px 0px 20px;
	-moz-border-image: url(../img/sawtooth-light-bottom.png) 40 0 round stretch;
	-webkit-border-image: url(../img/sawtooth-light-bottom.png) 40 0 round stretch;
	-o-border-image: url(../img/sawtooth-light-bottom.png) 40 0 round stretch;
	border-image: url(../img/sawtooth-light-bottom.png) 40 0 round stretch;
}

.trailer:before {
	content: '';
	display: block;
	background-color: #EEF0EC;
	position: absolute;
	top: -1rem;
	left: 0;
	width: 100%;
	height: 1rem;
}

.trailer-inner {
	width: 100%;
	height: 0;
	background-color: #EEF0EC;
	padding-bottom: 56.25%;
}

.trailer iframe {
	position: absolute;
	left: 15px;
	width: calc(100% - 30px);
	height: 100%;
}


@media (min-width: 600px) {
	.trailer {
		border-bottom: 0px;
	}

	.trailer:before {
		display: none;
	}

	.trailer-inner {
		background-color: transparent;
	}

	.trailer iframe {
		left: 0px;
		width: 100%;
	}
}

@media (min-width: 1800px) {
	.trailer {
		width: 80%;
	}
}


/**************************************************
	09. Shortinfo
 **************************************************/

.shortinfo {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
	width: calc(100% - 30px);
	max-width: 465px;
	margin: 0 auto;
}

.shortinfo .info-text {
	width: 100%;
	max-width: 465px;
	flex-grow: 0;
	flex-shrink: 0;
	padding: 0 0 1.25rem;
	margin-bottom: 1.25rem;

	font-family: "acumin-pro", "Acumin Pro", Acumin, serif;
	font-size: 0.9375rem;
	letter-spacing: .1px;
	line-height: 1.32;
}

.shortinfo .pie-chart {
	width: 100px;
	height: 100px;
	flex-shrink: 0;
	flex-grow: 0;
	margin-left: -4px;
}

.shortinfo .pie-chart img {
	width: 100%;
	height: 100%;
}

.shortinfo .proceeds {
	padding-left: 1rem;
	width: calc(100% - 126px);
	margin-left: 1rem;
	font-family: "stevie-sans", "Stevie Sans", Stevie, sans-serif;
	font-weight: 600;
	font-size: 0.9375rem;
	line-height: 1.32;
}


.shortinfo .proceeds .percentage {
	display: inline-block;
	margin: 1.6875rem 0 2.4375rem;
	font-family: "canada-type-gibson", "Canada Type Gibson", sans-serif;
	font-weight: 600;
	font-size: 4.25rem;
	line-height: 0;
	letter-spacing: -5px;
	font-kerning: normal;
}

.shortinfo .proceeds .percentage span {
	letter-spacing: 0;
}

.shortinfo .proceeds p:last-child {
	margin-top: -0.5625rem;
}


@media screen and (max-width: 599px) {
	.shortinfo .info-text {
		text-align: center;
	}

	.shortinfo .pie-chart {
		width: 160px;
		height: 160px;
		margin: 0 calc(50% - 80px);
	}

	.shortinfo .proceeds {
		width: 170px;
		margin: 2rem auto 0;
		padding: 2rem 0 0;
		text-align: center;
		border-top-width: 6px;
		border-left-width: 0;
		border-image-slice: 12 0;
		border-image-repeat: round stretch;

		-moz-border-image: url(../img/georule_black.svg);
		-o-border-image: url(../img/georule_black.svg);
		border-image-source: url(../img/georule_black.svg);

	}

}

@media (min-width: 600px) {
	.shortinfo .info-text {
		width: 465px;
		max-width: initial;
	}

	.shortinfo .proceeds {
		width: 280px;
		font-size: 0.9375rem;
	}

	.shortinfo .proceeds p:last-child {
		hyphens: auto;
	}

	.shortinfo .pie-chart {
		width: 156px;
		height: 156px;
		margin-left: -16px;
	}
}

@media (min-width: 1000px) {
	.shortinfo {
		width: 100%;
		max-width: 940px;
		flex-wrap: nowrap;
		padding: 2rem 0 0;
	}

	.shortinfo .info-text {
		width: 443px;
		text-align: left;
		border-bottom: 0;
		margin: 0;
		padding: 0;
	}

	.shortinfo .pie-chart {
		width: 153px;
		height: 153px;
		margin: 0;
	}

	.shortinfo .proceeds {
		width: 300px;
		min-height: 135px;
	}

	.shortinfo .proceeds p:last-child {
		hyphens: none;
	}
}


@media (min-width: 1200px) {
	.shortinfo {
		max-width: 1135px;
	}

	.shortinfo .info-text {
		width: 558px;
	}

	.shortinfo .pie-chart {
		width: 163px;
		height: 163px;
		margin-top: -.5rem;
	}

	.shortinfo .proceeds {
		width: auto;
		column-count: 2;
		column-gap: 0.25rem;
		margin-left: 1.25rem;
	}
}



/**************************************************
	10. Donate
 **************************************************/

.donate {
	width: 100%;
	margin: 1.5rem auto;
	background-color: #EEF0EC;

	border-style: solid;
	border-width: 20px 0px 0px;
	-moz-border-image: url(../img/sawtooth-light-top.png) 40 0 round stretch;
	-webkit-border-image: url(../img/sawtooth-light-top.png) 40 0 round stretch;
	-o-border-image: url(../img/sawtooth-light-top.png) 40 0 round stretch;
	border-image: url(../img/sawtooth-light-top.png) 40 0 round stretch;
}

.donate-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	flex-direction: column;
	padding: 40px 0;
	
}

.donate-text {
	max-width: 344px;
    margin: 0 auto;
	padding: 0 0.5rem;
	box-sizing: border-box;

	text-transform: uppercase;
	font-family: "bebas-neue", "Bebas Neue", sans-serif;
	font-size: 1.2rem;
	letter-spacing: 1.0px;
	line-height: 1;
	text-align: center;
}

.donate-emphasize {
	display: block;
	color: #AC262C;
}

.donation-form {
	margin: 30px auto 0;
}

.donation-input {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	width: 215px;

	font-family: "canada-type-gibson", "Canada Type Gibson", sans-serif;
	font-size: 37px;
	font-weight: 400;
}

.donation-input {
	display: none;
}

.donation-currency {
	width: 60px;
	height: 3.5rem;
	padding: 2rem 0;
	clear: both;
	overflow: hidden;
}

.donation-currency:before {
	content: '';
	display: block;
	width: 20px;
	height: 100%;
	margin-top: -1px;
	border-top: 1px solid #000;
	border-bottom: 1px solid #000;
	float: left;
}

.donation-currency div {
	float: left;
	height: calc(100% + 40px);
	margin-top: -20px;
	border-left: 1px solid #000;
}

.donation-currency span {
	display: block;
	width: 39px;
	height: calc(100% - 40px);
	margin: 20px 0 0 -1px;
	border-left: 1px solid #EEF0EC;

	text-align: right;
	font-weight: 800;
	line-height: 1.33333;
	font-size: 2.5rem;
	background-color: #FFF;
}

.donation-input input {
	border: 0;
	width: 106px;
	height: 3rem;
	padding: 0.25rem 1.25rem 0.25rem 0;

	text-align: right;
	font-family: "canada-type-gibson", "Canada Type Gibson", sans-serif;
	font-size: 2.5rem;
	background-color: #FFF;
}

.donation-after {
	float: left;
	width: 1px;
	height: calc(3.5rem + 40px);
	border-left: 1px solid #000;
}

.donation-after:after {
	content: '';
	display: block;
	width: 20px;
	height: calc(100% - 40px);
	margin: 20px 0 0 -1px;

	border-left: 1px solid #FFF;
	border-top: 1px solid #000;
	border-bottom: 1px solid #000;
	float: left;
}

.donation-submit { background-image: url(../img/buttons/btn_donate.svg); }
.donation-submit:hover { background-image: url(../img/buttons/btn_donate_alt.svg); }


@media (min-width: 600px) {
	.donate {
		max-width: 940px;
		height: 150px;
		border-top: 0px;
	}

	.donate-inner {
		flex-wrap: nowrap;
		flex-direction: row;
		padding: 0;
	}

	.donate-inner:before,
	.donate-inner:after {
		content: '';
		display: block;
		width: 77px;
		height: 150px;
		flex-grow: 0;
		flex-shrink: 0;
		background: #fff;
		background-repeat: no-repeat;
		background-position: 0 0;
		background-image: url(../img/donate_arrow_before.png);
		background-size: 100% 100%;
	}

	.donate-inner:after {
		position: relative;
		width: 80px;
		margin-left: -24px;
		background-image: url(../img/donate_arrow_after.png);
		background-size: 100% 100%;
	}

	.donate-text {
		text-align: right;
	}

	.donate-text .flexible {
		display: none;
	}

	.donate-emphasize {
		display: inline;
	}

	.donation-form {
		position: relative;
		z-index: 2;
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin: 0;
	}
}



@media (min-width: 900px) {
	.donate-text {
		max-width: 100%;
		flex-shrink: 0;
		flex-grow: 0;
	}

	.donate-text .flexible:not(:nth-child(3)) {
		display: inline;
	}

	.donation-input {
		width: 251px;
	}

	.donation-form {
		width: calc(100% - 665px);
		flex-shrink: 0;
		flex-grow: 0;
	}

	.donation-currency {
		width: 111px;
	}

	.donation-currency span {
		padding-left: 51px;
	}

	.donation-input input {
		width: 118px;
	}
}


@media (min-width: 1200px) {
	.donate {
		max-width: 1135px;
	}

	.donate-inner {
		width: 100%;
		overflow: hidden;
	}

	.donate-inner:after {
		margin-left: -180px;
	}

	.donate-text {
		font-size: 1.4rem;
	}

	.donation-form {
		width: calc(100% - 655px);
	}
}

@media (min-width: 1300px) {
	.donate-inner {
		width: calc(100% + 4.75rem);
	}
}


/**************************************************
	11. Contributors
 **************************************************/

.contributors {
	width: calc(100% - 30px);
	margin: 2.5rem auto 4.125rem;
	padding: 1rem 0;
}

.contributors-heading {
	margin-bottom: 1.25rem;
	padding-bottom: 2.375rem;
	font-family: "stevie-sans", "Stevie Sans", Stevie, sans-serif;
	font-weight: 600;
	font-size: 1.25rem;
	letter-spacing: -.2px;
	line-height: 1;
	border-bottom: 1px solid #BFB5AF;
}

.contributors-list {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
}

.contributor {
	width: 50%;
}

.contributor-name {
	margin-bottom: 1.25rem;
	text-transform: uppercase;
	font-family: "canada-type-gibson", "Canada Type Gibson", sans-serif;
	font-weight: 600;
	font-size: 0.8125rem;
	letter-spacing: .2px;
	line-height: 1;
}

.contributor-bio {
	font-family: "acumin-pro", "Acumin Pro", Acumin, serif;
	font-size: 0.78125rem;
	letter-spacing: .1px;
	line-height: 1.32;
}

.contributor:nth-child(1),
.contributor:nth-child(2) {
	border-top: 0;
}

.contributor:nth-child(3),
.contributor:nth-child(4),
.contributor:nth-child(5),
.contributor:nth-child(6) {
	padding-top: 1.5rem;
	margin-top: 3.5rem;
}

.contributor:nth-child(2n+1) > * {
	padding-right: 20px;
}

.contributor-bio a,
.contributor-bio a:link,
.contributor-bio a:visited,
.contributor-bio a:active {
	font-weight: bold;
}

.contributor-bio a:hover {
}

.contributor-info {
	margin-top: 0.625rem;
}

.contributor-img {
	width: 65px;
	height: 65px;
	margin: 0 0.625rem;
}

.contributor-img:before {
	content: '';
	display: block;
	width: 52%;
	height: 0px;
	margin: 0 0 0.8125rem 25%;
	border-top: 1px solid #000;
}

.contributor-img img {
	width: 100%;
	height: 100%;
}

.contributor-sm {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin-top: 1.75rem;
}

.contributor-sm .sm-btn {
	margin-right: 0.5rem;
}


@media (min-width: 600px) {
	.contributors {
		width: calc(100% - 90px);
	}

	.contributors-heading {
		padding-bottom: 3.375rem;
	}

	.contributor-info {
		display: flex;
		justify-content: flex-start;
		align-items: center;
	}
}


@media (min-width: 1000px) {
	.contributors {
		width: 100%;
		max-width: 940px;
		padding: 0.5rem 0;
	}

	.contributors-list {
/*		max-width: 860px;
		margin-left: 40px; */
	}

	.contributor {
		width: 33.3333333%;
	}

	.contributor:nth-child(1) > *,
	.contributor:nth-child(4) > * {
		padding-right: 20px;
	}

	.contributor:nth-child(2) > *,
	.contributor:nth-child(5) > * {
		padding: 0 10px;
	}

	.contributor:nth-child(3) > *,
	.contributor:nth-child(6) > * {
		padding-left: 20px;
	}

	.contributor:nth-child(1),
	.contributor:nth-child(2),
	.contributor:nth-child(3) {
		border-top: 0;
	}

	.contributor:nth-child(3) {
		margin-top: 0;
		padding-top: 0;
	}

	.contributor:nth-child(4),
	.contributor:nth-child(5),
	.contributor:nth-child(6) {
		padding-top: 1.5rem;
		margin-top: 3.5rem;
	}
}

@media (min-width: 1200px) {
	.contributors {
		max-width: 1135px;
	}

	.contributors-list {
		max-width: none;
		margin-left: 0;
	}

	.contributor {
		width: 15.5%;
	}

	.contributor:nth-child(4),
	.contributor:nth-child(5),
	.contributor:nth-child(6) {
		border-top: 0;
		margin-top: 0;
		padding-top: 0;
	}

	.contributor > * {
		padding: 0 !important;
	}
}


/**************************************************
	12. Screening guide
 **************************************************/

.screening-guide {
	width: 100vw;
	background-color: #EEF0EC;

	border-style: solid;
	border-width: 20px 0px 0px;
	-moz-border-image: url(../img/sawtooth-light-top.png) 40 0 round stretch;
	-webkit-border-image: url(../img/sawtooth-light-top.png) 40 0 round stretch;
	-o-border-image: url(../img/sawtooth-light-top.png) 40 0 round stretch;
	border-image: url(../img/sawtooth-light-top.png) 40 0 round stretch;
}

.screening-guide-inner {
	width: 100%;
	height: 100%;
	padding: 45px 15px;
	box-sizing: border-box;
}

.screening-guide .host {
	display: table;
	max-width: 100%;
	font-family: "buenard", Buenard, serif;
	font-size: 1rem;
	line-height: 1.5;
	margin: 0 auto 1.6rem;
}

.host a,
.host a:link,
.host a:visited,
.host a:active,
.host a:hover,
.host a:focus {
	color: #20C8DF;
}

.host a:hover {
	text-decoration: underline;
}

.screening-guide .host span {
	display: table;
}

.screening-guide .download-guide {
	margin: 40px auto 0;
	background: url('../img/buttons/btn_download_screening.svg') no-repeat 0 0;
}

.screening-guide .download-guide:hover {
	background: url('../img/buttons/btn_download_screening_alt.svg') no-repeat 0 0;
}

@media (min-width: 600px) {
	.screening-guide {
		margin-left: -15px;
	}

	.screening-guide-inner {
		padding: 72px 45px;
	}

	.screening-guide .download-guide {
		margin-left: calc(100% - 205px);
	}

	.screening-guide .host {
		display: block;
		font-size: 28px;
	}
}

@media (max-width: 899px) {
	.screening-guide .host span {
		margin: 0 auto;
	}

	.screening-guide .host + a {
		margin: 0 auto;
	}
}

@media (min-width: 900px) {
	.screening-guide {
		width: 100%;
		margin: 0;
		border-top: 0;
	}

	.screening-guide-inner {
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 72px calc(50% - 415px);
		border-bottom: 0;
	}

	.screening-guide .host {
		font-size: 31px;
	}

	.screening-guide .host,
	.screening-guide .download-guide {
		margin: 0;
	}
}

@media (min-width: 1200px) {
	.screening-guide-inner {
		padding: 72px calc(50vw - 582px);
	}
}


/**************************************************
	13. Quote tiles
 **************************************************/

.quote-tiles {
	width: 100vw;
}

.quote-row {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
	flex-direction: column-reverse;
}

.quote-tile {
	width: 100vw;
	height: 50vh;
}

.quote-tile-img {
	height: 100vw;
	overflow: hidden;
}

.quote-tile-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 50%;
}

.quote-row:nth-child(1) .quote-tile-img img {
	object-position: 18% 50%;
}

.quote-row:nth-child(2) .quote-tile-img img {
	object-position: 80% 50%;
}

.quote-row:nth-child(3) .quote-tile-img img {
	object-position: 80% 50%;
}

.quote-tile-text {
	position: relative;
	display: flex;
	justify-content: center;
	flex-direction: column;
	box-sizing: border-box;
	padding: 0 0 0 16px;
	color: #C82028;
	height: auto;
	min-height: 50vh;
	overflow: hidden;
}

.text-right .quote-tile-text {
	align-items: flex-start;
}

.text-left .quote-tile-text {
	align-items: flex-end;
}

.quote-tile-text .quote-tile-void {
	width: 100%;
	height: 100%;
	min-height: 2rem;
	flex-grow: 1;
}

.quote-tile-text .quote-tile-text-inner {
	padding: 0 25px;
	width: calc(100% - 50px);
}

.quote-tile-text-inner {
	width: calc(100% - 150px);
}

.quote-tile-text blockquote {
	font-family: "buenard", Buenard, serif;
	font-size: 1.5rem;
	line-height: 1;
	font-weight: 700;
}

.quote-tile-text blockquote br.flexible {
	display: none;
}

.quote-tile-text cite {
	display: inline-block;
	margin-top: 2.1875rem;

	font-size: 0.75rem;
	line-height: 1.2;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.025em;
	word-spacing: 0.025em;
}


@media (max-width: 899px) {
	.quote-row:first-child .quote-tile-void:first-child {
		border-width: 0;
	}

	.quote-tile-text .quote-tile-void {
		min-height: 7.5rem;
	}
}


@media (min-width: 600px) {
	.quote-tiles {
		margin-left: -15px;
	}

	.quote-tile-text {
		padding: 0 0 0 60px;
		min-height: 50vh;
	}

	.quote-row .quote-tile-void {
		
	}

	.quote-tile-text .quote-tile-text-inner {
		width: calc(100% - 100px);
		padding: 0 50px 0 50px;
	}

	.quote-tile-text blockquote {
		font-size: 1.6875rem;
	}

	.quote-tile-text blockquote br.flexible {
		display: inline;
	}

	.quote-row:last-child .quote-tile-void:last-child {
		border-left: 0;
	}
}

@media (min-width: 900px) {
	.quote-tiles {
		width: 100%;
		margin: 0;
	}

	.quote-tile {
		width: 50%;
		height: 100vh;
	}

	.quote-row {
		flex-direction: row;
	}

	.quote-row.text-left {
		flex-direction: row-reverse;
	}

	.quote-tile-img {
		height: 100vh;
	}

	.quote-tile-text {
		padding: 0 2.625rem;
	}

	.quote-tile-text-inner {
		width: calc(50vw - 165px);
		max-width: 830px;
	}

	.quote-tile-text blockquote {
		font-size: 1.125rem;
		line-height: 0.9140625;
	}

	.text-right .quote-tile-text .quote-tile-void:first-child,
	.text-right .quote-tile-text .quote-tile-text-inner {
		padding-left: 50px;
	}

	.text-left .quote-tile-text .quote-tile-void:first-child,
	.text-left .quote-tile-text .quote-tile-text-inner {
		padding-right: 50px;
		padding-left: 0;
	}

	.quote-tile-text .quote-tile-void:last-child {
		border-width: 0;
	}

	.quote-row:nth-child(1) .quote-tile-img img {
		object-position: 30% 50%;
	}
}

@media (min-width: 1200px) {
	.quote-tile-text-inner {
		width: calc(50vw - 200px);
	}

	.quote-tile-text {
		padding: 0 4rem;
	}

	.quote-tile-text blockquote {
		font-size: 1.625rem;
	}

	.quote-tile-text cite {
		margin-top: 3.25rem;
	}

	.quote-tile-text cite .flexible {
		display: none;
	}
}

@media (min-width: 1800px) {
	.quote-tile-text {
		padding: 0 110px;
	}

	.quote-tile-text-inner {
		width: calc(50vw - 300px);
	}

	.quote-tile-text blockquote {
		font-size: 2.5625rem;
	}

	.quote-tile-text cite {
		margin-top: 5.75rem;
		font-size: 1rem;
	}
}

@media (min-width: 2200px) {
	.quote-tile-text blockquote {
		font-size: 3.5rem;
	}
}



/**************************************************
	14. Further info
 **************************************************/

.further-info {
	margin: 3.5rem 15px;
}

.further-info-top,
.further-info-bottom {
	width: 100%;
	max-width: 850px;
	margin: 0 auto;
}

.further-info-top {
	margin-bottom: 3.625rem;
}

.further-info-column {
	margin-bottom: 3.625rem;
}

.further-info-column > .further-info-text {
	width: calc(100% - 1.5rem);
}

.further-info-header {
	padding: 1.25rem 0 2.75rem;
	margin-bottom: 1.5rem;
	border-bottom: 1px solid #BFB5AF;
}

.further-info h4 {
	font-family: "stevie-sans", "Stevie Sans", Stevie, sans-serif;
	font-size: 1.25rem;
	line-height: 1;
	font-weight: 600;
	letter-spacing: -0.2px;
}

.further-info-text {
	font-size: 0.9375rem;
	letter-spacing: .1px;
	line-height: 1.32;
}

.further-info-text p:first-child {
	margin-bottom: 1.32em;
}


@media (min-width: 550px) {
	.further-info-top,
	.further-info-column {
		width: 75%;
		margin: 0 auto 3.625rem;
	}
}

@media (min-width: 600px) {
	.further-info {
		margin: 3.5rem auto 6.75rem;
	}

	.further-info-top {
		width: auto;
	}

	.further-info-top .further-info-text {
		column-count: 2;
		column-gap: 1.5rem;
	}

	.further-info-bottom {
		display: flex;
		justify-content: space-between;
		align-items: baseline;
		flex-wrap: wrap;
	}

	.further-info-column {
		width: 50%;
	}

	.further-info-column:last-child {
		margin-top: 3.375rem;
		width: 100%;
	}

	.further-info-column:last-child > .further-info-text {
		width: 100%;
		column-count: 2;
		column-gap: 1.5rem;
	}
}


@media (min-width: 1200px) {
	.further-info-top,
	.further-info-bottom {
		max-width: 1135px;
	}

	.further-info-column {
		width: 33.33333%;
	}

	.further-info-column:last-child {
		margin-top: 0;
		width: 33.3333333%;
	}

	.further-info-column:last-child > .further-info-text {
		column-count: 1;
	}
}



/**************************************************
	15. Footer
 **************************************************/

.footer-info {
	width: 100vw;
	padding: 30px calc(50% - 320px) 74px;
	box-sizing: border-box;
	background-color: #EEF0EC;
}

.footer-info-top {
	width: calc(100% - 30px);
    margin: 0 auto 30px;
}

.footer-info-top-inner {
	max-width: 920px;
	margin: 10px auto;

	font-size: 0.9375rem;
	letter-spacing: .1px;
	line-height: 1.1;
}

.footer-info-bottom {
	width: calc(100% - 30px);
	margin: 0 auto 30px;
}

.footer-info h4,
.footer-info-bottom .guide-size {
	margin-bottom: 1.1em;

	font-family: "stevie-sans", "Stevie Sans", Stevie, sans-serif;
	font-size: 0.9375rem;
	line-height: 1;
	font-weight: 600;
	letter-spacing: -0.2px;
}

.footer-info-bottom .cta {
	padding-right: 1rem;
	margin: 0 auto 30px;
}

.footer-info-bottom .cta ul {
	font-size: 1rem;
	line-height: 1.1;
	font-weight: 200;
	letter-spacing: 0.1px;
}

.footer-info-bottom .cta ul li {
	background: url('../img/bullet_arrow.svg') no-repeat 0 0;
	background-size: 1rem 1rem;
	padding: 0 0 0 2.375rem;
}

.footer-info-bottom .cta ul li + li {
	margin-top: 1.1em;
}

.footer-info-bottom .guide {
	margin: 0 auto;
	width: 204px;
}

.footer-info-bottom .guide-text {
	padding-bottom: 0.75rem;
	margin-bottom: 2rem;
	border-bottom: 1px solid #777;
}

.footer-info-bottom .guide h4 {
	margin: 0;
}

.footer-info-bottom .guide h4 br {
	display: none;
}

.footer-info-bottom .guide-size {
	display: block;
}

.footer-info-bottom .guide-download {
	background: url('../img/buttons/btn_download.svg') no-repeat 0 0;
}

.footer-info-bottom .guide-download:hover {
	background: url('../img/buttons/btn_download_alt.svg') no-repeat 0 0;
}

.footer-reachout {
	width: 100vw;
	padding: 0 10px;
	box-sizing: border-box;
	border-style: solid;
	border-width: 20px 0px 0px;
	-moz-border-image: url(../img/sawtooth.png) 40 0 round stretch;
	-webkit-border-image: url(../img/sawtooth.png) 40 0 round stretch;
	-o-border-image: url(../img/sawtooth.png) 40 0 round stretch;
	border-image: url(../img/sawtooth.png) 40 0 round stretch;

	background-color: #3A3B40;
	color: #FFF;
}

.footer-reachout-inner {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;

	width: 100%;
	max-width: 650px;
	margin: 0 auto;
	padding: 50px 10px 24px;
	box-sizing: border-box;
}

.footer-reachout .leftcol {

}

.footer-reachout .rightcol {
	width: 100%;
}

.footer-reachout .footer-logo {
	width: 160px;
	margin-bottom: 40px;
}

.footer-reachout .footer-logo img {
	width: 100%;
	height: auto;
}

.footer-reachout .copyright {
	width: 100%;
	margin-top: 40px;
	font-size: 0.5625rem;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	word-spacing: 0.1em;
}

.footer-reachout .rightcol .legal,
.footer-reachout .rightcol .links {
	font-size: 0.6rem;
	font-weight: 600;
	line-height: 2.8;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	word-spacing: 0.1em;
}

.footer-reachout .mailinglist {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: column;
	padding: 1rem 0;
	margin: 0 0 20px;
}

.footer-reachout .cta-newsletter {
	align-self: flex-start;
	margin-bottom: 20px;
	font-size: 1.1rem;
	font-weight: 400;
}

.cta-newsletter a,
.cta-newsletter a:link,
.cta-newsletter a:visited,
.cta-newsletter a:active,
.cta-newsletter a:focus {
	color: #FFF;
	text-decoration: none;
}

.cta-newsletter a:hover {
	text-decoration: underline;
}

.footer-reachout .form {
}

.footer-reachout .mail-input-container {
	width: 235px;
	height: 57px;
	background: url(../img/buttons/btn_email_bg.png) no-repeat 0 0;
	background-size: 235px 57px;
}

.footer-reachout .mail-input-container input {
	position: relative;
	width: 197px;
	height: 35px;
	top: 11px;
	left: 19px;
	box-sizing: border-box;
	border: 0;
	padding: 5px 10px;
	background-color: #EEF0EC;
}

.footer-reachout .legal li:first-child {
	margin-right: 11.5rem;
}

.footer-reachout .links a {
	color: #FFFFFF;
}

@media (min-width: 550px) {
	.footer-info-top-inner {
		font-size: 20px;
	}

	.footer-info-bottom {
		width: calc(100% - 30px);
		margin: 0;
		display: flex;
		justify-content: flex-end;
		align-items: flex-start;
		margin: 0 auto;
	}

	.footer-info h4, .footer-info-bottom .guide-size {
		font-size: 1rem;
	}
}

@media (min-width: 600px) {
	.footer-info,
	.footer-reachout {
		margin-left: -15px;
	}
}


@media (min-width: 700px) {
	.footer-info-top {
		width: 100%;
		max-width: 920px;
	}

	.footer-info-bottom {
		width: 90%;
		max-width: 920px;
	}

	.footer-info-bottom .cta {
		margin: 0;
	}

	.footer-reachout-inner {
		padding: 50px 0 24px;
	}	

	.footer-reachout .rightcol {
		min-width: 450px;
		border-top: 0;
		width: auto;
	}

	.footer-reachout .mailinglist {
		flex-direction: row;
		padding: 0 0 0.75rem 0;
	}

	.footer-reachout .footer-logo {
		margin-bottom: 110px;
	}

	.footer-info-bottom .cta ul {
		font-size: 1.25rem;
	}

	.footer-info-bottom .cta ul li {
		background-size: 22px 22px;
	}

	.footer-info-bottom .guide {
		width: 12rem;
		height: calc(100% - 42px);
		margin-top: 36px;
		padding-left: 1.5rem;
		border-left: 1px solid #BFB5AF;
	}
}

@media (max-width: 899px) {
	.footer-info-bottom .guide {
		margin-top: 56px;
	}

	.footer-reachout .rightcol {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
	}

	.footer-reachout .legal {
		order: 2;
	}

	.footer-reachout .legal li:first-child {
		display: none;
	}

	.footer-reachout .legal a {
		color: #FFF;
	}
}

@media (min-width: 900px) {
	.footer-info {
		width: 100%;
		margin-left: 0px;
		padding: 30px calc(50% - 425px) 74px;
	}

	.footer-info-bottom .guide h4,
	.footer-info-bottom .guide-size {
		padding: 0 2rem 0 0px;
	}

	.footer-reachout {
		width: 100%;
		margin-left: 0px;
	}

	.footer-reachout-inner {
		max-width: 860px;
	}

	.footer-reachout .footer-logo {
		width: 160px;
	}

	.footer-reachout .mail-input-container {
		width: 277px;
		background-size: 277px 57px;
	}

	.footer-reachout .mail-input-container input {
		width: 231px;
		left: 23px;
	}

	.footer-reachout .cta-newsletter {
		margin-right: 85px;
		transform: translateY(13px);
	}

	.footer-reachout .legal ul {
		display: flex;
		justify-content: flex-start;
		align-items: baseline;
		margin-bottom: 2.375rem;
	}

	.footer-reachout .legal,
	.footer-reachout .legal a {
		color: #EFC24E;
	}

	.footer-reachout .copyright {
		margin-top: -1.1875rem;
	}
}

@media (min-width: 1200px) {
	.footer-info {
		padding: 30px calc(50% - 567.5px) 74px;
	}

	.footer-info-top-inner {
		max-width: 920px;
		margin: 10px auto;

		font-size: 20px;
		letter-spacing: .1px;
		line-height: 1.1;
	}

	.footer-info-bottom .guide {
		width: 12rem;
		padding-left: 1.5rem;
	}

	.footer-info-bottom .guide h4,
	.footer-info-bottom .guide-size {
		padding: 0 4rem 0 0px;
	}

	.footer-reachout-inner {
		max-width: 920px;
	}
}






