/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html {
	font-family: sans-serif;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

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;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
optgroup,
textarea {
	color: #404040;
	font-family: sans-serif;
	font-size: 16px;
	font-size: 1rem;
	line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
	clear: both;
}

p {
	margin-bottom: 1.5em;
}

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

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

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 https://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. */
}

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

ul, ol {
	margin: 0 0 1.5em 3em;
}

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%;
}


/*--------------------------------------------------------------
## 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 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 li:hover > ul,
.main-navigation ul ul li.focus > ul {
	left: 100%;
}

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

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

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

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

/* 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%;
}

/*--------------------------------------------------------------
# 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 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,
.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;
}

.wpcf7 form.sent .wpcf7-response-output {
	color: #ffffff;
}


/*============================================================================================================================
	
	
	
	flickity-1.1.css
	
	
	
============================================================================================================================*/

/*! Flickity v2.2.0
https://flickity.metafizzy.co
---------------------------------------------- */

.flickity-enabled {
  position: relative;
}

.flickity-enabled:focus { outline: none; }

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* draggable */

.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
          tap-highlight-color: transparent;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

/* ---- flickity-button ---- */

.flickity-button {
  position: absolute;
  background: hsla(0, 0%, 100%, 0.75);
  border: none;
  color: #333;
}

.flickity-button:hover {
  background: white;
  cursor: pointer;
}

.flickity-button:focus {
  outline: none;
  box-shadow: 0 0 0 5px #19F;
}

.flickity-button:active {
  opacity: 0.6;
}

.flickity-button:disabled {
  opacity: 0.3;
  cursor: auto;
  /* prevent disabled button from capturing pointer up event. #716 */
  pointer-events: none;
}

.flickity-button-icon {
  fill: currentColor;
}

/* ---- previous/next buttons ---- */

.flickity-prev-next-button {
  position:absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  /* vertically center */
  transform: translateY(-50%);/*-50%*/
}

.flickity-prev-next-button.previous {
	left: 10px;
}

.flickity-prev-next-button.next {
	right: 10px;
}

/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}
.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px;
}

.flickity-prev-next-button .flickity-button-icon {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}

/* ---- page dots ---- */

.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: 7px;/*-25px*/
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
}

.flickity-rtl .flickity-page-dots { direction: rtl; }

.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #ffffff;/*#333*/
  border-radius: 50%;
  opacity: 0.25;
  cursor: pointer;
}

.flickity-page-dots .dot.is-selected {
  opacity: 1;
}









/* =======================================
	
	
	ADDED ALL OF THE STYLES BELOW THIS
	
	
   ======================================= */
   




 
.gallery {
	 width: 100%;/*756px*/
	 /*height: 400px;*//* there was no height atribute on this before */
	 margin-bottom:0;
 }
 
.main-gallery {
	width: 100%;/*756px*/
	/*height: 400px;*//* there was no height atribute on this before */
}
   
.gallery-cell {
  width: 100%;/*756px*/
  /*height: 400px;*//*508px*/
  background:#FFFFFF;
}

.flickity-prev-next-button {
  /*width: 30px;
  height: 30px;*/
  border-radius: 0px;
  background: rgba(255,255,255,0.75);
}

.flickity-prev-next-button .arrow {
  fill: #b501ff;
}
.flickity-prev-next-button.no-svg {
  color: #b501ff;
}

#web-gals {
	width: 100%;/*960px*/
}

#web-gals .gallery-cell {
	width:100%;/*960px*/
	/*height:auto;*//*564px*/
}

/* position outside */
/*.flickity-prev-next-button.previous {
  left: -40px;
}
.flickity-prev-next-button.next {
  right: -40px;
}*/


/*============================================================================================================================
	
	
	
	style-1.5.3.css
	
	
	
============================================================================================================================*/


@media (max-width: 767px) {	
	body {
		top:120px;
	}
}

@media (min-width: 768px) {
	body {
		top:0;
	}
}

.navbar-nav {
	float:right;
}
  
.gonzo {
	opacity:1;
	transition: all 0.5s ease;
	background:url("../img/nav-logo.png");
	background-size: cover;
}

.hizo {
	opacity:1;
	transition: all 0.5s ease;
	background:url("../img/logo-scroll-alt.png");
	background-size: cover;
}

.well {
	min-height: 20px;
	padding: 19px;
	margin-bottom: 20px;
	background-color: transparent;
	border: none;
	border-radius: 4px;
	-webkit-box-shadow: inset 0 0px 0px rgba(0,0,0,0);
	box-shadow: inset 0 0px 0px rgba(0,0,0,0);
}

label {
	display: block;
	margin-bottom: 10px;
	font-family: "EB Garamond", serif;
	font-style: normal;
	font-weight: 700;
	color:#ffffff;
	font-size: 1.15em;
}

.getintouch-box {
	width: 100%;
	min-height:380px;
	padding: 20px;
	margin-top:20px;
	color: #000000;
	background-color: #fff;
	border: 1px solid #ccc;
	-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
	box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
	font-size:18px;
}

.getintouch-box h3 {
	font-family: "EB Garamond", serif;
	font-style: normal;
	font-weight: 700;
	font-size: 48px;
	line-height: 1;
	text-align: left;
	text-transform: uppercase;
	color: #000000;
}

@media screen and (max-width: 767px) {
	.getintouch-box h3 {
		text-align: center;
	}
}

.getintouch-box ul {
	margin:0;
	padding:0;
	list-style: none;
}

.getintouch-box ul li {
	padding:35px 0px;/*20px 0px*/
	border-bottom:1px solid #000000;
}

.getintouch-box ul li a {
	color:#000000;
}

/*.row {
  display: flex;
}

.col {
  flex: 1;
}*/

/* Deco lines */

.decolines {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	pointer-events: none;
}

.decoline {
	position: absolute;
	width: 1px;
	height: 100%;
	background: #ddd;
}

.decoline:first-child {
	right: 88em;
}

.decoline:nth-child(2) {
	right: 68em;
}

.decoline:nth-child(3) {
	right: 48em;
}

.decoline:nth-child(4) {
	right: 28em;
}

.decoline:nth-child(5) {
	right: 8em;
}


*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
/* -- Demo style ------------------------------- */
html,
body {
  position: relative;
  min-height: 100%;
  height: 100%;
  /*padding-top: 120px;*//* for bootstrap fixed nav I had it set to 50px but it needed to be larger after adding logo */
}
html {
  position: relative;
  overflow-x: hidden;
  /*margin: 16px;*/
  padding: 0;
  min-height: 100%;
  font-size: 62.5%;
}
body {
  margin: 0;
  padding: 0;
  font-family: "EB Garamond", serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.4rem;/*1.4rem*/
  line-height: 2rem;/*2rem*/
  letter-spacing: 0.01rem;
  color: #212121;
  /*background-color: #f5f5f5;*/
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  
}

.body-alt {
	padding-top: 120px;
	margin:0;
}

@media screen and (max-width: 767px) {
	.body-alt {
		padding-top: 0px;
		margin:0;
	}	
}

@media (min-width: 768px) and (max-width: 991px) {
	.body-alt {
		padding-top: 100px;
	}
}

.demo {
  margin: 20px auto;
  max-width: 960px;
}
.demo h1 {
  font-size: 2.4rem;
  line-height: 3.2rem;
  letter-spacing: 0;
  font-weight: 300;
  color: #212121;
  text-transform: inherit;
  margin-bottom: 1rem;
  text-align: center;
}
.demo h2 {
  font-size: 1.5rem;
  line-height: 2.8rem;
  letter-spacing: 0.01rem;
  font-weight: 400;
  color: #212121;
  text-align: center;
}
.shadow-z-1 {
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.12), 0 1px 2px 0 rgba(0, 0, 0, 0.24);
  -moz-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.12), 0 1px 2px 0 rgba(0, 0, 0, 0.24);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.12), 0 1px 2px 0 rgba(0, 0, 0, 0.24);
}
/* -- Material Design Table style -------------- */
.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 2rem;
  background-color: #fff;
}
.table > thead > tr,
.table > tbody > tr,
.table > tfoot > tr {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
  text-align: left;
  padding: 1.6rem;
  vertical-align: top;
  border-top: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.table > thead > tr > th {
  font-weight: 400;
  color: #757575;
  vertical-align: bottom;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.table > caption + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > th,
.table > thead:first-child > tr:first-child > th,
.table > caption + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > td,
.table > thead:first-child > tr:first-child > td {
  border-top: 0;
}
.table > tbody + tbody {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}
.table .table {
  background-color: #fff;
}
.table .no-border {
  border: 0;
}
.table-condensed > thead > tr > th,
.table-condensed > tbody > tr > th,
.table-condensed > tfoot > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > td {
  padding: 0.8rem;
}
.table-bordered {
  border: 0;
}
.table-bordered > thead > tr > th,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > td {
  border: 0;
  border-bottom: 1px solid #e0e0e0;
}
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
  border-bottom-width: 2px;
}
.table-striped > tbody > tr:nth-child(odd) > td,
.table-striped > tbody > tr:nth-child(odd) > th {
  background-color: #f5f5f5;
}
.table-hover > tbody > tr:hover > td,
.table-hover > tbody > tr:hover > th {
  background-color: rgba(0, 0, 0, 0.12);
}
@media screen and (max-width: 768px) {
  .table-responsive-vertical > .table {
    margin-bottom: 0;
    background-color: transparent;
  }
  .table-responsive-vertical > .table > thead,
  .table-responsive-vertical > .table > tfoot {
    display: none;
  }
  .table-responsive-vertical > .table > tbody {
    display: block;
  }
  .table-responsive-vertical > .table > tbody > tr {
    display: block;
    border: 1px solid #e0e0e0;
    border-radius: 2px;
    margin-bottom: 1.6rem;
  }
  .table-responsive-vertical > .table > tbody > tr > td {
    background-color: #fff;
    display: block;
    vertical-align: middle;
    text-align: left;/*right*/
  }
  .table-responsive-vertical > .table > tbody > tr > td[data-title]:before {
    content: attr(data-title);
    float: left;
    font-size: inherit;
    font-weight: 400;
    color: #757575;
  }
  .table-responsive-vertical.shadow-z-1 {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
  }
  .table-responsive-vertical.shadow-z-1 > .table > tbody > tr {
    border: none;
    -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.12), 0 1px 2px 0 rgba(0, 0, 0, 0.24);
    -moz-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.12), 0 1px 2px 0 rgba(0, 0, 0, 0.24);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.12), 0 1px 2px 0 rgba(0, 0, 0, 0.24);
  }
  .table-responsive-vertical > .table-bordered {
    border: 0;
  }
  .table-responsive-vertical > .table-bordered > tbody > tr > td {
    border: 0;
    border-bottom: 1px solid #e0e0e0;
  }
  .table-responsive-vertical > .table-bordered > tbody > tr > td:last-child {
    border-bottom: 0;
  }
  .table-responsive-vertical > .table-striped > tbody > tr > td,
  .table-responsive-vertical > .table-striped > tbody > tr:nth-child(odd) {
    background-color: #fff;
  }
  .table-responsive-vertical > .table-striped > tbody > tr > td:nth-child(odd) {
    background-color: #f5f5f5;
  }
  .table-responsive-vertical > .table-hover > tbody > tr:hover > td,
  .table-responsive-vertical > .table-hover > tbody > tr:hover {
    background-color: #fff;
  }
  .table-responsive-vertical > .table-hover > tbody > tr > td:hover {
    background-color: rgba(0, 0, 0, 0.12);
  }
}
.table-striped.table-mc-red > tbody > tr:nth-child(odd) > td,
.table-striped.table-mc-red > tbody > tr:nth-child(odd) > th {
  background-color: #fde0dc;
}
.table-hover.table-mc-red > tbody > tr:hover > td,
.table-hover.table-mc-red > tbody > tr:hover > th {
  background-color: #f9bdbb;
}
@media screen and (max-width: 767px) {
  .table-responsive-vertical .table-striped.table-mc-red > tbody > tr > td,
  .table-responsive-vertical .table-striped.table-mc-red > tbody > tr:nth-child(odd) {
    background-color: #fff;
  }
  .table-responsive-vertical .table-striped.table-mc-red > tbody > tr > td:nth-child(odd) {
    background-color: #fde0dc;
  }
  .table-responsive-vertical .table-hover.table-mc-red > tbody > tr:hover > td,
  .table-responsive-vertical .table-hover.table-mc-red > tbody > tr:hover {
    background-color: #fff;
  }
  .table-responsive-vertical .table-hover.table-mc-red > tbody > tr > td:hover {
    background-color: #f9bdbb;
  }
}
.table-striped.table-mc-pink > tbody > tr:nth-child(odd) > td,
.table-striped.table-mc-pink > tbody > tr:nth-child(odd) > th {
  background-color: #fce4ec;
}
.table-hover.table-mc-pink > tbody > tr:hover > td,
.table-hover.table-mc-pink > tbody > tr:hover > th {
  background-color: #f8bbd0;
}
@media screen and (max-width: 767px) {
  .table-responsive-vertical .table-striped.table-mc-pink > tbody > tr > td,
  .table-responsive-vertical .table-striped.table-mc-pink > tbody > tr:nth-child(odd) {
    background-color: #fff;
  }
  .table-responsive-vertical .table-striped.table-mc-pink > tbody > tr > td:nth-child(odd) {
    background-color: #fce4ec;
  }
  .table-responsive-vertical .table-hover.table-mc-pink > tbody > tr:hover > td,
  .table-responsive-vertical .table-hover.table-mc-pink > tbody > tr:hover {
    background-color: #fff;
  }
  .table-responsive-vertical .table-hover.table-mc-pink > tbody > tr > td:hover {
    background-color: #f8bbd0;
  }
}
.table-striped.table-mc-purple > tbody > tr:nth-child(odd) > td,
.table-striped.table-mc-purple > tbody > tr:nth-child(odd) > th {
  background-color: #f3e5f5;
}
.table-hover.table-mc-purple > tbody > tr:hover > td,
.table-hover.table-mc-purple > tbody > tr:hover > th {
  background-color: #e1bee7;
}
@media screen and (max-width: 767px) {
  .table-responsive-vertical .table-striped.table-mc-purple > tbody > tr > td,
  .table-responsive-vertical .table-striped.table-mc-purple > tbody > tr:nth-child(odd) {
    background-color: #fff;
  }
  .table-responsive-vertical .table-striped.table-mc-purple > tbody > tr > td:nth-child(odd) {
    background-color: #f3e5f5;
  }
  .table-responsive-vertical .table-hover.table-mc-purple > tbody > tr:hover > td,
  .table-responsive-vertical .table-hover.table-mc-purple > tbody > tr:hover {
    background-color: #fff;
  }
  .table-responsive-vertical .table-hover.table-mc-purple > tbody > tr > td:hover {
    background-color: #e1bee7;
  }
}
.table-striped.table-mc-deep-purple > tbody > tr:nth-child(odd) > td,
.table-striped.table-mc-deep-purple > tbody > tr:nth-child(odd) > th {
  background-color: #ede7f6;
}
.table-hover.table-mc-deep-purple > tbody > tr:hover > td,
.table-hover.table-mc-deep-purple > tbody > tr:hover > th {
  background-color: #d1c4e9;
}
@media screen and (max-width: 767px) {
  .table-responsive-vertical .table-striped.table-mc-deep-purple > tbody > tr > td,
  .table-responsive-vertical .table-striped.table-mc-deep-purple > tbody > tr:nth-child(odd) {
    background-color: #fff;
  }
  .table-responsive-vertical .table-striped.table-mc-deep-purple > tbody > tr > td:nth-child(odd) {
    background-color: #ede7f6;
  }
  .table-responsive-vertical .table-hover.table-mc-deep-purple > tbody > tr:hover > td,
  .table-responsive-vertical .table-hover.table-mc-deep-purple > tbody > tr:hover {
    background-color: #fff;
  }
  .table-responsive-vertical .table-hover.table-mc-deep-purple > tbody > tr > td:hover {
    background-color: #d1c4e9;
  }
}
.table-striped.table-mc-indigo > tbody > tr:nth-child(odd) > td,
.table-striped.table-mc-indigo > tbody > tr:nth-child(odd) > th {
  background-color: #e8eaf6;
}
.table-hover.table-mc-indigo > tbody > tr:hover > td,
.table-hover.table-mc-indigo > tbody > tr:hover > th {
  background-color: #c5cae9;
}
@media screen and (max-width: 767px) {
  .table-responsive-vertical .table-striped.table-mc-indigo > tbody > tr > td,
  .table-responsive-vertical .table-striped.table-mc-indigo > tbody > tr:nth-child(odd) {
    background-color: #fff;
  }
  .table-responsive-vertical .table-striped.table-mc-indigo > tbody > tr > td:nth-child(odd) {
    background-color: #e8eaf6;
  }
  .table-responsive-vertical .table-hover.table-mc-indigo > tbody > tr:hover > td,
  .table-responsive-vertical .table-hover.table-mc-indigo > tbody > tr:hover {
    background-color: #fff;
  }
  .table-responsive-vertical .table-hover.table-mc-indigo > tbody > tr > td:hover {
    background-color: #c5cae9;
  }
}
.table-striped.table-mc-blue > tbody > tr:nth-child(odd) > td,
.table-striped.table-mc-blue > tbody > tr:nth-child(odd) > th {
  background-color: #e7e9fd;
}
.table-hover.table-mc-blue > tbody > tr:hover > td,
.table-hover.table-mc-blue > tbody > tr:hover > th {
  background-color: #d0d9ff;
}
@media screen and (max-width: 767px) {
  .table-responsive-vertical .table-striped.table-mc-blue > tbody > tr > td,
  .table-responsive-vertical .table-striped.table-mc-blue > tbody > tr:nth-child(odd) {
    background-color: #fff;
  }
  .table-responsive-vertical .table-striped.table-mc-blue > tbody > tr > td:nth-child(odd) {
    background-color: #e7e9fd;
  }
  .table-responsive-vertical .table-hover.table-mc-blue > tbody > tr:hover > td,
  .table-responsive-vertical .table-hover.table-mc-blue > tbody > tr:hover {
    background-color: #fff;
  }
  .table-responsive-vertical .table-hover.table-mc-blue > tbody > tr > td:hover {
    background-color: #d0d9ff;
  }
}
.table-striped.table-mc-light-blue > tbody > tr:nth-child(odd) > td,
.table-striped.table-mc-light-blue > tbody > tr:nth-child(odd) > th {
  background-color: #e1f5fe;
}
.table-hover.table-mc-light-blue > tbody > tr:hover > td,
.table-hover.table-mc-light-blue > tbody > tr:hover > th {
  background-color: #b3e5fc;
}
@media screen and (max-width: 767px) {
  .table-responsive-vertical .table-striped.table-mc-light-blue > tbody > tr > td,
  .table-responsive-vertical .table-striped.table-mc-light-blue > tbody > tr:nth-child(odd) {
    background-color: #fff;
  }
  .table-responsive-vertical .table-striped.table-mc-light-blue > tbody > tr > td:nth-child(odd) {
    background-color: #e1f5fe;
  }
  .table-responsive-vertical .table-hover.table-mc-light-blue > tbody > tr:hover > td,
  .table-responsive-vertical .table-hover.table-mc-light-blue > tbody > tr:hover {
    background-color: #fff;
  }
  .table-responsive-vertical .table-hover.table-mc-light-blue > tbody > tr > td:hover {
    background-color: #b3e5fc;
  }
}
.table-striped.table-mc-cyan > tbody > tr:nth-child(odd) > td,
.table-striped.table-mc-cyan > tbody > tr:nth-child(odd) > th {
  background-color: #e0f7fa;
}
.table-hover.table-mc-cyan > tbody > tr:hover > td,
.table-hover.table-mc-cyan > tbody > tr:hover > th {
  background-color: #b2ebf2;
}
@media screen and (max-width: 767px) {
  .table-responsive-vertical .table-striped.table-mc-cyan > tbody > tr > td,
  .table-responsive-vertical .table-striped.table-mc-cyan > tbody > tr:nth-child(odd) {
    background-color: #fff;
  }
  .table-responsive-vertical .table-striped.table-mc-cyan > tbody > tr > td:nth-child(odd) {
    background-color: #e0f7fa;
  }
  .table-responsive-vertical .table-hover.table-mc-cyan > tbody > tr:hover > td,
  .table-responsive-vertical .table-hover.table-mc-cyan > tbody > tr:hover {
    background-color: #fff;
  }
  .table-responsive-vertical .table-hover.table-mc-cyan > tbody > tr > td:hover {
    background-color: #b2ebf2;
  }
}
.table-striped.table-mc-teal > tbody > tr:nth-child(odd) > td,
.table-striped.table-mc-teal > tbody > tr:nth-child(odd) > th {
  background-color: #e0f2f1;
}
.table-hover.table-mc-teal > tbody > tr:hover > td,
.table-hover.table-mc-teal > tbody > tr:hover > th {
  background-color: #b2dfdb;
}
@media screen and (max-width: 767px) {
  .table-responsive-vertical .table-striped.table-mc-teal > tbody > tr > td,
  .table-responsive-vertical .table-striped.table-mc-teal > tbody > tr:nth-child(odd) {
    background-color: #fff;
  }
  .table-responsive-vertical .table-striped.table-mc-teal > tbody > tr > td:nth-child(odd) {
    background-color: #e0f2f1;
  }
  .table-responsive-vertical .table-hover.table-mc-teal > tbody > tr:hover > td,
  .table-responsive-vertical .table-hover.table-mc-teal > tbody > tr:hover {
    background-color: #fff;
  }
  .table-responsive-vertical .table-hover.table-mc-teal > tbody > tr > td:hover {
    background-color: #b2dfdb;
  }
}
.table-striped.table-mc-green > tbody > tr:nth-child(odd) > td,
.table-striped.table-mc-green > tbody > tr:nth-child(odd) > th {
  background-color: #d0f8ce;
}
.table-hover.table-mc-green > tbody > tr:hover > td,
.table-hover.table-mc-green > tbody > tr:hover > th {
  background-color: #a3e9a4;
}
@media screen and (max-width: 767px) {
  .table-responsive-vertical .table-striped.table-mc-green > tbody > tr > td,
  .table-responsive-vertical .table-striped.table-mc-green > tbody > tr:nth-child(odd) {
    background-color: #fff;
  }
  .table-responsive-vertical .table-striped.table-mc-green > tbody > tr > td:nth-child(odd) {
    background-color: #d0f8ce;
  }
  .table-responsive-vertical .table-hover.table-mc-green > tbody > tr:hover > td,
  .table-responsive-vertical .table-hover.table-mc-green > tbody > tr:hover {
    background-color: #fff;
  }
  .table-responsive-vertical .table-hover.table-mc-green > tbody > tr > td:hover {
    background-color: #a3e9a4;
  }
}
.table-striped.table-mc-light-green > tbody > tr:nth-child(odd) > td,
.table-striped.table-mc-light-green > tbody > tr:nth-child(odd) > th {
  background-color: #f1f8e9;
}
.table-hover.table-mc-light-green > tbody > tr:hover > td,
.table-hover.table-mc-light-green > tbody > tr:hover > th {
  background-color: #dcedc8;
}
@media screen and (max-width: 767px) {
  .table-responsive-vertical .table-striped.table-mc-light-green > tbody > tr > td,
  .table-responsive-vertical .table-striped.table-mc-light-green > tbody > tr:nth-child(odd) {
    background-color: #fff;
  }
  .table-responsive-vertical .table-striped.table-mc-light-green > tbody > tr > td:nth-child(odd) {
    background-color: #f1f8e9;
  }
  .table-responsive-vertical .table-hover.table-mc-light-green > tbody > tr:hover > td,
  .table-responsive-vertical .table-hover.table-mc-light-green > tbody > tr:hover {
    background-color: #fff;
  }
  .table-responsive-vertical .table-hover.table-mc-light-green > tbody > tr > td:hover {
    background-color: #dcedc8;
  }
}
.table-striped.table-mc-lime > tbody > tr:nth-child(odd) > td,
.table-striped.table-mc-lime > tbody > tr:nth-child(odd) > th {
  background-color: #f9fbe7;
}
.table-hover.table-mc-lime > tbody > tr:hover > td,
.table-hover.table-mc-lime > tbody > tr:hover > th {
  background-color: #f0f4c3;
}
@media screen and (max-width: 767px) {
  .table-responsive-vertical .table-striped.table-mc-lime > tbody > tr > td,
  .table-responsive-vertical .table-striped.table-mc-lime > tbody > tr:nth-child(odd) {
    background-color: #fff;
  }
  .table-responsive-vertical .table-striped.table-mc-lime > tbody > tr > td:nth-child(odd) {
    background-color: #f9fbe7;
  }
  .table-responsive-vertical .table-hover.table-mc-lime > tbody > tr:hover > td,
  .table-responsive-vertical .table-hover.table-mc-lime > tbody > tr:hover {
    background-color: #fff;
  }
  .table-responsive-vertical .table-hover.table-mc-lime > tbody > tr > td:hover {
    background-color: #f0f4c3;
  }
}
.table-striped.table-mc-yellow > tbody > tr:nth-child(odd) > td,
.table-striped.table-mc-yellow > tbody > tr:nth-child(odd) > th {
  background-color: #fffde7;
}
.table-hover.table-mc-yellow > tbody > tr:hover > td,
.table-hover.table-mc-yellow > tbody > tr:hover > th {
  background-color: #fff9c4;
}
@media screen and (max-width: 767px) {
  .table-responsive-vertical .table-striped.table-mc-yellow > tbody > tr > td,
  .table-responsive-vertical .table-striped.table-mc-yellow > tbody > tr:nth-child(odd) {
    background-color: #fff;
  }
  .table-responsive-vertical .table-striped.table-mc-yellow > tbody > tr > td:nth-child(odd) {
    background-color: #fffde7;
  }
  .table-responsive-vertical .table-hover.table-mc-yellow > tbody > tr:hover > td,
  .table-responsive-vertical .table-hover.table-mc-yellow > tbody > tr:hover {
    background-color: #fff;
  }
  .table-responsive-vertical .table-hover.table-mc-yellow > tbody > tr > td:hover {
    background-color: #fff9c4;
  }
}
.table-striped.table-mc-amber > tbody > tr:nth-child(odd) > td,
.table-striped.table-mc-amber > tbody > tr:nth-child(odd) > th {
  background-color: #fff8e1;
}
.table-hover.table-mc-amber > tbody > tr:hover > td,
.table-hover.table-mc-amber > tbody > tr:hover > th {
  background-color: #ffecb3;
}
@media screen and (max-width: 767px) {
  .table-responsive-vertical .table-striped.table-mc-amber > tbody > tr > td,
  .table-responsive-vertical .table-striped.table-mc-amber > tbody > tr:nth-child(odd) {
    background-color: #fff;
  }
  .table-responsive-vertical .table-striped.table-mc-amber > tbody > tr > td:nth-child(odd) {
    background-color: #fff8e1;
  }
  .table-responsive-vertical .table-hover.table-mc-amber > tbody > tr:hover > td,
  .table-responsive-vertical .table-hover.table-mc-amber > tbody > tr:hover {
    background-color: #fff;
  }
  .table-responsive-vertical .table-hover.table-mc-amber > tbody > tr > td:hover {
    background-color: #ffecb3;
  }
}
.table-striped.table-mc-orange > tbody > tr:nth-child(odd) > td,
.table-striped.table-mc-orange > tbody > tr:nth-child(odd) > th {
  background-color: #fff3e0;
}
.table-hover.table-mc-orange > tbody > tr:hover > td,
.table-hover.table-mc-orange > tbody > tr:hover > th {
  background-color: #ffe0b2;
}
@media screen and (max-width: 767px) {
  .table-responsive-vertical .table-striped.table-mc-orange > tbody > tr > td,
  .table-responsive-vertical .table-striped.table-mc-orange > tbody > tr:nth-child(odd) {
    background-color: #fff;
  }
  .table-responsive-vertical .table-striped.table-mc-orange > tbody > tr > td:nth-child(odd) {
    background-color: #fff3e0;
  }
  .table-responsive-vertical .table-hover.table-mc-orange > tbody > tr:hover > td,
  .table-responsive-vertical .table-hover.table-mc-orange > tbody > tr:hover {
    background-color: #fff;
  }
  .table-responsive-vertical .table-hover.table-mc-orange > tbody > tr > td:hover {
    background-color: #ffe0b2;
  }
}
.table-striped.table-mc-deep-orange > tbody > tr:nth-child(odd) > td,
.table-striped.table-mc-deep-orange > tbody > tr:nth-child(odd) > th {
  background-color: #fbe9e7;
}
.table-hover.table-mc-deep-orange > tbody > tr:hover > td,
.table-hover.table-mc-deep-orange > tbody > tr:hover > th {
  background-color: #ffccbc;
}
@media screen and (max-width: 767px) {
  .table-responsive-vertical .table-striped.table-mc-deep-orange > tbody > tr > td,
  .table-responsive-vertical .table-striped.table-mc-deep-orange > tbody > tr:nth-child(odd) {
    background-color: #fff;
  }
  .table-responsive-vertical .table-striped.table-mc-deep-orange > tbody > tr > td:nth-child(odd) {
    background-color: #fbe9e7;
  }
  .table-responsive-vertical .table-hover.table-mc-deep-orange > tbody > tr:hover > td,
  .table-responsive-vertical .table-hover.table-mc-deep-orange > tbody > tr:hover {
    background-color: #fff;
  }
  .table-responsive-vertical .table-hover.table-mc-deep-orange > tbody > tr > td:hover {
    background-color: #ffccbc;
  }
}

.content-box {
	background:#ffffff;
	/*border:1px solid #eeeeee;
	-webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.12), 0 1px 2px 0 rgba(0, 0, 0, 0.24);
	-moz-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.12), 0 1px 2px 0 rgba(0, 0, 0, 0.24);
	box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.12), 0 1px 2px 0 rgba(0, 0, 0, 0.24);*/
}

.feature-boxes {
	margin-bottom:15px; /*2rem*/
	margin-top:15px; /*2rem*/
}

.feature-boxes ul {
	margin:0;
	padding:0;
}

.feature-boxes ul li {
	list-style-type:none;
	text-decoration:none;
	text-align:left;
}

@media (max-width: 767px) {
	.feature-boxes ul li {
		list-style-type:none;
		text-decoration:none;
		text-align:center;
	}
}

.feature-boxes h3 {
	/*font-size: 1.9rem;*/
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	line-height: 1.5;
}

.feature-boxes ul li a,
.feature-boxes ul li a:visited {
	color:#ffffff;
}

.feature-boxes ul li a:hover {
	color:#c12530;
}

.lazy-hidden, .lazy-loaded {
	background-color: transparent;
	transition: opacity .2s;
}

.img-fluid, .img-thumbnail {
	max-width: 100%;
	height: auto;
}

.btn.active, .btn:active {
	box-shadow: none;
	-webkit-box-shadow: none;
}

.btn-s-h {
	background-color:#eaba82;
	border-color:#d2a36c;
}

.navbar {
	min-height: 120px;
}

.navbar-b-e {
	background-color: rgba(0,0,0,0.0);
	border-color: transparent;/* this is that orange color #d1a470 */
	transition: background-color .6s, border-color .6s;
}

.navbar-b-e:hover {
	background-color: rgba(0,0,0,1);
	border-color: #ffffff;
}

.changeColor {
	background-color: rgba(0,0,0,1);
	border-color: #ffffff;
}

@media (max-width: 767px) {
	.navbar-b-e {
		background-color: rgba(0,0,0,0.9);
		border-color: #ffffff;/* this is that orange color #d1a470 */
	}
}

@media screen and (min-width: 1024px) {
	.be-header-top-gradient {
		height: 204px;
	}
}

.be-header-top-gradient {
	background-color: initial;
	background-image: url('../img/dark-gradient.png');
	background-repeat: repeat-x;
	background-size: auto 100%;
	height: 100px;
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 999;
	pointer-events: none;
}

.navbar-brand, .navbar>.container-fluid .navbar-brand {
	width: 148px;
	height: 89px;
	margin: 15px 15px 15px 0px;/*15px 15px 15px -15px*/
}

.footer-brand, .footer-brand img {
	height: 108px;
	max-height: 108px;
}

.navbar-header {
	/*position: absolute;*/
	top: 0;
	left: 0;
	padding: 0px 20px;
	height: 120px;
	overflow: hidden;
	z-index: 2;
	transition: all 200ms linear;
}

.navbar-brand {
	height: 120px;
}

.navbar-brand>img {
	max-height:89px;
}

.social-media-bar {
	margin: 0 auto;
	padding: 0px;
	list-style-type: none;
	text-align: center;
}

.social-media-bar li {
	display: inline-block;
	padding: 48px 8px;
}

.social-media-bar li a {
	padding-top: 47px;
	padding-bottom: 47px;
}

.social-media-icon {
	max-height:25px;
}

.social-media-icon>img {
	max-height:25px;
}

.navbar-btn {
	margin-top: 40px;
}

.join-now-bar {
	padding: 37px 8px;
	float:right;
}

.join-now-bar-alt {
	padding: 37px 8px;
	text-align: center;
}

.modal-footer .btn+.btn {
	margin-left: 0px;
}

.join-now {
	border-radius: 0px;
	/*margin-top: 38px;*/
	color: #FFFFFF;
	text-shadow: 0.5px 0.1px 2px rgba(0,0,0,0);
	background-color: #000000;
	border-color: #ffffff;
	transition: 0.3s;
}

.join-now:hover,
.join-now:visited,
.join-now:link,
.join-now:active,
.join-now:active:hover,
.join-now:focus {
	color: #FFFFFF;
	text-shadow: 0.5px 0.1px 2px rgba(0,0,0,0.4);
	background-color: #333333;
	border-color: #ffffff;
}

.modal-content {
	text-align: center;
}

.modal-title {
	font-weight: 700;
}

.modal-header img {
	padding-bottom:20px;
}

.grey-cta-bar:hover {
	text-decoration: none;
}

.grey-cta {
	border-radius: 0px;
	transition: 0.3s;
}

.grey-cta:hover {
	color: #333;
	background-color: #eeeeee;
	border-color: #ccc;
}

.caret {
	border-left: 4px dashed;
	border-top: 4px solid\9;
	border-top: 4px solid transparent;
	border-bottom: 4px solid transparent;
	border-right: 2px solid transparent;
}

.btn {
	padding: 12px 18px; /* 12px 12px */
	font-weight: 800;
}

.btn-primary,
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:link,
.btn-primary:visited,
.btn-primary:active,
.btn-primary:active:focus,
.btn-primary:active:hover {
	font-family: "EB Garamond", serif;
	font-style: normal;
	font-weight: 700;
	background-color: #ffffff;
	border-color: #681064;
	color:#681064;
	text-transform:uppercase;
}

.btn-primary:hover {
	background-color: #681064;
	border-color: #ffffff;
	color:#ffffff;
	transition: background-color .2s ease-in-out, border-color .1s ease-in-out;
}

.arrowbar {
	background-color: #874439;/* gold color #fda90f */
	width: 100%;
	height: 4px;
	position: relative;
	z-index: 3;
}

.arrowbar-alt {
	background-color: #874439;/* bright purple #b501ff */
	width: 100%;
	height: 4px;
	position: relative;
	z-index: 3;
	margin-bottom:20px;
	/*top:-30px;*/
}

.arrowbar-white {
	background-color: #ffffff;/* gold color #fda90f */
	width: 100%;
	height: 4px;
	position: relative;
	z-index: 3;
}

.arrowbar-space {
	background-color: #874439;/* purple pinkish #b501ff */
	width: 100%;
	height: 1px;
	position: relative;
	margin:0px 0px 20px 0px;
}

div.wpcf7-mail-sent-ok {
	border: 2px solid #874439;
}

.gallery-height {
	min-height: 245px;
}

.fancybox-progress {
	background:#b501ff;
}

.fancybox-thumbs__list a:before {
	border: 6px solid #b501ff;
}

.parallax-window {
    min-height: 550px;
    /*background: transparent;*/
    position: relative;
	width: 100%;
	overflow: hidden;
	background:rgba(0,0,0,0.5);
}

.parallax-caption {
	background-color: transparent;
	margin: 0 auto;
	padding: 0;
	margin-top: 15%;
	margin-bottom: 0%;
	/* border: 3px solid #b501ff; */
	text-shadow: 0 1px 2px rgba(0,0,0,.8);
	min-height: 550px;
}

.parallax-alt {
	background: linear-gradient(rgba(93,15,92,.25), rgba(93,15,92,.75));
}

.parallax-white {
	background: linear-gradient(rgba(255,255,255,.10), rgba(255,255,255,.25));
}

.parallax-blog {
	background: linear-gradient(rgba(255,255,255, 0), rgba(255,255,255, 0));
}

.hero {
	min-height: 100%;
}

.hero-caption {
	margin-top:15%;/*20%*/
	margin-bottom: 0%;/*20%*/
}

@media (min-width: 768px) and (max-width: 991px) {
	
	.parallax-caption {
		margin: 0 auto;
		padding:20px 40px;
		margin-top:14%;
	}
	
	.hero-caption {
		margin-top:50%;
	}

}

a .parallax-caption p {
	color: #b501ff;
}

.parallax-caption h1 {
	font-family: corner-store-jf, sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size:4em;/*6em*/
	color:#ffffff; /*s-hc blue #033a57*/
	text-align: center;
}

.parallax-caption p {
	font-family: "EB Garamond", serif;
	font-style: normal;
	font-weight: 400;
	font-size:1.75em;/*4em*/
	color:#ffffff;/* old blue #033a57 */
	margin:0 auto;
	padding:0;
	text-align:center;
}

.scroll-arrow {
display: block;
color:#ffffff;
}

.parallax-window .scroll-arrow {
position: absolute;
bottom: 24px;
left: 50%;
margin-left: -75px;
width: 150px;
z-index: 10;
height: 30px;
text-align: center;
padding: 0;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}

.parallax-window .scroll-arrow:before {
text-align: center;
-webkit-transform: rotate(90deg);
-moz-transform: rotate(90deg);
-ms-transform: rotate(90deg);
-o-transform: rotate(90deg);
transform: rotate(90deg);
cursor: pointer;

font-size: 32px;
width: 32px;
height: 32px;
line-height: 32px;

font-style: normal;
font-weight: normal;
-webkit-font-smoothing: antialiased;
text-align: center;
display: inline-block;
vertical-align: middle;
}


@media (max-width: 767px) {
	
	.parallax-caption {
		margin-top:15%;
		padding:10%;
	}
	
	.parallax-caption h1 {
		font-size:3.5em;
		color:#ffffff;
		text-align: center;
	}
}

.jumbotron .contact-home {
	font-family: corner-store-jf, sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size:4em;
	color:#ffffff;
	text-align: center;
}

.jumbotron .events-home {
	font-family: "EB Garamond", serif;
	font-style: normal;
	font-weight: 700;
	font-size: 3em;
	line-height: 1;
	font-weight: 700;
	padding-top:0px;
	text-align:center;
}

.jumbotron .about-se-wall {
	font-family: "EB Garamond", serif;
	font-style: normal;
	font-weight: 700;
	font-size: 4em;
	line-height: 1.3;
	padding-top:0px;
	text-align:center;
	text-transform:uppercase;
	color:#ffffff;
	text-shadow: 0 0 2px #fff, 0 0 0px #fff, 0 0 15px #fff, 0 0 20px #681064, 0 0 35px #681064, 0 0 40px #681064, 0 0 50px #681064, 0 0 75px #681064;
}

@media (min-width: 768px) and (max-width: 991px) {
	.jumbotron .about-se-wall {
		font-size: 3em;
	}
}

@media (max-width: 767px) {
	.jumbotron .about-se-wall {
		font-size: 45px;
		line-height: 50px;
		text-shadow: 0 0 0px #fff, 0 0 0px #fff, 0 0 0px #fff, 0 0 20px #681064, 0 0 35px #681064, 0 0 40px #681064, 0 0 0px #681064, 0 0 0px #681064;
	}
}

.secondary-nav {
	font-family: "EB Garamond", serif;
	font-style: normal;
	font-weight: 700;
	margin: 0 auto;
	padding:0;
	overflow: auto;
	text-align:center;
	font-size:1.15em;
	text-transform: uppercase;
}

.secondary-nav li {
	display:inline-block;
	text-decoration: none;
}

.secondary-nav li a {
	position: relative;
	display: block;
	padding: 10px 15px;
}

.red-neon {
  color: #fff;
	  /*-webkit-animation: neon1 1.5s ease-in-out infinite alternate;
  -moz-animation: neon1 1.5s ease-in-out infinite alternate;
  animation: neon1 1.5s ease-in-out infinite alternate;*/
  text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff, 0 0 40px #FF1177, 0 0 70px #FF1177, 0 0 80px #FF1177, 0 0 100px #FF1177, 0 0 150px #FF1177;
}

.red-neon-404 {
  color: #fff;
  -webkit-animation: neon1 1.5s ease-in-out infinite alternate;
  -moz-animation: neon1 1.5s ease-in-out infinite alternate;
  animation: neon1 1.5s ease-in-out infinite alternate;
  text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff, 0 0 40px #FF1177, 0 0 70px #FF1177, 0 0 80px #FF1177, 0 0 100px #FF1177, 0 0 150px #FF1177;
}


/*glow for webkit*/

@-webkit-keyframes neon1 {
  from {
    text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff, 0 0 40px #FF1177, 0 0 70px #FF1177, 0 0 80px #FF1177, 0 0 100px #FF1177, 0 0 150px #FF1177;
  }
  to {
    text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff, 0 0 20px #FF1177, 0 0 35px #FF1177, 0 0 40px #FF1177, 0 0 50px #FF1177, 0 0 75px #FF1177;
  }
}

/*glow for mozilla*/

@-moz-keyframes neon1 {
  from {
    text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff, 0 0 40px #FF1177, 0 0 70px #FF1177, 0 0 80px #FF1177, 0 0 100px #FF1177, 0 0 150px #FF1177;
  }
  to {
    text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff, 0 0 20px #FF1177, 0 0 35px #FF1177, 0 0 40px #FF1177, 0 0 50px #FF1177, 0 0 75px #FF1177;
  }
}

/*glow*/

@keyframes neon1 {
  from {
    text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff, 0 0 40px #FF1177, 0 0 70px #FF1177, 0 0 80px #FF1177, 0 0 100px #FF1177, 0 0 150px #FF1177;
  }
  to {
    text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff, 0 0 20px #FF1177, 0 0 35px #FF1177, 0 0 40px #FF1177, 0 0 50px #FF1177, 0 0 75px #FF1177;
  }
}

.centered-image {
	margin:0 auto;
	padding:0;
}







 

@media (max-width: 767px) {
	.arrowbar-white {
		display: none;
	}
	
	.input-group {
		padding-bottom:20px;
	}
}

.closed-frame {
	top: -30px;
	position:relative;
	z-index: -1;
	border-bottom:1px solid #000;
}

.centered-container {
	margin:0 auto;
	padding:0;
	text-align: center;
	margin-bottom:40px;
}

.blog-title-background {
	background-image:url('../img/globe-blog.png');
	background-repeat: no-repeat;
	background-position: center center;/*center center*/
	text-align: center;
	min-height:170px;
	margin:0;
}

/*DELETE THIS STYLE WHEN THE BLOG COMES IN */
.blog-title-background h1 {
	font-size:2em;
	padding-top:45px;
}

@media (max-width: 767px) {
	.blog-title-background {
		margin:20px 0px;/*50px 0px*/
	}
	
	.blog-title-background h1 {
		padding-top:45px;
	}
}

.home-blog-thumbnail img {
	width:100%;
	margin-bottom:10px;
}

.background-black {
	background-color: #000000;
}

.background-purple {
	background-color: #874439;
}

.background-grey {
	background-color: #eeeeee;
}

.background-white {
	background-color: #ffffff;
}

.background-white-for-small {
	background-color: #ffffff;
}

.cream {
	color:#faf3d3;
}

.margin-adjustment {
	margin-top: 125px;
}

.margin-adjustment-tighter {
	margin-top: 0px;
}

@media (min-width: 768px) and (max-width: 991px) {
	.margin-adjustment-tighter {
		margin-top: 25px;
	}
}

@media (max-width: 656px) and (min-width: 0) {

	.margin-adjustment-tighter {
		margin-top: -35px;
	}

}



@media (max-width: 1200px) {
    .navbar-header {
        float: none;
    }
    .navbar-left,.navbar-right {
        float: none !important;
    }
    .navbar-toggle {
        display: block;
    }
    .navbar-collapse {
        border-top: 1px solid transparent;
        box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
    }
    .navbar-fixed-top {
        top: 0;
        border-width: 0 0 1px;
    }
    .navbar-collapse.collapse {
        display: none!important;
    }
    .navbar-nav {
        float: none!important;
        margin-top: 7.5px;
    }
    .navbar-nav>li {
        float: none;
    }
    .navbar-nav>li>a {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .collapse.in{
        display:block !important;
    }
}

.navbar-fixed-bottom .navbar-collapse,
.navbar-fixed-top .navbar-collapse {
	max-height:450px; /*340px*/
}

@media (max-width: 767px) {
	.navbar-brand {
		padding: 15px 0px;
	}
}

.navbar-toggle {
	/*background-color:#ffffff;*/
	margin-top: 40px;/*45px*/
	margin-bottom: 35px;
}

.navbar-b-e .navbar-toggle .icon-bar {
    background-color: rgba(0,0,0,0.7);
}

.navbar-b-e a {
	color: #ffffff;
	font-weight:700;
	text-transform:uppercase;
	text-decoration: none;
	font-size:1.15em;
}

.navbar-nav>.active>a {
	/*color:#d1a470;*/
	background-color: transparent;
	/*border-bottom: 5px solid #b501ff;*/
	opacity: 1;
}

.navBorderBottom {
	border-bottom: 5px solid #681064;
	transition: border-bottom .4s;
}

.dropdown-menu>li>.active>a {
	/*color:#d1a470;*/
	background-color: transparent;
	border-bottom: 5px solid #b501ff;
}


/* SPINNER BOUNCE */

.spinner {
  width: 40px;
  height: 40px;

  position: relative;
  /*margin: 100px auto;*/
}



.modal-content {
	background-color: #f5f5f5;
	border: 1px solid #e3e3e3;
}

@media (min-width: 768px) {
	.navbar-nav>li>a {
		padding-top: 52px;/*52px*/
		padding-bottom: 43px;/*43px*/
		text-shadow: 0.5px 0.1px 2px rgba(0,0,0,0.2);
		opacity: .7;
	}
	
	.background-white-for-small {
		background-color: transparent;
	}
}

@media (max-width: 1200px) {
	.navbar-nav>li>a {
		padding-top: 20px;
		padding-bottom: 20px;
	}
}

.nav>li>a:focus,
.nav>li>a:hover {
	/*text-decoration:underline;*/
	background-color:transparent;
	border-bottom: 5px solid #FFFFFF;
	transition: opacity .1s ease-in-out, border-bottom .2s ease-in-out;
	opacity: 1;
}

.nav .open>a,
.nav .open>a:focus,
.nav .open>a:hover {
	background-color:#ffffff;
	color:#033a57;
}

@media (max-width: 1200px) {
	.nav>li>a:focus, .nav>li>a:hover {
		border-bottom: 5px solid #FFFFFF; /*0px*/
		
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.nav>li>a:focus, .nav>li>a:hover {
		border-bottom: 5px solid #FFFFFF;/*border-bottom: 0px;*/
	}
}

@media (max-width: 767px) {
	.nav>li>a:focus, .nav>li>a:hover {
		border-bottom: 2px solid #FFFFFF;/*border-bottom: 0px;*/
		padding-bottom:20px;
	}
}


@media (max-width: 767px) {
	.navbar-nav .open .dropdown-menu {
		background-color: #ffffff;
	}
}

.navbar-toggle {
	border-radius: 0px;/*1px*/
}









/* Icon 4 base */

.nav-icon4 {
  width: 40px;
  height: 40px;
  position: relative;
  /*margin: 50px auto;*/
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}

.nav-icon4 span {
  display: block;
  position: absolute;
  height: 3px;
  width: 80%;
  background: #ffffff;
  border-radius: 6px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

/* Icon 4 */

.nav-icon4 span:nth-child(1) {
  top: 0px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

.nav-icon4 span:nth-child(2) {
  top: 8px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

.nav-icon4 span:nth-child(3) {
  top: 16px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

.nav-icon4.open span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 1px;
  left: 0px;
  background: #ffffff;
}

.nav-icon4.open span:nth-child(2) {
  width: 0%;
  opacity: 0;
  background: #ffffff;
}

.nav-icon4.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 24px;
  left: 0px;
  background: #ffffff;
}













.jumbotron {
	/*background-image:url('../img/world-background.jpg');*/
	background-size:cover;
	margin:0;
	padding:100px;/* was 0 */
	background-color:rgba(0,0,0)0.8;
	background-color:#ffffff;
	/* min-height:355px; */
	min-height:655px;/* 320px */
}

@media (min-width: 768px) and (max-width: 991px) {
	.jumbotron {
	padding:0px;
	background-color: #ffffff;
}
}

.alt-padding {
	padding:10px;
}

@media (max-width: 767px) {
	.jumbotron {
		padding:20px;
	}
}

.jumbotron h1 {
	text-align: center;
}

.single-image-bleed {
	margin:0 auto;
	padding:0;
	max-width:475px;
	/*width:275px;
	height:275px;*/
	position:relative;
	top:-125px;/*-50px*/
	z-index: 100;
	
	margin: 0 auto;
	padding: 0;
	max-width: 475px;
	position: relative;
	top: -125px;
	z-index: 1000;
	margin-bottom: -270px;
}

@media (max-width: 767px) {
	.single-image-bleed {
		max-width:250px;
		top:-75px;
		margin-bottom: -218px;
	}	
}

.circle-outline {
	border: 6px solid #fff;
}

.carousel-inner>.item>a>img,
.carousel-inner>.item>img,
.img-responsive,
.thumbnail a>img,
.thumbnail>img {
	width:100%;
}

.content-body {
	/*background-color: #FFF;*/
	max-width: 992px;
	/*padding: 50px 0;*/
	margin: 0 auto;
	padding-top: 50px;
	padding-bottom: 50px;
}

@media (max-width: 767px) {
	.content-body {
		padding: 15px;
	/*padding-right: 15px;
	padding-left: 15px;*/
	margin-right: auto;
	margin-left: auto;
	}
}

.content-body-alt {
	max-width: 992px;
	min-height:600px;
	/*padding: 0;
	margin: 0 auto;*/
	margin: 0 auto;
	margin-bottom: 0px;/*-30px*/
}

@media (min-width: 768px) {
	.content-body-alt {
		margin: 0 auto;
		margin-bottom: 0px;
	}
}

@media (max-width: 767px) {
	.content-body-alt {
		padding: 15px;
		margin-right: auto;
		margin-left: auto;
		margin: 0 auto;
		margin-bottom: 0px;
	}
}

@media (min-width: 992px) {
	.content-body-alt {
		margin-bottom: 0px;/*-30px*/
	}
}

footer {
	margin:0 auto;
	padding:0;
	overflow:auto;
	background-color: #000000;/*#033a57*/
	color:#ffffff;
	
	position: relative;
	/*padding: 70px 50px;*/
	/*border-top: 4px solid #ffffff;*/
}

@media (max-width: 767px) {
	footer {
		padding: 0px 0px;
	}
}

footer a {
	color:#ffffff;
}

footer a:hover {
	color:#ffffff;
}

/*====================================
	
	 		form elements 	 
	 
====================================*/

.checkbox label, .radio label {
	margin-bottom:20px;
}

.radio-inline+.radio-inline {
    margin-left: 0;
}

.radio-inline {
    margin-right: 10px;
}

.checkbox-inline+.checkbox-inline {
    margin-left: 0;
}

.checkbox-inline {
    margin-right: 10px;
}


/*====================================
	
	 anchor link underline animation 	 
	 
====================================*/
	
h1 > a {
  position: relative;
  color: #000;
  text-decoration: none;
}

h1 > a:hover {
  color: #000;
}

h1 > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #000;
  visibility: hidden;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

h1 > a:hover:before {
  visibility: visible;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.dropdown-menu>li>a {
	text-transform:none;
}

/*.nowrap {
  white-space: nowrap;
  word-break: keep-all;
}*/


.news-sidebar ul {
	margin:0;
	padding:0;
	overflow:auto;
}

.news-sidebar ul li {
	margin:6px 0px;
	padding:6px 0px;
}

.news-sidebar ul li a {
    color:#000000;
}

.news-sidebar ul li a:hover,
.news-sidebar ul li a:visited {
	color:#681064;
}


/*====================================
	
		custom carousal controls 	 
	 
====================================*/

.carousel-inner {
	background:#000000;
}

.carousel-caption {
	bottom:40%;
	background-color:transparent;	/*rgba(255,255,255,0.9)*/
	/*width: 300px;
	height: 300px;
	border-radius: 50%;*/
	margin: 0 auto;
	/*border: 3px solid #b501ff;*/
	padding:0px;
	text-shadow: 0 1px 2px rgba(0,0,0,.8);
}

a carousel-caption p {
	color: #b501ff;
}

a:focus, a:hover {
	/*color: #000000;*/
	text-decoration:none;
}

.carousel-caption h1 {
	font-family: corner-store-jf, sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size:4em;/*6em*/
	color:#ffffff;
	margin-top:25%;
}

.carousel-caption p {
	font-family: "EB Garamond", serif;
	font-style: normal;
	font-weight: 400;
	font-size:1.75em;/*4em*/
	color:#ffffff;/* old blue #033a57 */
	margin-top:20px;
}

.carousel-inner>.item>a>img,
.carousel-inner>.item>img {
	opacity:.75;
}

hr {
	margin-top: 20px;
	margin-bottom: 20px;
	border: 0;
	border-top: 3px solid #b501ff; /* 033a57 */
	width: 70%;
}

@media (max-width: 767px) {
	
	.carousel-caption h1 {
		font-size:3em;
		margin-top:0%;
		line-height:1;
	}
	
	.carousel-caption h3 {
		font-size:1.15em;
	}
	
	.carousel-caption p {
		font-size:1.15em;
	}
	
	.carousel-caption {
		bottom: 0;
		top: 20px;/*40px*/
	}

}

figure.default-image-shell {
	position: relative;
	float: left;
	overflow: hidden;
	margin: 10px 0%;
	/*min-width: 320px;
	max-width: 480px;
	max-height: 360px;*/
	width: 100%;
	background: transparent;
	text-align: center;
	cursor: pointer;
}

figure.default-image-shell img {
	opacity: 1;
}


/*====================================
	
		image hover effect: sarah 	 
	 
====================================*/

/* Common style */
figure {
	position: relative;
	float: left;
	overflow: hidden;
	margin: 10px 1%;
	/*min-width: 320px;
	max-width: 480px;
	max-height: 360px;*/
	width: 48%;
	background: #ffffff;
	text-align: center;
	/*cursor: pointer;*/
}

figure img {
	position: relative;
	display: block;
	min-height: 100%;
	max-width: 100%;
	opacity: 1;/*0.5*/
	margin:0 auto;
}

figure figcaption {
	padding: 2em;
	font-size: 1.25em;
	color: #fff;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

figure figcaption h2 {
	text-transform: uppercase;
	font-size: 1.25em;
	text-shadow: 0.5px 0.1px 2px rgba(0,0,0,0.2);
}

figure figcaption p {
	font-size: 1em;
}

figure figcaption p a.btn {
	font-size: 1em;
	color: #ffffff;
}

figure figcaption::before,
figure figcaption::after {
	pointer-events: none;
}

figure figcaption,
figure figcaption > a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* Anchor will cover the whole item by default */
/* For some effects it will show as a button */
figure figcaption > a {
	z-index: 1000;
	text-indent: 200%;
	white-space: nowrap;
	font-size: 0;
	opacity: 0;
}

figure h2 {
	word-spacing: -0.15em;
	font-weight: 300;
}

figure h2 span {
	font-weight: 700;
}

figure h2,
figure p {
	margin: 0;
}

figure p {
	letter-spacing: 1px;
	font-size: 68.5%;
}

figure.effect-sarah {
	background: #333333;/* s-h blue color #033a57 */
border: 1px solid rgba(255, 255, 255, 0.3);
box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.3);
box-sizing: border-box;
transition: border .2s !important;
}

figure.effect-sarah:hover {
	border: 1px solid rgba(255, 255, 255, 0.5);
}

figure.effect-sarah img {
	/*max-width: none;*/
	width: -webkit-calc(100% + 20px);
	width: calc(100% + 20px);
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: translate3d(0px,0,0);/*-10px,0,0*/
	transform: translate3d(0px,0,0);/*-10px,0,0*/
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

figure.effect-sarah:hover img {
	opacity: 0.4;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

figure.effect-sarah figcaption {
	text-align: left;
	text-shadow: 1px 1px 4px #000000;
}

figure.effect-sarah h2 {
	position: relative;
	overflow: hidden;
	padding: 0.5em 0;
}

figure.effect-sarah h2::after {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;/*1px*/
	background: #fff;
	content: '';
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
	-webkit-transform: translate3d(-100%,0,0);
	transform: translate3d(-100%,0,0);
}

figure.effect-sarah:hover h2::after {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

@media (max-width: 767px) {
	figure.effect-sarah h2::after {
		-webkit-transform: translate3d(0,0,0);
		transform: translate3d(0,0,0);
	}
}

figure.effect-sarah p {
	padding: 1em 0;
	opacity: 1;
	/*-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: translate3d(100%,0,0);
	transform: translate3d(100%,0,0);*/
}

/*figure.effect-sarah:hover p {
	opacity: 1;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}*/


/*====================================
	
		image hover effect: layla	 
	 
====================================*/

figcaption {
	font-family: "EB Garamond", serif;
	font-style: normal;
	font-weight: 700;
	margin-top: 0px;
	text-align: left;
	font-size: 1.25em;
	line-height: 2em;
	color:#000000;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

@media (min-width: 768px) and (max-width: 991px) {
	figcaption {
		font-size: 1em;
		line-height: 2em;
	}
}

figure.effect-layla {
	background: #000000;/* #333333 */
/*border: 1px solid rgba(0, 0, 0, 0.3);
box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.3);
box-sizing: border-box;
transition: border .2s !important;*/
}

figure.effect-layla:hover {
	border: 1px solid rgba(181, 1, 255, 0.5);
}

figure.effect-layla img {
	width: -webkit-calc(100% + 20px);
	width: calc(100% + 20px);
}

figure.effect-layla figcaption {
	padding: 1em;
	margin-top:0px;
	text-shadow: 1px 1px 4px #000000;
}

figure.effect-layla figcaption::before,
figure.effect-layla figcaption::after {
	position: absolute;
	content: '';
	opacity: 0;
}

figure.effect-layla figcaption::before {
	top: 10px;
	right: 10px;/*20px*/
	bottom: 10px;
	left: 10px;/*20px*/
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
	-webkit-transform: scale(0,1);
	transform: scale(0,1);
	-webkit-transform-origin: 0 100%;
	transform-origin: 0 100%;
}

figure.effect-layla figcaption::after {
	top: 10px;/*20px*/
	right: 10px;
	bottom: 10px;/*20px*/
	left: 10px;
	border-right: 1px solid #fff;
	border-left: 1px solid #fff;
	-webkit-transform: scale(1,0);
	transform: scale(1,0);
	-webkit-transform-origin: 0 0;
	transform-origin: 0 0;
}

figure.effect-layla h2 {
	padding-top: 26%;
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
}

figure.effect-layla p {
	padding: 0.5em 2em;
	text-transform: none;
	opacity: 0;
	-webkit-transform: translate3d(0,-10px,0);
	transform: translate3d(0,-10px,0);
}

figure.effect-layla img {
	-webkit-transform: translate3d(0,0,0);/*0,30px,0*/
	transform: translate3d(0,0,0);/*0,30px,0*/
}

figure.effect-layla h2 {
	-webkit-transform: translate3d(0,30px,0);
	transform: translate3d(0,30px,0);
}

figure.effect-layla h2 {
	-webkit-transform: translate3d(0,0,0);/*0,-50px,0*/
	transform: translate3d(0,0,0);/*0,-50px,0*/
}

@media (max-width: 767px) {
	figure.effect-layla h2 {
		-webkit-transform: translate3d(0,30px,0);
		transform: translate3d(0,30px,0);
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	figure.effect-layla h2 {
		-webkit-transform: translate3d(0,0,0);
		transform: translate3d(0,0,0);
	}
}

figure.effect-layla img,
figure.effect-layla figcaption::before,
figure.effect-layla figcaption::after,
figure.effect-layla p {
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
}

figure.effect-layla:hover img {
	opacity: 0.8;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

figure.effect-layla:hover figcaption::before,
figure.effect-layla:hover figcaption::after {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}

figure.effect-layla:hover h2,
figure.effect-layla:hover p {
	opacity: 1;
	-webkit-transform: translate3d(0,60px,0);
	transform: translate3d(0,60px,0);
}

figure.effect-layla:hover figcaption::after,
figure.effect-layla:hover h2,
figure.effect-layla:hover p,
figure.effect-layla:hover img {
	-webkit-transition-delay: 0.15s;
	transition-delay: 0.15s;
}

figure.effect-layla figcaption h2 {
	text-transform: uppercase;
	font-size: 1em;
	text-shadow: 1px 1px 2px #ffffff;/*0.5px 0.1px 2px rgba(0,0,0,0.2)*/
	color:#000000;/*#b501ff*/
}

@media (max-width: 767px) {
	figure.effect-layla figcaption h2 {
		font-size: .75em;
	}	
}

@media (min-width: 768px) and (max-width: 991px) {	
	figure.effect-layla figcaption h2 {
		font-size: .75em;
	}
}

figure.effect-layla h2 {
	word-spacing: -0.15em;
	font-weight: 300;
}

figure.effect-layla h2 span {
	font-weight: 700;
}

figure.effect-layla h2 {
	margin: 0;
}



figure {
	display: inline-block;
	float: none;
	margin: 10px auto;
	margin-top:0px;
	margin-bottom:0px;
	width: 100%;
}

.copyright {
	text-align:center;
	font-size: 1.6rem;
	color:#ffffff;
}

@media (max-width: 767px) {
	.copyright {
		text-align:center;
		font-size: 1.6rem;
	}	
}



/* ==================================================
	
	
	BELOW ARE ALL THE QUERIES FOR THE NAV BAR ON TABLET
	
	
===================================================== */

@media (min-width: 768px) and (max-width: 991px) {
	
.navbar {
	min-height: 100px;
}

.nav>li>a {
	padding: 10px 5px;
}

.navbar-brand>img {
	max-height: 70px;/*89px*/
}

.navbar-header {
	height: 120px;
}

.navbar-brand {
	height: 93px;
}

.navbar-nav>li>a {
	padding-top: 20px;/*39px*/
	padding-bottom: 20px;/*39px*/
}

.navbar-toggle {
	margin-top: 45px;
}

.searchbox-header {
	padding: 2.5em 2.75em 2em 1.5em;
}

.btn--search-close {
	right: 0.75em;
}

}


/*.dropdown-menu {
	font-size:1em;
}*/


.subhead-2 > a.active {
	color: #23527c;
}

.space-above {
	padding-top:20px;
}

.space-below {
	padding-bottom:20px;
}

.space-below-alt {
	padding-bottom:50px;
}

.image-padding {
	padding: 20px 0;
}






.hr {
    clear: both;
    display: block;
    font-size: 0;
    height: 24px;
    margin: 20px 0;
    overflow: hidden;
    padding: 2px 0;
    position: relative;
    text-align: center;
    width: 100%;
}

.img-circle {
	margin: 0 auto;
}









/*========================
	
	Block Quote Styles
	
===========================	*/


blockquote {
  display: block;
  border-width: 2px 0;
  border-style: solid;
  border-color: #eee;
  padding: 1.5em 0 1.5em;/*1.5em 0 0.5em*/
  margin: 2em 4em;/*1.5em 0*/
  position: relative;
  text-align:center;
}
blockquote:before {
  content: '\201C';
  position: absolute;
  top: 0em;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  width: 3rem;
  height: 2rem;
  font: 6em/1.08em 'PT Sans', sans-serif;
  color: #666;
  text-align: center;
}


.text-center h1,
.text-center h1 a{
	color: #000000;
	font-size: 30px;
	font-weight: 300;
	text-decoration: none;
	
	font-size: 3em;
	line-height: 1.25;
	font-weight: 700;
	font-style: italic;
	padding-top:0px;
	text-align:left;
}








/*========================================================================
	
						Material Design Styles
	 
========================================================================*/


body {
  font-family: "EB Garamond", serif;
  font-style: normal;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.display-4 {
  font-size: 112px;
  font-size: 11.2rem;
  line-height: 128px;
  line-height: 12.8rem;
  letter-spacing: -0.1px;
  letter-spacing: -0.01rem;
  font-weight: 100;
  color: #757575;
  text-transform: inherit;
}
.display-3 {
  font-size: 56px;
  font-size: 5.6rem;
  line-height: 84px;
  line-height: 8.4rem;
  letter-spacing: -0.05px;
  letter-spacing: -0.005rem;
  font-weight: 300;
  color: #757575;
  text-transform: inherit;
}
.display-2 {
  font-size: 45px;
  font-size: 4.5rem;
  line-height: 48px;
  line-height: 4.8rem;
  letter-spacing: 0px;
  letter-spacing: 0rem;
  font-weight: 300;
  color: #757575;
  text-transform: inherit;
}
.display-1 {
  font-size: 34px;
  font-size: 3.4rem;
  line-height: 40px;
  line-height: 4rem;
  letter-spacing: 0px;
  letter-spacing: 0rem;
  font-weight: 300;
  color: #757575;
  text-transform: inherit;
}
.headline {
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 32px;
  line-height: 3.2rem;
  letter-spacing: 0px;
  letter-spacing: 0rem;
  font-weight: 300;
  color: #212121;
  text-transform: inherit;
}
.title {
  font-size: 20px;
  font-size: 2rem;
  line-height: 28px;
  line-height: 2.8rem;
  letter-spacing: 0.05px;
  letter-spacing: 0.005rem;
  font-weight: 400;
  color: #212121;
  text-transform: inherit;
}
.subhead-2 {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 28px;
  line-height: 2.8rem;
  letter-spacing: 0.1px;
  letter-spacing: 0.01rem;
  font-weight: 400;
  color: #212121;
  text-transform: inherit;
}
.subhead-1 {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 24px;
  line-height: 2.4rem;
  letter-spacing: 0.1px;
  letter-spacing: 0.01rem;
  font-weight: 300;
  color: #212121;
  text-transform: inherit;
}
.body-2 {
  font-size: 13px;
  font-size: 1.4rem;/*1.5rem*/
  line-height: 24px;
  line-height: 2.6rem;
  letter-spacing: 0.1px;
  letter-spacing: 0.01rem;
  font-weight: 400;
  /*color: #212121;*/
  text-transform: inherit;
}
.body-1 {
  font-size: 13px;
  font-size: 1.7rem;/*1.3rem*/
  line-height: 20px;
  line-height: 2.4rem;/*2rem*/
  letter-spacing: 0.1px;
  letter-spacing: 0.01rem;
  font-weight: 300;
  color: #212121;
  text-transform: inherit;
}
.caption {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 20px;
  line-height: 2rem;
  letter-spacing: 0.2px;
  letter-spacing: 0.02rem;
  font-weight: 300;
  color: #757575;
  text-transform: inherit;
}
.label {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 20px;
  line-height: 2rem;
  letter-spacing: 0.1px;
  letter-spacing: 0.01rem;
  font-weight: 300;
  color: #212121;
  text-transform: inherit;
}
.menu {
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 20px;
  line-height: 2rem;
  letter-spacing: 0.1px;
  letter-spacing: 0.01rem;
  font-weight: 400;
  color: #212121;
  text-transform: inherit;
}
.button {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 20px;
  line-height: 2rem;
  letter-spacing: 0.1px;
  letter-spacing: 0.01rem;
  font-weight: 400;
  color: #212121;
  text-transform: uppercase;
}
@media only screen and (max-width: 960px) {
  .subhead-2 {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .subhead-1 {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .body-2 {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .body-1 {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .menu {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.display-4,
.display-3,
.display-2,
.display-1 {
  margin: 0 0 14px 0;
  margin-bottom: 1.4rem;
}
.headline,
.title,
.subhead-2,
.subhead-1,
.body-2,
.body-1,
.caption,
.label,
.menu,
.button {
  margin: 0 0 10px 0;
  margin-bottom: 1rem;
}











/*========================================================================
	
						NEW TYPOGRAPHY SCALE 	 
	 
========================================================================*/




/* I turned this body 100% off becuase it was making the navigation type too small. Try it again later */
/*body {
  font-size: 100%;
}*/

/*body, caption, th, td, input, textarea, select, option, legend, fieldset, h1, h2, h3, h4, h5, h6 {
  font-size-adjust: 0.5;
}*/

#page {
  font-size: 1em;
  /* equivalent to 16px */
  line-height: 1.25;
  /* equivalent to 20px */
}

@media (min-width: 43.75em) {
  #page {
    font-size: 1em;
    /* equivalent to 16px */
    line-height: 1.375;
    /* equivalent to 22px */
  }
}

h1 {
  font-size: 2em;
  /* 2x body copy size = 32px */
  line-height: 1.25;
  /* 45px / 36px */  
}

.main-header {
	font-family: "EB Garamond", serif;
	font-style: normal;
	font-weight: 700;
	font-size: 3em;
	line-height: 1.25;
	font-weight: 700;
	padding-top:0px;
	text-align:center;
}

.entry-title,
.secondary-header {
	font-family: "EB Garamond", serif;
	font-style: normal;
	font-weight: 700;
	font-size: 3em;
	line-height: 1;
	text-transform:uppercase;
}

.entry-title a,
.entry-title a:visited,
.secondary-header a,
.secondary-header a:visited {
	color:#000000;
	cursor: pointer;
}

.entry-title a:hover,
.secondary-header a:hover {
	color:#b501ff;
}

.sidebar-header {
	font-family: "EB Garamond", serif;
	font-style: normal;
	font-weight: 700;
	font-size: 1.25em;
	line-height: 1;
	color:#666666;
	text-transform:uppercase;
}

.lisa-box {
	border:1px solid #666666;
	padding:15px 15px;
}

.lisa-box p {
	color:#666666;
	margin-top: 10px;
	font-size: 1.15em;
}

ul.insta-images {
	text-align:center;
}

ul.insta-images li {
	display:inline-block;
	width:30%;
	padding:0px 2px 0px 2px;
}

.entry-title {
	font-family: "EB Garamond", serif;
	font-style: normal;
	font-weight: 700;
	margin:10px 0px;
}

.character-header {
	font-size: 3em;
	line-height: 1.25;
	font-weight: 700;
	font-style: italic;
}

.entry-meta .cat-tags-links {
	font-size: 14px;
}

.entry-meta .cat-links a {
	padding-right: 5px;
	font-family: "EB Garamond", serif;
	font-style: normal;
	font-weight: 700;
	color: #681064;
}


@media (max-width: 767px) {
	.main-header {
		font-size: 3em;
		line-height: 1.25;
		padding-top:0px;
	}
	
	.character-header {
		font-size: 3em;
		line-height: 1.25;
		font-weight: 700;
		font-style: italic;
	}
	
	.entry-title {
		margin: 20px 0px 10px 0px;
		font-size: 3em;
		line-height: 1;
	}
}

@media (min-width: 768px) {
	.main-header {
		font-size: 2.25em;
		line-height: 1;
		padding-top:0px;
	}
	
	.character-header {
		font-size: 2.25em;
		line-height: 1;
		font-weight: 700;
		font-style: italic;
	}
	
	.closed-frame {
		top:30px;
		border-bottom:none;
	}
}

@media (min-width: 992px) {
	.main-header {
		font-size: 3em;
		line-height: 1.7;/*1*/
		padding-top:10px;/*30px*/
	}
	
	.character-header {
		font-size: 3em;
		line-height: 1;
		font-weight: 700;
		font-style: italic;
	}
	
	.closed-frame {
		top:-30px;
	}
}

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

.text-left {
	text-align:left;
}

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

.jumbotron h1.text-white,
.jumbotron h2.text-white {
	color:#ffffff;
}

.characters h1.text-white,
.characters h2.text-white {
	color:#ffffff;
}

.content-body h1.text-white,
.content-body p.text-white {
	color:#ffffff;
	text-shadow: 1px 1px 4px #000000;
}

.news-sidebar h1.text-white,
.news-sidebar h2.text-white,
.news-sidebar h3.text-white,
.news-sidebar p.text-white {
	color:#ffffff;
}

.announcement {
	font-family: "EB Garamond", serif;
	font-style: normal;
	font-weight: 400;
	color:#ffffff;
	font-size:16px;
	-moz-box-shadow:    inset 0 0 10px #000000;
	-webkit-box-shadow: inset 0 0 10px #000000;
	box-shadow:         inset 0 0 10px #000000;
}

.announcement a,
.announcement a:hover,
.announcement a:visited {
	color:#ffffff;
	font-weight:900;
}

a.text-white {
	color:#ffffff;
}

a.text-white {
	color:#ffffff;
}

a.text-white:hover {
	color:#ffffff;
}

h1 > a.text-white:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #FFF;
  visibility: hidden;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

h1 > a.text-white:hover:before {
  visibility: visible;
  -webkit-transform: scaleX(1);
}

.jumbotron h1.text-black {
	color:#000000;
}

.characters h1.text-black {
	color:#000000;
}

a.text-black {
	color:#000000;
}

a.text-black:hover {
	color:#000000;
}

h1 > a.text-black:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #000000;
  visibility: hidden;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

h1 > a.text-black:hover:before {
  visibility: visible;
  -webkit-transform: scaleX(1);
}

.home-news-title {
	font-family: "EB Garamond", serif;
	font-style: normal;
	font-weight: 700;
	font-size: 3em;
	line-height: 1;
	font-weight: 700;
	padding-top: 0px;
	text-align: center;
}

h3.sub-news-headlines {
font-family: "EB Garamond", serif;
font-style: normal;
font-weight: 700;
font-size: 1.25em;
line-height: 1;
font-weight: 700;
margin-bottom: 10px;
text-transform: uppercase;
}

h3.press-headline-link {
font-family: "EB Garamond", serif;
font-style: normal;
font-weight: 700;
font-size: 1.25em;
line-height: 1.25;
font-weight: 700;
margin-bottom: 10px;
}

h3.press-headline-link a:link,
h3.press-headline-link a:visited {
	color:#000000;
}

h3.press-headline-link a:hover,
h3.press-headline-link a:active {
	color:#681064;
}

h3.sub-news-subheadlines  {
	font-size:1.15em;
	color:#666666;/*#393839*/
	font-weight:700;
	margin-bottom: 10px;
}

.blog-exerpt {
	font-size:1.15em;
	color:#393839;
}

@media (max-width: 767px) {
	h3.sub-news-headlines {
		margin-top: 10px;
		margin-bottom: 10px;
	}
}

.sub-news-headlines a {
	font-family: "EB Garamond", serif;
	font-style: normal;
	font-weight: 700;
	color:#000000;
	text-transform: uppercase;
}

.sub-news-headlines a:hover {
	color:#333333;
	text-decoration: underline;
}

.close {
	color: #b501ff;
}

.close:focus,
.close:hover {
	color: #000000;
}

.secondary-pages h1 {
	font-family: "EB Garamond", serif;
	font-style: normal;
	font-weight: 700;
	font-size: 3em;
	line-height: 1;
	font-weight: 700;
	padding-top: 0px;
	text-align: center;
	text-transform: uppercase;
}

.secondary-pages p {
	font-family: "EB Garamond", serif;
	font-style: normal;
	font-weight: 400;
	font-size: 1.25em;
	line-height: 1.25;
	margin: 10px 0px;
}
























.pagination>li>a, .pagination>li>span {
	color: #333333;
}

.pagination>li>,
.pagination>li>a,
.pagination>li>span {
	color: #ffffff;
}

.pagination>li>a:focus,
.pagination>li>a:hover,
.pagination>li>span:focus,
.pagination>li>span:hover {
	color: #ffffff;
}

.pagination>.active>a,
.pagination>.active>a:focus,
.pagination>.active>a:hover,
.pagination>.active>span {
	background-color: #c12530;
	border-color:#a91e23;
}

.pagination>.active>span:focus,
.pagination>.active>span:hover {
	background-color: #a91e23;
	border-color:#c12530;
}

.pagination>.active>span>a {
	color:#ffffff;
}

.pagination>li:first-child>a,
.pagination>li:first-child>span {
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px
}

.pagination>li:last-child>a,
.pagination>li:last-child>span {
	border-top-right-radius: 0px;
	border-bottom-right-radius: 0px
}

.blog-anchor-cushion {
	padding: 20px 0px 20px 0px;
	font-size: 14px;
	font-weight: 400;
	font-style:normal;
	font-family: 'Open Sans', sans-serif;
}

.read-more {
	background-color: #ffffff;
	margin-top:5px;
    padding: 10px;
    text-decoration: none;
    color:#ffffff;
}

.read-more:hover,
.read-more:visited {
	background-color: #ffffff;
	color:#ffffff;
}

.entry-meta {
	padding:0px 0px 5px 0px;
}

.entry-date {
	color:#000000;
	font-style:italic;
}

.comment-body {
	background: #eeeeee;
	padding: 20px;
	margin-bottom: 10px;
	margin-top: 20px;
}

.comment-meta {
	padding: 10px 0px;
	background-color: #eeeeee;
	border:none;
	color: #000000;
}

.comment-meta a {
	color:#681064;
}

.comment-meta a:hover {
	color:#000000;
}

.comment-list {
	margin:0;
	padding:0;
}

.comment-author img {
    border-radius: 50%;
    border: 5px solid #fff;
}

textarea {
	display: block;
	width: 100%;
	/*height: 34px;*/
	margin-bottom: 30px;
	padding: 6px 12px;
	font-size: 14px;
	line-height: 1.42857143;
	color: #555;
	background-color: #fff;
	background-image: none;
	border: 1px solid #ccc;
	border-radius: 4px;
	-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
	box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
	-webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
	-o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
	transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
	border-radius: 0px;
	/*margin-top: 38px;*/
	color: #FFFFFF;
	text-shadow: 0.5px 0.1px 2px rgba(0,0,0,0);
	border-color: #000000;
	transition: 0.3s;
	cursor: pointer;
/*background-color: #444;*/
border: none;
color: #fff;
font-size: 12px;
font-weight: 300;
letter-spacing: 0px;
padding: 4px 10px 4px;
text-transform: uppercase;
width: auto;
padding: 12px 18px;
font-family: "EB Garamond", serif;
font-style: normal;
font-weight: 700;
background-color: #000000;
border: 1px solid #874439;
color:#ffffff;
}

.submit:hover,
.search-submit:hover {
	background-color:#681064;
	color: #ffffff;
}

.reply {
	margin-top:10px;
	padding: 15px 0px;
}


input[type=search] {
display: block;
width: 100%;
height: 34px;
padding: 6px 12px;
font-size: 14px;
line-height: 1.42857143;
color: #555;
background-color: #fff;
background-image: none;
border: 1px solid #ccc;
border-radius: 4px;
-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
-webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
-o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}


.comments-area label {
	color:#444444;
}


/* ## Comments
--------------------------------------------- */
.comment-respond,
.entry-pings,
.entry-comments {
    color: #444;
    padding: 20px 45px 40px 45px;
    /*border: 1px solid #ccc;*/
    overflow: hidden;
    background: #fff;
    /*-webkit-box-shadow: 0px 0px 8px rgba(0,0,0,0.3);
    -moz-box-shadow: 0px 0px 8px rgba(0,0,0,0.3);
    box-shadow: 0px 0px 8px rgba(0,0,0,0.3);
    border-left: 4px solid #444;*/
    border: 1px solid #666666;
	padding: 15px 15px;
}
.entry-comments h3{
    font-size: 30px;
    margin-bottom: 30px;
}
.comment-respond h3,
.entry-pings h3{
    font-size: 20px;
    margin-bottom: 30px;
}
.comment-respond {
    padding-bottom: 5%;
    margin: 20px 1px 20px 1px;
        /*border-left: none !important;*/
}
.comment-header {
    color: #adaeb3;
    font-size: 14px;
    margin-bottom: 20px;
}
.comment-header cite a {
    border: none;
    font-style: normal;
    font-size: 16px;
    font-weight: bold;
}
.comment-header .comment-meta a {
    border: none;
    color: #adaeb3;
}
li.comment {
    background-color: #fff;
    border-right: none;
}
.comment-content {
    clear: both;
    overflow: hidden;
}
.comment-list li {
    font-size: 14px;
    padding: 20px 0px 0px 0px;
}
.comment-list .children {
    margin-top: 0px;
    margin-left: 0px;
    padding-left: 20px;
    /*border: 1px solid #ccc;*/
}
.comment-list li li {
    /*background-color: #f5f5f6;*/
}
.comment-list li li li {
    background-color: #fff;
}
.comment-respond input[type="email"],
.comment-respond input[type="text"],
.comment-respond input[type="url"] {
    width: 100%;/*50%*/
}
input {
	line-height:2;
}
.comment-respond label {
    display: block;
    margin-right: 12px;
}
.entry-comments .comment-author {
    margin-bottom: 0;
    position: relative;
}
.entry-comments .comment-author img {
    border-radius: 50%;
    border: 5px solid #fff;
    left: -80px;
    top: -5px;
    position: absolute;
    width: 60px;
}
.entry-pings .reply {
    display: none;
}
.bypostauthor {
}
.form-allowed-tags {
    background-color: #f5f5f5;
    font-size: 16px;
    padding: 24px;
}
.comment-reply-link{
    cursor: pointer;
    background-color: #444;
    border: none;
    border-radius: 0px;
    color: #fff;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 1px;
    padding: 12px 18px;/* 4px 10px 4px */
    text-transform: uppercase;
    width: auto;
}
.comment-reply-link:hover{
    color: #fff;
    background-color: #800080;
}
.comment-notes{
    display:none;   
}

.logged-in-as a {
	color:#800080;
}



/*.current-menu-ancestor {
	border-bottom: 5px solid #681064;
}*/

.navbar-collapse .caret {
	display: none;
}

/*.dropdown:hover .dropdown-menu {
    display: block;
}*/





















.pagination>li>,
.pagination>li>a,
.pagination>li>span {
	color: #ffffff;
}

.pagination>li>a,
.pagination>li>span,
.pagination>li>span a {
	position: relative;
	float: left;
	padding: 6px 12px;
	margin-left: -1px;
	line-height: 1.42857143;
	text-decoration: none;
	background-color: #681064;
	border: 1px solid #fff;
	color:#ffffff;
}

.pagination>li>a:focus,
.pagination>li>a:hover,
.pagination>li>span:focus,
.pagination>li>span:hover {
	color: #ffffff;
	background-color: #8e5981;
	border-color:#ffffff;
}

.pagination>li.active,
.pagination>.active>a,
.pagination>.active>a:focus,
.pagination>.active>a:hover,
.pagination>.active>span {
	background-color: #8e5981;
	border-color:#ffffff;
}

.pagination>.active>span:focus,
.pagination>.active>span:hover {
	background-color: #8e5981;
	border-color:#ffffff;
}

.pagination>.active>span>a {
	color:#ffffff;
}

.pagination>li:first-child>a,
.pagination>li:first-child>span {
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px
}

.pagination>li:last-child>a,
.pagination>li:last-child>span {
	border-top-right-radius: 0px;
	border-bottom-right-radius: 0px
}

.blog-anchor-cushion {
	/*padding: 40px 0px 10px 0px;*/
	font-family: "EB Garamond", serif;
	font-style: normal;
	font-weight: 400;
    padding: 0px 10px 10px 0px;
    text-decoration: none;
    color:#000000;
    font-size: 18px;/*1em*/
}

@media (max-width: 767px) {
	.blog-anchor-cushion {
		padding: 10px 0px 10px 0px;
	}
}

.blog-anchor-cushion a {
	color:#681064;
}

.blog-anchor-cushion-alt {
	font-family: "EB Garamond", serif;
	font-style: normal;
	font-weight: 700;
	padding: 0px 0px 25px 0px;
}

.blog-anchor-cushion-alt a {
	font-family: "EB Garamond", serif;
	font-style: normal;
	font-weight: 700;
	padding: 20px 0px 10px 0px;
}

.blog-anchor-cushion a:hover {
	color:#000000;
}

.read-more {
	font-family: "EB Garamond", serif;
	font-style: normal;
	font-weight: 700;
	background-color: #ffffff;
	margin-top:0px;/*5px*/
    padding: 0px 10px 10px 0px;/*10px*/
    text-decoration: none;
    color:#681064;
    font-size: 1em;/* 1.15em */
    text-transform: uppercase;
}

.read-more:hover {
	background-color: #ffffff;
	color:#000000;
	transition: color .2s;
}

.read-more:visited {
	color:#681064;
}

.entry-meta {
	padding:0px 0px 5px 0px;
}

@media (max-width: 767px) {
	.entry-meta {
		padding:0px;
	}
}

.entry-date {
	color:#666666;
	font-style:normal;
	font-weight:700;
}

.se-tags a {
	/*padding-right: 5px;*/
	font-family: "EB Garamond", serif;
	font-style: normal;
	font-weight: 700;
	color: #681064;
	text-transform:uppercase;
}

.blog-paragraph {
	font-family: "EB Garamond", serif;
	font-style: normal;
	font-weight: 400;
	font-size: 1.25em;
	line-height: 1.25;
	margin: 10px 0px;
}

@media (max-width: 767px) {
	.blog-paragraph {
		font-size:1.1em;
	}
}



.blog-single-paragraph h1 {
	font-family: "EB Garamond", serif;
	font-style: normal;
	font-weight: 700;
	font-size: 3em;
    line-height: 1.05;
    line-height: 1.20;
    padding-top: 21px;
    color:#000000;
    text-transform: uppercase;
}

@media (max-width: 767px) {
	.blog-single-paragraph h1 {
		font-family: "EB Garamond", serif;
		font-style: normal;
		font-weight: 700;
		font-size: 3em;
	    line-height: 1;
	    padding-top: 21px;
	    color:#000000;
	    text-transform: uppercase;
	}
}

.blog-single-paragraph h2 {
	font-family: "EB Garamond", serif;
	font-style: normal;
	font-weight: 700;
	color:#000000;
}

.blog-single-paragraph p {
	margin:10px 0px 20px 0px;
	font-size: 13px;
    font-size: 1.75rem;
    line-height: 24px;
    line-height: 2.3rem;
    letter-spacing: 0.1px;
    letter-spacing: 0.01rem;
    font-weight: 400;
    /* color: #212121; */
    text-transform: inherit;
}

.blog-single-paragraph hr {
	margin-top: 20px;
	margin-bottom: 20px;
	border: 0;
	border-top: 1px solid #000000; /* 033a57 */
	width: 100%;
}

.blog-single-paragraph blockquote {
  display: block;
  border-width: 2px 0;
  border-style: solid;
  border-color: #b501ff; /* #eee */
  padding: 1.5em 0 1.5em;/*1.5em 0 0.5em*/
  margin: 2em 4em;/*1.5em 0*/
  position: relative;
  text-align:center;
}
.blog-single-paragraph blockquote:before {
  content: '\201C';
  position: absolute;
  top: 0em;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  width: 5rem;/*3rem*/
  height: 4rem;/*2rem*/
  font: 6em/1.08em 'PT Sans', sans-serif;
  color: #666;
  text-align: center;
}

.blog-single-paragraph ul {
	margin: 10px 0px 20px 0px;
	padding-left: 20px;
	background-color: #f0e7ef;
	padding: 40px 50px 30px 50px;
	border: 1px solid #cccccc;
}

.blog-single-paragraph ul li {
  font-size: 1.6rem;
  line-height: 2.25rem;
  letter-spacing: 0px;
  letter-spacing: 0rem;
  font-weight: 700;
  color: #000000;
  text-transform: inherit;
  font-family: "EB Garamond", serif;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.blog-single-paragraph a,
.blog-single-paragraph a:visited {
	color: #681064;
}






























.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
	background: #ffffff;
}

.wp-caption .wp-caption-text {
	margin: 0em 0;/* 0.8075em 0 */
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #ffffff;
	color:#681064;
	font-family: "EB Garamond", serif;
	font-style: normal;
	font-weight: 700;
	text-align: left;
	padding: .75em .5em;
	font-size: 1.15em;
	line-height:1.25;
	background-color: #f0e7ef;
}

.event-details-box {
	border:1px solid #b501ff;/*#666666*/
	padding:40px;
	list-style: none;
	color:#ffffff;/*#393839*/
	background-color:#000000;
}

ul.event-details-box {
	background-color:#000000;
}

 ul.event-details-box li {
	color:#ffffff;/*#393839*/
	padding: 5px 0px;
	font-size:1.75rem;
	font-weight: 400;
}

 ul.event-details-box li a,
 ul.event-details-box li a:visited  {
	 color:#ffffff;
 }
 
  ul.event-details-box li a:hover {
	  color:#b501ff;
}

@media (max-width: 767px) {
	.event-details-box {
		padding:20px;
	}
	
	ul.event-details-box li {
		color:#ffffff;/*#393839*/
		padding: 0px 0px;
		font-size:1.15em;
		font-weight: 400;
	}
}

.event-details-box li span {
	color:#ffffff;
	font-weight: 700;
}

.privacy-policy-box {
	font-family: "EB Garamond", serif;
	font-style: normal;
	font-weight: 400;
	font-size: 1.25em;
	line-height: 1.25;
	margin: 10px 0px;
}







/*========================================================
	
	
		VIDEO SECTION WITH BACKGROUND TESTS


==========================================================*/

video {
	width: 100%;
	height: auto !important;
	margin: 0;
	padding: 0;
}

.full-width {
	margin:0 auto;
	padding:0;
}





@media (min-width: 43.75em) {
  h1 {
    font-size: 2.5em;
    /* 2.5x body copy size = 40px */
    line-height: 1.125;
  }
}

@media (min-width: 56.25em) {
  h1 {
    font-size: 3em;
    /* 3x body copy size = 48px */
    line-height: 1.05;
    /* keep to a multiple of the 20px line height and something more appropriate for display headings */
    line-height: 1.20;
    padding-top: 21px;
  }
}

h2 {
  font-size: 1.625em;
  /* 1.625x body copy size = 26px */
  line-height: 1.15384615;
  /* 30px / 26px */
}

@media (min-width: 43.75em) {
  h2 {
    font-size: 2em;
    /* 2x body copy size = 32px */
    line-height: 1.25;
  }
}

@media (min-width: 56.25em) {
  h2 {
    font-size: 1.5em;/*2.25em*/
    /* 2.25x body copy size = 36px */
    line-height: 1.25;
  }
}

h3 {
  font-size: 1.375em;
  /* 1.375x body copy size = 22px */
  line-height: 1.13636364;
  /* 25px / 22px */
}

@media (min-width: 43.75em) {
  h3 {
    font-size: 1.5em;
    /* 1.5x body copy size = 24px */
    line-height: 1.25;
  }
}

@media (min-width: 56.25em) {
  /*h3 {
    font-size: 1.75em;
    line-height: 1.25;
	  }*/
	  
	 h3 {
  font-size: 1.275em;
  /* 1.375x body copy size = 22px */
  line-height: 1.12636364;
  /* 25px / 22px */
}
}

h4 {
  font-size: 1.125em;
  /* 1.125x body copy size = 18px */
  line-height: 1.11111111;
}

@media (min-width: 43.75em) {
  h4 {
    line-height: 1.22222222;
    /* (22px / 18px */
  }
}

blockquote {
  font-size: 1.25em;
  /* 20px / 16px */
  line-height: 1.25;
  /* 25px / 20px */
}

@media (min-width: 43.75em) {
  blockquote {
    font-size: 1.5em;
    /* 24px / 16px = */
    line-height: 1.45833333;
    /* 35px / 24px */
  }
}

@media screen and (max-width: 767px) {
	.headline {
		margin: 50px 0 20px 0;
	}
	
	.display-1 {
		margin: 20px 0 14px 0;
	}
}

/*body {
	font-family: "Open Sans";
	line-height: 26px;
}
h1, h2, h3, h4, h5, h6 {
	font-family: "Open Sans";
	font-weight: 300;
}
h1 {
	font-size: 46px;
}
h2 {
	font-size: 44px;
}
h3 {
	font-size: 32px;
}
h4 {
	font-size: 24px;
}
h5 {
	font-size: 22px;
	line-height: 30px;
}
h6 {
	font-size: 20px;
}*/

.full-width-row {
  overflow-x: hidden;
  overflow-y: hidden;
}

.full-width-row > div {
  margin-left: -15px;
  margin-right: -15px;
}

.full-width-text-box {
	padding:20px 60px;
}

.full-width-text-box h1 {
	font-family: "EB Garamond", serif;
	font-style: normal;
	font-weight: 700;
	font-size: 48px;
	line-height:1;
	text-align: left;
	text-transform: uppercase;
	color: #000000;
}

.full-width-text-box h1.pink {
	color:#f58c80;
}

.full-width-text-box p {
	font-family: "EB Garamond", serif;
	font-style: normal;
	font-weight: 400; 
	line-height: 31px;
	font-size: 1.75em;
	margin-top: 20px;
	text-align:left;
	color: #000000;
}

.full-width-text-box p.gold {
	color: #b49859;
}

@media (max-width: 767px) {
	
	.full-width-row > div {
		margin-left: 0px;
		margin-right: 0px;
		padding-left: 0px;
		padding-right: 0px;
	}
	
	.full-width-text-box {
		padding:20px 20px;
	}
	
	.full-width-text-box h1 {
		font-family: "EB Garamond", serif;
		font-style: normal;
		font-weight: 700;
		font-size: 2.75em;/*3em*/
		line-height:1;
		text-align: center;
		text-transform: uppercase;
		color: #000000;
	}
	
	.full-width-text-box p {
		text-align: center;
		font-size: 20px;
		line-height: 22px;
	}

}

@media (min-width: 768px) and (max-width: 991px) {
	
	.full-width-text-box {
		padding:30px 0px 10px 40px;
	}

	.full-width-text-box h1 {
		font-family: "EB Garamond", serif;
		font-style: normal;
		font-weight: 700;
		font-size: 1.75em;
		line-height:1;
		text-align: left;
		text-transform: uppercase;
		color: #000000;
	}
	
	.full-width-text-box p {
		    text-align: left;
			font-size: 18px;
			line-height: 20px;
	}

}

.column-height {
	min-height: 375px;
}

.wpcf7-spinner {
	display: none;
}

@media (min-width:1200px){
    .auto-clear .col-lg-1:nth-child(12n+1){clear:left;}
    .auto-clear .col-lg-2:nth-child(6n+1){clear:left;}
    .auto-clear .col-lg-3:nth-child(4n+1){clear:left;}
    .auto-clear .col-lg-4:nth-child(3n+1){clear:left;}
    .auto-clear .col-lg-6:nth-child(odd){clear:left;}
}
@media (min-width:992px) and (max-width:1199px){
    .auto-clear .col-md-1:nth-child(12n+1){clear:left;}
    .auto-clear .col-md-2:nth-child(6n+1){clear:left;}
    .auto-clear .col-md-3:nth-child(4n+1){clear:left;}
    .auto-clear .col-md-4:nth-child(3n+1){clear:left;}
    .auto-clear .col-md-6:nth-child(odd){clear:left;}
}
@media (min-width:768px) and (max-width:991px){
    .auto-clear .col-sm-1:nth-child(12n+1){clear:left;}
    .auto-clear .col-sm-2:nth-child(6n+1){clear:left;}
    .auto-clear .col-sm-3:nth-child(4n+1){clear:left;}
    .auto-clear .col-sm-4:nth-child(3n+1){clear:left;}
    .auto-clear .col-sm-6:nth-child(odd){clear:left;}
}
@media (max-width:767px){
    .auto-clear .col-xs-1:nth-child(12n+1){clear:left;}
    .auto-clear .col-xs-2:nth-child(6n+1){clear:left;}
    .auto-clear .col-xs-3:nth-child(4n+1){clear:left;}
    .auto-clear .col-xs-4:nth-child(3n+1){clear:left;}
    .auto-clear .col-xs-6:nth-child(odd){clear:left;}
}
