/*! Made with Bones: http://themble.com/bones :) */
/******************************************************************
Site Name:
Author:

Stylesheet: Main Stylesheet

Here's where the magic happens. Here, you'll see we are calling in
the separate media queries. The base mobile goes outside any query
and is called at the beginning, after that we call the rest
of the styles inside media queries.

Helpful articles on Sass file organization:
http://thesassway.com/advanced/modular-css-naming-conventions

******************************************************************/
/*********************
IMPORTING PARTIALS
These files are needed at the beginning so that we establish all
our mixins, functions, and variables that we'll be using across
the whole project.
*********************/
/* normalize.css 2012-07-07T09:50 UTC - http://github.com/necolas/normalize.css */
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined in IE 8/9.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

/**
 * Correct `inline-block` display not defined in IE 8/9.
 */
audio,
canvas,
video {
  display: inline-block;
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9.
 * Hide the `template` element in IE, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* ==========================================================================
   Base
   ========================================================================== */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  cursor: default;
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* ==========================================================================
   Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background: transparent;
}

/**
 * Address `outline` inconsistency between Chrome and other browsers.
 */
/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}

/* ==========================================================================
   Typography
   ========================================================================== */
/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9, Safari 5, and Chrome.
 */
abbr[title] {
  border-bottom: 0px dotted;
  text-decoration: none;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
 */
b,
strong,
.strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari 5 and Chrome.
 */
dfn,
em,
.em {
  font-style: italic;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/*
 * proper formatting (http://blog.fontdeck.com/post/9037028497/hyphens)
*/
p {
  -webkit-hyphens: auto;
  -epub-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
}

/*
 * Addresses margins set differently in IE6/7.
 */
pre {
  margin: 0;
}

/**
 * Correct font family set oddly in Safari 5 and Chrome.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em;
}

/**
 * Improve readability of pre-formatted text in all browsers.
 */
pre {
  white-space: pre-wrap;
}

/**
 * Set consistent quote types.
 */
q {
  quotes: "\201C" "\201D" "\2018" "\2019";
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
q:before,
q:after {
  content: '';
  content: none;
}

small, .small {
  font-size: 75%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* ==========================================================================
  Lists
========================================================================== */
/*
 * Addresses margins set differently in IE6/7.
 */
dl,
menu,
ol,
ul {
  margin: 1em 0;
}

dd {
  margin: 0;
}

/*
 * Addresses paddings set differently in IE6/7.
 */
menu {
  padding: 0 0 0 40px;
}

main ol {
  padding: 0;
  list-style-type: decimal;
  margin-left: 20px;
}

main ol li {
  margin-left: 10px;
}

main ul {
  padding: 0;
  list-style-type: disc;
  margin-left: 20px;
}

main ul li {
  margin-left: 10px;
}

/*
 * Corrects list images handled incorrectly in IE7.
 */
nav ul,
nav ol {
  list-style: none;
  list-style-image: none;
  padding: 0px;
}

/* ==========================================================================
  Embedded content
========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9.
 */
img {
  border: 0;
}

/**
 * Correct overflow displayed oddly in IE 9.
 */
svg:not(:root) {
  overflow: hidden;
}

/* ==========================================================================
   Figures
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari 5.
 */
figure {
  margin: 0;
}

/* ==========================================================================
   Forms
   ========================================================================== */
/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: none !important;
  margin: 20px 0px !important;
  padding: 20px 0px;
  display: block;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
  padding-top: 20px;
}

/**
 * 1. Correct font family not being inherited in all browsers.
 * 2. Correct font size not being inherited in all browsers.
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
 */
button,
input,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 2 */
  margin: 0;
  /* 3 */
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
button,
input {
  line-height: normal;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * 1. Remove default vertical scrollbar in IE 8/9.
 * 2. Improve readability and alignment in all browsers.
 */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}

/* ==========================================================================
   Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.image-replacement,
.ir {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

.clearfix, .cf {
  zoom: 1;
}

.clearfix:before, .clearfix:after, .cf:before, .cf:after {
  content: "";
  display: table;
}

.clearfix:after, .cf:after {
  clear: both;
}

/*
use the best ampersand
http://simplebits.com/notebook/2008/08/14/ampersands-2/
*/
span.amp {
  font-family: Baskerville,'Goudy Old Style',Palatino,'Book Antiqua',serif !important;
  font-style: italic;
}

/******************************************************************
Site Name:
Author:

Stylesheet: Variables

Here is where we declare all our variables like colors, fonts,
base values, and defaults. We want to make sure this file ONLY
contains variables that way our files don't get all messy.
No one likes a mess.

******************************************************************/
/*********************
COLORS
Need help w/ choosing your colors? Try this site out:
http://0to255.com/
*********************/
/* Not used */
/* orange */
/* blue-green */
/*
Here's a great tutorial on how to
use color variables properly:
http://sachagreif.com/sass-color-variables/
*/
/******************************************************************
Site Name:
Author:

Stylesheet: Typography

Need to import a font or set of icons for your site? Drop them in
here or just use this to establish your typographical grid. Or not.
Do whatever you want to...GOSH!

Helpful Articles:
http://trentwalton.com/2012/06/19/fluid-type/
http://ia.net/blog/responsive-typography-the-basics/
http://alistapart.com/column/responsive-typography-is-a-physical-discipline

******************************************************************/
/*********************
FONT FACE (IN YOUR FACE)
*********************/
/*  To embed your own fonts, use this syntax
  and place your fonts inside the
  library/fonts folder. For more information
  on embedding fonts, go to:
  http://www.fontsquirrel.com/
  Be sure to remove the comment brackets.
*/
/*  @font-face {
      font-family: 'Font Name';
      src: url('library/fonts/font-name.eot');
      src: url('library/fonts/font-name.eot?#iefix') format('embedded-opentype'),
             url('library/fonts/font-name.woff') format('woff'),
             url('library/fonts/font-name.ttf') format('truetype'),
             url('library/fonts/font-name.svg#font-name') format('svg');
      font-weight: normal;
      font-style: normal;
  }
*/
/*
The following is based of Typebase:
https://github.com/devinhunt/typebase.css
I've edited it a bit, but it's a nice starting point.
*/
/*
 i imported this one in the functions file so bones would look sweet.
 don't forget to remove it for your site.
*/
/******************************************************************
Site Name:
Author:

Stylesheet: Sass Functions

You can do a lot of really cool things in Sass. Functions help you
make repeated actions a lot easier. They are really similar to mixins,
but can be used for so much more.

Anyway, keep them all in here so it's easier to find when you're
looking for one.

For more info on functions, go here:
http://sass-lang.com/documentation/Sass/Script/Functions.html

******************************************************************/
/*********************
COLOR FUNCTIONS
These are helpful when you're working
with shadows and such things. It's essentially
a quicker way to write RGBA.

Example:
box-shadow: 0 0 4px black(0.3);
compiles to:
box-shadow: 0 0 4px rgba(0,0,0,0.3);
*********************/
/*********************
RESPONSIVE HELPER FUNCTION
If you're creating a responsive site, then
you've probably already read
Responsive Web Design: http://www.abookapart.com/products/responsive-web-design

Here's a nice little helper function for calculating
target / context
as mentioned in that book.

Example:
width: cp(650px, 1000px);
or
width: calc-percent(650px, 1000px);
both compile to:
width: 65%;
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Mixins Stylesheet

This is where you can take advantage of Sass' great features: Mixins.
I won't go in-depth on how they work exactly,
there are a few articles below that will help do that. What I will
tell you is that this will help speed up simple changes like
changing a color or adding CSS3 techniques gradients.

A WORD OF WARNING: It's very easy to overdo it here. Be careful and
remember less is more.

Helpful:
http://sachagreif.com/useful-sass-mixins/
http://thesassway.com/intermediate/leveraging-sass-mixins-for-cleaner-code
http://web-design-weekly.com/blog/2013/05/12/handy-sass-mixins/

******************************************************************/
/*********************
TRANSITION
*********************/
/*
I totally rewrote this to be cleaner and easier to use.
You'll need to be using Sass 3.2+ for these to work.
Thanks to @anthonyshort for the inspiration on these.
USAGE: @include transition(all 0.2s ease-in-out);
*/
/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************/
/* @include css-gradient(#dfdfdf,#f8f8f8); */
/*********************
BOX SIZING
*********************/
/* @include box-sizing(border-box); */
/* NOTE: value of "padding-box" is only supported in Gecko. So
probably best not to use it. I mean, were you going to anyway? */
/******************************************************************
Site Name:
Author:

Stylesheet: Grid Stylesheet

I've seperated the grid so you can swap it out easily. It's
called at the top the style.scss stylesheet.

There are a ton of grid solutions out there. You should definitely
experiment with your own. Here are some recommendations:

http://gridsetapp.com - Love this site. Responsive Grids made easy.
http://susy.oddbird.net/ - Grids using Compass. Very elegant.
http://gridpak.com/ - Create your own responsive grid.
https://github.com/dope/lemonade - Neat lightweight grid.


The grid below is a custom built thingy I modeled a bit after
Gridset. It's VERY basic and probably shouldn't be used on
your client projects. The idea is you learn how to roll your
own grids. It's better in the long run and allows you full control
over your project's layout.

******************************************************************/
.last-col {
  float: right;
  padding-right: 0 !important;
}

.pb-50 {
  padding-bottom: 50px;
}

.center-all {
  text-align: center !important;
}

.pb-25 {
  padding-bottom: 25px;
}

/*
Mobile Grid Styles
These are the widths for the mobile grid.
There are four types, but you can add or customize
them however you see fit.
*/
@media (max-width: 767px) {
  .m-all {
    float: left;
    padding-right: 0.75em;
    width: 100%;
    padding-right: 0;
  }
  .m-h0 {
    height: 0px !important;
  }
  .m-center {
    text-align: center !important;
  }
  .m-none {
    display: none !important;
  }
  .m-pb25 {
    padding-bottom: 25px;
  }
  .m-mauto {
    margin: auto !important;
  }
  .m-pb50 {
    padding-bottom: 50px;
  }
  .m-pb0 {
    padding-bottom: 0px;
  }
  .m-pt50 {
    padding-top: 50px;
  }
  .m-last0p:last-child {
    padding: 0px !important;
  }
  .m-center {
    text-align: center !important;
    float: none !important;
  }
  .m-50bp {
    padding-bottom: 50px !important;
  }
  .m-nofloat {
    float: none !important;
  }
  .m-1of2 {
    float: left;
    padding-right: 0.75em;
    width: 50%;
  }
  .m-1of3 {
    float: left;
    padding-right: 0.75em;
    width: 33.33%;
  }
  .m-2of3 {
    float: left;
    padding-right: 0.75em;
    width: 66.66%;
  }
  .m-1of4 {
    float: left;
    padding-right: 0.75em;
    width: 25%;
  }
  .m-3of4 {
    float: left;
    padding-right: 0.75em;
    width: 75%;
  }
}

/* Portrait tablet to landscape */
@media (min-width: 768px) and (max-width: 1029px) {
  .t-all {
    float: left;
    padding-right: 0.75em;
    width: 100%;
    padding-right: 0;
  }
  .t-none {
    display: none !important;
  }
  .t-floatright {
    float: right !important;
  }
  .t-mauto {
    margin: auto !important;
  }
  .t-pt50 {
    padding-top: 50px;
  }
  .t-pb25 {
    padding-bottom: 25px;
  }
  .t-pb50 {
    padding-bottom: 50px;
  }
  .t-h0 {
    height: 0px !important;
  }
  .t-pb0 {
    padding-bottom: 0px;
  }
  .t-last0p:last-child {
    padding: 0px !important;
  }
  .t-center {
    text-align: center !important;
    float: none !important;
  }
  .t-floatleft {
    float: left !important;
  }
  .t-nofloat {
    float: none !important;
  }
  .t-1of2 {
    float: left;
    padding-right: 0.75em;
    width: 50%;
  }
  .t-1of2.exhibition-single:nth-child(2n + 1) {
    clear: both;
  }
  .t-1of3 {
    float: left;
    padding-right: 0.75em;
    width: 33.33%;
  }
  .t-2of3 {
    float: left;
    padding-right: 0.75em;
    width: 66.66%;
  }
  .t-1of4 {
    float: left;
    padding-right: 0.75em;
    width: 25%;
  }
  .t-3of4 {
    float: left;
    padding-right: 0.75em;
    width: 75%;
  }
  .t-1of5 {
    float: left;
    padding-right: 0.75em;
    width: 20%;
  }
  .t-2of5 {
    float: left;
    padding-right: 0.75em;
    width: 40%;
  }
  .t-3of5 {
    float: left;
    padding-right: 0.75em;
    width: 60%;
  }
  .t-4of5 {
    float: left;
    padding-right: 0.75em;
    width: 80%;
  }
}

/* Landscape to small desktop */
@media (min-width: 1030px) {
  .d-all {
    float: left;
    padding-right: 0.75em;
    width: 100%;
    padding-right: 0;
  }
  .d-none {
    display: none !important;
  }
  .d-parentflex {
    display: flex !important;
  }
  .d-floatright {
    float: right !important;
  }
  .d-floatleft {
    float: left !important;
  }
  .d-nofloat {
    float: none !important;
  }
  .d-last0p:last-child {
    padding: 0px !important;
  }
  .d-flex {
    flex: 1;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  .d-center {
    text-align: center !important;
  }
  .d-1of2 {
    float: left;
    padding-right: 0.75em;
    width: 50%;
  }
  .d-1of2.exhibition-single:nth-child(2n) {
    clear: both;
  }
  .d-1of3 {
    float: left;
    padding-right: 0.75em;
    width: 33.33%;
  }
  .d-1of3.exhibition-single:nth-child(3n + 1) {
    clear: both;
  }
  .d-2of3 {
    float: left;
    padding-right: 0.75em;
    width: 66.66%;
  }
  .d-1of4 {
    float: left;
    padding-right: 0.75em;
    width: 25%;
  }
  .d-3of4 {
    float: left;
    padding-right: 0.75em;
    width: 75%;
  }
  .d-1of5 {
    float: left;
    padding-right: 0.75em;
    width: 20%;
  }
  .d-2of5 {
    float: left;
    padding-right: 0.75em;
    width: 40%;
  }
  .d-3of5 {
    float: left;
    padding-right: 0.75em;
    width: 60%;
  }
  .d-4of5 {
    float: left;
    padding-right: 0.75em;
    width: 80%;
  }
  .d-1of6 {
    float: left;
    padding-right: 0.75em;
    width: 16.6666666667%;
  }
  .d-1of7 {
    float: left;
    padding-right: 0.75em;
    width: 14.2857142857%;
  }
  .d-2of7 {
    float: left;
    padding-right: 0.75em;
    width: 28.5714286%;
    padding-right: 2em !important;
  }
  .d-3of7 {
    float: left;
    padding-right: 0.75em;
    width: 42.8571429%;
  }
  .d-4of7 {
    float: left;
    padding-right: 0.75em;
    width: 57.1428572%;
  }
  .d-5of7 {
    float: left;
    padding-right: 0.75em;
    width: 71.4285715%;
  }
  .d-6of7 {
    float: left;
    padding-right: 0.75em;
    width: 85.7142857%;
  }
  .d-1of8 {
    float: left;
    padding-right: 0.75em;
    width: 12.5%;
  }
  .d-1of9 {
    float: left;
    padding-right: 0.75em;
    width: 11.1111111111%;
  }
  .d-1of10 {
    float: left;
    padding-right: 0.75em;
    width: 10%;
  }
  .d-1of11 {
    float: left;
    padding-right: 0.75em;
    width: 9.09090909091%;
  }
  .d-1of12 {
    float: left;
    padding-right: 0.75em;
    width: 8.33%;
  }
}

/*********************
IMPORTING MODULES
Modules are reusable blocks or elements we use throughout the project.
We can break them up as much as we want or just keep them all in one.
I mean, you can do whatever you want. The world is your oyster. Unless
you hate oysters, then the world is your peanut butter & jelly sandwich.
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Alert Styles

If you want to use these alerts in your design, you can. If not,
you can just remove this stylesheet.

******************************************************************/
.alert-help, .alert-info, .alert-error, .alert-success {
  margin: 10px;
  padding: 5px 18px;
  border: 1px solid;
}

.alert-help {
  border-color: #e8dc59;
  background: #ebe16f;
}

.alert-info {
  border-color: #bfe4f4;
  background: #d5edf8;
}

.alert-error {
  border-color: #f8cdce;
  background: #fbe3e4;
}

.alert-success {
  border-color: #deeaae;
  background: #e6efc2;
}

/******************************************************************
Site Name:
Author:

Stylesheet: Button Styles

Buttons are a pretty important part of your site's style, so it's
important to have a consistent baseline for them. Use this stylesheet
to create all kinds of buttons.

Helpful Links:
http://galp.in/blog/2011/08/02/the-ui-guide-part-1-buttons/

******************************************************************/
/*********************
BUTTON DEFAULTS
We're gonna use a placeholder selector here
so we can use common styles. We then use this
to load up the defaults in all our buttons.

Here's a quick video to show how it works:
http://www.youtube.com/watch?v=hwdVpKiJzac

*********************/
.tp-caption.rev-btn {
  border: 0px !important;
  font-size: 14px !important;
  font-weight: normal;
  line-height: normal !important;
  text-transform: uppercase;
  min-height: 41px !important;
  padding: 10px 20px !important;
}

.wp-block-buttons .wp-block-button a.wp-block-button__link,
.tribe-checkout-backlinks .tribe-checkout-backlink,
button.tribe-common-c-btn,
a.tribe-events-c-small-cta__link.tribe-common-cta,
.tribe-common.event-tickets .tribe-common-c-btn:disabled,
.tribe-common.event-tickets a.tribe-common-c-btn:disabled,
.woocommerce input.button.alt, input[type="submit"].alt, a.button.alt, .woocommerce a.button.alt, button.alt {
  display: inline-block;
  position: relative;
  font-family: "futura-pt", Helvetica, Arial, sans-serif;
  text-decoration: none;
  font-size: 14px !important;
  font-weight: normal !important;
  text-transform: uppercase;
  padding: 10px 20px !important;
  background-color: #72aeb6 !important;
  border: 2px solid #72aeb6 !important;
  color: #fff !important;
  border-radius: 0px !important;
  transition: ease-in all .2s;
  cursor: pointer;
}

.wp-block-buttons .wp-block-button a.wp-block-button__link:hover, .wp-block-buttons .wp-block-button a.wp-block-button__link:focus,
.tribe-checkout-backlinks .tribe-checkout-backlink:hover,
.tribe-checkout-backlinks .tribe-checkout-backlink:focus,
button.tribe-common-c-btn:hover,
button.tribe-common-c-btn:focus,
a.tribe-events-c-small-cta__link.tribe-common-cta:hover,
a.tribe-events-c-small-cta__link.tribe-common-cta:focus,
.tribe-common.event-tickets .tribe-common-c-btn:disabled:hover,
.tribe-common.event-tickets .tribe-common-c-btn:disabled:focus,
.tribe-common.event-tickets a.tribe-common-c-btn:disabled:hover,
.tribe-common.event-tickets a.tribe-common-c-btn:disabled:focus,
.woocommerce input.button.alt:hover,
.woocommerce input.button.alt:focus, input[type="submit"].alt:hover, input[type="submit"].alt:focus, a.button.alt:hover, a.button.alt:focus, .woocommerce a.button.alt:hover, .woocommerce a.button.alt:focus, button.alt:hover, button.alt:focus {
  background-color: #f79026 !important;
  border: 2px solid #f79026 !important;
  color: #fff !important;
  text-decoration: none;
  outline: none;
}

.tribe-common.event-tickets .tribe-common-c-btn:disabled,
.tribe-common.event-tickets a.tribe-common-c-btn:disabled {
  background-color: #999 !important;
  border: 2px solid #999 !important;
  color: #ccc !important;
}

.tribe-common.event-tickets .tribe-common-c-btn:disabled:hover, .tribe-common.event-tickets .tribe-common-c-btn:disabled:focus,
.tribe-common.event-tickets a.tribe-common-c-btn:disabled:hover,
.tribe-common.event-tickets a.tribe-common-c-btn:disabled:focus {
  background-color: #999 !important;
  border: 2px solid #999 !important;
  color: #ccc !important;
}

.tribe-checkout-backlinks .tribe-checkout-backlink {
  margin: 0 10px 10px 0;
}

/*
An example button.
You can use this example if you want. Just replace all the variables
and it will create a button dependant on those variables.
*/
#content button:not(.tribe-events-c-subscribe-dropdown__button-text),
#content a.button {
  min-width: 200px;
  text-align: center;
}

.tribe-tickets__tickets-item-quantity button {
  min-width: 0 !important;
}

#sidebarcta a.button {
  background-color: transparent;
  color: #000;
  font-size: 16px;
  line-height: 16px;
  font-weight: 500;
  width: 100%;
  max-width: 200px;
  padding: 15px 0px !important;
  border: 2px solid #000;
  font-style: italic;
  transition: ease-in all .2s;
}

#sidebarcta a.button:hover {
  color: #fff;
  background-color: #f79026;
  transition: ease-in all .2s;
  border-color: #f79026;
}

/******************************************************************
Site Name:
Author:

Stylesheet: Form Styles

We put all the form and button styles in here to setup a consistent
look. If we need to customize them, we can do this in the main
stylesheets and just override them. Easy Peasy.

You're gonna see a few data-uri thingies down there. If you're not
sure what they are, check this link out:
http://css-tricks.com/data-uris/
If you want to create your own, use this helpful link:
http://websemantics.co.uk/online_tools/image_to_data_uri_convertor/

******************************************************************/
/*********************
INPUTS
*********************/
label {
  text-transform: uppercase;
  color: #000;
  font-size: 14px;
  line-height: 14px;
  font-weight: 700;
  font-style: italic;
}

input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
select,
textarea,
.field {
  display: block;
  height: 40px;
  padding: 0 10px;
  margin-bottom: 16px;
  font-weight: 200;
  color: #797979;
  font-family: "futura-pt", Helvetica, Arial, sans-serif;
  border-radius: 0px;
  vertical-align: middle;
  box-shadow: none;
  border: 0;
  width: 100%;
  max-width: 400px;
  background-color: #fff;
  transition: ease-in all .2s;
  border: 1px solid #ddd;
}

input[type="text"]:focus, input[type="text"]:active,
input[type="password"]:focus,
input[type="password"]:active,
input[type="datetime"]:focus,
input[type="datetime"]:active,
input[type="datetime-local"]:focus,
input[type="datetime-local"]:active,
input[type="date"]:focus,
input[type="date"]:active,
input[type="month"]:focus,
input[type="month"]:active,
input[type="time"]:focus,
input[type="time"]:active,
input[type="week"]:focus,
input[type="week"]:active,
input[type="number"]:focus,
input[type="number"]:active,
input[type="email"]:focus,
input[type="email"]:active,
input[type="url"]:focus,
input[type="url"]:active,
input[type="search"]:focus,
input[type="search"]:active,
input[type="tel"]:focus,
input[type="tel"]:active,
input[type="color"]:focus,
input[type="color"]:active,
select:focus,
select:active,
textarea:focus,
textarea:active,
.field:focus,
.field:active {
  background-color: #fff;
  color: #797979;
  border-color: #72aeb6;
  outline: none;
}

input[type="text"].error, input[type="text"].is-invalid,
input[type="password"].error,
input[type="password"].is-invalid,
input[type="datetime"].error,
input[type="datetime"].is-invalid,
input[type="datetime-local"].error,
input[type="datetime-local"].is-invalid,
input[type="date"].error,
input[type="date"].is-invalid,
input[type="month"].error,
input[type="month"].is-invalid,
input[type="time"].error,
input[type="time"].is-invalid,
input[type="week"].error,
input[type="week"].is-invalid,
input[type="number"].error,
input[type="number"].is-invalid,
input[type="email"].error,
input[type="email"].is-invalid,
input[type="url"].error,
input[type="url"].is-invalid,
input[type="search"].error,
input[type="search"].is-invalid,
input[type="tel"].error,
input[type="tel"].is-invalid,
input[type="color"].error,
input[type="color"].is-invalid,
select.error,
select.is-invalid,
textarea.error,
textarea.is-invalid,
.field.error,
.field.is-invalid {
  color: #fbe3e4;
  border-color: #fbe3e4;
  background-color: #fff;
  outline-color: #fbe3e4;
}

input[type="text"].success, input[type="text"].is-valid,
input[type="password"].success,
input[type="password"].is-valid,
input[type="datetime"].success,
input[type="datetime"].is-valid,
input[type="datetime-local"].success,
input[type="datetime-local"].is-valid,
input[type="date"].success,
input[type="date"].is-valid,
input[type="month"].success,
input[type="month"].is-valid,
input[type="time"].success,
input[type="time"].is-valid,
input[type="week"].success,
input[type="week"].is-valid,
input[type="number"].success,
input[type="number"].is-valid,
input[type="email"].success,
input[type="email"].is-valid,
input[type="url"].success,
input[type="url"].is-valid,
input[type="search"].success,
input[type="search"].is-valid,
input[type="tel"].success,
input[type="tel"].is-valid,
input[type="color"].success,
input[type="color"].is-valid,
select.success,
select.is-valid,
textarea.success,
textarea.is-valid,
.field.success,
.field.is-valid {
  color: #e6efc2;
  border-color: #e6efc2;
  background-color: #fff;
  outline-color: #e6efc2;
}

input[type="text"][disabled], input[type="text"].is-disabled,
input[type="password"][disabled],
input[type="password"].is-disabled,
input[type="datetime"][disabled],
input[type="datetime"].is-disabled,
input[type="datetime-local"][disabled],
input[type="datetime-local"].is-disabled,
input[type="date"][disabled],
input[type="date"].is-disabled,
input[type="month"][disabled],
input[type="month"].is-disabled,
input[type="time"][disabled],
input[type="time"].is-disabled,
input[type="week"][disabled],
input[type="week"].is-disabled,
input[type="number"][disabled],
input[type="number"].is-disabled,
input[type="email"][disabled],
input[type="email"].is-disabled,
input[type="url"][disabled],
input[type="url"].is-disabled,
input[type="search"][disabled],
input[type="search"].is-disabled,
input[type="tel"][disabled],
input[type="tel"].is-disabled,
input[type="color"][disabled],
input[type="color"].is-disabled,
select[disabled],
select.is-disabled,
textarea[disabled],
textarea.is-disabled,
.field[disabled],
.field.is-disabled {
  cursor: not-allowed;
  border-color: #f1f1f1;
  opacity: 0.6;
}

input[type="text"][disabled]:focus, input[type="text"][disabled]:active, input[type="text"].is-disabled:focus, input[type="text"].is-disabled:active,
input[type="password"][disabled]:focus,
input[type="password"][disabled]:active,
input[type="password"].is-disabled:focus,
input[type="password"].is-disabled:active,
input[type="datetime"][disabled]:focus,
input[type="datetime"][disabled]:active,
input[type="datetime"].is-disabled:focus,
input[type="datetime"].is-disabled:active,
input[type="datetime-local"][disabled]:focus,
input[type="datetime-local"][disabled]:active,
input[type="datetime-local"].is-disabled:focus,
input[type="datetime-local"].is-disabled:active,
input[type="date"][disabled]:focus,
input[type="date"][disabled]:active,
input[type="date"].is-disabled:focus,
input[type="date"].is-disabled:active,
input[type="month"][disabled]:focus,
input[type="month"][disabled]:active,
input[type="month"].is-disabled:focus,
input[type="month"].is-disabled:active,
input[type="time"][disabled]:focus,
input[type="time"][disabled]:active,
input[type="time"].is-disabled:focus,
input[type="time"].is-disabled:active,
input[type="week"][disabled]:focus,
input[type="week"][disabled]:active,
input[type="week"].is-disabled:focus,
input[type="week"].is-disabled:active,
input[type="number"][disabled]:focus,
input[type="number"][disabled]:active,
input[type="number"].is-disabled:focus,
input[type="number"].is-disabled:active,
input[type="email"][disabled]:focus,
input[type="email"][disabled]:active,
input[type="email"].is-disabled:focus,
input[type="email"].is-disabled:active,
input[type="url"][disabled]:focus,
input[type="url"][disabled]:active,
input[type="url"].is-disabled:focus,
input[type="url"].is-disabled:active,
input[type="search"][disabled]:focus,
input[type="search"][disabled]:active,
input[type="search"].is-disabled:focus,
input[type="search"].is-disabled:active,
input[type="tel"][disabled]:focus,
input[type="tel"][disabled]:active,
input[type="tel"].is-disabled:focus,
input[type="tel"].is-disabled:active,
input[type="color"][disabled]:focus,
input[type="color"][disabled]:active,
input[type="color"].is-disabled:focus,
input[type="color"].is-disabled:active,
select[disabled]:focus,
select[disabled]:active,
select.is-disabled:focus,
select.is-disabled:active,
textarea[disabled]:focus,
textarea[disabled]:active,
textarea.is-disabled:focus,
textarea.is-disabled:active,
.field[disabled]:focus,
.field[disabled]:active,
.field.is-disabled:focus,
.field.is-disabled:active {
  background-color: #d5edf8;
}

textarea::placeholder, select::placeholder, input::placeholder {
  color: #aaa;
}

input[type="password"] {
  letter-spacing: 0.3em;
}

textarea {
  max-width: 100%;
  min-height: 200px;
  padding: 5px 10px !important;
  line-height: 1.5em;
}

.select2-container--default .select2-selection--single {
  background-color: transparent;
  border: none !important;
  padding: 0px !important;
  color: #797979;
  margin-top: 5px;
  border-radius: 0px !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  padding: 0px !important;
  color: #797979;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 26px;
  position: absolute;
  top: 6px;
  right: 1px;
  width: 20px;
}

.select2-container,
select {
  -webkit-appearance: menulist-button;
  /* 1 */
  -moz-appearance: menulist-button;
  border-radius: 0px;
  display: block;
  height: 40px;
  line-height: 1em;
  padding: 0 10px;
  margin-bottom: 14px;
  color: #797979;
  border-radius: 0px;
  vertical-align: middle;
  box-shadow: none;
  border: 0;
  width: 100%;
  max-width: 400px;
  background-color: #fff;
  border: 1px solid #ddd;
}

input:-webkit-autofill, textarea:-webkit-autofill, select:-webkit-autofill {
  background-color: #faffff !important;
  background-image: none;
  color: black;
}

form input[type="submit"] {
  background-color: transparent;
  color: #000;
  font-size: 16px;
  line-height: 16px;
  font-weight: 500;
  text-transform: uppercase !important;
  width: 100%;
  max-width: 200px;
  padding: 15px 0px !important;
  border: 2px solid #000;
  font-style: italic;
  transition: ease-in all .2s;
}

form input[type="submit"]:hover {
  color: #fff;
  background-color: #f79026;
  transition: ease-in all .2s;
  border-color: #f79026;
}

/*********************
BASE (MOBILE) SIZE
This are the mobile styles. It's what people see on their phones. If
you set a great foundation, you won't need to add too many styles in
the other stylesheets. Remember, keep it light: Speed is Important.
*********************/
/******************************************************************
Site Name: Ogunquit Museum
Author: P1WS

Stylesheet: Base Mobile Stylesheet

Be light and don't over style since everything here will be
loaded by mobile devices. You want to keep it as minimal as
possible. This is called at the top of the main stylsheet
and will be used across all viewports.

******************************************************************/
/*********************
GENERAL STYLES
*********************/
body {
  font-family: "futura-pt", Helvetica, Arial, sans-serif;
  font-size: 18px;
  line-height: 26px;
  color: #797979;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#content {
  overflow: hidden;
}

#content.defaultpage {
  padding: 75px 0px;
}

.nav_popup {
  background-color: rgba(0, 0, 0, 0.75);
  display: none !important;
  transition: ease-in all 0.2s;
  position: absolute;
  width: 100%;
  top: 0;
  height: auto;
  z-index: 9999;
}

.nav_popup .popup-icons {
  float: right;
  font-size: 30px;
  margin-top: 75px;
}

.nav_popup .popup-icons img,
.nav_popup .popup-icons svg,
.nav_popup .popup-icons i {
  cursor: pointer;
  transition: ease-in all 0.5s;
  margin: 0px 10px;
  z-index: 9999;
}

.nav_popup .popup-icons #searchicon {
  color: #fff;
}

.nav_popup .popup-icons #searchicon:hover {
  color: #f79026;
}

.nav_popup .popup-icons #closeout {
  color: #f79026;
}

.nav_popup .popup-icons #closeout:hover {
  opacity: 0.75;
}

.nav_popup .popmenu-wrap {
  position: static;
  width: 100%;
  height: 100%;
  top: 110px;
}

.nav_popup .search_style2 {
  background-color: transparent !important;
  margin: 0 10px 30px 0;
}

.nav_popup .search_style2 form {
  width: 280px;
  max-width: 280px;
  float: right;
}

.nav_popup .search_style2 button {
  color: #fff;
  background-color: transparent !important;
  border: 0;
  float: right;
  display: inline-block;
  margin-top: -50px;
  width: 30px !important;
  min-width: 0px !important;
}

.nav_popup .search_style2 input {
  color: #fff;
  background-color: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.75) !important;
}

.nav_popup .search_style2 input:focus, .nav_popup .search_style2 input:active {
  border: 1px solid #fff !important;
}

.nav_popup .search_style2 input::-webkit-input-placeholder,
.nav_popup .search_style2 input::placeholder {
  color: rgba(255, 255, 255, 0.75) !important;
}

.nav_popup #popupmenu ul {
  display: inline-block;
  width: 100%;
}

.nav_popup #popupmenu ul li {
  display: block;
  text-align: right;
  width: 100%;
}

.nav_popup #popupmenu ul li a {
  font-size: 24px;
  line-height: 1;
  padding: 8px 0px;
  text-align: left;
  text-decoration: none;
  transition: ease-in all 0.5s;
  color: #fff;
  width: 280px;
  float: right;
}

.nav_popup #popupmenu ul li a:hover {
  text-decoration: underline;
}

.nav_popup #popupmenu ul.sub-menu li a {
  padding-left: 25px;
}

.nav_popup #popupmenu ul.sub-menu ul.sub-menu li a {
  padding-left: 50px;
}

.nav_popup #popupmenu ul.orangemenu a {
  color: #f79026;
}

.nav_popup.active {
  display: grid !important;
}

.header #top-bar-nav,
.header #mobile-menu-icon.navright {
  display: none;
}

/********************
WORDPRESS BODY CLASSES
style a page via class
********************/
/* for sites that are read right to left (i.e. hebrew) */
.hp_section.altbg {
  background-color: #f1f1f1;
}

.hp_section {
  display: grid;
  width: 100%;
}

.hp_section .a_btn-wrap {
  height: 100px;
  border: 2px solid #000;
  background-color: transparent;
  border-radius: 100px;
  transition: ease-in all 0.2s;
  cursor: pointer;
  float: right;
  display: table;
  width: 100px;
}

.hp_section .a_btn-wrap:hover {
  background-color: #222222;
}

.hp_section .a_btn-wrap:hover a {
  color: #fff !important;
}

.hp_section a.hp_btn {
  font-weight: 600;
  font-style: italic;
  text-transform: uppercase;
  text-align: center;
  color: #222222 !important;
  display: table-cell;
  text-decoration: none !important;
  line-height: 14px;
  font-size: 14px;
  vertical-align: middle;
  margin: auto;
}

.hp_section span.suptext,
.hp_section h1.suptext {
  letter-spacing: 1px;
  font-size: 16px;
  margin-top: 0px !important;
  line-height: 16px;
  font-weight: 400 !important;
  text-transform: uppercase;
}

.hp_section span.suptext,
.hp_section h1.suptext {
  text-align: center;
  color: #aaa;
  margin-bottom: 25px;
}

.hp_section h2.h1,
.hp_section h1.h1,
.hp_section span.h1 {
  text-align: center;
  display: block;
  color: #000;
  font-style: italic;
  font-size: 28px;
  text-transform: none !important;
  font-weight: 400;
  line-height: 40px;
}

.hp_section h2.h1 {
  margin: 15px 0 0 0;
  text-align: left;
}

#h1_text {
  padding: 50px 0px 100px;
}

.home .hp_section.altbg {
  background-color: #f1f1f1;
}

.home .hp_section {
  display: grid;
  width: 100%;
}

.home .hp_section .a_btn-wrap {
  height: 100px;
  border: 2px solid #000;
  background-color: transparent;
  border-radius: 100px;
  transition: ease-in all 0.2s;
  cursor: pointer;
  float: right;
  display: table;
  width: 100px;
}

.home .hp_section .a_btn-wrap:hover {
  background-color: #000;
}

.home .hp_section .a_btn-wrap:hover a {
  color: #fff;
}

.home .hp_section a.hp_btn {
  font-weight: 600;
  font-style: italic;
  text-transform: uppercase;
  text-align: center;
  color: #000;
  display: table-cell;
  text-decoration: none !important;
  line-height: 14px;
  font-size: 14px;
  vertical-align: middle;
  margin: auto;
}

.home .hp_section span.suptext,
.home .hp_section h1.suptext {
  letter-spacing: 1px;
  font-size: 16px;
  margin-top: 0px !important;
  line-height: 16px;
  font-weight: 400 !important;
  text-transform: uppercase;
}

.home .hp_section h1.suptext {
  text-align: center;
  color: #aaa;
  margin-bottom: 25px;
}

.home .hp_section span.h1 {
  text-align: center;
  display: block;
  color: #000;
  font-style: italic;
  font-size: 40px;
  text-transform: none !important;
  font-weight: 400;
  line-height: 50px;
}

.home #h1_text {
  padding-bottom: 25px;
}

.home #h1_text .home-block {
  /*            padding: 25px;*/
}

.home #h1_text .home-block .home-block-inner {
  padding: 25px;
}

.home #h1_text .home-block .home-block-inner.gray {
  background-color: #f1f1f1;
}

.home #h1_text .home-block .home-block-inner.gray .h2 {
  color: #222222;
}

.home #h1_text .home-block .home-block-inner.gray .h2 a {
  color: #f79026;
}

.home #h1_text .home-block .home-block-inner.gray .h2 a:hover {
  color: #72aeb6;
}

.home #h1_text .home-block .home-block-inner.darkgray {
  background-color: #222222;
}

.home #h1_text .home-block .home-block-inner.darkgray .h2 {
  color: #fff;
}

.home #h1_text .home-block .home-block-inner.darkgray .h2 a {
  color: #72aeb6;
}

.home #h1_text .home-block .home-block-inner.darkgray .h2 a:hover {
  color: #f79026;
}

.home #h1_text .home-block .home-block-inner.orange {
  background-color: #f79026;
}

.home #h1_text .home-block .home-block-inner.orange .h2 {
  color: #fff;
}

.home #h1_text .home-block .home-block-inner.orange .h2 a {
  color: #222222;
}

.home #h1_text .home-block .home-block-inner.orange .h2 a:hover {
  color: #ddd;
}

.home #h1_text .home-block .home-block-inner.bluegreen {
  background-color: #72aeb6;
}

.home #h1_text .home-block .home-block-inner.bluegreen .h2 {
  color: #fff;
}

.home #h1_text .home-block .home-block-inner.bluegreen .h2 a {
  color: #222222;
}

.home #h1_text .home-block .home-block-inner.bluegreen .h2 a:hover {
  color: #ddd;
}

.home #h1_text .home-block .home-block-inner p {
  font-size: 16px;
}

.home #h1_text .home-block .home-block-inner .h2 {
  font-size: 12px;
  line-height: 1.4;
}

.home #h1_text .home-block.single {
  margin: 0 20%;
  max-width: 60%;
}

@media (max-width: 967px) {
  .home #h1_text .home-block.single {
    margin: 0 10%;
    max-width: 80%;
  }
}

@media (max-width: 767px) {
  .home #h1_text .home-block.single {
    margin: 0 5%;
    max-width: 90%;
  }
}

@media (max-width: 600px) {
  .home #h1_text .home-block.single {
    margin: 0 auto;
  }
}

.home #s1 {
  border-bottom: 1px solid #ddd;
}

.home #s1,
.home #s2,
.home #s3 {
  padding: 50px 0px;
}

.home #s1 span.suptext,
.home #s1 span.h1,
.home #s2 span.suptext,
.home #s2 span.h1,
.home #s3 span.suptext,
.home #s3 span.h1 {
  text-align: left;
  margin-top: 15px;
}

/* home page */
.blogsliderarrows .slick-prev, .blogsliderarrows .slick-next {
  padding: 0px !important;
}

@media (max-width: 767px) {
  .blogsliderarrows {
    float: none !important;
    padding: 50px 0px;
    text-align: center;
    display: block;
    margin: auto !important;
  }
}

.archive .bg-tan,
.blog .bg-tan {
  background-color: #EBE2CC;
}

.archive .bg-gray,
.blog .bg-gray {
  background-color: #ebedf4;
}

.archive .bg-blue,
.blog .bg-blue {
  background-color: #000;
}

.archive #sidebar1.sidebar,
.blog #sidebar1.sidebar {
  padding-right: 0px;
}

.archive #sidebar1.fixed,
.blog #sidebar1.fixed {
  position: fixed;
  max-width: 375px;
  top: 185px;
}

.archive #main,
.blog #main {
  float: right;
}

.archive article,
.blog article {
  padding-bottom: 10px;
}

.archive article .articlewrap,
.blog article .articlewrap {
  padding: 25px;
}

.archive article a#blogimg,
.blog article a#blogimg {
  display: block;
}

.archive article a#blogimg div,
.blog article a#blogimg div {
  height: 150px;
  background-size: cover;
  background-position: 50% 50%;
  margin: auto;
  width: 150px;
  border-radius: 100%;
  float: left;
  margin-right: 20px;
}

@media (max-width: 767px) {
  .archive article a#blogimg,
  .blog article a#blogimg {
    margin-bottom: 25px;
  }
  .archive article a#blogimg div,
  .blog article a#blogimg div {
    margin: auto !important;
    display: block !important;
    float: none !important;
  }
}

.archive article .entry-content,
.blog article .entry-content {
  min-height: 90px;
  display: table;
}

.archive article .entry-content h2,
.blog article .entry-content h2 {
  margin-top: 0px !important;
}

.archive article .entry-content h2 a,
.blog article .entry-content h2 a {
  color: #000;
  text-decoration: none;
  margin: 0px;
}

.archive article .entry-content h2 a:hover,
.blog article .entry-content h2 a:hover {
  color: #797979;
}

.archive article .entry-content p,
.blog article .entry-content p {
  color: #797979;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0px !important;
}

.archive article .entry-content p b span,
.archive article .entry-content p span,
.blog article .entry-content p b span,
.blog article .entry-content p span {
  font-family: "futura-pt", Helvetica, Arial, sans-serif !important;
  font-size: initial !important;
}

.archive article footer a.button,
.blog article footer a.button {
  margin-top: 25px;
  text-decoration: none;
  color: #fff;
}

.archive article:first-child,
.blog article:first-child {
  width: 100%;
  float: none;
  margin: auto;
  display: block;
}

.archive article:nth-child(odd),
.blog article:nth-child(odd) {
  padding-right: 0px;
}

@media (max-width: 1029px) {
  .archive #sidebar1,
  .archive #sidebar1.fixed,
  .blog #sidebar1,
  .blog #sidebar1.fixed {
    position: static !important;
    order: 2;
    margin-top: 50px !important;
  }
  .archive #inner-content,
  .blog #inner-content {
    display: grid;
  }
}

/* blog template page */
/* archive page */
/* date archive page */
/* replace the number to the corresponding page number */
/* search page */
/* search result page */
/* no results search page */
/* individual paged search (i.e. body.search-paged-3) */
.error404 #inner-content {
  text-align: center !important;
}

.error404 input[type="search"] {
  margin: auto;
  margin-bottom: 10px;
  display: block;
}

/* 404 page */
/* single post page */
/* individual post page by id (i.e. body.postid-73) */
/* individual paged single (i.e. body.single-paged-3) */
/* attatchment page */
/* individual attatchment page (i.e. body.attachmentid-763) */
/* style mime type pages */
/* author page */
/* user nicename (i.e. body.author-samueladams) */
/* paged author archives (i.e. body.author-paged-4) for page 4 */
/* category page */
/* individual category page (i.e. body.category-6) */
/* replace the number to the corresponding page number */
/* tag page */
/* individual tag page (i.e. body.tag-news) */
/* replace the number to the corresponding page number */
/* custom page template page */
/* individual page template (i.e. body.page-template-contact-php */
/* replace the number to the corresponding page number */
/* parent page template */
/* child page template */
/* replace the number to the corresponding page number */
/* if user is logged in */
/* paged items like search results or archives */
/* individual paged (i.e. body.paged-3) */
/*********************
LAYOUT & GRID STYLES
*********************/
.wrap {
  width: 96%;
  margin: 0 auto;
}

/*********************
LINK STYLES
*********************/
:focus {
  outline: 0px !important;
}

a,
a:visited {
  transition: ease all 0.5s;
  /* on hover */
  /* on click */
  /* mobile tap color */
}

a:hover, a:focus,
a:visited:hover,
a:visited:focus {
  outline: none !important;
}

a:link,
a:visited:link {
  /*
		this highlights links on iPhones/iPads.
		so it basically works like the :hover selector
		for mobile devices.
		*/
}

/******************************************************************
H1, H2, H3, H4, H5 STYLES
******************************************************************/
legend,
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: "futura-pt", Helvetica, Arial, sans-serif;
  color: #000;
  text-rendering: optimizelegibility;
  font-weight: 500;
  /*
	if you're going to use webfonts, be sure to check your weights
	http://css-tricks.com/watch-your-font-weight/
	*/
  /* removing text decoration from all headline links */
}

legend a,
h1 a,
.h1 a,
h2 a,
.h2 a,
h3 a,
.h3 a,
h4 a,
.h4 a,
h5 a,
.h5 a,
h6 a,
.h6 a {
  text-decoration: none;
}

h1,
.h1 {
  font-size: 2.5em;
  line-height: 1.333em;
}

h2,
.h2 {
  font-size: 20px;
  line-height: 20px;
  margin-bottom: 0.375em;
  text-transform: none !important;
  font-style: italic;
}

h3,
.h3 {
  font-size: 16px;
  line-height: 16px;
  display: block;
  width: 100%;
  margin-bottom: 0.375em;
  text-transform: none !important;
  font-style: italic;
}

.m0 {
  margin: 0px !important;
}

.mt0 {
  margin-top: 0px !important;
}

.tp-caption h2,
.tp-caption h3 {
  text-align: center;
  color: #fff;
}

.tp-caption h2 {
  font-size: 50px;
  margin-top: 50px;
  line-height: 50px;
}

.tp-caption h3 {
  font-size: 30px;
  margin-top: 0px;
  line-height: 30px;
}

h4,
.h4 {
  color: #72aeb6;
}

h6,
.h6 {
  color: #f79026;
}

h6,
.h6,
h5,
.h5,
legend,
h4,
.h4 {
  font-size: 16px;
  text-transform: uppercase;
  line-height: 16px;
}

#p_sec_5 h4,
#p_sec_5 h5,
#p_sec_5 h6,
#sec_5 h4,
#sec_5 h5,
#sec_5 h6 {
  color: #000 !important;
}

#p_sec_5 h4:hover,
#p_sec_5 h5:hover,
#p_sec_5 h6:hover,
#sec_5 h4:hover,
#sec_5 h5:hover,
#sec_5 h6:hover {
  color: #000 !important;
}

/*********************
HEADER STYLES
*********************/
.header {
  background-color: transparent;
  width: 100%;
  position: fixed;
  /* top: 0; */
  z-index: 999;
}

.header #topnav {
  display: none;
}

.header .navright {
  float: right;
  background-color: #222222;
  display: grid;
  width: 50px;
  /*		height: 50px;*/
  cursor: pointer;
  border-radius: 100px;
  transition: ease-in all 0.2s;
}

.header .navright:hover img,
.header .navright:hover svg {
  opacity: 1;
}

.header .navright img,
.header .navright svg {
  font-size: 24px;
  line-height: 24px;
  opacity: 0.75;
  color: #fff;
  display: grid;
  transition: ease-in all 0.2s;
  vertical-align: middle;
  text-align: center;
  margin: 27px auto;
}

.header .navright img:hover,
.header .navright svg:hover {
  opacity: 1;
}

.header .navright svg {
  height: 24px;
  width: 24px;
}

#inner-content.hpslider .tp-caption.smalltext {
  font-family: "futura-pt", Helvetica, Arial, sans-serif !important;
  font-size: 16px !important;
  font-weight: 100 !important;
  letter-spacing: 1px !important;
  line-height: 16px !important;
}

#inner-content.hpslider .tp-caption.rev-btn {
  white-space: nowrap !important;
  font-size: 24px !important;
  line-height: 24px !important;
  padding: 20px 20px !important;
  min-width: 250px !important;
  border: 2px solid #fff !important;
}

#logo {
  z-index: 9999;
  display: block;
  float: left;
}

#logo a {
  display: inline-grid;
}

#logo a img {
  max-height: 75px;
  z-index: 9999;
  /* filter: grayscale(100%) brightness(100); */
  width: auto;
  max-width: 100%;
}

/*********************
NAVIGATION STYLES
*********************/
/*
all navs have a .nav class applied via
the wp_menu function; this is so we can
easily write one group of styles for
the navs on the site so our css is cleaner
and more scalable.
*/
.nav {
  border-bottom: 0;
  margin: 0;
  /* end .menu li */
  /* highlight current page */
  /* end current highlighters */
}

.nav li {
  /*
		so you really have to rethink your dropdowns for mobile.
		you don't want to have it expand too much because the
		screen is so small. How you manage your menu should
		depend on the project. Here's some great info on it:
		http://www.alistapart.com/articles/organizing-mobile/
		*/
}

.nav li a {
  display: block;
  text-decoration: none;
  padding: 0.75em;
  /*
			remember this is for mobile ONLY, so there's no need
			to even declare hover styles here, you can do it in
			the style.scss file where it's relevant. We want to
			keep this file as small as possible!
			*/
}

.nav li ul.sub-menu li a,
.nav li ul.children li a {
  padding-left: 30px;
}

/* end .nav */
/*********************
POSTS & CONTENT STYLES
*********************/
.text-right {
  text-align: right;
}

.hentry {
  background-color: #fff;
  border-radius: 3px;
  margin-bottom: 1.5em;
}

.hentry header {
  border-bottom: 1px solid #ebedf4;
  padding: 1.5em;
}

.hentry footer {
  padding: 1.5em;
  border-top: 1px solid #ebedf4;
}

.hentry footer p {
  margin: 0;
}

/* end .hentry */
.single-title,
.page-title,
.entry-title {
  margin: 0;
}

.page-title {
  margin-bottom: 25px;
}

/* want to style individual post classes? Booya! */
/* post by id (i.e. post-3) */
/* general post style */
/* general article on a page style */
/* general style on an attatchment */
/* sticky post style */
/* hentry class */
/* style by category (i.e. category-videos) */
/* style by tag (i.e. tag-news) */
/* post meta */
.byline {
  color: #aaa;
  font-style: italic;
  margin: 0;
}

/* entry content */
.page-content,
.entry-content,
#content {
  /*
		image alignment on a screen this size may be
		a bit difficult. It's set to start aligning
		and floating images at the next breakpoint,
		but it's up to you. Feel free to change it up.
	*/
}

.page-content hr,
.entry-content hr,
#content hr {
  margin: 50px 0px !important;
  border: none !important;
  background-color: #ebedf4;
  height: 1px;
}

.page-content a:not(.wp-block-button__link),
.entry-content a:not(.wp-block-button__link),
#content a:not(.wp-block-button__link) {
  color: #72aeb6;
  transition: ease-in all 0.2s;
  font-style: italic;
  text-decoration: none !important;
  border: none !important;
}

.page-content a:not(.wp-block-button__link):hover,
.entry-content a:not(.wp-block-button__link):hover,
#content a:not(.wp-block-button__link):hover {
  color: #000;
}

.page-content a.button,
.entry-content a.button,
#content a.button {
  background-color: #72aeb6;
  color: #fff !important;
}

.page-content a.button:hover,
.entry-content a.button:hover,
#content a.button:hover {
  background-color: #f79026;
}

.page-content p,
.entry-content p,
#content p {
  margin-top: 0px !important;
  margin-bottom: 20px !important;
}

.page-content p:last-child,
.entry-content p:last-child,
#content p:last-child {
  margin-bottom: 0px !important;
}

.page-content ul,
.page-content ol,
.entry-content ul,
.entry-content ol,
#content ul,
#content ol {
  margin-top: 0px;
  margin-bottom: 25px;
  margin-left: 10px !important;
}

.page-content table,
.entry-content table,
#content table {
  width: 100%;
  border: 1px solid #ddd;
  margin-bottom: 1.5em;
}

.page-content table caption,
.entry-content table caption,
#content table caption {
  margin: 0 0 7px;
  font-size: 0.75em;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-content tr,
.entry-content tr,
#content tr {
  border-bottom: 1px solid #ddd;
}

.page-content tr:nth-child(even),
.entry-content tr:nth-child(even),
#content tr:nth-child(even) {
  background-color: #f1f1f1;
}

.page-content td,
.entry-content td,
#content td {
  padding: 15px 25px;
  border-right: 1px solid #ddd;
}

.page-content td:last-child,
.entry-content td:last-child,
#content td:last-child {
  border-right: 0;
}

.page-content th,
.entry-content th,
#content th {
  background-color: #72aeb6;
  padding: 15px 25px;
  text-align: left;
  color: #fff;
  border-bottom: 1px solid #ddd;
}

.page-content th:last-child,
.entry-content th:last-child,
#content th:last-child {
  border-right: 0;
}

.page-content blockquote,
.entry-content blockquote,
#content blockquote {
  margin: 0 0 1.5em 0.75em;
  padding: 0 0 0 0.75em;
  border-left: 3px solid #f79026;
  font-style: italic;
  color: #797979;
}

.page-content blockquote p,
.entry-content blockquote p,
#content blockquote p {
  margin-bottom: 0px !important;
}

.page-content dd,
.entry-content dd,
#content dd {
  margin-left: 0;
  font-size: 0.9em;
  color: #787878;
  margin-bottom: 1.5em;
}

.page-content img,
.entry-content img,
#content img {
  margin: 0 0 1.5em 0;
  max-width: 100%;
  height: auto;
}

.page-content .size-auto,
.page-content .size-full,
.page-content .size-large,
.page-content .size-medium,
.page-content .size-thumbnail,
.entry-content .size-auto,
.entry-content .size-full,
.entry-content .size-large,
.entry-content .size-medium,
.entry-content .size-thumbnail,
#content .size-auto,
#content .size-full,
#content .size-large,
#content .size-medium,
#content .size-thumbnail {
  max-width: 100%;
  height: auto;
}

.page-content pre,
.entry-content pre,
#content pre {
  background: #000;
  color: #ebedf4;
  font-size: 0.9em;
  padding: 1.5em;
  margin: 0 0 1.5em;
  border-radius: 3px;
}

.page-content h1,
.page-content .h1,
.entry-content h1,
.entry-content .h1,
#content h1,
#content .h1 {
  margin-top: 0px;
}

.page-content h2,
.page-content .h2,
.entry-content h2,
.entry-content .h2,
#content h2,
#content .h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  color: #222222;
  display: inline-block;
  width: 100%;
  font-size: 24px;
  font-style: italic;
  text-transform: none !important;
  font-weight: 400;
  line-height: 24px;
}

.page-content h3,
.page-content .h3,
.page-content h4,
.page-content .h4,
.entry-content h3,
.entry-content .h3,
.entry-content h4,
.entry-content .h4,
#content h3,
#content .h3,
#content h4,
#content .h4 {
  margin-top: 0px;
  margin-bottom: 10px;
  color: #000;
  display: inline-block;
  width: 100%;
  font-size: 20px;
  font-style: italic;
  text-transform: none !important;
  font-weight: 400;
  line-height: 20px;
}

.page-content h5,
.page-content .h5,
.page-content h6,
.page-content .h6,
.entry-content h5,
.entry-content .h5,
.entry-content h6,
.entry-content .h6,
#content h5,
#content .h5,
#content h6,
#content .h6 {
  color: #aaa;
  font-size: 16px;
  line-height: 16px;
  font-family: "futura-pt", Helvetica, Arial, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  margin-top: 0px;
  letter-spacing: 1px;
  margin-top: -20px;
  margin-bottom: 20px;
}

/* end .entry-content */
.wp-caption.alignright,
img.alignright {
  float: right;
  padding: 10px 20px;
  padding-right: 0px !important;
}

.wp-caption.alignleft,
img.alignleft {
  float: left;
  padding: 10px 20px;
  padding-left: 0px !important;
}

.wp-caption.alignnone,
img.alignnone,
img.aligncenter {
  text-align: center !important;
  padding: 20px 0px !important;
  margin: auto !important;
  display: block;
  margin-bottom: 20px !important;
}

.wp-caption {
  max-width: 100%;
  padding: 20px 0px;
  padding-top: 10px !important;
  /* images inside wp-caption */
}

.wp-caption img {
  max-width: 100%;
  margin-bottom: 0;
  width: 100%;
}

.wp-caption p.wp-caption-text {
  font-size: 0.85em;
  margin: 0px !important;
  margin-top: -5px !important;
  font-style: italic;
  text-align: left;
}

/* end .wp-caption */
/* image gallery styles */
/* end .gallery */
/* gallery caption styles */
.tags {
  margin: 0;
}

/******************************************************************
PAGE NAVI STYLES
******************************************************************/
#leftlinks ul {
  list-style-type: none;
  padding: 0px;
  margin: 0px;
  float: right;
}

#leftlinks ul li {
  display: inline-block;
}

#leftlinks ul li .svg-inline--fa {
  margin-right: 5px;
}

#leftlinks ul li:first-child {
  padding-left: 0px !important;
}

#leftlinks ul li:last-child {
  padding-right: 0px !important;
}

#leftlinks ul li a {
  padding: 12px 15px;
  color: #ddd;
  font-size: 18px;
  line-height: 16px;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: ease-in all 0.2s;
}

#leftlinks ul li a:hover {
  color: #72aeb6;
  opacity: 1;
}

#leftlinks ul li ul.sub-menu {
  background-color: #222222;
  text-align: left;
  display: block !important;
  padding-top: 20px;
  border: 0px !important;
}

#leftlinks ul li ul.sub-menu li a {
  padding: 10px 15px;
  border: 0px !important;
  text-decoration: none !important;
  line-height: 18px;
}

nav#topnav ul {
  display: inline-table;
}

nav#topnav ul li:hover a {
  color: #72aeb6;
}

nav#topnav ul li a {
  font-size: 16px;
  padding: 0.75em 1.5em;
  line-height: 16px;
  letter-spacing: 0.5px;
  color: #797979;
  transition: none !important;
  text-decoration: none !important;
}

nav#topnav ul li a:hover {
  text-decoration: underline;
}

nav#topnav ul li ul.sub-menu {
  background-color: rgba(255, 255, 255, 0.9);
  text-align: left;
  display: block !important;
  padding-top: 20px;
  border: 0px !important;
}

nav#topnav ul li ul.sub-menu li a {
  padding: 10px 15px;
  color: #000;
  font-size: 16px;
  border: 0px !important;
  text-decoration: none !important;
  line-height: 18px;
}

nav#topnav ul li ul.sub-menu li a:hover {
  color: #72aeb6;
}

nav#topnav ul li.mega-menu ul.sub-menu {
  column-count: 2;
}

nav#topnav ul li.mega-menu ul.sub-menu li {
  position: static;
}

nav#topnav ul li.mega-menu ul.sub-menu li a {
  display: inline-block !important;
}

li.search-icon {
  content: "\f002";
  font-family: "FontAwesome";
  display: inline-block;
  padding: 0px 10px;
  top: -15px;
  position: relative;
  line-height: 24px;
  cursor: pointer;
  transition: 0.5s ease all;
  font-size: 16px;
}

.pagination,
.wp-prev-next {
  margin: 1.5em 0;
}

.pagination {
  text-align: center;
}

.pagination ul {
  display: inline-block;
  background-color: #fff;
  white-space: nowrap;
  padding: 0;
  clear: both;
  border-radius: 3px;
}

.pagination li {
  padding: 0;
  margin: 0;
  float: left;
  display: inline;
  overflow: hidden;
  border-right: 1px solid #ddd;
}

.pagination a,
.pagination span {
  margin: 0;
  text-decoration: none;
  padding: 0;
  line-height: 1em;
  font-size: 1em;
  font-weight: normal;
  padding: 0.75em;
  min-width: 1em;
  display: block;
  color: #000;
}

.pagination a:hover, .pagination a:focus,
.pagination span:hover,
.pagination span:focus {
  background-color: #000;
  color: #fff;
}

.pagination .current {
  cursor: default;
  color: #797979;
}

.pagination .current:hover, .pagination .current:focus {
  background-color: #fff;
  color: #797979;
}

/* end .bones_page_navi */
/* fallback previous & next links */
.wp-prev-next .prev-link {
  float: left;
}

.wp-prev-next .next-link {
  float: right;
}

/* end .wp-prev-next */
/******************************************************************
COMMENT STYLES
******************************************************************/
/* h3 comment title */
#comments-title {
  padding: 0.75em;
  margin: 0;
  border-top: 1px solid #ebedf4;
  /* number of comments span */
}

.commentlist {
  margin: 0;
  list-style-type: none;
}

.comment {
  position: relative;
  clear: both;
  overflow: hidden;
  padding: 1.5em;
  border-bottom: 1px solid #ebedf4;
  /* vcard */
  /* end .commentlist .vcard */
  /* end children */
  /* general comment classes */
}

.comment .comment-author {
  padding: 7px;
  border: 0;
}

.comment .vcard {
  margin-left: 50px;
}

.comment .vcard cite.fn {
  font-weight: 700;
  font-style: normal;
}

.comment .vcard time {
  display: block;
  font-size: 0.9em;
  font-style: italic;
}

.comment .vcard time a {
  color: #aaa;
  text-decoration: none;
}

.comment .vcard time a:hover {
  text-decoration: underline;
}

.comment .vcard .avatar {
  position: absolute;
  left: 16px;
  border-radius: 50%;
}

.comment:last-child {
  margin-bottom: 0;
}

.comment .children {
  margin: 0;
  /* variations */
  /* change number for different depth */
}

.comment[class*="depth-"] {
  margin-top: 1.1em;
}

.comment.depth-1 {
  margin-left: 0;
  margin-top: 0;
}

.comment:not(.depth-1) {
  margin-top: 0;
  margin-left: 7px;
  padding: 7px;
}

.comment.odd {
  background-color: #fff;
}

.comment.even {
  background: #ebedf4;
}

/* comment meta */
/* comment content */
.comment_content p {
  margin: 0.7335em 0 1.5em;
  font-size: 1em;
  line-height: 1.5em;
}

/* end .commentlist .comment_content */
/* comment reply link */
.comment-reply-link {
  font-size: 0.9em;
  float: right;
}

/* end .commentlist .comment-reply-link */
/* edit comment link */
.comment-edit-link {
  font-style: italic;
  margin: 0 7px;
  text-decoration: none;
  font-size: 0.9em;
}

/******************************************************************
COMMENT FORM STYLES
******************************************************************/
#reply-title {
  margin: 0;
}

.logged-in-as {
  color: #aaa;
  font-style: italic;
  margin: 0;
}

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

.comment-form-comment {
  margin: 1.5em 0 0.75em;
}

.form-allowed-tags {
  padding: 1.5em;
  background-color: #ebedf4;
  font-size: 0.9em;
}

/* comment submit button */
#submit {
  float: right;
  font-size: 1em;
}

/* comment form title */
#comment-form-title {
  margin: 0 0 1.1em;
}

/* cancel comment reply link */
/* logged in comments */
/* allowed tags */
#allowed_tags {
  margin: 1.5em 10px 0.7335em 0;
}

/* no comments */
.nocomments {
  margin: 0 20px 1.1em;
}

/*********************
SIDEBARS & ASIDES
*********************/
#sidebar1 .widget,
#shop-sidebar .widget {
  margin-bottom: 0px !important;
  padding-bottom: 50px !important;
  padding: 0px;
  max-width: 300px;
}

#sidebar1 .widget h4.widgettitle,
#shop-sidebar .widget h4.widgettitle {
  margin: 0px;
  padding: 5px 0px;
  color: #000;
  font-size: 16px;
  line-height: 16px;
  text-align: left;
  font-weight: normal;
  text-transform: uppercase;
  border-bottom: 0px;
}

#sidebar1 .widget ul,
#shop-sidebar .widget ul {
  list-style-type: none;
  margin: 0px;
  padding: 0px;
}

#sidebar1 .widget ul li,
#shop-sidebar .widget ul li {
  text-align: left;
  margin: 0px;
}

#sidebar1 .widget ul li:hover,
#shop-sidebar .widget ul li:hover {
  cursor: pointer;
}

#sidebar1 .widget ul li:hover a,
#shop-sidebar .widget ul li:hover a {
  text-decoration: underline !important;
}

#sidebar1 .widget ul li a,
#shop-sidebar .widget ul li a {
  padding: 5px 0px;
  display: block;
}

#sidebar1 .widget ul li:after,
#sidebar1 .widget ul li a,
#shop-sidebar .widget ul li:after,
#shop-sidebar .widget ul li a {
  text-decoration: none;
  color: #000;
  transition: ease all 0.5s;
}

#sidebar1 .widget ul li:last-child,
#shop-sidebar .widget ul li:last-child {
  border-bottom: 0px;
}

#sidebar1 .widget ul li.current_page_parent a,
#sidebar1 .widget ul li.current-menu-item a,
#sidebar1 .widget ul li.current_page_item a,
#shop-sidebar .widget ul li.current_page_parent a,
#shop-sidebar .widget ul li.current-menu-item a,
#shop-sidebar .widget ul li.current_page_item a {
  text-decoration: underline !important;
}

li.woocommerce-MyAccount-navigation-link--customer-logout {
  display: none !important;
}

li.woocommerce-MyAccount-navigation-link.is-active a {
  color: #f79026 !important;
}

li.woocommerce-MyAccount-navigation-link.is-active a:after {
  content: "\f0da";
  font-family: "FontAwesome";
  float: right;
  color: #f79026 !important;
}

.sidebar {
  margin-top: 0px !important;
  padding-right: 50px;
  overflow: hidden !important;
}

.widgettitle {
  margin-top: 0px !important;
  font-weight: normal !important;
}

.widget {
  margin-top: 0px !important;
  margin-bottom: 30px;
}

.widget ul li {
  /* deep nesting */
}

.widget ul li a:hover {
  color: #000;
}

.no-widgets {
  background-color: #fff;
  padding: 1.5em;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-bottom: 1.5em;
}

/*********************
FOOTER STYLES
*********************/
#inner-prefooter img {
  max-width: 100%;
  max-width: 150px;
  display: block;
}

#inner-prefooter ul.social {
  text-align: left;
}

#inner-prefooter .finfo {
  text-align: left;
}

#inner-prefooter .finfo h4 {
  color: #000;
  font-size: 24px;
  font-style: italic;
  text-transform: none !important;
  font-weight: 400;
  margin-top: 0px;
  margin-bottom: 25px;
  line-height: 24px;
}

#inner-prefooter .finfo a {
  color: #72aeb6;
  text-decoration: none;
  transition: ease-in all 0.2s;
  font-style: italic;
}

#inner-prefooter .finfo a:hover {
  opacity: 0.75;
}

#inner-prefooter .finfo p {
  margin: 0px;
}

footer.footer {
  border-top: 1px solid #ddd;
}

.footerwrap.fixed {
  position: fixed;
  width: 100%;
  bottom: 0px;
}

#lower-footer {
  color: #aaa;
  padding: 20px 0px;
  display: inline-table;
  width: 100%;
  text-align: center !important;
}

#lower-footer p {
  font-size: 16px;
  display: inline-block;
  line-height: 16px;
  margin: 0px !important;
}

#lower-footer nav {
  display: inline-block;
}

#lower-footer nav ul {
  margin: 0px !important;
}

#lower-footer nav ul li {
  padding-left: 15px;
  display: inline-block;
}

#lower-footer nav ul li a {
  font-size: 16px;
  line-height: 16px;
  padding: 0px;
  color: #aaa;
  transition: ease-in all 0.2s;
}

#lower-footer nav ul li a:hover {
  color: #72aeb6;
}

.footer {
  clear: both;
  background-color: #fff;
  color: #ebedf4;
}

/*
	if you checked out the link above:
	http://www.alistapart.com/articles/organizing-mobile/
	you'll want to style the footer nav
	a bit more in-depth. Remember to keep
	it simple because you'll have to
	override these styles for the desktop
	view.
	*/
.footer-links ul {
  margin: 0px !important;
}

/* end .footer-links */
/* SOCIAL ACCOUNTS */
prefooter {
  text-align: center;
  padding: 50px 0px;
  display: block;
}

prefooter #pf_menu,
prefooter #pf_form {
  text-align: left;
}

prefooter #pf_menu h4,
prefooter #pf_form h4 {
  margin-top: 0px;
  margin-bottom: 5px;
  font-size: 16px;
  color: #000 !important;
  line-height: 20px;
}

prefooter #pf_menu ul.nav,
prefooter #pf_form ul.nav {
  padding: 0px;
  margin-top: 1em;
  list-style-type: none;
  display: grid;
}

prefooter #pf_menu ul.nav a,
prefooter #pf_form ul.nav a {
  color: #797979;
  padding: 0px;
  padding-bottom: 10px;
}

prefooter #pf_menu ul.nav a:hover,
prefooter #pf_form ul.nav a:hover {
  text-decoration: underline !important;
}

prefooter #pf_menu form.wpcf7-form #form,
prefooter #pf_form form.wpcf7-form #form {
  margin-bottom: 1em;
}

prefooter #pf_menu form.wpcf7-form #form input.wpcf7-email,
prefooter #pf_form form.wpcf7-form #form input.wpcf7-email {
  width: 70% !important;
  display: inline-block;
  padding: 10px;
  margin: 0px;
}

prefooter #pf_menu form.wpcf7-form #form span.wpcf7-form-control-wrap.your-email,
prefooter #pf_form form.wpcf7-form #form span.wpcf7-form-control-wrap.your-email {
  top: -2px;
}

prefooter #pf_menu form.wpcf7-form #form input[type="submit"],
prefooter #pf_form form.wpcf7-form #form input[type="submit"] {
  width: 30% !important;
  margin-left: -1px;
}

prefooter ul.social {
  list-style-type: none;
  padding: 0px;
  margin: 0px;
}

prefooter ul.social li {
  display: inline-block;
  padding: 0px 5px;
}

prefooter ul.social li:first-child {
  padding-left: 0px !important;
}

prefooter ul.social li a {
  color: #000;
  transition: ease-in all 0.2s;
  display: block;
}

prefooter ul.social li a svg,
prefooter ul.social li a i {
  font-size: 16px;
  border-radius: 100%;
  line-height: 16px;
}

prefooter ul.social li a:hover {
  opacity: 0.75;
}

/* WOOCOMMERCE OPTIONS */
h2.woocommerce-loop-category__title mark.count {
  background-color: #fff;
}

.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
  color: #797979 !important;
  background-color: #f1f1f1 !important;
  border-color: #000 !important;
  line-height: 40px !important;
  padding: 1em 2em !important;
}

.woocommerce-error:before,
.woocommerce-info:before,
.woocommerce-message:before {
  content: none !important;
}

.woocommerce form h3 {
  margin-top: 0px !important;
  margin-bottom: 25px !important;
}

.woocommerce-address-fields__field-wrapper {
  display: grid;
  margin-bottom: 25px;
}

.woocommerce-address-fields.grid {
  display: grid;
}

.woocommerce-Address header.title {
  margin-bottom: 15px;
}

.woocommerce form .form-row label {
  line-height: inherit;
}

.woocommerce form label[for="mailchimp_woocommerce_newsletter"] {
  text-transform: none;
  font-weight: 400;
  font-size: 0.95em;
}

fieldset.changepw {
  margin-bottom: 20px;
}

nav.woocommerce-MyAccount-navigation ul {
  list-style-type: none;
  margin: 0px;
  padding: 0px;
}

nav.woocommerce-MyAccount-navigation ul li {
  text-align: left;
  margin: 0px;
  padding: 10px;
  border-bottom: 1px solid rgba(204, 204, 204, 0.5);
}

nav.woocommerce-MyAccount-navigation ul li a {
  text-decoration: none;
}

nav.woocommerce-MyAccount-navigation ul li:last-child {
  border-bottom: 0px;
}

div#preheader {
  background-color: #222222;
  padding: 10px;
  color: #fff;
  line-height: 16px;
  text-align: left;
  max-height: 100px;
}

div#preheader span.searchicon {
  float: right;
  color: #fff;
  cursor: pointer;
  opacity: 0.75;
  padding: 0px 0.75em;
  padding-right: 0px !important;
  transition: ease-in all 0.2s;
}

div#preheader span.searchicon:hover {
  opacity: 1;
}

section#sec_1 h1 {
  margin: 0px !important;
  text-transform: uppercase;
}

section#sec_4 {
  margin: 0px !important;
}

section#sec_4 h1 {
  margin: 0px !important;
  text-transform: uppercase;
}

section#sec_2 {
  margin: 50px 0px !important;
}

section#sec_2 .ff_img {
  text-align: center;
  padding: 50px 0px;
  display: block;
  background-blend-mode: color;
  background-color: rgba(0, 0, 0, 0.25);
  background-size: cover;
  background-position: 50% 50%;
}

section#sec_2 .ff_img a {
  text-decoration: none !important;
}

section#sec_2 .ff_img a h2,
section#sec_2 .ff_img h2 {
  color: #fff;
  font-size: 30px;
  line-height: 40px;
  text-decoration: none !important;
  max-width: 300px;
  text-decoration: none !important;
  margin: 0px auto;
  padding-bottom: 25px;
  text-transform: uppercase;
}

section#sec_3 {
  margin-top: 10px;
  margin-bottom: 50px;
  display: inline-block;
  width: 100%;
}

section#sec_3 .full_img {
  text-align: left;
  padding: 25px 25px;
  display: block;
  background-blend-mode: color;
  background-color: rgba(0, 0, 0, 0.25);
  background-size: cover;
  background-position: 50% 50%;
}

section#sec_3 .full_img a {
  text-decoration: none !important;
}

section#sec_3 .full_img a h2,
section#sec_3 .full_img h2 {
  color: #fff;
  font-size: 30px;
  line-height: 40px;
  text-decoration: none !important;
  text-decoration: none !important;
  margin: 0px auto;
  padding-bottom: 25px;
  text-transform: uppercase;
}

section#sec_6 {
  margin-top: 50px;
  margin-bottom: 0px;
  display: inline-block;
  width: 100%;
}

section#sec_6 .full_img {
  text-align: left;
  padding: 25px 25px;
  display: block;
  background-blend-mode: color;
  background-color: rgba(0, 0, 0, 0.25);
  background-size: cover;
  background-position: 50% 50%;
}

section#sec_6 .full_img a {
  text-decoration: none !important;
}

section#sec_6 .full_img a h2,
section#sec_6 .full_img h2 {
  color: #fff;
  font-size: 30px;
  line-height: 40px;
  text-decoration: none !important;
  text-decoration: none !important;
  margin: 0px auto;
  padding-bottom: 25px;
  text-transform: uppercase;
}

.last-0p:last-child {
  padding-right: 0px !important;
  padding-bottom: 0px !important;
}

section#sec_4 {
  margin: 50px 0px;
}

section#sec_5 {
  margin-top: 25px;
}

section#sec_5 h5 {
  text-transform: uppercase;
  margin: 0px !important;
  font-size: 16px;
  padding: 10px 0px;
  line-height: 16px;
}

section#sec_5 img {
  max-width: 100%;
  height: auto !important;
}

section#sec_5 a.learnmore {
  color: #797979;
  text-decoration: none !important;
}

section#sec_5 a.learnmore:hover {
  text-decoration: underline !important;
}

section#p_sec_5 {
  margin-top: 50px;
}

section#p_sec_5 #single_coupon {
  text-align: center;
  transition: ease all 0.5s;
}

section#p_sec_5 #single_coupon a,
section#p_sec_5 #single_coupon a h3,
section#p_sec_5 #single_coupon h3 {
  color: #72aeb6;
  text-decoration: none;
}

section#p_sec_5 #single_coupon h3 {
  margin-top: 0px !important;
}

section#p_sec_5 #single_coupon a {
  display: block;
}

section#p_sec_5 #single_coupon a:hover {
  color: #000 !important;
  transition: ease all 0.5s;
}

section#p_sec_5 #single_coupon a:hover h3 {
  color: #000 !important;
}

section#p_sec_5 #single_coupon a:hover img {
  filter: brightness(0);
}

section#p_sec_5 #single_p {
  padding-bottom: 20px;
}

section#p_sec_5 h5 {
  text-transform: uppercase;
  margin: 0px !important;
  font-size: 16px;
  padding: 10px 0px;
  line-height: 16px;
}

section#p_sec_5 img {
  max-width: 300px;
  margin: auto;
  width: 100%;
  display: block;
  height: auto !important;
}

section#p_sec_5 a.learnmore {
  color: #797979;
  text-decoration: underline !important;
}

a.imglink {
  text-decoration: none !important;
}

#title.tlp-center {
  background-position: 50% 50%;
}

#title.tlp-top {
  background-position: 50% 25%;
}

#title.tlp-bottom {
  background-position: 50% 75%;
}

.forcefullwidth_wrapper_tp_banner,
#title {
  margin-top: 90px;
}

#title {
  width: 100%;
  transition: ease-in all 0.2s;
  display: inline-block !important;
  background-color: rgba(0, 0, 0, 0.25);
  background-size: cover;
  background-position: 50% 50%;
  background-blend-mode: overlay;
  text-align: center;
}

#title .wrap {
  padding: 150px 0px;
}

#title h1,
#title h2 {
  color: #fff;
  text-transform: none;
  font-style: italic;
  font-weight: 100;
  text-align: center;
  margin: 0px !important;
  font-size: 50px;
  line-height: 56px;
}

#title #breadcrumbs {
  margin: 0px !important;
  text-align: center;
  color: #fff;
  margin-bottom: 10px !important;
  opacity: 0.9;
  transition: ease-in all 0.2s;
}

#title #breadcrumbs a,
#title #breadcrumbs span.breadcrumb_last {
  color: #fff !important;
  margin: 0px 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 100;
  text-decoration: none;
  opacity: 0.9;
  transition: ease-in all 0.2s;
}

#title #breadcrumbs a:hover {
  opacity: 1;
}

ul.sitemap {
  margin-bottom: 0px;
}

ul.sitemap ul.children {
  margin-bottom: 0px !important;
}

ul.sitemap li.current_page_item {
  display: none !important;
}

.hp_section.cf_section {
  text-align: left;
  padding-top: 0px !important;
  padding-bottom: 50px !important;
}

.hp_section.cf_section span.h1,
.hp_section.cf_section h1.suptext {
  text-align: left;
}

.hp_section.cf_section h2.h1,
.hp_section.cf_section h1.h1 {
  margin-top: 25px;
  text-align: left;
  margin-bottom: 0px;
}

.contact-info {
  padding-top: 20px;
}

.contact-info h5 {
  color: #aaa;
  font-size: 16px;
  line-height: 16px;
  font-family: "futura-pt", Helvetica, Arial, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  margin-top: 0px;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.contact-info .info-item {
  margin-bottom: 30px !important;
}

.contact-info .info-item a {
  color: #72aeb6;
  text-decoration: none;
  transition: ease-in all 0.2s;
  font-style: italic;
}

.contact-info .info-item a:hover {
  opacity: 0.75;
}

.contact-info .info-item:last-child {
  margin-bottom: 0px !important;
}

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

a.excerpt-read-more {
  display: none !important;
}

header.entry-header h3 a,
header.entry-header h3,
header.entry-header a {
  color: #000 !important;
  margin: 0px !important;
}

header.entry-header h3 a:hover,
header.entry-header h3:hover,
header.entry-header a:hover {
  color: #72aeb6 !important;
}

.pb25 {
  padding-bottom: 25px !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

.header-searchbar {
  display: none;
}

li.searchicon:hover a {
  color: #72aeb6 !important;
}

li.searchicon.active a {
  color: #72aeb6 !important;
}

.header-searchbar {
  padding: 10px;
  width: 100% !important;
  left: 0px;
  z-index: 999;
  background-color: rgba(255, 255, 255, 0.9);
  position: absolute;
  text-align: right;
}

.header-searchbar form div {
  display: inline-flex;
}

.header-searchbar input[type="search"] {
  display: inline-block;
  width: 300px;
  margin-bottom: 0px !important;
}

form.wpcf7-form input[type="text"],
form.wpcf7-form input[type="email"] {
  max-width: 100% !important;
}

a.vidlink {
  text-decoration: none !important;
  display: block !important;
}

#single_p.videobox h4 {
  margin-top: 5px !important;
  margin-bottom: 0px !important;
}

.wpcf7-response-output,
.wpcf7-validation-errors {
  display: none !important;
}

span.wpcf7-not-valid-tip {
  color: #72aeb6;
  text-transform: uppercase;
  line-height: 12px;
  font-size: 12px;
  margin-bottom: 10px;
  margin-top: -5px;
  font-family: "futura-pt", Helvetica, Arial, sans-serif;
}

.ajax-loader {
  display: none !important;
}

#preloader {
  background: #fff;
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9999999999;
}

form .g-recaptcha.wpcf7-recaptcha {
  margin-bottom: 20px;
}

.raq-form {
  border-top: 1px solid #ddd;
  padding-top: 50px;
  margin-top: 50px;
}

.raq-form h2 {
  color: #72aeb6;
  margin-top: 0px;
  margin-bottom: 25px;
}

.raq-form .raq-form-wrap {
  max-width: 500px;
}

#subscribe {
  padding: 75px 0px;
  display: grid;
  width: 100%;
  background-color: #72aeb6;
}

#subscribe h2 {
  color: #fff;
  font-size: 50px;
  line-height: 56px;
  text-transform: none !important;
  font-style: italic;
  margin-bottom: 0px;
  font-weight: 400;
  margin-top: 25px;
}

#subscribe span.suptext {
  font-size: 16px;
  line-height: 16px;
  letter-spacing: 1px;
  color: #fff;
  opacity: 0.75;
  text-transform: uppercase;
}

#subscribe p {
  margin-top: 0px !important;
  margin-bottom: 25px;
  color: #fff;
}

#subscribe #mce-EMAIL {
  border: 1px solid #fff;
  color: #fff;
  font-size: 16px;
  line-height: 16px;
  text-transform: none !important;
  margin-bottom: 0px !important;
  background-color: rgba(255, 255, 255, 0.2);
  transition: ease-in all 0.2s;
  max-width: 100% !important;
}

#subscribe #mce-EMAIL:active, #subscribe #mce-EMAIL:focus {
  background-color: rgba(255, 255, 255, 0.1);
}

#subscribe #mce-EMAIL::placeholder,
#subscribe #mce-EMAIL::-webkit-input-placeholder {
  color: #fff !important;
}

#subscribe input[type="submit"] {
  background-color: #fff;
  color: #72aeb6;
  font-size: 16px;
  line-height: 16px;
  height: 40px;
  font-weight: 500;
  text-transform: uppercase !important;
  width: 100%;
  padding: 10px 0px !important;
  border: 0px !important;
  font-style: italic;
  transition: ease-in all 0.2s;
}

#subscribe input[type="submit"]:hover {
  background-color: #f79026;
  color: #fff;
}

#subscribe .sub-text label span {
  color: #FFFFFF;
  font-size: 1.1em;
  font-weight: 300;
  margin-top: 30px;
  margin-bottom: 10px;
  display: inline-block;
  font-style: italic;
}

#subscribe span.ajax-loader {
  display: none !important;
}

/* TOP LEVEL PAGES */
#page_content {
  padding: 75px 0px;
  display: inline-block;
  width: 100%;
}

div#subpagelink,
a#subpagelink {
  transition: ease-in all 0.2s;
}

div#subpagelink:nth-child(odd) .saturate,
a#subpagelink:nth-child(odd) .saturate {
  background-color: rgba(114, 174, 182, 0.9);
}

div#subpagelink:nth-child(odd) .saturate:hover,
a#subpagelink:nth-child(odd) .saturate:hover {
  background-color: transparent !important;
}

div#subpagelink:nth-child(even) .saturate,
a#subpagelink:nth-child(even) .saturate {
  background-color: rgba(247, 144, 38, 0.9);
}

div#subpagelink:nth-child(even) .saturate:hover,
a#subpagelink:nth-child(even) .saturate:hover {
  background-color: transparent !important;
}

.subpage-wrap {
  margin-bottom: 15px;
}

.subpage-wrap:hover #subpage {
  background-color: transparent;
}

.subpage-wrap .saturate {
  width: 100%;
  display: grid;
  transition: ease-in all 0.2s;
}

.subpage-wrap #subpage {
  display: flex;
  background-size: cover;
  min-height: 400px;
  background-blend-mode: luminosity;
  background-color: #000;
  transition: ease-in all 0.2s;
}

.subpage-wrap h2 {
  color: #fff;
  text-transform: uppercase;
  font-size: 46px;
  line-height: 50px;
  margin: 0px;
  font-style: italic;
  text-align: center;
  font-weight: 400;
  margin: auto;
}

/* SINGLE PAGE */
#sidebarblog .suptext {
  text-align: left;
  margin-bottom: 0px;
}

#sidebarblog .widget {
  margin-bottom: 50px;
}

#sidebarblog form#searchform {
  max-width: 300px;
  width: 90%;
}

#sidebarblog form#searchform input:active, #sidebarblog form#searchform input:focus {
  border-color: #000;
}

#sidebarblog form#searchform input {
  margin: 0px;
}

#sidebarblog form#searchform button {
  float: right;
  color: #000;
  background-color: transparent;
  border: none;
  top: -40px;
  position: relative;
  min-width: 0px;
  padding: 10px 0px;
}

#sidebarblog h4.widgettitle {
  color: #000;
  font-size: 24px;
  font-style: italic;
  border-bottom: 0px !important;
  text-transform: none !important;
  font-weight: 400;
  margin-top: 0px;
  margin-bottom: 25px;
  line-height: 24px;
}

#sidebarblog ul {
  margin: 0px;
  list-style-type: none;
  padding: 0px;
}

#sidebarblog ul li a {
  letter-spacing: 1px;
  font-size: 16px;
  margin-top: 0px !important;
  line-height: 16px;
  font-weight: 400 !important;
  text-transform: uppercase;
  text-decoration: none;
  color: #aaa;
}

#sidebarblog ul li a:hover {
  color: #000;
}

#sidebarblog ul li.current-cat a {
  color: #000;
}

#sidebarblog #h1_text {
  padding-bottom: 0px !important;
}

#sidebarblog .sidebarwrap {
  padding-right: 25px;
  border-right: 1px solid #ddd;
}

#sidebarblog header {
  padding-bottom: 50px !important;
}

#sidebarblog header h1 {
  margin-bottom: 75px !important;
}

#sidebarblog header .blog_meta span {
  text-align: left;
  display: block;
  margin-bottom: 0px;
}

#commentlist {
  padding-top: 50px;
  margin-top: 50px;
  border-top: 1px solid #ddd;
  display: grid;
}

#commentlist h3#reply-title {
  display: block;
  color: #000;
  font-style: italic;
  font-size: 50px;
  text-transform: none !important;
  font-weight: 400;
  line-height: 56px;
}

#commentlist #submit {
  float: left;
}

article .feat_img {
  padding-bottom: 50px;
}

article .feat_img img {
  max-width: 100%;
  height: auto;
}

article .feat_img .featured_caption {
  font-style: italic;
}

/* HOMEPAGE BLOGROLL */
#s1 #exb_scroll {
  margin-top: 50px;
  display: inline-block;
  width: 100%;
}

#s1 #exb_scroll2 {
  margin-top: 0px;
  display: inline-block;
  width: 100%;
}

#s1 .blog-subinfo-venue {
  letter-spacing: 1px;
  font-size: 16px;
  margin-bottom: 5px;
  line-height: 16px;
  font-weight: 400 !important;
  color: #aaa;
  text-align: left;
  margin-top: 25px;
  text-transform: uppercase;
}

#s1 .slider-set {
  margin-top: 50px;
  display: inline-block;
}

#s1 .slick-list,
#s1 .slider-set {
  width: 100%;
  padding: 0px !important;
}

#s1 ul.slides {
  list-style-type: none;
  display: inline-block;
  width: 100%;
  padding-left: 0px;
  padding-top: 50px;
}

#s1 a {
  text-decoration: none !important;
}

#s1 a h3 {
  text-align: left;
  color: #000;
  font-size: 24px;
  font-style: italic;
  text-transform: none !important;
  font-weight: 400;
  margin-top: 0px;
  text-decoration: none !important;
  transition: ease-in all 0.2s;
  margin-bottom: 25px;
  line-height: 24px;
  padding-top: 25px;
  margin-bottom: 10px;
}

#s1 a h3:hover {
  opacity: 0.75;
}

#s1 .blog-subinfo {
  line-height: 20px;
  text-align: left;
}

#s1 .blogimg-wrap {
  height: 400px;
  max-width: 100%;
  background-position: 50% 50%;
  background-size: cover;
}

#s3 .slider-set {
  margin-top: 50px;
  display: inline-block;
  width: 96vw;
  padding: 0px !important;
}

#s3 .slick-list {
  width: 100%;
  padding: 0px !important;
}

#s3 ul.slides {
  list-style-type: none;
  display: inline-block;
  width: 100%;
  padding-left: 0px;
  padding-top: 50px;
}

#s3 a {
  text-decoration: none !important;
}

#s3 a h3 {
  text-align: center;
  color: #000;
  font-size: 24px;
  font-style: italic;
  text-transform: none !important;
  font-weight: 400;
  margin-top: 0px;
  text-decoration: none !important;
  transition: ease-in all 0.2s;
  margin-bottom: 25px;
  line-height: 24px;
  padding-top: 25px;
  margin-bottom: 10px;
}

#s3 a h3:hover {
  opacity: 0.75;
}

#s3 .blog-subinfo {
  text-align: center;
}

#s3 .blogimg-wrap {
  height: 300px;
  max-width: 100%;
  margin: 10px;
  background-position: 50% 50%;
  background-size: cover;
}

/* SINGLE EXHIBITION */
.slidearrows {
  float: right;
}

.slidearrows .slick-prev,
.slidearrows .slick-next,
.slidearrows button {
  position: initial !important;
  min-width: auto !important;
  font-family: "typicons" !important;
  display: inline-block;
  color: #797979;
  font-size: 20px !important;
  line-height: 20px !important;
  border-radius: 100px;
  border: 1px solid #ddd;
  transition: ease-in all 0.2s;
}

.slidearrows .slick-prev:before,
.slidearrows .slick-next:before,
.slidearrows button:before {
  content: none !important;
}

.slidearrows .slick-prev:hover span,
.slidearrows .slick-next:hover span,
.slidearrows button:hover span {
  color: #000;
}

.slidearrows .slick-prev {
  margin-right: 5px;
}

.slidearrows .slick-next {
  margin-left: 5px;
}

.slidearrows .slick-prev,
.slidearrows .slick-next {
  height: 40px;
  width: 40px;
  transform: none;
}

.slider-drag2 button.slick-arrow {
  display: none !important;
}

section.singleex {
  display: block !important;
}

#content.defaultpage.singleexhibition #sidebarblog header .blog_meta span {
  margin-bottom: 5px !important;
}

#content.defaultpage.singleexhibition h4.relatedpress {
  color: #797979;
  font-size: 24px;
  font-style: italic;
  text-transform: none !important;
  font-weight: 400;
  margin-top: 0px;
  margin-bottom: 25px;
  line-height: 24px;
}

#content.defaultpage.singleexhibition #sidebarblog header h1 {
  margin-bottom: 25px !important;
}

#content.defaultpage.singleexhibition #relatedpress {
  padding-top: 50px;
}

#content.defaultpage.singleexhibition ul.rp_list {
  margin: 0px;
  list-style-type: none;
}

#content.defaultpage.singleexhibition ul.rp_list li {
  margin-left: 0px;
}

#content.defaultpage.singleexhibition ul.rp_list li a {
  color: #72aeb6;
  transition: ease-in all 0.2s;
  text-decoration: none;
}

#content.defaultpage.singleexhibition ul.rp_list li a:hover {
  opacity: 0.75;
}

#content.defaultpage.singleexhibition #sidebarblog .widget {
  margin-bottom: 0px !important;
}

#content.defaultpage.singleexhibition .feat_img {
  padding-bottom: 0px;
  padding-top: 50px;
}

#s3.singleex {
  padding: 50px 0px;
}

#s3.singleex span.suptext,
#s3.singleex span.h1 {
  text-align: left;
}

#s3.singleex span.h1 {
  margin-top: 0px;
}

#s3.singleex .slider-set {
  margin-top: 50px;
  display: inline-block;
}

#s3.singleex .slick-list,
#s3.singleex .slider-set {
  width: 100%;
  padding: 0px !important;
}

#s3.singleex ul.slides {
  list-style-type: none;
  display: inline-block;
  width: 100%;
  padding-left: 0px;
  padding-top: 50px;
}

#s3.singleex a {
  text-decoration: none !important;
}

#s3.singleex a h3 {
  text-align: center;
  color: #000;
  font-size: 24px;
  font-style: italic;
  text-transform: none !important;
  font-weight: 400;
  margin-top: 0px;
  text-decoration: none !important;
  transition: ease-in all 0.2s;
  margin-bottom: 25px;
  line-height: 24px;
  padding-top: 25px;
  margin-bottom: 10px;
}

#s3.singleex a h3:hover {
  opacity: 0.75;
}

#s3.singleex .blog-subinfo {
  font-style: italic;
  line-height: 20px;
  margin: 10px;
  text-align: left;
}

#s3.singleex .blogimg-wrap {
  height: 300px;
  max-width: 100%;
  margin: 10px;
  background-position: 50% 50%;
  background-size: cover;
}

/* WOOCOMMERCE */
.woocommerce-product-details__short-description {
  margin-bottom: 50px;
}

.wc-tab {
  padding-top: 25px;
  padding-left: 10px;
}

.wc-tab h2 {
  display: none !important;
}

.wc-tab #comments {
  margin-bottom: 25px !important;
}

.woocommerce-tabs {
  display: inline-block;
}

ul.tabs.wc-tabs {
  list-style-type: none;
  margin: 0px !important;
}

ul.tabs.wc-tabs li {
  margin: 0px !important;
  padding-right: 20px;
  display: inline-block;
}

ul.tabs.wc-tabs li a {
  color: #aaa !important;
  transition: ease-in all 0.2s;
  font-size: 24px;
  font-style: italic;
  border-bottom: 0px !important;
  text-transform: none !important;
  font-weight: 400;
  margin-top: 0px;
  line-height: 24px;
}

ul.tabs.wc-tabs li a:hover {
  color: #000 !important;
  opacity: 1 !important;
}

ul.tabs.wc-tabs li.active a {
  color: #000 !important;
}

.woopage .topsection_prod {
  display: inline-block;
  width: 100%;
}

.woopage .woocommerce-product-gallery {
  float: left;
  margin-right: 25px;
}

.woopage h1.product_title.entry-title {
  display: block;
  color: #000;
  font-style: italic;
  font-size: 50px;
  text-transform: none !important;
  font-weight: 400;
  line-height: 56px;
  margin-bottom: 10px;
}

.woopage .summary {
  padding-bottom: 50px;
}

.woopage .summary .product_meta {
  display: none !important;
}

.woopage .summary .price {
  margin-bottom: 50px !important;
}

.woopage .summary span.amount {
  letter-spacing: 1px;
  font-size: 16px;
  margin-top: 0px !important;
  line-height: 16px;
  font-weight: 400 !important;
  text-transform: uppercase;
  color: #aaa;
}

.woopage .summary .woocommerce a.button.alt,
.woopage .summary .woocommerce button.button.alt,
.woopage .summary .woocommerce input.button.alt,
.woopage .summary .woocommerce #respond input#submit.alt,
.woopage .summary button {
  background-color: transparent;
  color: #000 !important;
  font-size: 16px;
  line-height: 16px;
  font-weight: 500;
  width: 100%;
  max-width: 200px;
  background-color: transparent !important;
  padding: 15px 0px !important;
  border: 2px solid #000;
  font-style: italic;
  transition: ease-in all 0.2s;
  border-radius: 0px !important;
}

.woopage .summary .woocommerce a.button.alt:hover,
.woopage .summary .woocommerce button.button.alt:hover,
.woopage .summary .woocommerce input.button.alt:hover,
.woopage .summary .woocommerce #respond input#submit.alt:hover,
.woopage .summary button:hover {
  background-color: #f79026 !important;
  border-color: #f79026;
  color: #fff !important;
}

.woopage .quantity {
  display: inline-block;
}

.woopage .quantity input {
  height: 50px !important;
}

.related.products {
  display: none !important;
}

#review_form input#submit {
  background-color: transparent;
  color: #000 !important;
  font-size: 16px;
  line-height: 16px;
  font-weight: 500;
  width: 100%;
  max-width: 200px;
  background-color: transparent !important;
  padding: 15px 0px !important;
  border: 2px solid #000 !important;
  font-style: italic;
  transition: ease-in all 0.2s;
  border-radius: 0px !important;
}

#review_form input#submit:hover {
  background-color: #f79026 !important;
  border-color: #f79026 !important;
  color: #fff !important;
}

li.product-single {
  margin-left: 0px !important;
}

li.product-single .prodwrap {
  margin: 0px 10px;
  min-height: 375px;
}

li.product-single img {
  margin: auto;
  display: block;
  padding-bottom: 25px;
}

li.product-single a h2,
li.product-single a span,
li.product-single a {
  text-decoration: none !important;
}

li.product-single a.button {
  font-weight: 400;
  font-style: italic;
}

li.product-single .productimg-wrap {
  height: 300px;
  max-width: 100%;
  margin: 0px;
  background-position: 50% 50%;
  background-size: cover;
}

.count_etc {
  margin-bottom: 50px;
}

.woocommerce .woocommerce-ordering,
.woocommerce-page .woocommerce-ordering {
  float: left;
}

.woocommerce .woocommerce-result-count {
  color: #000;
  text-transform: uppercase;
  letter-spacing: 1px;
  float: right;
}

#content.defaultpage.woopage a.button,
#content.defaultpage.woopage a.button.add_to_cart_button {
  text-transform: none;
  border: none;
  background-color: transparent;
  color: #72aeb6;
  transition: ease-in all 0.2s;
  text-align: center;
  display: table !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: 0px;
  font-size: 16px;
  min-width: 0px !important;
  margin-top: 0px;
}

#content.defaultpage.woopage a.button:hover,
#content.defaultpage.woopage a.button.add_to_cart_button:hover {
  opacity: 0.75;
}

#content.defaultpage.woopage h2.woocommerce-loop-product__title {
  color: #000;
  font-size: 18px;
  font-style: italic;
  text-transform: none !important;
  font-weight: 500;
  margin-top: 0px;
  text-align: center;
  margin-bottom: 20px;
  line-height: 24px;
  padding: 0px;
}

#content.defaultpage.woopage span.price {
  text-align: center;
  margin: auto;
  display: block;
  color: #aaa;
  font-size: 16px;
  line-height: 16px;
  margin-bottom: 5px;
}

#content.defaultpage.woopage .entry-content {
  padding-bottom: 75px;
}

#content.defaultpage.woopage .entry-content a {
  color: #72aeb6;
  transition: ease-in all 0.2s;
}

#content.defaultpage.woopage .entry-content a:hover {
  opacity: 0.75;
}

#content.defaultpage.woopage h1.h1 {
  margin-bottom: 25px !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs:before,
.woocommerce div.product .woocommerce-tabs ul.tabs li {
  border: 0 !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  font-size: 24px;
  font-weight: 400;
  margin-top: 0px;
  line-height: 24px;
}

.entry-content ul.tabs.wc-tabs {
  margin-left: 0px !important;
  padding-left: 0px !important;
}

.woocommerce .entry-content div.product .woocommerce-tabs ul.tabs li {
  padding-left: 0;
  padding-right: 2em;
}

#woo_menu {
  display: table;
  width: 100%;
  background-size: cover;
  background-position: 50% 50%;
}

#woo_menu .aligncenter {
  text-align: center !important;
  clear: none;
}

#woo_menu #right {
  background-color: rgba(114, 174, 182, 0.9);
  transition: ease-in all 0.2s;
}

#woo_menu #right:hover {
  background-color: rgba(114, 174, 182, 0.75);
}

#woo_menu #left {
  background-color: rgba(247, 144, 38, 0.9);
  transition: ease-in all 0.2s;
}

#woo_menu #left:hover {
  background-color: rgba(247, 144, 38, 0.75);
}

#woo_menu #left a,
#woo_menu #right a {
  padding: 50px 0px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  font-style: italic;
  transition: ease-in all 0.2s;
  display: block;
  color: #fff;
  font-size: 30px;
  line-height: 30px;
}

#s3.woopage a.button,
#s3.woopage span.price {
  text-align: center;
  display: block;
}

#s3.woopage a.button,
#s3.woopage a.button.add_to_cart_button {
  text-transform: none;
  border: none;
  background-color: transparent;
  color: #72aeb6;
  transition: ease-in all 0.2s;
  text-align: center;
  display: table !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: 0px;
  font-size: 16px;
  min-width: 0px !important;
  margin-top: 0px;
}

#s3.woopage a.button:hover,
#s3.woopage a.button.add_to_cart_button:hover {
  opacity: 0.75;
}

.slick-slider button {
  display: none !important;
}

.displayblock {
  display: inline-block;
  width: 100%;
}

.pb50 {
  padding-bottom: 50px;
}

a.nolink {
  cursor: default !important;
}

/* GALLERY */
#default_gallery .slidearrows {
  display: block;
  padding-bottom: 25px;
}

#default_gallery .blogimg-wrap {
  height: 500px !important;
  background-size: cover;
  margin: auto;
  background-position: 50% 50%;
}

#default_gallery .featured_caption {
  font-style: italic;
  margin-top: 5px;
  text-align: center;
}

/* EVENTS */
#s2.hp_section #exb_scroll2 {
  display: inline-block;
  width: 100%;
  margin-top: 50px;
}

#s2.hp_section #single_event,
#s1event #single_event {
  margin-bottom: 15px;
  border: 1px solid #ddd;
  transition: ease-in all .2s;
}

#s2.hp_section #single_event:hover,
#s1event #single_event:hover {
  background-color: #f1f1f1;
}

#s2.hp_section #single_event .blog-wrap,
#s1event #single_event .blog-wrap {
  padding: 30px;
  display: flex;
  min-height: 210px;
}

#s2.hp_section #single_event .eventtext,
#s1event #single_event .eventtext {
  display: table-cell;
  vertical-align: middle;
}

#s2.hp_section #single_event #leftevent,
#s1event #single_event #leftevent {
  margin: auto;
  display: grid;
}

#s2.hp_section #single_event .rightwrap,
#s1event #single_event .rightwrap {
  display: inline-table;
}

#s2.hp_section #single_event .date_number,
#s1event #single_event .date_number {
  float: left;
  margin-right: 20px;
  color: #ddd;
  font-size: 100px;
  line-height: 60px;
  font-style: italic;
  font-weight: 500;
}

#s2.hp_section #single_event .blogimg-wrap,
#s1event #single_event .blogimg-wrap {
  height: 150px;
  float: left;
  margin-right: 20px;
  background-size: cover;
  background-position: 50%;
  width: 150px;
  border-radius: 100px;
}

#s2.hp_section #single_event a, #s2.hp_section #single_event a h3, #s2.hp_section #single_event a p, #s2.hp_section #single_event a span,
#s1event #single_event a,
#s1event #single_event a h3,
#s1event #single_event a p,
#s1event #single_event a span {
  text-decoration: none;
}

#s2.hp_section #single_event a,
#s1event #single_event a {
  display: block;
}

#s2.hp_section #single_event .date_month, #s2.hp_section #single_event h3,
#s1event #single_event .date_month,
#s1event #single_event h3 {
  color: #000;
  font-size: 24px;
  font-style: italic;
  text-transform: none !important;
  font-weight: 400;
  margin-top: 0px;
  margin-bottom: 40px;
  line-height: 24px;
}

#s2.hp_section #single_event .date_month,
#s1event #single_event .date_month {
  margin-bottom: 10px !important;
}

#s2.hp_section #single_event .blog-subinfo-venue,
#s1event #single_event .blog-subinfo-venue {
  color: #aaa;
  letter-spacing: 1px;
}

#s2.hp_section #single_event .date_date,
#s1event #single_event .date_date {
  text-transform: uppercase;
  color: #797979;
  letter-spacing: 1px;
}

#s2.hp_section #single_event .blog-subinfo,
#s1event #single_event .blog-subinfo {
  color: #797979;
  text-transform: none !important;
}

body.events-single #tribe-events-pg-template {
  padding: 0px !important;
}

body.events-single #tribe-events-pg-template,
body.events-single .tribe-events-pg-template {
  max-width: 100%;
}

body.events-single .blog_meta .blog_author {
  display: block;
  color: #000;
  font-size: 24px;
  font-style: italic;
  text-transform: none !important;
  font-weight: 400;
  margin-top: 0px;
  margin-bottom: 25px;
  line-height: 24px;
}

body.post-type-archive-tribe_events .tribe-events-list-event-title .tribe-event-url {
  color: inherit;
}

body.post-type-archive-tribe_events li.tribe-events-nav-previous a,
body.post-type-archive-tribe_events li.tribe-events-nav-next a,
body.post-type-archive-tribe_events .tribe-events-venue-details a,
body.post-type-archive-tribe_events a.tribe-events-read-more,
body.post-type-archive-tribe_events .event-is-recurring a,
body.post-type-archive-tribe_events .tribe-events-back a,
body.post-type-archive-tribe_events .type-tribe_events a {
  color: #72aeb6;
}

body.post-type-archive-tribe_events li.tribe-events-nav-previous a:hover,
body.post-type-archive-tribe_events li.tribe-events-nav-next a:hover,
body.post-type-archive-tribe_events .tribe-events-venue-details a:hover,
body.post-type-archive-tribe_events a.tribe-events-read-more:hover,
body.post-type-archive-tribe_events .event-is-recurring a:hover,
body.post-type-archive-tribe_events .tribe-events-back a:hover,
body.post-type-archive-tribe_events .type-tribe_events a:hover {
  opacity: 0.75;
}

/* Ticket +/- */
.entry .entry-content .event-tickets .tribe-tickets__tickets-item-quantity-add,
.entry .entry-content .event-tickets .tribe-tickets__tickets-item-quantity-remove,
.event-tickets .tribe-tickets__tickets-item-quantity-add,
.event-tickets .tribe-tickets__tickets-item-quantity-remove {
  align-self: baseline;
  color: #000;
}

.tribe-events-meta-group.tribe-events-meta-group-other {
  width: auto;
}

/* Styling for new v2 views */
#tribe-events-pg-template {
  max-width: 100%;
}

:root {
  --tec-font-weight-bold: 400;
  --tec-font-size-0: 15px;
  --tec-font-size-1: 16px;
  --tec-font-size-2: 18px;
  --tec-font-size-3: 20px;
  --tec-font-size-4: 20px;
  --tec-font-size-5: 22px;
  --tec-font-size-6: 24px;
  --tec-font-size-7: 26px;
  --tec-font-size-8: 30px;
  --tec-font-size-9: 34px;
  --tec-font-size-10: 44px;
  --tec-font-family-sans-serif: "futura-pt", Helvetica, Arial, sans-serif;
}

/*.tribe-common .tribe-common-b2,
.event-tickets .tribe-common-b3,
.event-tickets .tribe-common-h3,
.event-tickets .tribe-common-h4--min-medium,
.event-tickets .tribe-common-b1--min-medium, .event-tickets .tribe-common-h6,
.tribe-common .tribe-common-h7, .tribe-common .tribe-common-h8,
.tribe-common * {
    font-family: "futura-pt", Helvetica, Arial, sans-serif !important;
    font-size: 18px;
} */
.error404 #content .search_style2 form {
  max-width: 400px;
  margin: auto !important;
  display: block !important;
}

.error404 #content .search_style2 input,
.error404 #content .search_style2 button {
  margin-bottom: 0px !important;
}

.error404 #content .search_style2 input {
  display: inline-block;
}

.error404 #content .search_style2 button {
  float: right;
  background-color: transparent;
  -webkit-appearance: meter;
  display: inline-block;
  margin-top: -35px;
  width: 30px !important;
  min-width: 0px !important;
  border: 0px !important;
}

.error404 #content .search_style2 button:hover {
  cursor: pointer;
}

.search_style {
  padding-top: 50px;
}

.search_style form {
  max-width: 400px;
}

.search_style input,
.search_style button {
  margin-bottom: 0px !important;
}

.search_style button {
  float: right;
  background-color: transparent;
  -webkit-appearance: meter;
  display: inline-block;
  margin-top: -35px;
  width: 0px !important;
  min-width: 0px !important;
  border: 0px !important;
}

/*** Timeline ***/
.et-timeline-item .et-content-outer-wrap {
  display: none;
}

/*********************
LARGER MOBILE DEVICES
This is for devices like the Galaxy Note or something that's
larger than an iPhone but smaller than a tablet. Let's call them
tweeners.
*********************/
@media only screen and (min-width: 481px) {
  /******************************************************************
Site Name: Ogunquit Museum
Author: P1WS

Stylesheet: 481px and Up Stylesheet

This stylesheet is loaded for larger devices. It's set to
481px because at 480px it would load on a landscaped iPhone.
This isn't ideal because then you would be loading all those
extra styles on that same mobile connection.

A word of warning. This size COULD be a larger mobile device,
so you still want to keep it pretty light and simply expand
upon your base.scss styles.

******************************************************************/
  /*
IMPORTANT NOTE ABOUT SASS 3.3 & UP
You can't use @extend within media queries
anymore, so just be aware that if you drop
them in here, they won't work.
*/
  /********************
WORDPRESS BODY CLASSES
style a page via class
********************/
  .home .hp_section span.h1, .home .hp_section h2.h1 {
    font-size: 44px;
    line-height: 50px;
  }
  /*********************
NAVIGATION STYLES
*********************/
  /* .menu is clearfixed inside mixins.scss */
  .menu {
    /* end .menu ul */
  }
  .menu ul {
    /* end .menu ul li */
    /* highlight current page */
    /* end current highlighters */
  }
  .menu ul li {
    /*
				plan your menus and drop-downs wisely.
				*/
  }
  .menu ul li a {
    /*
					you can use hover styles here even though this size
					has the possibility of being a mobile device.
					*/
  }
  /* end .menu */
  /*********************
POSTS & CONTENT STYLES
*********************/
  /* entry content */
  .entry-content {
    /* at this larger size, we can start to align images */
  }
  .entry-content .alignleft, .entry-content img.alignleft {
    margin-right: 1.5em;
    display: inline;
    float: left;
  }
  .entry-content .alignright, .entry-content img.alignright {
    margin-left: 1.5em;
    display: inline;
    float: right;
  }
  .entry-content .aligncenter, .entry-content img.aligncenter {
    margin-right: auto;
    margin-left: auto;
    display: block;
    clear: both;
  }
  /* end .entry-content */
  /*********************
FOOTER STYLES
*********************/
  /*
check your menus here. do they look good?
do they need tweaking?
*/
  /* end .footer-links */
}

/*********************
TABLET & SMALLER LAPTOPS
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*********************/
@media only screen and (min-width: 768px) {
  /******************************************************************
Site Name: Ogunquit Museum
Author: P1WS

Stylesheet: Tablet & Small Desktop Stylesheet

Here's where you can start getting into the good stuff.
This size will work on iPads, other tablets, and desktops.
So you can start working with more styles, background images,
and other resources. You'll also notice the grid starts to
come into play. Have fun!

******************************************************************/
  /*********************
GENERAL STYLES
*********************/
  #simple-banner {
    position: fixed;
  }
  .home #content .hp_section span.h1, .home #content .hp_section h2.h1 {
    font-size: 50px;
    line-height: 60px;
  }
  .home #h1_text .home-block .home-block-inner .h2 {
    font-size: 30px;
    line-height: 1.4;
  }
  /*********************
LAYOUT & GRID STYLES
*********************/
  .wrap {
    max-width: 100%;
  }
  /*********************
HEADER STYLES
*********************/
  .header #top-bar-nav {
    display: none;
  }
  #logo {
    text-align: left;
  }
  .header #mobile-menu-icon.navright {
    display: block;
  }
  /*********************
NAVIGATION STYLES
*********************/
  .nav {
    border: 0;
    /* end .menu ul li */
    /* highlight current page */
    /* end current highlighters */
  }
  .nav ul {
    margin-top: 0;
  }
  .nav li {
    float: left;
    position: relative;
    /*
		plan your menus and drop-downs wisely.
		*/
    /* showing sub-menus */
  }
  .nav li a {
    border-bottom: 0;
    /*
			you can use hover styles here even though this size
			has the possibility of being a mobile device.
			*/
  }
  .nav li a:hover, .nav li a:focus {
    text-decoration: underline;
  }
  .nav li:last-child ul.sub-menu {
    right: 0;
  }
  .nav li ul.sub-menu,
  .nav li ul.children {
    margin-top: 0;
    border-top: 0;
    position: absolute;
    visibility: hidden;
    z-index: 8999;
    /* highlight sub-menu current page */
  }
  .nav li ul.sub-menu li,
  .nav li ul.children li {
    /*
				if you need to go deeper, go nuts
				just remember deeper menus suck
				for usability. k, bai.
				*/
  }
  .nav li ul.sub-menu li a,
  .nav li ul.children li a {
    padding-left: 10px;
    border-right: 0;
    display: block;
    width: 210px;
  }
  .nav li ul.sub-menu li:last-child a,
  .nav li ul.children li:last-child a {
    border-bottom: 0;
  }
  .nav li ul.sub-menu li ul,
  .nav li ul.children li ul {
    top: 0;
    left: auto;
  }
  .nav li:hover > ul {
    top: auto;
    visibility: visible;
  }
  /* end .nav */
  #popupmenu ul {
    margin-top: 20px;
  }
  #popupmenu ul li ul.sub-menu {
    display: block;
    visibility: visible;
    position: relative;
  }
  #popupmenu ul li ul.sub-menu li {
    display: block;
  }
  #popupmenu ul li:hover ul.sub-menu {
    display: block;
    position: relative;
    width: 100%;
    visibility: visible;
  }
  #leftlinks {
    padding-right: 0;
  }
  .header #top-bar-nav {
    background-color: #72aeb6;
  }
  .header #top-bar-nav ul.nav {
    float: right;
    list-style: none;
    padding: 0;
  }
  .header #top-bar-nav ul.nav li a {
    padding: 0.5em 0.75em;
    color: #ebedf4;
  }
  .header #top-bar-nav ul.nav li a:hover, .header #top-bar-nav ul.nav li a:focus, .header #top-bar-nav ul.nav li a:active {
    color: #fff;
    text-decoration: none;
  }
  #mobilemenu,
  #mobilemenu,
  #search-mobile,
  mobilenav {
    display: none !important;
  }
  .header #mobile-menu-icon.navright {
    display: block;
  }
}

/*********************
DESKTOP
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*********************/
@media only screen and (min-width: 1030px) {
  /******************************************************************
Site Name: Ogunquit Museum
Author: P1WS

Stylesheet: Desktop Stylsheet

This is the desktop size. It's larger than an iPad so it will only
be seen on the Desktop.

******************************************************************/
  .wrap {
    max-width: 100%;
    width: 98%;
  }
  /********************
WORDPRESS BODY CLASSES
style a page via class
********************/
  #s3 .slider-set {
    width: 100%;
  }
  .forcefullwidth_wrapper_tp_banner,
  #title {
    margin-top: 140px;
  }
  .tribe-events-calendar-list__event-row .tribe-events-calendar-list__event-featured-image-wrapper,
  .tribe-events-calendar-list__event-row .tribe-events-calendar-list__event-details {
    float: left;
  }
  .tribe-events-calendar-list__event-row .tribe-events-calendar-list__event-featured-image-wrapper {
    max-width: 300px;
    clear: both;
  }
}

/*********************
LARGE VIEWING SIZE
This is for the larger monitors and possibly full screen viewers.
*********************/
@media only screen and (min-width: 1240px) {
  /******************************************************************
Site Name: Ogunquit Museum 
Author: P1WS

Stylesheet: Super Large Monitor Stylesheet

You can add some advanced styles here if you like. This kicks in
on larger screens.

******************************************************************/
  .wrap {
    max-width: 1300px;
    width: 98%;
  }
  .forcefullwidth_wrapper_tp_banner,
  #title {
    margin-top: 140px;
  }
}

/*********************
RETINA (2x RESOLUTION DEVICES)
This applies to the retina iPhone (4s) and iPad (2,3) along with
other displays with a 2x resolution. You can also create a media
query for retina AND a certain size if you want. Go Nuts.
*********************/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
  /******************************************************************
Site Name: 
Author: 

Stylesheet: Retina Screens & Devices Stylesheet

When handling retina screens you need to make adjustments, especially
if you're not using font icons. Here you can add them in one neat
place.

******************************************************************/
  /* 

EXAMPLE 
Let's say you have an image and you need to make sure it looks ok
on retina screens. Let's say we have an icon which dimension are
24px x 24px. In your regular stylesheets, it would look something
like this:

.icon {
	width: 24px;
	height: 24px;
	background: url(img/test.png) no-repeat;
}

For retina screens, we have to make some adjustments, so that image
doesn't look blurry. So, taking into account the image above and the
dimensions, this is what we would put in our retina stylesheet:

.icon {
	background: url(img/test@2x.png) no-repeat;
	background-size: 24px 24px;
}

So, you would create the same icon, but at double the resolution, meaning 
it would be 48px x 48px. You'd name it the same, but with a @2x at the end
(this is pretty standard practice). Set the background image so it matches
the original dimensions and you are good to go. 

*/
}

/*********************
CUSTOM MEDIA QUERIES STYLESHEET
Feel free to customize this for adjustments that don't fit into the
other pre-set browser widths.
*********************/
/******************************************************************
Site Name: 
Author: 

Stylesheet: Custom Media Queries


******************************************************************/
@media (max-width: 767px) {
  #title .wrap {
    padding: 75px 0px !important;
  }
  .a_btn-wrap {
    float: none !important;
    margin: auto !important;
  }
  header.header {
    background-color: #222222;
    transition: ease-in all 0.2s;
  }
  .scrolled.has-banner #simple-banner {
    display: none;
  }
  .scrolled.has-banner header.header {
    padding-top: 0 !important;
  }
  #preheader #leftlinks:last-child {
    padding-right: 0px !important;
  }
  prefooter #form input[type="submit"],
  prefooter #form input.wpcf7-email {
    width: 100% !important;
    display: block;
    margin: 0px auto !important;
    text-align: center;
  }
  prefooter #form input[type="submit"] {
    margin-top: 2px !important;
  }
  prefooter img {
    margin: auto !important;
  }
  #logo {
    width: 100%;
    float: left;
    text-align: center;
  }
  #logo a {
    display: inline-grid;
    margin-right: 0px;
  }
  #logo a img {
    max-height: 75px;
    width: auto;
  }
  #lower-footer {
    margin-bottom: 35px !important;
  }
  #lower-footer p,
  #lower-footer nav {
    display: block !important;
  }
  #lower-footer nav ul {
    text-align: center;
    display: block;
  }
  #lower-footer nav ul li {
    display: inline-flex;
  }
  #lower-footer nav ul li:first-child {
    padding-left: 0px !important;
  }
  #lower-footer nav ul li:before {
    display: none !important;
  }
  #lower-footer nav ul li a:hover {
    text-decoration: underline !important;
  }
  .slidearrows {
    float: none !important;
  }
  /* WOOCOMMERCE */
  form.woocommerce-ordering,
  p.woocommerce-result-count {
    display: block;
    text-align: center;
    float: none !important;
  }
  form.woocommerce-ordering select,
  p.woocommerce-result-count select {
    margin: auto;
  }
  #mobilemenu ul.sub-menu {
    display: none !important;
  }
  #mobilemenu li.menu-item-56.menu-item-has-children {
    cursor: pointer;
  }
  #mobilemenu li.menu-item-56.menu-item-has-children a {
    display: inline-block;
  }
  #mobilemenu li.menu-item-56.menu-item-has-children a:before {
    color: #fff;
    content: "\f0da";
    position: absolute;
    right: 15px;
    cursor: pointer;
    font-family: "FontAwesome";
  }
  #mobilemenu li.menu-item-56.menu-item-has-children ul.sub-menu {
    margin: 0px;
  }
  #mobilemenu li.menu-item-56.menu-item-has-children ul.sub-menu a {
    display: block !important;
  }
  #mobilemenu li.menu-item-56.menu-item-has-children ul.sub-menu a:before {
    content: none !important;
  }
  #mobilemenu li.menu-item-56.menu-item-has-children.active {
    background-color: rgba(0, 0, 0, 0.05);
  }
  #mobilemenu li.menu-item-56.menu-item-has-children.active a {
    display: inline-block;
  }
  #mobilemenu li.menu-item-56.menu-item-has-children.active a:before {
    content: "\f0d7";
  }
  #mobilemenu li.menu-item-56.menu-item-has-children.active ul.sub-menu {
    display: block !important;
    background-color: rgba(0, 0, 0, 0.05);
  }
  #mobilemenu li.menu-item-56.menu-item-has-children.active ul.sub-menu a:before {
    content: none !important;
  }
  #mobilemenu li.searchicon {
    display: none !important;
  }
  #lower-footer p {
    float: none !important;
    text-align: center;
    margin-top: 1em !important;
  }
  #container.bodycontainer.fade1 {
    filter: blur(1px);
    opacity: 0.25;
    transition: ease all 0.5s;
  }
  #container.bodycontainer.fade2 {
    filter: blur(1px);
    opacity: 0.25;
    transition: ease all 0.5s;
  }
  nav#topnav {
    display: none !important;
  }
  #mobilemenu,
  #search-mobile {
    z-index: 99999;
    display: none;
    position: fixed;
    width: 100%;
    bottom: 50px;
  }
  #search-mobile {
    background-color: #fff;
    padding: 15px 0px;
  }
  #search-mobile form {
    text-align: center;
    max-width: 500px;
    margin: auto;
  }
  #search-mobile input#s {
    width: 85%;
    max-width: 100%;
    display: inline-block;
    margin-bottom: 0px;
  }
  #search-mobile button#searchsubmit {
    width: 0px;
    background-color: transparent;
    border: 0px;
    position: absolute;
    color: #000;
    margin-left: -45px;
    font-size: 16px;
    margin-top: 2px;
  }
  #mobilemenu.active,
  #search-mobile.active {
    position: fixed;
    width: 100%;
    bottom: 50px;
  }
  #mobilemenu a {
    color: #fff;
    letter-spacing: 0.5px;
    padding: 15px;
    font-size: 16px;
  }
  #mobilemenu ul.mobile-nav {
    background-color: #72aeb6;
  }
  #mobilemenu ul.mobile-nav li {
    border-top: 0.5px solid rgba(0, 0, 0, 0.075);
    border-bottom: 0.5px solid rgba(0, 0, 0, 0.075);
  }
  #mobilemenu ul.mobile-nav li:hover {
    background-color: rgba(0, 0, 0, 0.05);
    border-top: 0.5px solid rgba(0, 0, 0, 0.05);
    border-bottom: 0.5px solid rgba(0, 0, 0, 0.05);
  }
  mobilenav {
    position: fixed;
    height: 50px;
    border-top: 1px solid rgba(0, 0, 0, 0.075);
    background-color: #72aeb6;
    z-index: 9999;
    width: 100%;
    box-shadow: 0px -3px 20px 0px rgba(0, 0, 0, 0.1);
    bottom: 0px;
  }
  mobilenav div.mnav {
    text-align: center !important;
    padding-right: 0px !important;
    border-left: 0.5px solid rgba(0, 0, 0, 0.075);
    border-right: 0.5px solid rgba(0, 0, 0, 0.075);
    background-color: #72aeb6;
  }
  mobilenav div.mnav svg.svg-inline--fa {
    height: 50px !important;
    line-height: 50px !important;
    color: #fff;
  }
  mobilenav div.mnav i,
  mobilenav div.mnav a {
    line-height: 50px;
    display: block;
    font-size: 16px !important;
    color: #fff;
    text-decoration: none !important;
  }
  mobilenav div.mnav:hover {
    border: 0px !important;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.05);
  }
  mobilenav div.mnav.active {
    border: 0px !important;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.05);
  }
  mobilenav div.mnav.active i {
    opacity: 0.85;
  }
}

/* MOBILE NAVIGATION */
@media (max-width: 1029px) {
  #content.defaultpage {
    padding: 50px 0px !important;
  }
  prefooter .finfo {
    text-align: center !important;
  }
  prefooter img {
    margin: auto !important;
  }
  .rev_slider h2 {
    font-size: 30px !important;
    line-height: 30px !important;
  }
  .rev_slider h3 {
    font-size: 22px !important;
    line-height: 22px !important;
  }
  #inner-content {
    display: grid;
  }
  #inner-content #sec_6 {
    order: 4;
  }
  #sidebar1.sidebar {
    padding-top: 50px;
    display: grid;
    order: 3;
    text-align: center;
    width: 100%;
    padding-right: 0px;
    float: none;
  }
  #sidebar1.sidebar h4,
  #sidebar1.sidebar .widgettitle {
    text-align: center !important;
  }
  #sidebar1.sidebar .widget {
    border-right: 0px !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  #sidebar1.sidebar .widget li {
    text-align: center !important;
  }
  #sidebar1.sidebar .widget:last-child {
    padding-bottom: 0px !important;
  }
  #logo {
    margin: auto;
  }
  #logo a {
    margin-right: 0px;
  }
  div#preheader ul {
    text-align: center;
  }
  .feat_img {
    max-width: 500px;
    margin: auto;
    display: block;
  }
  .feat_img img {
    max-width: 500px;
    margin: auto;
    display: block;
  }
  #commentlist {
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid #ddd;
  }
  .sidebarwrap .widget:last-child {
    margin-bottom: 0px !important;
  }
  #sidebarblog {
    padding-right: 0px;
    text-align: center !important;
  }
  #sidebarblog .suptext {
    text-align: center !important;
  }
  #sidebarblog .sidebarwrap {
    padding-right: 0px;
    border-right: 0px;
  }
  #sidebarblog .widget_search {
    display: block !important;
  }
  #sidebarblog form#searchform {
    margin: auto;
  }
  .feat_img .featured_caption {
    text-align: center;
  }
  h1.h1 {
    margin-top: 0px;
  }
  article {
    padding-bottom: 50px;
  }
  /* WOOCOMMERCE */
  .firstsidebar {
    display: none !important;
    padding-top: 0px !important;
  }
  .woopage .woocommerce-product-gallery {
    margin: auto !important;
    float: none !important;
    display: block;
  }
  .woopage .woocommerce-product-gallery img {
    display: block;
    margin: auto;
    padding-bottom: 50px;
  }
  #content.woopage #sidebarblog {
    padding-top: 50px !important;
  }
  .search_style form {
    margin: auto !important;
    display: block !important;
  }
}

@media (min-width: 1030px) {
  .header #top-bar-nav,
  .header #mobile-menu-icon.navright {
    display: block;
  }
  .header #mobile-menu-icon.navright {
    position: relative;
    top: -65px;
  }
  #inner-content {
    display: flex;
  }
  #sidebarblog {
    flex: 2;
    display: flex;
  }
  .summary.entry-summary {
    display: table;
  }
}

@media only screen and (max-width: 1100px) {
  #leftlinks ul li {
    padding: 0px;
  }
  #leftlinks ul li a {
    font-size: 17px;
  }
}

/*********************
PRINT STYLESHEET
Feel free to customize this. Remember to add things that won't make
sense to print at the bottom. Things like nav, ads, and forms should
be set to display none.
*********************/
@media print {
  /******************************************************************
Site Name:
Author:

Stylesheet: Print Stylesheet

This is the print stylesheet. There's probably not a lot
of reasons to edit this stylesheet. If you want to
though, go for it.

******************************************************************/
  * {
    background: transparent !important;
    color: black !important;
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important;
  }
  a, a:visited {
    color: #444 !important;
    text-decoration: underline;
  }
  a:after, a:visited:after {
    content: " (" attr(href) ")";
  }
  a abbr[title]:after, a:visited abbr[title]:after {
    content: " (" attr(title) ")";
  }
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }
  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr, img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 0.5cm;
  }
  p, h2, h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  .sidebar,
  .page-navigation,
  .wp-prev-next,
  .respond-form,
  nav {
    display: none;
  }
}
