/*!
Theme Name: RAP2021
Theme URI: http://underscores.me/
Author: METAPIXEL Inc.
Author URI: http://metapixel.com.ph/
Description: Wordpress theme for RAP
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: rap
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

RAP is based on Underscores https://underscores.me/, (C) 2012-2017 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body {
	font-family: 'Montserrat', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
	font-weight: 700;
	color: #4a6518;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
body {
	background-color: #fff;
}

img {
	height: auto;
	/* Make sure images are scaled correctly. */
	max-width: 100%;
	/* Adhere to container width. */
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
.search-form {
	display: inline-block;
	position: relative;
	width: 100%;
	vertical-align: middle;
	line-height: 0;
}

.search-form label {
	display: inline-block;
	width: 100%;
	margin-bottom: 0;
	font-size: 0;
}

.search-field {
	display: inline-block;
	width: 100%;
	height: 60px;
	padding: 0 80px 0 10px;
	border: 1px solid #ddd;
	border-radius: 15px;
	font-size: 18px;
	font-weight: 400;
	
}

.search-submit {
	position: absolute;
	top: 0; right: 0;
	width: 60px;
	height: 60px;
	border: none;
	background: none;
	font-size: 22px;
	color: #4a6518;
}

.search-submit:hover {
	cursor: pointer;
}

.search-submit span {
	height: 60px;
	line-height: 60px;
	text-align: center;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
	color: #4a6518;;
}

a:hover, a:focus, a:active {
	color: #96b162;
}

a:focus {
	outline: thin dotted;
}

a:hover, a:active {
	outline: 0;
}

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
.main-navigation {
	text-align: center;
	margin-top: 20px;
}

.main-navigation ul {
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.main-navigation ul li {
	display: inline-block;
	position: relative;
	margin: 0 10px;
	text-align: left;
}

.main-navigation a {
	display: block;
	position: relative;
	padding: 7px 15px;
	font-size: 18px;
	font-weight: 700;
	text-transform: uppercase;
	color: #fff;
	text-decoration: none;
	-webkit-transition: all 0.2s ease;
			transition: all 0.2s ease;
}

.main-navigation div > ul > li > a:before {
	content: "";
	display: block;
	position: absolute;
	top: 50%; left: 50%;
	width: 0;
	height: 0;
	background: #96b162;
	border-radius: 20px;
	z-index: -1;
	-webkit-transition: all 0.2s ease;
			transition: all 0.2s ease;
}

.main-navigation div > ul li:hover a:before,
.main-navigation div > ul li.focus a:before,
.main-navigation div > ul li.current_page_item:hover a:before,
.main-navigation div > ul li.current_page_item.focus a:before,
.main-navigation div > ul li.current-menu-item:hover a:before,
.main-navigation div > ul li.current-menu-item.focus a:before,
.main-navigation div > ul li.current_page_ancestor:hover a:before,
.main-navigation div > ul li.current_page_ancestor.focus a:before,
.main-navigation div > ul li.current-menu-ancestor:hover a:before,
.main-navigation div > ul li.current-menu-ancestor.focus a:before,
.main-navigation div > ul li.current_page_item a:before,
.main-navigation div > ul li.current-menu-item a:before,
.main-navigation div > ul li.current_page_ancestor a:before,
.main-navigation div > ul li.current-menu-ancestor a:before,
.main-navigation div > ul li.current-menu-ancestor a:before,
.main-navigation div > ul li.current-menu-parent a:before,
.main-navigation div > ul li.current-post-ancestor a:before,
.main-navigation div > ul li.current-post-parent a:before {
	top: 0; left: 0;
	width: 100%;
	height: 100%;
}

.main-navigation ul ul {
	float: left;
	position: absolute;
	top: 100%;
	visibility: hidden;
	z-index: 99999;
	padding: 20px 0 10px;
	opacity: 0;
	-webkit-transition: visibility 0s ease 0.4s, opacity 0.4s ease;
			transition: visibility 0s ease 0.4s, opacity 0.4s ease;
}

.main-navigation ul ul:before {
	content: "";
	display: block;
	position: absolute;
	top: 10px; right: 0; bottom: 0; left: 0;
	background: #96b162;
	border-radius: 10px;
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
	opacity: 1;
	visibility: visible;
	-webkit-transition: visibility 0s ease 0s, opacity 0.4s ease;
			transition: visibility 0s ease 0s, opacity 0.4s ease;
}

.main-navigation ul ul li {
	margin: 0;
}

.main-navigation ul ul a {
	width: 200px;
}

.main-navigation ul ul li > a:hover,
.main-navigation ul ul li.focus > a,
.main-navigation ul ul li.current_page_item:hover > a,
.main-navigation ul ul li.current_page_item.focus > a,
.main-navigation ul ul li.current-menu-item:hover > a,
.main-navigation ul ul li.current-menu-item.focus > a,
.main-navigation ul ul li.current_page_ancestor:hover > a,
.main-navigation ul ul li.current_page_ancestor.focus > a,
.main-navigation ul ul li.current-menu-ancestor:hover > a,
.main-navigation ul ul li.current-menu-ancestor.focus > a,
.main-navigation ul ul li.current_page_item > a,
.main-navigation ul ul li.current_page_ancestor > a,
.main-navigation ul ul li.current-page-parent > a,
.main-navigation ul ul li.current-menu-item > a,
.main-navigation ul ul li.current-menu-ancestor > a,
.main-navigation ul ul li.current-menu-parent > a,
.main-navigation ul ul li.current-post-ancestor > a,
.main-navigation ul ul li.current-post-parent > a {
	background-color: #fff;
	color: #0067db;
}

.main-navigation ul ul ul {
	top: -10px; left: 100%;
	padding: 10px 0 10px 10px;
}

.main-navigation ul ul ul:before {
	top: 0; right: 0; bottom: 0; left: 10px;
}

.sub-navigation {
	font-size: 0;
	text-align: center;
	margin-top: 40px;
}

.sub-navigation div {
	display: inline-block;
}

.sub-navigation ul {
	display: inline-block;
	list-style: none;
	padding: 0;
	margin: 0;
	vertical-align: top;
}

.sub-navigation li {
	display: inline-block;
	margin: 0 10px;
}

.sub-navigation .menu a {
	display: inline-block;
	padding: 3px 10px;
	font-size: 14px;
	color: #fff;
	border: 1px solid #fff;
	border-radius: 10px;
	-webkit-transition: all 0.2s ease;
			transition: all 0.2s ease;
}

.sub-navigation .menu a:hover,
.sub-navigation .menu a.focus {
	text-decoration: none;
	background-color: #96b162;
	border-color: #96b162;
}

.socialmedia-icons {
	display: inline-block;
}

.socialmedia-icons a {
	display: inline-block;
	margin: 0 10px;
	height: 48px;
}

.user-link {
	display: inline-block;
	height: 29px;
	margin: 0 10px;
	font-size: 14px;
	text-align: center;
	vertical-align: top;
}

.user-link-options {
	position: relative;
	height: 29px;
	color: #fff;
	border: 1px solid #fff;
	border-radius: 10px;
	transition: all 0.4s ease;
}

.user-link-options:hover,
.user-link-options:active {
	cursor: pointer;
	text-decoration: none;
	background-color: #96b162;
	border-color: #96b162;
}

.user-link-options span,
.user-link-options a {
	display: block;
	height: 29px;
	padding: 0 15px;
	line-height: 27px;
	text-align: center;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	transition: all 0.4s ease;
}

.user-link-options span {
	color: #fff;
}

.user-link-options div {
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	padding: 20px 0 10px;
	overflow: hidden;
	opacity: 0;
	z-index: 1;
	visibility: hidden;
}

.user-link-options div:before {
	content: "";
	display: block;
	position: absolute;
	top: 10px;
	right: 0;
	bottom: 0;
	left: 0;
	background: #96b162;
	border-radius: 10px;
	border: 1px solid #fff;
	z-index: 0;
}

.user-link-options:hover > div,
.user-link-options:active > div {
	opacity: 1;
	visibility: visible;
}


.user-link-options a {
	position: relative;
	color: #fff;
	z-index: 9999;
	-webkit-transition: all 0.4s ease;
			transition: all 0.4s ease;
}

.user-link-options a:hover {
	background: #fff;
	color: #96b162;
	transition: all 0.4s ease;
	text-decoration: none;
}

.user-link .user-link-options span,
.user-link .user-link-options a {
	max-width: 450px;
}

/*--------------------------------------------------------------
## Mobile Menu
--------------------------------------------------------------*/
.mobile-navigation-button {
	display: none;
	position: absolute;
	top: 0;
	right: 0;
}

.mobile-navigation-button > span {
	position: absolute;
	top: 50%; right: 110px;
	transform: translateY(-50%);
	font-size: 16px;
	font-weight: 500;
	color: #fff;
}

.hamburger {
	position: absolute;
	top: 50%; right: 40px;
	transform: translateY(-50%);
	width: 50px;
	height: 50px;
	padding: 0;
	z-index: 9999;
}

.hamburger::after {
	content: "";
	position: absolute;
	top: 50%; left: 50%;
	width: 0;
	height: 0;
	border-radius: 15px;
	background: #96b162;
	-webkit-transition: all 0.2s ease;
			transition: all 0.2s ease;
}

.hamburger:hover {
	opacity: 1;
}

.hamburger:focus {
	outline: 0;
}

.hamburger:hover::after,
.hamburger.is-active::after {
	top: 0; left: 0;
	width: 100%;
	height: 100%;
}

.hamburger-box {
	position: absolute;
	top: 50%; left: 50%;
	margin-top: -12px;
	margin-left: -17px;
	width: 34px;
	z-index: 10;
}

.hamburger .hamburger-inner, 
.hamburger .hamburger-inner::after, 
.hamburger .hamburger-inner::before {
	background: #fff;
	width: 34px;
}

.mobile-navigation {
	display: none;
	position: fixed;
	top: 100%; left: 100%;
	width: 70%;
	height: 100%;
	background: #fff;
	z-index: 8;
	padding: 40px 110px 40px 40px;
	opacity: 0;
	overflow: scroll;
	-webkit-transition: left 0.4s ease, opacity 0.4s ease, top 0s ease 0.4s;
			transition: left 0.4s ease, opacity 0.4s ease, top 0s ease 0.4s;
}

.mobile-navigation.open {
	top: 0; left: 30%;
	opacity: 1;
	-webkit-transition: left 0.4s ease, opacity 0.4s ease, top 0s ease 0s;
			transition: left 0.4s ease, opacity 0.4s ease, top 0s ease 0s;
}

.mobile-navigation ul {
	padding: 0;
	margin-left: 40px;
	list-style: none;
}

.mobile-navigation ul ul {
}

.mobile-navigation ul li {
	display: block;
	position: relative;
	text-transform: uppercase;
	text-align: left;
}

.mobile-navigation ul li a {
	position: relative;
	display: inline-block;
	padding: 5px 7px;
	margin: 0 0 10px;
	color: #333;
	font-size: 20px;
	font-weight: 600;
	line-height: 1em;
	vertical-align: middle;
	-webkit-transition: all 0.4s ease 0s;
			transition: all 0.4s ease 0s;
}

.mobile-navigation ul li a:hover,
.mobile-navigation ul li a:focus {
	text-decoration: none;
}

.mobile-navigation ul.menu.slide-nav li i.drop-down-icon {
	position: absolute;
	box-sizing: border-box;
	display: block;
	top: 0; left: -50px;
	width: 30px;
	height: 30px;
	margin: 0;
	border-radius: 3px;
	color: #0067db;
	font-size: 14px;
	line-height: 30px;
	text-align: center;
	-webkit-transition: all 0.4s ease;
			transition: all 0.4s ease;
}

.mobile-navigation ul.menu.slide-nav li i.drop-down-icon.open {
	transform: rotate(90deg);
}

.mobile-navigation ul li.focus > a,
.mobile-navigation ul li.current_page_item.focus > a,
.mobile-navigation ul li.current-menu-item.focus > a,
.mobile-navigation ul li.current_page_ancestor.focus > a,
.mobile-navigation ul li.current-menu-ancestor.focus > a,
.mobile-navigation ul li.current_page_item > a,
.mobile-navigation ul li.current_page_ancestor > a,
.mobile-navigation ul li.current-page-parent > a,
.mobile-navigation ul li.current-menu-item > a,
.mobile-navigation ul li.current-menu-ancestor > a,
.mobile-navigation ul li.current-menu-parent > a,
.mobile-navigation ul li.current-post-ancestor > a,
.mobile-navigation ul li.current-post-parent > a {
	color: #fff;
}

.mobile-navigation ul li.focus > a:after,
.mobile-navigation ul li.current_page_item.focus > a:after,
.mobile-navigation ul li.current-menu-item.focus > a:after,
.mobile-navigation ul li.current_page_ancestor.focus > a:after,
.mobile-navigation ul li.current-menu-ancestor.focus > a:after,
.mobile-navigation ul li.current_page_item > a:after,
.mobile-navigation ul li.current_page_ancestor > a:after,
.mobile-navigation ul li.current-page-parent > a:after,
.mobile-navigation ul li.current-menu-item > a:after,
.mobile-navigation ul li.current-menu-ancestor > a:after,
.mobile-navigation ul li.current-menu-parent > a:after,
.mobile-navigation ul li.current-post-ancestor > a:after,
.mobile-navigation ul li.current-post-parent > a:after {
	content: "";
	display: block;
	position: absolute;
	top: 0; bottom: 0; left: 0; right: 0;
	background-color: #96b162;
	border-radius: 5px;
	z-index: -1;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
	/* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
	outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
	content: "";
	display: table;
	table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
	clear: both;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
	margin: 0 0 20px;
	/* Make sure select elements fit in widgets. */
}

.widget select {
	max-width: 100%;
}

.widget-title {
	position: relative;
	color: #4a6518;
	padding-bottom: 10px;
	font-size: 16px;
	font-weight: 700;
	border-bottom: 1px #999 solid;
}

.widget ul {
	display: block;
	padding: 0;
	margin: 0;
	list-style: none;
}

.widget ul li {
	display: block;
	padding: 0 0 5px;
}

#secondary .widget_recent_entries,
#secondary .widget_categories,
#secondary .widget_text {
	padding: 15px;
	border-radius: 15px;
	background-color: #eee;
}


/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
#masthead {
	position: relative;
	width: 100%;
	padding: 40px 0;
	background-color: #4a6518;
	z-index: 20;
}

.header-foreground,
.header-foreground h1,
.header-foreground h2,
.header-foreground p {
	color: #fff;
}

.home .header-foreground {
	text-align: center;
}

.header-bar {
	padding: 40px 60px;
	font-size: 0;
	z-index: 30;
	background-color: rgba(17,17,17,0);
	-webkit-transition: all 0.4s ease;
			transition: all 0.4s ease;
}

.logo-banner {
	display: inline-block;
	vertical-align: top;
}

.site-branding {
	text-align: center;
	padding-bottom: 15px;
	-webkit-transition: all 0.4s ease;
			transition: all 0.4s ease;
}

.logo-banner img {
	display: inline-block;
	vertical-align: top;
}

.header-text {
	display: inline-block;
	padding-top: 20px;
	margin: 0 0 0 30px;
	text-align: left;
}

h1.site-title,
p.site-title {
	font-weight: 700;
	font-size: 38px;
	margin: 0;
	line-height: 1.2;
	text-transform: uppercase;
}

h1.site-title a,
p.site-title a {
	color: #fff;
}

p.home-banner-description {
	font-size: 24px;
	line-height: 24px;
	color: #fff;
	text-transform: uppercase;
}

.header-border {
	background-color: #fff;
}

.header-background {
	width: 100%;
	height: 800px;
	z-index: 0;
	background: url(images/header-background.jpg) no-repeat;
	background-position: center;
	background-size: cover;
}

.header-background-image,
.header-background-image img {
	width: 100%;
	height: auto;
}

.next-event {
	font-family: 'Kalam', cursive;
	font-weight: 400;
	font-size: 48px;
	margin: 0;
	line-height: 1.2;
}

a.home-banner-link {
	display: inline-block;
	padding: 10px 30px;
	border-radius: 60px;
	background-color: #96b162;
	font-family: 'Kalam', cursive;
	font-size: 30px;
	color: #fff;
	margin-top: 40px;
	-webkit-transition: all 0.4s ease;
			transition: all 0.4s ease;
}

a.home-banner-link:hover {
	text-decoration: none;
	background-color: #0067db;
}

#content {
	position: relative;
	z-index: 10;
	width: 100%;
	padding: 60px 0 30px;
}

main > div {
	padding-bottom: 30px;
}

h2.home-banner-header {
	font-size: 4rem;
	margin: 90px 0 0;
}

p.header-excerpt {
	font-size: 24px;
	max-width: 770px;
	margin: 0 auto;
}

#colophon {
	position: relative;
	padding: 40px 0 30px;
	background-color: #eee;
	z-index: 10;
}

#colophon hr {
	background-color: #4a6518;
	margin: 30px 0;
}

.footer-logo {
	display: block;
	position: relative;
	margin: 0 auto 10px;
	z-index: 1;
}

.site-info {
	text-align: center;
}

.footer-title {
	margin-bottom: 20px;
	font-size: 20px;
}

.footer-title a {
	color: #4a6518;
	font-weight: 700;
	text-transform: uppercase;
	line-height: 1em;
	-webkit-transition: all 0.2s ease;
			transition: all 0.2s ease;
}

.footer-title a:hover {
	text-decoration: none;
	color: #0067db;
}

.site-info span {
	display: block;
	color: #4a6518;
	font-size: 16px;
	line-height: 16px;
}

#metapixel-tag {
	color: #666;
	font-size: 14px;
	margin-top: 14px;
}

#metapixel-tag a {
	color: #666;
}

/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
	display: block;
}

.updated:not(.published) {
	display: none;
}

.header-title {
	text-transform: uppercase;
	padding-bottom: 10px;
	margin-bottom: 30px;
	border-bottom: 1px solid #999;
}

.single .header-title {
	margin-bottom: 10px;
}

.single .post-date {
	display: block;
	margin-bottom: 30px;
	color: #4a6518;
}

.post-list  {
	margin-bottom: 30px;
}

.post-list-thumb {
	display: block;
	height: 300px;
	background-size: cover;
	background-position: center;
}

.post-box {
	position: relative;
	margin-bottom: 30px;
}

.post-box-background {
	position: absolute;
	top: 0; right: 15px; bottom: 0; left: 15px;
	background-color: #eee;
	z-index: -1;
}

.post-box-text {
	padding: 20px;
	font-size: 14px;
}

.post-list .entry-title {
	margin: 0 0 15px;
	line-height: 1rem;
}

.post-list .entry-title a {
	display: inline-block;
	position: relative;
	font-size: 18px;
	font-weight: 700;
	text-transform: uppercase;
	-webkit-transition: all 0.2s ease;
			transition: all 0.2s ease;
}

.post-list .entry-meta span {
	display: inline-block;
	position: relative;
	color: #000;
	margin: 0 0 15px;
}

.entry-footer span {
	display: block;
}

.post-list-border {
	height: 2px;
	background-image: url(images/hr-background.png);
	margin: 30px 0 60px;
}

.post-link {
	display: inline-block;
	position: absolute;
	bottom: 0; right: 0;
	padding: 10px 20px;
	background-color: #0067db;
	font-family: 'Kalam', cursive;
	font-size: 24px;
	line-height: 24px;
	color: #fff;
	transform: translateY(50%);
	-webkit-transition: all 0.2s ease;
			transition: all 0.2s ease;
}

.post-link:hover {
	text-decoration: none;
	color: #fff;
	background-color: #96b162;
}

.nav-links {
	display: flex;
	margin: 40px -15px;
}

.nav-previous,
.nav-next {
	width: 50%;
	padding: 0 15px;
}

.nav-previous {
	float: left;
	text-align: left;
}

.nav-next {
	float: right;
	text-align: right;
}


.nav-previous a,
.nav-next a {
	display: block;
	height: 100%;
	padding: 20px;
	border: 1px solid #fff;
	background-color: #eee;
	-webkit-transition: all 0.2s ease;
			transition: all 0.2s ease;
}

.nav-previous a:before {
	content: "\00ab  Previous Post";
	display: block;
	color: #666;
	border-bottom: 1px solid #999;
	margin-bottom: 5px;
	padding-bottom: 5px;
	-webkit-transition: all 0.2s ease;
			transition: all 0.2s ease;
}
.nav-next a:before {
	content: "Next Post  \00bb";
	display: block;
	color: #666;
	border-bottom: 1px solid #999;
	margin-bottom: 5px;
	padding-bottom: 5px;
	-webkit-transition: all 0.2s ease;
			transition: all 0.2s ease;
}

.nav-previous a:hover,
.nav-next a:hover {
	text-decoration: none;
	background-color: #4a6518;
	color: #fff;
}

.nav-previous a:hover:before,
.nav-next a:hover:before {
	border-color: #fff;
	color: #fff;
}


/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
	/* Theme Footer (when set to scrolling) */
	display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
	display: inline-block;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	text-align: center;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
	margin-bottom: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
}

.gallery-columns-2 .gallery-item {
	max-width: 50%;
}

.gallery-columns-3 .gallery-item {
	max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
	max-width: 25%;
}

.gallery-columns-5 .gallery-item {
	max-width: 20%;
}

.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}

.gallery-caption {
	display: block;
}

/*--------------------------------------------------------------
# Media Queries
--------------------------------------------------------------*/

/* Medium Devices, Desktops */
@media only screen and (max-width : 1199px) {
	.header-bar {
		padding: 40px 40px;
	}
	.main-navigation {
		top: 50%; right: 40px;
	}
	.main-navigation ul li {
		margin: 0 5px;
	}
	.main-navigation a {
		padding: 5px 10px;
		font-size: 16px;
	}
	h1.site-title,
	p.site-title {
		font-size: 36px;
	}
	h2.home-banner-header {
		font-size: 3rem;
	}
	.header-text {
		margin: 0;
		text-align: center;
	}
	.header-background {
		height: 600px;
	}
}

/* Medium Devices, Desktops */
@media only screen and (max-width : 991px) {
	.main-navigation {
		display: none;
	}
	.mobile-navigation,
	.mobile-navigation-button {
		display: block;
	}
	.header-bar {
		padding: 30px 15px;
	}
	.header-bar .logo-banner img {
		height: 100px;
	}
	.mobile-navigation-button > span {
		right: 80px;
	}
	.hamburger {
		top: 50%; right: 15px;
	}
	.socialmedia-icons {
		margin-top: 20px;
	}
	h2.home-banner-header {
		font-size: 2.5rem;
		margin-top: 40px;
	}
	p.header-excerpt, p.home-banner-description {
		font-size: 16px;
	}
	a.home-banner-link {
		font-size: 24px;
	}
	.header-border {
		margin: 10px 0;
	}
	a.home-banner-link {
		margin-top: 40px;
	}
	.next-event {
		font-size: 36px;
	}	
	.home .header-foreground header {
		padding-top: 40px;
	}
	.header-background {
		height: 400px;
	}
}

/* Small Devices, Tablets */
@media only screen and (max-width : 767px) {
	.mobile-navigation {
		width: 100%;
	}
	.mobile-navigation.open {
		left: 0;
		background-color: rgba(255,255,255,0.9);
	}
	h2.home-banner-header {
		font-size: 1.8rem;
		margin-top: 30px;
	}
	p.header-excerpt, p.home-banner-description {
		font-size: 14px;
	}
	.site-info span,
	#metapixel-tag {
		font-size: 1rem;
	}
	h1.site-title,
	p.site-title {
		font-size: 24px;
	}
	.mobile-navigation-button > span {
		display: none;
	}
	.sub-navigation {
		margin-top: 10px;
	}
	.sub-navigation li {
		margin: 10px 10px 0;
	}
	.next-event {
		font-size: 24px;
	}
	.header-background {
		height: 300px;
	}
}

@media only screen
and (max-width : 575px) {
	h1 {
		font-size: 2rem;
	}
	h2 {
		font-size: 1.6rem;
	}
	h3 {
		font-size: 1.5rem;
	}
	h4 {
		font-size: 1.4rem;
	}
	h5 {
		font-size: 1.3rem;
	}
	h6 {
		font-size: 1.2rem;
	}
	.site-info span,
	#metapixel-tag {
		font-size: 0.8rem;
	}
	.footer-logo {
		margin-top: -100px;
	}
}

/* Extra Small Devices, Phones */ 
@media only screen and (max-width : 480px) {
	.mobile-navigation {
		padding-left: 20px;
		padding-right: 80px;
	}
	.mobile-navigation ul {
		margin-left: 20px;
	}
	.mobile-navigation ul.menu.slide-nav li i.drop-down-icon {
		left: -30px;
	}
	h2.home-banner-header {
		font-size: 2.2rem;
	}
	a.home-banner-link {
		margin-top: 20px;
	}
}

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

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

/* Custom, iPhone Retina */ 
@media only screen and (max-width : 320px) {
 
}