/*
Theme Name: hawthorn2016
Author: Chrometoaster
Author URI: http://www.chrometoaster.com/
Description: Theme for Hawthorn bar
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hawthorn
Tags:

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

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

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
    ## Posts and pages
	## Asides
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/

@font-face {
    font-family: 'josefin_sansregular';
    src: url('fonts/josefinsans-regular-webfont.eot');
    src: url('fonts/josefinsans-regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/josefinsans-regular-webfont.woff2') format('woff2'),
         url('fonts/josefinsans-regular-webfont.woff') format('woff'),
         url('fonts/josefinsans-regular-webfont.ttf') format('truetype'),
         url('fonts/josefinsans-regular-webfont.svg#josefin_sansregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'josefin_sansbold';
    src: url('fonts/josefinsans-bold-webfont.eot');
    src: url('fonts/josefinsans-bold-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/josefinsans-bold-webfont.woff2') format('woff2'),
         url('fonts/josefinsans-bold-webfont.woff') format('woff'),
         url('fonts/josefinsans-bold-webfont.ttf') format('truetype'),
         url('fonts/josefinsans-bold-webfont.svg#josefin_sansbold') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'josefin_sansitalic';
    src: url('fonts/josefinsans-italic-webfont.eot');
    src: url('fonts/josefinsans-italic-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/josefinsans-italic-webfont.woff2') format('woff2'),
         url('fonts/josefinsans-italic-webfont.woff') format('woff'),
         url('fonts/josefinsans-italic-webfont.ttf') format('truetype'),
         url('fonts/josefinsans-italic-webfont.svg#josefin_sansitalic') format('svg');
    font-weight: normal;
    font-style: normal;
}

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

body {
	margin: 0;
}

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

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

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

[hidden],
template {
	display: none;
}

a {
	background-color: transparent;
	color: #cb841d;
    text-decoration: none;
    -webkit-transition: color 0.2s ease-out;
    -moz-transition: color 0.2s ease-out;
    -o-transition: color 0.2s ease-out;
    transition: color 0.2s ease-out;
}

a:active,
a:hover {
	outline: 0;
	color: #fff;
}

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

b,
strong {
	font-family: 'josefin_sansbold';
}

dfn {
	font-family: 'josefin_sansitalic';
}

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

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

small {
	font-size: 80%;
}

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

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

img {
	border: 0;
}

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

figure {
	margin: 1em 40px;
}

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

pre {
	overflow: auto;
}

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

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

button {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

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

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

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

input {
	line-height: normal;
}

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

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

input[type="search"] {
	-webkit-appearance: textfield;
	box-sizing: content-box;
}

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

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

legend {
	border: 0;
	padding: 0;
}

textarea {
	overflow: auto;
}

optgroup {
	font-family: 'josefin_sansbold';
}

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

td,
th {
	padding: 0;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
	color: #fff;
	/* font-family: 'Josefin Sans', sans-serif; */
	font-family: 'josefin_sansregular';
	font-size: 20px;
	font-size: 1.25rem;
	font-weight: 400;
	line-height: 1.5;
}

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

h1 {
	font-size: 36px;
	font-size: 1.8em;
    font-family: 'josefin_sansbold';
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 0.05em;
    line-height: 1.2;
    color: #fff;
    margin: 0 0 15px 0;
}

h2 {
	font-size: 26px;
	font-size: 1.3em;
    font-family: 'josefin_sansbold';
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.4;
    color: #fff;
    margin-top: 0;
}
.latest-post h2,
.post h2 {
	text-transform: none;
}
h3 {
	font-size: 22px;
	font-size: 1.1em;
	font-family: 'josefin_sansbold';
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.7;
    color: #fff;
}

p {
	margin-top: 0;
	margin-bottom: 1em;
}

dfn,
cite,
em,
i {
	font-family: 'josefin_sansitalic';
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

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

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

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

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

big {
	font-size: 125%;
}

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

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

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

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

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

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

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

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

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

dt {
	font-family: 'josefin_sansbold';
}

dd {
	margin: 0 1.5em 1.5em;
}

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

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

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
.button-wrapper {
	margin-top: 23px;
}

button,
.button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: none;
	background: #cb841d;
	line-height: 1;
	padding: 13px 20px 11px 20px;
	color: #fff;
	display: inline-block;
	text-transform: uppercase;
    font-size: 22px;
    font-size: 1.1em;
    cursor: pointer;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

.button.hand {
	padding: 11px 20px 4px 20px;
}

.button.hand span.text {
	display: inline-block;
    vertical-align: top;
    margin-right: 15px;
    line-height: 1.3;
}

.button.hand span.image {
	display: inline-block;
	width: 60px;
	height: 27px;
	overflow: hidden;
}

.button span.image img {
	max-width: none;
	margin-left: -60px;
	-webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

.button:hover span.image img {
	margin-left: 0;
}

button:hover,
.button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	background: #fff;
	color: #171717;
}

button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {

}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {
	color: #111;
	border: none;
	background: #bbb;
}

.ghost {
	box-shadow: inset 0px 0px 0px 2px #fff;
	background: rgba(0,0,0,0.2);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus {
	color: #171717;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"] {
	padding: 9px 15px;
}

textarea {
	padding: 9px 15px;
	width: 100%;
	height: 180px !important;
}

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

a:visited {
	color: purple;
}

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

a:focus {
	outline: thin dotted;
}

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

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

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

.main-navigation li {
	position: relative;
	display: inline-block;
}

.main-navigation a {
	display: block;
	text-decoration: none;
	color: #fff;
	font-size: 18px;
	font-size: 0.9em;
	text-transform: uppercase;
	padding: 21px 20px 19px 20px;
}

.main-navigation a:hover {
	color: #cb841d;
}

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

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

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

.main-navigation ul ul li {

}

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

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

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

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

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

.main-navigation .current_page_item > a,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_ancestor > a,
.main-navigation .current_page_parent > a {
	color: #cb841d;
}


/* Small menu. */
.menu-toggle {
	display: inline-block;
}

.main-navigation.toggled ul {
	display: block;
}

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

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

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

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

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

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

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

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

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

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

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

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
	margin: 0 0 1.5em;
}

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

/* Search widget. */
.widget_search .search-submit {
	display: none;
}

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

.hentry {
	margin: 0;
}

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

.single .byline,
.blog .byline {
	display: inline;
}

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

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

/*--------------------------------------------------------------
## Asides
--------------------------------------------------------------*/
.blog .format-aside .entry-title,
.archive .format-aside .entry-title {
	display: none;
}

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

.bypostauthor {
	display: block;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.gallery-caption {
	display: block;
}*/

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

/* Layout */

.inner {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	position: relative;
}

.section {
	padding: 100px 0;
}

.col {
	float: left;
}

.col:last-child {
	margin-right: 0;
}

.half {
	width: 47.5%;
	margin-right: 5%;
}

.third {
	width: 30%;
	margin-right: 5%;
}

.quarter {
	width: 21.25%;
	margin-right: 5%;
}


/* Header */

header#masthead {
	background: #111;
	position: fixed;
	width: 100%;
	z-index: 9999;
}

.site-branding {
	float: left;
	padding: 10px 0;
}

.site-branding a,
.site-branding a img {
	display: block;
}

#site-navigation {
	float: none;
	clear: none;
	width: 100%;
}


/* Content */

#content {
	padding-top: 67px;
}


/* Home hero */

.home-hero {
	width: 100%;
    height: 750px;
    background-color: rgba(0, 0, 0, 0);
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    text-align: center;
    position: relative;
    box-shadow: inset 0 0 125px rgba(0,0,0,1);
}

.home-hero .inner {
	height: 100%;
}

.home-hero .intro-block {
    position: absolute;
    top: 50%;
    left: 50%;
    text-align: center;
    -moz-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}

.home-hero .intro-block img {
	margin: 0 auto 25px auto;
	-webkit-filter: drop-shadow(0px 0px 15px rgba(0,0,0,1));
    filter: drop-shadow(0px 0px 15px rgba(0,0,0,1));
}

.home-hero-button {
	display: inline-block;
}

.home-hero-button a {
	width: 240px;
}

.home-hero-button:last-child a {
	margin-left: 17px;
}


/* Home highlights */

.highlight {
	padding: 100px 0;
}

.about-highlight {
}

.contact-highlight {
	background: #222;
}

.menu-highlight {
}

.highlight .col {
	position: relative;
}

.highlight > img {
	border: 7px solid rgba(0,0,0,0.2);
}

.highlight h1,
.highlight h2,
.contact-details h2 {
	text-align: left;
	margin: 0 0 45px 0;
	position: relative;
	word-wrap: break-word;
}

.highlight h1:after,
.highlight h2:after,
.contact-details h2:after {
	content: '';
    width: 45px;
    height: 2px;
    background: #cb841d;
    position: absolute;
    bottom: -19px;
    left: 0;
}


/* Latest blog posts */

.blog-posts {
	padding: 96px 0 100px 0;
}

.blog-posts .inner h1 {
	position: relative;
	margin-bottom: 0;
}

.blog-posts .inner h1:after {
	content: '';
    width: 45px;
    height: 2px;
    background: #cb841d;
    position: absolute;
    bottom: -19px;
    left: 50%;
    -moz-transform: translate(-50%);
    -webkit-transform: translate(-50%);
    -o-transform: translate(-50%);
    -ms-transform: translate(-50%);
    transform: translate(-50%);
}

.latest-post {
	background: #222;
	margin-top: 47px;
}

.latest-post .entry-image {
	border: 7px solid #111;
	height: 240px;
	overflow: hidden;
	background: #000;
}

.latest-post .entry-image img {
	border: none;
	position: relative;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.latest-post .entry-body {
	padding: 20px;
}

.latest-post .entry-title {
	margin-bottom: 10px;
}

.latest-post .entry-date {
	margin-bottom: 15px;
}

.latest-post .entry-content {
	margin: 0;
}

.latest-post .button-wrapper {
	margin: 0;
}


/* Internal hero section */

.internal-hero {
	width: 100%;
    height: 400px;
    background-color: rgba(0, 0, 0, 0);
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    position: relative;
    box-shadow: inset 0 0 125px rgba(0,0,0,1);
}

.internal-hero .flourish {
	display: inline-block;
	width: 115px;
    height: 115px;
    position: absolute;
    bottom: -70px;
    left: 50%;
    background-color: #171717;
    padding: 17px 18px;
    border-radius: 50%;
    -moz-transform: translate(-50%);
    -webkit-transform: translate(-50%);
    -o-transform: translate(-50%);
    -ms-transform: translate(-50%);
    transform: translate(-50%);
}


/* Content */

.intro {
	padding-top: 90px;
	text-align: center;
}

.intro h1 {
	position: relative;
}

.intro h1:after {
	content: '';
    width: 45px;
    height: 2px;
    background: #cb841d;
    position: absolute;
    bottom: -19px;
    left: 50%;
    -moz-transform: translate(-50%);
    -webkit-transform: translate(-50%);
    -o-transform: translate(-50%);
    -ms-transform: translate(-50%);
    transform: translate(-50%);
}

.intro h3 {
	margin: 45px auto 46px auto;
	max-width: 820px;
}

.hentry {
	padding-bottom: 61px;
}


/* Food and Drinks menus */

.food-drink-menu {
	background: #222;
	padding: 90px 0;
}

.food-drink-menu .inner {
	overflow: hidden;
}

.menu-images .half-image {
	float: left;
	width: 50%;
}

.fdm-menu-title {
	font-size: 24px;
	margin: 0;
}

.fdm-menu-title,
.fdm-menu-content {
	text-align: center;
}

.fdm-menu-content {
	margin-bottom: 50px;
}

.fdm-menu-content p {
	margin-bottom: 0;
}

.fdm-menu,
.fdm-section {
	padding: 0;
	margin: 0;
	list-style: none;
	border-bottom: 1px solid #333;
}

.fdm-menu {
	margin-bottom: 50px;
}

.fdm-section {
	margin-bottom: 50px;
	padding-bottom: 20px;
}

.fdm-section:last-child {
	border-bottom: none;
	margin-bottom: 0;
}

.fdm-section:after {
	content: "";
	display: table;
	clear: both;
}

.fdm-section-header {
	text-align: center;
	margin-bottom: 47px;
	position: relative;
}

.fdm-section-header h3 {
    margin: 0 auto;
    position: relative;
}

.fdm-section-header h3:after {
	content: '';
    width: 45px;
    height: 2px;
    background: #cb841d;
    position: absolute;
    bottom: -19px;
    left: 50%;
    -moz-transform: translate(-50%);
    -webkit-transform: translate(-50%);
    -o-transform: translate(-50%);
    -ms-transform: translate(-50%);
    transform: translate(-50%);
}

.fdm-item {
	float: left;
	width: 47.5%;
	margin-right: 5%;
	margin-bottom: 40px;
}

.fdm-item:nth-child(2n+1) {
	margin-right: 0;
}

.fdm-item-panel {
	position: relative;
}

/*.fdm-item-image {
	border-radius: 37.5px;
    -webkit-box-shadow: 0 0 0 5px #fff;
    -moz-box-shadow: 0 0 0 5px #fff;
    box-shadow: 0 0 0 5px #fff;
    position: absolute;
    top: 0;
    left: 0;
    margin-top: 5px;
}*/

.fdm-item-details {
	position: relative;
    background: url(images/dots.png) repeat-x 0 20px;
}

.fdm-item-title {
	font-family: 'josefin_sansbold';
	margin: 0 0 10px 0;
	display: inline;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 18px;
    background-color: #222;
    padding-right: 5px;
    margin-right: 49px;
    color: #fff;
}

.fdm-item-price {
	display: inline;
	position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 18px;
    line-height: 1.7;
    background-color: #222;
    padding-left: 9px;
    color: #fff;
}

.fdm-item-content {
	margin-top: 10px;
}

.fdm-item-content p {
	margin-bottom: 10px;
}

.fdm-item-content p:last-child {
	margin-bottom: 0;
}

.fdm-menu-footer {
	text-align: center;
	padding-top: 45px;
}

.fdm-menu-footer p {
	margin-bottom: 0;
}

.food-drink-menu .button-wrapper {
	text-align: center;
	margin-top: 40px;
}
.menu-archive-wrapper {
    background: #222222;
    overflow: hidden;
}
.menu-pdfs {
    text-align: left;
    margin: 30px 0;
}
.food-drink-menu .menu-pdfs {
    text-align: center;
}
.menu-pdfs ul {
    list-style-type: none;
    padding: 0;
    margin: 0 0 1em;
}
.menu-pdfs ul li {
    list-style-type: none;
}
.menu-pdfs a {
    display: inline-block;
    margin: 0 10px;
    font-size: 24px;
    line-height: 1;
}
.menu-pdfs a:focus,
.menu-pdfs a:hover {
    text-decoration: underline;
}
.menu-pdfs a i {
    margin-right: 10px;
}


/* Contact location */

.contact-logo img {
	margin: 45px auto;
}

.contact-details .inner {
	padding-bottom: 90px;
}

.contact-location {
	padding: 0 0 100px 0;
}

.contact-location .inner {
	border-top: 1px solid #333;
	padding-top: 100px;
}

.contact-location .col {
	float: left;
}

.contact-location .col:last-child {
	margin-right: 0;
}

.contact-location img {
	border: 7px solid rgba(0,0,0,0.2);
}

.wpseo-location {
	margin-bottom: 30px;
}

.wpseo-location h3 {
	display: none;
}

.wpseo-phone {
	margin-top: 1.5em;
	display: block;
}

.wpseo-phone a {
	color: #fff;
}

.wpseo-phone a:hover {
	color: #cb841d;
}

.wpseo-opening-hours {
	margin-bottom: 0;
}

.wpseo-map-canvas {
	border: 7px solid #111;
}


/* Get in touch */

.get-in-touch {
	padding: 96px 0 100px 0;
}

.get-in-touch h1 {
	position: relative;
}

.get-in-touch h1:after {
	content: '';
    width: 5%;
    min-width: 36px;
    height: 2px;
    background: #cb841d;
    position: absolute;
    bottom: -22px;
    left: 50%;
    -moz-transform: translate(-50%);
    -webkit-transform: translate(-50%);
    -o-transform: translate(-50%);
    -ms-transform: translate(-50%);
    transform: translate(-50%);
}

.get-in-touch h3 {
    max-width: 800px;
    margin: 45px auto 46px auto;
    text-align: center;
}

.get-in-touch .content {
	margin-top: 46px;
}

.get-in-touch .half .field-wrap:last-child {
	margin-bottom: 0;
}

.get-in-touch .ninja-forms-all-fields-wrap {
	margin-top: 40px;
}

.get-in-touch .ninja-forms-field {
	max-width: 555px;
}

.get-in-touch .submit-wrap {
	margin-bottom: 0;
}

.get-in-touch .ninja-forms-success-msg {
	color: green;
}

.get-in-touch .ninja-forms-required-items {
	margin-bottom: 30px;
}

.get-in-touch .ninja-forms-form-wrap label {
	font-weight: 300;
}

.get-in-touch .ninja-forms-req-symbol {
	color: #cb841d;
}


/* Social links */

.social-links {
	background: #222;
	padding: 90px 0 60px 0;
	text-align: center;
}

.social-links a {
	display: inline-block;
	float: none;
}

.social-links a:first-child {
	margin-right: 4%;
}

.social-links a span {
	font-size: 100px !important;
	-webkit-transition: color 0.2s ease-out;
    -moz-transition: color 0.2s ease-out;
    -o-transition: color 0.2s ease-out;
    transition: color 0.2s ease-out;
}

.social-links a span:hover {
	color: #fff !important;
}


/* Testimonials */

.testimonials {
	background: #222;
	padding: 96px 0 90px 0;
}

.testimonials h1 {
	position: relative;
	margin-bottom: 45px;
}

.testimonials h1:after {
	content: '';
    width: 45px;
    height: 2px;
    background: #cb841d;
    position: absolute;
    bottom: -19px;
    left: 50%;
    -moz-transform: translate(-50%);
    -webkit-transform: translate(-50%);
    -o-transform: translate(-50%);
    -ms-transform: translate(-50%);
    transform: translate(-50%);
}

.testimonials .bx-wrapper {
	margin-top: 45px;
}

.testimonials .bx-wrapper .bx-viewport {
	min-height: 225px !important;
}

.testimonials .testimonials-widget-testimonial .ratings {
	float: none;
	margin: 0 auto 10px auto;
}

.testimonials blockquote {
	text-align: center;
	padding: 20px 30px;
	background: #cb841d;
	width: 75%;
	margin: 0 auto;
	position: relative;
	color: #fff;
	font-size: 30px;
	font-size: 1.5em;
	line-height: 1.3;
}

.testimonials blockquote:after {
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 10px 10px 0 10px;
    border-color: #cb841d transparent transparent transparent;
	position: absolute;
    bottom: -10px;
    left: 50%;
    margin: -10px 0 0 -10px;
}

.testimonials p {
	margin-bottom: 0;
}

.testimonials .open-quote,
.testimonials .close-quote {
    color: #fff;
}

.testimonials-widget-testimonial cite,
.testimonials-widget-testimonial div.credit {
	text-align: center;
}

.testimonials-widget-testimonial cite:before,
.testimonials-widget-testimonial div.credit:before {
	display: none;
}

.testimonials .testimonials-widget-testimonial div.credit {
	margin-top: 1.5em;
}

.testimonials .join-title {
	display: none;
}

.testimonials .author,
.testimonials .job-title {
	display: block;
	font-family: 'josefin_sansitalic';
}

.testimonials .job-title {
	font-size: 16px;
}

.testimonials .bx-wrapper .bx-pager.bx-default-pager a {
	width: 14px;
	height: 14px;
	border-radius: 7px;
}



/* Large promo */

.large-promo {
	background: #cb841d;
	padding: 85px 20px;
	text-align: center;
}

#large-promo h1 {
	margin: 0;
	color: #fff;
	text-transform: uppercase;
	font-size: 32px;
	font-size: 1.6em;
	line-height: 1.5;
	display: inline-block;
}

.large-promo .button-wrapper {
    margin: 0 20px;
    display: inline-block;
    vertical-align: top;
}

.large-promo .button {
    background: #222;
}

.large-promo .button:hover {
	background: #fff;
	color: #222;
}


/* Gallery */

.envira-gallery-wrap,
.envira-gallery-wrap .envira-gallery-public {
	margin-bottom: 0 !important;
}

.envirabox-opened .envirabox-skin {
	-webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    padding: 5px !important;
}

.envira-gallery-wrap .envira-gallery-link {
	-webkit-transition: opacity 0.2s ease-out;
    -moz-transition: opacity 0.2s ease-out;
    -o-transition: opacity 0.2s ease-out;
    transition: opacity 0.2s ease-out;
}

.envira-gallery-link:hover {
	opacity: 0.8;
}


/* Links to other bars */

.other-bars {
	padding: 96px 0 100px 0;
}

.other-bars .inner h1 {
	margin-bottom: 0;
	position: relative;
}

.other-bars .inner h1:after {
	content: '';
    min-width: 45px;
    height: 2px;
    background: #cb841d;
    position: absolute;
    bottom: -19px;
    left: 50%;
    -moz-transform: translate(-50%);
    -webkit-transform: translate(-50%);
    -o-transform: translate(-50%);
    -ms-transform: translate(-50%);
    transform: translate(-50%);
}

body.home .other-bars {
	background: #222;
}

.other-bars .bar {
	float: left;
	margin-top: 47px;
}

.other-bars .bar:last-child {
	margin-right: 0;
}

.other-bars .bar > img {
	border: 7px solid rgba(0,0,0,0.2);
}

.bar-name {
	margin-top: 28px;
}

.bar-phone {
	margin-bottom: 0;
}

.bar-email a:hover {
	color: #fff;
}

.bar-link {
	margin-top: 5px;
}


/* Blog/Journal */

.blog #main,
.single-post #main {
	padding: 90px 0 100px 0;
}

.blog #main .inner > header {
	position: relative;
}

.blog #main header h1 {
	position: relative;
}

.blog #main header h1:after {
    content: '';
    width: 45px;
    height: 2px;
    background: #cb841d;
    position: absolute;
    bottom: -19px;
    left: 50%;
    -moz-transform: translate(-50%);
    -webkit-transform: translate(-50%);
    -o-transform: translate(-50%);
    -ms-transform: translate(-50%);
    transform: translate(-50%);
}

.blog #main header h3 {
	text-align: center;
	margin: 45px auto 0 auto;
	color: #fff;
}

.posts-wrapper {
	margin-top: 41px;
	float: left;
	width: 73.75%;
}

#secondary {
	margin-top: 38px;
	float: left;
	width: 21.25%;
	margin-left: 5%;
}

.post {
	background: #222;
	padding-bottom: 0;
	margin-bottom: 30px;
}

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

.post .entry-image {
	background: rgba(0,0,0,0.1);
}

.post .entry-image img {
	border: none;
	padding: 7px;
	margin: 0 auto;
}

.post-categories {
	padding: 0 0 10px 0;
	margin: 0;
	list-style: none;
}

.entry-image img {
	border: 7px solid #111;
}

.entry-title a {
	color: #fff;
}

.entry-body {
	padding: 30px;
}

.entry-content {
	margin-bottom: 10px;
}

.entry-date,
.text-divider,
.entry-comments {
	display: inline-block;
}

.entry-date {
	font-size: 16px;
}

.text-divider {
	margin: 0 5px;
}

.entry-comments .fa-comment {
	margin-left: 3px;
	margin-right: 4px;
}

.entry-tags {
	float: left;
}

.entry-read-more {
	float: right;
}

.blog .widget,
.single-post .widget {
	margin-bottom: 50px;
}

.blog .widget ul,
.single-post .widget ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.blog .widget ul li,
.single-post .widget ul li {
	margin-bottom: 10px;
}

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


/* Footer */

footer.site-footer {
	background: #222;
	padding: 90px 0 50px 0;
	font-size: 18px;
	line-height: 1.7;
}

footer.site-footer .col {
	float: left;
}

footer.site-footer .col:last-child {
	margin-right: 0;
}

footer.site-footer .col h3 {
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-top: 0;
}

footer.site-footer #primary-menu {
	padding: 0;
	margin: 0;
	list-style: none;
}

footer.site-footer #primary-menu a {
	text-transform: uppercase;
}

footer.site-footer .col a {
	color: #fff;
	text-decoration: none;
}

footer.site-footer .col a:hover {
	color: #cb841d;
}

footer.site-footer td {
	vertical-align: top;
}

footer.site-footer .wpseo-email{
	font-size: 17px;
}

.copyright {
	background: #171717;
}

.copyright p {
	float: left;
	margin: 22px 0 17px 0;
	font-size: 16px;
}

.copyright .widget {
	margin-bottom: 0;
	float: right;
	border-right: 1px solid #2f3133;
}

.copyright .sfmsb-follow-social-buttons a {
	border-left: 1px solid #2f3133;
    padding: 15px 20px 10px 20px;
    margin: 0;
}

.copyright a span {
	-webkit-transition: color 0.2s ease-out;
    -moz-transition: color 0.2s ease-out;
    -o-transition: color 0.2s ease-out;
    transition: color 0.2s ease-out;
}

.copyright a:hover span {
	color: #fff !important;
}

.widSSP {
	width: 100% !important;
}

.error-404.not-found {
	padding: 96px 0 100px 0;
    text-align: center;
}

.error-404.not-found ul {
	margin: 0 0 30px 0;
	padding: 0;
}

.error-404.not-found li {
	list-style: none;
}

.error-404.not-found .search-field {
	padding: 8px 15px;
    vertical-align: top;
}


.big-7,
.big-7 .image,
.big-7 .image .inner {
	margin: 0;
	padding: 0;
}

.big-7 {
	position: relative;
	width: 50%;
	padding-top: 20px;
}

.big-7 .image {
	position: relative;
	width: 100%;
	height: 0;
	padding-bottom: 100%;
}

.big-7 .image .inner {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.big-7 .image .inner img {
	width: 100%;
}

.big-7.under-hours {
	display: none;
}

/* Media Queries */

@media only screen and (max-width: 1200px) {
	/* Layout */

	.inner {
		max-width: 960px;
	}


	/* Home */

	.home-hero {
		height: 500px;
	}

	.home-hero-button:last-child a {
		margin-top: 22px;
	    margin-left: 0;
	}

	/* Footer */

	footer.site-footer .wpseo-email{
		font-size: 18px;
	}

}

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

	.big-7.under-menu {
		display: none;
	}
	.big-7.under-hours {
		display: block;
	}

	/* Layout */

	.inner {
		max-width: 768px;
	}


	/* Footer */

	footer.site-footer .col.quarter {
		width: 47.5%;
		margin-bottom: 30px;
	}

	footer.site-footer .col.quarter:nth-child(2n) {
		margin-right: 0;
	}

	footer.site-footer .col.quarter:last-child {
		float: left;
		clear: none;
		margin: 0;
		width: 47.5%;
	}

}

@media only screen and (max-width: 1024px) and (min-width: 769px) {

	/* Envira gallery */

	.envira-gallery-wrap .envira-gallery-item:nth-child(4) {
		transform: translateX(50%);
	}

	.envira-gallery-wrap .envira-gallery-item:last-child {
		transform: translateX(50%);
	}
}

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

	/* Layout */	
	.inner {
		max-width: none;
	}


	/* Nav */

	.main-navigation a {
		padding: 21px 18px 19px 18px;
	}


	 /* Home */

	.latest-post {
	 	width: 47.5%;
	 	margin-right: 0;
	}

	.latest-post.first {
	 	margin-right: 5%;
	}

	.latest-post.last {
	 	margin-top: 30px;
	}


	/* Blog/Journal*/

	.blog #main,
	.single-post #main {
		padding: 90px 0 85px 0;
	}

	.posts-wrapper,
	#secondary {
		float: none;
		width: 100%;
	}

	.posts-wrapper {
		border-bottom: 1px solid #333;
		padding-bottom: 35px;
	}

	#secondary {
		margin-left: 0;
		margin-top: 50px;
		text-align: center;
	}

	#secondary aside {
		border-bottom: 1px solid #333;
		margin-bottom: 30px;
		padding-bottom: 17px;
	}

	#secondary aside:last-child {
		border-bottom: none;
		margin-bottom: 0;
		padding-bottom: 0;
	}

	#secondary #tag_cloud-2 {
		padding-bottom: 25px;
	}

}

@media only screen and (max-width: 768px) and (min-width: 480px) {

	/* Envira gallery */

	.envira-gallery-wrap .envira-gallery-item:last-child {
		transform: translateX(50%);
	}
}

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

	.big-7 {
		left: 50%;
		transform: translateX(-50%);
		width: 40%;
	}

	/* Content */

	#content {
		padding-top: 0;
	}

	.entry-content,
	.entry-body,
	.contact-details,
	.contact-details h2,
	.get-in-touch p {
		text-align: center;
	}

	.contact-details h2:after {
		left: 50%;
    	margin-left: -22px;
	}

	/* Buttons */

	.button:hover,
	button:hover,
	input[type="button"]:hover,
	input[type="reset"]:hover,
	input[type="submit"]:hover {
	    background: #cb841d;
	}


	/* Mobile menu */

	header#masthead {
	    position: absolute;
	    z-index: 9999;
	    right: 0;
	    width: 100%;
	}

	.menu-toggle {
	    position: fixed;
	    top: 20px;
	    right: 20px;
	    font-family: 'fontawesome';
	    z-index: 99;
        font-size: 29px;
	    padding: 8px 10px 7px 10px;
	    text-align: center;
	    border-radius: 50%;
	}

	.site-header .menu-main-menu-container {
	    position: fixed;
	    top: 0;
	    left: 0;
	    width: 100%;
	    background: #cb841d;
	    z-index: 9;
	}

	.main-navigation.toggled ul {
		padding: 12px 0;
	}

	.main-navigation li {
		margin: 0;
		display: block;
	}

	.main-navigation a {
		padding: 15px 20px;
	}

	.main-navigation .current_page_item > a,
	.main-navigation .current-menu-item > a,
	.main-navigation .current_page_ancestor > a {
		color: #fff;
	}

	.main-navigation a:hover {
    	color: #fff;
	}


	/* Hero images */

	.internal-hero {
		height: 200px;
	}

	.home-hero {
		height: 420px;
	}

	.home-hero .intro-block {
		width: 88%;
		max-width: 450px;
		padding-top: 55px;
	}


	/* Content */

	.intro {
		padding-top: 65px;
	}

	.intro h2 {
		font-size: 28px;
		margin-bottom: 30px;
	}

	.hentry {
		padding-bottom: 15px;
	}

	.content-column div {
		padding: 0 !important;
	}


	/* Home */

	.home-hero h1:before,
	.home-hero h1:after {
		display: none;
	}

	.highlight h1 {
		font-size: 1.55em;
		margin-top: 20px;
		text-align: center;
	}

	.highlight h2 {
		text-align: center;
	}

	.highlight h1:after,
	.highlight h2:after {
		left: 50%;
		margin-left: -22px;
	}

	.highlight p {
		text-align: center;
	}

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

	.about-highlight,
	.menu-highlight {
		padding: 50px 0;
	}

	.contact-highlight {
		padding: 43px 0 50px 0;
	}

	.about-highlight .col,
	.contact-highlight .col,
	.menu-highlight .col {
		float: none;
		width: 100%;
		margin-right: 0;
	}

	.about-highlight .col h2,
	.menu-highlight .col h2 {
		margin-top: 20px;
	}

	.contact-highlight .col {
		margin-bottom: 30px;
		padding-bottom: 30px;
		border-bottom: 1px solid #333;
	}

	.contact-highlight .col:last-child {
		margin-bottom: 0;
		padding-bottom: 0;
		border-bottom: none;
	}

	.contact-highlight .wpseo-location {
		margin-bottom: 0;
		text-align: center;
	}

	.contact-highlight .wpseo-location br {
		display: none;
	}

	.wpseo-opening-hours {
		max-width: 300px;
		margin: 0 auto;
		text-align: left;
		font-size: 16px;
	}

	.blog-posts {
		padding: 40px 0 50px 0;
	}

	.latest-post {
	 	width: 100%;
	 	margin-top: 30px;
	 	margin-right: 0;
	 	text-align: center;
	}

	.latest-post.first {
		margin-top: 37px;
	}


	/* Menu */

	.food-drink-menu {
		padding: 40px 0;
	}

	.fdm-section {
		margin-bottom: 40px;
	}

	.fdm-item {
		float: none;
		width: 100%;
		margin: 0 0 40px 0;
	}

	.fdm-item:last-child {
		margin-bottom: 20px;
	}

	.fdm-item-details {
		background-position: left 0 bottom 16px;
	}

	.fdm-item-title {
		display: inline-block;
		background-color: transparent;
		padding-right: 0;
		margin-right: 0;
		width: 50%;
	}

	.fdm-item-title span {
		background-color: #222;
		padding-right: 10px;
	}

	.fdm-item-price {
		position: relative;
		display: inline-block;
		background-color: transparent;
		padding-left: 0;
		width: 48%;
		text-align: right;
	}

	.fdm-item-price span {
		background-color: #222;
		padding-left: 10px;
	}

	.food-drink-menu aside {
		margin-bottom: 0;
	}

	.fdm-menu-footer {
		padding-top: 0;
	}


	/* Contact location */

	.contact-location {
		padding-bottom: 50px;
	}

	.contact-location .inner {
		padding-top: 50px;
	}

	.contact-location .col,
	.contact-details .col {
		float: none;
		width: 100%;
	}

	.contact-location .wpseo-location,
	.contact-location .col:first-child {
		margin-bottom: 30px;
		padding-bottom: 30px;
		border-bottom: 1px solid #333;
	}

	.contact-location .wpseo-location br {
		display: none;
	}

	.wpseo-map-canvas {
		height: 260px !important;
	}


	/* Get in touch */

	.get-in-touch {
		padding: 50px 0;
	}

	#ninja_forms_form_5_all_fields_wrap .col {
		float: none;
		width: 100%;
	}


	/* Social links */

	.social-links {
		padding: 50px 0 25px 0;
	}

	.social-links a span {
		font-size: 50px !important;
	}


	/* Testimonials */

	.testimonials {
		padding: 40px 0;
	}

	.testimonials blockquote {
		width: 100%;
	}

	.testimonial_body {
		width: 100%;
	}


	/* Blog/Journal */

	.blog #main,
	.single-post #main {
		padding: 50px 0 40px 0;
	}


	/* Large promo */

	.large-promo {
		padding: 40px 0;
	}

	.large-promo h1 {
		font-size: 1.55em;
		margin-bottom: 10px;
	}

	body.home #large-promo .button-wrapper {
		display: block;
		margin: 0;
	}

	body.home #large-promo .button {
		display: inline-block;
		margin: 0  auto;
	}


	/* Links to other bars */

	.other-bars {
		padding: 40px 0 50px 0;
	}

	.other-bars .inner > h2 {
		margin-bottom: 40px;
	}

	.other-bars .bar {
		width: 100%;
		float: none;
		margin: 52px 0 30px 0;
		padding-bottom: 30px;
		border-bottom: 1px solid #333;
		text-align: center;
	}

	.other-bars .bar:last-child {
		margin-top: 0;
		margin-bottom: 0;
		padding-bottom: 0;
		border-bottom: none;
	}


	/* Footer */

	footer.site-footer {
		text-align: center;
		padding: 50px 0;
	}

	footer.site-footer .col.quarter {
		width: 100%;
		float: none;
		padding-bottom: 30px;
		border-bottom: 1px solid #333;
	}

	footer.site-footer .col.quarter:last-child {
		margin-bottom: 0;
		padding-bottom: 0;
		width: 100%;
		border-bottom: none;
	}

	footer.site-footer .wpseo-location {
		margin-bottom: 0;
	}

	footer.site-footer .wpseo-location br {
		display: none;
	}

	footer.site-footer td {
		width: 50%;
	}

	.copyright {
		text-align: center;
	}

	.copyright p {
		float: none;
		margin-bottom: 4px;
	}

	.copyright .widget {
		float: none;
		display: inline-block;
		border: none;
	}

	.copyright .sfmsb-follow-social-buttons a {
		border: none;
	}

}
