/*
Theme Name: Solomons Tap Room
Theme URI: https://solomonstap.co.uk
Description: Solomons Tap Room Theme
Version: 2.0
Author: Paul Maloney
Author URI: https://paulmaloney.net
Tags: new, gold, black, green
*/

/* =============================================================================
   HTML5 CSS Reset Minified - Eric Meyer
   ========================================================================== */

html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent}
body{line-height:1}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}
nav ul{list-style:none}
blockquote,q{quotes:none}
blockquote:before,blockquote:after,q:before,q:after{content:none}
a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent;text-decoration:none}
mark{background-color:#ff9;color:#000;font-style:italic;font-weight:bold}
del{text-decoration:line-through}
abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help}
table{border-collapse:collapse;border-spacing:0}
hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}
input,select{vertical-align:middle}
li{list-style:none}

textarea,
input.text,
input[type="text"],
input[type="button"],
input[type="submit"],
.input-checkbox {
border-radius: 0;
}

html, body {
  -webkit-text-size-adjust: 100%; 
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;

}

:root {
  --black: #000000;
  --white: #ffffff;
  --gold: #be995e;
  --border: #222222;
  --green:#022821;
}

@font-face {
  font-family: 'Porter';
  src: url('webfonts/Porter.woff2') format('woff2'),
    url('webfonts/Porter.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
    font-family: 'Figtree';
    src: url('webfonts/Figtree-Black.woff2') format('woff2'),
        url('webfonts/Figtree-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Figtree';
    src: url('webfonts/Figtree-SemiBold.woff2') format('woff2'),
        url('webfonts/Figtree-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Figtree';
    src: url('webfonts/Figtree-Light.woff2') format('woff2'),
        url('webfonts/Figtree-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Figtree';
    src: url('webfonts/Figtree-Medium.woff2') format('woff2'),
        url('webfonts/Figtree-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Figtree';
    src: url('webfonts/Figtree-Bold.woff2') format('woff2'),
        url('webfonts/Figtree-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Figtree';
    src: url('webfonts/Figtree-ExtraBold.woff2') format('woff2'),
        url('webfonts/Figtree-ExtraBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Figtree';
    src: url('webfonts/Figtree-Regular.woff2') format('woff2'),
        url('webfonts/Figtree-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}



/* 
==========================================================================
GLOBAL & WP SPECIFIC STYLES
==========================================================================
*/

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

input, textarea, select {
  -webkit-border-radius:0; 
  border-radius:0;
}

img,
audio,
video,
canvas {
  max-width: 100%;
}

html {
  min-height: 100%;
  margin-bottom: 1px;
  overflow-y: auto; 
  scrollbar-color: #be995e #000000;
}

::selection {
  background: var(--green);
  color: var(--white);
}

::-moz-selection {
  background: var(--green);
  color: var(--white);
}

::-webkit-selection {
  background: var(--green);
  color: var(--white);
}

.cf:before,.cf:after {content: " "; /* 1 */  display: table; /* 2 */}
.cf:after {clear: both;}
.cf {clear: both;}

strong, b {
  font-weight:bold;
}

em, i {
  font-style:italic;
}

img.alignright {
  float:right;
  margin:0 0 2em 1em;
}

img.alignleft {
  float:left;
  margin:0 2em 1em 0;
}

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

.alignright {
  float:right;
  margin:0 0 2em 1em;
}

.alignleft {
  float:left;
  margin:0 0 2em 1em;
}

img.wp-smiley {
  float: none;
  margin: 0 0 0 5px;
  vertical-align:middle;
}

p {
  margin: 0 0 20px 0;
}

a {
  color: var(--gold);
  text-decoration: none;
}

a:hover {
  color: var(--white);
  text-decoration: none;
}

/* 
==========================================================================
GENERAL
==========================================================================
*/

h1 {
  font-family:'Porter', Helvetica , Arial, sans-serif;  
  font-size: 50px;
  color: var(--gold);
  margin:0 0 15px 0;
}

h2 {
  font-family:'Porter', Helvetica , Arial, sans-serif;  
  font-size: 45px;
  color: var(--gold);
  margin:0 0 15px 0;
}

h3 {
  font-family:'Porter', Helvetica , Arial, sans-serif;  
  font-size: 40px;
  color: var(--gold);
  margin:0 0 15px 0;
}

h4 {
  font-family:'Porter', Helvetica , Arial, sans-serif;  
  font-size: 35px;
  color: var(--gold);
  margin:0 0 15px 0;
}

h5 {
  font-family:'Porter', Helvetica , Arial, sans-serif;  
  font-size: 30px;
  color: var(--gold);
  margin:0 0 15px 0;
}

body {
  background: var(--black);
  color: var(--white);
  font: 18px/1.6 'Figtree', Helvetica, Arial, sans-serif;
  margin: 0;
  height: 100%;
  overflow-x: hidden;
}

/* 
==========================================================================
HEADER
==========================================================================
*/

.main-header {
	position:relative;
  width: 100%;
  background: var(--black);
  margin: 0 auto;
  z-index: 9;
  height: 130px;
  padding: 30px 0;
  font-weight: 600;
  transition:all .1s ease-in-out;
}

.logo {
  position: relative;
  margin: 0;
  float: left;
  width: 220px;
  transition: all 0.3s ease-in-out;
}

.logo img {
  display: block;
  width: 220px;
  height: auto;
  margin: 0;
}

nav {
  float: right;
  font-size: 16px;
  margin: 20px 0 0 0;
}

nav ul {
  list-style-type: none;
  margin: 0;
}

nav li {
  display: inline-block;
  margin: 0 20px;
}

nav a {
  color: var(--white);
  text-decoration: none;
}

nav a:hover {
  color: var(--gold);
  text-decoration: none;
}

.gold-button {
  font-size: 16px;
  border: 2px solid var(--gold);
  padding: 10px 20px;
  color: var(--gold);
  text-transform: uppercase;
  text-decoration: none;
   transition:all .3s ease-in-out 0.1s;
}

.gold-button:hover {
  border: 2px solid var(--gold);
  padding: 10px 20px;
  color: var(--black);
  background: var(--gold);
  text-transform: uppercase;
  text-decoration: none;
   transition:all .3s ease-in-out 0.1s;
}

.contact-header {
  float: right;
  margin: 20px 0 0 50px;
}

/* 
==========================================================================
CONTENT
==========================================================================
*/

.container {
  position: relative;
  margin: 0 auto;
  height: 1000px;
}

.intro {
  max-width: 800px;
  color: white;
}

.inner {
  position: relative;
  max-width: 1450px;
  padding: 0 50px;
  margin: 0 auto;
}

.head-inner {
  max-width: 1450px;
  padding: 0 50px;
  margin: 0 auto;
}

.two-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  justify-items: stretch;
  align-items: center;
  margin: 50px auto;
}

.home-hero {
  position: relative;
  padding: 75px 0;
  margin: 0 auto;
}

.home-hero h1 {
  margin: 0 0 5px 0;
}

.home-hero h5 {
  font-family: 'Figtree', Helvetica , Arial, sans-serif;
  font-size: 18px;
  color: var(--white);
  text-shadow: 4px 2px 0px rgba(0,0,0,0.5);
  margin: 0;
  display: inline-block;
}

.green-section h1,
.green-section h2,
.green-section h3,
.green-section h4,
.green-section h5 {
	text-shadow: 4px 2px 0px rgba(0,0,0,0.5);
	display: block;
}


.hero-address {
  margin: 0 0 20px 0;
}

.hero-address span {
  display: inline-block;
  margin: 0 5px 0 0;
}

.inner-hero {
  padding: 100px 0;
  position: relative;

}

.inner-hero-text {
  margin: 0 auto;
  text-align: center;
  max-width: 800px;
}

.inner-hero-text h2 {
  font-family: 'Porter', Helvetica , Arial, sans-serif;
  font-size: 65px;
  color: var(--gold);
  margin: 0 0 20px 0;
  text-shadow: 4px 2px 0px rgba(0,0,0,0.5);
  display: inline-block;
  position: relative;
}

.inner-hero-text h2::before {
  position: relative;
  left: -40px;
display: inline-block;
  vertical-align: middle;
  content: "";
	background: url('images/diamond.svg');
		background-size:cover;
		height:15px;
	width:15px;
  z-index: 9999;
  color: var(--gold);
}

.inner-hero-text h2::after {
  position: relative;
  right: -40px;
display: inline-block;
  vertical-align: middle;
  content: "";
	background: url('images/diamond.svg');
	background-size:cover;
		height:15px;
	width:15px;
  z-index: 9999;
  color: var(--gold);
}

.black-section {
  padding: 100px 0;
  position: relative;
  background: var(--black);
}

.contact-section {
  padding: 100px 0;
  position: relative;
  background: var(--black);
  border-bottom: 3px solid var(--gold);
}

.contact-section .inner {
  max-width: 1150px;
}

.contact-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-column-gap: 75px;
  grid-row-gap: 75px;
  justify-items: stretch;
  align-items: initial;
  margin: 0 auto;
}

.contact-section h3 {
  font-family: 'Porter', Helvetica , Arial, sans-serif;
  font-size: 35px;
  color: var(--gold);
  margin: 0 0 10px 0;
}

.contact-social a {
  margin: 0 10px 10px 0;
  font-size: 30px;
  display: inline-block;
  vertical-align: middle;
	transition: all 0.3s ease-in-out;
}

.contact-social img {
  display: block!important;
  width: 30px!important;
  height: auto!important;
}

.contact-social a:hover {
	opacity:0.5!important;
transition: all 0.3s ease-in-out;	
}

.contact-social,
.contact-info,
.contact-find,
.contact-times {
  margin: 0 0 30px 0;
}

.green-section {
  padding: 100px 0;
  position: relative;
  background: var(--green);
}

.white-section {
  padding: 100px 0;
  position: relative;
  background: var(--white);
}

.fifty-grid-center {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  justify-items: stretch;
  align-items: center;
  margin: 0 auto;
}

.fifty-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  justify-items: stretch;
  align-items: initial;
  margin: 0 auto;
}

.fifty-grid-wide {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 75px;
  grid-row-gap: 75px;
  justify-items: stretch;
  align-items: initial;
  margin: 0 auto;
}

.sixty-grid-center {
  width: 100%;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-column-gap: 75px;
  grid-row-gap: 75px;
  justify-items: stretch;
  align-items: center;
  margin: 0 auto;
}

.sixty-grid-center .sixty-img {
  order: 1;
}

.sixty-col ul {
  margin: 20px 0 0 20px;
}

.sixty-col li {
  list-style: square;
  margin: 0 0 10px 0;
  font-size: 16px;
}

.sixty-grid-alt {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  grid-column-gap: 75px;
  grid-row-gap: 75px;
  justify-items: stretch;
  align-items: center;
  margin: 0 auto;
}

.fancy-image {
  position: relative;
  z-index: 5;
  padding: 10px;
}

.fancy-image img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  position: relative;
  z-index: 5;
}

.fancy-image:before {
  content: "";
  width:75px;
  height: 75px;
  background: var(--gold);
  position: absolute;
  bottom:0;
  left:0;
  z-index: 0;
}

.fancy-image:after {
  content: "";
  width:75px;
  height: 75px;
  background: var(--gold);
  position: absolute;
  top:0;
  right:0;
  z-index: 0;
}

.fancy-title {
  position: relative;
  color: var(--gold);
  font: 18px 'Figtree', Helvetica, Arial, sans-serif!important;
  text-transform: uppercase!important;
  font-weight: 700!important;
  margin: 0;
  padding: 1px 0 0 100px;
}

.fancy-title:before {
  content: "";
  width:75px;
  height: 2px;
  background: var(--gold);
  position: absolute;
	top: 50%;
  transform: translateY(-50%);
  left:0;
  z-index: 0;
}

.ft-white {
  color: var(--white);
}

.ft-white:before {
  background: var(--white);
}

.mob-hide {
  display: block;
}

.mob-show {
  display: none;
}

.test-intro {
  margin: 25px 0 0 50px;
}

.test-section {
 padding: 100px 0 150px 0;
  position: relative;
  background: var(--white); 
}

.test-section::before {
  content: "";
  color: var(--gold) !important;
  position: absolute;
  top:10px;
  left:50px;
	background: url('images/quote-left.svg');
	background-size: cover;
	height:70px;
	width:70px;
  opacity: 0.2;
}

.test-section::after {
  content: "";
  color: var(--gold) !important;
  position: absolute;
  bottom:20px;
  right:50px;
	background: url('images/quote-right.svg');
	background-size: cover;
	height:70px;
	width:70px;
  opacity: 0.2;
}

.test-slider {
  margin: 25px auto 75px auto;
}

.test-slide {
  display: inline-block;
  background: var(--white);
  margin: 0 50px;
  font-size: 18px;
  color:var(--black);
}

.test-slide p {
  margin: 0;
}

.test-auth {
  display: block;
  font-weight: 700;
  margin: 10px 0 0 0!important;
}

.test-stars {
  font-size: 20px;
  color: var(--gold);
}

.test-stars img {
  width: 20px!important;
  display: inline-block!important;
  height: auto!important;
  margin: 0 2px 0 0!important;
}

.narrow-intro {
  margin: 0 auto;
  width: 100%;
  max-width: 900px;
  text-align: center;
}

.what-intro {
  margin: 0;
  width: 100%;
  max-width: 900px;
}

.what-intro h5,
.narrow-intro h5  {
  position: relative;
  color: var(--white);
  font: 25px 'Figtree', Helvetica, Arial, sans-serif;
  line-height: 35px;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0;
  text-align: center;
}

.narrow-intro h2 {
  font-family: 'Figtree', Helvetica , Arial, sans-serif;
  font-size: 25px;
  color: var(--white);
  margin: 0;
  line-height: 40px;
  text-transform: uppercase;
}

.brewer-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  justify-items: stretch;
  align-items: center;
  margin: 50px auto 0 auto;
  max-width: 1200px;
}

.brew-col img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  text-align: center;
  max-width: 100px;
}

.main-beer-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 75px;
  grid-row-gap: 75px;
  justify-items: stretch;
  align-items: initial;
  margin: 0 auto;
  max-width: 1000px;
}

.beer-grid-col {
  position: relative;
  padding: 125px 0 0 0;
  background: linear-gradient(180deg,rgba(0, 0, 0, 1) 30%, rgba(255, 255, 255, 1) 30%, rgba(255, 255, 255, 1) 100%);
}

.beer-content {
  padding: 150px 15px 30px 15px;
  color: var(--black);
  text-align: center;
}

.beer-content h3 {
  font-family: 'Porter', Helvetica , Arial, sans-serif;
  font-size: 35px;
  color: var(--black);
  margin: 0px 0 10px 0;
  line-height: 45px;
}

.beer-badge {
  background: var(--gold);
  max-width: 250px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  border-radius: 50%;
}

.beer-badge img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  border-radius: 50%;
  border: 5px solid var(--gold);
	  filter: contrast(130%) brightness(90%);
}

.beer-number {
  font-family: 'Porter', Helvetica , Arial, sans-serif;
  font-size: 60px;
  letter-spacing: 3px;
  color: var(--gold);
  margin: 0;
  position: absolute;
  top:-35px;
  left:0;
}

.beer-content h5 {
  font-family: 'Figtree',Helvetica,Arial,sans-serif;
  font-size: 18px;
  color: var(--black);
  margin: 0;
  font-weight: 400;
}

.up-beer {
  margin: -5px 0 20px 0!important;
  color: var(--gold);
}

.beer-type {
  margin: 10px 0 5px 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
}

.beer-per {
  margin: -5px 0 0 0;
  color: var(--black);
  font-weight: 600;
}

.what-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  justify-items: stretch;
  align-items: inital;
  margin: 40px auto;
}

.what-alt h1 {
  font-family: 'Porter', Helvetica , Arial, sans-serif;
  font-size: 50px;
  color: var(--gold);
  margin: 15px 0 10px 0;
  line-height: 75px;
  text-shadow: 4px 2px 0px rgba(0,0,0,0.5);
}

.what-grid figure {
  position: relative;
  overflow: hidden;
  width: 100%;
  background: var(--black);
  text-align: center;
  cursor: pointer;
}

.what-grid figure img {
  position: relative;
  display: block;
  min-height: 100%;
  max-width: 100%;
  opacity: 0.8;
}

.what-grid figure figcaption {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

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

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

.what-grid figure figcaption > a {
  z-index: 1000;
  text-indent: 200%;
  white-space: nowrap;
  font-size: 0;
  opacity: 0;
}

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

.what-grid figure h2 span {
  font-weight: 800;
}

.what-grid figure h2,
.what-grid figure p {
  margin: 0;
}

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

figure.effect-honey {
  position: relative;
  background: var(--black);
}

figure.effect-honey img {
  opacity: 0.7;
  -webkit-transition: opacity 0.35s;
  transition: opacity 0.35s;
}

figure.effect-honey:hover img {
  opacity: 0.4;
}

figure.effect-honey h2 {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 20px 20px 20px 30px;
  width: 100%;
  text-align: left;
  -webkit-transform: translate3d(0,-30px,0);
  transform: translate3d(0,-30px,0);
  font-size: 35px;
  color: var(--white);
  text-shadow: 4px 2px 0px rgba(0,0,0,0.5);
}

figure.effect-honey h2 i {
  font-style: normal;
  opacity: 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(0,-30px,0);
  transform: translate3d(0,-30px,0);
  right: 25px;
  font-size: 20px;
  position: absolute;
  bottom: 35px;
}

figure.effect-honey figcaption::before,
figure.effect-honey h2 {
  -webkit-transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
}

figure.effect-honey:hover figcaption::before,
figure.effect-honey:hover h2,
figure.effect-honey:hover h2 i {
  opacity: 1;
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
}

.arrow-up {
  width: 30px !important;
  height: 30px !important;
  opacity: 0 !important;
  transform: none!important;
  right: 25px !important;
  position: absolute !important;
  bottom: 30px !important;
	min-width:unset!important;
	min-height:unset!important;
}


figure.effect-honey:hover .arrow-up {
  opacity: 1!important;
  transform: none!important;
}

.mobile-full-col {
  height: 350px;
  position: relative;
  z-index: 5;
  display: none;
}

.mobile-full-col a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  text-indent: 200%;
  white-space: nowrap;
  font-size: 0;
  opacity: 0;
}

.mobile-full-col:before {
  content: "";
  background: var(--black);
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.4;
  -webkit-transition: opacity 0.35s;
  transition: opacity 0.35s;
  z-index: 0;
}

.mobile-full-col:hover:before {
  opacity: 0.7;
   -webkit-transition: opacity 0.35s;
  transition: opacity 0.35s; 
}

.contact-section p {
  margin: 0;
}

.default-section ul {
  margin: 20px 30px 30px 30px;

}

.default-section li {
  list-style: square;
  margin: 0 0 10px 0;
}

.default-section p {
  margin: 0 0 20px 0;
}

.contact-form label {
  font-size: 18px;
  color:var(--white);
  font-weight: 700;
  display: block;
  margin: 0 0 5px 0;
}

.contact-form .cta-button {
  margin: 30px 0 0 0;
  border:0;
  cursor: pointer;
  font: 16px 'Figtree', Helvetica, Arial, sans-serif;
  font-weight: 700;
}

.nf-form-cont input.text, 
.nf-form-cont input[type="text"], 
.nf-form-cont input[type="email"], 
.nf-form-cont input[type="tel"], 
.nf-form-cont select, 
.form-inp {
  background: var(--white);
  color: var(--black);
  padding: 10px;
  width: 100%;
  margin: 0 0 10px 0;
  border:2px solid var(--white);
	height:50px!important;
  font: 16px 'Figtree', Helvetica, Arial, sans-serif;
}

.nf-form-cont textarea,	
.form-inps {
  background: var(--white);
  color: var(--black);
  padding: 10px;
  width: 100%;
  height: 200px;
  margin: 0 0 10px 0;
  border:2px solid var(--white);
  font: 16px 'Figtree', Helvetica, Arial, sans-serif;
}

.cta-button {
	display:inline-block;
	margin: 15px 0;
  font-size: 16px;
	font-weight:600;
  border: 2px solid var(--gold);
  padding: 10px 20px;
  color: var(--gold);
  text-transform: uppercase;
  text-decoration: none;
   transition:all .3s ease-in-out 0.1s;
}

.cta-button:hover {
  border: 2px solid var(--gold);
  color: var(--black);
  background: var(--gold);
  text-transform: uppercase;
  text-decoration: none;
   transition:all .3s ease-in-out 0.1s;
}

.field-wrap input[type="submit"] {
	display:inline-block;
	margin: 15px 0;
  font: 16px 'Figtree', Helvetica, Arial, sans-serif;
	font-weight:600;
  border: 2px solid var(--gold);
  padding: 10px 20px;
  color: var(--gold);
	background: var(--black);
  text-transform: uppercase;
  text-decoration: none;
	cursor:pointer;
   transition:all .3s ease-in-out 0.1s;
}

.field-wrap input[type="submit"]:hover {
  border: 2px solid var(--gold);
  color: var(--black);
  background: var(--gold);
  text-transform: uppercase;
  text-decoration: none;
   transition:all .3s ease-in-out 0.1s;
}

.nf-error-required-error {
	display:none;
}

.nf-form-fields-required {
	display:none;
}
.nf-field-label {
  font-size: 16px!important;
  margin: 0 0 8px 0!important;
}

.nf-field-container {
  margin-bottom: 20px!important;
}

.nf-error .field-wrap select,
.nf-error.listimage-wrap .nf-field-element ul, 
.nf-error .ninja-forms-field,
.nf-error .nf-form-cont input.text, 
.nf-error .nf-form-cont input[type="text"], 
.nf-error .nf-form-cont input[type="email"], 
.nf-error .nf-form-cont input[type="tel"], 
.nf-error .nf-form-cont select, 
.nf-error .nf-form-cont textarea {
  border:2px solid #ed4337!important;
}

.nf-error-msg {
  color: #ed4337!important;
  text-align: center!important;
  text-transform: uppercase!important;
  font-size: 17px!important;
  font-weight: 600!important;
}

.nf-multi-cell .nf-cell {
  padding: 0 10px!important;
}

.borderfix {
  border-bottom: 3px solid var(--gold);
}

/* 
==========================================================================
FOOTER
==========================================================================
*/

footer {
  padding: 50px 0;
  position: relative;
  z-index:1;
  width: 100%;
  color: var(--white);
  background: var(--black);
  font-size: 16px;

}

.footer-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  justify-items: stretch;
  align-items: inherit;
  margin: 0 auto;
}

.foot-logo {
  width: 100%;
  max-width: 250px;
  margin: 0 0 20px 0;
}

.foot-social {
  margin: 10px 0 0 0;
}

.foot-social a {
  font-size: 25px;
  margin: 5px 10px 5px 0;
  display: inline-block;
  vertical-align: middle;
	transition: all 0.3s ease-in-out;
}

.foot-social img {
  display: block!important;
  width: 30px!important;
  height: auto!important;
}

.foot-social a:hover {
	opacity:0.5!important;
transition: all 0.3s ease-in-out;	
}


footer h5 {
  color: var(--gold);
  font-family: Porter;
  font-size: 25px;
  margin: 0 0 10px 0;
}

footer ul {
  margin: 0;
  list-style-type: none;
  padding: 0;
}

footer a {
  color: var(--white);
  text-decoration: none;
}

footer a:hover {
  color: var(--gold);
  text-decoration: none;
}

.pmdev {
  color: var(--gold);
  text-decoration: none;
}

.pmdev:hover {
  color: var(--white);
  text-decoration: none;
}

.foot-info p {
  margin: 0 0 5px 0;
  font-size: 14px;
}

.foot-open p {
  margin: 0;
  font-weight: 600;
}

.mob-address {
  display: none;
}


/* 
==========================================================================
HERO
==========================================================================
*/

.home-hero-grids {
  width: 100%;
  display: grid;
  margin: 0 auto;
  grid-gap: 0;
  grid-template-columns: [col1-start] 1.5fr  [col2-start] 1fr  [col3-start] 1.5fr [col3-end];
  grid-template-rows: [row1-start] auto [row2-start] auto [row2-end];
  position: relative;
}

.home-hero h1 {
  font-family: 'Porter', Helvetica , Arial, sans-serif;
  font-size: 45px;
  line-height: 70px;
  text-shadow: 4px 2px 0px rgba(0,0,0,0.5);
}

.box h2 {
  font-family: 'Porter', Helvetica , Arial, sans-serif;
  font-size: 35px;
  color: var(--gold);
  text-shadow: 4px 2px 0px rgba(0,0,0,0.5);
  margin: 0 0 10px 0;
}

.box {
  padding: 30px;
}

.a {
  grid-column: col1-start / col3-start;
  grid-row: row1-start ;
  padding: 0 50px 50px 0;
}

.b {
  grid-column: col3-start ;
  grid-row: row1-start / row2-end;
}

.c {
  grid-column: col1-start;
  grid-row: row2-start ;
}

.d {
  grid-column: col2-start ;
  grid-row: row2-start ;
  padding: 0 50px 0 50px;
}

.box-mob {
  display: none;
}

.box p {
  margin: 0;
}

/* 
==========================================================================
TAB
==========================================================================
*/

.slideOutTab {
  top: -60px;
  position: absolute;
  left: -5px;
  height: 60px;
  width: 100%;
  background: var(--gold);
  width: 102%;
  cursor: pointer;
  z-index: 9999;
  right: 0;
  transition: all 0.1s ease-in-out;
}

.slideOutTab:hover {
  background: var(--green);
  transition: all 0.1s ease-in-out;
}

.slideOutTab .opentimes {
  color: var(--white);
  text-align: center;
  position: relative;
  margin: 0 auto;
  text-transform: uppercase;
  display: block;
  font-weight: 700;
  z-index: 9999;
  font-size: 16px;
  font-weight: 700;
  padding: 18px 0 5px 5px;
}

#slideOut {
  display: none;
  position: fixed;
  width: 100%;
  height: 220px;
  bottom: -220px;
  right: 0;
  transition-property: all;
  transition-duration: .5s;
  transition-timing-function: cubic-bezier(0, 1, 0.5, 1);
  background: var(--black);
  padding: 20px 25px;
  z-index: 9999;
}

.showSlideOut {
  bottom: 0px !important;
}

#slideOut p {
  margin: 0;
  font-size: 17px;
   font-weight:700;
}

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

/* 
==========================================================================
MEDIA QUERIES
==========================================================================
*/

@media screen and (max-width: 1300px) {
.home-hero-grids {
  width: 100%;
  display: grid;
  margin: 0 auto;
  grid-gap: 0;
  grid-template-columns: [col1-start] 1fr  [col2-start] 1fr  [col3-start] 1fr [col3-end];
  grid-template-rows: [row1-start] auto [row2-start] auto [row2-end];
  position: relative;
}
}

@media screen and (max-width: 1250px) {
.hero-image-one {
  max-width: 390px;
}
.test-section .inner {
  padding: 0!important;
}
}

@media screen and (max-width: 1150px) {
.hero-image-one {
  display: none;
}
.home-hero-grid-alt {
  display: none;
}
.home-hero-grid {
  width: 100%;
  display: block;
  margin: 0 auto;
  position: relative;
  text-align: center;
}
.hero-text-one {
  width: 100%;
  margin: 0 0 50px 0;
}
.sixty-grid-alt,
.sixty-grid-center {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  justify-items: stretch;
  align-items: center;
  margin: 0 auto;
}
.what-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}
}

@media screen and (max-width: 1050px) {
.head-inner {
  padding: 0 20px;
}
.contact-header {
  float: right;
  margin: 20px 0 0 30px;
}
nav li {
  margin: 0 15px;
}
.brew-col img {
  max-width: 90px;
}
}


@media screen and (max-width: 1020px) {
.home-hero-grids {
grid-template-columns: [col1-start] 1fr [col2-start];
}
.b {
  display: none;
	content-visibility: hidden;
}
.d {
  padding: 25px 50px!important;
}
.a {
  padding: 0 0 30px 0;
}
.d {
  padding: 0 0 30px 30px;
}
.home-hero .inner {
  padding: 0 25px;
}
.home-hero {
  position: relative;
  padding: 25px 0 50px 0;
  margin: 0 auto;
}
.a {
  grid-column: col1-start / col3-start;
  grid-row: row1-start;
  padding: 0 0 40px 0;
}
.box {
  padding: 30px;
}
.a {
  padding: 0 30px 50px 0;
}
.d {
  padding: 0 30px 0 30px;
}
}

@media screen and (max-width: 1000px) {
.sixty-grid-center {
  width: 100%;
  display: block;
  margin: 0 auto;
}
.sixty-grid-alt {
  width: 100%;
  display: block;
  margin: 0 auto;
}
.sixty-img {
  max-width: 600px;
  margin: 0 auto 75px auto;
}
.mob-hide {
  display: none;
}
.mob-show {
  display: grid;
  margin: 50px auto 0 auto;
}
.black-section,
.green-section,
.white-section {
  padding: 75px 0;
}
.contact-section {
  padding: 75px 0;
}
.what-alt {
  padding: 75px 0 50px 0;
}
}


@media screen and (max-width: 960px) {
nav {
  display: none;
}
.brewer-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 30px;
  justify-items: stretch;
  align-items: center;
  margin: 50px auto 0 auto;
  max-width: 700px;
}
.contact-header {
  float: right;
  margin: 20px 75px 0 0;
}
.two-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
}
.narrow-intro h5 {
  font: 22px 'Figtree', Helvetica, Arial, sans-serif;
  line-height: 30px;
  text-transform: uppercase;
  font-weight: 600;
}
}

@media screen and (max-width: 1100px) {
.home-hero h1 {
  font-family: 'Porter', Helvetica , Arial, sans-serif;
  font-size: 40px;
  color: var(--gold);
  text-shadow: 4px 2px 0px rgba(0,0,0,0.5);
  margin: 0 0 20px 0;
  line-height: 55px;
}
.footer-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-column-gap: 50px;
  grid-row-gap: 50px;
}
.foot-links {
  display: none;
}
.what-alt .inner {
  padding: 0 25px;
}
	

		
}

@media screen and (max-width: 920px) {
.fifty-grid-wide {
  width: 100%;
  display: block;
  margin: 0 auto;
}
}

@media screen and (max-width: 850px) {
body {
  font: 18px / 1.5 'Figtree', Helvetica, Arial, sans-serif;
}
.home-hero {
  padding: 30px 0;
}
.footer-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}
footer .inner {
  padding: 0 20px;
}
.what-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  margin: 50px auto 25px auto;
}
.mobile-full-col {
  display: block;
}
	
.drop-col-3 {
  display: none;
}
.beer-grid-col {
  padding: 75px 0 0 0;
}
.main-beer-grid {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
}
.beer-badge {
  max-width: 200px;
}
.beer-content h3 {
  font-family: 'Porter', Helvetica , Arial, sans-serif;
  font-size: 30px;
  line-height: 40px;
}
}

@media screen and (max-width: 800px) {
.mobile-header {
  display: block;
}
.nav-button {
  display: block;
}
	
	
.beer-number {
  font-family: 'Porter', Helvetica , Arial, sans-serif;
  font-size: 40px;
  top: -20px;
  left: 0;
}
.contact-grid {
  width: 100%;
  display: block;
  margin: 0 auto;
}
.form-col {
  margin: 50px auto 0 auto;
}
.contact-min-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, auto);
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  justify-items: stretch;
  align-items: initial;
}
}


@media screen and (max-width: 750px) {
.foot-open {
  display: none;
}
.footer-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}
.sixty-img {
  max-width: 600px;
  margin: 0 auto 50px auto;
}
}

@media screen and (max-width: 680px) {
.what-alt h1 {
  font-family: 'Porter', Helvetica , Arial, sans-serif;
  font-size: 45px;
  color: var(--gold);
  margin: 20px 0 0px 0;
  line-height: 70px;
}
}


@media screen and (max-width: 650px) {
.home-hero h1 {
  font-family: 'Porter', Helvetica , Arial, sans-serif;
  font-size: 35px;
  color: var(--gold);
  text-shadow: 4px 2px 0px rgba(0,0,0,0.5);
  margin: 0 0 15px 0;
  line-height: 50px;
}
.box h2 {
  font-family: 'Porter', Helvetica , Arial, sans-serif;
  font-size: 25px;
}
.inner-hero-text h2 {
  font-family: 'Porter', Helvetica , Arial, sans-serif;
  font-size: 45px;
}
	
.inner-hero-text h2::before {
  left: -25px;
}

.inner-hero-text h2::after {
  right: -25px;
}	
	
.inner-hero {
  padding: 75px 0;
}
.main-beer-grid {
  width: 100%;
  display: block;
}
.beer-section {
  padding: 20px 0!important;
}
.beer-grid-col {
  padding: 25px;
  background: var(--white);
  margin: 100px 0 25px 0;
}
.beer-badge {
  background: var(--gold);
  position: absolute;
  top: 0;
  transform: translateY(-50%);
  left: 20px;
  right: auto;
  margin: 0 auto;
  border-radius: 50%;
  width: 150px;
}
.beer-content {
  padding: 60px 0 0 0;
  color: var(--black);
  text-align: left;
}
.beer-number {
  font-family: 'Porter', Helvetica , Arial, sans-serif;
  font-size: 40px;
  top: 0px;
  left: auto;
  right: 20px;
}
.main-header {
  height: 100px;
  padding: 15px 0;
}
.nav-button {
  top: 27px!important;
}
.nav-wrapper .nav-buttons {
  top: 23px!important;
}
.logo {
  width: 180px;
  margin: 5px 0 0 0;
}
.logo img {
  width: 180px;

}	
	
.inner {
  padding: 0 20px;
}
.fifty-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 15px;
  grid-row-gap: 10px;
  margin: 30px auto 0 auto;
}
.footer-grid {
  width: 100%;
  display: block;
}
.foot-address {
  display: none;
}
.foot-info {
  text-align: center;
}
.foot-logo {
  margin: 0 auto 5px auto;
}
.mob-address {
  display: block;
  margin: 0 0 10px 0;
}
.mob-address p {
  display: block;
  font-size: 16px;
  color: var(--gold);
  font-weight: 700;
  margin: 0;
}
footer {
  padding: 50px 0 100px 0;
}
#slideOut  {
  display: block;
}
.test-slide {
  margin: 0 25px;
}
.test-intro {
  margin: 25px 0 0 25px;
}
.test-section::before {
  top: 0px;
  left: 25px;
  opacity: 0.2;
}
.test-section::after {
  bottom: 10px;
  right: 25px;
  opacity: 0.2;
}
.contact-min-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, auto);
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  justify-items: stretch;
  align-items: initial;
  text-align: center;
}
.contact-times {
  display: none;
}
}

@media screen and (max-width: 620px) {
.home-hero-grids {
  width: 100%;
  display: block;
}
.a {
  padding: 0;
}
.c, .d {
   display: none;
	content-visibility: hidden;
}
.box-mob {
  display: block;
  margin: 0 0 20px 0;
}
.home-hero {
  text-align: center;
}
.slick-dots {
  margin: 0 0 0 20px;
  text-align: left;
}
h2 {
  font-family: 'Porter', Helvetica , Arial, sans-serif;
  font-size: 40px;
  color: var(--gold);
}

.sixty-col h2 {
  font-family: 'Porter', Helvetica , Arial, sans-serif;
  font-size: 40px;
  color: var(--gold);
	margin: 5px 0 15px 0;
}
	
	
.fancy-title {
  padding: 0 0 0 75px;
	margin: 0;
}	
	
.fancy-title::before {
  content: "";
  width: 50px;
}	

.up-beer span {
  display: block;
}	
	
}

@media screen and (max-width: 550px) {
.what-grid {
  width: 100%;
  display: block;
  margin: 30px auto 0 auto;
}
.mobile-full-col {
  display: none;
}
.drop-col-3 {
  display: block;
}
.what-grid figure {
  margin: 0 0 30px 0;
}
.hero-address span {
  display: none;
}
.home-hero h5 {
  display: block;
}
}

@media screen and (max-width: 500px) {
.contact-header {
  display: none;
}
.what-alt .fancy-title,
.test-intro .fancy-title {
  padding: 0 0 15px 0;
}
.what-alt .fancy-title::before,
.test-intro .fancy-title::before {
  top: 40px;
}
}

@media screen and (max-width: 320px) {
 .container {
  min-width:240px;
  width:100%;
 }

}

img.lazyloaded,
.webpexpress-processed,
picture source,
picture img,
.home-hero,
.inner-hero,
.b,
.c {
width: 100%;
  height: auto;
}




