/*
Theme Name: genius
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: genius
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.

genius is based on Underscores http://underscores.me/, (C) 2012-2016 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 http://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
--------------------------------------------------------------*/
html {
	font-family: sans-serif;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust:     100%;
	-webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
	margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
	display: block;
}

audio,
canvas,
progress,
video {
	display: inline-block;
	vertical-align: baseline;
}

audio:not([controls]) {
	display: none;
	height: 0;
}

[hidden],
template {
	display: none;
}

a {
	background-color: transparent;
}

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

abbr[title] {
	border-bottom: 1px dotted;
}

b,
strong {
	font-weight: bold;
}

dfn {
	font-style: italic;
}

h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

mark {
	background: #ff0;
	color: #000;
}

small {
	font-size: 80%;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

img {
	border: 0;
}

svg:not(:root) {
	overflow: hidden;
}

figure {
	margin: 1em 40px;
}

hr {
	box-sizing: content-box;
	height: 0;
}

pre {
	overflow: auto;
}

code,
kbd,
pre,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
	color: inherit;
	font: inherit;
	margin: 0;
}

button {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}

button[disabled],
html input[disabled] {
	cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

input {
	line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

fieldset {
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
}

legend {
	border: 0;
	padding: 0;
}

textarea {
	overflow: auto;
}

optgroup {
	font-weight: bold;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

td,
th {
	padding: 0;
}

th {
	text-align: center;
    color: #812c7c;
    text-transform: uppercase;
    font-size: 26px;
    font-weight: 100;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
optgroup,
textarea {
	color: #1A1918;
	font-family: 'Open Sans Condensed', sans-serif;
	font-size: 20px;
	line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
	margin: 0 0 20px 0;
	font-weight: 100;
	color: #812C7C;
	text-transform: uppercase;
	line-height: 1.2;
	font-family: "league-gothic",sans-serif;
}

h1 {
	font-size: 50px;
}

h2 {
	font-size: 44px;
}

h3 {
	font-size: 40px;
}

h4 {
	font-size: 36px;
}

h5 {
	font-size: 32px;
}

h6 {
	font-size: 28px;
	text-transform: capitalize;
}

p {
	margin: 0 0 1.3em;
    line-height: 1.5;
}

.page-title {
	font-size: 60px;
	margin-bottom: 30px;
}

.larger-text p {
	font-size: 26px;
}

dfn,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", Courier, monospace;
	font-size: 15px;
	font-size: 0.9375rem;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code,
kbd,
tt,
var {
	font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
	font-size: 15px;
	font-size: 0.9375rem;
}

abbr,
acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark,
ins {
	background: #fff9c0;
	text-decoration: none;
}

big {
	font-size: 125%;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
	box-sizing: border-box;
}

*,
*:before,
*:after { /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
	box-sizing: inherit;
}

body {
	background: #fff; /* Fallback for when there is no custom background color defined. */
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
}

blockquote,
q {
	quotes: "" "";
}

hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul,
ol {
    margin: 0 0 1.5em 0em;
    padding-left: 20px;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: bold;
}

dd {
	margin: 0 1.5em 1.5em;
}

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

figure {
	margin: 1em 0; /* Extra wide images within figure tags don't overflow the content area. */
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: none;
    border-radius: 0;
    background: #1a1918;
    color: white;
    font-size: 25px;
    line-height: 1;
    padding: 0 30px;
    height: 50px !important;
    vertical-align: top;
    text-transform: uppercase;
    font-family: "league-gothic",sans-serif;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
}

button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
	outline: 0;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	color: #666;
	border: 1px solid #ccc;
	border-radius: 0px;
    padding: 10px 15px;
    height: 50px;
    font-size: 24px;
}

select {
	border: 1px solid #ccc;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	color: #111;
	outline: 0;
}

textarea {
	width: 100%;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
	color: #812C7C;
	text-decoration: none;
	-webkit-transition: All 0.5s ease;
    -moz-transition: All 0.5s ease;
    -o-transition: All 0.5s ease;
}

a:hover,
a:focus,
a:active {
	color: black;
}

a:focus {
	outline: 0;
}

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

a.button, a.tribe-events-read-more {
	display: inline-block;
	padding: 8px 20px;
	background: #812C7C;
	color: white;
	text-transform: uppercase;
	font-size: 24px;
	text-align: center;
    line-height: 1.1;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    font-family: "league-gothic",sans-serif;
}

a.button:before, .social a:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

a.button:hover:before, a.button:focus:before, a.button:active:before, .social a:hover:before {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

a.tribe-events-read-more {
	background: black;
}

/*--------------------------------------------------------------
## Custom Styles
--------------------------------------------------------------*/

.site-header {
	height: 100px;
}

.logo {
	text-align: center;
	padding-top: 5px;
}

.logo img {
	position: relative;
    z-index: 99;
    transition: All 0.5s ease;
    -webkit-transition: All 0.5s ease;
    -moz-transition: All 0.5s ease;
    -o-transition: All 0.5s ease;
}

.logo a:hover img {
    transform: scale(1.04);
}

.nav {
	text-align: right;
}

.purple-bar {
	background: rgba(129,44,124,0.90);
	box-shadow: 0 2px 10px 0 rgba(0,0,0,0.50);
	height: 50px;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 9;
}

.slider {
	position: relative;
	background-color: black;
	box-shadow: 0 5px 15px 5px rgba(0, 0, 0, 0.2);
}

.carousel-inner {
	overflow: visible;
}

.carousel-inner > .item {
	height: 540px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.internal-header {
	background-image: url(images/Slider.png);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	height: 280px;
	position: relative;
	margin-bottom: 40px;
	box-shadow: 0 5px 15px 5px rgba(0, 0, 0, 0.2);
}

.social, .nav {
	padding-top: 25px;
}

.social a {
	display: inline-block;
	line-height: 45px;
	width: 45px;
	text-align: center;
	color: white;
	background: #812C7C;
	font-size: 30px;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    margin-right: 3px;
}

.newsletter-signup {
	background: #812C7C;
	text-align: center;
	padding: 25px 0 35px;
}

.newsletter-signup h2 {
	font-size: 40px;
	color: white;
	text-transform: uppercase;
	margin-bottom: 15px;
	line-height: 1.2;
}

.mailing-list-form input[type="text"], .mailing-list-form input[type="email"] {
    border: 0;
    width: 250px;
    margin: 0 3px;
    font-family: "league-gothic",sans-serif;
}

.site-footer {
	padding: 45px 0 85px;
	background: #1A1918;
	color: white;
	text-align: center;
}

.site-footer .social a {
	margin-right: 3px;
}

.copyright {
	padding-top: 25px;
	font-size: 23px;
}

.copyright a, .copyright a:hover {
	color: white;
}

.copyright small {
	font-size: 19px;
}

.home-services {
	padding-top: 55px;
	padding-bottom: 30px;
}

.upcoming-events {
	background: #F0F0F0;
	padding-top: 35px;
	padding-bottom: 25px;
}

.upcoming-events a.button {
	font-size: 26px;
	padding: 13px 27px;
}

.slick-dots {
	margin: 0;
}

.upcomingevent {
	position: relative;
	height: 30vw;
    max-height: 300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
}

.upcomingevent a {
	display: block;
}

.event-info {
	position: absolute;
	right: 0;
	z-index: 99;
	bottom: 15px;
	color: white;
	font-size: 23px;
	text-transform: uppercase;
    max-width: 80%;
    width: 80%;
    text-align: right;
    line-height: 28px;
    font-family: "league-gothic",sans-serif;
}

.event-top {
	background: #812C7C;
	padding: 5px 10px;
}

.upcomingevent .book-btn {
    -webkit-transition: all 250ms cubic-bezier(0.25, 0.1, 0.25, 1);
    -moz-transition: all 250ms cubic-bezier(0.25, 0.1, 0.25, 1);
    -o-transition: all 250ms cubic-bezier(0.25, 0.1, 0.25, 1);
    transition: all 250ms cubic-bezier(0.25, 0.1, 0.25, 1);
    opacity: 1;
    height: 40px;
    padding: 5px 10px;
    font-weight: bold;
    font-size: 90%;
    background: #000;
    text-align: right;
    text-transform: uppercase;
    overflow: hidden;
}

.upcomingevent .book-btn {
    height: 0px;
    opacity: 0;
}

.upcomingevent:hover .book-btn {
    opacity: 1;
    height: 40px;
}

.upcomingevent .book-btn .fa {
    margin-left: 5px;
}

.block-fade {
    -webkit-transition: all 250ms cubic-bezier(0.25, 0.1, 0.25, 1);
    -moz-transition: all 250ms cubic-bezier(0.25, 0.1, 0.25, 1);
    -o-transition: all 250ms cubic-bezier(0.25, 0.1, 0.25, 1);
    transition: all 250ms cubic-bezier(0.25, 0.1, 0.25, 1);
    position: absolute;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0.5;
    background: -moz-linear-gradient(top, transparent 0%, transparent 50%, rgba(0, 0, 0, 0.48) 69%, rgba(0, 0, 0, 0.78) 81%);
    background: -webkit-linear-gradient(top, transparent 0%, transparent 50%, rgba(0, 0, 0, 0.48) 69%, rgba(0, 0, 0, 0.78) 81%);
    background: linear-gradient(to bottom, transparent 0%, transparent 50%, rgba(0, 0, 0, 0.48) 69%, rgba(0, 0, 0, 0.78) 81%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#c7000000',GradientType=0 );
}

.upcomingevent:hover .block-fade {
    -webkit-transition: all 250ms cubic-bezier(0.25, 0.1, 0.25, 1);
    -moz-transition: all 250ms cubic-bezier(0.25, 0.1, 0.25, 1);
    -o-transition: all 250ms cubic-bezier(0.25, 0.1, 0.25, 1);
    transition: all 250ms cubic-bezier(0.25, 0.1, 0.25, 1);
    opacity: 1;
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.57) 0%, rgba(0, 0, 0, 0.57) 50%, rgba(0, 0, 0, 0.52) 69%, rgba(0, 0, 0, 0.49) 81%);
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.57) 0%, rgba(0, 0, 0, 0.57) 50%, rgba(0, 0, 0, 0.52) 69%, rgba(0, 0, 0, 0.49) 81%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.57) 0%, rgba(0, 0, 0, 0.57) 50%, rgba(0, 0, 0, 0.52) 69%, rgba(0, 0, 0, 0.49) 81%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#91000000', endColorstr='#7d000000',GradientType=0 );
}

.services-text {
	padding: 40px 70px 0px 40px;
	position: relative;
}

.services-text h2 {
	font-size: 50px;
}

.services-text p {
	font-size: 23px;
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 25px !important;
    height: 5px !important;
    padding: 0 !important;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: 0;
    background: #dadada !important;
}

.slick-dots li button:focus, .slick-dots li button:hover, .slick-dots li.slick-active button {
	background: #812C7C !important;
}

.slick-dots li button:before {
	display: none !important;
}

.slider-text {
	background: rgba(0,0,0,0.65);
	text-align: center;
	color: white;
	font-size: 50px;
	text-transform: uppercase;
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 23px 0;
    line-height: 1.2;
    z-index: 99;
    font-family: "league-gothic",sans-serif;
}

.fadein {
	display: none;
}

.mm-navbar .mm-title {
	display: none;
}

.mm-listview>li>a, .mm-listview>li>span {
	padding: 20px 10px 20px 20px;
    font-size: 30px;
}

.news-home {
	padding-top: 65px;
	padding-bottom: 65px;
	padding-right: 30px;
	position: relative;
    overflow: hidden;
}

.news-home .col-md-5 {
	float: right;
}

.news-home:before {
	content: "";
	-webkit-filter: blur(5px);
	-moz-filter: blur(5px);
	-o-filter: blur(5px);
	-ms-filter: blur(5px);
	filter: blur(5px);
	background-size: cover;
	background-position: center;
	position: absolute;
    top: -2%;
    left: -2%;
    width: 104%;
    height: 104%;
}

.news-home h2, .news-home h3 {
	color: white;
}

.news-post {
	background: rgba(129,44,124,0.90);
	color: white;
	text-align: center;
	padding: 30px;
	transition: All 0.5s ease;
    -webkit-transition: All 0.5s ease;
    -moz-transition: All 0.5s ease;
    -o-transition: All 0.5s ease;
}

.news-post:hover {
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
	transform: scale(1.03);
}

.news-post h2 {
	font-size: 34px;
}

.news-post h3 {
	font-size: 28px;
    margin-bottom: 0;
}

.news-post a.button {
	background: black;
}

.news-post .excerpt {
	font-size: 17px;
	margin-bottom: 20px;
}

.news-post .postdate {
	font-size: 14px;
    font-family: "league-gothic",sans-serif;
}

.extrapadding {
	padding-top: 100px;
}

.stickyheader {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    -webkit-animation: slide-in-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    -moz-animation: slide-in-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: slide-in-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    background: white;
    border-bottom: 15px solid #812c7c;
}

.stickyheader .logo img {
	width: 150px;
}

.nf-field-label label {
    font-weight: 100 !important;
    margin: 0;
    padding: 0;
    font-size: 25px;
}

.nf-form-fields-required {
	display: none;
}

#ninja_forms_required_items, .nf-field-container {
	margin-bottom: 10px !important;
}

.wpb_gmaps_widget .wpb_wrapper {
	padding: 0 !important;
}

.blogpost {
	background: #f0f0f0;
	padding: 50px;
}

.blogpost:last-child, .blogpost div:last-child, .blogpost p:last-child {
	margin-bottom: 0 !important;
}

.blogright img {
	margin-bottom: 30px;
}

.nopadding {
	padding: 0;
}

.share {
	padding-left: 30px;
	margin-bottom: 30px;
}

.share h4 {
	margin-bottom: 10px;
}

.shareinner {
	padding: 50px;
	border: 3px solid #f0f0f0;
	text-align: center;
}

.tribe-events-list h2.tribe-events-page-title {
    font-size: 44px;
    font-weight: 100;
}

.tribe-bar-disabled #tribe-bar-form label {
    font-size: 15px;
    font-weight: 100;
}

.tribe-bar-disabled #tribe-bar-form .tribe-bar-filters input[type=text] {
	font-size: 16px;
}

.tribe-events-list-separator-month {
    font-weight: 100;
    font-size: 34px;
    margin: 1.25em auto 0.5em;
}

.events-archive .newsletter-signup, .post-template-default.single-post .newsletter-signup, body.blog .newsletter-signup {
	margin-top: 50px;
}

.tribe-events-loop .tribe-events-event-meta {
    font-size: 18px;
    font-weight: 100;
}

.tribe-events-list .type-tribe_events h2 {
    font-size: 34px;
}

.tribe-events-adv-list-widget .tribe-events-widget-link a, .tribe-events-back a, .tribe-events-list-widget .tribe-events-widget-link a, ul.tribe-events-sub-nav a {
    font-size: 18px;
    font-weight: 100;
}

.tribe-events-meta-group .tribe-events-single-section-title {
    font-size: 22px;
    font-weight: 100;
}

.single-tribe_events .tribe-events-event-meta {
    font-size: 18px;
    margin-bottom: 0;
}

#tribe-events .tribe-events-button, #tribe-events .tribe-events-button:hover, #tribe_events_filters_wrapper input[type=submit], .tribe-events-button, .tribe-events-button.tribe-active:hover, .tribe-events-button.tribe-inactive, .tribe-events-button:hover, .tribe-events-calendar td.tribe-events-present div[id*=tribe-events-daynum-], .tribe-events-calendar td.tribe-events-present div[id*=tribe-events-daynum-]>a {
    background-color: #1a1918;
}

#tribe-events .tribe-events-button, .tribe-events-button {
	font-size: 15px;
}

.tribe-events-schedule h2 {
    font-weight: 100;
    margin: 0;
    text-align: center;
    font-size: 28px;
}

.tribe-events-list .tribe-events-loop .tribe-event-featured {
    background: #812c7c;
}

#tribe-events-content table.tribe-events-calendar .type-tribe_events.tribe-event-featured {
    background: #812c7c;
}

#tribe-events-content .tribe-events-tooltip h4, #tribe_events_filters_wrapper .tribe_events_slider_val, .single-tribe_events a.tribe-events-gcal, .single-tribe_events a.tribe-events-ical {
    color: #812c7c;
}

.tribe-events-calendar thead th {
	font-size: 18px;
}

.single-tribe_events .tribe-events-single-event-title {
    font-size: 42px;
    text-align: center;
}

.post-date {
	text-align: center;
	font-size: 20px;
    margin: -20px 0 20px;
    font-weight: bold;
}

.featuredimg {

}

.blog-post {
	background: #f0f0f0;
	transition: All 0.5s ease;
    -webkit-transition: All 0.5s ease;
    -moz-transition: All 0.5s ease;
    -o-transition: All 0.5s ease;
}

.blog-post:hover {
	background: #f5f5f5;
    transform: scale(1.04);
}

.blog-post .excerpt {
	font-size: 17px;
}

.blog-inner {
	padding: 30px 30px 20px;
}

.blog-inner h4 {
	margin: 0;
}

.innerpostdate {
	margin-bottom: 15px;
	font-size: 15px;
    font-weight: bold;
}

.postnav {
	padding-top: 45px;
    font-size: 25px;
}

.news-post-container {
	margin-bottom: 25px;
	min-height: 90px;
}

.news-post-container:nth-child(3n+1) {
    clear: left;
}

.carousel-fade .carousel-inner .item {
  opacity: 0;
  transition-property: opacity;
}

.carousel-fade .carousel-inner .active {
  opacity: 1;
}

.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
  left: 0;
  opacity: 0;
  z-index: 1;
}

.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
  opacity: 1;
}

.carousel-fade .carousel-control {
  z-index: 2;
}

/*
WHAT IS NEW IN 3.3: "Added transforms to improve carousel performance in modern browsers."
now override the 3.3 new styles for modern browsers & apply opacity
*/
@media all and (transform-3d), (-webkit-transform-3d) {
    .carousel-fade .carousel-inner > .item.next,
    .carousel-fade .carousel-inner > .item.active.right {
      opacity: 0;
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
    }
    .carousel-fade .carousel-inner > .item.prev,
    .carousel-fade .carousel-inner > .item.active.left {
      opacity: 0;
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
    }
    .carousel-fade .carousel-inner > .item.next.left,
    .carousel-fade .carousel-inner > .item.prev.right,
    .carousel-fade .carousel-inner > .item.active {
      opacity: 1;
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
    }
}

.larger p {
	font-size: 24px;
}

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
.main-navigation {
	clear: both;
	display: block;
	float: left;
	width: 100%;
}

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

.main-navigation li {
	float: left;
	position: relative;
}

.main-navigation a {
	display: block;
	text-decoration: none;
}

.main-navigation ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	float: left;
	position: absolute;
	top: 100%;
	left: -999em;
	z-index: 99999;
}

.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}

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

.main-navigation ul ul li {

}

.main-navigation li:hover > a,
.main-navigation li.focus > a {
}

.main-navigation ul ul :hover > a,
.main-navigation ul ul .focus > a {
}

.main-navigation ul ul a:hover,
.main-navigation ul ul a.focus {
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
	left: auto;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
	left: 100%;
}

.main-navigation .current_page_item > a,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_ancestor > a,
.main-navigation .current-menu-ancestor > a {
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
	display: block;
}

@media screen and (min-width: 37.5em) {
	.menu-toggle {
		display: none;
	}
	.main-navigation ul {
		display: block;
	}
}

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
	margin: 0 0 1.5em;
	overflow: hidden;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	float: left;
	width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	float: right;
	text-align: right;
	width: 50%;
}

.prevnext {
    position: absolute;
    top: 0;
    right: 0;
    margin-right: 25px;
}

.prev-top, .next-top {
	display: inline-block;
    cursor: pointer;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: #000000;
    color: white;
    font-size: 18px;
}

.prev-top:hover , .next-top:hover {
	background: #812C7C;
}

.slick-slide, .slick-slide *{ outline: none !important; }

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
	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;
	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 1.5em;
}

/* Make sure select elements fit in widgets. */
.widget select {
	max-width: 100%;
}

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

.hentry {
	margin: 0 0 1.5em;
}

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

.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

/*--------------------------------------------------------------
## 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, /* Older / Newer Posts Navigation (always hidden) */
.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%;
	margin: 1%;
	transition: All 0.5s ease;
    -webkit-transition: All 0.5s ease;
    -moz-transition: All 0.5s ease;
    -o-transition: All 0.5s ease;
}

.gallery-item:hover {
	opacity: 0.8;
}

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

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

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

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

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

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

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

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

.gallery-caption {
	display: block;
}

@-webkit-keyframes slide-in-top{0%{-webkit-transform:translateY(-1000px);transform:translateY(-1000px);opacity:0}100%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}}@keyframes slide-in-top{0%{-webkit-transform:translateY(-1000px);transform:translateY(-1000px);opacity:0}100%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}}


@media (min-width: 768px) and (max-width: 991px) {

	body, button, input, select, optgroup, textarea {
		font-size: 17px;
	}

	.news-home .col-sm-8 {
		float: right;
	}

	.slider-text {
		font-size: 44px;
		padding: 18px 0;
	}

	.carousel-inner > .item {
    	height: 400px;
	}

	.logo img {
		width: 200px;
	}

	.purple-bar {
		height: 40px;
	}

	.services-text {
    	padding: 0px 20px 10px 0px;
	}

	.prevnext {
	    bottom: 0;
	    top: inherit;
	}

	.prev-top, .next-top {
	    width: 30px;
	    height: 30px;
	    line-height: 30px;
	    font-size: 15px;
	}

	.services-text h2 {
	    font-size: 30px;
	}

	.services-text p {
	    font-size: 16px;
	}

	a.button, a.tribe-events-read-more {
		font-size: 20px;
	}

	.event-info {
		font-size: 16px;
	}

	.upcoming-events a.button {
    	font-size: 20px;
	}

	.blogpost {
		padding: 30px;
	}

	.shareinner {
    	padding: 30px;
	}

	.page-title {
    	font-size: 46px;
	}

}

@media (max-width: 767px) {

	.site-header {
		height: 85px;
	}

	.internal-header {
		height: 180px;
	    margin-bottom: 30px;
	}

	.purple-bar {
		height: 30px;
	}

	.carousel-inner > .item {
    	height: 240px;
	}

	.slider-text {
	    font-size: 20px;
	    padding: 15px 15px;
	}

	.upcomingevent {
    	height: 200px;
    	margin-bottom: 15px !important;
	}

	.news-home {
		padding: 20px;
	}

	.stickyheader {
		height: 100px;
	}

	.newsletter-signup h2 {
    	font-size: 34px;
	}

	.mailing-list-form input[type="text"], .mailing-list-form input[type="email"] {
	    margin: 0 3px 10px;
	    width: 100%;
	}

	.mailing-list-form input[type="submit"] {
		width: 100%;
	}

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

	.blog-post {
	    margin-bottom: 15px;
	}


	.share {
	    padding-left: 15px;
	    margin-bottom: 0;
	    padding-right: 15px;
	}

	.prevnext {
	    bottom: 0;
	    top: inherit;
	}

	.prev-top, .next-top {
	    width: 30px;
	    height: 30px;
	    line-height: 30px;
	    font-size: 15px;
	}

	.services-text h2 {
    	font-size: 34px;
	}

	.services-text p {
	    font-size: 18px;
	}

	.services-text {
    	padding: 15px 30px 0px 30px;
	}

	.home-services {
    	padding-top: 25px;
	}

	.tribe-events-list .tribe-events-event-image img {
    	max-height: 100%;
	}

	.mm-listview>li>a, .mm-listview>li>span {
		font-size: 22px;
	}


}
