/*
Theme Name: Pembroke Museum
Theme URI: http://underscores.me/
Author: Modern Print & Design
Author URI: https://www.modernprint.co.uk
Description: Pembroke Museum 2017 Theme
Version: 1.0.1
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: pembroke-museum
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

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

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

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

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

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

body {
	margin: 0;
}

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

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

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

[hidden],
template {
	display: none;
}

a {
	background-color: transparent;
}

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

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

b,
strong {
	font-weight: bold;
}

dfn {
	font-style: italic;
}

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

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

small {
	font-size: 80%;
}

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

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

img {
	border: 0;
}

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

figure {
	margin: 1em 40px;
}

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

pre {
	overflow: auto;
}

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

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

button {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

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

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

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

input {
	line-height: normal;
}

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

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

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

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

legend {
	border: 0;
	padding: 0;
}

textarea {
	overflow: auto;
}

optgroup {
	font-weight: bold;
}

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

td,
th {
	padding: 0;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/

.wf-loading {
    visibility: hidden;
}

.wf-active, .wf-inactive {
    visibility: visible;
}

body,
button,
input,
select,
optgroup,
textarea {
	color: #404040;
	font-family: "expo-serif-pro", serif;
	font-size: 16px;
	font-size: 1rem;
	line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight:400;
	clear: both;
}

p {
	margin-bottom: 1.5em;
}

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

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

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

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

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

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

big {
	font-size: 125%;
}

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

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

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

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

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

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

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

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

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

dt {
	font-weight: bold;
}

dd {
	margin: 0 1.5em 1.5em;
}

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

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

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

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 1px solid;
	border-color: #ccc #ccc #bbb;
	border-radius: 3px;
	background: #e6e6e6;
	color: rgba(0, 0, 0, .8);
	font-size: 12px;
	font-size: 0.75rem;
	line-height: 1;
	padding: .6em 1em .4em;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: #ccc #bbb #aaa;
}

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 {
	border-color: #aaa #bbb #bbb;
}

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

select {
	border: 1px solid #ccc;
}

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

textarea {
	width: 100%;
}

/*--------------------------------------------------------------
# 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 {
	display: block;
}

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

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

.main-navigation a {
    display: block;
    text-decoration: none;
    font-size: 1.125rem;
    color: #FFF;
    letter-spacing: 1px;
    padding: 0.25rem;
}

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

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

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

.main-navigation ul ul li {

}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.hentry {
	margin: 0 0 1.5em;
}

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

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

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

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

.bypostauthor {
	display: block;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.gallery-caption {
	display: block;
}

/*--------------------------------------------------------------
## Core Styling
--------------------------------------------------------------*/

body {
    background:#fafcf9;
}

div#logo-wrap {
    max-height: 0px;
    overflow: visible;
    position: relative;
    z-index: 3;
}

div#logo-wrap > div {
    position: relative;
}

div#logo-wrap > div > img {
    position: absolute;
    width: 90%;
    top: 0;
    left: 0;
    margin: 0 5%;
    border-radius: 0 0 1rem 1rem;
}

div#contact-wrap {
    background: #dedede;
    padding: 0.75rem 0;
}

div#nav-wrap {
    padding: 0.75rem 0;
    background: #a7c589;
}

ul#primary-menu {
    display: table;
}

ul#primary-menu > li {
    display: table-cell;
    white-space: nowrap;
    width: auto;
    float: none;
    text-align: center;
}

#site-contact > div > div.col.s8.m4 {
    text-align: right;
}

#site-contact > div > div.col.s8.m4 > *,
#site-contact > div > div.col.l4 > * {
    display: inline-block;
    vertical-align: middle;
}

#site-contact a.social,
#foot-contact a.social {
    width: 1.5rem;
    height: 1.5rem;
    background: url(img/social-sprite.png);
	background-size: 3rem 4.5rem;
    margin: 0.25rem;
}

#site-contact a.social.facebook {
    background-position: 0 -1.5rem;
}

#site-contact a.social.flickr {
    background-position: 0 -3rem;
}

#foot-contact a.social.gplus {
    background-position: -1.5rem 0;
}

#foot-contact a.social.facebook {
    background-position: -1.5rem -1.5rem;
}

#foot-contact a.social.flickr {
    background-position: -1.5rem -3rem;
}

#site-contact > div > div.col.s8.m8 > span {
    display: inline-block;
    vertical-align: middle;
    font-size: 1.125rem;
}

#site-contact > div > div.col.s8.m8 > span+span {
    margin-left: 1.5rem;
    position: relative;
}

#site-contact > div > div.col.s8.m8 > span+span:before {
    content: '|';
    position: absolute;
    left: -1rem;
    color: #7fabaa;
    font-weight:700;
    font-size: 120%;
    top: -0.25rem;
}

div#primary {
    position:relative;
    background:#FFF;
}

div#primary:before,
div#primary:after {
    content: '';
    width:300px;
    height:100%;
    position:absolute;
    top: 0;
    left: -300px;
	background: rgb(250,252,249);
	background: -moz-linear-gradient(left,  rgba(250,252,249,1) 0%, rgba(222,222,222,1) 100%);
	background: -webkit-linear-gradient(left,  rgba(250,252,249,1) 0%,rgba(222,222,222,1) 100%);
	background: linear-gradient(to right,  rgba(250,252,249,1) 0%,rgba(222,222,222,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fafcf9', endColorstr='#dedede',GradientType=1 );
}

div#primary:after {
    left:auto;
    right: -300px;
	background: rgb(222,222,222);
	background: -moz-linear-gradient(left,  rgba(222,222,222,1) 0%, rgba(250,252,249,1) 100%);
	background: -webkit-linear-gradient(left,  rgba(222,222,222,1) 0%,rgba(250,252,249,1) 100%);
	background: linear-gradient(to right,  rgba(222,222,222,1) 0%,rgba(250,252,249,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dedede', endColorstr='#fafcf9',GradientType=1 );
}

.section-wrap {
    margin: 0.75rem 0;
}

.section-wrap:first-of-type {
    margin-top: 0;
}

.section-wrap:last-of-type {
    margin-bottom: 0;
}

#colophon {
    background:#888981;
	color:#FFF;
}

div#foot-contact {
    padding-top: 1.25rem;
}

div#foot-logo {
    padding-left: 0;
}

div#foot-logo > img {
    border-radius: 0 0 1rem 1rem;
}

div#foot-address > p {
	margin-top: 0;
    font-size: 1.25rem;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

div#foot-contact-details > p {
	font-size: 1.25rem;
    margin:0;
}

div#foot-contact-details strong {
    margin-right:0.375rem;
}

div#foot-social {
    color: #a7c589;
    text-align: center;
    font-size: 1.125rem;
}

div#foot-social > a {
    display:inline-block;
}

div#foot-menu-wrap > h3 {
    margin: 0;
    color: #a7c589;
}

ul#foot-menu {
    margin: 0;
    padding: 0;
    list-style: none;
    -webkit-column-count: 2; /* Chrome, Safari, Opera */
    -moz-column-count: 2; /* Firefox */
    column-count: 2;
}

ul#foot-menu a {
    text-decoration: none;
    color: #FFF;
    text-transform: uppercase;
    font-size: 1.125rem;
    padding: 0.25rem 0;
    display: block;
}

div#foot-logos {
    margin-top: 1.25rem;
    text-align: left;
}

div#foot-logos > img {
    display: inline-block;
    width: auto;
    height: 70px;
    margin: 0 1rem;
}

div#foot-logos > img:first-of-type {
    margin-left: 0;
}

div#credits {
    width: 100%;
    float: left;
    text-align: center;
}

div#credits a {
    color: #FFF;
}

div#credits > div {
    font-size: 0.875rem;
    padding: 0.25rem;
}

/*--------------------------------------------------------------
## Main Slideshow
--------------------------------------------------------------*/

#slideshow-wrap {
    position: relative;
	height: auto;
    max-height: 100vh;
    overflow: hidden;
}

.slide {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 800px;
    padding-bottom:100px;
}

.slide > img {
    max-width: none;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index:-1;
}

.slide-desc {
    background: -moz-linear-gradient(left, rgba(39,33,32,0.85) 0%, rgba(0,0,0,0) 100%);
    background: -webkit-linear-gradient(left, rgba(39,33,32,0.85) 0%,rgba(0,0,0,0) 100%);
    background: linear-gradient(to right, rgba(39,33,32,0.85) 0%,rgba(0,0,0,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d9272120', endColorstr='#00000000',GradientType=1 );
    padding: 0.375rem 1.5rem;
    color: #FFF;
	margin-top: 1rem;
}

.slide.valign-wrapper {

}

.slide.valign-wrapper,
.slide-inner.container.row.valign-wrapper {
    display: flex !important;
    align-items: flex-end;
}

.slide-inner:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    background: -moz-linear-gradient(left, rgba(77,68,66,0.7) 0%, rgba(0,0,0,0) 100%);
    background: -webkit-linear-gradient(left, rgba(77,68,66,0.7) 0%,rgba(0,0,0,0) 100%);
    background: linear-gradient(to right, rgba(77,68,66,0.7) 0%,rgba(0,0,0,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b34d4442', endColorstr='#00000000',GradientType=1 );
    z-index: -1;
}

.slide-inner h1, .slide-inner h2 {
    margin: 0;
    line-height:1;
}

.slide-inner h1 {
    font-size:6rem;
}

.slide-inner h2 {
    font-size:3.25rem;
}

.slide-desc p {
    font-size: 1.15rem;
    margin-top: 0.5rem;
    margin-bottom: 0.75rem;
}

.slide-desc strong {
    font-size: 1.425rem;
    font-weight: 700;
}

.town-trail-badge.col.s8.offset-s2.m2.offset-m1.l3.offset-l2 img {
    max-width: 250px;
    float: right;
    border-radius: 0.5rem;
    box-shadow: 3px 3px 10px rgba(0,0,0,0.5);
}

div#thumb-wrap {
    position: absolute;
    z-index: 10;
    bottom: 0;
    height: 90px;
    left: 50%;
    transform: translateX(-50%);
}

div#slide-thumb {
    text-align: center;
}

div#slide-thumb > a {
    display: inline-block;
    height: 2rem;
    width: 2rem;
    background: transparent;
    border: 2px solid #FFF;
    border-radius: 50%;
    margin: 0.5rem 0.25rem;
}

div#slide-thumb a.active {
    background: rgba(255,255,255,0.5);
}

div#slide-prev > i, div#slide-next > i {
    color: #FFF;
    font-size: 5rem;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.75);
    cursor:pointer;
}

/*--------------------------------------------------------------
## Museum
--------------------------------------------------------------*/

div#museum-text > div:first-of-type {
    padding-left: 0;
}

div#museum-text > div:nth-of-type(2) {
    padding-right: 0;
}

div#museum-text {
    float: left;
    background: #f2f7f7;
    padding: 1rem 1.5rem;
    font-size: 1.125rem;
    line-height: 1.4;
}

div#museum-text-wrap {
    padding: 1rem;
}

#museum-text > h1 {
    font-size: 4.5rem;
    line-height: 1;
    margin: 0.5rem 0;
    color: #7fabaa;
}

div#museum-gal-wrap {
    margin-top: 1rem;
    background: #f2f7f7;
    padding: 0;
    margin-right: 0.75rem;
    width: calc(50% - 0.75rem);
}

div#slideshow-wrap div.bx-wrapper,
div#museum-gal-wrap div.bx-wrapper,
div#murals-gal-wrap div.bx-wrapper,
div#tt-gal-wrap div.bx-wrapper {
    background: none;
    border: none;
    box-shadow: none;
    margin: 0;
}

div.gal-slide {
    position: relative;
    height: 470px;
    overflow: hidden;
	background:#ece1ed;
}

div.gal-slide > img {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    width: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

a.expando {
    position: absolute;
    width: 2.5rem;
    height: 2.5rem;
    bottom: 1rem;
    right: 1rem;
    z-index: 99;
    background: url(img/expand.png);
    background-size:cover;
}

div#museum-thumb-wrap {
    text-align: center;
    margin: 1.5rem 0;
}

#museum-thumb-wrap > div.bx-wrapper {
    width: 83.3333333333%;
    margin-left: auto !important;
    left: auto;
    right: auto;
	float: left;
    max-width: none !important;
}

#museum-thumb > a > img {
    width: 100%;
}

#museum-thumb a.active > img {
    opacity: 0.5;
}

div#museum-next,
div#museum-prev {
    padding: 0;
}

div#museum-next > i,
div#museum-prev > i {
    font-size: 3rem;
    width: auto;
    color: #7fabaa;
    transform: scaleY(1.5);
    cursor:pointer;
}

/*--------------------------------------------------------------
## Murals
--------------------------------------------------------------*/

div#murals-text > div:first-of-type > div:first-child {
	padding-left:0;
}

div#murals-text > div:first-of-type > div:last-child {
    padding-right: 0;
}

div#murals-text {
    float: left;
    background: #f9f5f9;
    padding: 1rem 1.5rem;
    font-size: 1.125rem;
}

div#murals-text-wrap {
    padding: 1rem;
}

#murals-text > h1 {
    font-size: 4.5rem;
    line-height: 1;
    margin: 1rem 0;
    color: #bf9cc4;
    padding-right: 3.5rem;
}

#murals-text > div.highlight.row {
    background: #ece1ed;
}

.highlight.row {
    padding: 0.75rem;
    font-weight: 700;
    clear: both;
	margin: 1.125rem 0;
    font-size:1.35rem;
}

div.highlight-icon > img {
    display: block;
}

div#murals-gal-wrap {
    margin-top: 1rem;
    background: #f9f5f9;
    padding: 0;
    margin-right: 0.75rem;
    width: calc(50% - 0.75rem);
}

div#murals-thumb-wrap {
    text-align: center;
    margin: 1.5rem 0;
}

#murals-thumb-wrap > div.bx-wrapper {
    width: 83.3333333333%;
    margin-left: auto !important;
    left: auto;
    right: auto;
	float: left;
    max-width: none !important;
}

#murals-thumb > a > img {
    width: 100%;
}

#murals-thumb a.active > img {
    opacity: 0.5;
}

div#murals-next,
div#murals-prev {
    padding: 0;
}

div#murals-next > i,
div#murals-prev > i {
    font-size: 3rem;
    width: auto;
    color: #bf9cc4;
    transform: scaleY(1.5);
    cursor:pointer;
}

/*--------------------------------------------------------------
## Town Trail
--------------------------------------------------------------*/

div#tt-text > div:first-of-type > div:first-child {
	padding-left:0;
}

div#tt-text > div:first-of-type > div:last-child {
    padding-right: 0;
}

div#tt-text {
    float: left;
    background: #f7f9f5;;
    padding: 1rem 1.5rem;
    font-size: 1.125rem;
}

div#tt-text-wrap {
    padding: 1rem;
}

#tt-text > h1 {
    font-size: 4.5rem;
    line-height: 1;
    margin: 1rem 0;
    color: #a7c589;
    padding-right: 3.5rem;
}

#tt-text > div.highlight.row {
    background: #ece1ed;
}

.highlight.row {
    padding: 0.75rem;
    font-weight: 700;
    clear: both;
	margin: 1.125rem 0;
    font-size:1.35rem;
}

div.highlight-icon > img {
    display: block;
}

div#tt-gal-wrap {
    margin-top: 1rem;
    background: #f7f9f5;
    padding: 0;
    margin-right: 0.75rem;
    width: calc(50% - 0.75rem);
}

div#tt-thumb-wrap {
    text-align: center;
    margin: 1.5rem 0;
}

#tt-thumb-wrap > div.bx-wrapper {
    width: 83.3333333333%;
    margin-left: auto !important;
    left: auto;
    right: auto;
	float: left;
    max-width: none !important;
}

#tt-thumb > a > img {
    width: 100%;
}

#tt-thumb a.active > img {
    opacity: 0.5;
}

div#tt-next,
div#tt-prev {
    padding: 0;
}

div#tt-next > i,
div#tt-prev > i {
    font-size: 3rem;
    width: auto;
    color: #a7c589;
    transform: scaleY(1.5);
    cursor:pointer;
}

/*--------------------------------------------------------------
## Info Boxes
--------------------------------------------------------------*/

#links-wrap > h1 {
    font-size: 4.5rem;
    line-height: 1;
    margin: 1rem 0;
    color: #a7c589;
    padding-left: 2.5rem;
}

div#info-wrap > div {
    margin-bottom: 1.5rem;
    padding: 0 1.75rem;
}

div#info-wrap .modal {
	display:none;
}

a.info-link > * {
    display: block;
    width: 100%;
}

div.info-img {
    position: relative;
    width: 100%;
    height: 260px;
    overflow:hidden;
}

div.info-img > img {
    position: absolute;
    top: 50%;
    left: 50%;
    height: auto;
    width: 100%;
    transform: translate(-50%,-50%);
}

a.info-link,
a.info-modal {
	background: #bf9cc4;
    display: block;
    text-transform: uppercase;
    color: #FFF;
    text-decoration: none;
    text-align: center;
}

a.info-modal+div.modal > div.modal-inner > h2 {
	font-size:3rem;
	font-weight:bold;
	color: #bf9cc4;
	margin:0;
}

div#info-wrap > div:nth-child(2) > a,
div#info-wrap > div:nth-child(4) > a {
	background: #7fabaa;
}

div#info-wrap > div:nth-child(2) > a.info-modal+div.modal > div.modal-inner > h2 {
	color: #7fabaa;
}

div#info-wrap > div:nth-child(2) > a.info-modal+div.modal > div.modal-inner {
	border-color:#7fabaa;
}

div#info-wrap > div:nth-child(3) > a,
div#info-wrap > div:nth-child(5) > a{
	background: #a7c589;
}

div#info-wrap > div:nth-child(3) > a.info-modal+div.modal > div.modal-inner > h2,
div#info-wrap > div:nth-child(5) > a.info-modal+div.modal > div.modal-inner > h2 {
	color: #a7c589;
}

div#info-wrap > div:nth-child(3) > a.info-modal+div.modal > div.modal-inner,
div#info-wrap > div:nth-child(5) > a.info-modal+div.modal > div.modal-inner {
	border-color:#a7c589;
}

#info-wrap a > h3 {
    margin: 0;
    padding: 0.375em 0.75rem;
    font-size: 1.5rem;
}

a.info-link > span,
a.info-modal > span {
	display:block;
	width:100%;
    padding: 0.75rem;
    font-size: 1.25rem;
}

div#info-wrap .modal.visible {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

div.modal-bg {
    position: absolute;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.5);
	cursor:pointer;
}

.modal-inner {
    position: relative;
    padding: 2.5rem;
    width: 90vw;
	max-width: 1280px;
    height: auto;
    max-height: 90vh;
    margin: 0;
    background: #FFF;
    display: block;
    overflow-y: auto;
    overflow-x: hidden;
	z-index: 999;
	border: 2px solid #bf9cc4;
    box-shadow: 5px 5px 5px rgba(0,0,0,0.25);
}

.modal-close {
    position: absolute;
    width: 2rem;
    height: 2rem;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 999999;
	cursor:pointer;
}

.modal-close > i {
    font-size: 2rem;
    line-height: 2rem;
    font-weight: bold;
    color: #bf9cc4;
}

body.modal-open {
    overflow: hidden !important;
	margin-right:17px;
}

div.modal-gallery {
	padding:0 !important;
	display: flex;
    flex-flow: row wrap;
    column-gap: .5rem;
    row-gap: .5rem;
}

div.modal-gallery a {
	display:block;
	flex: 1 1 calc(20% - .5rem);
    height: 175px;
}

div.modal-gallery a img {
	width:100%;
	height:100%;
	object-fit:cover;
}

div.modal-content {
    padding-right: 2.25rem !important;
}

/*--------------------------------------------------------------
## Events Feed
--------------------------------------------------------------*/

div#events-wrap {
    padding: 0.75rem 1.75rem;
}

div#events-inner {
    display: block;
    width: 100%;
    float: left;
    overflow: hidden;
	background: #f9f5f9;
    padding: 1rem;
}

#feed-scroll > h1 {
    font-size: 4.5rem;
    margin: 0;
    padding-top: 0.75rem;
    padding-bottom: 1.25rem;
    margin-bottom: 1.25rem;
    position: relative;
    color: #7fabaa;
    line-height: 1;
    z-index: 1;
}

#feed-scroll > h1:before {
    content: '';
    position: absolute;
    top: 100%;
    left: 8.75rem;
    width: 3px;
    height: 840px;
    background: rgb(127,171,170);
    background: -moz-linear-gradient(top, rgba(127,171,170,1) 0%, rgba(249,245,249,1) 100%);
    background: -webkit-linear-gradient(top, rgba(127,171,170,1) 0%,rgba(249,245,249,1) 100%);
    background: linear-gradient(to bottom, rgba(127,171,170,1) 0%,rgba(249,245,249,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#7fabaa', endColorstr='#f9f5f9',GradientType=0 );
}

#feed-scroll > h1:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0.75rem;
    height: 3px;
    width: 116.6666666667%;
	background: rgb(127,171,170);
	background: -moz-linear-gradient(left,  rgba(127,171,170,1) 0%, rgba(249,245,249,1) 100%);
	background: -webkit-linear-gradient(left,  rgba(127,171,170,1) 0%,rgba(249,245,249,1) 100%);
	background: linear-gradient(to right,  rgba(127,171,170,1) 0%,rgba(249,245,249,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#7fabaa', endColorstr='#f9f5f9',GradientType=1 );
}

div#feed-wrap {
    position: relative;
    z-index: 2;
}

div#feed-up, div#feed-down {
    text-align: center;
}

div#feed-up > i, div#feed-down > i {
    font-size: 4rem;
    display: inline-block;
    color: #bf9cc4;
    cursor:pointer;
}

/*--------------------------------------------------------------
## Contacts
--------------------------------------------------------------*/

div#map-wrap {
    margin-bottom: 0;
}

div#gmap {
    width: 100%;
    height: 620px;
    margin: 0;
}

div#form-wrap {
    padding: 1.5rem;
    margin: 0;
    background: #bf9cc4;
    text-align: center;
}

div#form-wrap h1 {
    font-size: 3rem;
    line-height: 1;
    text-transform: uppercase;
    margin: 0;
    color: #FFF;
}

div#form-wrap > p {
    margin-bottom: 0;
}

div#gform_wrapper_1 {
    float: left;
    width: 100%;
    margin: 0;
}

form#gform_1 {
    position: relative;
    float: left;
    width: 100%;
    padding: 1.5rem;
}

#gform_1 label {
    display: none;
}

li#field_1_2, li#field_1_3 {
    clear: none;
    margin-top:0;
}

li#field_1_2 input, 
li#field_1_3 input,
li#field_1_4 textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255,255,255,0.4);
    border: 1px solid #FFF;
    font-size:1.25rem;
}

#input_1_5 > div {
    margin: 0 auto;
}

#gform_submit_button_1 {
    margin: 0 auto;
    float: none;
    display: block;
    padding: 1rem 5rem 1rem 2rem;
    font-size: 1.75rem;
    height: 78px;
    text-transform: uppercase;
    background: url(img/send-icon.png);
    background-repeat: no-repeat;
    background-position: calc(100% - 1.5rem) 50%;
    background-color: #a7c589;
    color: #FFF;
    border: 0;
    border-radius: 0;
}

#gform_1 .gform_footer.top_label {
    padding: 0 0.75rem;
    width: 50%;
    position: absolute;
    bottom: 1.5rem;
    right: 0;
}

div#contacts-wrap {
    padding: 1.5rem;
}

div#contacts-wrap > div {
    height: 200px;
    margin:1rem 0;
}

div#contacts-wrap img,
div#contacts-wrap p  {
    display: block;
	margin:0;
}

div#contacts-wrap a {
    color: #bc3131;
    text-decoration: none;
}

div#contacts-wrap h3 {
    font-weight: 700;
    margin-top: 0;
}

div#contacts-wrap > div:nth-child(odd) {
    clear: both;
}

#contacts-wrap > div:nth-child(2) {
    flex-flow: wrap;
}

#contacts-wrap > div:nth-child(2) > div {
    width: 100%;
    display: block;
    text-align: center;
}

/*---------------------------------------------------------------*/
/* # Responsiveness & Mobile Optimisation ---------------------- */
/* --------------------------------------------------------------*/

/*--------------------------------------------------*/
/* Notebooks / Low Res Laptops -------------------- */
/*--------------------------------------------------*/
@media only screen 
  and (min-width: 1024px) 
  and (max-width: 1366px) { 

body {
	overflow-x:hidden;		  
}
	  
#slideshow-wrap {
	max-height:90vh;		  
}

.slide {
	height:700px;
}
	  
.slide-inner h1 {
    font-size: 4.5rem;
}
	  
div#museum-inner,
div#murals-inner,
div#tt-inner {
    padding: 0;
}
	  
div#foot-logo {
    padding-left: 0.75rem;
}
	  
div#foot-menu-wrap {
    padding-right: 0;
}

}

/*--------------------------------------------------*/
/* Tablets (Landscape) ---------------------------- */
/*--------------------------------------------------*/
/* Landscape */
@media only screen 
  and (min-device-width: 768px) 
  and (max-device-width: 1024px) 
  and (orientation: landscape) {
	 
html {
	overflow-x:hidden;
}

body {
	overflow-x:hidden;		  
}
	  
#slideshow-wrap {
	max-height:90vh;		  
}

.slide {
	height:700px;
}
	  
.slide-inner h1 {
    font-size: 4.5rem;
}
	  
div#museum-inner,
div#murals-inner,
div#tt-inner {
    padding: 0;
}
	  
div#info-wrap > div {
    margin-bottom: 1.5rem;
    padding: 0 0.5rem;
}
	  
div.info-img > img {
	height:100%;	
}
	  
div#foot-logo {
    padding-left: 0.75rem;
}
	  
div#foot-logos {
    width: 100%;
    white-space: nowrap;
    margin-left: -22%;
}
	  
div#foot-social {
    clear: both;
    width: 100%;
    text-align: left;
}
	  
div#foot-menu-wrap {
    padding-right: 0;
}


}

/*--------------------------------------------------*/
/* Tablets (portrait) ----------------------------- */
/*--------------------------------------------------*/
/* Portrait */
@media only screen 
  and (min-device-width: 768px) 
  and (max-device-width: 1024px) 
  and (orientation: portrait) {

html {
	overflow-x:hidden;
}

body {
	overflow-x:hidden;		  
}
	  
#site-contact > div > div.col.s8.m8.offset-m4.l8 {
    text-align: right;
}
	  
ul#primary-menu {
	display:none;
}

ul#primary-menu > li {
    display: block;
    width:100%;
    text-align: right;
    margin: 0.75rem 0;
}

ul#primary-menu > li > a {
    font-size: 1.75rem;
}
	  
div#menu-button {
    float: right;
    padding: 0.25rem 0.5rem;
    margin-right: 0.75rem;
    border: 2px solid;
    color: #FFF;
    background: #8cb365;
}
	  
div#menu-button.active {
    background: #bf9cc4;
}

div#menu-button > * {
    display: inline-block;
    vertical-align: middle;
}

div#menu-button > span {
    margin-right: 0.5rem;
    text-transform: uppercase;
    font-size: 1.25rem;
}
	  
div#slide-prev > i, div#slide-next > i {
	font-size:3rem;		  
}
	  
.slide > img {
    max-width: none;
    min-width: 100%;
    width: auto;
    max-height: 100%;
}
	  
div.town-trail-badge {
    display: none;
}
	  
div#museum-gal-wrap,
div#murals-gal-wrap,
div#tt-gal-wrap {
    width: calc(100% - 0.75rem);
    margin: 0.375rem;
}
	  
div#info-wrap > div {
    margin-bottom: 1.5rem;
    padding: 0 0.5rem;
}
	  
div.info-img > img {
	height:100%;	
}
	  
div#contacts-wrap img {
    max-height: 170px;
}
	  
div#foot-text {
    padding-top: 1.5rem;
}
	  
div#foot-logo {
    padding: 0;
    position: absolute;
    left: 0.75rem;
}
	  
div#foot-menu-wrap {
    padding-right: 0;
}
	  
ul#foot-menu {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
}
	  
div#foot-logos > img {
    width: auto;
    height: auto;
    margin: 0.375rem;
    max-height: 70px;
}
	  
div#cff {
    height: auto !important;
    max-height: 50vh;
}

}

/*--------------------------------------------------*/
/* Smartphones (landscape) ------------------------ */
/*--------------------------------------------------*/
@media only screen 
  and (min-width : 414px) 
  and (max-width : 767px) 
  and (orientation: landscape) {

html {
	overflow-x:hidden;
}

body {
	overflow-x:hidden;		  
}
	  
div#logo-wrap > div > img {
    width: 65%;
}
	  
#site-contact > div > div.col.s8.offset-s4.m8.offset-m4.l8 {
    text-align: right;
	padding:0;
}
	  
ul#primary-menu {
	display:none;
}

ul#primary-menu > li {
    display: block;
    width:100%;
    text-align: right;
    margin: 0.75rem 0;
}

ul#primary-menu > li > a {
    font-size: 1.75rem;
}
	  
div#menu-button {
    float: right;
    padding: 0.25rem 0.5rem;
    margin-right: 0.75rem;
    border: 2px solid;
    color: #FFF;
    background: #8cb365;
}
	  
div#menu-button.active {
    background: #bf9cc4;
}

div#menu-button > * {
    display: inline-block;
    vertical-align: middle;
}

div#menu-button > span {
    margin-right: 0.5rem;
    text-transform: uppercase;
    font-size: 1.25rem;
}
	  
.slide-inner h2 {
    font-size: 1.5rem;
	padding-left:0.75rem;
}
	  
.slide-inner h1 {
    font-size: 2.5rem;
	padding-left:0.75rem;
}
	  
#slideshow > div > div > div.col.s12.m12.l7 {
    padding: 0;
}
	  
div#slide-prev, div#slide-next {
    padding: 0;
}
	  
div#slide-prev > i, div#slide-next > i {
	font-size:3rem;		  
}
	  
.slide {
	  height:125vh;
	  padding-bottom:120px;
}
	  
.slide > img {
    max-width: none;
    min-width: 100%;
    width: auto;
    max-height: 100%;
}
	  
.slide-desc p {
    font-size: 0.875rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}
	  
.slide-desc br {
    display: none;
}
	  
.slide-desc strong {
    font-size: 0.875rem;
}
	  
div#slide-next {
    text-align: right;
}

div#thumb-wrap {
    height:30px;
}
	  
div#slide-thumb > a {
    display: inline-block;
    height: 1.25rem;
    width: 1.25rem;
}
	  
div.town-trail-badge {
    display: none;
}
	  
div#slideshow-wrap div.bx-wrapper, div#museum-gal-wrap div.bx-wrapper, div#murals-gal-wrap div.bx-wrapper {
	margin: 0 auto;	
}
	  
div#museum-gal-wrap,
div#murals-gal-wrap,
div#tt-gal-wrap{
    width: calc(100% - 0.75rem);
    margin: 0.375rem;
}

div#museum-inner,
div#murals-inner,
div#tt-inner {
    padding: 0;
}

div#museum-inner > div,
div#murals-inner > div,
div#tt-inner > div {
    padding: 0;
	margin: 0;
	width: 100%;
}

div#museum-text,
div#murals-text,
div#tt-text {
    width: 100%;
}

#museum-text > h1,
#murals-text > h1,
#tt-text > h1 {
    font-size: 3rem;
}
	  
div.gal-slide {
	height:75vh;		  
}
	  
a.expando {
    display: none;
}
	  
div#museum-next, div#museum-prev,
div#murals-next, div#murals-prev,
div#tt-next, div#tt-prev {
	display:none;		  
}
	  
.section-wrap.row .valign-wrapper {
    display: block;
}

div#museum-thumb-wrap, div#murals-thumb-wrap, div#tt-thumb-wrap {
    display: flex;
}
	  
.col.s12.m3.vert-img {
    padding: 0;
	text-align:center;
}

.col.s12.m3.vert-img > a > img {
    max-height: 35vh;
}
	  
div#info-wrap > div {
    margin-bottom: 1.5rem;
    padding: 0 0.5rem;
}
	  
div.info-img > img {
	height:100%;	
}
	  
div.info-img {
    height: auto;
    max-height: 400px;
    padding-bottom: 75%;
}
	  
.modal-inner {
	padding:0.75rem;	  
}
	  
a.info-modal+div.modal > div.modal-inner > h2 {
	padding: 0;
	padding-right: 2rem;
	font-size: 2.25rem;
    line-height: 1;	  
}
	  
.modal-content.col.s12.m8.l10 {
    padding: 0.25rem !important;
}
	  
#links-wrap > h1 {
    font-size: 2.5rem;
    padding-left: 1.5rem;
}
	  
#info-wrap a > h3 {
	font-size:1.5rem;	
}
	  
div#events-wrap, div#events-inner {
    padding: 0;
}
	  
#feed-scroll > h1 {
    font-size: 2rem;
    margin: 0;
}
	  
#feed-scroll > h1:before {
	display:none;	  
}
	  
div#feed-controls {
    display: none;
}
	  
div#cff {
    height: auto !important;
}
	  
div#cff .cff-meta-wrap {
    position: static;
    bottom: auto;
    right: auto;
    padding-left: 0.75rem !important;
}
	  
div#form-wrap {
    padding: 1rem 0.75rem;
}
	  
form#gform_1 {
    padding: 0;
}
	  
li#field_1_4 {
    margin-top: 0;
}
	  
li#field_1_5, div#input_1_5 {
    margin-top: 0;
}
	  
#gform_1 .gform_footer.top_label {
    padding: 0 0.75rem;
    width: 100%;
    position: static;
    bottom: auto;
    right: auto;
	float: left;
    margin-top: 0.5rem;
}
	  
div#contacts-wrap {
    padding: 0;
}
	  
div#contacts-wrap > div {
    height: auto;
	text-align:center;
}
	  
div#contacts-wrap img {
    max-height: 170px;
}
	  
div#contacts-wrap img {
    margin: 0 auto;
}

div#contacts-wrap > div.valign-wrapper > div {
    padding: 0;
}
	  
div#foot-text {
    padding-top: 1.5rem;
}
	  
div#foot-logo {
    padding: 0 3.5rem;
}
	  
div#foot-menu-wrap {
    padding: 0.5rem 1.5rem;
}
	  
ul#foot-menu {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
}
	  
div#foot-logo > img {
    display: block;
    margin: 0 auto;
    max-width: 250px;
}
	  
div#foot-logos {
	text-align:center;		  
}
	  
div#foot-logos > img {
    width: auto;
    height: auto;
    margin: 0.375rem;
    max-height: 70px;
}
	  
div#foot-contact {
    padding: 0;
}
	  
div#foot-contact-details > p > strong {
    display: block;
}

div#foot-social {
	padding-top:0.5rem;
}
	  
#foot-contact a.social {
    width: 2.5rem;
    height: 2.5rem;
    background: url(img/social-sprite.png);
	background-size: 5rem 7.5rem;
    margin: 0.25rem;
}

#site-contact a.social.facebook {
    background-position: 0 -2.5rem;
}

#site-contact a.social.flickr {
    background-position: 0 -5rem;
}

#foot-contact a.social.gplus {
    background-position: -2.5rem 0;
}

#foot-contact a.social.facebook {
    background-position: -2.5rem -2.5rem;
}

#foot-contact a.social.flickr {
    background-position: -2.5rem -5rem;
}

}

/*--------------------------------------------------*/
/* Smartphones (portrait) ------------------------- */
/*--------------------------------------------------*/
@media only screen 
  and (min-width : 1px) 
  and (max-width : 414px)
  and (orientation: portrait) {

html {
	overflow-x:hidden;
}

body {
	overflow-x:hidden;		  
}
	  
#site-contact > div > div.col.s8.offset-s4.m8.offset-m4.l8 {
    text-align: right;
	padding:0;
}
	  
#site-contact > div > div.col.s8.m8 > span {
    display: inline-block;
    vertical-align: middle;
    font-size: .875rem;
    margin: 0 !important;
}
	  
#site-contact > div > div.col.s12.m8 > span+span:before {
	display:none;
}
	  
ul#primary-menu {
	display:none;
}

ul#primary-menu > li {
    display: block;
    width:100%;
    text-align: right;
    margin: 0.75rem 0;
}

ul#primary-menu > li > a {
    font-size: 1.75rem;
}
	  
div#menu-button {
    float: right;
    padding: 0.25rem 0.5rem;
    margin-right: 0.75rem;
    border: 2px solid;
    color: #FFF;
    background: #8cb365;
}
	  
div#menu-button.active {
    background: #bf9cc4;
}

div#menu-button > * {
    display: inline-block;
    vertical-align: middle;
}

div#menu-button > span {
    margin-right: 0.5rem;
    text-transform: uppercase;
    font-size: 1.25rem;
}
	  
.slide-inner h2 {
    font-size: 1.5rem;
	padding-left:0.75rem;
}
	  
.slide-inner h1 {
    font-size: 2.5rem;
	padding-left:0.75rem;
}
	  
#slideshow > div > div > div.col.s12.m12.l7 {
    padding: 0;
}
	  
div#slide-prev, div#slide-next {
    padding: 0;
}
	  
div#slide-prev > i, div#slide-next > i {
	font-size:3rem;		  
}
	  
.slide {
	  height:100vh;
}
	  
.slide > img {
    max-width: none;
    min-width: 100%;
    width: auto;
    max-height: 100%;
}
	  
.slide-desc p {
    font-size: 0.875rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}
	  
.slide-desc br {
    display: none;
}
	  
.slide-desc strong {
    font-size: 0.875rem;
}
	  
div.town-trail-badge {
    display: none;
}
	  
div#slideshow-wrap div.bx-wrapper, div#museum-gal-wrap div.bx-wrapper, div#murals-gal-wrap div.bx-wrapper, div#tt-gal-wrap div.bx-wrapper {
	margin: 0 auto;	
}
	  
div#museum-gal-wrap,
div#murals-gal-wrap,
div#tt-gal-wrap {
    width: calc(100% - 0.75rem);
    margin: 0.375rem;
}

div#museum-inner,
div#murals-inner,
div#tt-inner{
    padding: 0;
}

div#museum-inner > div,
div#murals-inner > div,
div#tt-inner > div{
    padding: 0;
	margin: 0;
	width: 100%;
}

div#museum-text,
div#murals-text,
div#tt-text {
    width: 100%;
}

#museum-text > h1,
#murals-text > h1,
#tt-text > h1 {
    font-size: 3rem;
}
	  
div.gal-slide {
	height:45vh;		  
}
	  
a.expando {
    display: none;
}
	  
div#museum-next, div#museum-prev,
div#murals-next, div#murals-prev,
div#tt-next, div#tt-prev {
	display:none;		  
}
	  
.section-wrap.row .valign-wrapper {
    display: block;
}

div#museum-thumb-wrap, div#murals-thumb-wrap, div#tt-thumb-wrap {
    display: flex;
}
	  
.col.s12.m3.vert-img > a > img {
    max-height: 35vh;
}
	  
.col.s12.m3.vert-img {
    padding: 0;
	text-align: center;
}
	  
div#info-wrap > div {
    margin-bottom: 1.5rem;
    padding: 0 0.5rem;
}
	  
div.info-img > img {
	height:100%;	
}
	  
div.info-img {
    height: 50vh;
    max-height: 240px;
}
	  
.modal-inner {
	padding:0.75rem;	  
}
	  
a.info-modal+div.modal > div.modal-inner > h2 {
	padding: 0;
	padding-right: 2rem;
	font-size: 2.25rem;
    line-height: 1;	  
}
	  
.modal-content.col.s12.m8.l10 {
    padding: 0.25rem !important;
}
	  
#links-wrap > h1 {
    font-size: 2.5rem;
    padding-left: 1.5rem;
}
	  
#info-wrap a > h3 {
	font-size:1.5rem;	
}
	  
div#events-wrap, div#events-inner {
    padding: 0;
}
	  
#feed-scroll > h1 {
    font-size: 2rem;
    margin: 0;
}
	  
#feed-scroll > h1:before {
	display:none;	  
}
	  
div#feed-controls {
    display: none;
}
	  
div#cff {
    height: auto !important;
}
	  
div#cff .cff-meta-wrap {
    position: static;
    bottom: auto;
    right: auto;
    padding-left: 0.75rem !important;
}
	  
div#form-wrap {
    padding: 1rem 0.75rem;
}
	  
form#gform_1 {
    padding: 0;
}
	  
li#field_1_4 {
    margin-top: 0;
}
	  
li#field_1_5, div#input_1_5 {
    margin-top: 0;
}
	  
#gform_1 .gform_footer.top_label {
    padding: 0 0.75rem;
    width: 100%;
    position: static;
    bottom: auto;
    right: auto;
	float: left;
    margin-top: 0.5rem;
}
	  
div#contacts-wrap {
    padding: 0;
}
	  
div#contacts-wrap > div {
    height: auto;
	text-align:center;
}
	  
div#contacts-wrap img {
    max-height: 170px;
}
	  
div#contacts-wrap img {
    margin: 0 auto;
}

div#contacts-wrap > div.valign-wrapper > div {
    padding: 0;
}
	  
div#foot-text {
    padding-top: 1.5rem;
}
	  
div#foot-logo {
    padding: 0 3.5rem;
}
	  
div#foot-menu-wrap {
    padding: 0.5rem 1.5rem;
}
	  
ul#foot-menu {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
}
	  
div#foot-logos {
	text-align:center;		  
}
	  
div#foot-logos > img {
    width: auto;
    height: auto;
    margin: 0.375rem;
    max-height: 70px;
}
	  
div#foot-contact {
    padding: 0;
}
	  
div#foot-contact-details > p > strong {
    display: block;
}

div#foot-social {
	padding-top:0.5rem;
}
	  
#foot-contact a.social {
    width: 2.5rem;
    height: 2.5rem;
    background: url(img/social-sprite.png);
	background-size: 5rem 7.5rem;
    margin: 0.25rem;
}

#site-contact a.social.facebook {
    background-position: 0 -2.5rem;
}

#site-contact a.social.flickr {
    background-position: 0 -5rem;
}

#foot-contact a.social.gplus {
    background-position: -2.5rem 0;
}

#foot-contact a.social.facebook {
    background-position: -2.5rem -2.5rem;
}

#foot-contact a.social.flickr {
    background-position: -2.5rem -5rem;
}

}