/*!
Theme Name: Food Garden Travel
Author: Leesa Ward @ GOOP Digital
Author URI: http://www.goop.com.au/
Description: Custom WordPress theme for Food Garden Travel
Text Domain: food-garden-travel
SASS: Custom / 2.0-WIP
Version: 1.0
*/
/* Font import - use the same ' // ' format as below, as this will work correctly even if the website has SSL. */
@import url("//goopfiles.com/library/fonts/font-awesome/css/font-awesome.min.css");
/* SASS file imports */
/* -------------------- */
/* Variables */
/*==============================================
	BREAKPOINTS
==============================================*/
/*Breakpoints that can be used by the fluid property mixin*/
/*Standard breakpoints*/
/*==============================================
	GUTTERS
==============================================*/
/*Can potentially be removed once all instances have been replaced with the appropriate fluid spacing mixin */
/*==============================================
	COLOUR SCHEME
==============================================*/
/*==============================================
	BASE TYPOGRAPHY
==============================================*/
/* see googlefonts.js */
/*==============================================
	LINKS
==============================================*/
/*==============================================
	NAVIGATION
==============================================*/
/*==============================================
	SIDEBAR
==============================================*/
/*==============================================
	TRANSITIONS
==============================================*/
/*==============================================
	BORDER RADII
==============================================*/
/*==============================================
	MISC
==============================================*/
/* Social media colours */
/* Core - things that don't usually change */
/*========================================================================
Rem Calc function - from Zurb Foundation, licenced under MIT Open Source
========================================================================*/
/*============================================================
	GLOBAL MIXINS
============================================================*/
/*==============================================
 	TYPOGRAPHY
==============================================*/
/*==============================================
	 FLUID RESZIZING
	 Set using a minumim and a maximum font size:
		@include fp(font-size, 16, 72);
	 Sets the minumum to 16px at 320px wide and the max to 72px at 1920px wide
==============================================*/
/*==============================================
 	FLUID SPACING
==============================================*/
/*==============================================
	 BREAKPOINTS
	 Blatantly borrowed from https://github.com/Automattic/wp-calypso/blob/master/assets/stylesheets/shared/mixins/_breakpoints.scss
==============================================*/
/*==============================================
	ALIGNMENTS
==============================================*/
/*==============================================
	REMOVE UNNEEDED ELEMENTS ON SMALL/MEDIUM SCREENS
==============================================*/
/*==============================================
	REALIGN TEXT ON SMALL/MEDIUM SCREENS
==============================================*/
/*==============================================
	CENTRE ITEMS ON SMALL/MEDIUM SCREENS
==============================================*/
/*==============================================
	MAKE IMAGES FULL WIDTH ON MOBILE
==============================================*/
/*==============================================
	HIDE THINGS ON PRINT VERSION
==============================================*/
/*==============================================
	MAKE THINGS FULL WIDTH ON PRINT VERSION
==============================================*/
/*==============================================
	INPUT PLACEHOLDERS
==============================================*/
/*============================================================
	GRID
============================================================*/
/*=============================
	GENERAL
=============================*/
body {
  min-width: 320px;
  max-width: 100%;
  margin: 0 auto;
}

[class*="row"] {
  box-sizing: border-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row wrap;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}

.column,
.columns {
  box-sizing: border-box;
  -webkit-flex: 0 auto;
      -ms-flex: 0 auto;
          flex: 0 auto;
  padding-left: calc(2.27273vw + 2.72727px);
  padding-right: calc(2.27273vw + 2.72727px);
}

@media (max-width: 320px) {
  .column,
  .columns {
    padding-left: 10px;
  }
}

@media (min-width: 1200px) {
  .column,
  .columns {
    padding-left: 30px;
  }
}

@media (max-width: 320px) {
  .column,
  .columns {
    padding-right: 10px;
  }
}

@media (min-width: 1200px) {
  .column,
  .columns {
    padding-right: 30px;
  }
}

/*=============================
	ALIGNMENT CLASSES
=============================*/
.align-vertical-center {
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.align-vertical-bottom {
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-content: flex-end;
      -ms-flex-line-pack: end;
          align-content: flex-end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}

/*=============================
	GUTS OF THE GRID
=============================*/
/* Rows */
[class*="row"] {
  max-width: 1200px;
  margin: 0 auto;
}

/* ==== OPTION ONE ==== */
/* Evenly distributed rows of blocks based on the class given to the containing row,
wrapping onto a new line if there's more*/
.row-of-1 .column {
  -webkit-flex-basis: 100%;
      -ms-flex-preferred-size: 100%;
          flex-basis: 100%;
  max-width: 100%;
}

.row-of-2 .column {
  -webkit-flex-basis: 50%;
      -ms-flex-preferred-size: 50%;
          flex-basis: 50%;
  max-width: 50%;
}

.row-of-3 .column {
  -webkit-flex-basis: 33.33333%;
      -ms-flex-preferred-size: 33.33333%;
          flex-basis: 33.33333%;
  max-width: 33.33333%;
}

.row-of-4 .column {
  -webkit-flex-basis: 25%;
      -ms-flex-preferred-size: 25%;
          flex-basis: 25%;
  max-width: 25%;
}

.row-of-5 .column {
  -webkit-flex-basis: 20%;
      -ms-flex-preferred-size: 20%;
          flex-basis: 20%;
  max-width: 20%;
}

.row-of-6 .column {
  -webkit-flex-basis: 16.66667%;
      -ms-flex-preferred-size: 16.66667%;
          flex-basis: 16.66667%;
  max-width: 16.66667%;
}

.row-of-7 .column {
  -webkit-flex-basis: 14.28571%;
      -ms-flex-preferred-size: 14.28571%;
          flex-basis: 14.28571%;
  max-width: 14.28571%;
}

.row-of-8 .column {
  -webkit-flex-basis: 12.5%;
      -ms-flex-preferred-size: 12.5%;
          flex-basis: 12.5%;
  max-width: 12.5%;
}

.row-of-9 .column {
  -webkit-flex-basis: 11.11111%;
      -ms-flex-preferred-size: 11.11111%;
          flex-basis: 11.11111%;
  max-width: 11.11111%;
}

.row-of-10 .column {
  -webkit-flex-basis: 10%;
      -ms-flex-preferred-size: 10%;
          flex-basis: 10%;
  max-width: 10%;
}

.row-of-11 .column {
  -webkit-flex-basis: 9.09091%;
      -ms-flex-preferred-size: 9.09091%;
          flex-basis: 9.09091%;
  max-width: 9.09091%;
}

.row-of-12 .column {
  -webkit-flex-basis: 8.33333%;
      -ms-flex-preferred-size: 8.33333%;
          flex-basis: 8.33333%;
  max-width: 8.33333%;
}

.row-of-13 .column {
  -webkit-flex-basis: 7.69231%;
      -ms-flex-preferred-size: 7.69231%;
          flex-basis: 7.69231%;
  max-width: 7.69231%;
}

.row-of-14 .column {
  -webkit-flex-basis: 7.14286%;
      -ms-flex-preferred-size: 7.14286%;
          flex-basis: 7.14286%;
  max-width: 7.14286%;
}

.row-of-15 .column {
  -webkit-flex-basis: 6.66667%;
      -ms-flex-preferred-size: 6.66667%;
          flex-basis: 6.66667%;
  max-width: 6.66667%;
}

.row-of-16 .column {
  -webkit-flex-basis: 6.25%;
      -ms-flex-preferred-size: 6.25%;
          flex-basis: 6.25%;
  max-width: 6.25%;
}

@media (min-width: 479px) {
  .small-row-of-1 .column {
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    max-width: 100%;
  }
  .small-row-of-2 .column {
    -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
            flex-basis: 50%;
    max-width: 50%;
  }
  .small-row-of-3 .column {
    -webkit-flex-basis: 33.33333%;
        -ms-flex-preferred-size: 33.33333%;
            flex-basis: 33.33333%;
    max-width: 33.33333%;
  }
  .small-row-of-4 .column {
    -webkit-flex-basis: 25%;
        -ms-flex-preferred-size: 25%;
            flex-basis: 25%;
    max-width: 25%;
  }
  .small-row-of-5 .column {
    -webkit-flex-basis: 20%;
        -ms-flex-preferred-size: 20%;
            flex-basis: 20%;
    max-width: 20%;
  }
  .small-row-of-6 .column {
    -webkit-flex-basis: 16.66667%;
        -ms-flex-preferred-size: 16.66667%;
            flex-basis: 16.66667%;
    max-width: 16.66667%;
  }
  .small-row-of-7 .column {
    -webkit-flex-basis: 14.28571%;
        -ms-flex-preferred-size: 14.28571%;
            flex-basis: 14.28571%;
    max-width: 14.28571%;
  }
  .small-row-of-8 .column {
    -webkit-flex-basis: 12.5%;
        -ms-flex-preferred-size: 12.5%;
            flex-basis: 12.5%;
    max-width: 12.5%;
  }
  .small-row-of-9 .column {
    -webkit-flex-basis: 11.11111%;
        -ms-flex-preferred-size: 11.11111%;
            flex-basis: 11.11111%;
    max-width: 11.11111%;
  }
  .small-row-of-10 .column {
    -webkit-flex-basis: 10%;
        -ms-flex-preferred-size: 10%;
            flex-basis: 10%;
    max-width: 10%;
  }
  .small-row-of-11 .column {
    -webkit-flex-basis: 9.09091%;
        -ms-flex-preferred-size: 9.09091%;
            flex-basis: 9.09091%;
    max-width: 9.09091%;
  }
  .small-row-of-12 .column {
    -webkit-flex-basis: 8.33333%;
        -ms-flex-preferred-size: 8.33333%;
            flex-basis: 8.33333%;
    max-width: 8.33333%;
  }
  .small-row-of-13 .column {
    -webkit-flex-basis: 7.69231%;
        -ms-flex-preferred-size: 7.69231%;
            flex-basis: 7.69231%;
    max-width: 7.69231%;
  }
  .small-row-of-14 .column {
    -webkit-flex-basis: 7.14286%;
        -ms-flex-preferred-size: 7.14286%;
            flex-basis: 7.14286%;
    max-width: 7.14286%;
  }
  .small-row-of-15 .column {
    -webkit-flex-basis: 6.66667%;
        -ms-flex-preferred-size: 6.66667%;
            flex-basis: 6.66667%;
    max-width: 6.66667%;
  }
  .small-row-of-16 .column {
    -webkit-flex-basis: 6.25%;
        -ms-flex-preferred-size: 6.25%;
            flex-basis: 6.25%;
    max-width: 6.25%;
  }
}

@media (min-width: 599px) {
  .medium-row-of-1 .column {
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    max-width: 100%;
  }
  .medium-row-of-2 .column {
    -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
            flex-basis: 50%;
    max-width: 50%;
  }
  .medium-row-of-3 .column {
    -webkit-flex-basis: 33.33333%;
        -ms-flex-preferred-size: 33.33333%;
            flex-basis: 33.33333%;
    max-width: 33.33333%;
  }
  .medium-row-of-4 .column {
    -webkit-flex-basis: 25%;
        -ms-flex-preferred-size: 25%;
            flex-basis: 25%;
    max-width: 25%;
  }
  .medium-row-of-5 .column {
    -webkit-flex-basis: 20%;
        -ms-flex-preferred-size: 20%;
            flex-basis: 20%;
    max-width: 20%;
  }
  .medium-row-of-6 .column {
    -webkit-flex-basis: 16.66667%;
        -ms-flex-preferred-size: 16.66667%;
            flex-basis: 16.66667%;
    max-width: 16.66667%;
  }
  .medium-row-of-7 .column {
    -webkit-flex-basis: 14.28571%;
        -ms-flex-preferred-size: 14.28571%;
            flex-basis: 14.28571%;
    max-width: 14.28571%;
  }
  .medium-row-of-8 .column {
    -webkit-flex-basis: 12.5%;
        -ms-flex-preferred-size: 12.5%;
            flex-basis: 12.5%;
    max-width: 12.5%;
  }
  .medium-row-of-9 .column {
    -webkit-flex-basis: 11.11111%;
        -ms-flex-preferred-size: 11.11111%;
            flex-basis: 11.11111%;
    max-width: 11.11111%;
  }
  .medium-row-of-10 .column {
    -webkit-flex-basis: 10%;
        -ms-flex-preferred-size: 10%;
            flex-basis: 10%;
    max-width: 10%;
  }
  .medium-row-of-11 .column {
    -webkit-flex-basis: 9.09091%;
        -ms-flex-preferred-size: 9.09091%;
            flex-basis: 9.09091%;
    max-width: 9.09091%;
  }
  .medium-row-of-12 .column {
    -webkit-flex-basis: 8.33333%;
        -ms-flex-preferred-size: 8.33333%;
            flex-basis: 8.33333%;
    max-width: 8.33333%;
  }
  .medium-row-of-13 .column {
    -webkit-flex-basis: 7.69231%;
        -ms-flex-preferred-size: 7.69231%;
            flex-basis: 7.69231%;
    max-width: 7.69231%;
  }
  .medium-row-of-14 .column {
    -webkit-flex-basis: 7.14286%;
        -ms-flex-preferred-size: 7.14286%;
            flex-basis: 7.14286%;
    max-width: 7.14286%;
  }
  .medium-row-of-15 .column {
    -webkit-flex-basis: 6.66667%;
        -ms-flex-preferred-size: 6.66667%;
            flex-basis: 6.66667%;
    max-width: 6.66667%;
  }
  .medium-row-of-16 .column {
    -webkit-flex-basis: 6.25%;
        -ms-flex-preferred-size: 6.25%;
            flex-basis: 6.25%;
    max-width: 6.25%;
  }
}

@media (min-width: 767px) {
  .tablet-portrait-row-of-1 .column {
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    max-width: 100%;
  }
  .tablet-portrait-row-of-2 .column {
    -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
            flex-basis: 50%;
    max-width: 50%;
  }
  .tablet-portrait-row-of-3 .column {
    -webkit-flex-basis: 33.33333%;
        -ms-flex-preferred-size: 33.33333%;
            flex-basis: 33.33333%;
    max-width: 33.33333%;
  }
  .tablet-portrait-row-of-4 .column {
    -webkit-flex-basis: 25%;
        -ms-flex-preferred-size: 25%;
            flex-basis: 25%;
    max-width: 25%;
  }
  .tablet-portrait-row-of-5 .column {
    -webkit-flex-basis: 20%;
        -ms-flex-preferred-size: 20%;
            flex-basis: 20%;
    max-width: 20%;
  }
  .tablet-portrait-row-of-6 .column {
    -webkit-flex-basis: 16.66667%;
        -ms-flex-preferred-size: 16.66667%;
            flex-basis: 16.66667%;
    max-width: 16.66667%;
  }
  .tablet-portrait-row-of-7 .column {
    -webkit-flex-basis: 14.28571%;
        -ms-flex-preferred-size: 14.28571%;
            flex-basis: 14.28571%;
    max-width: 14.28571%;
  }
  .tablet-portrait-row-of-8 .column {
    -webkit-flex-basis: 12.5%;
        -ms-flex-preferred-size: 12.5%;
            flex-basis: 12.5%;
    max-width: 12.5%;
  }
  .tablet-portrait-row-of-9 .column {
    -webkit-flex-basis: 11.11111%;
        -ms-flex-preferred-size: 11.11111%;
            flex-basis: 11.11111%;
    max-width: 11.11111%;
  }
  .tablet-portrait-row-of-10 .column {
    -webkit-flex-basis: 10%;
        -ms-flex-preferred-size: 10%;
            flex-basis: 10%;
    max-width: 10%;
  }
  .tablet-portrait-row-of-11 .column {
    -webkit-flex-basis: 9.09091%;
        -ms-flex-preferred-size: 9.09091%;
            flex-basis: 9.09091%;
    max-width: 9.09091%;
  }
  .tablet-portrait-row-of-12 .column {
    -webkit-flex-basis: 8.33333%;
        -ms-flex-preferred-size: 8.33333%;
            flex-basis: 8.33333%;
    max-width: 8.33333%;
  }
  .tablet-portrait-row-of-13 .column {
    -webkit-flex-basis: 7.69231%;
        -ms-flex-preferred-size: 7.69231%;
            flex-basis: 7.69231%;
    max-width: 7.69231%;
  }
  .tablet-portrait-row-of-14 .column {
    -webkit-flex-basis: 7.14286%;
        -ms-flex-preferred-size: 7.14286%;
            flex-basis: 7.14286%;
    max-width: 7.14286%;
  }
  .tablet-portrait-row-of-15 .column {
    -webkit-flex-basis: 6.66667%;
        -ms-flex-preferred-size: 6.66667%;
            flex-basis: 6.66667%;
    max-width: 6.66667%;
  }
  .tablet-portrait-row-of-16 .column {
    -webkit-flex-basis: 6.25%;
        -ms-flex-preferred-size: 6.25%;
            flex-basis: 6.25%;
    max-width: 6.25%;
  }
}

@media (min-width: 959px) {
  .tablet-row-of-1 .column {
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    max-width: 100%;
  }
  .tablet-row-of-2 .column {
    -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
            flex-basis: 50%;
    max-width: 50%;
  }
  .tablet-row-of-3 .column {
    -webkit-flex-basis: 33.33333%;
        -ms-flex-preferred-size: 33.33333%;
            flex-basis: 33.33333%;
    max-width: 33.33333%;
  }
  .tablet-row-of-4 .column {
    -webkit-flex-basis: 25%;
        -ms-flex-preferred-size: 25%;
            flex-basis: 25%;
    max-width: 25%;
  }
  .tablet-row-of-5 .column {
    -webkit-flex-basis: 20%;
        -ms-flex-preferred-size: 20%;
            flex-basis: 20%;
    max-width: 20%;
  }
  .tablet-row-of-6 .column {
    -webkit-flex-basis: 16.66667%;
        -ms-flex-preferred-size: 16.66667%;
            flex-basis: 16.66667%;
    max-width: 16.66667%;
  }
  .tablet-row-of-7 .column {
    -webkit-flex-basis: 14.28571%;
        -ms-flex-preferred-size: 14.28571%;
            flex-basis: 14.28571%;
    max-width: 14.28571%;
  }
  .tablet-row-of-8 .column {
    -webkit-flex-basis: 12.5%;
        -ms-flex-preferred-size: 12.5%;
            flex-basis: 12.5%;
    max-width: 12.5%;
  }
  .tablet-row-of-9 .column {
    -webkit-flex-basis: 11.11111%;
        -ms-flex-preferred-size: 11.11111%;
            flex-basis: 11.11111%;
    max-width: 11.11111%;
  }
  .tablet-row-of-10 .column {
    -webkit-flex-basis: 10%;
        -ms-flex-preferred-size: 10%;
            flex-basis: 10%;
    max-width: 10%;
  }
  .tablet-row-of-11 .column {
    -webkit-flex-basis: 9.09091%;
        -ms-flex-preferred-size: 9.09091%;
            flex-basis: 9.09091%;
    max-width: 9.09091%;
  }
  .tablet-row-of-12 .column {
    -webkit-flex-basis: 8.33333%;
        -ms-flex-preferred-size: 8.33333%;
            flex-basis: 8.33333%;
    max-width: 8.33333%;
  }
  .tablet-row-of-13 .column {
    -webkit-flex-basis: 7.69231%;
        -ms-flex-preferred-size: 7.69231%;
            flex-basis: 7.69231%;
    max-width: 7.69231%;
  }
  .tablet-row-of-14 .column {
    -webkit-flex-basis: 7.14286%;
        -ms-flex-preferred-size: 7.14286%;
            flex-basis: 7.14286%;
    max-width: 7.14286%;
  }
  .tablet-row-of-15 .column {
    -webkit-flex-basis: 6.66667%;
        -ms-flex-preferred-size: 6.66667%;
            flex-basis: 6.66667%;
    max-width: 6.66667%;
  }
  .tablet-row-of-16 .column {
    -webkit-flex-basis: 6.25%;
        -ms-flex-preferred-size: 6.25%;
            flex-basis: 6.25%;
    max-width: 6.25%;
  }
}

@media (min-width: 1199px) {
  .large-row-of-1 .column {
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    max-width: 100%;
  }
  .large-row-of-2 .column {
    -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
            flex-basis: 50%;
    max-width: 50%;
  }
  .large-row-of-3 .column {
    -webkit-flex-basis: 33.33333%;
        -ms-flex-preferred-size: 33.33333%;
            flex-basis: 33.33333%;
    max-width: 33.33333%;
  }
  .large-row-of-4 .column {
    -webkit-flex-basis: 25%;
        -ms-flex-preferred-size: 25%;
            flex-basis: 25%;
    max-width: 25%;
  }
  .large-row-of-5 .column {
    -webkit-flex-basis: 20%;
        -ms-flex-preferred-size: 20%;
            flex-basis: 20%;
    max-width: 20%;
  }
  .large-row-of-6 .column {
    -webkit-flex-basis: 16.66667%;
        -ms-flex-preferred-size: 16.66667%;
            flex-basis: 16.66667%;
    max-width: 16.66667%;
  }
  .large-row-of-7 .column {
    -webkit-flex-basis: 14.28571%;
        -ms-flex-preferred-size: 14.28571%;
            flex-basis: 14.28571%;
    max-width: 14.28571%;
  }
  .large-row-of-8 .column {
    -webkit-flex-basis: 12.5%;
        -ms-flex-preferred-size: 12.5%;
            flex-basis: 12.5%;
    max-width: 12.5%;
  }
  .large-row-of-9 .column {
    -webkit-flex-basis: 11.11111%;
        -ms-flex-preferred-size: 11.11111%;
            flex-basis: 11.11111%;
    max-width: 11.11111%;
  }
  .large-row-of-10 .column {
    -webkit-flex-basis: 10%;
        -ms-flex-preferred-size: 10%;
            flex-basis: 10%;
    max-width: 10%;
  }
  .large-row-of-11 .column {
    -webkit-flex-basis: 9.09091%;
        -ms-flex-preferred-size: 9.09091%;
            flex-basis: 9.09091%;
    max-width: 9.09091%;
  }
  .large-row-of-12 .column {
    -webkit-flex-basis: 8.33333%;
        -ms-flex-preferred-size: 8.33333%;
            flex-basis: 8.33333%;
    max-width: 8.33333%;
  }
  .large-row-of-13 .column {
    -webkit-flex-basis: 7.69231%;
        -ms-flex-preferred-size: 7.69231%;
            flex-basis: 7.69231%;
    max-width: 7.69231%;
  }
  .large-row-of-14 .column {
    -webkit-flex-basis: 7.14286%;
        -ms-flex-preferred-size: 7.14286%;
            flex-basis: 7.14286%;
    max-width: 7.14286%;
  }
  .large-row-of-15 .column {
    -webkit-flex-basis: 6.66667%;
        -ms-flex-preferred-size: 6.66667%;
            flex-basis: 6.66667%;
    max-width: 6.66667%;
  }
  .large-row-of-16 .column {
    -webkit-flex-basis: 6.25%;
        -ms-flex-preferred-size: 6.25%;
            flex-basis: 6.25%;
    max-width: 6.25%;
  }
}

@media (min-width: 1599px) {
  .xlarge-row-of-1 .column {
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    max-width: 100%;
  }
  .xlarge-row-of-2 .column {
    -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
            flex-basis: 50%;
    max-width: 50%;
  }
  .xlarge-row-of-3 .column {
    -webkit-flex-basis: 33.33333%;
        -ms-flex-preferred-size: 33.33333%;
            flex-basis: 33.33333%;
    max-width: 33.33333%;
  }
  .xlarge-row-of-4 .column {
    -webkit-flex-basis: 25%;
        -ms-flex-preferred-size: 25%;
            flex-basis: 25%;
    max-width: 25%;
  }
  .xlarge-row-of-5 .column {
    -webkit-flex-basis: 20%;
        -ms-flex-preferred-size: 20%;
            flex-basis: 20%;
    max-width: 20%;
  }
  .xlarge-row-of-6 .column {
    -webkit-flex-basis: 16.66667%;
        -ms-flex-preferred-size: 16.66667%;
            flex-basis: 16.66667%;
    max-width: 16.66667%;
  }
  .xlarge-row-of-7 .column {
    -webkit-flex-basis: 14.28571%;
        -ms-flex-preferred-size: 14.28571%;
            flex-basis: 14.28571%;
    max-width: 14.28571%;
  }
  .xlarge-row-of-8 .column {
    -webkit-flex-basis: 12.5%;
        -ms-flex-preferred-size: 12.5%;
            flex-basis: 12.5%;
    max-width: 12.5%;
  }
  .xlarge-row-of-9 .column {
    -webkit-flex-basis: 11.11111%;
        -ms-flex-preferred-size: 11.11111%;
            flex-basis: 11.11111%;
    max-width: 11.11111%;
  }
  .xlarge-row-of-10 .column {
    -webkit-flex-basis: 10%;
        -ms-flex-preferred-size: 10%;
            flex-basis: 10%;
    max-width: 10%;
  }
  .xlarge-row-of-11 .column {
    -webkit-flex-basis: 9.09091%;
        -ms-flex-preferred-size: 9.09091%;
            flex-basis: 9.09091%;
    max-width: 9.09091%;
  }
  .xlarge-row-of-12 .column {
    -webkit-flex-basis: 8.33333%;
        -ms-flex-preferred-size: 8.33333%;
            flex-basis: 8.33333%;
    max-width: 8.33333%;
  }
  .xlarge-row-of-13 .column {
    -webkit-flex-basis: 7.69231%;
        -ms-flex-preferred-size: 7.69231%;
            flex-basis: 7.69231%;
    max-width: 7.69231%;
  }
  .xlarge-row-of-14 .column {
    -webkit-flex-basis: 7.14286%;
        -ms-flex-preferred-size: 7.14286%;
            flex-basis: 7.14286%;
    max-width: 7.14286%;
  }
  .xlarge-row-of-15 .column {
    -webkit-flex-basis: 6.66667%;
        -ms-flex-preferred-size: 6.66667%;
            flex-basis: 6.66667%;
    max-width: 6.66667%;
  }
  .xlarge-row-of-16 .column {
    -webkit-flex-basis: 6.25%;
        -ms-flex-preferred-size: 6.25%;
            flex-basis: 6.25%;
    max-width: 6.25%;
  }
}

/* ==== OPTION TWO ==== */
/* Variable width blocks based on the class given to the columns */
/* Column widths */
.columns.start-16 {
  -webkit-flex-basis: 100%;
      -ms-flex-preferred-size: 100%;
          flex-basis: 100%;
  max-width: 100%;
}

.columns.start-15 {
  -webkit-flex-basis: 93.75%;
      -ms-flex-preferred-size: 93.75%;
          flex-basis: 93.75%;
  max-width: 93.75%;
}

.columns.start-14 {
  -webkit-flex-basis: 87.5%;
      -ms-flex-preferred-size: 87.5%;
          flex-basis: 87.5%;
  max-width: 87.5%;
}

.columns.start-13 {
  -webkit-flex-basis: 81.25%;
      -ms-flex-preferred-size: 81.25%;
          flex-basis: 81.25%;
  max-width: 81.25%;
}

.columns.start-12 {
  -webkit-flex-basis: 75%;
      -ms-flex-preferred-size: 75%;
          flex-basis: 75%;
  max-width: 75%;
}

.columns.start-11 {
  -webkit-flex-basis: 68.75%;
      -ms-flex-preferred-size: 68.75%;
          flex-basis: 68.75%;
  max-width: 68.75%;
}

.columns.start-10 {
  -webkit-flex-basis: 62.5%;
      -ms-flex-preferred-size: 62.5%;
          flex-basis: 62.5%;
  max-width: 62.5%;
}

.columns.start-9 {
  -webkit-flex-basis: 56.25%;
      -ms-flex-preferred-size: 56.25%;
          flex-basis: 56.25%;
  max-width: 56.25%;
}

.columns.start-8 {
  -webkit-flex-basis: 50%;
      -ms-flex-preferred-size: 50%;
          flex-basis: 50%;
  max-width: 50%;
}

.columns.start-7 {
  -webkit-flex-basis: 43.75%;
      -ms-flex-preferred-size: 43.75%;
          flex-basis: 43.75%;
  max-width: 43.75%;
}

.columns.start-6 {
  -webkit-flex-basis: 37.5%;
      -ms-flex-preferred-size: 37.5%;
          flex-basis: 37.5%;
  max-width: 37.5%;
}

.columns.start-5 {
  -webkit-flex-basis: 31.25%;
      -ms-flex-preferred-size: 31.25%;
          flex-basis: 31.25%;
  max-width: 31.25%;
}

.columns.start-4 {
  -webkit-flex-basis: 25%;
      -ms-flex-preferred-size: 25%;
          flex-basis: 25%;
  max-width: 25%;
}

.columns.start-3 {
  -webkit-flex-basis: 18.75%;
      -ms-flex-preferred-size: 18.75%;
          flex-basis: 18.75%;
  max-width: 18.75%;
}

.columns.start-2 {
  -webkit-flex-basis: 12.5%;
      -ms-flex-preferred-size: 12.5%;
          flex-basis: 12.5%;
  max-width: 12.5%;
}

.columns.start-1 {
  -webkit-flex-basis: 6.25%;
      -ms-flex-preferred-size: 6.25%;
          flex-basis: 6.25%;
  max-width: 6.25%;
}

@media (min-width: 479px) {
  .columns.small-16 {
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    max-width: 100%;
  }
  .columns.small-15 {
    -webkit-flex-basis: 93.75%;
        -ms-flex-preferred-size: 93.75%;
            flex-basis: 93.75%;
    max-width: 93.75%;
  }
  .columns.small-14 {
    -webkit-flex-basis: 87.5%;
        -ms-flex-preferred-size: 87.5%;
            flex-basis: 87.5%;
    max-width: 87.5%;
  }
  .columns.small-13 {
    -webkit-flex-basis: 81.25%;
        -ms-flex-preferred-size: 81.25%;
            flex-basis: 81.25%;
    max-width: 81.25%;
  }
  .columns.small-12 {
    -webkit-flex-basis: 75%;
        -ms-flex-preferred-size: 75%;
            flex-basis: 75%;
    max-width: 75%;
  }
  .columns.small-11 {
    -webkit-flex-basis: 68.75%;
        -ms-flex-preferred-size: 68.75%;
            flex-basis: 68.75%;
    max-width: 68.75%;
  }
  .columns.small-10 {
    -webkit-flex-basis: 62.5%;
        -ms-flex-preferred-size: 62.5%;
            flex-basis: 62.5%;
    max-width: 62.5%;
  }
  .columns.small-9 {
    -webkit-flex-basis: 56.25%;
        -ms-flex-preferred-size: 56.25%;
            flex-basis: 56.25%;
    max-width: 56.25%;
  }
  .columns.small-8 {
    -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
            flex-basis: 50%;
    max-width: 50%;
  }
  .columns.small-7 {
    -webkit-flex-basis: 43.75%;
        -ms-flex-preferred-size: 43.75%;
            flex-basis: 43.75%;
    max-width: 43.75%;
  }
  .columns.small-6 {
    -webkit-flex-basis: 37.5%;
        -ms-flex-preferred-size: 37.5%;
            flex-basis: 37.5%;
    max-width: 37.5%;
  }
  .columns.small-5 {
    -webkit-flex-basis: 31.25%;
        -ms-flex-preferred-size: 31.25%;
            flex-basis: 31.25%;
    max-width: 31.25%;
  }
  .columns.small-4 {
    -webkit-flex-basis: 25%;
        -ms-flex-preferred-size: 25%;
            flex-basis: 25%;
    max-width: 25%;
  }
  .columns.small-3 {
    -webkit-flex-basis: 18.75%;
        -ms-flex-preferred-size: 18.75%;
            flex-basis: 18.75%;
    max-width: 18.75%;
  }
  .columns.small-2 {
    -webkit-flex-basis: 12.5%;
        -ms-flex-preferred-size: 12.5%;
            flex-basis: 12.5%;
    max-width: 12.5%;
  }
  .columns.small-1 {
    -webkit-flex-basis: 6.25%;
        -ms-flex-preferred-size: 6.25%;
            flex-basis: 6.25%;
    max-width: 6.25%;
  }
}

@media (min-width: 599px) {
  .columns.medium-16 {
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    max-width: 100%;
  }
  .columns.medium-15 {
    -webkit-flex-basis: 93.75%;
        -ms-flex-preferred-size: 93.75%;
            flex-basis: 93.75%;
    max-width: 93.75%;
  }
  .columns.medium-14 {
    -webkit-flex-basis: 87.5%;
        -ms-flex-preferred-size: 87.5%;
            flex-basis: 87.5%;
    max-width: 87.5%;
  }
  .columns.medium-13 {
    -webkit-flex-basis: 81.25%;
        -ms-flex-preferred-size: 81.25%;
            flex-basis: 81.25%;
    max-width: 81.25%;
  }
  .columns.medium-12 {
    -webkit-flex-basis: 75%;
        -ms-flex-preferred-size: 75%;
            flex-basis: 75%;
    max-width: 75%;
  }
  .columns.medium-11 {
    -webkit-flex-basis: 68.75%;
        -ms-flex-preferred-size: 68.75%;
            flex-basis: 68.75%;
    max-width: 68.75%;
  }
  .columns.medium-10 {
    -webkit-flex-basis: 62.5%;
        -ms-flex-preferred-size: 62.5%;
            flex-basis: 62.5%;
    max-width: 62.5%;
  }
  .columns.medium-9 {
    -webkit-flex-basis: 56.25%;
        -ms-flex-preferred-size: 56.25%;
            flex-basis: 56.25%;
    max-width: 56.25%;
  }
  .columns.medium-8 {
    -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
            flex-basis: 50%;
    max-width: 50%;
  }
  .columns.medium-7 {
    -webkit-flex-basis: 43.75%;
        -ms-flex-preferred-size: 43.75%;
            flex-basis: 43.75%;
    max-width: 43.75%;
  }
  .columns.medium-6 {
    -webkit-flex-basis: 37.5%;
        -ms-flex-preferred-size: 37.5%;
            flex-basis: 37.5%;
    max-width: 37.5%;
  }
  .columns.medium-5 {
    -webkit-flex-basis: 31.25%;
        -ms-flex-preferred-size: 31.25%;
            flex-basis: 31.25%;
    max-width: 31.25%;
  }
  .columns.medium-4 {
    -webkit-flex-basis: 25%;
        -ms-flex-preferred-size: 25%;
            flex-basis: 25%;
    max-width: 25%;
  }
  .columns.medium-3 {
    -webkit-flex-basis: 18.75%;
        -ms-flex-preferred-size: 18.75%;
            flex-basis: 18.75%;
    max-width: 18.75%;
  }
  .columns.medium-2 {
    -webkit-flex-basis: 12.5%;
        -ms-flex-preferred-size: 12.5%;
            flex-basis: 12.5%;
    max-width: 12.5%;
  }
  .columns.medium-1 {
    -webkit-flex-basis: 6.25%;
        -ms-flex-preferred-size: 6.25%;
            flex-basis: 6.25%;
    max-width: 6.25%;
  }
}

@media (min-width: 767px) {
  .columns.tablet-portrait-16 {
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    max-width: 100%;
  }
  .columns.tablet-portrait-15 {
    -webkit-flex-basis: 93.75%;
        -ms-flex-preferred-size: 93.75%;
            flex-basis: 93.75%;
    max-width: 93.75%;
  }
  .columns.tablet-portrait-14 {
    -webkit-flex-basis: 87.5%;
        -ms-flex-preferred-size: 87.5%;
            flex-basis: 87.5%;
    max-width: 87.5%;
  }
  .columns.tablet-portrait-13 {
    -webkit-flex-basis: 81.25%;
        -ms-flex-preferred-size: 81.25%;
            flex-basis: 81.25%;
    max-width: 81.25%;
  }
  .columns.tablet-portrait-12 {
    -webkit-flex-basis: 75%;
        -ms-flex-preferred-size: 75%;
            flex-basis: 75%;
    max-width: 75%;
  }
  .columns.tablet-portrait-11 {
    -webkit-flex-basis: 68.75%;
        -ms-flex-preferred-size: 68.75%;
            flex-basis: 68.75%;
    max-width: 68.75%;
  }
  .columns.tablet-portrait-10 {
    -webkit-flex-basis: 62.5%;
        -ms-flex-preferred-size: 62.5%;
            flex-basis: 62.5%;
    max-width: 62.5%;
  }
  .columns.tablet-portrait-9 {
    -webkit-flex-basis: 56.25%;
        -ms-flex-preferred-size: 56.25%;
            flex-basis: 56.25%;
    max-width: 56.25%;
  }
  .columns.tablet-portrait-8 {
    -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
            flex-basis: 50%;
    max-width: 50%;
  }
  .columns.tablet-portrait-7 {
    -webkit-flex-basis: 43.75%;
        -ms-flex-preferred-size: 43.75%;
            flex-basis: 43.75%;
    max-width: 43.75%;
  }
  .columns.tablet-portrait-6 {
    -webkit-flex-basis: 37.5%;
        -ms-flex-preferred-size: 37.5%;
            flex-basis: 37.5%;
    max-width: 37.5%;
  }
  .columns.tablet-portrait-5 {
    -webkit-flex-basis: 31.25%;
        -ms-flex-preferred-size: 31.25%;
            flex-basis: 31.25%;
    max-width: 31.25%;
  }
  .columns.tablet-portrait-4 {
    -webkit-flex-basis: 25%;
        -ms-flex-preferred-size: 25%;
            flex-basis: 25%;
    max-width: 25%;
  }
  .columns.tablet-portrait-3 {
    -webkit-flex-basis: 18.75%;
        -ms-flex-preferred-size: 18.75%;
            flex-basis: 18.75%;
    max-width: 18.75%;
  }
  .columns.tablet-portrait-2 {
    -webkit-flex-basis: 12.5%;
        -ms-flex-preferred-size: 12.5%;
            flex-basis: 12.5%;
    max-width: 12.5%;
  }
  .columns.tablet-portrait-1 {
    -webkit-flex-basis: 6.25%;
        -ms-flex-preferred-size: 6.25%;
            flex-basis: 6.25%;
    max-width: 6.25%;
  }
}

@media (min-width: 959px) {
  .columns.tablet-16 {
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    max-width: 100%;
  }
  .columns.tablet-15 {
    -webkit-flex-basis: 93.75%;
        -ms-flex-preferred-size: 93.75%;
            flex-basis: 93.75%;
    max-width: 93.75%;
  }
  .columns.tablet-14 {
    -webkit-flex-basis: 87.5%;
        -ms-flex-preferred-size: 87.5%;
            flex-basis: 87.5%;
    max-width: 87.5%;
  }
  .columns.tablet-13 {
    -webkit-flex-basis: 81.25%;
        -ms-flex-preferred-size: 81.25%;
            flex-basis: 81.25%;
    max-width: 81.25%;
  }
  .columns.tablet-12 {
    -webkit-flex-basis: 75%;
        -ms-flex-preferred-size: 75%;
            flex-basis: 75%;
    max-width: 75%;
  }
  .columns.tablet-11 {
    -webkit-flex-basis: 68.75%;
        -ms-flex-preferred-size: 68.75%;
            flex-basis: 68.75%;
    max-width: 68.75%;
  }
  .columns.tablet-10 {
    -webkit-flex-basis: 62.5%;
        -ms-flex-preferred-size: 62.5%;
            flex-basis: 62.5%;
    max-width: 62.5%;
  }
  .columns.tablet-9 {
    -webkit-flex-basis: 56.25%;
        -ms-flex-preferred-size: 56.25%;
            flex-basis: 56.25%;
    max-width: 56.25%;
  }
  .columns.tablet-8 {
    -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
            flex-basis: 50%;
    max-width: 50%;
  }
  .columns.tablet-7 {
    -webkit-flex-basis: 43.75%;
        -ms-flex-preferred-size: 43.75%;
            flex-basis: 43.75%;
    max-width: 43.75%;
  }
  .columns.tablet-6 {
    -webkit-flex-basis: 37.5%;
        -ms-flex-preferred-size: 37.5%;
            flex-basis: 37.5%;
    max-width: 37.5%;
  }
  .columns.tablet-5 {
    -webkit-flex-basis: 31.25%;
        -ms-flex-preferred-size: 31.25%;
            flex-basis: 31.25%;
    max-width: 31.25%;
  }
  .columns.tablet-4 {
    -webkit-flex-basis: 25%;
        -ms-flex-preferred-size: 25%;
            flex-basis: 25%;
    max-width: 25%;
  }
  .columns.tablet-3 {
    -webkit-flex-basis: 18.75%;
        -ms-flex-preferred-size: 18.75%;
            flex-basis: 18.75%;
    max-width: 18.75%;
  }
  .columns.tablet-2 {
    -webkit-flex-basis: 12.5%;
        -ms-flex-preferred-size: 12.5%;
            flex-basis: 12.5%;
    max-width: 12.5%;
  }
  .columns.tablet-1 {
    -webkit-flex-basis: 6.25%;
        -ms-flex-preferred-size: 6.25%;
            flex-basis: 6.25%;
    max-width: 6.25%;
  }
}

@media (min-width: 1199px) {
  .columns.large-16 {
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    max-width: 100%;
  }
  .columns.large-15 {
    -webkit-flex-basis: 93.75%;
        -ms-flex-preferred-size: 93.75%;
            flex-basis: 93.75%;
    max-width: 93.75%;
  }
  .columns.large-14 {
    -webkit-flex-basis: 87.5%;
        -ms-flex-preferred-size: 87.5%;
            flex-basis: 87.5%;
    max-width: 87.5%;
  }
  .columns.large-13 {
    -webkit-flex-basis: 81.25%;
        -ms-flex-preferred-size: 81.25%;
            flex-basis: 81.25%;
    max-width: 81.25%;
  }
  .columns.large-12 {
    -webkit-flex-basis: 75%;
        -ms-flex-preferred-size: 75%;
            flex-basis: 75%;
    max-width: 75%;
  }
  .columns.large-11 {
    -webkit-flex-basis: 68.75%;
        -ms-flex-preferred-size: 68.75%;
            flex-basis: 68.75%;
    max-width: 68.75%;
  }
  .columns.large-10 {
    -webkit-flex-basis: 62.5%;
        -ms-flex-preferred-size: 62.5%;
            flex-basis: 62.5%;
    max-width: 62.5%;
  }
  .columns.large-9 {
    -webkit-flex-basis: 56.25%;
        -ms-flex-preferred-size: 56.25%;
            flex-basis: 56.25%;
    max-width: 56.25%;
  }
  .columns.large-8 {
    -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
            flex-basis: 50%;
    max-width: 50%;
  }
  .columns.large-7 {
    -webkit-flex-basis: 43.75%;
        -ms-flex-preferred-size: 43.75%;
            flex-basis: 43.75%;
    max-width: 43.75%;
  }
  .columns.large-6 {
    -webkit-flex-basis: 37.5%;
        -ms-flex-preferred-size: 37.5%;
            flex-basis: 37.5%;
    max-width: 37.5%;
  }
  .columns.large-5 {
    -webkit-flex-basis: 31.25%;
        -ms-flex-preferred-size: 31.25%;
            flex-basis: 31.25%;
    max-width: 31.25%;
  }
  .columns.large-4 {
    -webkit-flex-basis: 25%;
        -ms-flex-preferred-size: 25%;
            flex-basis: 25%;
    max-width: 25%;
  }
  .columns.large-3 {
    -webkit-flex-basis: 18.75%;
        -ms-flex-preferred-size: 18.75%;
            flex-basis: 18.75%;
    max-width: 18.75%;
  }
  .columns.large-2 {
    -webkit-flex-basis: 12.5%;
        -ms-flex-preferred-size: 12.5%;
            flex-basis: 12.5%;
    max-width: 12.5%;
  }
  .columns.large-1 {
    -webkit-flex-basis: 6.25%;
        -ms-flex-preferred-size: 6.25%;
            flex-basis: 6.25%;
    max-width: 6.25%;
  }
}

@media (min-width: 1599px) {
  .columns.xlarge-16 {
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    max-width: 100%;
  }
  .columns.xlarge-15 {
    -webkit-flex-basis: 93.75%;
        -ms-flex-preferred-size: 93.75%;
            flex-basis: 93.75%;
    max-width: 93.75%;
  }
  .columns.xlarge-14 {
    -webkit-flex-basis: 87.5%;
        -ms-flex-preferred-size: 87.5%;
            flex-basis: 87.5%;
    max-width: 87.5%;
  }
  .columns.xlarge-13 {
    -webkit-flex-basis: 81.25%;
        -ms-flex-preferred-size: 81.25%;
            flex-basis: 81.25%;
    max-width: 81.25%;
  }
  .columns.xlarge-12 {
    -webkit-flex-basis: 75%;
        -ms-flex-preferred-size: 75%;
            flex-basis: 75%;
    max-width: 75%;
  }
  .columns.xlarge-11 {
    -webkit-flex-basis: 68.75%;
        -ms-flex-preferred-size: 68.75%;
            flex-basis: 68.75%;
    max-width: 68.75%;
  }
  .columns.xlarge-10 {
    -webkit-flex-basis: 62.5%;
        -ms-flex-preferred-size: 62.5%;
            flex-basis: 62.5%;
    max-width: 62.5%;
  }
  .columns.xlarge-9 {
    -webkit-flex-basis: 56.25%;
        -ms-flex-preferred-size: 56.25%;
            flex-basis: 56.25%;
    max-width: 56.25%;
  }
  .columns.xlarge-8 {
    -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
            flex-basis: 50%;
    max-width: 50%;
  }
  .columns.xlarge-7 {
    -webkit-flex-basis: 43.75%;
        -ms-flex-preferred-size: 43.75%;
            flex-basis: 43.75%;
    max-width: 43.75%;
  }
  .columns.xlarge-6 {
    -webkit-flex-basis: 37.5%;
        -ms-flex-preferred-size: 37.5%;
            flex-basis: 37.5%;
    max-width: 37.5%;
  }
  .columns.xlarge-5 {
    -webkit-flex-basis: 31.25%;
        -ms-flex-preferred-size: 31.25%;
            flex-basis: 31.25%;
    max-width: 31.25%;
  }
  .columns.xlarge-4 {
    -webkit-flex-basis: 25%;
        -ms-flex-preferred-size: 25%;
            flex-basis: 25%;
    max-width: 25%;
  }
  .columns.xlarge-3 {
    -webkit-flex-basis: 18.75%;
        -ms-flex-preferred-size: 18.75%;
            flex-basis: 18.75%;
    max-width: 18.75%;
  }
  .columns.xlarge-2 {
    -webkit-flex-basis: 12.5%;
        -ms-flex-preferred-size: 12.5%;
            flex-basis: 12.5%;
    max-width: 12.5%;
  }
  .columns.xlarge-1 {
    -webkit-flex-basis: 6.25%;
        -ms-flex-preferred-size: 6.25%;
            flex-basis: 6.25%;
    max-width: 6.25%;
  }
}

/* ==== OPTION THREE ==== */
/* Spread all blocks evenly as long as their content fits, no matter how many there is */
.row-fit {
  margin-bottom: 10;
}

.row-fit > .column {
  -webkit-flex: auto;
      -ms-flex: auto;
          flex: auto;
}

/*=================================================================================
	BASE v2.0
=================================================================================*/
/*==============================================
	RESET
==============================================*/
html, body, div, span, object, iframe, h1, h2, h3, #sidebar span.tagstitle, #sidebar ul li strong, #home main article a .inner h2, h4, blockquote, 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, main {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: inherit;
  vertical-align: baseline;
  background: transparent;
}

/*=================================================================================
	BASICS
=================================================================================*/
html, body {
  display: block !important;
  /* overrides the inline display:none on our body (thanks, Google PageInsights) */
  height: 100%;
  margin: 0;
  padding: 0;
  line-height: calc(0.45455vw + 18.54545px);
  font-size: calc(0.22727vw + 13.27273px);
  color: #444;
  font-family: "Lato", Arial, sans-serif;
  font-weight: 400;
}

@media (max-width: 320px) {
  html, body {
    line-height: 20px;
  }
}

@media (min-width: 1200px) {
  html, body {
    line-height: 24px;
  }
}

@media (max-width: 320px) {
  html, body {
    font-size: 14px;
  }
}

@media (min-width: 1200px) {
  html, body {
    font-size: 16px;
  }
}

*, *:before, *:after {
  box-sizing: border-box;
}

a, img, span {
  transition: all 0.3s ease-in-out;
}

html {
  -webkit-text-size-adjust: none;
}

body {
  line-height: 1;
  background: #ffffff;
}

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

nav ul, aside 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;
}

address {
  font-style: normal;
}

ins {
  text-decoration: none;
}

mark {
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 0.0625rem dotted #aaaaaa;
  cursor: help;
}

hr {
  display: block;
  height: 0.0625rem;
  border: 0;
  border-top: 0.0625rem solid #aaaaaa;
  margin: 20 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

ul, ol {
  font-size: 0;
}

main pre, article pre {
  width: 100%;
  white-space: pre-wrap;
  white-space: -moz-pre-wrap !important;
  white-space: -pre-wrap;
  white-space: -o-pre-wrap;
  word-wrap: break-word;
  margin-bottom: 1em;
}

main ul.columns-1, article ul.columns-2, article ul.columns-3, article ul.columns-4 {
  clear: both;
  width: 100%;
  font-size: 0;
}

main ul.columms-1 {
  float: left;
  display: inline;
  width: 100%;
}

main ul.columns-2 li {
  float: left;
  display: inline;
  width: 50%;
}

main ul.columns-3 li {
  float: left;
  display: inline;
  width: 33.333%;
}

main ul.columns-4 li {
  float: left;
  display: inline;
  width: 25%;
}

/*==============================================
	SELECTIONS
==============================================*/
::-moz-selection {
  background: #dddddd;
}
::selection {
  background: #dddddd;
}

::-moz-selection {
  background: #dddddd;
}

.lt-ie8 .clearfix, .lt-ie8 .row, .lt-ie8 .group {
  zoom: 0;
}

/*=============================================
	ACTIVE NUMBERS
=============================================*/
a[href^=tel] {
  color: inherit;
  text-decoration: none;
}

/*=============================================
	GOOP
=============================================*/
@font-face {
  font-family: 'GOOP';
  src: url("goop/GOOP.eot?9ommr");
  src: url("goop/GOOP.eot?#iefix9ommr") format("embedded-opentype"), url("goop/GOOP.woff?9ommr") format("woff"), url("goop/GOOP.ttf?9ommr") format("truetype"), url("goop/GOOP.svg?9ommr#GOOP") format("svg");
  font-weight: normal;
  font-style: normal;
}

.goop-logo {
  font-family: 'GOOP';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  margin-left: 0.3125rem;
}

.goop-logo:before {
  content: "\e600";
}

/*=============================================
	REPLACE [at] - requires GOOP plugin version 0.1.10 at least
=============================================*/
.domain:before {
  content: "\40";
  margin-right: 0;
}

/*=============================================
	SITEMAP
=============================================*/
ul.sitemap li.current_page_item {
  display: none;
}

/*=============================================
	SCROLL
=============================================*/
#scroll {
  padding: 0;
  font-size: 1.5625rem;
  position: fixed;
  bottom: 0.625rem;
  right: 0.625rem;
  cursor: pointer;
  display: none;
  color: #000;
  z-index: 10000;
  opacity: 0.5;
}

/*=============================================
	VIDEOS
=============================================*/
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  padding-top: 1.5625rem;
  height: 0;
  margin-bottom: 20;
}

.video-container iframe {
  /* .video-container iframe */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*=============================================
	IFRAMES
=============================================*/
main iframe, aside iframe {
  margin: 0 0 20;
  display: block;
  width: 100% !important;
}

/*=============================================
	UTILITY CLASSES
=============================================*/
.clearfix {
  clear: both;
}

.left, .columns.left, .column.left {
  float: left;
}

.right, .columns.right, .column.right {
  float: right;
}

/*=============================================
	RESPONSIVE TABLES
=============================================*/
.table-container {
  width: 100%;
  overflow-x: auto;
}

/*=============================================
	PRINT-FRIENDLY CLASSES
=============================================*/
@media screen {
  .print {
    display: none;
  }
}

@media only print {
  .desktop {
    display: none;
  }
  .print {
    display: block;
  }
}

/*=================================================================================
	GALLERIES
=================================================================================*/
main .gallery, article .gallery {
  margin-bottom: calc(2.27273vw + 2.72727px);
}

@media (max-width: 320px) {
  main .gallery, article .gallery {
    margin-bottom: 10px;
  }
}

@media (min-width: 1200px) {
  main .gallery, article .gallery {
    margin-bottom: 30px;
  }
}

main .gallery a, main .gallery a:hover, main .gallery a:focus, article .gallery a, article .gallery a:hover, article .gallery a:focus {
  padding: 0;
  margin: 0;
  background: none;
}

main .gallery .gallery-item, article .gallery .gallery-item {
  padding: 0;
  margin: 0 1% 0.5% 0 !important;
  float: none !important;
  display: inline-block !important;
  position: relative !important;
}

main .gallery .gallery-item img, article .gallery .gallery-item img {
  display: block;
  border: none !important;
  width: 100%;
  height: auto;
}

main .gallery .gallery-item .gallery-caption, article .gallery .gallery-item .gallery-caption {
  position: absolute !important;
  bottom: 0;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  padding: 0.3125rem;
  font-size: calc(0.22727vw + 11.27273px);
  color: #ffffff;
  width: 100%;
  font-style: normal;
  opacity: 0;
  transition: 0.3s ease-in-out;
  pointer-events: none;
}

@media (max-width: 320px) {
  main .gallery .gallery-item .gallery-caption, article .gallery .gallery-item .gallery-caption {
    font-size: 12px;
  }
}

@media (min-width: 1200px) {
  main .gallery .gallery-item .gallery-caption, article .gallery .gallery-item .gallery-caption {
    font-size: 14px;
  }
}

main .gallery .gallery-item:hover .gallery-caption, article .gallery .gallery-item:hover .gallery-caption {
  opacity: 1;
  z-index: 1000;
}

main .gallery br, article .gallery br {
  display: none !important;
}

main .gallery.gallery-columns-1 .gallery-item, main .gallery.gallery-columns-2 .gallery-item, main .gallery.gallery-columns-3 .gallery-item, article .gallery.gallery-columns-1 .gallery-item, article .gallery.gallery-columns-2 .gallery-item, article .gallery.gallery-columns-3 .gallery-item {
  width: 32.66% !important;
}

main .gallery.gallery-columns-1 .gallery-item:nth-of-type(3n+3), main .gallery.gallery-columns-2 .gallery-item:nth-of-type(3n+3), main .gallery.gallery-columns-3 .gallery-item:nth-of-type(3n+3), article .gallery.gallery-columns-1 .gallery-item:nth-of-type(3n+3), article .gallery.gallery-columns-2 .gallery-item:nth-of-type(3n+3), article .gallery.gallery-columns-3 .gallery-item:nth-of-type(3n+3) {
  margin-right: 0 !important;
}

main .gallery.gallery-columns-4 .gallery-item, article .gallery.gallery-columns-4 .gallery-item {
  width: 24.25% !important;
}

main .gallery.gallery-columns-4 .gallery-item:nth-of-type(4n+4), article .gallery.gallery-columns-4 .gallery-item:nth-of-type(4n+4) {
  margin-right: 0 !important;
}

main .gallery.gallery-columns-5 .gallery-item, article .gallery.gallery-columns-5 .gallery-item {
  width: 19.2% !important;
}

main .gallery.gallery-columns-5 .gallery-item:nth-of-type(5n+5), article .gallery.gallery-columns-5 .gallery-item:nth-of-type(5n+5) {
  margin-right: 0 !important;
}

main .gallery.gallery-columns-6 .gallery-item, article .gallery.gallery-columns-6 .gallery-item {
  width: 15.83% !important;
}

main .gallery.gallery-columns-6 .gallery-item:nth-of-type(6n+6), article .gallery.gallery-columns-6 .gallery-item:nth-of-type(6n+6) {
  margin-right: 0 !important;
}

main .gallery.gallery-columns-7 .gallery-item, article .gallery.gallery-columns-7 .gallery-item {
  width: 13.42% !important;
}

main .gallery.gallery-columns-7 .gallery-item:nth-of-type(7n+7), article .gallery.gallery-columns-7 .gallery-item:nth-of-type(7n+7) {
  margin-right: 0 !important;
}

main .gallery.gallery-columns-8 .gallery-item, article .gallery.gallery-columns-8 .gallery-item {
  width: 11.62% !important;
}

main .gallery.gallery-columns-8 .gallery-item:nth-of-type(8n+8), article .gallery.gallery-columns-8 .gallery-item:nth-of-type(8n+8) {
  margin-right: 0 !important;
}

main .gallery.gallery-columns-9 .gallery-item, article .gallery.gallery-columns-9 .gallery-item {
  width: 10.22% !important;
}

main .gallery.gallery-columns-9 .gallery-item:nth-of-type(9n+9), article .gallery.gallery-columns-9 .gallery-item:nth-of-type(9n+9) {
  margin-right: 0 !important;
}

/*! Swipebox v1.3.0 | Constantin Saguin csag.co | MIT License | github.com/brutaldesign/swipebox */
html.swipebox-html.swipebox-touch {
  overflow: hidden !important;
}

#swipebox-overlay img {
  border: none !important;
}

#swipebox-overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999 !important;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

#swipebox-container {
  position: relative;
  width: 100%;
  height: 100%;
}

#swipebox-slider {
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
  white-space: nowrap;
  position: absolute;
  display: none;
  cursor: pointer;
}

#swipebox-slider .slide {
  height: 100%;
  width: 100%;
  line-height: 0.0625rem;
  text-align: center;
  display: inline-block;
  position: relative;
  top: -0.3125rem !important;
}

#swipebox-slider .slide:before {
  content: "";
  display: inline-block;
  height: 50%;
  width: 0.0625rem;
  margin-right: -0.0625rem;
}

#swipebox-slider .slide img, #swipebox-slider .slide .swipebox-video-container, #swipebox-slider .slide .swipebox-inline-container {
  display: inline-block;
  max-height: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  width: auto;
  height: auto;
  vertical-align: middle;
}

#swipebox-slider .slide .swipebox-video-container {
  background: none;
  max-width: 71.25rem;
  max-height: 100%;
  width: 100%;
  padding: 5%;
  box-sizing: border-box;
}

#swipebox-slider .slide .swipebox-video-container .swipebox-video {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
  position: relative;
}

#swipebox-slider .slide .swipebox-video-container .swipebox-video iframe {
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  top: 0;
  left: 0;
}

#swipebox-slider .slide-loading {
  background: url(lightbox/images/loader.gif) no-repeat center center;
}

#swipebox-bottom-bar, #swipebox-top-bar {
  position: absolute;
  left: 0;
  z-index: 999;
  height: 3.125rem;
  width: 100%;
}

#swipebox-bottom-bar {
  bottom: 50% !important;
  background: transparent;
}

#swipebox-top-bar {
  bottom: 0 !important;
  height: auto;
}

#swipebox-top-bar #swipebox-title {
  display: block !important;
  width: 100%;
  text-align: center;
  padding-top: 0.9375rem;
  margin: 0 auto;
  max-width: 80%;
  padding-bottom: 1.25rem;
}

#swipebox-prev, #swipebox-next, #swipebox-close {
  background-image: url(lightbox/images/icons.png);
  background-repeat: no-repeat;
  border: none !important;
  text-decoration: none !important;
  cursor: pointer;
  width: 3.125rem;
  height: 3.125rem;
  top: 0;
}

#swipebox-arrows {
  display: block;
  margin: 0 auto !important;
  width: 100%;
  height: 3.125rem;
}

#swipebox-prev {
  background-position: -32px 13px;
  float: left;
}

#swipebox-next {
  background-position: -78px 13px;
  float: right;
}

#swipebox-close {
  top: 0;
  right: 0;
  position: absolute;
  z-index: 9999;
  background-position: 15px 12px;
}

.swipebox-no-close-button #swipebox-close {
  display: none;
}

#swipebox-prev.disabled, #swipebox-next.disabled {
  opacity: 0.3;
}

.swipebox-no-touch #swipebox-overlay.rightSpring #swipebox-slider {
  -webkit-animation: rightSpring 0.3s;
          animation: rightSpring 0.3s;
}

.swipebox-no-touch #swipebox-overlay.leftSpring #swipebox-slider {
  -webkit-animation: leftSpring 0.3s;
          animation: leftSpring 0.3s;
}

.swipebox-touch #swipebox-container:before, .swipebox-touch #swipebox-container:after {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  transition: all .3s ease;
  content: ' ';
  position: absolute;
  z-index: 999;
  top: 0;
  height: 100%;
  width: 1.25rem;
  opacity: 0;
}

.swipebox-touch #swipebox-container:before {
  left: 0;
  box-shadow: inset 10px 0px 10px -8px #656565;
}

.swipebox-touch #swipebox-container:after {
  right: 0;
  box-shadow: inset -10px 0px 10px -8px #656565;
}

.swipebox-touch #swipebox-overlay.leftSpringTouch #swipebox-container:before {
  opacity: 1;
}

.swipebox-touch #swipebox-overlay.rightSpringTouch #swipebox-container:after {
  opacity: 1;
}

@-webkit-keyframes rightSpring {
  0% {
    left: 0;
  }
  50% {
    left: -1.875rem;
  }
  100% {
    left: 0;
  }
}

@keyframes rightSpring {
  0% {
    left: 0;
  }
  50% {
    left: -1.875rem;
  }
  100% {
    left: 0;
  }
}

@-webkit-keyframes leftSpring {
  0% {
    left: 0;
  }
  50% {
    left: 1.875rem;
  }
  100% {
    left: 0;
  }
}

@keyframes leftSpring {
  0% {
    left: 0;
  }
  50% {
    left: 1.875rem;
  }
  100% {
    left: 0;
  }
}

@media screen and (min-width: 800px) {
  #swipebox-close {
    right: 0.625rem;
  }
  #swipebox-arrows {
    width: 100%;
    padding: 0 1.25rem;
  }
}

#swipebox-overlay {
  background: rgba(0, 0, 0, 0.9);
}

#swipebox-bottom-bar, #swipebox-top-bar {
  text-shadow: 0.0625rem 0.0625rem 0.0625rem black;
}

#swipebox-top-bar {
  color: #ffffff !important;
  font-size: 0.8125rem;
  line-height: 1.15;
  font-family: "Lato", Arial, sans-serif;
  background: rgba(0, 0, 0, 0.9);
}

/* Standard sitewide components */
/*============================================================
	TYPOGRAPHY
============================================================*/
/* See core/mixins for typography mixins:
	body-font-size
	body-line-height
	small-font-size 
	*/
/*=============================
	GENERAL
=============================*/
/* Kill FOUT - hide all the things until fonts have loaded */
.wf-loading h1, .wf-loading h2, .wf-loading h3, .wf-loading #sidebar span.tagstitle, #sidebar .wf-loading span.tagstitle, .wf-loading #sidebar ul li strong, #sidebar ul li .wf-loading strong, .wf-loading #home main article a .inner h2, #home main article a .inner .wf-loading h2, .wf-loading h4, .wf-loading blockquote, .wf-loading h5, .wf-loading h6, .wf-loading p, .wf-loading li, .wf-loading th, .wf-loading td {
  visibility: hidden;
}

/* Set the body font */
body, input, select, textarea, label, button, li {
  font-family: "Lato", Arial, sans-serif;
  font-size: calc(0.22727vw + 13.27273px);
}

@media (max-width: 320px) {
  body, input, select, textarea, label, button, li {
    font-size: 14px;
  }
}

@media (min-width: 1200px) {
  body, input, select, textarea, label, button, li {
    font-size: 16px;
  }
}

/* Things that need FontAwesome */
ul li.menu-item-has-children:before, article blockquote:before {
  font-family: 'FontAwesome';
}

/*=============================
	HEADINGS
=============================*/
/* 
Type resources:
- type-scale.com for choosing proportional font sizes
- pearsonified.com/typography for calculating line-heights 
*/
h1, h2, h3, #sidebar span.tagstitle, #sidebar ul li strong, #home main article a .inner h2, h4, blockquote, h5, h6 {
  font-family: "Ovo", Arial, sans-serif;
  font-weight: 700;
  text-transform: none;
}

h1 {
  color: #000;
  font-size: calc(0.34091vw + 29.90909px);
  line-height: calc(0.79545vw + 39.45455px);
  margin-bottom: calc(1.13636vw + 6.36364px);
}

@media (max-width: 320px) {
  h1 {
    font-size: 31px;
  }
}

@media (min-width: 1200px) {
  h1 {
    font-size: 34px;
  }
}

@media (max-width: 320px) {
  h1 {
    line-height: 42px;
  }
}

@media (min-width: 1200px) {
  h1 {
    line-height: 49px;
  }
}

@media (max-width: 320px) {
  h1 {
    margin-bottom: 10px;
  }
}

@media (min-width: 1200px) {
  h1 {
    margin-bottom: 20px;
  }
}

h2 {
  color: #444;
  font-size: calc(0.34091vw + 23.90909px);
  line-height: calc(0.90909vw + 31.09091px);
  margin-bottom: calc(1.13636vw + 6.36364px);
}

@media (max-width: 320px) {
  h2 {
    font-size: 25px;
  }
}

@media (min-width: 1200px) {
  h2 {
    font-size: 28px;
  }
}

@media (max-width: 320px) {
  h2 {
    line-height: 34px;
  }
}

@media (min-width: 1200px) {
  h2 {
    line-height: 42px;
  }
}

@media (max-width: 320px) {
  h2 {
    margin-bottom: 10px;
  }
}

@media (min-width: 1200px) {
  h2 {
    margin-bottom: 20px;
  }
}

h3, #sidebar span.tagstitle, #sidebar ul li strong, #home main article a .inner h2 {
  color: #444;
  font-size: calc(0.22727vw + 19.27273px);
  line-height: calc(0.79545vw + 25.45455px);
  margin-bottom: calc(0.56818vw + 8.18182px);
}

@media (max-width: 320px) {
  h3, #sidebar span.tagstitle, #sidebar ul li strong, #home main article a .inner h2 {
    font-size: 20px;
  }
}

@media (min-width: 1200px) {
  h3, #sidebar span.tagstitle, #sidebar ul li strong, #home main article a .inner h2 {
    font-size: 22px;
  }
}

@media (max-width: 320px) {
  h3, #sidebar span.tagstitle, #sidebar ul li strong, #home main article a .inner h2 {
    line-height: 28px;
  }
}

@media (min-width: 1200px) {
  h3, #sidebar span.tagstitle, #sidebar ul li strong, #home main article a .inner h2 {
    line-height: 35px;
  }
}

@media (max-width: 320px) {
  h3, #sidebar span.tagstitle, #sidebar ul li strong, #home main article a .inner h2 {
    margin-bottom: 10px;
  }
}

@media (min-width: 1200px) {
  h3, #sidebar span.tagstitle, #sidebar ul li strong, #home main article a .inner h2 {
    margin-bottom: 15px;
  }
}

h4, blockquote, h5, h6 {
  color: #444;
  font-size: calc(0.22727vw + 17.27273px);
  line-height: calc(0.22727vw + 23.27273px);
  margin-bottom: calc(0.56818vw + 8.18182px);
}

@media (max-width: 320px) {
  h4, blockquote, h5, h6 {
    font-size: 18px;
  }
}

@media (min-width: 1200px) {
  h4, blockquote, h5, h6 {
    font-size: 20px;
  }
}

@media (max-width: 320px) {
  h4, blockquote, h5, h6 {
    line-height: 24px;
  }
}

@media (min-width: 1200px) {
  h4, blockquote, h5, h6 {
    line-height: 26px;
  }
}

@media (max-width: 320px) {
  h4, blockquote, h5, h6 {
    margin-bottom: 10px;
  }
}

@media (min-width: 1200px) {
  h4, blockquote, h5, h6 {
    margin-bottom: 15px;
  }
}

/*==============================================
	LINKS
==============================================*/
main a:not(.img):not(.btn), article a:not(.img):not(.btn), aside a:not(.img):not(.btn), section a:not(.img):not(.btn) {
  color: #2b2b2b;
  text-decoration: none;
  position: relative;
  visibility: visible;
  /*Fixes weird Android bug*/
  border-bottom: 0.0625rem dotted #777777;
  transition: all 0.3s ease-in-out;
}

main a:not(.img):not(.btn):hover, main a:not(.img):not(.btn):focus, article a:not(.img):not(.btn):hover, article a:not(.img):not(.btn):focus, aside a:not(.img):not(.btn):hover, aside a:not(.img):not(.btn):focus, section a:not(.img):not(.btn):hover, section a:not(.img):not(.btn):focus {
  color: #000;
  border-bottom: 0.0625rem solid #000;
}

main a[class^="btn"], main a[class*=" btn"], article a[class^="btn"], article a[class*=" btn"], aside a[class^="btn"], aside a[class*=" btn"], section a[class^="btn"], section a[class*=" btn"] {
  border: none;
  color: #ffffff;
}

main a[class^="btn"]:hover, main a[class^="btn"]:focus, main a[class*=" btn"]:hover, main a[class*=" btn"]:focus, article a[class^="btn"]:hover, article a[class^="btn"]:focus, article a[class*=" btn"]:hover, article a[class*=" btn"]:focus, aside a[class^="btn"]:hover, aside a[class^="btn"]:focus, aside a[class*=" btn"]:hover, aside a[class*=" btn"]:focus, section a[class^="btn"]:hover, section a[class^="btn"]:focus, section a[class*=" btn"]:hover, section a[class*=" btn"]:focus {
  border: none;
  color: #ffffff;
}

aside a:not(.img) {
  border: none;
}

aside a:not(.img):hover, aside a:not(.img):focus {
  border-bottom: none;
}

/*==============================================
	PARAGRAPHS, STRONG, EM AND SMALL
==============================================*/
p {
  line-height: 1.6;
  /*default for browsers with issues with calc(), e.g. Firefox as at May 2016*/
  line-height: calc(0.45455vw + 18.54545px);
  margin-bottom: calc(1.13636vw + 6.36364px);
}

@media (max-width: 320px) {
  p {
    line-height: 20px;
  }
}

@media (min-width: 1200px) {
  p {
    line-height: 24px;
  }
}

@media (max-width: 320px) {
  p {
    margin-bottom: 10px;
  }
}

@media (min-width: 1200px) {
  p {
    margin-bottom: 20px;
  }
}

em {
  font-style: italic;
}

strong {
  font-weight: 700;
}

small {
  font-size: calc(0.22727vw + 11.27273px);
  color: #464646;
  text-transform: none;
}

@media (max-width: 320px) {
  small {
    font-size: 12px;
  }
}

@media (min-width: 1200px) {
  small {
    font-size: 14px;
  }
}

small.meta {
  display: block;
  margin-bottom: calc(0.56818vw + 8.18182px);
}

@media (max-width: 320px) {
  small.meta {
    margin-bottom: 10px;
  }
}

@media (min-width: 1200px) {
  small.meta {
    margin-bottom: 15px;
  }
}

/*==============================================
	LISTS
==============================================*/
main ul, article ul, main ol, article ol {
  margin-bottom: calc(1.13636vw + 6.36364px);
  padding-left: calc(1.13636vw + 6.36364px);
}

@media (max-width: 320px) {
  main ul, article ul, main ol, article ol {
    margin-bottom: 10px;
  }
}

@media (min-width: 1200px) {
  main ul, article ul, main ol, article ol {
    margin-bottom: 20px;
  }
}

@media (max-width: 320px) {
  main ul, article ul, main ol, article ol {
    padding-left: 10px;
  }
}

@media (min-width: 1200px) {
  main ul, article ul, main ol, article ol {
    padding-left: 20px;
  }
}

main ul li, article ul li, main ol li, article ol li {
  line-height: calc(0.45455vw + 18.54545px);
  margin-bottom: calc(0.56818vw + 8.18182px);
}

@media (max-width: 320px) {
  main ul li, article ul li, main ol li, article ol li {
    line-height: 20px;
  }
}

@media (min-width: 1200px) {
  main ul li, article ul li, main ol li, article ol li {
    line-height: 24px;
  }
}

@media (max-width: 320px) {
  main ul li, article ul li, main ol li, article ol li {
    margin-bottom: 10px;
  }
}

@media (min-width: 1200px) {
  main ul li, article ul li, main ol li, article ol li {
    margin-bottom: 15px;
  }
}

main ul li:last-child, article ul li:last-child, main ol li:last-child, article ol li:last-child {
  margin-bottom: 0;
}

main ul ul, main ul ol, article ul ul, article ul ol, main ol ul, main ol ol, article ol ul, article ol ol {
  /*Lists within lists*/
}

main ul, article ul {
  list-style: disc outside;
}

main ol, article ol {
  list-style: decimal outside;
}

/*==============================================
	BLOCKQUOTES
==============================================*/
blockquote {
  position: relative;
  padding-top: calc(2.27273vw + 2.72727px);
  padding-bottom: calc(2.27273vw + 2.72727px);
  margin-bottom: calc(0.56818vw + 8.18182px);
  color: #000;
  border-top: 1px solid #444;
  border-bottom: 1px solid #444;
}

@media (max-width: 320px) {
  blockquote {
    padding-top: 10px;
  }
}

@media (min-width: 1200px) {
  blockquote {
    padding-top: 30px;
  }
}

@media (max-width: 320px) {
  blockquote {
    padding-bottom: 10px;
  }
}

@media (min-width: 1200px) {
  blockquote {
    padding-bottom: 30px;
  }
}

@media (max-width: 320px) {
  blockquote {
    margin-bottom: 10px;
  }
}

@media (min-width: 1200px) {
  blockquote {
    margin-bottom: 15px;
  }
}

@media (min-width: 599px) {
  blockquote:before {
    font-family: "FontAwesome";
    content: "\f10d";
    position: absolute;
    top: 0;
    left: calc(-2.27273vw + -2.72727px);
    top: calc(2.27273vw + 2.72727px);
    clear: both;
    visibility: visible;
    overflow: visible;
  }
}

@media (min-width: 599px) and (max-width: 320px) {
  blockquote:before {
    left: -10px;
  }
}

@media (min-width: 599px) and (min-width: 1200px) {
  blockquote:before {
    left: -30px;
  }
}

@media (min-width: 599px) and (max-width: 320px) {
  blockquote:before {
    top: 10px;
  }
}

@media (min-width: 599px) and (min-width: 1200px) {
  blockquote:before {
    top: 30px;
  }
}

blockquote :last-child {
  margin-bottom: 0;
}

/*=================================================================================
	ADDRESSES
=================================================================================*/
address {
  font-style: normal;
}

#content address {
  margin: 0 0 20;
  font-weight: 400;
}

#content address div.title {
  font-weight: 700;
  font-family: "Ovo", Arial, sans-serif;
  font-size: 110%;
}

#content address div[itemprop=streetAddress]:after, #content address div[itemprop=addressLocality]:after {
  content: ", ";
}

#content address div[itemprop=addressLocality], #content address div[itemprop=addressRegion], #content address div[itemprop=postalCode] {
  display: inline-block;
}

#content address div[itemprop=postalCode] {
  margin-bottom: 0.5rem;
}

#content address div[itemprop=telephone]:before {
  content: "T: ";
  font-weight: 700;
  font-family: "Ovo", Arial, sans-serif;
}

#content address div[itemprop=faxNumber]:before {
  content: "F: ";
  font-weight: 700;
  font-family: "Ovo", Arial, sans-serif;
}

#content address div[itemprop=email] {
  margin-top: 0.5rem;
  word-break: break-word;
}

#content address div[itemprop=email]:before {
  content: "E: ";
  font-weight: 700;
  font-family: "Ovo", Arial, sans-serif;
}

#content address ul.hours {
  margin: 0.75rem 0 0 0;
  padding: 0;
  list-style: none;
  font-size: 100%;
}

#content address ul.hours li:nth-child(n+2) {
  font-size: 95%;
}

#content address ul.hours li:nth-child(n+2) strong {
  display: inline-block;
  width: 7.5rem;
  font-weight: 400;
}

#content address .address-note {
  margin: 0.75rem 0 0 0;
  border: 0.0625rem solid #aaaaaa;
  padding: 0.625rem;
  font-size: 90%;
  background: #d0d0d0;
}

header address {
  color: #000;
  font-family: "Ovo", Arial, sans-serif;
  font-weight: 700;
}

@media (min-width: 599px) {
  header address {
    text-align: right;
  }
}

header address div {
  display: inline-block;
}

header address div[itemprop=streetAddress]:after {
  content: ", ";
  padding-right: 0.3125rem;
}

header address div[itemprop=telephone] {
  display: block;
}

header address div[itemprop=addressRegion], header address div[itemprop=postalCode] {
  display: none;
}

#footer address {
  padding: 0.625rem 0;
}

#footer address div {
  display: inline-block;
}

#footer address div[itemprop=streetAddress] {
  display: block;
}

#footer address div[itemprop=streetAddress]:after {
  content: ", ";
}

/*==============================================
	TABLES
==============================================*/
table {
  margin: 0 0 20 0;
  border-collapse: collapse;
  width: 100%;
  border: 0.0625rem solid #aaaaaa;
}

table th, table td {
  border: 0.0625rem solid #aaaaaa;
  padding: 10;
}

table tr th {
  background: #000;
  color: #FFF;
  font-weight: 400;
  text-align: left;
}

table tr:first-child th {
  background: #CCC;
  color: #444;
}

@media (max-width: 767px) {
  table .st-head-row-main,
  table .st-key {
    display: none;
  }
}

/*=================================================================================
	RESPONSIVE TABLES USING STACKTABLE.JS
=================================================================================*/
.stacktable {
  width: 100%;
}

.st-head-row {
  padding: 10;
}

.st-head-row.st-head-row-main {
  font-size: 1.5em;
}

.stacktable.large-only {
  display: table;
}

.stacktable.small-only {
  display: none;
}

@media (max-width: 767px) {
  .stacktable.large-only {
    display: none;
  }
  .stacktable.small-only {
    display: table;
  }
}

/*=================================================================================
	RESPONSIVE TABLES USING FOUNDATION'S RESPONSIVE-TABLES.JS
=================================================================================*/
@media (max-width: 767px) {
  table.responsive {
    margin-bottom: 0;
  }
  .pinned {
    position: absolute;
    left: 0;
    top: 0;
    background: #fff;
    width: 35%;
    overflow: hidden;
    overflow-x: scroll;
    border-right: 1px solid #ccc;
    border-left: 1px solid #ccc;
  }
  .pinned table {
    border-right: none;
    border-left: none;
    width: 100%;
  }
  .pinned table th, .pinned table td {
    white-space: nowrap;
  }
  .pinned td:last-child {
    border-bottom: 0;
  }
  div.table-wrapper {
    position: relative;
    margin-bottom: 20px;
    overflow: hidden;
    border-right: 1px solid #ccc;
  }
  div.table-wrapper div.scrollable {
    margin-left: 35%;
  }
  div.table-wrapper div.scrollable {
    overflow: scroll;
    overflow-y: hidden;
  }
  table.responsive td, table.responsive th {
    position: relative;
    white-space: nowrap;
    overflow: hidden;
  }
  table.responsive th:first-child, table.responsive td:first-child, table.responsive td:first-child, table.responsive.pinned td {
    display: none;
  }
}

/*=================================================================================
	FORMS
=================================================================================*/
form li {
  list-style: none;
}

form label {
  display: block;
  margin-top: 1em;
}

form input:not[type=checkbox],
form input:not[type=radio] {
  -webkit-appearance: none;
  border-radius: 0;
}

form input[type=radio] + label {
  margin-top: 0;
}

form input[type=checkbox] + label, form input[type=radio] + label, form label.checkbox {
  display: inline-block;
}

form input[type=text], form input[type=email], form input[type=password], form input[type=tel], form textarea, form select {
  border: 0.0625rem solid #000;
  padding: 0.3125rem;
  display: block;
  margin-left: 0 !important;
  width: 100% !important;
  color: #777777;
}

form input[type=text]:hover, form input[type=text]:focus, form input[type=email]:hover, form input[type=email]:focus, form input[type=password]:hover, form input[type=password]:focus, form input[type=tel]:hover, form input[type=tel]:focus, form textarea:hover, form textarea:focus, form select:hover, form select:focus {
  color: #444;
}

/*=================================================================================
	NINJA FORMS
=================================================================================*/
.ninja-forms-cont {
  padding-bottom: 20;
}

.ninja-forms-cont .ninja-forms-response-msg {
  margin: 0;
  font-weight: 700;
}

.ninja-forms-cont .ninja-forms-response-msg.ninja-forms-error-msg {
  color: #cc0000;
}

.ninja-forms-cont .ninja-forms-response-msg.ninja-forms-error-msg p {
  display: inline;
  padding-right: 0.3125rem;
}

.ninja-forms-cont .ninja-forms-response-msg.ninja-forms-success-msg {
  color: #FFF;
  margin: 0 0 1.25rem;
}

.ninja-forms-cont .ninja-forms-field-error {
  color: #cc0000;
  font-size: calc(0.22727vw + 11.27273px);
}

@media (max-width: 320px) {
  .ninja-forms-cont .ninja-forms-field-error {
    font-size: 12px;
  }
}

@media (min-width: 1200px) {
  .ninja-forms-cont .ninja-forms-field-error {
    font-size: 14px;
  }
}

.ninja-forms-cont .ninja-forms-field-error p {
  display: inline;
}

.ninja-forms-cont .ninja-forms-error input[type=text], .ninja-forms-cont .ninja-forms-error input[type=email], .ninja-forms-cont .ninja-forms-error textarea, .ninja-forms-cont .ninja-forms-error select {
  border-color: #cc0000 !important;
}

.ninja-forms-cont .ninja-forms-field-description {
  font-size: calc(0.22727vw + 11.27273px);
}

@media (max-width: 320px) {
  .ninja-forms-cont .ninja-forms-field-description {
    font-size: 12px;
  }
}

@media (min-width: 1200px) {
  .ninja-forms-cont .ninja-forms-field-description {
    font-size: 14px;
  }
}

.ninja-forms-cont .ninja-forms-field-description p {
  margin: 0 0 0.3125rem;
  color: #777777;
}

.ninja-forms-cont .ninja-forms-required-items {
  display: block;
  margin: 0 0 0.3125rem 0;
  font-size: calc(0.22727vw + 11.27273px);
  color: #777777;
  font-style: italic;
}

@media (max-width: 320px) {
  .ninja-forms-cont .ninja-forms-required-items {
    font-size: 12px;
  }
}

@media (min-width: 1200px) {
  .ninja-forms-cont .ninja-forms-required-items {
    font-size: 14px;
  }
}

.ninja-forms-cont .input-group {
  margin-top: 1em;
}

.ninja-forms-cont .field-wrap {
  margin-bottom: 0.5rem !important;
}

.ninja-forms-cont .field-wrap:last-child {
  margin-bottom: 0 !important;
}

/*=================================================================================
	DATEPICKER
=================================================================================*/
.ui-datepicker-header {
  background: #000;
  color: #ffffff;
}

.ui-datepicker-calendar {
  border: 0.0625rem solid #000;
}

a.ui-state-default {
  color: #000;
  display: block;
  padding: 0.125rem;
}

a.ui-state-default:hover, a.ui-state-default:focus {
  background: #000;
  color: #ffffff;
}

/*==============================================
	MESSAGES
==============================================*/
.message {
  padding-right: 1.875rem;
  padding-left: 1.875rem;
  padding-top: calc(1.13636vw + 1.36364px);
  padding-bottom: calc(0.56818vw + 0.68182px);
  margin-bottom: calc(2.27273vw + 2.72727px);
  position: relative;
}

@media (max-width: 320px) {
  .message {
    padding-top: 5px;
  }
}

@media (min-width: 1200px) {
  .message {
    padding-top: 15px;
  }
}

@media (max-width: 320px) {
  .message {
    padding-bottom: 2.5px;
  }
}

@media (min-width: 1200px) {
  .message {
    padding-bottom: 7.5px;
  }
}

@media (max-width: 320px) {
  .message {
    margin-bottom: 10px;
  }
}

@media (min-width: 1200px) {
  .message {
    margin-bottom: 30px;
  }
}

.message a {
  color: inherit;
  font-weight: 700;
  text-decoration: none;
}

.message a:hover {
  text-decoration: underline;
}

.message:before {
  font-family: "FontAwesome";
  position: absolute;
  left: 0.625rem;
}

.message.info {
  background: #bde5f8;
  border: 0.0625rem solid #00529b;
  color: #00529b;
}

.message.info:before {
  content: "\f05a";
}

.message.warning {
  background: #feefb3;
  border: 0.0625rem solid #9f6000;
  color: #9f6000;
}

.message.warning:before {
  content: "\f06a";
}

.message.error {
  background: #ffbaba;
  border: 0.0625rem solid #d8000c;
  color: #d8000c;
}

.message.error:before {
  content: "\f057";
}

.message.success {
  background: #dff2bf;
  border: 0.0625rem solid #4f8a10;
  color: #4f8a10;
}

.message.success:before {
  content: "\f058";
}

.dontblamegoop {
  background: #f0f0f0;
  padding: 0.3125rem;
  text-align: center;
  font-size: 0.6875rem;
  display: block;
  color: #b4b4b4;
  margin-bottom: 0.3125rem;
}

.google .dontblamegoop {
  display: none;
}

/*==============================================
	IMAGES
==============================================*/
img {
  max-width: 100%;
  height: auto;
}

.alignnone {
  margin: 0 0 20 0;
}

.aligncenter, div.aligncenter {
  display: block;
  margin: 0 auto 20;
}

.alignright {
  float: right;
  margin: 0 0 20 20;
}

.alignleft {
  float: left;
  margin: 0 20 20 0;
}

.aligncenter {
  display: block;
  margin: 0 auto;
}

img[class*="size-"] {
  max-width: 100%;
  height: auto;
}

@media (max-width: 599px) {
  img[class*="size-"] {
    width: 100% !important;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    float: none;
  }
}

img.alignright {
  margin-left: 0 0 20 20;
}

img.alignleft {
  margin: 0 20 20 0;
}

img.aligncenter {
  display: block;
  margin: 0 auto 20;
}

img[class*="align"], img[class*="wp-image-"] {
  border: none;
}

img.wp-post-image {
  display: block;
  margin: 0 auto;
  margin-bottom: 1.875rem;
}

@media (max-width: 599px) {
  .alignnone, .aligncenter, div.aligncenter, .alignright, .alignleft, .aligncenter {
    float: none;
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 599px) {
  .alignnone, .aligncenter, div.aligncenter, .alignright, .alignleft, .aligncenter {
    width: 100% !important;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    float: none;
  }
}

.size-full {
  width: 100%;
  height: auto;
}

/*=================================================================================
	WP-CAPTION
=================================================================================*/
.wp-caption {
  margin-bottom: 20;
  max-width: 100%;
  text-align: left;
  position: relative;
}

@media (max-width: 599px) {
  .wp-caption {
    width: 100% !important;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    float: none;
  }
}

.wp-caption img {
  display: block;
  margin: 0 auto;
}

@media (max-width: 599px) {
  .wp-caption img {
    width: 100% !important;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    float: none;
  }
}

.wp-caption-text {
  font-size: calc(0.22727vw + 11.27273px);
  padding: 0.625rem 0.3125rem;
  opacity: 0.8;
}

@media (max-width: 320px) {
  .wp-caption-text {
    font-size: 12px;
  }
}

@media (min-width: 1200px) {
  .wp-caption-text {
    font-size: 14px;
  }
}

/*=================================================================================
	BUTTON MIXINS
=================================================================================*/
/*=================================================================================
	BUTTONS
=================================================================================*/
.btn, input[type=submit], button {
  color: #000;
  background: #FFF;
  border: 1px solid #000 !important;
  font-size: calc(0.22727vw + 11.27273px);
  padding-left: calc(1.13636vw + 6.36364px);
  padding-right: calc(1.13636vw + 6.36364px);
  padding-top: calc(0.56818vw + 3.18182px);
  padding-bottom: calc(0.56818vw + 3.18182px);
  margin: 0;
  cursor: pointer;
  border: 0;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s ease-in-out;
  -webkit-appearance: none;
  /*Stops iOS from taking over how buttons look*/
}

@media (max-width: 320px) {
  .btn, input[type=submit], button {
    font-size: 12px;
  }
}

@media (min-width: 1200px) {
  .btn, input[type=submit], button {
    font-size: 14px;
  }
}

@media (max-width: 320px) {
  .btn, input[type=submit], button {
    padding-left: 10px;
  }
}

@media (min-width: 1200px) {
  .btn, input[type=submit], button {
    padding-left: 20px;
  }
}

@media (max-width: 320px) {
  .btn, input[type=submit], button {
    padding-right: 10px;
  }
}

@media (min-width: 1200px) {
  .btn, input[type=submit], button {
    padding-right: 20px;
  }
}

@media (max-width: 320px) {
  .btn, input[type=submit], button {
    padding-top: 5px;
  }
}

@media (min-width: 1200px) {
  .btn, input[type=submit], button {
    padding-top: 10px;
  }
}

@media (max-width: 320px) {
  .btn, input[type=submit], button {
    padding-bottom: 5px;
  }
}

@media (min-width: 1200px) {
  .btn, input[type=submit], button {
    padding-bottom: 10px;
  }
}

.btn:hover, .btn:focus, input[type=submit]:hover, input[type=submit]:focus, button:hover, button:focus {
  background: #EDEDED;
}

/*=================================================================================
	BUTTON VARIATIONS
=================================================================================*/
.btn-primary {
  color: #000;
  background: #FFF;
  border: 1px solid #000 !important;
  font-size: calc(0.22727vw + 11.27273px);
  padding-left: calc(1.13636vw + 6.36364px);
  padding-right: calc(1.13636vw + 6.36364px);
  padding-top: calc(0.56818vw + 3.18182px);
  padding-bottom: calc(0.56818vw + 3.18182px);
  margin: 0;
  cursor: pointer;
  border: 0;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s ease-in-out;
  -webkit-appearance: none;
  /*Stops iOS from taking over how buttons look*/
  background: #FFF;
  color: #000 !important;
  border: 1px solid #000;
  text-transform: uppercase;
}

@media (max-width: 320px) {
  .btn-primary {
    font-size: 12px;
  }
}

@media (min-width: 1200px) {
  .btn-primary {
    font-size: 14px;
  }
}

@media (max-width: 320px) {
  .btn-primary {
    padding-left: 10px;
  }
}

@media (min-width: 1200px) {
  .btn-primary {
    padding-left: 20px;
  }
}

@media (max-width: 320px) {
  .btn-primary {
    padding-right: 10px;
  }
}

@media (min-width: 1200px) {
  .btn-primary {
    padding-right: 20px;
  }
}

@media (max-width: 320px) {
  .btn-primary {
    padding-top: 5px;
  }
}

@media (min-width: 1200px) {
  .btn-primary {
    padding-top: 10px;
  }
}

@media (max-width: 320px) {
  .btn-primary {
    padding-bottom: 5px;
  }
}

@media (min-width: 1200px) {
  .btn-primary {
    padding-bottom: 10px;
  }
}

.btn-primary:hover, .btn-primary:focus {
  background: #EDEDED;
}

.btn-primary:hover, .btn-primary:focus {
  background: #dddddd;
}

.btn-secondary {
  color: #000;
  background: #FFF;
  border: 1px solid #000 !important;
  font-size: calc(0.22727vw + 11.27273px);
  padding-left: calc(1.13636vw + 6.36364px);
  padding-right: calc(1.13636vw + 6.36364px);
  padding-top: calc(0.56818vw + 3.18182px);
  padding-bottom: calc(0.56818vw + 3.18182px);
  margin: 0;
  cursor: pointer;
  border: 0;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s ease-in-out;
  -webkit-appearance: none;
  /*Stops iOS from taking over how buttons look*/
  background: #FFF;
}

@media (max-width: 320px) {
  .btn-secondary {
    font-size: 12px;
  }
}

@media (min-width: 1200px) {
  .btn-secondary {
    font-size: 14px;
  }
}

@media (max-width: 320px) {
  .btn-secondary {
    padding-left: 10px;
  }
}

@media (min-width: 1200px) {
  .btn-secondary {
    padding-left: 20px;
  }
}

@media (max-width: 320px) {
  .btn-secondary {
    padding-right: 10px;
  }
}

@media (min-width: 1200px) {
  .btn-secondary {
    padding-right: 20px;
  }
}

@media (max-width: 320px) {
  .btn-secondary {
    padding-top: 5px;
  }
}

@media (min-width: 1200px) {
  .btn-secondary {
    padding-top: 10px;
  }
}

@media (max-width: 320px) {
  .btn-secondary {
    padding-bottom: 5px;
  }
}

@media (min-width: 1200px) {
  .btn-secondary {
    padding-bottom: 10px;
  }
}

.btn-secondary:hover, .btn-secondary:focus {
  background: #EDEDED;
}

.btn-secondary:hover, .btn-secondary:focus {
  background: #e6e6e6;
}

.btn-accent {
  color: #000;
  background: #FFF;
  border: 1px solid #000 !important;
  font-size: calc(0.22727vw + 11.27273px);
  padding-left: calc(1.13636vw + 6.36364px);
  padding-right: calc(1.13636vw + 6.36364px);
  padding-top: calc(0.56818vw + 3.18182px);
  padding-bottom: calc(0.56818vw + 3.18182px);
  margin: 0;
  cursor: pointer;
  border: 0;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s ease-in-out;
  -webkit-appearance: none;
  /*Stops iOS from taking over how buttons look*/
  background: #666;
}

@media (max-width: 320px) {
  .btn-accent {
    font-size: 12px;
  }
}

@media (min-width: 1200px) {
  .btn-accent {
    font-size: 14px;
  }
}

@media (max-width: 320px) {
  .btn-accent {
    padding-left: 10px;
  }
}

@media (min-width: 1200px) {
  .btn-accent {
    padding-left: 20px;
  }
}

@media (max-width: 320px) {
  .btn-accent {
    padding-right: 10px;
  }
}

@media (min-width: 1200px) {
  .btn-accent {
    padding-right: 20px;
  }
}

@media (max-width: 320px) {
  .btn-accent {
    padding-top: 5px;
  }
}

@media (min-width: 1200px) {
  .btn-accent {
    padding-top: 10px;
  }
}

@media (max-width: 320px) {
  .btn-accent {
    padding-bottom: 5px;
  }
}

@media (min-width: 1200px) {
  .btn-accent {
    padding-bottom: 10px;
  }
}

.btn-accent:hover, .btn-accent:focus {
  background: #EDEDED;
}

.btn-accent:hover, .btn-accent:focus {
  background: #4d4d4d;
}

.btn.full-width, .btn-primary.full-width, .btn-secondary.full-width, .btn-accent.full-width {
  /*To be used in conjunction with other button styles*/
  width: 100%;
  padding: 6.66667 10;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.btn span, .btn-primary span, .btn-secondary span, .btn-accent span {
  display: inline-block;
}

.btn i, .btn-primary i, .btn-secondary i, .btn-accent i {
  display: inline-block;
  line-height: 1;
  margin-left: 0.375rem;
}

.btn i.fa-2x, .btn-primary i.fa-2x, .btn-secondary i.fa-2x, .btn-accent i.fa-2x {
  font-size: inherit;
}

.btn-small {
  padding: 6.66667 10;
  font-size: 0.75rem;
  text-transform: uppercase;
}

br + .btn {
  margin-top: 0.625rem;
}

/*=================================================================================
	PAGINATION
=================================================================================*/
.pagination,
.woocommerce-pagination {
  margin-top: calc(2.27273vw + 2.72727px);
  margin-bottom: calc(2.27273vw + 2.72727px);
  padding: 0;
  display: block;
  /*==================================
		SINGLE POST PAGINATION
	==================================*/
}

@media (max-width: 320px) {
  .pagination,
  .woocommerce-pagination {
    margin-top: 10px;
  }
}

@media (min-width: 1200px) {
  .pagination,
  .woocommerce-pagination {
    margin-top: 30px;
  }
}

@media (max-width: 320px) {
  .pagination,
  .woocommerce-pagination {
    margin-bottom: 10px;
  }
}

@media (min-width: 1200px) {
  .pagination,
  .woocommerce-pagination {
    margin-bottom: 30px;
  }
}

.pagination ul,
.woocommerce-pagination ul {
  list-style: none;
  display: block;
  margin: 0;
  padding: 0;
  text-align: left;
}

.pagination ul li,
.woocommerce-pagination ul li {
  display: inline-block;
  margin-right: 1px;
}

.pagination ul li .page-numbers, .pagination ul li a,
.woocommerce-pagination ul li .page-numbers,
.woocommerce-pagination ul li a {
  color: #000;
  background: #FFF;
  border: 1px solid #000 !important;
  font-size: calc(0.22727vw + 11.27273px);
  padding-left: calc(1.13636vw + 6.36364px);
  padding-right: calc(1.13636vw + 6.36364px);
  padding-top: calc(0.56818vw + 3.18182px);
  padding-bottom: calc(0.56818vw + 3.18182px);
  margin: 0;
  cursor: pointer;
  border: 0;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s ease-in-out;
  -webkit-appearance: none;
  /*Stops iOS from taking over how buttons look*/
}

@media (max-width: 320px) {
  .pagination ul li .page-numbers, .pagination ul li a,
  .woocommerce-pagination ul li .page-numbers,
  .woocommerce-pagination ul li a {
    font-size: 12px;
  }
}

@media (min-width: 1200px) {
  .pagination ul li .page-numbers, .pagination ul li a,
  .woocommerce-pagination ul li .page-numbers,
  .woocommerce-pagination ul li a {
    font-size: 14px;
  }
}

@media (max-width: 320px) {
  .pagination ul li .page-numbers, .pagination ul li a,
  .woocommerce-pagination ul li .page-numbers,
  .woocommerce-pagination ul li a {
    padding-left: 10px;
  }
}

@media (min-width: 1200px) {
  .pagination ul li .page-numbers, .pagination ul li a,
  .woocommerce-pagination ul li .page-numbers,
  .woocommerce-pagination ul li a {
    padding-left: 20px;
  }
}

@media (max-width: 320px) {
  .pagination ul li .page-numbers, .pagination ul li a,
  .woocommerce-pagination ul li .page-numbers,
  .woocommerce-pagination ul li a {
    padding-right: 10px;
  }
}

@media (min-width: 1200px) {
  .pagination ul li .page-numbers, .pagination ul li a,
  .woocommerce-pagination ul li .page-numbers,
  .woocommerce-pagination ul li a {
    padding-right: 20px;
  }
}

@media (max-width: 320px) {
  .pagination ul li .page-numbers, .pagination ul li a,
  .woocommerce-pagination ul li .page-numbers,
  .woocommerce-pagination ul li a {
    padding-top: 5px;
  }
}

@media (min-width: 1200px) {
  .pagination ul li .page-numbers, .pagination ul li a,
  .woocommerce-pagination ul li .page-numbers,
  .woocommerce-pagination ul li a {
    padding-top: 10px;
  }
}

@media (max-width: 320px) {
  .pagination ul li .page-numbers, .pagination ul li a,
  .woocommerce-pagination ul li .page-numbers,
  .woocommerce-pagination ul li a {
    padding-bottom: 5px;
  }
}

@media (min-width: 1200px) {
  .pagination ul li .page-numbers, .pagination ul li a,
  .woocommerce-pagination ul li .page-numbers,
  .woocommerce-pagination ul li a {
    padding-bottom: 10px;
  }
}

.pagination ul li .page-numbers:hover, .pagination ul li .page-numbers:focus, .pagination ul li a:hover, .pagination ul li a:focus,
.woocommerce-pagination ul li .page-numbers:hover,
.woocommerce-pagination ul li .page-numbers:focus,
.woocommerce-pagination ul li a:hover,
.woocommerce-pagination ul li a:focus {
  background: #EDEDED;
}

.pagination.single ul li,
.woocommerce-pagination.single ul li {
  display: inline-block;
  width: 50%;
  margin: 0;
  text-align: left;
}

.pagination.single ul li a,
.woocommerce-pagination.single ul li a {
  display: inline-block;
}

.pagination.single ul li.newer,
.woocommerce-pagination.single ul li.newer {
  text-align: right;
}

/*=================================================================================
	SKIP TO CONTENT
=================================================================================*/
.skip {
  position: absolute;
  top: -1000px;
  left: -1000px;
  text-align: left;
  overflow: hidden;
  padding: 10;
  display: block;
  width: 100%;
  text-decoration: none;
}

.skip:active, .skip:focus, .skip:hover {
  top: 0;
  left: 0;
  position: relative;
  background: #FFCE00;
  color: #000;
}

/*=================================================================================
	RESPONSIVE MENU - USED ON ALL SIZES FOR THIS SITE
=================================================================================*/
#navigation {
  display: block;
  position: relative;
  z-index: 1000;
}

#navigation span {
  position: absolute;
  width: 5rem;
  text-align: left;
  color: #000;
  cursor: pointer;
  display: block !important;
}

#navigation span:before {
  font-family: "FontAwesome";
  font-size: 1.5em;
  content: "\f0c9";
}

@media (min-width: 767px) {
  #navigation span:before {
    font-size: 2em;
  }
}

.ie #navigation span:before {
  font-size: 1.875rem;
}

#navigation span.open:before {
  content: "\f053";
}

#navigation ul {
  border-right: 1px solid #CDCDCD;
  list-style: none;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  background: white;
  display: none;
  width: 220px;
}

#navigation ul li {
  width: 100%;
  margin: 0;
  font-family: "Ovo", Arial, sans-serif;
  font-weight: 700;
  text-transform: normal;
  font-size: calc(0.45455vw + 14.54545px);
}

@media (max-width: 320px) {
  #navigation ul li {
    font-size: 16px;
  }
}

@media (min-width: 1200px) {
  #navigation ul li {
    font-size: 20px;
  }
}

#navigation ul li a {
  color: #000;
  text-decoration: none;
  display: block;
  padding: calc(2.27273vw + 2.72727px);
  padding-left: calc(3.40909vw + 19.09091px);
  background-position: center left 0.625rem;
  background-repeat: no-repeat;
  background-size: auto 50%;
}

@media (max-width: 320px) {
  #navigation ul li a {
    padding: 10px;
  }
}

@media (min-width: 1200px) {
  #navigation ul li a {
    padding: 30px;
  }
}

@media (max-width: 320px) {
  #navigation ul li a {
    padding-left: 30px;
  }
}

@media (min-width: 1200px) {
  #navigation ul li a {
    padding-left: 60px;
  }
}

.ie #navigation ul li a {
  background-position: center left -25px;
}

#navigation ul li a:hover, #navigation ul li a:focus {
  opacity: 0.7;
}

#navigation ul li.menu-item-home > a {
  background-image: url(assets/img/icons/icon-home.svg);
}

#navigation ul li#menu-item-43 > a {
  background-image: url(assets/img/icons/icon-food.svg);
}

#navigation ul li#menu-item-44 > a {
  background-image: url(assets/img/icons/icon-garden.svg);
}

#navigation ul li#menu-item-45 > a {
  background-image: url(assets/img/icons/icon-travel.svg);
}

#navigation ul li#menu-item-100 > a {
  background-image: url(assets/img/icons/icon-titbits.svg);
}

#navigation ul li.menu-item-about > a {
  background-image: url(assets/img/icons/icon-about.svg);
}

#navigation ul li.menu-item-contact > a {
  background-image: url(assets/img/icons/icon-contact.svg);
}

#navigation ul li ul {
  display: none;
  opacity: 0;
  top: -9999px;
  left: 0;
  z-index: 1;
}

#navigation ul li ul li a:before {
  content: "- ";
}

#navigation ul li ul li ul {
  display: none !important;
}

#navigation ul li.menu-item-has-children {
  position: relative;
}

#navigation ul li.menu-item-has-children:before {
  position: absolute;
  top: 0.5rem;
  right: 0.625rem;
  content: "\f107";
  color: white;
}

#search-wrapper {
  text-align: right;
}

#search-wrapper > .icon:before {
  cursor: pointer;
  font-family: "FontAwesome";
  font-size: 1.5em;
  color: #000;
  content: "\f002";
}

@media (min-width: 767px) {
  #search-wrapper > .icon:before {
    font-size: 2em;
  }
}

.ie #search-wrapper > .icon:before {
  font-size: 1.875rem;
}

#search-wrapper > .icon.open:before {
  content: "\f077";
}

#searchform {
  position: relative;
  display: none;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

#searchform.open {
  opacity: 1.0;
}

#searchform form {
  margin-top: calc(2.27273vw + 2.72727px);
  padding-left: calc(2.27273vw + 2.72727px);
  padding-right: calc(2.27273vw + 2.72727px);
  width: calc(100vw + 0px);
  position: absolute;
  right: 0;
}

@media (max-width: 320px) {
  #searchform form {
    margin-top: 10px;
  }
}

@media (min-width: 1200px) {
  #searchform form {
    margin-top: 30px;
  }
}

@media (max-width: 320px) {
  #searchform form {
    padding-left: 10px;
  }
}

@media (min-width: 1200px) {
  #searchform form {
    padding-left: 30px;
  }
}

@media (max-width: 320px) {
  #searchform form {
    padding-right: 10px;
  }
}

@media (min-width: 1200px) {
  #searchform form {
    padding-right: 30px;
  }
}

@media (max-width: 320px) {
  #searchform form {
    width: 320px;
  }
}

@media (min-width: 1200px) {
  #searchform form {
    width: 1200px;
  }
}

#searchform form label {
  margin: 0;
  padding: 0;
  display: inline-block;
  width: 100%;
}

#searchform form label span {
  display: none;
}

#searchform form input[type=search] {
  width: 100%;
  margin-left: calc(2.27273vw + 2.72727px);
  background: #FFF;
  border: 1px solid #000;
  border-radius: 0;
  -webkit-appearance: none;
  padding: 0.625rem;
  outline: none;
  color: #000;
  line-height: 1;
  display: inline-block;
  text-align: left;
  font-family: "Lato", Arial, sans-serif;
}

@media (max-width: 320px) {
  #searchform form input[type=search] {
    margin-left: 10px;
  }
}

@media (min-width: 1200px) {
  #searchform form input[type=search] {
    margin-left: 30px;
  }
}

#searchform form input[type=search]::-webkit-input-placeholder {
  color: #444;
  padding-top: 0.125rem;
}

#searchform form input[type=search]:-moz-placeholder {
  /* Firefox 18- */
  color: #444;
  padding-top: 0.125rem;
}

#searchform form input[type=search]::-moz-placeholder {
  /* Firefox 19+ */
  color: #444;
  padding-top: 0.125rem;
}

#searchform form input[type=search]:-ms-input-placeholder {
  color: #444;
  padding-top: 0.125rem;
}

#searchform form button {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 1.5625rem;
  padding: 0 0.9375rem 0 0;
  display: inline-block;
  margin: 0;
  border: 0 !important;
  float: right;
  text-align: right;
  color: #666;
  vertical-align: middle;
  font-size: 1.125rem;
  background: transparent;
}

#searchform form button:hover {
  color: #000;
  background: transparent;
}

/* Layout */
/*=================================================================================
	GLOBAL LAYOUT STUFF
=================================================================================*/
body {
  overflow-x: hidden;
}

#food-garden-travel {
  position: relative;
  width: 100vw;
}

section#content {
  padding-top: calc(2.27273vw + 2.72727px);
}

@media (max-width: 320px) {
  section#content {
    padding-top: 10px;
  }
}

@media (min-width: 1200px) {
  section#content {
    padding-top: 30px;
  }
}

article, main {
  position: relative;
}

article hr, main hr {
  border-color: #aaaaaa;
  height: 0.0625rem;
}

/*=================================================================================
	HEADER
=================================================================================*/
header {
  position: relative;
  margin: 0;
  z-index: 100;
  padding-top: calc(2.27273vw + 2.72727px);
  padding-bottom: calc(2.27273vw + 2.72727px);
}

@media (max-width: 320px) {
  header {
    padding-top: 10px;
  }
}

@media (min-width: 1200px) {
  header {
    padding-top: 30px;
  }
}

@media (max-width: 320px) {
  header {
    padding-bottom: 10px;
  }
}

@media (min-width: 1200px) {
  header {
    padding-bottom: 30px;
  }
}

#home header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

header #logo {
  padding-top: 0.3125rem;
  text-align: center;
}

header #logo a {
  font-family: "Ovo", Arial, sans-serif;
  font-weight: 700;
  width: 100%;
  display: block;
  margin: 0 auto;
  text-align: center;
  text-transform: uppercase;
  border: 0;
  color: #000;
  text-decoration: none;
  letter-spacing: 2px;
  word-spacing: 10px;
}

@media (min-width: 1199px) {
  header #logo a {
    word-spacing: 20px;
  }
}

header #logo a:hover, header #logo a:focus {
  color: #666;
}

/*=================================================================================
	SIDEBARS
=================================================================================*/
#sidebar {
  padding-top: calc(2.27273vw + 2.72727px);
}

@media (max-width: 320px) {
  #sidebar {
    padding-top: 10px;
  }
}

@media (min-width: 1200px) {
  #sidebar {
    padding-top: 30px;
  }
}

@media (min-width: 767px) {
  #sidebar {
    padding-top: 0;
    border-top: 0;
    border-left: 0.0625rem solid #444;
  }
}

#sidebar span.tagstitle {
  display: block;
  color: #000;
  margin-bottom: calc(0.56818vw + 8.18182px);
}

@media (max-width: 320px) {
  #sidebar span.tagstitle {
    margin-bottom: 10px;
  }
}

@media (min-width: 1200px) {
  #sidebar span.tagstitle {
    margin-bottom: 15px;
  }
}

#sidebar > ul {
  margin-bottom: calc(3.40909vw + 19.09091px);
}

@media (max-width: 320px) {
  #sidebar > ul {
    margin-bottom: 30px;
  }
}

@media (min-width: 1200px) {
  #sidebar > ul {
    margin-bottom: 60px;
  }
}

#sidebar > ul:first-of-type {
  border-top: 1px solid #000;
  padding-top: calc(2.27273vw + 2.72727px);
}

@media (max-width: 320px) {
  #sidebar > ul:first-of-type {
    padding-top: 10px;
  }
}

@media (min-width: 1200px) {
  #sidebar > ul:first-of-type {
    padding-top: 30px;
  }
}

@media (min-width: 479px) {
  #sidebar > ul {
    width: 50%;
    float: left;
  }
  #sidebar > ul:nth-of-type(2) {
    border-top: 1px solid #000;
    padding-top: calc(2.27273vw + 2.72727px);
  }
}

@media (min-width: 479px) and (max-width: 320px) {
  #sidebar > ul:nth-of-type(2) {
    padding-top: 10px;
  }
}

@media (min-width: 479px) and (min-width: 1200px) {
  #sidebar > ul:nth-of-type(2) {
    padding-top: 30px;
  }
}

@media (min-width: 767px) {
  #sidebar > ul:first-of-type, #sidebar > ul:nth-of-type(2) {
    width: 100%;
    float: none;
    border-top: 0;
    padding-top: 0;
  }
}

#sidebar ul li:first-of-type {
  margin-bottom: 0.3125rem;
}

#sidebar ul li strong {
  display: block;
  margin-bottom: calc(0.56818vw + 8.18182px);
  color: #000;
}

@media (max-width: 320px) {
  #sidebar ul li strong {
    margin-bottom: 10px;
  }
}

@media (min-width: 1200px) {
  #sidebar ul li strong {
    margin-bottom: 15px;
  }
}

#sidebar ul.recent li {
  padding-top: calc(0.56818vw + 3.18182px);
  padding-bottom: calc(0.56818vw + 3.18182px);
  text-transform: uppercase;
}

@media (max-width: 320px) {
  #sidebar ul.recent li {
    padding-top: 5px;
  }
}

@media (min-width: 1200px) {
  #sidebar ul.recent li {
    padding-top: 10px;
  }
}

@media (max-width: 320px) {
  #sidebar ul.recent li {
    padding-bottom: 5px;
  }
}

@media (min-width: 1200px) {
  #sidebar ul.recent li {
    padding-bottom: 10px;
  }
}

#sidebar ul.recent li:first-of-type {
  padding: 0;
}

#sidebar ul.recent li a {
  border-bottom: 1px solid #FFF;
  font-weight: 700;
}

#sidebar ul.recent li a:hover, #sidebar ul.recent li a:focus {
  border-color: #000;
}

#sidebar ul.recent li small.meta {
  display: block;
  padding-top: 0.625rem;
}

#sidebar ul.categories {
  list-style: none;
}

#sidebar ul.categories li {
  font-weight: 700;
  text-transform: uppercase;
}

#sidebar ul.categories li a {
  border-bottom: 1px solid #FFF;
}

#sidebar ul.categories li a:hover, #sidebar ul.categories li a:focus {
  border-color: #000;
}

#sidebar ul.categories li ul {
  padding-top: calc(0.56818vw + 3.18182px);
  padding-bottom: calc(0.56818vw + 3.18182px);
  margin-bottom: calc(0.56818vw + 8.18182px);
}

@media (max-width: 320px) {
  #sidebar ul.categories li ul {
    padding-top: 5px;
  }
}

@media (min-width: 1200px) {
  #sidebar ul.categories li ul {
    padding-top: 10px;
  }
}

@media (max-width: 320px) {
  #sidebar ul.categories li ul {
    padding-bottom: 5px;
  }
}

@media (min-width: 1200px) {
  #sidebar ul.categories li ul {
    padding-bottom: 10px;
  }
}

@media (max-width: 320px) {
  #sidebar ul.categories li ul {
    margin-bottom: 10px;
  }
}

@media (min-width: 1200px) {
  #sidebar ul.categories li ul {
    margin-bottom: 15px;
  }
}

#sidebar ul.categories li ul li {
  font-weight: 400;
  text-transform: none;
  margin-bottom: 0.625rem;
}

#sidebar ul.wp-tag-cloud {
  clear: both;
  border-top: 0;
  padding-top: 0;
  width: 100%;
}

#sidebar ul.wp-tag-cloud li {
  float: left;
  margin-right: 0.3125rem;
  margin-bottom: 0.3125rem;
}

#sidebar ul.wp-tag-cloud li a {
  color: #000;
  background: #FFF;
  border: 1px solid #000 !important;
  font-size: calc(0.22727vw + 11.27273px);
  padding-left: calc(1.13636vw + 6.36364px);
  padding-right: calc(1.13636vw + 6.36364px);
  padding-top: calc(0.56818vw + 3.18182px);
  padding-bottom: calc(0.56818vw + 3.18182px);
  margin: 0;
  cursor: pointer;
  border: 0;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s ease-in-out;
  -webkit-appearance: none;
  /*Stops iOS from taking over how buttons look*/
  padding: 0.5em 1em;
}

@media (max-width: 320px) {
  #sidebar ul.wp-tag-cloud li a {
    font-size: 12px;
  }
}

@media (min-width: 1200px) {
  #sidebar ul.wp-tag-cloud li a {
    font-size: 14px;
  }
}

@media (max-width: 320px) {
  #sidebar ul.wp-tag-cloud li a {
    padding-left: 10px;
  }
}

@media (min-width: 1200px) {
  #sidebar ul.wp-tag-cloud li a {
    padding-left: 20px;
  }
}

@media (max-width: 320px) {
  #sidebar ul.wp-tag-cloud li a {
    padding-right: 10px;
  }
}

@media (min-width: 1200px) {
  #sidebar ul.wp-tag-cloud li a {
    padding-right: 20px;
  }
}

@media (max-width: 320px) {
  #sidebar ul.wp-tag-cloud li a {
    padding-top: 5px;
  }
}

@media (min-width: 1200px) {
  #sidebar ul.wp-tag-cloud li a {
    padding-top: 10px;
  }
}

@media (max-width: 320px) {
  #sidebar ul.wp-tag-cloud li a {
    padding-bottom: 5px;
  }
}

@media (min-width: 1200px) {
  #sidebar ul.wp-tag-cloud li a {
    padding-bottom: 10px;
  }
}

#sidebar ul.wp-tag-cloud li a:hover, #sidebar ul.wp-tag-cloud li a:focus {
  background: #EDEDED;
}

/*=================================================================================
	FOOTER
=================================================================================*/
footer {
  background: #FFF;
  padding-top: calc(2.27273vw + 2.72727px);
  padding-bottom: calc(2.27273vw + 2.72727px);
}

@media (max-width: 320px) {
  footer {
    padding-top: 10px;
  }
}

@media (min-width: 1200px) {
  footer {
    padding-top: 30px;
  }
}

@media (max-width: 320px) {
  footer {
    padding-bottom: 10px;
  }
}

@media (min-width: 1200px) {
  footer {
    padding-bottom: 30px;
  }
}

footer ul {
  padding-top: 10 !important;
  padding-bottom: 10 !important;
  font-size: 0;
  margin: 0;
}

@media (min-width: 599px) {
  footer ul {
    text-align: left;
  }
}

footer ul li {
  font-size: calc(0.22727vw + 11.27273px);
  list-style: none;
  display: block;
  padding-top: 0.625rem;
  padding-right: 1.25rem;
  margin: 0;
}

@media (max-width: 320px) {
  footer ul li {
    font-size: 12px;
  }
}

@media (min-width: 1200px) {
  footer ul li {
    font-size: 14px;
  }
}

@media (min-width: 599px) {
  footer ul li {
    display: inline-block;
  }
  footer ul li:last-of-type {
    padding-right: 0;
  }
}

footer ul li a {
  border: 0;
  text-decoration: none;
  display: inline;
  color: #2b2b2b;
}

footer ul li a:hover, footer ul li a:focus {
  color: #000;
}

footer ul li.goop svg {
  margin-left: 0.3125rem;
  vertical-align: top;
  transition: none;
  width: 2.1875rem;
  height: 1.125rem;
  transition: opacity 0.3s ease-in-out;
  opacity: 0.7;
}

footer ul li.goop svg path {
  fill: #000;
}

footer ul li.goop:hover svg, footer ul li.goop:focus svg {
  opacity: 1;
}

@media (min-width: 599px) {
  footer ul:last-of-type {
    text-align: right;
  }
}

footer ul:last-of-type li:last-child {
  padding-right: 0;
}

/* Templates */
/*=================================================================================
	POSTS AND CHILDREN
=================================================================================*/
.type-page, .type-post {
  margin-top: calc(2.27273vw + 2.72727px);
  padding-bottom: calc(2.27273vw + 2.72727px);
}

@media (max-width: 320px) {
  .type-page, .type-post {
    margin-top: 10px;
  }
}

@media (min-width: 1200px) {
  .type-page, .type-post {
    margin-top: 30px;
  }
}

@media (max-width: 320px) {
  .type-page, .type-post {
    padding-bottom: 10px;
  }
}

@media (min-width: 1200px) {
  .type-page, .type-post {
    padding-bottom: 30px;
  }
}

.type-page:first-of-type, .type-post:first-of-type {
  margin-top: 0;
  border-top: 0;
}

@media (min-width: 599px) {
  .type-page .image, .type-post .image {
    padding-left: 0;
  }
  .type-page .description, .type-post .description {
    padding-left: 0;
    padding-right: 0;
  }
}

@media only screen and (min-width: 1300px) {
  .type-page body:not(#home):before, .type-post body:not(#home):before {
    content: '';
    position: absolute;
    top: 0;
    left: calc(-1.70455vw + -39.54545px);
    width: calc(1.70455vw + 24.54545px);
    height: calc(1.70455vw + 24.54545px);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
  }
}

@media only screen and (min-width: 1300px) and (max-width: 320px) {
  .type-page body:not(#home):before, .type-post body:not(#home):before {
    left: -45px;
  }
}

@media only screen and (min-width: 1300px) and (min-width: 1200px) {
  .type-page body:not(#home):before, .type-post body:not(#home):before {
    left: -60px;
  }
}

@media only screen and (min-width: 1300px) and (max-width: 320px) {
  .type-page body:not(#home):before, .type-post body:not(#home):before {
    width: 30px;
  }
}

@media only screen and (min-width: 1300px) and (min-width: 1200px) {
  .type-page body:not(#home):before, .type-post body:not(#home):before {
    width: 45px;
  }
}

@media only screen and (min-width: 1300px) and (max-width: 320px) {
  .type-page body:not(#home):before, .type-post body:not(#home):before {
    height: 30px;
  }
}

@media only screen and (min-width: 1300px) and (min-width: 1200px) {
  .type-page body:not(#home):before, .type-post body:not(#home):before {
    height: 45px;
  }
}

@media only screen and (min-width: 1300px) {
  .type-page body:not(#home).category-food:before, .type-page body:not(#home).category-eating-out:before, .type-page body:not(#home).category-in-my-kitchen:before, .type-post body:not(#home).category-food:before, .type-post body:not(#home).category-eating-out:before, .type-post body:not(#home).category-in-my-kitchen:before {
    background-image: url(assets/img/icons/icon-food.svg);
  }
  .type-page body:not(#home).category-garden:before, .type-page body:not(#home).category-edible-garden:before, .type-page body:not(#home).category-flora:before, .type-post body:not(#home).category-garden:before, .type-post body:not(#home).category-edible-garden:before, .type-post body:not(#home).category-flora:before {
    background-image: url(assets/img/icons/icon-garden.svg);
  }
  .type-page body:not(#home).category-travel:before, .type-page body:not(#home).category-going-local:before, .type-page body:not(#home).category-overseas:before, .type-post body:not(#home).category-travel:before, .type-post body:not(#home).category-going-local:before, .type-post body:not(#home).category-overseas:before {
    background-image: url(assets/img/icons/icon-travel.svg);
  }
  .type-page body:not(#home).category-titbits:before, .type-post body:not(#home).category-titbits:before {
    background-image: url(assets/img/icons/icon-titbits.svg);
  }
}

.type-page h2.title a, .type-post h2.title a {
  text-decoration: none;
  padding: 0;
  margin: 0;
  border-bottom: 1px solid #FFF;
}

.type-page h2.title a:hover, .type-page h2.title a:focus, .type-post h2.title a:hover, .type-post h2.title a:focus {
  color: #000;
  border-color: #000;
}

.type-page .image img, .type-post .image img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: calc(0.56818vw + 8.18182px);
}

@media (max-width: 320px) {
  .type-page .image img, .type-post .image img {
    margin-bottom: 10px;
  }
}

@media (min-width: 1200px) {
  .type-page .image img, .type-post .image img {
    margin-bottom: 15px;
  }
}

.type-page .image a, .type-page .image a:hover, .type-page .image a:focus, .type-post .image a, .type-post .image a:hover, .type-post .image a:focus {
  border: 0;
  padding: 0;
  margin: 0;
}

/*=================================================================================
	HOMEPAGE
=================================================================================*/
#home main[class*="row-of"] {
  padding-left: calc(2.27273vw + 2.72727px);
  padding-right: calc(2.27273vw + 2.72727px);
}

@media (max-width: 320px) {
  #home main[class*="row-of"] {
    padding-left: 10px;
  }
}

@media (min-width: 1200px) {
  #home main[class*="row-of"] {
    padding-left: 30px;
  }
}

@media (max-width: 320px) {
  #home main[class*="row-of"] {
    padding-right: 10px;
  }
}

@media (min-width: 1200px) {
  #home main[class*="row-of"] {
    padding-right: 30px;
  }
}

#home main article {
  margin: 0;
  padding: 0;
  padding-left: 0;
  padding-right: 0;
}

@media (max-width: 479px) {
  .touch #home main article {
    margin-bottom: calc(2.27273vw + 2.72727px);
  }
}

@media (max-width: 479px) and (max-width: 320px) {
  .touch #home main article {
    margin-bottom: 10px;
  }
}

@media (max-width: 479px) and (min-width: 1200px) {
  .touch #home main article {
    margin-bottom: 30px;
  }
}

#home main article a {
  display: block;
  border: 0 !important;
  font-size: 0;
}

#home main article a img {
  margin: 0;
}

#home main article a .inner {
  background: rgba(255, 255, 255, 0.5);
  position: absolute;
  bottom: -1.875rem;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  padding-top: calc(4.54545vw + 5.45455px);
  transition: all 0.3s ease;
  opacity: 0;
}

@media (max-width: 320px) {
  #home main article a .inner {
    padding-top: 20px;
  }
}

@media (min-width: 1200px) {
  #home main article a .inner {
    padding-top: 60px;
  }
}

.touch #home main article a .inner {
  background: rgba(255, 255, 255, 0.7);
  opacity: 1.0;
  bottom: 0;
}

#home main article a .inner h2 {
  padding: 0 0.625rem;
  color: #000;
  position: relative;
}

#home main article a .inner h2:before {
  content: '';
  position: absolute;
  top: -7.5rem;
  left: 0;
  width: 100%;
  height: 1.875rem;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  transition: all 0.3s ease-in-out;
}

#home main article a:hover .inner, #home main article a:focus .inner {
  background: rgba(255, 255, 255, 0.8);
  opacity: 1.0;
  bottom: 0;
}

#home main article a:hover .inner h2:before, #home main article a:focus .inner h2:before {
  top: -2.8125rem;
}

#home main article.category-food h2:before, #home main article.category-eating-out h2:before, #home main article.category-in-my-kitchen h2:before {
  background-image: url(assets/img/icons/icon-food.svg);
}

#home main article.category-garden h2:before, #home main article.category-edible-garden h2:before, #home main article.category-flora h2:before {
  background-image: url(assets/img/icons/icon-garden.svg);
}

#home main article.category-travel h2:before, #home main article.category-going-local h2:before, #home main article.category-overseas h2:before {
  background-image: url(assets/img/icons/icon-travel.svg);
}

#home main article.category-titbits h2:before {
  background-image: url(assets/img/icons/icon-titbits.svg);
}

/*=================================================================================
	ARCHIVES
=================================================================================*/
.blog #content .row,
.archive #content .row {
  max-width: 1200px;
}

/*=================================================================================
	SINGLE POSTS
=================================================================================*/
.single main article small.meta {
  margin-bottom: calc(2.27273vw + 2.72727px);
}

@media (max-width: 320px) {
  .single main article small.meta {
    margin-bottom: 10px;
  }
}

@media (min-width: 1200px) {
  .single main article small.meta {
    margin-bottom: 30px;
  }
}

.single main article .tagstitle {
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.3125rem;
}

.single main article .tags {
  margin: 0;
  padding: 0;
}

.single main article .tags li {
  list-style: none;
  display: inline-block;
  margin-right: 1px;
}

.single main article .tags li a {
  color: #000;
  background: #FFF;
  border: 1px solid #000 !important;
  font-size: calc(0.22727vw + 11.27273px);
  padding-left: calc(1.13636vw + 6.36364px);
  padding-right: calc(1.13636vw + 6.36364px);
  padding-top: calc(0.56818vw + 3.18182px);
  padding-bottom: calc(0.56818vw + 3.18182px);
  margin: 0;
  cursor: pointer;
  border: 0;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s ease-in-out;
  -webkit-appearance: none;
  /*Stops iOS from taking over how buttons look*/
  padding-left: calc(0.56818vw + 3.18182px);
  padding-right: calc(0.56818vw + 3.18182px);
  padding-top: calc(0.28409vw + 1.59091px);
  padding-bottom: calc(0.28409vw + 1.59091px);
}

@media (max-width: 320px) {
  .single main article .tags li a {
    font-size: 12px;
  }
}

@media (min-width: 1200px) {
  .single main article .tags li a {
    font-size: 14px;
  }
}

@media (max-width: 320px) {
  .single main article .tags li a {
    padding-left: 10px;
  }
}

@media (min-width: 1200px) {
  .single main article .tags li a {
    padding-left: 20px;
  }
}

@media (max-width: 320px) {
  .single main article .tags li a {
    padding-right: 10px;
  }
}

@media (min-width: 1200px) {
  .single main article .tags li a {
    padding-right: 20px;
  }
}

@media (max-width: 320px) {
  .single main article .tags li a {
    padding-top: 5px;
  }
}

@media (min-width: 1200px) {
  .single main article .tags li a {
    padding-top: 10px;
  }
}

@media (max-width: 320px) {
  .single main article .tags li a {
    padding-bottom: 5px;
  }
}

@media (min-width: 1200px) {
  .single main article .tags li a {
    padding-bottom: 10px;
  }
}

.single main article .tags li a:hover, .single main article .tags li a:focus {
  background: #EDEDED;
}

@media (max-width: 320px) {
  .single main article .tags li a {
    padding-left: 5px;
  }
}

@media (min-width: 1200px) {
  .single main article .tags li a {
    padding-left: 10px;
  }
}

@media (max-width: 320px) {
  .single main article .tags li a {
    padding-right: 5px;
  }
}

@media (min-width: 1200px) {
  .single main article .tags li a {
    padding-right: 10px;
  }
}

@media (max-width: 320px) {
  .single main article .tags li a {
    padding-top: 2.5px;
  }
}

@media (min-width: 1200px) {
  .single main article .tags li a {
    padding-top: 5px;
  }
}

@media (max-width: 320px) {
  .single main article .tags li a {
    padding-bottom: 2.5px;
  }
}

@media (min-width: 1200px) {
  .single main article .tags li a {
    padding-bottom: 5px;
  }
}

@media only screen and (min-width: 1300px) {
  .single main article .image {
    position: relative;
  }
  .single main article .image:before {
    content: '';
    position: absolute;
    top: 0;
    left: calc(-1.70455vw + -39.54545px);
    width: calc(1.70455vw + 24.54545px);
    height: calc(1.70455vw + 24.54545px);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
  }
}

@media only screen and (min-width: 1300px) and (max-width: 320px) {
  .single main article .image:before {
    left: -45px;
  }
}

@media only screen and (min-width: 1300px) and (min-width: 1200px) {
  .single main article .image:before {
    left: -60px;
  }
}

@media only screen and (min-width: 1300px) and (max-width: 320px) {
  .single main article .image:before {
    width: 30px;
  }
}

@media only screen and (min-width: 1300px) and (min-width: 1200px) {
  .single main article .image:before {
    width: 45px;
  }
}

@media only screen and (min-width: 1300px) and (max-width: 320px) {
  .single main article .image:before {
    height: 30px;
  }
}

@media only screen and (min-width: 1300px) and (min-width: 1200px) {
  .single main article .image:before {
    height: 45px;
  }
}

@media only screen and (min-width: 1300px) {
  .single main article.category-food .image:before, .single main article.category-eating-out .image:before, .single main article.category-in-my-kitchen .image:before {
    background-image: url(assets/img/icons/icon-food.svg);
  }
  .single main article.category-garden .image:before, .single main article.category-edible-garden .image:before, .single main article.category-flora .image:before {
    background-image: url(assets/img/icons/icon-garden.svg);
  }
  .single main article.category-travel .image:before, .single main article.category-going-local .image:before, .single main article.category-overseas .image:before {
    background-image: url(assets/img/icons/icon-travel.svg);
  }
  .single main article.category-titbits .image:before {
    background-image: url(assets/img/icons/icon-titbits.svg);
  }
}

/* Standard Goop add-ons */
/*=================================================================================
	STATIC IMAGE BANNER
=================================================================================*/
#banner {
  height: 100vh;
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.ie #banner {
  display: block;
}

#banner img {
  display: block;
  margin: 0 auto;
  max-height: 100vh;
  padding: calc(2.27273vw + 2.72727px);
}

@media (max-width: 320px) {
  #banner img {
    padding: 10px;
  }
}

@media (min-width: 1200px) {
  #banner img {
    padding: 30px;
  }
}

#banner #scroll-button {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  padding-bottom: calc(2.27273vw + 2.72727px);
  -webkit-animation: bounce;
          animation: bounce;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-iteration-count: 5;
          animation-iteration-count: 5;
}

@media (max-width: 320px) {
  #banner #scroll-button {
    padding-bottom: 10px;
  }
}

@media (min-width: 1200px) {
  #banner #scroll-button {
    padding-bottom: 30px;
  }
}

@-webkit-keyframes bounce {
  0% {
    bottom: 5px;
  }
  25%, 75% {
    bottom: 15px;
  }
  50% {
    bottom: 20px;
  }
  100% {
    bottom: 0;
  }
}

#banner #scroll-button a {
  border: 0 !important;
}

#banner #scroll-button a:hover, #banner #scroll-button a:focus {
  color: #666;
}

#banner #scroll-button a i {
  font-size: 6.25rem;
}

/* Plugins */
/* Overrides */
/*=================================================================================
	IE
=================================================================================*/
.lt-ie9 html, .lt-ie9 body {
  font-size: 100%;
}

/*=================================================================================
	BROWSER WARNING
=================================================================================*/
#browser {
  text-align: center;
  padding: 0;
  background: #ffffcc;
  margin: 0;
  font-size: 70%;
  width: 100%;
  border-bottom: 1px solid #cccccc;
  font-family: "Lato", Arial, sans-serif;
  z-index: 10000;
  position: relative;
}

#browser span {
  display: block;
  width: 960px;
  margin: 0 auto;
  padding: 3px;
  color: #666666;
}

#browser span a {
  color: #000;
  text-decoration: none;
}

#browser span a:hover,
#browser span a:focus {
  background: none;
  color: #000;
  text-decoration: underline;
}

/*# sourceMappingURL=style.css.map */