/***
Byte Boilerplate, with parts from Foundation and other sources, noted inline below
Version 2 - 2016-07-11 by MD, SP & the Byte Studios Team
***/




/* rows and columns from http://www.sitepoint.com/understanding-css-grid-systems/ */
.row, .column {
	box-sizing: border-box;
}
.row:before, .row:after {
	content: " ";
	display: table;
}
.row:after {
	clear: both;
}
.column {
	position: relative;
	float: left;
	display: block;
}
.grid-w-gutters .column + .column {
	margin-left: 1.6%;
}
/* end rows and columns from http://www.sitepoint.com/understanding-css-grid-systems/ */

/* grids and columns */
.float-left { float: left !important; }
.float-right { float: right !important; }
.float-center {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.clearfix::before, .clearfix::after {
	content: ' ';
	display: table;
}
.clearfix::after { clear: both; }
.invisible { visibility: hidden; }
.is-visible { display: block !important; }
.is-hidden { display: none !important; }

.grid, .grid-w-gutters {
    width: 100%;
    max-width: 1090px;
    position: relative;
    box-sizing: border-box;
    margin: 0 auto;
    padding: 0 3.5%;
    box-sizing: border-box;
}
.col-1-across { width: 8.33%; }
.col-2-across { width: 16.66%; }
.col-3-across { width: 25%; }
.col-4-across { width: 33.33%; }
.col-5-across { width: 41.66%; }
.col-6-across { width: 50%; }
.col-7-across { width: 58.33%; }
.col-8-across { width: 66.66%; }
.col-9-across { width: 75%; }
.col-10-across { width: 83.33%; }
.col-11-across { width: 91.66%; }
.col-12-across { 
    width: 100%;
    margin: 0 auto;
    position: relative;
    width: 100%;
    max-width: 940px;
    float: none;
    display: table; 
}
.grid-w-gutters .col-1-across { width: 6.86666666667%; }
.grid-w-gutters .col-2-across { width: 15.3333333333%; }
.grid-w-gutters .col-3-across { width: 23.8%; }
.grid-w-gutters .col-4-across { width: 32.2666666667%; }
.grid-w-gutters .col-5-across { width: 40.7333333333%; }
.grid-w-gutters .col-6-across { width: 49.2%; }
.grid-w-gutters .col-7-across { width: 57.6666666667%; }
.grid-w-gutters .col-8-across { width: 66.1333333333%; }
.grid-w-gutters .col-9-across { width: 74.6%; }
.grid-w-gutters .col-10-across { width: 83.0666666667%; }
.grid-w-gutters .col-11-across { width: 91.5333333333%; }
.grid-w-gutters .col-12-across { width: 100%; }

.no-bullet { margin-left: 0; list-style: none; }

.text-left { text-align: left; }
.text-right { text-align: right; }
.text-center { text-align: center; }
.text-justify { text-align: justify; }
/* end grids and columns */

/* form normalizations from Foundation */
[type='text'], [type='password'], [type='date'], [type='datetime'], [type='datetime-local'], [type='month'], [type='week'], [type='email'], [type='number'], [type='search'], [type='tel'], [type='time'], [type='url'], [type='color'],
textarea {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 2.4375rem;
  padding: 0.5rem;
  border: 1px solid #cacaca;
  margin: 0 0 1rem;
  font-family: inherit;
  font-size: 1rem;
  color: #0a0a0a;
  background-color: #fefefe;
  box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.1);
  border-radius: 7px;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none; }
  [type='text']:focus, [type='password']:focus, [type='date']:focus, [type='datetime']:focus, [type='datetime-local']:focus, [type='month']:focus, [type='week']:focus, [type='email']:focus, [type='number']:focus, [type='search']:focus, [type='tel']:focus, [type='time']:focus, [type='url']:focus, [type='color']:focus,
  textarea:focus {
	border: 1px solid #8a8a8a;
	background-color: #fefefe;
	outline: none;
	box-shadow: 0 0 5px #cacaca;
	transition: box-shadow 0.5s, border-color 0.25s ease-in-out; }

textarea {
  max-width: 100%; }
  textarea[rows] {
	height: auto; }

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #cacaca; }

input::-moz-placeholder,
textarea::-moz-placeholder {
  color: #cacaca; }

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #cacaca; }

input::placeholder,
textarea::placeholder {
  color: #cacaca; }

input:disabled, input[readonly],
textarea:disabled,
textarea[readonly] {
  background-color: #e6e6e6;
  cursor: not-allowed; }

[type='submit'],
[type='button'] {
  border-radius: 7px;
  -webkit-appearance: none;
  -moz-appearance: none; }

input[type='search'] {
  box-sizing: border-box; }

[type='file'],
[type='checkbox'],
[type='radio'] {
  margin: 0 0 1rem; }

[type='checkbox'] + label,
[type='radio'] + label {
  display: inline-block;
  margin-left: 0.5rem;
  margin-right: 1rem;
  margin-bottom: 0;
  vertical-align: baseline; }
  [type='checkbox'] + label[for],
  [type='radio'] + label[for] {
	cursor: pointer; }

label > [type='checkbox'],
label > [type='radio'] {
  margin-right: 0.5rem; }

[type='file'] {
  width: 100%; }

label {
  display: block;
  margin: 0;
  font-size: 0.875rem;
  font-weight: normal;
  line-height: 1.8;
  color: #0a0a0a; }
  label.middle {
	margin: 0 0 1rem;
	padding: 0.5625rem 0; }

.help-text {
  margin-top: -0.5rem;
  font-size: 0.8125rem;
  font-style: italic;
  color: #0a0a0a; }

.input-group {
  display: table;
  width: 100%;
  margin-bottom: 1rem; }
  .input-group > :first-child {
	border-radius: 7px 0 0 7px; }
  .input-group > :last-child > * {
	border-radius: 0 7px 7px 0; }

.input-group-label, .input-group-field, .input-group-button {
  margin: 0;
  display: table-cell;
  vertical-align: middle; }

.input-group-label {
  text-align: center;
  padding: 0 1rem;
  background: #e6e6e6;
  color: #0a0a0a;
  border: 1px solid #cacaca;
  white-space: nowrap;
  width: 1%;
  height: 100%; }
  .input-group-label:first-child {
	border-right: 0; }
  .input-group-label:last-child {
	border-left: 0; }

.input-group-field {
  border-radius: 0;
  height: 2.5rem; }

.input-group-button {
  padding-top: 0;
  padding-bottom: 0;
  text-align: center;
  height: 100%;
  width: 1%; }
  .input-group-button a,
  .input-group-button input,
  .input-group-button button {
	margin: 0; }

.input-group .input-group-button {
  display: table-cell; }

fieldset {
  border: 0;
  padding: 0;
  margin: 0; }

legend {
  margin-bottom: 0.5rem;
  max-width: 100%; }

.fieldset {
  border: 1px solid #cacaca;
  padding: 1.25rem;
  margin: 1.125rem 0; }
  .fieldset legend {
	background: #fefefe;
	padding: 0 0.1875rem;
	margin: 0;
	margin-left: -0.1875rem; }

select {
  height: 2.4375rem;
  padding: 0.5rem;
  border: 1px solid #cacaca;
  margin: 0 0 1rem;
  font-size: 1rem;
  font-family: inherit;
  line-height: normal;
  color: #0a0a0a;
  background-color: #fefefe;
  border-radius: 7px;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="32" height="24" viewBox="0 0 32 24"><polygon points="0,0 32,0 16,24" style="fill: rgb%28138, 138, 138%29"></polygon></svg>');
  background-size: 9px 6px;
  background-position: right center;
  background-origin: content-box;
  background-repeat: no-repeat; }
  @media screen and (min-width: 0\0) {
	select {
	  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAYCAYAAACbU/80AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIpJREFUeNrEkckNgDAMBBfRkEt0ObRBBdsGXUDgmQfK4XhH2m8czQAAy27R3tsw4Qfe2x8uOO6oYLb6GlOor3GF+swURAOmUJ+RwtEJs9WvTGEYxBXqI1MQAZhCfUQKRzDMVj+TwrAIV6jvSUEkYAr1LSkcyTBb/V+KYfX7xAeusq3sLDtGH3kEGACPWIflNZfhRQAAAABJRU5ErkJggg=="); } }
  select:disabled {
	background-color: #e6e6e6;
	cursor: not-allowed; }
  select::-ms-expand {
	display: none; }
  select[multiple] {
	height: auto;
	background-image: none; }

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  padding: 0;
  border: 0;
  border-radius: 7px;
  line-height: 1; }
  [data-whatinput='mouse'] button {
	outline: 0; }


/* end form normalizations from Foundation */



/* generic custom styles */
body {
  margin: 0;
}

#container {
    box-sizing: border-box;
    padding: 1% 3%;
    margin: 0 auto;
}

html,body {
    background:#e5e3db url('/assets/images/background.beige-noise.png');
    font-family:"Arvo",sans-serif;
    font-size:13px;
    line-height:140%;
    color: #222;
}
div {
	color: #222;
}
p {
	color: #222;
	font-size: 13px;
	margin: 1em 0;
	font-family:'Montserrat', sans-serif;
}
.main-content p {
    font-family: "Arvo",sans-serif;
}
h4 {
    font-size: 1em;
    margin: 1.33em 0;
}
a {
	color: #000;
  font-weight: bold;
  text-decoration: none;
  transition: color .25s linear;
}

a:hover {
	color: #95ad2b;
	transition: color .25s;
	-webkit-transition: color .25s;
	-moz-transition: color .25s;
  cursor: pointer;
}

a span:hover {
  color: #95ad2b;
  transition: color .25s;
  -webkit-transition: color .25s;
  -moz-transition: color .25s;
  cursor: pointer;
}
.center{
  display: block;
  margin: 0 auto;
}




/****** Add Header CSS Here *******/
header {
    width: 100%;
    max-width: 940px;
    margin: 0 auto;
}
.header-wrapper {
  margin: 0 auto;
  border: 1px solid #888;
}
header .float-right {
    color: #AAA591;
    font-weight: bold;
    font-size: 12px;
    width: 71%;
}
.pale-bg .top {
    width: 100%;
    max-width: 1090px;
    height: 5px;
    background: url('/assets/images/background.pale-top.png') top no-repeat;
    background-size: 100% 100%;
    margin: 0 auto;
}
.pale-bg .content {
    width: 100%;
    max-width: 1090px;
    background: url('/assets/images/background.pale-content.png') top center repeat-y;
    padding-top: 10px;
    background-size: 100%;
    margin: 0 auto;
}
.pale-bg .bottom {
    width: 100%;
    max-width: 1090px;
    height: 20px;
    background: url('/assets/images/background.pale-bottom.png') top no-repeat;
    background-size: 100% 100%;
    margin: 0 auto;
    margin-bottom: 10px;
}

.bottom-dark-bkg {
    /* background-color: #e5e3db; */
    height: 30px;
    width: 117%;
    left: -79px;
    position: relative;
    margin: 40px auto 0 auto;
    background-image: url('/assets/images/dark-texture-line.png');
    background-size: 100% 100%;
    margin-bottom: 20px;
}
.top-light-bkg {
    height: 15px;
    width: 102%;
    left: -5px;
    position: absolute;
    top: 0;
    margin: 0 auto;
    background-image: url('/assets/images/campaign-frame.top.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.bottom-light-bkg {
    height: 15px;
    width: 105%;
    left: -5px;
    position: absolute;
    bottom: 0;
    margin: 0 auto;
    background-image: url('/assets/images/campaign-frame.bottom.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

/****** Add Header Logo CSS Here *******/
.site-logo {
    background: url("/assets/images/logo.good-harvest.png");
    width: 272px;
    height: 69px;
    position: relative;
    left: -51px;
    top: 0;
    margin: .5% 0 -60px .5%;
    background-repeat: no-repeat;
    float: left;
    width: 28.5%;
    background-size: 100%;
    box-sizing: border-box;
}

.header-description{
  text-align: right;
  float: right;
}

.header-contact {
    text-align: right;
    float: right;
    padding-left: 20px;
    margin: 1.33em 0 0 0;
}

/****** Add Header Header Nav Here *******/
.header-nav {
    float: right;
    font-size: 13px;
    font-weight: bold;
    line-height: 25px;
    clear: both;
}
nav.header-nav ul, nav.header-nav ul li {
    margin: 0;
    padding: 0;
    list-style: none;
}
nav.header-nav ul li {
    display: inline-block;
}
nav.header-nav ul li:before {
    content: '';
    margin-right: 5px;
    margin-left: 3px;
}
nav.header-nav ul li:nth-of-type(2):before, nav.header-nav ul li:nth-of-type(3):before, nav.header-nav ul li:nth-of-type(4):before{
    content: '\2022';
    margin-right: 5px;
    margin-left: 3px;
}
.nav-icons-fa {
    display: block;
    width: 27px;
    height: 27px;
    margin: 0;
    background-color: black;
    border-radius: 12px;
}
.nav-icons-fa a {
    margin-left: -3px;
    font-size: 20px;
    color: white;
}
.nav-icons-fa a i {
    margin-top: 4px;
}
.nav-icons-fa a:hover {
    color: #99b53d
}
.nav-icons-fb{
    background: url('/assets/images/icon.facebook.png') top;
    display: block;
    height: 25px;
    width: 25px;
    margin: -25px 10px 0 10px;
}
.nav-icons-fb:hover{
    background: url('/assets/images/icon.facebook.png') bottom;
}
.nav-icons-twitter{
    background: url('/assets/images/icon.twitter.png') top;
    display: block;
    height: 25px;
    width: 25px;
    margin: -25px 0 0 0;
}
.nav-icons-twitter:hover{
    background: url('/assets/images/icon.twitter.png') bottom;
}

/****** Add Header Main Nav Here *******/
.main-nav {
    position: relative;
    font-size: 17px;
    font-weight: bold;
    background: url("/assets/images/background.main-nav-line.png") bottom center no-repeat;
    width: 100%;
    max-width: 940px;
    text-align: center;
    z-index: 10;
    padding: 20px 0;
    clear: both;
    margin: 0 auto 15px 0;
}
.main-nav ul, .main-nav ul li {
    margin: 0;
    padding: 0;
    list-style: none;
    display: inline-block;
}
.main-nav ul li a {
    padding: 10px 10px;
    box-sizing: border-box;
}
.main-nav ul li a:hover {
    color: #000;
}
.main-nav ul.drop {
    display: none;
}
.main-nav ul li:hover ul.drop {
    display: block;
    width: 280px;
    position: absolute;
    text-align: left;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 15px;
    box-sizing: border-box;
    padding: 20px;
    border-top-right-radius: 10px;
    margin: 3px 0 0 1px;
}
.main-nav ul.drop li {
    display: block;
    padding: 5px 0;
}
.main-nav ul.drop  li a{
    padding: 0;
    color: #9a7420;
}
.main-nav ul.drop  li a:hover{
    color: #000!important;
}

/*background behind nav name*/
.main-nav ul li:hover.our-store-nav a {
    background: url('/assets/images/main-nav_hoverstates.png') top left;
}
.main-nav ul li:hover.departments-nav a {
    background: url('/assets/images/main-nav_hoverstates.png') top left -107px;
}
.main-nav ul li:hover.classes---events-nav a {
    background: url('/assets/images/main-nav_hoverstates.png') top left -244px;
}
.main-nav ul li:hover.the-harvest-cafe-nav a {
    background: url('/assets/images/main-nav_hoverstates.png') top left -411px;
}
.main-nav ul li:hover.special-diets-nav a {
    background: url('/assets/images/main-nav_hoverstates.png') top left -582px;
}
.main-nav ul li:hover.sales---specials-nav a {
    background: url('/assets/images/main-nav_hoverstates.png') top left -717px;
}

/*hide mobile links*/
.hide-menu-desktop{
  display: none!important;
}
.mobile_header_nav{
  display: none!important;
}
/*  hide hamburger menu icon*/
.mobile-menu-button {
  display: none;
}


/*dont show bkg on hover*/
.main-nav ul li:hover.our-store-nav ul li a, .main-nav ul li:hover.departments-nav ul li a, .main-nav ul li:hover.classes---events-nav ul li a, .main-nav ul li:hover.the-harvest-cafe-nav ul li a, .main-nav ul li:hover.special-diets-nav ul li a, .main-nav ul li:hover.sales---specials-nav ul li a{
    background: none;
}

/*nav li color*/
.main-nav ul li:hover.departments-nav ul a {
    color: #717839;
}
.main-nav ul li:hover.classes---events-nav ul a {
    color: #38465b;
}
.main-nav ul li:hover.the-harvest-cafe-nav ul a {
    color: #336a6c;
}
.main-nav ul li:hover.special-diets-nav ul a {
    color: #536462;
}
.main-nav ul li:hover.sales---specials-nav ul a {
    color: #4f4937;
}

/*ul dropdown background*/
.main-nav ul li.our-store-nav:hover ul.drop {
    background: #F9CD6A url('/assets/images/main-nav_background.our-store.png') bottom right no-repeat;
}
.main-nav ul li.departments-nav:hover ul.drop {
        background: #D2D5AF url('/assets/images/main-nav_background.departments.png') bottom right no-repeat;
}
.main-nav ul li.classes---events-nav:hover ul.drop {
        background: #8398B3 url('/assets/images/main-nav_background.classes-events.png') bottom right no-repeat;
}
.main-nav ul li.the-harvest-cafe-nav:hover ul.drop {
        background: #78D1D5 url('/assets/images/main-nav_background.harvest-cafe.png') bottom right no-repeat;
}
.main-nav ul li.special-diets-nav:hover ul.drop {
        background: #A8BAB9 url('/assets/images/main-nav_background.special-diets.png') bottom right no-repeat;
}
.main-nav ul li.sales---specials-nav:hover ul.drop {
    background: #B3AA8F url('/assets/images/main-nav_background.sales-specials.png') bottom right no-repeat;
    width: 157px;
    border-top-right-radius: 0;
}


/*ul dropdown background bottom piece*/

.main-nav ul li:hover ul.drop:after {
    content: ' ';
    position: absolute;
    height: 30px;
    bottom: -29px;
    left: 0;
    text-align: center;
    margin: 0 auto;
    max-width: 100%;
    width: 100%;
}
.main-nav ul li.our-store-nav:hover ul.drop:after {
    content: ' ';
    background: url('/assets/images/main-nav_hover-bottom.our-store.png') no-repeat;
}
.main-nav ul li.departments-nav:hover ul.drop:after {
    content: ' ';
    background: url('/assets/images/main-nav_hover-bottom.departments.png') no-repeat;
}
.main-nav ul li.classes---events-nav:hover ul.drop:after {
    content: ' ';
    background: url('/assets/images/main-nav_hover-bottom.classes-events.png') no-repeat;
}
.main-nav ul li.the-harvest-cafe-nav:hover ul.drop:after {
    content: ' ';
    background: url('/assets/images/main-nav_hover-bottom.harvest-cafe.png') no-repeat;
}
.main-nav ul li.special-diets-nav:hover ul.drop:after {
    content: ' ';
    background: url('/assets/images/main-nav_hover-bottom.special-diets.png') no-repeat;
}
.main-nav ul li.sales---specials-nav:hover ul.drop:after {
    content: ' ';
    background: url('/assets/images/main-nav_hover-bottom.specials.png') no-repeat;
}

.hide_nav_desktop {
    display: none;
}


/*inside page header*/
.page-banner {
    width: 100%;
    display: table;
    padding: 30px 25px;
    position: relative;
    box-sizing: border-box;
    margin-top: 15px;
}
/*start landing banner*/
.page-banner.our-store.landing {
    background: url('/assets/images/header_our-store_landing.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
}
.page-banner.departments.landing {
    background: url('/assets/images/header_departments_landing.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
}
.page-banner.classes---events.landing {
    background: url('/assets/images/header_events_landing.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
}
.page-banner.the-harvest-cafe.landing {
    background: url('/assets/images/header_harvestcafe_landing.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
}
.page-banner.special-diets.landing {
    background: url('/assets/images/header_special_diets_landing.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
}
.page-banner.sales---specials.landing {
    background: url('/assets/images/header_sales_special_landing.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
}
.page-banner.hours---location.landing {
    background: url('/assets/images/header_departments.png');
    background-repeat: no-repeat;
    height: 100px;
}
.page-banner.contact-us.landing{
    background: url('/assets/images/header_classes_events.png');
    background-repeat: no-repeat;
    height: 100px;
}
.page-banner.careers.landing{
    background: url('/assets/images/header_the-harvest-cafe.png');
    background-repeat: no-repeat;
    height: 100px;
}
.page-banner.the-blog.landing{
    background: url('/assets/images/header_departments.png');
    background-repeat: no-repeat;
    height: 100px;
}
/*start primary banner*/
.page-banner.our-store.primary {
    background: url('/assets/images/header_our_store.png');
    background-repeat: no-repeat;
    height: 100px;
}
.page-banner.departments.primary {
    background: url('/assets/images/header_departments.png');
    background-repeat: no-repeat;
    height: 100px;
}
.page-banner.classes---events.primary {
    background: url('/assets/images/header_classes_events.png');
    background-repeat: no-repeat;
    height: 100px;
}
.page-banner.the-harvest-cafe.primary {
    background: url('/assets/images/header_the-harvest-cafe.png');
    background-repeat: no-repeat;
    height: 100px;
}
.page-banner.special-diets.primary {
    background: url('/assets/images/header_special_diets.png');
    background-repeat: no-repeat;
    height: 100px;
}
.page-banner.sales---specials.primary {
    background: url('/assets/images/header_sales_special.png');
    background-repeat: no-repeat;
    height: 100px;
}
.page-banner.careers.primary {
    background: url('/assets/images/header_the-harvest-cafe.png');
    background-repeat: no-repeat;
    height: 100px;
}
.page-banner.the-blog.primary {
    background: url('/assets/images/header_departments.png');
    background-repeat: no-repeat;
    height: 100px;
}
.page-banner img {
    position: absolute;
    right: 10px;
    top: -15px;
}

.page-banner h1 {
    color: #fff;
    margin: 0;
    padding: 0;
    font-size: 20px;
}

.page-banner p.emphasis {
    font-weight: normal;
    font-size: 28px;
    line-height: 120%;
}

.page-banner p {
    font-weight: bold;
    width: 495px;
    margin: 0;
    padding: 0;
    font-size: 18px;
    line-height: 120%;
    margin-top: 15px;
}

/****** Add Body Wrapper Here *******/
.body-wrapper {
  margin: 0 auto;
  padding: 0;
}
/*start left side nav*/
.main-body-container .side-content.left {
    width: 20%;
    float: left;
    box-sizing: border-box;
    margin-right: 3%;
}

.side-content.left ul.links {
    margin: 0;
    padding: 0;
    list-style: none;
    color: #a39a7d;
    font-size: 15px;
    text-align: right;
    margin-top: 25px;
}
.side-content.left ul.links li {
    padding: 5px 0px;
    border-bottom: 1px solid #cac3b6;
}
.side-content.left ul.links a {
    color: #a39a7d;
}
.side-content.left ul.links li.active a {
    color: #000;
}

.side-content.left ul.links a.active {
    color: #000;
}
/*start middle guts*/
.main-body-container .main-content {
    float: left;
    width: 52%;
    box-sizing: border-box;
}

.col-12-across.main-body-container {
    margin-top:15px;
}

/****** body text styles *******/

h2.page-headline {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 10px;
}

.primary.page-banner h1 {
    color: #fff;
    font-size: 20px;
    position: absolute;
    left: 222px;
    bottom: 20px;
    margin-bottom: 5px;
    font-family: "Arvo",sans-serif;
}

.hours---location.page-banner h1, .contact-us.page-banner h1, .careers.page-banner h1, .the-blog.page-banner h1{
    color: #fff;
    font-size: 20px;
    position: absolute;
    left: 222px;
    bottom: 20px;
    margin-bottom: 5px;
    font-family: "Arvo",sans-serif;
}


.main-content p.emphasis {
    font-size: 17px;
    line-height: 24px;
    margin-top: 0;
    font-family: "Arvo",sans-serif;
}

.main-content h3 {
    font-size: 20px;
    background: url('/assets/images/background.main-nav-line.png') bottom center no-repeat;
    background-size: 100% auto;
    padding-bottom: 9px;
    padding-left: 8px;
    margin-top: 0;
    margin-bottom: 10px;
}

/*Department Page Grid*/
ul#store-departments {
    width: 730px;
    margin: 0;
    padding: 0;
    list-style: none;
}

ul#store-departments li {
    width: 220px;
    padding-left: 0;
    float: left;
    margin-right: 12px;
    margin-bottom: 25px;
}

ul#store-departments li a {
    display: block;
}

ul#store-departments li h3 {
    font-size: 20px;
    background: url('/assets/images/horizontal_rule-small2.png') bottom center no-repeat;
    padding-bottom: 9px;
    padding-left: 15px;
    margin: 0;
    margin-bottom: 5px;
}
ul#store-departments li p {
    background: url('/assets/images/background.tan-small.png') no-repeat;
    width: 226px;
    height: 162px;
    margin: 0;
    padding-top: 10px;
}
ul#store-departments li img {
    display: block;
    width: 189px;
    height: 111px;
    margin: 0 auto;
    border: 4px solid #fff;
    box-shadow: 1px 1px 3px rgba(0,0,0,0.3);
    opacity: .9;
    transition: opacity .25s linear;
}
ul#store-departments li span {
    display: block;
    margin-top: 10px;
    margin-left: 15px;
}

/*Inner Department Page Grid*/
ul#department-items {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-top: 30px;
}

ul#department-items li {
    border-top: 1px solid #cac3b6;
    padding-top: 20px;
    padding-bottom: 30px;
}

ul#department-items li img {
    float: left;
    border: 3px solid #fff;
    box-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    width: 119px;
    height: 111px;
}

ul#department-items li h3 {
    margin-bottom: 3px;
    background: none;
    padding-bottom: 4px;
    font-size: 16px;
}

ul#department-items li h3, ul#department-items li p {
    margin: 0;
    padding: 0;
    margin-left: 145px;
}

/*start calendar page grid*/
/* ==========================================================================
   Calendar / Event Styles
   ========================================================================== */

ul#view {
    float:right;
    margin:0; padding:0;
    list-style:none;
    font-family:"Montserrat",sans-serif;
    color:#363636;
    font-size:11px;
    text-transform:uppercase;
    margin-top:14px;
}

ul#view li {
    display:inline-block;
    margin-right:5px;
    vertical-align: bottom;
}

ul#view li a {
    display:block;
    width:20px; height:20px;
    padding:2px;
    text-indent:-9999px;
    background:#a39a7d;
}

ul#view li.active a {
    background:#dccea8;
}

ul#view li.cal a {
    background-image:url('/assets/images/icon.calendar-view.png');
    background-position: center;
    background-repeat: no-repeat;
}

ul#view li.list a {
    background-image:url('/assets/images/icon.list-view.png');
    background-position: center;
    background-repeat: no-repeat;
}

ul#filter {
    font-family:"Montserrat",sans-serif;
    list-style:none;
    margin:0; padding:0;
    border-top:1px solid #cac3b6;
    padding:10px 0px;
}

.classes-events .page-content h2 {
    margin-top:10px;
    margin-bottom:15px;
    vertical-align:bottom;
}

ul#filter li {
    display:block;
    float:left;
    margin-right:10px;
}

.all a, a.all {
    color:#505050;
}
.all a:hover, a:hover.all {
    color:#000;
}
.classes a, a.classes {
    color:#7285a3;
}
.classes a:hover, a:hover.classes {
    color:#000;
}
.tours a, a.tours {
    color:#f2c35b;
}
.tours a:hover, a:hover.tours {
    color:#000;
}
.sales a, a.sales {
    color:#99b53d;
}
.sales a:hover, a:hover.sales {
    color:#000;
}
.events a, a.events {
    color:#9e9782;
}
.events a:hover, a:hover.events {
    color:#000;
}
   
table#calendar {
    width:100%;
    font-family:"Montserrat",sans-serif;
    font-weight:400;
    font-size:11px;
}

table#calendar th, table#calendar td {
    width:102px;
    background:#fff;
    vertical-align:top;
}

table#calendar th {
    background:#dccea8;
    border-top:1px solid #b8aa87;
    color:#a39a7d;
    text-transform:uppercase;
}

table#calendar th:first-child {
    border-left:1px solid #b8aa87;
}

table#calendar th:last-child {
    border-right:1px solid #b8aa87;
}

table#calendar td {
    height:130px;
    border:1px solid #d8d4cf;
    padding:7px;
    line-height:13px;
}

table#calendar td a {
    display:block;
    margin-bottom:8px;
}

table#calendar td span {
    display:block;
    font-family:"Arvo",sans-serif;
    color:#a39a7d;
    margin-bottom:10px;
}

ul#event-list {
    margin:0; padding:0;
    list-style:none;
    color:#363636;
}

ul#event-list li {
    border-top:1px solid #cac3b6;
    padding:20px 0px;
}

ul#event-list li header {
    width:auto;
    height:auto;
    background-image:none;
    margin-left:53px;
    margin-bottom:4px;
    color:#000;
}

ul#event-list li time.cal {
    display:block;
    background:#000;
    width:45px;
    height:35px;
    color:#fff;
    font-family:"Montserrat",sans-serif;
    font-size:13px;
    font-weight:bold;
    text-align:center;
    line-height:115%;
    padding-top:5px;
    float:left;
    margin-right:8px;
}

ul#event-list li time.cal.classes {
    background:#7285a3;
}
ul#event-list li time.cal.tours {
    background:#f2c35b;
}
ul#event-list li time.cal.sales {
    background:#99b53d;
}
ul#event-list li time.cal.events {
    background:#9e9782;
}
.tours a, a.tours {
    color:#f2c35b;
}
.tours a:hover, a:hover.tours {
    color:#000;
}
.sales a, a.sales {
    color:#99b53d;
}
.sales a:hover, a:hover.sales {
    color:#000;
}
.events a, a.events {
    color:#9e9782;
}
.events a:hover, a:hover.events {
    color:#000;
}


ul#event-list li h3 {
    font-family:"Montserrat",sans-serif;
    font-size:18px;
    line-height:115%;
    margin:0; margin-bottom:5px;
    background: none;
    padding-left: 0;
    padding-bottom: 0;
}

ul#event-list li .event-details {
    font-family:"Montserrat",sans-serif;
    text-transform:uppercase;
    font-weight:bold;
    margin-left:53px;
}

ul#event-list li p {
    margin-left:53px;
    margin-bottom:0px;
}

/*start right side buckets*/
.main-body-container .side-content.right {
    float: right;
    width: 23%;
    margin-top: 60px;
    box-sizing: border-box;
}
.main-body-container .side-content.right .bucket {
    width: 100%;
}
.bucket .center {
    width: 99%;
}
.field-row label {
    font-size: 13px;
}

.mobile-only-cal{
    display: none;
}

.large-screen-only-cal{
  display: block;
}

/*Contact Form*/
input.textboxes {
    border-radius: 0;
    height: 25px;
}

textarea{
  border-radius: 0;
}
form#contact_form {
    margin: 20px 0;
}
[type='submit'], [type='button'] {
    border-radius: 7px;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: white;
    padding: 2px 42px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.main-content h2 {
    font-size: 24px;
}

/*start blog styles*/
.main-content .left-blogbar h3 {
    background: none;
}
.left-blogbar p.emphasis {
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    padding: 15px 0;
}

.main-content .left-blogbar h3 {
    background: none;
    font-family: "Arvo",sans-serif;
    font-size: 2em;
    line-height: 28px;
    margin: .67em 0;
    padding-left: 0;
}

.blog-latest.blog-item h3 {
    background: none;
    padding-left: 0;
}
.blog-sidebar a {
    color: #a39a7d;
}
.blog-sidebar h3 {
    margin-top: 10px;
}
article a.readmore {
    border-bottom: 1px solid #ccc;
    display: block;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

article.blog-latest.blog-item img {
    display: block;
    float: none!important;
}

.links-mobile{
  display: none;
}

/*start blog form*/
.form-group input {
    border-radius: 0!important;
    border: 1px solid #bfbbbb!important;
    width: 150px!important;
    height: 19px!important;
    padding: 0 0 0 5px !important;
    font-family: sans-serif!important;
    font-size: 100%;
}
.form-group textarea {
    border: 1px solid #b9b5b5;
    font-family: sans-serif;
    width: 420px;
}
.form-group label {
    font-size: 13px;
}
.form-horizontal button.submit {
    clear: both;
    float: left;
    position: relative;
    top: -26px;
    left: -352px;
    font-size: 100%;
    padding: 3px 10px;
}
.captcha-disclaimer .main-content {
    width: 100%;
}

/****** Add Footer CSS Here *******/
footer {

}

.dark-bg .top {
    width: 100%;
    max-width: 1090px;
    height: 20px;
    background: url('/assets/images/background.dark-top.png') top no-repeat;
    background-size: 100% 100%;
    margin: 0 auto;
}
.dark-bg .content {
    width: 100%;
    background: url('/assets/images/background.dark-content.png') top center repeat-y;
    background-size: 100%;
    background-repeat: no-repeat;
    max-width: 1090px;
    margin: 0 auto;
}
.dark-bg .bottom {
    width: 100%;
    height: 20px;
    max-width: 1090px;
    background: url('/assets/images/background.dark-bottom.png') top no-repeat;
    margin-bottom: 15px;
    background-size: 100%;
    margin: 0 auto;
}

/****** start footer left *******/
footer .float-left {
    width: 25%;
    background: url('/assets/images/footer-line.png') top right no-repeat;
    padding-top: 10px;
    height: 282px;
}
footer #local-first img, footer #local-first span {
    margin: 0;
    vertical-align: middle;
    background-image: none;
    height: auto;
    padding: 0;
}
footer #local-first {
    height: 59px;
    margin-top: 25px;
}
footer div.float-left p {
    font-family: "Montserrat",sans-serif;
    font-size: 12px;
    color: #fff;
    text-transform: uppercase;
    max-width: 90%;
}
footer h4 {
    background: #000;
    color: #fff;
    display: inline-block;
    font-family: "Montserrat",sans-serif;
    text-transform: uppercase;
    font-size: 14px;
    padding: 2px 3px;
    margin: 0;
}
footer ul.hours {
    font-family: "Montserrat",sans-serif;
    font-size: 12px;
    margin: 12px 0px;
    padding: 0;
    margin-left: 4px;
    list-style: none;
    font-weight: bold;
}
footer ul.hours li {
    margin-bottom: 5px;
}
footer ul.hours h5 {
    font-size: 12px;
    color: #fff;
    text-transform: uppercase;
    margin: 0;
}
/****** start footer right *******/
footer .float-right {
    width: 70%;
    padding-top: 10px;
}

footer .float-right img {
    width: auto;
}
footer .float-right img#footer-img1 {
    clear: right;
}
footer .float-right img#footer-img2 {
    margin-right: 5px;
    margin-left: -34px;
    clear: right;
    padding: 0;
}
footer .float-right p.emphasis {
    color: #000;
    font-weight: bold;
    font-size: 20px;
    line-height: 125%;
    margin: 0px;
}
footer .float-right p {
    color: #f8f5eb;
}
footer .float-right #local-first p {
    color: #000;
    font-weight: bold;
    margin-top: -16px;
}
.footer-wrapper {

}
footer #credit.float-right {
    width: 28%;
    padding: 0;
}
footer div#credit.float-right a {
    color: #a39a7d;
    font-weight: bold;
}
footer #copyright.float-left {
    width: 70%;
    background-image: none;
    height: auto;
    padding: 0px;
}
footer div#copyright.float-left p {
    color: #000;
    text-transform: none;
    font-family: "Arvo",sans-serif;
    font-weight: bold;
    font-size: 13px;
}
footer .float-right p {
    color: #f8f5eb;
}
.footer-social-nav{
    display: none;
  }

/****** Add Campaign CSS Here *******/
/****** Carousel CSS Auto-embed - Base Styles *******/

/* Slick Base Carousel -- http://kenwheeler.github.io/slick/ -- do not change below */
.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}
.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.slick-list:focus {
    outline: none;
}
.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}
.slick-slider .slick-track, .slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}
.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
}
.slick-track:before,
.slick-track:after {
    display: table;
    content: '';
}
.slick-track:after {
    clear: both;
}
.slick-loading .slick-track {
    visibility: hidden;
}
.slick-slide {
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide {
    float: right;
}
.slick-slide img {
    display: block;
}
.slick-slide.slick-loading img {
    display: none;
}
.slick-slide.dragging img {
    pointer-events: none;
}
.slick-initialized .slick-slide {
    display: block;
}
.slick-loading .slick-slide {
    visibility: hidden;
}
.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

/* Arrows */
.slick-prev, .slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent;
    z-index: 100;
}
.slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus {
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before, .slick-next:hover:before, .slick-next:focus:before {
    opacity: 1;
}
.slick-prev.slick-disabled:before, .slick-next.slick-disabled:before {
    opacity: .25;
}

.slick-prev:before, .slick-next:before {
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;
    opacity: .75;
    color: ;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
    left: ;
}
[dir='rtl'] .slick-prev {
    right: 25px;
    left: auto;
}
.slick-prev:before {
    content: '←';
}
[dir='rtl'] .slick-prev:before {
    content: '→';
}

.slick-next {
    right: ;
}
[dir='rtl'] .slick-next {
    right: auto;
    left: -25px;
}
.slick-next:before {
    content: '→';
}
[dir='rtl'] .slick-next:before {
    content: '←';
}

/* Dots */
.slick-dotted.slick-slider {
    /*margin-bottom: 30px;*/
}
.slick-dots {
    position: absolute;
    display: block;
    width: 100%;
    height: 40px;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
    background-size: 100% 100%;
    background-image: url('/assets/images/campaign-bottom.png');
}
.slick-dots li {
    position: relative;
    display: inline-block;
    width: 6px;
    height: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}
.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 20px;
    height: 20px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover, .slick-dots li button:focus {
    outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
    opacity: 1;
}
.slick-dots li button:before {
    font-family: 'arial', sans-serif;
    font-size: 40px;
    line-height: 20px;
    position: absolute;
    top: 7px;
    left: 0;
    width: 20px;
    height: 20px;
    content: '•';
    text-align: center;
    opacity: .25;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
    opacity: .75;
}
/* End Slick Base Carousel -- do not change above */

/****** End Carousel CSS Auto-embed - Base Styles *******/
/****** Carousel CSS Auto-embed - site specific area *******/

/* Carousel content styling, including any Slick changes to dots, arrows, etc. */

#campaign {
    position: relative;
    max-width: 944px;
    width: 100%;
    height: 300px;
    margin-top: 0px;
    margin: 0 auto;
}
#campaign-top-border {
    width: 100%;
    height: 10px;
    position: absolute;
    top: 0;
    left: -2px;
    z-index: 5;
    background: url("/assets/images/campaign-frame.top.png") no-repeat;
}
#campaign-right-border {
    width: 5px;
    height: 100%;
    position: absolute;
    top: 10px;
    right: 0;
    z-index: 5;
    background: url("/assets/images/campaign-frame.right.png") no-repeat;
}
#campaign-left-border {
    width: 5px;
    height: 100%;
    position: absolute;
    top: 10px;
    left: -2px;
    z-index: 5;
    background: url("/assets/images/campaign-frame.left.png") no-repeat;
}
#campaign-bottom-border {
    width: 100%;
    height: 10px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 5;
    background: url("/assets/images/campaign-frame.bottom.png") no-repeat;
}

.byte-parent-carousel {
	position: relative;
	height: 300px;
  max-width: 940px;/*fixed width*/
  width: 100%;
}
.byte-carousel {
  max-width: 940px;/*fixed width*/
  width: 100%;
	height: 300px;
	position: absolute;
	top:0;
	left: 0;
}
.byte-carousel .slick-track {
    height: 300px;
}
.byte-carousel-pane {
	box-sizing: border-box;
	background-size: cover;
	background-position: center top;
	position: relative;
}
.byte-carousel-pane .byte-carousel-text h3 {
    color: white;
    font-size: 28px;
    margin-bottom: 22px;
    font-family: "Montserrat", sans-serif
}
.byte-carousel-pane .byte-carousel-text {
    position: absolute;
    width: 65%;
    right: 25px;
    top: 12%;
    font-family:'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 100;
    line-height: 26px;
    text-shadow: 1px 2px 0.5px rgb(84, 81, 81);
    color: white;
    text-align: right;
}
.byte-carousel-pane .byte-carousel-link {
    display: block;
    text-decoration: none;
    padding: 10px;
    background-color: #ABBC4B;
    color: #e8eAd8;
    float: right;
    font-family: Arvo;
    font-weight: 400;
    font-size: 16px;
    text-align: center;
    border-radius: 6px;
    text-shadow: none;
}
.byte-carousel-pane .byte-carousel-link:hover {
    color: #ffffff;
}
.byte-carousel .slick-dots {
    bottom: -15px;
}
.byte-carousel .slick-dots li button:before {
    color: black;
}
.byte-carousel .slick-dots li.slick-active button:before {
    color: black;
}
.byte-carousel-pane-link {
    position: absolute;
    bottom: 20px;
    right: 20px;

    text-decoration: none;
    color: yellow;
    text-transform: uppercase;
}

.byte-parent-carousel.is-hidden-fade {
    opacity: 0;
}
.byte-parent-carousel.is-visible-fade {
    opacity: 1;
    -webkit-transition: opacity .5s;
    -moz-transition: opacity .5s;
}



.byte-carousel-2 {
    display: none;
}
/* End Carousel content styling, including any Slick changes to dots, arrows, etc. */

/****** End Carousel CSS Auto-embed - site specific area *******/



/****** Add Buckets CSS Here *******/
/*general buckets*/
.bucket {
    width: 300px;
    margin-bottom: 25px;
    position: relative;
    /*padding: 5px 10px;*/
    box-sizing: border-box;
}
.bucket h2 {
    margin: 0;
    font-size: 20px;
    padding-bottom: 15px;
    background: url('/assets/images/bucket_images/bucket.heading-underline.png') bottom no-repeat;
    background-size: 100% auto;
}
.bucket h3 {
    font-size: 20px;
    color: #000;
    margin: 0;
    padding: 0;
}

h3.bucket_title {
    font-size: 20px;
    background: url('/assets/images/horizontal_rule-small2.png') bottom center no-repeat;
    padding-bottom: 9px;
    padding-left: 8px;
    margin-bottom: 10px;
    line-height: auto;
}
.page-content .bucket {
    float: left;
    height: 333px;
    margin-right: 20px;
}
.bucket .scroll-arrow-up {
    width: 100%;
    height: 30px;
    background: url('/assets/images/background.translucent.png');
    position: absolute;
    top: 36px;
    left: 0;
    display: none;
    z-index: 5;
}
.bucket .scroll-arrow-up a {
    width: 100%;
    height: 30px;
    display: block;
    margin: 0 auto;
    background: url('/assets/images/scroll-arrow-up.png') center no-repeat;
    text-indent: -9999px;
}
.bucket .scroll-area {
    position: relative;
    overflow: hidden;
    height: 320px;
}
.bucket .scroll-arrow-down {
    width: 100%;
    height: 30px;
    background: url('/assets/images/background.translucent.png');
    position: absolute;
    bottom: 0;
    left: 0;
}
.bucket .scroll-arrow-down a {
    width: 100%;
    height: 30px;
    display: block;
    margin: 0 auto;
    background: url('/assets/images/scroll-arrow-down.png') center no-repeat;
    text-indent: -9999px;
}
.bucket.scroll {
    overflow: hidden;
}

.bucket .background {
    background: url('/assets/images/bucket_images/background.bucket-tan.png') top center no-repeat;
    margin-top: 5px;
    padding-top: 10px;
    display: table;
    height: 300px;
  }
.bucket .background p {
    width: 250px;
    margin: 0 auto;
    padding-top: 10px;
}
.bucket .background p a {
    display: block;
    margin-top: 5px;
}

.buckets .column {
    height: 400px;
}

/*start homepage buckets*/
.home-buckets.col-6-across {
    width: 49%;
    height: 225px;
    display: table;
    float: left;
    border-radius: 10px;
    background-size: cover;
    background-position: center center;
    margin-top: 15px;
    background-repeat: no-repeat;
    padding: 35px;
    box-sizing: border-box;
}
.home-buckets.col-6-across:last-of-type {
    float: right;
}

.fruit-stamp {
    position: absolute;
    right: 0;
    top: 0;
}

.veggie-stamp {
    position: absolute;
    right: 0;
    bottom: 0;
}

.bucket#facebook-feed {
    background: url('/assets/images/background.facebook.png') no-repeat;
    width: 301px;
    height: 391px;
}
.fb-like-box {
    margin: 20px 13px;
}

/*start homepage Upcoming Events*/
.page-content .bucket {
    float: left;
    height: 333px;
    margin-right: 20px;
}
#upcoming-events ul#events, #upcoming-events ul#events li {
    margin: 0;
    padding: 0;
    list-style: none;
}

#upcoming-events ul#events {
    color: #363636;
    position: absolute;
    top: 0;
    padding-top: 20px;
    box-sizing: border-box;
    width: 100%;
}
#upcoming-events ul#events li {
    margin-bottom: 5px;
}
#upcoming-events ul#events time.cal {
    display: block;
    background: #000;
    width: 45px;
    height: 35px;
    color: #fff;
    font-family: "Montserrat",sans-serif;
    font-size: 13px;
    font-weight: bold;
    text-align: center;
    line-height: 115%;
    padding-top: 5px;
    float: left;
    margin-right: 8px;
}
#upcoming-events ul#events h3 {
    font-family: "Montserrat",sans-serif;
    font-size: 18px;
    /*position: absolute;*/
    bottom: 3px;
    margin: 0;
    line-height: 115%;
}
#upcoming-events ul#events header {
    /*height: 40px;*/
    width: 247px;
    margin-left: 53px;
    margin-bottom: 4px;
    color: #000;
}
#upcoming-events ul#events .event-details {
    font-family: "Montserrat",sans-serif;
    text-transform: uppercase;
    font-weight: bold;
    margin-left: 53px;
}
#upcoming-events ul#events .event-details {
    font-family: "Montserrat",sans-serif;
    text-transform: uppercase;
    font-weight: bold;
    margin-left: 53px;
}
#upcoming-events ul#events p {
    margin-left: 53px;
    margin-bottom: 0px;
}

/*start homepage blog posts*/
#recent-posts ul#posts, #recent-posts ul#posts li {
    margin: 0;
    padding: 0;
    list-style: none;
    color: #363636;
}
#recent-posts ul#posts {
    position: absolute;
    top: 0;
    padding-top: 20px;
}
.bucket#upcoming-events ul#events li.view-all, .bucket#recent-posts ul#posts li.view-all {
    margin-top: 25px;
}
#recent-posts ul#posts h3 {
    font-family: "Montserrat",sans-serif;
    font-size: 14px;
    color: #000;
    margin: 0;
}
#recent-posts ul#posts time {
    font-family: "Montserrat",sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    display: block;
    margin: 5px 0px;
}
#recent-posts ul#posts p {
    margin: 0;
    margin-bottom: 20px;
}

#blog-posts ul li {
    padding-left: 8px;
    color: #363636;
}

#blog-posts p.emphasis {
    font-size: 17px;
    line-height: 24px;
    margin-top: 0;
}

#blog-posts p.emphasis {
    font-size: 17px;
    line-height: 24px;
    margin-top: 0;
    font-family: "Arvo",sans-serif;
}

/*start homepage specials bucket*/
.bucket#specials ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.bucket#specials ul li {
    background: url('/assets/images/horizontal-rule_small.png') bottom no-repeat;
    background-size: 100%;
    padding-bottom: 7px;
    margin-bottom: 25px;
    padding-left: 110px;
    position: relative;
}
.bucket#specials ul li a, .bucket#specials ul li a:hover {
    color: #000;
    font-weight: normal;
}
.bucket#specials ul li img {
    position: absolute;
    left: 14px;
    bottom: 6px;
}
.bucket#specials ul li h3 {
    margin: 0;
    height: 20px;
    background: url('/assets/images/icon.specials.png') top right 15px no-repeat;
    padding-top: 4px;
    font-size: 16px;
    font-family: "Arvo",sans-serif;
}

/*start homepage newsletter bucket*/
.bucket#newsletter {
    background: url('/assets/images/background.newsletter.png') no-repeat;
    display: table;
    background-size: 100% 100%;
    padding: 0px 10px 18px 10px;
    box-sizing: border-box;
}
.bucket#newsletter .content {
    background: none;
    margin: 0 auto;
    padding-top: 15px;
}
.bucket#newsletter h3 {
    color: #fff;
    font-size: 18px;
    font-weight: normal;
    margin: 0;
}
/*start inside page bucket*/
.bucket.bread {
    background: url('/assets/images/bucket-background_bread.png');
    width: 100%;
    color: #363636;
    padding: 30px 15px;
    background-size: 100% 100%;
    display: table;
    background-repeat: no-repeat;
}
.bucket.asparagus {
    background: url('/assets/images/bucket_images/bucket-background_asparagus.png');
    width: 181px;
    color: #363636;
    padding: 30px 15px;
    display: table;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.bucket_right_long {
    background: url('/assets/images/bucket_images/background.smoothies_longtan.png') no-repeat;
    margin-left: -10px;
    width: 206px;
    color: #363636;
    padding: 5px 10px 0 20px;
}

.bucket.broccoli {
    background: url('/assets/images/bucket_images/bucket-background_broccoli.png');
    width: 181px;
    color: #363636;
    padding: 30px 15px;
    display: table;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

/****** Add Email Signup Form CSS Here *******/

/****** Add Mobile Menu CSS Here *******/

/****** Add Forms CSS Here *******/


/****** Add Specific Site, Page CSS Content, Tools Here *******/

/****** Add WYSIWYG / Body Content CSS Here *******/

h1 {
  color: #091521;
  margin: 0;
  padding: 20px 0 20px 0;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  line-height: 17px;
  letter-spacing: .05em;
}
/*h1*/
.campaign-large{
  font-family: 'Arvo', serif;
  margin-top: 20px;
  font-size: 36px;
  line-height: 40px;
  font-style: italic;
  font-weight: 700;
  color: #FFFFFF;
}
.campaign-large-black{
  font-family: 'Arvo', serif;
  font-size: 44px;
  line-height: 40px;
  font-style: italic;
  font-weight: 700;
  color: #000000;
}

h3 {
  color: #333;
  font-size: 16px;
  margin: 0;
  font-family:'Montserrat', sans-serif;
}
/*h3*/
.white-block-med {
    font-family: 'Arvo', serif;
    font-size: 22px;
    line-height: 25px;
    font-weight: 400;
    color: #FFFFFF;
    text-shadow: 1px 2px 0.5px rgb(84, 81, 81);
}
/*p*/
.campaign-normal{
  font-family:'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #D8D8D8;
  margin-top: -12px;
}

.blockquote {
  display: block;
  font-family:'Montserrat', sans-serif;
  color:  #0c437a;
  font-size: 17px;
  font-style: italic;
  margin-left: 2em;
  padding-left: 1.5em;
  border-left: solid 3px #c5d9ec;
  line-height: 28px;
  quotes: none;
}

.green-button {
    background-color: #ABBC4B;
    padding: 5px 10px;
    box-sizing: border-box;
    border-radius: 6px;
    margin-top: 15px;
    font-family: 'Arvo', serif;
    font-size: 16px;
    line-height: 25px;
    font-weight: 400;
    color: #F8FAE8;
}

.green-button:before {
    content: '';
    position: absolute;
    background-repeat: no-repeat;
    width: 30px;
    left: 31px;
    margin-top: -7px;
    height: 38px;
    background-image: url('/assets/images/green-button-left.png');
}

.green-button:after {
    content: '';
    position: absolute;
    background-repeat: no-repeat;
    width: 25px;
    margin-right: 31px;
    margin-top: -8px;
    height: 40px;
    background-image: url('/assets/images/green-button-right.png');
}

.green-button:hover {
  color: #ffffff;
  cursor: pointer;
}
.green-button-a {
    display: inline-block;
    background-color: #ABBC4B;
    padding: 5px 10px;
    box-sizing: border-box;
    border-radius: 6px;
    margin-top: 15px;
    font-family: 'Arvo', serif;
    font-size: 16px;
    line-height: 25px;
    font-weight: 400;
    color: #e8eAd8;
}
.green-button-a:hover {
    color: white;
}

.img_right_25,
.img_left_25,
.img_right_50,
.img_left_50 {
  width: 100%;
  margin-bottom: 1em;
}

.img_full_width {
  width: 100%;
  float: none;
  margin-bottom: 1em;
}
.mobile-only {
  display: none;
}
.desktop-only {
  display: block;
}

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




/* Specific Screen Sizes from Foundation */

/* Small only */
@media screen and (max-width: 39.9375em) {

	/* to disable touch panning / scrolling */
	html,body {
		overflow-x: hidden;
	}
	body {
		position: relative;
	}
	.grid-w-gutters .column + .column {
		margin-left: 0;
	}
	.grid, .grid-w-gutters { width: 100%; }
	/* standard stuff for small only screen */
	.s-one { width: 8.33%; }
	.s-two { width: 16.66%; }
	.s-three { width: 25%; }
	.s-four { width: 33.33%; }
	.s-five { width: 41.66%; }
	.s-six { width: 50%; }
	.s-seven { width: 58.33%; }
	.s-eight { width: 66.66%; }
	.s-nine { width: 75%; }
	.s-ten { width: 83.33%; }
	.s-eleven { width: 91.66%; }
	.s-twelve { width: 100% !important; }

	.s-text-left { text-align: left; }
	.s-text-right { text-align: right; }
	.s-text-center { text-align: center; }
	.s-text-justify { text-align: justify; }



	/****** Add Site CSS Content, Tools for Small Here *******/


	/****** Add Regular WYSIWYG Content for Small Here *******/
	.img_right_25,
	.img_right_50 {
		float: right;
		width: 50%;
		margin: 1em 0 2em 2em;
	}
	.img_left_25,
	.img_left_50 {
		float: left;
		width: 50%;
		margin: 1em 2em 2em 0;
	}
	.img_full_width {
		width: 100%;
		float: none;
		margin: .5em auto 1em;
	}
	.mobile-only {
		display: block;
	}
	.desktop-only {
		display: none;
	}


}


/* Medium only */
@media screen and (min-width: 40em) and (max-width: 63.9375em) {

	/* to disable touch panning / scrolling */
	html,body {
		overflow-x: hidden;
	}
	body {
		position: relative;
	}
	/* give us some space */
	.grid, .grid-w-gutters { width: 100%; }

	/* standard stuff for medium only screen */
	.m-one { width: 8.33%; }
	.m-two { width: 16.66%; }
	.m-three { width: 25%; }
	.m-four { width: 33.33%; }
	.m-five { width: 41.66%; }
	.m-six { width: 50%; }
	.m-seven { width: 58.33%; }
	.m-eight { width: 66.66%; }
	.m-nine { width: 75%; }
	.m-ten { width: 83.33%; }
	.m-eleven { width: 91.66%; }
	.m-twelve { width: 100%; }

	.m-text-left { text-align: left; }
	.m-text-right { text-align: right; }
	.m-text-center { text-align: center; }
	.m-text-justify { text-align: justify; }

	/* Show mobile navs and details here */
	.hamb-wrapper {
		display: block;
	}
	.header-logo {
		padding-top: 5px;
		margin-left: 5px;
	}
	.header-toolmenu {
		display: none;
	}
	.main-navigation {
		display: none;
	}

	/****** Add Site CSS Content, Tools for Medium Here *******/


	/****** Regular WYSIWYG Content for Medium *******/

	.h2-header {
		color: #091521;
		margin: 1em auto .25em;
		font-family: "Code-Pro", sans-serif;
		font-weight: 100;
		font-size: 20px;
		line-height: 17px;
	}

	.h3-subheader {
		font-family: 'Open Sans', sans-serif;
		color:  #214364;
	}

	.h3-subheader-italic {
		margin: .25em auto .75em;
		font-family: 'Open Sans';
		font-style: italic;
		color: #214364;
		font-weight: 100;
	}

	.blockquote {
		display: block;
		font-family: 'Open Sans', sans-serif;
		color:  #0c437a;
		font-size: 17px;
		font-style: italic;
		margin-left: 2em;
		padding-left: 1.5em;
		border-left: solid 3px #c5d9ec;
		line-height: 28px;
		quotes: none;
	}

	/****** Regular image WYSIWYG Content for Medium *******/
	.img_right_25,
	.img_right_50 {
		float: right;
		width: 50%;
		margin: 1em 0 2em 2em;
	}
	.img_left_25,
	.img_left_50 {
		float: left;
		width: 50%;
		margin: 1em 2em 2em 0;
	}

	.img_full_width {
		width: 100%;
		float: none;
		margin: .5em auto 1em;
	}

	.mobile-only {
		display: none;
	}
	.desktop-only {
		display: block;
	}

}

/* Large and up */
@media screen and (min-width: 64em) {
	/* Hide mobile navs and details here */
	.hamb-wrapper {
		display: none;
	}
	.main-navigation-mobile {
		display: none;
	}
	.content-social-buttons {
		display: block;
	}

	/****** Regular WYSIWYG Content for Large *******/

	.h2-header {
		color: #091521;
		margin: 1em auto .25em;
		font-family: "Code-Pro", sans-serif;
		font-weight: 100;
		font-size: 20px;
		line-height: 17px;
	}

	.h3-subheader {
		font-family: 'Open Sans', sans-serif;
		color:  #214364;
	}

	.h3-subheader-italic {
		margin: .25em auto .75em;
		font-family: 'Open Sans';
		font-style: italic;
		color: #214364;
		font-weight: 100;
	}

	.blockquote {
		display: block;
		font-family: 'Open Sans', sans-serif;
		color:  #0c437a;
		font-size: 17px;
		font-style: italic;
		margin-left: 2em;
		padding-left: 1.5em;
		border-left: solid 3px #c5d9ec;
		line-height: 28px;
		quotes: none;
	}

/****** Regular Image WYSIWYG Content for Large *******/

.img_right_25 {
    float: right;
    margin: 1em 0 2em 2em;
    width: 25%;
}
.img_right_50 {
    float: right;
    width: 50%;
    margin: 1em 0 2em 2em;
    width: 50%;
}
.img_left_25 {
    float: left;
    margin: 1em 2em 2em 0;
    width: 25%;
}
.img_left_50 {
    float: left;
    width: 50%;
    margin: 1em 2em 2em 0;
}

.img_full_width {
  width: 100%;
  float: none;
    margin: .5em auto 1em;
}

.main-content img.img_left_50, .main-content img.img_left_25  {
    margin-right: 10px;
    padding: 5px;
    background-color: white;
    border: 1px solid #ccc;
    box-shadow: 1px 1px 3px rgba(0,0,0,0.3);
    float: left;
    margin-top: 0;
    margin-bottom: 0;
}

.main-content img.img_right_50, .main-content img.img_right_25  {
    margin-left: 10px;
    padding: 5px;
    background-color: white;
    border: 1px solid #ccc;
    box-shadow: 1px 1px 3px rgba(0,0,0,0.3);
    float: right;
    margin-top: 0;
    margin-bottom: 0;
}

}

/* Large only */
@media screen and (min-width: 64em) and (max-width: 74.9375em) {
}

/* Medium and up */
@media screen and (min-width: 40em) {

}

/* Media query for 1024 px */
@media screen and (max-width: 1024px) {
  /*start header*/
  .site-logo {
    left: -51px;
    top: 0;
    margin: .5% 0 -60px 4.5%;
    width: 22.5%;
  }
  header .float-right {
    width: 77%;
  }
  .header-contact {
    margin-top: 0;
  }
  h4.header-description{
    margin-top: 0;
  }
  /*start home buckets*/
  .bucket {
    width: 90%;
  }
  img.center {
    width: 95%;
  }
  /*show mobile links*/
  .hide-menu-desktop{
    display: block!important;
  }
/*  show hamburger menu icon*/
  .mobile-menu-button {
    display: block;
    float: right;
    margin-right: 20px;
    margin-top: 7px;
    position: relative;
    z-index: 1000;
  }
  i.fa.fa-bars {
    color: #000000;
    font-size: 20px;
    position: absolute;
    right: 0;
  }
  i.fa.fa-close {
    color: #000000;
    font-size: 20px;
    display: none;
    position: absolute;
    right: 0;
}

  /*show hide main nav*/
  .main-nav{
    display: none;
  }

}

/* Media query for 980px */
@media screen and (max-width: 980px) {
  /*start header*/
  .site-logo {
    margin: .5% 0 -60px 7%;
    width: 30.5%;
  }
  /*start navigation*/
  .header-nav {
    display: none;
  }
  .main-nav ul, .main-nav ul li {
    display: block;
    text-align: left;
    padding: 10px 0;
    border-bottom: 1px solid #cac3b6;
  }
  .main-nav ul li:hover ul.drop {
    width: 100%;
    display: block;
    padding: 10px;
  }
  .main-nav ul li:hover.our-store-nav a, .main-nav ul li:hover.departments-nav a, .main-nav ul li:hover.classes---events-nav a, .main-nav ul li:hover.the-harvest-cafe-nav a, .main-nav ul li:hover.special-diets-nav a, .main-nav ul li:hover.sales---specials-nav a {
    background: none;
  }
  .main-nav ul li.our-store-nav:hover ul.drop, .main-nav ul li.departments-nav:hover ul.drop, .main-nav ul li.classes---events-nav:hover ul.drop, .main-nav ul li.the-harvest-cafe-nav:hover ul.drop, .main-nav ul li.special-diets-nav:hover ul.drop, .main-nav ul li.sales---specials-nav:hover ul.drop, .main-nav ul li.careers-nav:hover ul.drop, .main-nav ul li.contact-us-nav:hover ul.drop, .main-nav ul li.the-blog-nav:hover ul.drop {
    background: none;
    display: block;
    position: relative;
  }
  .main-nav ul li.our-store-nav:hover ul.drop:after, .main-nav ul li.departments-nav:hover ul.drop:after, .main-nav ul li.classes---events-nav:hover ul.drop:after, .main-nav ul li.the-harvest-cafe-nav:hover ul.drop:after, .main-nav ul li.special-diets-nav:hover ul.drop:after, .main-nav ul li.sales---specials-nav:hover ul.drop:after  {
    content: ' ';
    background: none;
  }
  .main-nav ul, .main-nav ul li:hover {
    display: block;
    text-align: left;
    padding: 10px 0;
    border-bottom: 0;
  }
  .main-nav ul.drop li {
    display: block;
    padding: 10px 0;
  }
  .main-nav ul li.sales---specials-nav:hover ul.drop {
    width: 100%;
  }
  .mobile_header_nav{
    display: block!important;
  }

  .hide_nav_desktop {
    display: inline;
}

  /*mobile menu adjustments*/
  header .float-right{
    width: 77%;
    float: left!important;
    margin-top: 60px;
  }
  .header-contact {
    float: left;
    text-align: left;
    padding-left: 0;
  }
  h4.header-description {
    margin-top: 0;
    float: left;
  }

  /*start home buckets*/
  .col-8-across {
    width: 100%;
  }
  .col-4-across {
    width: 100%;
  }
  .bucket#specials ul li img {
    width: 25%;
  }
  .bucket#specials ul li h3 {
      margin-left: -18px;
      margin-right: -13px;
  }
  .bucket#specials ul li {
    width: 25%;
    float: left;
    display: inline-block;
    margin-right: 5%;
  }
  .bucket#newsletter {
    width: 47%;
    float: left;
    display: inline-block;
    margin-right: 2%;
  }
  .bucket#facebook-feed {
    display: block;
    position: relative;
    clear: both;
  }
  div#recent-posts {
    width: 50%;
  }
  /*start main body*/
  .main-body-container .main-content {
    width: 95%!important;
  }
  /*start main body banner*/
  .page-banner p.emphasis {
    width: 50%;
  }
  .page-banner p {
    width: 50%;
    margin-top: 15px;
  }
  .page-banner img {
    right: -12px;
    top: 56px;
    width: 51%;
  }
  .main-body-container .main-content {
    width: 100%;
  }
  /*start left side menu*/
  .main-body-container .side-content.left {
    display: none;
  }
  .main-body-container .side-content.right {
    float: right;
    width: 100%;
  }
  .bucket#newsletter {
    width: 48%;
    float: left;
    display: inline-block;
    margin: 1%;
  }
  .main-body-container .side-content.right .bucket {
    float: left;
    width: 33%;
    margin: 0 1%;
  }

  /*  start blog*/
    .links-mobile{
    display: block;
  }
  ul.links-mobile {
    margin: 25px 0;
    padding: 0;
    list-style: none;
    color: #a39a7d;
    font-size: 15px;
    text-align: left;
  }
  ul.links-mobile li {
      padding: 5px 0px;
      border-bottom: 1px solid #cac3b6;
  }
  ul.links-mobile a {
      color: #a39a7d;
  }
  ul.links-mobile li.active a {
      color: #000;
  }

  ul.links-mobile a.active {
      color: #000;
  }

  /*start rightside bar buckets*/
  .long-bucket-container {
    display: inline-block;
    margin: 0 2%;
  }
  .side-content.bucket.bread {
    width: 45%;
    margin: 1%;
  }

 /* start image treatments*/
 .img_right_25, .img_right_50{
    width: 30%!important;
    height: auto!important;
 }
 .img_left_25, .img_left_50{
    width: 30%!important;
    height: auto!important;
 }
  /*start footer*/
  footer #copyright.float-left {
    width: 65%;
  }
  footer #credit.float-right {
    width: 30%;
  }
  footer .float-right img {
    width: auto;
    width: 50%;
}

  /*start footer*/
  #local-first img {
    width: 10%;
    width: 62px;
    margin-top: -20px;
    position: relative;
    padding-top: 0;
}
  footer .float-right #local-first p {
     margin-top: 0; 
  }
}

/*start media query for mobile at 480*/
@media screen and (max-width: 480px) {
  .site-logo {
    margin: .5% 0 0 19%;
    width: 68%;
  }
  header .float-right {
    display: none;
  }
  /*start campaign*/
  .campaign-large {
    font-size: 20px;
    line-height: 22px;
  }
  .byte-carousel-pane .byte-carousel-link {
    font-size: 14px;
    line-height: 16px;
  }
  .campaign-normal {
    line-height: 20px;
  }
  .home-buckets.col-6-across {
    width: 100%;
  }
  /*buckets*/
  .col-6-across {
    width: 100%;
  }
  .bucket#specials ul li {
    width: 59%;
  }
  .bucket#newsletter {
    width: 90%;
    display: block;
  }
  .bucket#specials ul li h3 {
    margin-left: -26px;
    margin-right: -18px;
  }
  .bucket#specials ul li img {
    width: 26%;
  }
  .bucket#facebook-feed {
    display: none;
  }
  .main-body-container .side-content.right .bucket {
    width: 100%;
  }
  div#recent-posts {
    width: 100%;
}

  /*start page banner*/
  .page-banner p {
    width: 100%;
    margin-top: 15px;
}
  .page-banner p.emphasis {
    width: 100%;
  }
  .page-banner img {
    display: none;
  }
  .page-banner p.emphasis {
    font-size: 20px;
    line-height: 22px;
  }
  .page-banner.classes---events.landing {
    background: url('/assets/images/events-mobile.png');
    background-size: 100% 100%;
  }
  .page-banner.our-store.landing {
    background: url('/assets/images/our-store-mobile.png'); 
    background-size: 100% 100%;
  }
  .page-banner.departments.landing, .page-banner.the-blog.landing {
    background: url('/assets/images/departments-mobile.png');
    background-size: 100% 100%;
  }
  .page-banner.the-harvest-cafe.landing, .page-banner.careers.landing {
    background: url('/assets/images/harvest-mobile.png'); 
    background-size: 100% 100%;
  }
  .page-banner.special-diets.landing {
    background: url('/assets/images/diets-mobile.png'); 
    background-size: 100% 100%;
  }
  .page-banner.hours---location.landing {
    background: url('/assets/images/departments-mobile.png'); 
    background-size: 100% 100%;
  }
  .page-banner.contact-us.landing {
    background: url('/assets/images/events-mobile.png');
    background-size: 100% 100%;
  }
  .page-banner.sales---specials.landing {
    background: url('/assets/images/sales-mobile.png');
    background-size: 100% 100%;
}
  .hours---location.page-banner h1, .contact-us.page-banner h1, .careers.page-banner h1, .the-blog.page-banner h1 {
    left: 20px;
    top: 45px;
  }
  .primary.page-banner h1 {
    left: 10px;
    color: black;
  }
  /*start body content*/
  .img_left_25, .img_left_50 {
    width: 50%!important;
  }
  .img_right_25, .img_right_50 {
    width: 50%!important;
  } 
  bs_editable img {
    width: 100%!important;
    height: auto;
  }
  .col-12-across.main-body-container {
    margin-top: 15px;
    display: block;
  }
  .main-body-container .main-content {
    float: left;
    width: 90%;
    box-sizing: border-box;
  }

/*  start departments*/
  ul#store-departments li{
    float: none;
  }

  /*start calendar*/
  ul#view {
    width: 100%;
  }

  li.cal.active {
    display: none!important;
  }

  ul#view {
    display: none;
  }

  table#calendar {
    display: none;
  }
  ul#event-list {
    display: block;
  }


  /*start blog*/
  article img {
    width: 50%!important;
    height: auto;
  }

  /*start blog form*/
  .form-group {
    float: none;
    display: block;
    width: 100%!important;
  }
  /*start footer*/
  footer .float-left {
    width: 100%;
    background-image: none;
  }
  .dark-bg .content {
    background-size: 100% 100%;
  }
  footer .float-right {
    float: left!important;
    width: 100%;
    padding-top: 10px;
  }
  footer .float-right p.emphasis {
    clear: both;
  }
  footer .float-right p {
    width: 95%!important;
  }
  footer #copyright.float-left {
    width: 100%;
  }
  footer #credit.float-right {
    width: 100%;
  }
  footer .float-right img#footer-img1 {
    float: right!important;
    position: relative;
    right: -16px;
    width: auto;
  }
  footer .float-right img#footer-img2 {
    width: auto;
  }
  .footer-social-nav{
    display: block;
  }
  .footer-social-nav ul {
    margin: 0;
    padding: 0;
  }
  .nav-icons-fa{
    float: left;
    margin-right: 10px;
    text-align: center;
  }
}


/* End Specific Screen Sizes from Foundation */





