
html {
	overflow-x: hidden;
}
body {
	font-family: 'Helvetica', arial, sans-serif;
	margin: 0 auto;
	font-size: 18px;
	line-height: 1.2em;
}
* {
	box-sizing: border-box;
	transition: all 1s;
}
.hidden {
	display: none;
}
a {
	color: #33a2fb;
	text-decoration: none;
}
#main-wrapper a:hover {
	text-decoration: underline;
}
.white-text {
	color: #fff !important;
}
.black-text {
	color: #000 !important;
}
.green-text {
	color: #6BD179 !important;
}
.text-underline {
	text-decoration: underline;
}
p {
	font-size: 18px;
	color: #000;
	line-height: 1.4em;
}
h1 {
	font-size: 58px;
/*	font-size: 3.4vw; */
	font-weight: 400;
	line-height: 120%;
	transition: all 1s;
}
h2 {
	font-size: 58px;
/*	font-size: 3.4vw; */
	font-weight: 400;
	line-height: 1em;
	transition: all 1s;
}
h3 {
	font-size: 32px;
/*	font-size: 2vw; */
	font-weight: 300;
	line-height: 1.2em;
}
h4 {
	font-size: 24px;
	font-weight: 400;
	line-height: 1.2em;
}
.underline {
	padding-bottom: .3em;
	border-bottom: 1px solid #6a6464;
}
.mobile-center-text {
	text-align: unset;
}

/* buttons */
.trans-button {
	position: relative;
	padding: 12px 50px 6px;
	color: #000;
	background-color: rgba(255, 255, 255, .5);
	border: none;
	height: auto;
	border-radius: 30px;
	cursor: pointer;
}
.white-button {
	position: relative;
	padding: 12px 25px 6px;
	color: #000;
	background-color: rgba(255, 255, 255, 1);
	border: none;
	height: auto;
	border-radius: 30px;
	cursor: pointer;
}


@media all and (max-width:1024px) {
	h1 {
		font-size: 5.2vw;
	}
}
@media all and (max-width:500px) {
	p {
		font-size: 15px;
	}
	h1 {
		font-size: 24px;
		font-weight: 300;
		letter-spacing: -2%;
		transition: all 1s;
	}
	h2 {
		font-size: 36px;
		font-weight: 300;
		transition: all 1s;
	}
	h3 {
		font-size: 24px;
	}
	.mobile-center-text {
		text-align: center;
	}
}
.button {
	display: inline-block;
	width: auto;
	height: 48px;
	padding: 18px 40px;
	text-transform: uppercase;
	text-align: center;
	border-radius: 24px;
	line-height: 1em;
}
.green-button {
	background-color: #6BD179;
	color: #000;
}
.blue-button {
	background-color: #094c7c;
	color: #fff;
}

.padding-wrapper {
	position: relative;
	width: 100%;
	max-width: 1510px;
	height: auto;
	margin: 0 auto;
	padding: 0 40px;
}
@media all and (max-width:500px) {
	body {
		font-size: 15px;
	}
	.padding-wrapper {
		padding: 0 20px;
	}
}
.columns-wrapper {
	display: flex;
	flex-wrap: wrap;
}
.two-columns .column {
	width: 50%;
}
.three-columns .column {
	width: 33.3%;
}
.four-columns .column {
	width: 25%;
}
.five-columns .column {
	width: 20%;
}
.six-columns .column {
	width: 16.67%;
}
@media all and (max-width:500px) {
	.two-columns .column {
		width: 100%;
	}
}

.video-container {
	position: relative;
	z-index: 0;
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
}
.video-container a {
	width: 100%;
	height: 100%;
}
.video-container:after {
	content: '';
	display: block;
	position: absolute;
	pointer-events: none;
	top: calc(50% - 40px);
	left: calc(50% - 40px);
	width: 81px;
	height: 81px;
	background: url('../images_rb/video-play-icon.png') center no-repeat;
	background-size: 100% auto;
}
.video-container img {
	display: block;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
@media all and (max-width:768px) {
	.video-container img {
		width: 100% !important;
		height: auto !important;
	}
}

/* header */
#header_top {
	position: relative;
	z-index: 9999;
	background: #33a2fb;
	text-align: right;
	height: 68px;
	transition: all 1s;
}
@media all and (max-width: 1416px) {
	#tagline {
		padding-top: 57px !important;
	}
}
@media all and (max-width: 1048px) {
	#tagline {
		padding-top: 57px !important;
		padding-left: 70px !important;
	}
}
@media all and (max-width: 983px) {
	#tagline {
		padding-top: 57px !important;
		font-size: 30px !important;
	}
}
@media all and (max-width: 900px) {
	#tagline {
		padding-top: 41px !important;
		padding-left: 50px !important;
	}
}
@media all and (min-width:769px) {
	#hamburger_menu {
		display: none;
	}
	#main-nav {
		display: block;
	}
	ul.main-menu {
		list-style-type: none;
		vertical-align: middle;
		padding: 27px 0 20px;
		margin: 0 auto;
		position: relative;
		z-index: 999;
	}
	ul.main-menu li {
		display: inline-block;
		text-align: center;
		line-height: 1em;
		position: relative;
		z-index: 999;
	}
	ul.main-menu li a, ul.main-menu li span.menu-label {
		font-size: 24px;
		font-weight: 300;
		color: #fff;
		padding: 20px 30px;
		text-decoration: none;
		text-transform: uppercase;
		cursor: pointer;
	}
	ul.main-menu li.parent > span {
		padding-right: 24px;
		margin-right: 20px;
		background: url('../images_rb/menu-arrow-down-white-2x.png') center right no-repeat;
		background-size: 16px 8px;
		background-position-y: 26px;
	}
	ul.main-menu li.parent:hover > span {
		padding-right: 24px;
		margin-right: 20px;
		background: url('../images_rb/menu-arrow-up-white-2x.png') center right no-repeat;
		background-size: 16px 8px;
		background-position-y: 26px;
	}
	ul.main-menu li ul.drop-down {
		display: none;
		width: 300px;
		height: auto;
		padding: 0;
		background: #fff;
		opacity: 0;
		transition: all 1s;
		position: absolute;
		z-index: 9999;
		top: calc(100% + 21px);
	}
	ul.main-menu li:hover ul.drop-down {
		display: block;
		width: 300px;
		height: auto;
		opacity: 1;
		transition: all 1s;
		padding: 20px 0;
		box-shadow: 0 5px 5px rgba(0, 0, 0, 0.3);
	}
	ul.main-menu li ul.drop-down li {
		width: 100%;
	}
	ul.main-menu li ul.drop-down li a, ul.main-menu li ul.drop-down li span {
		display: inline-block;
		font-size: 16px;
		color: #000;
		width: 100%;
		padding: 15px 30px 10px;
		background-color: #fff;
		text-align: left;
		text-transform: uppercase;
	}
	ul.main-menu li ul.drop-down li a:hover, ul.main-menu li ul.drop-down li span:hover {
		background-color: #dcdada;
	}
	li.sub-parent > span {
		position: relative;
		background: url('../images_rb/menu-arrow-right-blue-2x.png') center right no-repeat;
		background-size: 8px 16px;
		background-position-x: 98%;
		background-position-y: 14px;
	}
	li.sub-parent ul.menu-flyout {
		display: none;
		position: absolute;
		top: 0;
		left: 100%;
		padding-left: 1px;
		width: 250px;
	}
	li.sub-parent:hover ul.menu-flyout {
		display: block;
	}

	#header_bottom {
		background: #004373;
		height: 290px;
		padding: 55px 0;
	}
	#branding {
		display: flex;
		flex-wrap: wrap;
	}
	#logo img {
		width: 100% !important;
		height: auto !important;
		max-width: 350px;
		margin-left: -5px;
	}
	#tagline {
		width: calc(100% - 345px);
		color: #33a2fb;
		font-size: 34px;
		line-height: 1.1em;
		padding-top: 78px;
		padding-left: 100px;
	}
}
@media all and (max-width:768px) {
		#header_top {
		text-align: center;
		height: 0;
		transition: all 1s;
	}
	ul.main-menu li a, ul.main-menu li span.menu-label {
		font-size: 3.2vw;
		padding: 20px 3.2vw;
	}
	#header_bottom {
		padding-top: 15px;
		padding-bottom: 30px;
	}
	#logo {
		width: 100%;
		padding-top: 20px;
	}
	#logo img {
		max-width: 175px;
		margin-left: 0;
	}
	#tagline {
		width: calc(50% + 20px);
		padding-top: 20px !important;
		padding-left: 20px !important;
		font-size: 24px !important;
		line-height: 1.5em;
	}
	#main-nav.closed {
		display: none;
	}
	#main-nav.open {
		display: block;
		padding: 50px 20% 0;
	}
	#main-nav {
		position: absolute;
		z-index: 999;
		top: 90px;
		left: 0;
		width: 100%;
		height: 100vh;
		background: -moz-linear-gradient(bottom, rgba(51,162,251, 1) 0%, rgba(255,255,255, 1) 200px);
		background: -webkit-linear-gradient(bottom, rgba(51,162,251, 1) 0%, rgba(255,255,255, 1) 200px);
		background: -o-linear-gradient(bottom, rgba(51,162,251, 1) 0%, rgba(255,255,255, 1) 200px);
		background: linear-gradient(to bottom, rgba(51,162,251, 1) 0px, rgba(255,255,255, 1) 200px);
	}
	#hamburger_menu {
		display: block;
		width: 38px;
		height: 38px;
		text-align: center;
		position: absolute;
		z-index: 9999;
		top: 27px;
		right: 20px;
		cursor: pointer;
	}
	#hamburger_menu .ham_menu {
		width: 100%;
		height: 100%;
	}
	#hamburger_menu.closed .ham_menu.menu_icon_open { display: block; }
	#hamburger_menu.closed .ham_menu.menu_icon_close { display: none; }
	#hamburger_menu.open .ham_menu.menu_icon_open { display: none; }
	#hamburger_menu.open .ham_menu.menu_icon_close { display: block; }
	
	ul.main-menu {
		list-style-type: none;
		vertical-align: middle;
		text-align: left;
		padding: 30px;
		margin: 0 auto;
		position: relative;
		z-index: 999;
	}
	ul.main-menu li {
		display: block;
		text-align: left;
		padding: 30px;
		line-height: 1em;
		position: relative;
		z-index: 999;
	}
	ul.main-menu li a, ul.main-menu li span.menu-label {
		font-size: 24px;
		font-weight: 300;
		color: #000;
		padding: 0;
		text-decoration: none;
		text-transform: uppercase;
		cursor: pointer;
	}
	ul.main-menu li.parent.closed > span {
		padding-right: 30px;
		background: url('../images_rb/menu-arrow-down-blue-2x.png') center right no-repeat;
		background-size: 20px 12px;
		background-position-y: 4px
	}
	ul.main-menu li.parent.open > span {
		padding-right: 30px;
		background: url('../images_rb/menu-arrow-up-blue-2x.png') center right no-repeat;
		background-size: 20px 12px;
		background-position-y: 4px;
	}
	ul.main-menu li ul.drop-down {
		width: 100%;
		height: auto;
		opacity: 1;
		transition: all 1s;
		padding: 10px 0 20px;
	}
	ul.main-menu li.closed ul.drop-down {
		display: none;
	}
	ul.main-menu li.open ul.drop-down {
		display: block;
	}
	ul.main-menu li ul.drop-down li {
		width: 100%;
		padding: 0;
	}
	ul.main-menu li ul.drop-down li a, ul.main-menu li ul.drop-down li span {
		display: inline-block;
		font-size: 16px;
		color: #000;
		width: auto;
		padding: 15px 30px 10px;
		text-align: left;
		text-transform: uppercase;
	}
	ul.drop-down li.sub-parent.closed > span {
		padding-right: 30px;
		background: url('../images_rb/menu-arrow-down-blue-2x.png') center right no-repeat;
		background-size: 16px 8px;
		background-position-y: 18px
	}
	ul.drop-down li.sub-parent.open > span {
		padding-right: 30px;
		background: url('../images_rb/menu-arrow-up-blue-2x.png') center right no-repeat;
		background-size: 16px 8px;
		background-position-y: 18px;
	}
	ul.main-menu li ul.drop-down li:hover {
		background-color: #dcdada;
	}
	li.sub-parent.closed ul.menu-flyout {
		display: none;
	}
	li.sub-parent.open ul.menu-flyout {
		display: block;
		background-color: #fff;
	}
	
	#header_bottom {
		background: #004373;
		height: 90px !important;
		padding-top: 0;
	}
	#header_bottom #branding {
		width: 50%;
	}
	#header_bottom #logo {
		height: 100%;
		max-height: unset;
		padding: 12px 0;
	}
	#header_bottom #logo img {
		width: auto !important;
		height: 100% !important;
		max-height: 66px;
	}
	#tagline { display: none; }
}
@media all and (max-width:630px) {
	#main-nav.open {
		display: block;
		padding: 50px 10% 0 10%;
	}
}
@media all and (max-width: 580px) {
	#search-form input#keyword-search::placeholder {
		color: #808080 !important;
		font-size: 3.6vw !important;
		letter-spacing: normal;
	}
}
@media all and (max-width:550px) {
	ul.main-menu {
		padding: 30px 25px;
	}
	#main-nav.open {
		display: block;
		padding: 50px 0 0;
	}
}
@media all and (max-width:400px) {
	ul.main-menu {
		padding: 30px 0px;
	}
}

#container {
	overflow-x: hidden;
}
#main-wrapper {
	width: 100%;
	height: 100%;
}
#main-wrapper #page-wrapper {
	min-height: 600px;
	background: -moz-linear-gradient(bottom, rgba(51,162,251, 1) 0%, rgba(255,255,255, 0) 600px);
	background: -webkit-linear-gradient(bottom, rgba(51,162,251, 1) 0%, rgba(255,255,255, 0) 600px);
	background: -o-linear-gradient(bottom, rgba(51,162,251, 1) 0%, rgba(255,255,255, 0) 600px);
	background: linear-gradient(to bottom, rgba(51,162,251, 1) 0px, rgba(255,255,255, 0) 600px);
}
@media all and (max-width:500px) {
	
	#main-wrapper #page-wrapper {
		min-height: 600px;
		background: -moz-linear-gradient(bottom, rgba(51,162,251, 1) 0%, rgba(255,255,255, 1) 240px);
		background: -webkit-linear-gradient(bottom, rgba(51,162,251, 1) 0%, rgba(255,255,255, 1) 240px);
		background: -o-linear-gradient(bottom, rgba(51,162,251, 1) 0%, rgba(255,255,255, 1) 240px);
		background: linear-gradient(to bottom, rgba(51,162,251, 1) 0px, rgba(255,255,255, 1) 240px);
	}
	
}
#page-wrapper.page-about {
	background: #fff !important;
}
#page-intro {
	padding: 180px 0 100px;
	background: #f9f9f9;
}
#page-intro .title-header {
	position: relative;
	z-index: 0;
	margin-bottom: 120px;
	display: flex;
	flex-wrap: wrap;
}
#page-intro .title-header .title-text {
	display: block;
	width: 85%;
	padding-right: 28%;
	padding-bottom: 20px;
	border-bottom: 1px solid #000;
}
#page-intro .header-image {
	position: absolute;
	z-index: 5;
	right: 0;
	top: 0;
	width: 400px;
	transform: translateY(-25%);
}
#page-intro img {
	width: 100%;
	min-width: 120px;
	border-radius: 50%;
}
#page-intro .intro-text {
	width: 100%;
	max-width: 1000px;
}
#page-main {
	padding: 100px 0;
	background: #fff;
}

#main-wrapper #page-wrapper.info-page {
	background: #fff;
}
.info-page .padding-wrapper {
	max-width: 808px;
	margin: 0 auto;
}
.info-page #page-intro {
	padding: 100px 0 0;
	background: #fff;
}
.info-page #page-intro .title-header {
	margin-bottom: 0;
}
.info-page #page-intro .title-header .title-text {
	width: 100%;
	padding: 0;
}
.info-page #page-intro .title-header .title-text h1 {
	margin-bottom: .25em;
}
.info-page #page-main {
	padding: 50px 0 180px;
}

@media all and (max-width:1400px) {
	#page-intro .title-header .title-text {
		padding-right: 22%;
	}
}
@media all and (max-width:1280px) {
	#page-intro .title-header .title-text {
		padding-right: 20%;
	}
	#page-intro .header-image {
		width: 35%;
		max-width: 400px;
	}
}
@media all and (max-width:1180px) {
	#page-intro {
		padding-top: 16vw;
	}
	#page-intro .header-image {
		transform: translateY(-6vw);
	}
	#page-intro .title-header .title-text {
		padding-bottom: 0;
	}
}
@media all and (max-width:800px) {
	#page-intro {
		padding-top: 14vw;
		padding-bottom: 50px;
	}
	#page-intro .header-image {
		transform: translateY(1vw);
	}
	#page-intro .title-header .title-text {
		padding-right: 25%;
	}
	#page-intro .intro-text h3 {
		font-size: 18px;
	}
}
@media all and (max-width:500px) {
	#page-intro .title-header {
		margin-bottom: 50px;
	}
}

/* SEARCH FORM */
input, textarea {
	color: #000;
}
input::placeholder, textarea::placeholder {
	color: #000;
}
#search-bar {
	position: relative;
	z-index: 0;
	padding-top: 50px;
}
.page-home #search-bar {
	padding-top: 120px;
}
#search-form {
	position: relative;
	z-index: 20;
	width: 100%;
	height: auto;
	margin: 0 auto 0 0;
	padding: 0;
}
#search-form label.keyword-label {
	position: absolute;
	z-index: 5;
	top: 24px;
	left: 40px;
	color: #808080;
	font-size: 34px;
	line-height: 1em;
	pointer-events: none;
}
#search-form input#keyword-search::placeholder {
	color: #808080 !important;
	font-size: 34px;
	letter-spacing: normal;
}
#search-form input#keyword-search {
	border: none;
	color: #808080;
	font-size: 34px;
	width: 55%;
	height: auto;
	padding: 19px;
	position: relative;
	z-index: 0;
	top: 16px;
	border-radius: 12px;
}
.page-cinema #search-form input#keyword-search {
	width: 90%;
}
input#search_button {
	position: absolute;
	width: 118px;
	height: 118px;
	padding: 15px;
	margin-bottom: 8px;
	border: none;
	border-radius: 59px;
	background-color: #FF7525;
	font-size: 18px;
	text-wrap: wrap;
	overflow-wrap: break-word;
	line-height: 1.2em;
	color: #fff;
	vertical-align: bottom;
	cursor: pointer;
	left: 52%;
	top: -3px;
	box-shadow: 7px 10px 0 rgb(100, 100, 100, .3);
	opacity: 1;
	transition: all 1s;
}
@media all and (max-width:1024px) {
	.page-home #search-bar {
		padding-top: 50px;
	}
	#search-form {
		width: 100%;
		height: auto;
		padding: 0;
	}
	#search-form input#keyword-search {
		height: 45px;
		padding-left: 10px;
		font-size: 3.6vw;
		width: 65%;
	}
	input#search_button {
		width: 80px;
		height: 80px;
		top: 0;
		right: unset;
		font-size: 14px;
		padding: 0;
		left: 60%;
	}
}
@media all and (max-width:940px) {
	
	input#search_button {
		left: 60%;
	}
}
#search-form.open input#search_button {
	visibility: hidden;
	opacity: 0;
	transition: all 1s;
}
.page-cinema input#search_button {
	left: calc(90% - 59px);
}
#search_button:hover {
	background-color: #efefef;
	color: #000;
}
#refine-search {
	position: relative;
	z-index: 0;
	width: 240px;
	margin: 0 auto;
	display: inline-block;
}

#search-filters {
	position: relative;
	z-index: 20;
	margin: 110px auto 100px;
}
a#refine-search:before {
	content: '';
	display: block;
	width: 20px;
	height: 20px;
	position: absolute;
	top: 10px;
	left: 16px;
	background: url('../images_rb/refine-search-icon-new.png') center no-repeat;
	background-size: auto 100%;
}
a#refine-search:after {
	content: '';
	position: absolute;
	right: 16px;
	top: 10px;
	width: 21px;
	height: 19px;
	background: url('../images_rb/select-arrow-down-inactive.png') center no-repeat;
	background-size: 100% auto;
}
#search-filters-form {
	display: none;
	margin-top: 30px;
}
#search-form.open a#refine-search:after {
	background: url('../images_rb/search-close-button.png') center no-repeat;
	background-size: 80% auto;
}
#search-form.open #search-filters-form {
	display: block;
}
#advanced-search-clear, #advanced-search-submit {
	display: none;
}
#search-form.open #advanced-search-submit, #search-form.open #advanced-search-clear {
	display: inline-block;
	margin: 0 0 0 20px;
}
.page-home #advanced-search-clear { display: none !important; }
.select-wrapper {
	position: relative;
	display: inline-block;
}
.select-wrapper:after {
	content: '';
	position: absolute;
	right: 8px;
	top: 8px;
	width: 21px;
	height: 19px;
	background: url('../images_rb/select-arrow-down-inactive.png') center top no-repeat;
	background-size: 100% auto;
	font-size: 36px;
	color: #fff;
	pointer-events: none;
}
.select-wrapper:hover:after {
	background: url('../images_rb/select-arrow-down-active.png') center top no-repeat;
}
select {
	font-size: 18px;
	color: #000;
	padding: 5px 50px 5px 20px;
	border: 1px solid #000;
	background: #fff;
	margin-right: -5px;
	-webkit-appearance: none; /* For WebKit browsers (Chrome, Safari, newer Edge) */
	-moz-appearance: none;    /* For Firefox */
	appearance: none;
	cursor: pointer;
}
select:hover {
	color: #fff;
	background: #094C7C;
}
select#country-list {
	width: 182px;
}
select#organization-list {
	width: 300px;
}
select#organization-search {
	width: 300px;
}
select#special-collections-list {
	width: 250px;
}
input#organization_search {
	font-size:18px;
	background-image:none !important;
	font-size:18px;
	background:#fff;
	height:.4em;
	padding:.87em;
	border:1px solid black;
}
@media all and (max-width:1200px) {
	#search-form input#keyword-search::placeholder {
		font-size: 2.9vw !important;
	}
}
@media all and (min-width:769px) and (max-width:940px) {
	#search-form input#keyword-search {
		width: 65%;
	}
	#search-form input#keyword-search::placeholder {
		font-size: 26px;
	}
}
@media all and (max-width:768px) {
	#search-form {
		width: 98% !important;
	}
	#search-form input#keyword-search {
		width: 95%;
	}
	#search-form input#search_button {
		left: 88%;
	}
	.page-cinema #search-form input#search_button {
		left: 85%;
	}
	#search-form input#keyword-search::placeholder {
		color: #808080 !important;
		font-size: 3.6vw !important;
		letter-spacing: normal;
	}
	#search-filters {
		margin: 80px auto 40px;
	}
	.select-wrapper {
		display: block;
		width: 100%;
	}
	select {
		width: 100% !important;
		margin-top: -1px;
	}
}
@media all and (max-width:500px) {
	.page-home #search-bar {
		padding-top: 50px;
	}
	#search-form {
		width: 100%;
		height: auto;
		padding: 0;
	}
	#search-form input#keyword-search {
		height: 45px;
		padding-left: 10px;
	}
	input#search_button {
		width: 80px;
		height: 80px;
		top: 0;
		right: unset;
		left: 80% !important;
		font-size: 14px;
		padding: 0;
	}
}

video#heatmap {
	pointer-events: none;
	position: absolute;
	z-index: 10;
	top: 0;
	left: 45%;
	width: 1080px;
	transform: translateY(-20%);
	
	-webkit-mask-image: url('../videos/earthsayers-heatmap-mask.png'); /* For WebKit browsers */
	mask-image: url('../videos/earthsayers-heatmap-mask.png');
	/* Optional: Adjust mask properties */
	-webkit-mask-size: cover;
	mask-size: cover;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
}
@media all and (max-width:768px) {
	video#heatmap {
		display: none;
		top: -236px !important;
		left: 40% !important;
		width: 550px !important;
	}
}
@media all and (max-width:500px) {
	video#heatmap {
		display: none;
	}
}

/* HOME - SPECIAL COLLECTIONS */
#home-special-collections {
	padding: 40px 0 0;
}
#special-collections-intro {
	width: 100%;
	max-width: 1100px;
}
.home-mosaic {
	display: flex;
	flex-wrap: wrap;
}
.mosaic-wrapper {
	width: 50%;
	margin: 60px auto;
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(2, 1fr);
	grid-auto-rows: minmax(195px, auto);
	padding: 0;
}
.left-mosaic {
	padding-right: 10px;
}
.right-mosaic {
	padding-left: 10px;
}
.mosaic-cell {
	position: relative;
	z-index: 0;
	width: 100%;
	margin: 0;
	padding: 0;
	overflow: hidden;
	border-radius: 8px;
	background: #ccc;
	transition: all .5s;
}
.mosaic-cell.cell-one {
	grid-column: 1/2;
	grid-row: 1/4;
	background: url('../images_rb/collections-our-oceans.jpg') center no-repeat;
	background-size: auto 100% !important;
}
.mosaic-cell.cell-two {
	grid-column: 2/3;
	grid-row: 1/3;
	background: url('../images_rb/collections-food-security.jpg') center no-repeat;
	background-size: auto 100% !important;
}
.mosaic-cell.cell-three {
	grid-column: 2/3;
	grid-row: 3/4;
	background: url('../images_rb/collections-community-resilience.jpg') center no-repeat;
	background-size: 100% auto !important;
}
.mosaic-cell.cell-four {
	grid-column: 1/2;
	grid-row: 1/4;
	background: url('../images_rb/collections-the-air.jpg') center no-repeat;
	background-size: auto 100% !important;
}
.mosaic-cell.cell-five {
	grid-column: 2/3;
	grid-row: 1/2;
	background: url('../images_rb/collections-the-future.jpg') center no-repeat;
	background-size: 100% auto !important;
}
.mosaic-cell.cell-six {
	grid-column: 2/3;
	grid-row: 2/4;
	background: url('../images_rb/collections-life-on-earth.jpg') center no-repeat;
	background-size: auto 100% !important;
}
.mosaic-cell.cell-one:hover, .mosaic-cell.cell-two:hover, .mosaic-cell.cell-four:hover, .mosaic-cell.cell-six:hover {
	background-size: auto 105% !important;
}
.mosaic-cell.cell-three:hover, .mosaic-cell.cell-five:hover {
	background-size: 105% auto !important;
}
@media all and (max-width:1350px) {
	.mosaic-cell.cell-three, .mosaic-cell.cell-five {
		background-size: auto 100% !important;
	}
	.mosaic-cell.cell-three:hover, .mosaic-cell.cell-five:hover {
		background-size: auto 105% !important;
	}
}
@media all and (max-width:1200px) {
	.mosaic-wrapper {
		width: 100%;
	}
	.left-mosaic {
		padding-right: 0;
		margin-bottom: 0;
	}
	.right-mosaic {
		padding-left: 0;
		margin-top: 20px;
	}
	.mosaic-cell.cell-one, .mosaic-cell.cell-two, .mosaic-cell.cell-three, .mosaic-cell.cell-four, .mosaic-cell.cell-five, .mosaic-cell.cell-six {
		background-size: 100% auto !important;
	}
	.mosaic-cell.cell-one:hover, .mosaic-cell.cell-two:hover, .mosaic-cell.cell-three:hover, .mosaic-cell.cell-four:hover, .mosaic-cell.cell-five:hover, .mosaic-cell.cell-six:hover {
		background-size: 105% auto !important;
	}
}
@media all and (max-width:940px) {
	.mosaic-cell.cell-two, .mosaic-cell.cell-six {
		background-size: auto 100% !important;
	}
	.mosaic-cell.cell-two:hover, .mosaic-cell.cell-six:hover {
		background-size: auto 105% !important;
	}
}
@media all and (max-width:840px) {
	.mosaic-cell.cell-one, .mosaic-cell.cell-four {
		background-size: auto 100% !important;
	}
	.mosaic-cell.cell-one:hover, .mosaic-cell.cell-four:hover {
		background-size: auto 105% !important;
	}
}
@media all and (max-width:700px) {
	.mosaic-cell.cell-three, .mosaic-cell.cell-five {
		background-size: auto 100% !important;
	}
	.mosaic-cell.cell-three:hover, .mosaic-cell.cell-five:hover {
		background-size: auto 105% !important;
	}
}
@media all and (max-width:640px) {
	.mosaic-cell .mosaic-title {
		padding: 30px 30px !important;
	}
}
.mosaic-cell .mosaic-title {
	position: absolute;
	z-index: 5;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 30px 40px;
	font-size: 32px;
	font-weight: 400;
	line-height: 1.2em;
	color: #fff;
	text-transform: uppercase;
}
@media all and (max-width:580px) {
	#home-special-collections {
		padding-top: 20px;
	}
	.padding-wrapper.home-mosaic {
		padding: 0;
	}
	.mosaic-wrapper {
		display: block;
	}
	.right-mosaic {
		margin-top: 0;
	}
	.mosaic-cell {
		width: 100%;
		border-radius: 0;
		height: auto;
		min-height: 240px;
		margin-bottom: 5px;
	}
	.mosaic-cell .mosaic-title {
		font-size: 32px;
	}
	.cell-one .mosaic-title br, .cell-two .mosaic-title br { display: none; }
	.mosaic-cell.cell-one, .mosaic-cell.cell-two, .mosaic-cell.cell-three, .mosaic-cell.cell-four, .mosaic-cell.cell-five, .mosaic-cell.cell-six {
		background-size: 100% auto !important;
	}
	.mosaic-cell.cell-one:hover, .mosaic-cell.cell-two:hover, .mosaic-cell.cell-three:hover, .mosaic-cell.cell-four:hover, .mosaic-cell.cell-five:hover, .mosaic-cell.cell-six:hover {
		background-size: 105% auto !important;
	}
}
@media all and (max-width:500px) {
	.mosaic-cell {
		width: 100%;
		border-radius: 0;
		height: auto;
		min-height: 190px;
		margin-bottom: 5px;
	}
}

#quote-block {
	padding: 0 0 100px;
}
.page-about #quote-block {
	padding-top: 100px;
	background: #f9f9f9;
}
.page-cinema #quote-block {
	background: #f9f9f9;
	padding: 100px 0;
}
.quote-wrapper {
	position: relative;
	width: calc(100% - 200px);
	margin: 200px auto 100px 200px;
	padding: 0;
}
.quote-wrapper:before {
	content: '';
	display: block;
	width: 140px;
	height: 140px;
	background: url('../images_rb/quote-dove.png') center no-repeat;
	background-size: 100% auto;
	position: absolute;
	top: -60px;
	left: -180px;
}
.quote {
	font-size: 53px;
	font-weight: 300;
	line-height: 1.2em;
	color: #00b374;
	margin-bottom: 60px;
}
.quote-attribution {
	text-align: right;
}
@media all and (max-width:800px) {
	.page-about #page-main {
		padding: 50px 0 0;
	}
	.page-about #quote-block {
		padding-top: 10px;
	}
}
@media all and (max-width:1024px) {
	.quote-wrapper::before {
		width: 111px;
		left: -130px
	}
	.quote-wrapper {
		margin-left: 150px;
		width: calc(100% - 150px);
	}
	.quote {
		font-size: 36px;
	}
}
@media all and (max-width:500px) {
	.quote {
		font-size: 24px;
	}
	.quote-wrapper {
		width: 80%;
		margin: 160px auto 0;
	}
	.quote-wrapper:before {
		width: 100%;
		height: 72px;
		background-size: auto 100%;
		background-position: center top;
		top: -100px;
		left: 0;
	}
}

#stands-for .column.column-one {
	background: url('../images_rb/what-earthsayers-stand-for.jpg') center no-repeat;
	background-size: cover;
}
#stands-for .column.column-two {
	padding: 100px 150px;
	background-color: #166d4f;
}
@media all and (max-width:1024px) {
	#stands-for .column.column-one {
		min-height: 210px;
		height: 22vh;
		width: 100%;
	}
	#stands-for .column.column-two {
		width: 100%;
		padding: 40px 80px;
	}
}
@media all and (max-width:600px) {
	#stands-for .column.column-two {
		padding: 40px 40px;
	}
}

#earthsayers-cinema {
	position: relative;
	width: 100%;
	height: auto;
	min-height: 800px;
	padding: 0;
	background: url('../images_rb/cinema-bg.jpg') center repeat-x;
	background-size: auto 100%;
}
#cinema-content {
	width: 100%;
	padding: 100px 0;
}
#cinema-header {
	position: relative;
	margin: 100px auto 0;
	padding: 0;
}
#cinema-header:after {
	content: '';
	display: block;
	width: 100%;
	height: 5px;
	position: absolute;
	left: -20%;
	border-bottom: 5px dotted #fff;
}
#cinema-header h2 {
	font-size: 96px;
	margin-bottom: 20px;
}
#cinema-globe-container {
	pointer-events: none;
	position: absolute;
	z-index: 10;
	top: -70px;
	right: 0;
	width: 40%;
	padding: 53px 50px 50px;
	background: url('../images_rb/cinema-rings.png') center no-repeat;
	background-size: auto 100%;
}
video#cinema-globe {
	width: 100%;
	
	-webkit-mask-image: url('../videos/earthsayers-cinema-globe-mask.png'); /* For WebKit browsers */
	mask-image: url('../videos/earthsayers-cinema-globe-mask.png');
	/* Optional: Adjust mask properties */
	-webkit-mask-size: cover;
	mask-size: cover;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
}
#cinema-tagline {
	margin: 60px auto 200px;
}
#cinema-main {
	position: relative;
	width: 100%;
}
#cinema-main .column-one {
	padding: 0 60px 0 0;
	width: 40%;
}
#cinema-main .column-two {
	text-align: center;
	padding: 20px 60px;
	background: #000;
	border-radius: 8px;
	width: 60%;
}
#cinema-footer {
	width: 100%;
	height: 50vh;
	margin: 0 auto;
	padding: 0;
	background: url('../images_rb/rousseau-bg.png') center bottom no-repeat;
	background-size: 100% auto;
}
@media all and (min-width:1025px) and (max-width: 1500px) {
	#stands-for .column.column-two {
		padding: 100px 10%;
	}
	#cinema-header {
		width: 80%;
		margin: 100px 0 0;
	}
	#cinema-header:after {
		left: -8%;
	}
	#cinema-header h2 {
		font-size: 6.2vw;
	}
	#cinema-globe-container {
		width: 50%;
		right: -25%;
		min-width: 50%;
	}
}
@media all and (max-width: 1330px) {
	#quote-block {
		padding: 1px 0 !important;
	}
	#cinema-main .video-container img {
		width: 100% !important;
		height: auto !important;
	}
}
@media all and (max-width:1024px) {
	#cinema-header {
		margin-top: 280px;
	}
	#cinema-header:after {
		left: -10%;
		width: 120%;
	}
	#cinema-header h2 {
		font-size: 60px;
		margin-bottom: 0;
		text-align: center;
	}
	#cinema-globe-container {
		width: 55%;
		top: -340px;
		left: 50%;
		right: unset;
		transform: translateX(-50%);
	}
	#cinema-tagline {
		display: none;
	}
	#cinema-main {
		margin-top: 100px;
		padding-left: 80px;
		padding-right: 80px;
	}
	#cinema-main h2 {
		font-size: 44px;
		text-align: center;
	}
	#cinema-main .column-one {
		width: 100%;
		padding: 0;
		order: 2;
	}
	#cinema-main .column-two {
		width: 100%;
		padding: 0;
		order: 1;
	}
	#cinema-content {
		padding-bottom: 0;
	}
	#cinema-footer {
		height: 26vh;
		background-size: 100% 100% !important;
		background-position-x: 100%;
	}
}
@media all and (max-width:768px) {
	#cinema-globe-container {
		width: 400px;
	}
	#cinema-footer {
		height: 26vh;
		background-size: auto 100% !important;
	}
}
@media all and (max-width:600px) {
	#cinema-main {
		padding-left: 40px;
		padding-right: 40px;
	}
}

/* CINEMA PAGE HEADER */
#cinema-page-header {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 50px;
}
#cinema-page-header .cinema-page-title {
	width: 80%;
	text-align: right;
	padding-right: 30px;
}
#cinema-page-header h2 {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	margin: 0 auto;
	right: calc(20% + 30px);
}
#cinema-page-header h2 br {
	display: none;
}
#cinema-page-header .cinema-page-image {
	width: 20%;
}
#cinema-page-header img {
	border-radius: 50%;
	width: 100%;
	max-width: 285px;
}
@media all and (max-width:1500px) {
	#cinema-page-header h2 {
		font-size: 4vw;
	}
}
@media all and (max-width:1300px) {
	#cinema-page-header h2 {
		font-size: 48px;
		line-height: 1.2em;
	}
	#cinema-page-header h2 br {
		display: inline-block;
	}
}
@media all and (max-width:734px) {
	#cinema-page-header .cinema-page-title {
		width: calc(100% - 162px);
	}
	#cinema-page-header h2 {
		font-size: 6.4vw;
		right: 162px;
		line-height: 1em;
	}
	#cinema-page-header .cinema-page-image {
		width: 132px;
		margin-left: 30px;
	}
}
@media all and (max-width:500px) {
	#cinema-page-header {
		text-align: left;
		height: 180px;
		clear: both;
	}
	#cinema-page-header span {
		display: block;
	}
	#cinema-page-header img {
		max-width: 130px;
		float: right;
	}
	#cinema-page-header h2 {
		transform: translateY(-70%);
	}
	#cinema-page-header h2 br {
		display: none;
	}
}

/* CINEMA SEARCH RESULTS */
.video-grid-wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	position: relative;
	z-index: 20;
	cursor: pointer;
}
.video-grid-wrapper .video-grid-cell {
	position: relative;
	z-index: 0;
	width: calc(25% - 20px);
	min-width: 280px;
	margin: 0 10px 60px;
}
@media all and (max-width:680px) {
	.video-grid-wrapper .video-grid-cell {
		width: 100%;
		max-width: 380px;
	}
}
/*
@media all and (max-width:500px) {
	.video-grid-wrapper .video-grid-cell {
		width: calc(50% - 20px);
	}
}
*/
@media all and (max-width:360px) {
	.video-grid-wrapper .video-grid-cell {
		width: calc(100% - 20px);
		min-width: unset;
		position: relative;
		z-index: 0;
	}
}
.video-grid-wrapper .video-container img {
	width: 100% !important;
	height: auto !important;
	border-radius: 8px;
}
.video-grid-wrapper .video-container:after {
	top: calc(50% - 25px);
	left: calc(50% - 25px);
	width: 51px;
	height: 51px;
}
.video-grid-wrapper .video-information {
	display: block;
	position: relative;
	z-index: 5;
	font-size: 15px;
	padding: 20px;
	border-bottom: 1px solid #B5B1B1;
	cursor: pointer;
}
.video-grid-wrapper .video-information:after {
	content: '';
	display: block;
	width: 18px;
	height: 11px;
	position: absolute;
	z-index: 10;
	left: calc(50% - 7px);
	bottom: -11px;
	background: url('../images_rb/video-cell-down-triangle.png') center no-repeat;
}
.video-grid-cell.open .video-information:after {
	content: '';
	display: block;
	width: 18px;
	height: 11px;
	position: absolute;
	z-index: 10;
	left: calc(50% - 7px);
	bottom: -1px;
	background: url('../images_rb/video-cell-up-triangle.png') center no-repeat;
}
.video-grid-wrapper .video-information .video-title {
	font-weight: 700;
	margin-bottom: 1em;
}
.video-grid-cell .video-description-popup {
	display: none;
}
.video-grid-cell .video-description-popup p {
	font-size: 16px;
}

.video-grid-cell.open, .video-grid-cell:hover {
	position: relative;
	z-index: 6;
	background: #094C7C;
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
	box-shadow: 0 3px 5px rgba(0, 0, 0, 0.5);
}
.video-grid-cell.open *, .video-grid-cell:hover * {
	color: #fff;
}

.video-grid-cell.open .video-description-popup {
	position: absolute;
	z-index: 5;
	top: 100%;
	display: block;
	padding: 20px;
	background: #094C7C;
	box-shadow: 0 3px 5px rgba(0, 0, 0, 0.5);
	border-bottom-left-radius: 8px;
	border-bottom-right-radius: 8px;
}

.search-pagination {
	text-align: center;
	margin-bottom: 100px;
}
.search-pagination ul.pager {
	padding-left: 0;
	list-style-type: none;
}
.search-pagination ul.pager li {
	display: inline-block;
	font-size: 22px;
	text-align: center;
	vertical-align: middle;
	padding: 0 3px;
}
@media all and (max-width:760px) {
	.search-pagination ul.pager li:nth-child(5), .search-pagination ul.pager li:nth-child(6), .search-pagination ul.pager li:nth-child(7) {
		display: none;
	}
}
@media all and (max-width:590px) {
	.search-pagination ul.pager li {
		font-size: 18px;
	}
	.search-pagination ul.pager li a.pagination-button {
		width: 46px !important;
		height: 30px !important;
		padding: 5px !important;
	}
	.search-pagination ul.pager li:nth-child(5), .search-pagination ul.pager li:nth-child(6), .search-pagination ul.pager li:nth-child(7) {
		display: none;
	}
}
@media all and (max-width:430px) {
	.search-pagination ul.pager li:nth-child(4), .search-pagination ul.pager li:nth-child(5), .search-pagination ul.pager li:nth-child(6), .search-pagination ul.pager li:nth-child(7) {
		display: none;
	}
}
.search-pagination ul.pager li.ellipses {
	margin: 0 10px;
}
.search-pagination ul.pager li a.pagination-button {
	display: block;
	width: 58px;
	height: 42px;
	padding: 10px 5px;
	border-radius: 5px;
	border: 1px solid #6a6464;
	background: #fff;
	color: #6a6464 !important;
	text-decoration: none;
}
.search-pagination ul.pager li a.inactive {
	pointer-events:none;
	opacity: .5;
}
.search-pagination ul.pager li a.pagination-button:hover {
	text-decoration: none !important;
	color: #fff !important;
	background: #6a6464;
}
.search-pagination ul.pager li a.prev {
	background: url('../images_rb/pager-left-arrow.png') center no-repeat;
	background-color: #fff;
	font-size: 0;
}
.search-pagination ul.pager li a.prev:hover {
	background: url('../images_rb/pager-left-arrow-white.png') center no-repeat;
	background-color: #6a6464;
	font-size: 0;
}
.search-pagination ul.pager li a.next {
	background: url('../images_rb/pager-right-arrow.png') center no-repeat;
	background-color: #fff;
	font-size: 0;
}
.search-pagination ul.pager li a.next:hover {
	background: url('../images_rb/pager-right-arrow-white.png') center no-repeat;
	background-color: #6a6464;
	font-size: 0;
}


/* ABOUT PAGE */
#board-directors-wrapper {
	position: relative;
}
.bod_wrapper {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	padding-top: 100px; 
	padding-bottom: 50px;
}
.bod_wrapper h2 {
	margin-top: 0;
}
.bod_wrapper .left_column, .bod_wrapper .right_column {
	width: 30%;
}
.bod_wrapper .left_column {
	padding-right: 70px;
}
.bod_wrapper .right_column {
	padding-left: 70px;
}
.bod_wrapper .middle_column {
	width: 40%;
}
.bod_wrapper.sticky-bio .left_column .sticky-container {
	position: fixed;
	width: 362px;
	top: 0;
	left: calc(50% - 720px);
}
.bod_wrapper.sticky-bio .right_column .sticky-container {
	position: fixed;
	width: 362px;
	top: 0;
	right: calc(50% - 720px);
}
.bod_wrapper img {
	width: 100%;
	max-width: 400px;
	margin-bottom: 1em;
	transform: none;
}
.bod_wrapper .video-container:after {
	width: 51px;
	height: 51px;
	top: calc(50% - 25px);
	left: calc(50% - 25px);
}
@media all and (max-width:1510px) {
	.bod_wrapper .left_column {
		padding-right: 40px;
	}
	.bod_wrapper .right_column {
		padding-left: 40px;
	}
	.bod_wrapper.sticky-bio .left_column .sticky-container {
		position: fixed;
		width: calc(30% - 60px);
		top: 0;
		left: 35px;
	}
	.bod_wrapper.sticky-bio .right_column .sticky-container {
		position: fixed;
		width: calc(30% - 60px);
		top: 0;
		right: 35px;
	}
}
@media all and (min-width:601px) and (max-width: 980px) {
	.bod_wrapper:nth-child(odd) .left_column {
		width: 40%;
	}
	.bod_wrapper:nth-child(odd) .middle_column {
		width: 60%;
	}
	.bod_wrapper:nth-child(odd) .right_column {
		display: none;
	}
	.bod_wrapper:nth-child(even) .left_column {
		display: none;
	}
	.bod_wrapper:nth-child(even) .middle_column {
		width: 60%;
	}
	.bod_wrapper:nth-child(even) .right_column {
		width: 40%;
	}
	.bod_wrapper.sticky-bio .left_column .sticky-container {
		position: fixed;
		width: calc(40% - 68px);
		top: 0;
		left: 35px;
	}
	.bod_wrapper.sticky-bio .right_column .sticky-container {
		position: fixed;
		width: calc(40% - 68px);
		top: 0;
		right: 35px;
	}
}
@media all and (max-width:600px) {
	.bod_wrapper {
		padding-top: 30px;
	}
	.bod_wrapper .left_column, .bod_wrapper .right_column {
		width: 100%;
		padding: 0;
		margin: 0 auto;
	}
	.sticky-container {
		margin-bottom: 40px;
	}
	.sticky-container img {
		width: 100%;
		max-width: unset;
	}
	.bod_wrapper .middle_column {
		width: 100%;
	}
	#bod-joanne .left_column, #bod-gloria .left_column {
		order: 3;
	}
	#bod-joanne .middle_column, #bod-gloria .middle_column {
		order: 2;
	}
	#bod-joanne .right_column, #bod-gloria .right_column {
		order: 1;
	}
}


#footer {
	background: #004373;
	width: 100%;
	height: auto;
	min-height: 300px;
	padding: 100px 0 50px;
}
#footer_top {
	display: flex;
	flex-wrap: wrap;
	padding-bottom: 200px;
}
#footer_top .column {
	width: 33%;
	padding-right: 80px;
}
#footer_top #footer_logo img {
	width: 100% !important;
	height: auto !important;
	max-width: 350px;
}
ul#footer_menu {
	margin: 0 auto;
	list-style-type: none;
}
ul#footer_menu li {
	padding: 0;
	margin: 20px auto;
}
ul#footer_menu a, ul#footer_menu span.footer-menu-label {
	display: inline-block;
	color: #fff;
	padding: 0;
	text-decoration: none;
	text-transform: uppercase;
}
ul#footer_menu ul.footer-submenu {
	display: none;
	height: 0;
	opacity: 0;
	list-style-type: none;
	padding-left: 20px;
	transition: 1s all;
}
ul#footer_menu li:hover ul.footer-submenu {
	display: block;
	height: auto;
	opacity: 1;
	transition: 1s all;
}
ul#footer_menu ul.footer-submenu a {
	text-transform: none;
}

#footer_social a {
	display: inline-block;
	margin: 0 8px;
	width: auto;
	height: auto;
	padding-top: 6px;
	color: #fff;
	text-decoration: none;
	text-align: center;
}
#footer_social a img {
	width: 42px !important;
	height: auto !important;
}

#footer_bottom {
	padding-left: 5%;
	display: flex;
	flex-wrap: wrap;
}
#footer_bottom .column {
	width: 50%;
	padding-right: 80px;
}
#footer_bottom p {
	font-size: 12px;
	color: #fff;
}

@media all and (max-width:768px) {
	#footer_top {
		padding-bottom: 50px;
	}
	#footer_top .column {
		width: 100%;
		padding: 0;
	}
	#footer_logo {
		width: 50%;
		margin: 0 auto;
	}
	ul#footer_menu {
		padding-left: 20%;
		margin: 50px auto;
	}
	#footer_social {
		text-align: center;
	}
	#footer_bottom .column {
		width: 100%;
		max-width: 500px;
		padding: 0;
		padding-left: 20%;
	}
}

@media all and (max-width:850px) {
	ul.main-menu li a, ul.main-menu li span.menu-label {
		padding: 5px 30px 5px 2vw !important;
		font-size: 20px !important;
	}
}

@media all and (max-width:432px) {
	#search-form.open #advanced-search-submit, #search-form.open #advanced-search-clear {
		margin-left: 0 !important;
	}
}

@media (max-width: 500px) {
  #quote-block .padding-wrapper {
	padding: 0 20px 40px;
  }
}

@media (max-width: 600px) {
  #cinema-main {
	padding-left: 10px;
	padding-right: 10px;
  }
  #cinema-main h2 {
	  font-size: 32px;
  }
}

@media (max-width: 768px) {
  input#organization_search {
    width:100%;
  }
  ul.main-menu li {
    line-height: 1.4em;
    padding: 10px 30px;
  }
  
  li.sub-parent.open > ul.menu-flyout {
    display: block;
    background-color: #fff;
  }
  li.sub-parent.closed > ul.menu-flyout {
    display: none !important;
  }

  ul.drop-down li.sub-parent > span {
    background-position-y: 7px !important;
  }
  ul.main-menu li ul.drop-down li {
    width:100%;
    padding: 5px 10px;
  }
  
  ul.main-menu li.parent > span {
    background-position-y: 12px !important;
  }
  
  ul.drop-down li.sub-parent > span {
    background-position-y: 15px !important;
  }
  
}

@media all and (max-width: 768px) {
  #main-nav {
    min-height: 100vh !important;
    height: auto !important;
  }
  
  #search-filters-form .input_wrapper {
    width: 100% !important;
  }
  
  #search-filters-form .input_wrapper input#organization_search {
    width: 100% !important;
  }
  
  ul.main-menu li > a, ul.main-menu li > span.menu-label, ul.main-menu li > span.menu-label > a {
    padding-left: 0 !important;
  }
  ul.main-menu li ul.drop-down li:hover {
    background-color: #fff;
  }
  ul.drop-down li.sub-parent > span.menu-label {
    display: unset !important;
    line-height: 1.3em;
  }

  li.sub-parent.open ul.menu-flyout {
    padding-left: 0;
  }
  #cinema-header h2 {
    font-size: 40px;
  }
  
  .button {
    height: auto !important;
  }
}


@media (max-width: 1024px) {
  input#search_button {
    height: 80px !important;
  }
}

