@charset "UTF-8";
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,400,700&subset=latin,latin-ext);
@import url(https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300,700&subset=latin,latin-ext);
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

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

/*------------------------------------------------------------------

Project:    Crumpet
Version:	1.0

###

Crumpet is a deliciously simple SASS/SCSS responsive framework that keeps 
your HTML clean & stays out of your way.

Any problems, ideas or questions post an issue, hit me up on twitter @AdamMarsdenUK 
or find some other fancy way to get in touch, it's the 21st century after all.

Built with flour & yeast by Adam Marsden - adam-marsden.co.uk

------------------------------------------------------------------*/
/* Width of containers */
/* Responsive Break Points */
/* Resets */
* {
  margin: 0;
  padding: 0;
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* Body */
body {
  font: 1em/1.5em 'Source Sans Pro', sans-serif;
  color: #707070;
}

/*------------------------------------------------------------------

[Grid - Desktop]

To set the width of a column on desktops do this:

	@extend %grid-*a number*;

You make certain classes not display on desktop by adding:

	@extend %desktop_none;

------------------------------------------------------------------*/
.container {
  max-width: 1200px;
  margin: 0 auto;
}

.row {
  padding: 10px 0;
  zoom: 1;
}
.row:before, .row:after {
  content: "";
  display: table;
}
.row:after {
  clear: both;
}

.col, .details .photos, .details .description, form.styled .element {
  float: left;
}

/* Grid widths */
.details .photos, .details .description, form.styled .element {
  width: 50%;
}

.details.details--simple .photos {
  width: 100%;
}

/*------------------------------------------------------------------

[Grid - Tablet]

To set the width of a column on tablets do this:

	@extend %tablet_grid-*a number*;

You make certain classes not display on tablet by adding:

	@extend %tablet_none;

------------------------------------------------------------------*/
@media only screen and (min-width: 725px) and (max-width: 1200px) {
  .container {
    max-width: 700px;
  }

  /* Column widths for tablet */
  .details .photos, .details .description, form.styled .element {
    width: 50%;
  }

  .details.details--simple .photos {
    width: 100%;
  }
}
/*------------------------------------------------------------------

[Grid - Mobile]

To set the width of a column on mobiles do this:

	@extend %mobile_grid-*a number*;

or

	@extend %mobile_full;

for a full width column.


You make certain classes not display on mobile by adding:

	@extend %mobile_none;

------------------------------------------------------------------*/
@media only screen and (max-width: 724px) {
  .container {
    max-width: 95%;
  }

  /* Grid widths for mobile */
  .details.details--simple .photos {
    left: auto;
    clear: both;
    float: none;
    width: 100%;
    display: block;
  }

  .details .photos, .details .description, form.styled .element {
    width: 50%;
  }
}
html, body {
  width: 100%;
  height: 100%;
}

body {
  background: #fff;
  font: 16px 'Open Sans', Verdana, Arial, Tahoma, Sans;
  padding-top: 88px;
}
body.admin {
  padding-right: 130px;
}
body.admin #header {
  right: 130px;
  width: calc(100% - 130px);
}

i, em {
  font-style: italic;
}

strong, b {
  font-weight: bold;
}

ul, ol {
  padding-left: 20px;
}

h1 {
  font-family: 'Open Sans Condensed', 'Open Sans', Verdana, Arial, Tahoma, Sans;
  font-size: 1.8em;
  margin-bottom: 18px;
  color: #000;
}

h3, h4 {
  font-weight: bold;
}

input, select, textarea {
  line-height: 1.5em;
  font: .9em 'Open Sans', Verdana, Arial, Tahoma, Sans;
  color: #2b2b2b;
  border: 1px solid #999;
}
input:hover, select:hover, textarea:hover {
  border-color: #666;
}
input:focus, select:focus, textarea:focus {
  border-color: #333;
  outline: none;
}

.alert {
  border: 1px solid rgba(0, 0, 0, 0.3);
  background: rgba(0, 0, 0, 0.05);
  padding: 10px;
  margin-bottom: 20px;
}

#header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  width: 100%;
  background: #fff;
  border-bottom: 3px solid #6dab13;
}
#header .logo {
  float: left;
}
#header nav {
  float: right;
}
#header nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
#header nav ul li {
  float: left;
}
#header nav ul li a {
  font-family: 'Open Sans Condensed', 'Open Sans', Verdana, Arial, Tahoma, Sans;
  display: block;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
  color: #2b2b2b;
  font-size: .95em;
  line-height: 1em;
  margin-left: 20px;
  padding: 25px 0;
}
#header nav ul li a:hover {
  opacity: .8;
}
#header nav ul li.current a {
  color: #6dab13;
}

@media (max-width: 1250px) {
  .container {
    margin-left: 20px;
    margin-right: 20px;
    width: auto;
    max-width: 1000000px;
  }
}
.slider {
  position: relative;
  height: 400px;
  white-space: nowrap;
  overflow: hidden;
}
.slider .pagination {
  position: absolute;
  list-style: none;
  z-index: 2;
  padding: 0;
  margin: 0;
  bottom: 20px;
  right: 15px;
}
.slider .pagination li {
  float: left;
  margin-right: 11px;
}
.slider .pagination li a {
  display: inline-block;
  border-radius: 50%;
  width: 15px;
  height: 15px;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.35);
  text-decoration: none;
}
.slider .pagination li.current a {
  background: rgba(0, 0, 0, 0.3);
}
.slider .slider-container {
  position: relative;
  width: 100%;
  left: 0;
  -webkit-transition: 300ms left ease-in-out;
  -moz-transition: 300ms left ease-in-out;
  -ms-transition: 300ms left ease-in-out;
  -o-transition: 300ms left ease-in-out;
  transition: 300ms left ease-in-out;
}
.slider .slider-container > .slide {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
  background-size: cover;
  -webkit-background-size: cover;
  background-position: 50% 30%;
}
.slider .slider-container > .slide .actions {
  display: none;
  position: absolute;
  z-index: 5;
  left: 5px;
  top: 5px;
}
.slider .slider-container > .slide .actions a {
  display: inline-block;
  font-size: .9em;
  background: rgba(0, 0, 0, 0.8);
  padding: 5px 10px;
  text-decoration: none;
  color: #fff;
}
.slider .slider-container > .slide .actions a:hover {
  background: rgba(0, 0, 0, 0.9);
}
.slider .slider-container > .slide:hover .actions {
  display: block;
}
.slider .slider-container > .slide > .container {
  height: 100%;
}
.slider .slider-container > .slide h3 {
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -1.5em;
  background: #6dab13;
  color: #fff;
  font-weight: bold;
  font-size: 2em;
  text-transform: uppercase;
  line-height: 1.5em;
  padding: 0 15px;
}
.slider .slider-container > .slide h3[contenteditable] {
  min-width: 50px;
}
.slider .slider-container > .slide span {
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  padding: 0 15px;
  margin-top: .2em;
  background: #fff;
  color: #2b2b2b;
  font-size: 1.5em;
  line-height: 1.5em;
}
.slider .slider-container > .slide span[contenteditable] {
  min-width: 50px;
}

.modal {
  position: fixed;
  top: 15%;
  left: 50%;
  width: 450px;
  margin-left: -225px;
  z-index: 100000;
  background: #fff;
  border: 1px solid #ddd;
  font-size: 14px;
  display: none;
}
.modal.visible {
  display: block;
}
.modal > form {
  margin: 0;
  padding: 0;
}
.modal > form > .header, .modal > form > .content, .modal > form > .footer {
  padding: 10px 15px;
  margin: 0;
}
.modal > form > .header {
  background: #666;
  color: #fff;
  font-size: 18px;
  font-weight: normal;
}
.modal > form > .content {
  background: #fff;
}
.modal > form > .content .element {
  position: relative;
  margin: 0 3px;
  padding: 8px 5px 8px 130px;
  border-bottom: 1px solid #eee;
}
.modal > form > .content .element label {
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -14px;
  line-height: 28px;
  width: 130px;
  display: inline-block;
  white-space: nowrap;
}
.modal > form > .content .element input, .modal > form > .content .element select, .modal > form > .content .element textarea {
  padding: 5px 10px;
}
.modal > form > .content .element:last-child {
  border-bottom: 0;
}
.modal > form > .footer {
  background: #eee;
  font-size: 14px;
  font-weight: normal;
  vertical-align: middle;
}
.modal > form > .footer > * {
  margin-right: 10px;
}
.modal > form > .footer > button {
  padding: 10px 20px;
  color: #fff;
  background: #6dab13;
  border: 0;
  cursor: pointer;
}
.modal > form > .footer > button:hover {
  opacity: .8;
}
.modal > form > .footer > a {
  color: #333;
  text-decoration: underline;
}
.modal > form > .footer > a:hover {
  text-decoration: none;
}
.modal:before {
  content: '';
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.9);
}

.page-header {
  background: #6dab13;
  border-bottom: 3px solid #619811;
  padding: 15px 0;
  color: #fff;
}
.page-header h1 {
  color: #fff;
  margin: 0;
  font-size: 2em;
  font-weight: bold;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.page-header h1 div {
  display: inline-block;
}
.page-header h1 span {
  font-family: 'Open Sans', Verdana, Arial, Tahoma, Sans;
  margin-top: .9em;
  float: right;
  font-size: .4em;
  font-weight: normal;
}

#content {
  padding: 25px 0;
  line-height: 1.5em;
  text-align: justify;
}
#content a {
  color: #6dab13;
  text-decoration: underline;
}
#content a:hover {
  text-decoration: none;
}
#content p {
  margin: 10px 0;
}

.call-to-action {
  position: relative;
  padding: 30px 0;
  background: #789e41 url(../images/call-to-action.png) 50% 50% no-repeat;
  background-size: cover;
  -webkit-background-size: cover;
  border-top: 1px solid #6f923c;
  color: #fff;
  text-align: center;
}
.call-to-action h5 {
  font-weight: normal;
  font-size: 1.2em;
  line-height: 1.5em;
  color: #fff;
  margin: .7em 0;
}
.call-to-action a {
  display: inline-block;
  padding: 10px 15px;
  font-family: 'Open Sans Condensed', 'Open Sans', Verdana, Arial, Tahoma, Sans;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
  background: rgba(0, 0, 0, 0.2);
}
.call-to-action a:hover {
  background: rgba(0, 0, 0, 0.4);
}
.call-to-action:before {
  content: '';
  position: absolute;
  top: -2px;
  left: 50%;
  margin-left: -15px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 15px 0 15px;
  border-color: #ffffff transparent transparent transparent;
}

#footer {
  font-weight: 300;
  font-family: 'Open Sans Condensed', 'Open Sans', Verdana, Arial, Tahoma, Sans;
  padding: 15px 0;
  background: #dbe5cc;
}
#footer .logo {
  float: left;
}
#footer nav {
  float: right;
  font-size: .9em;
  padding-top: 19px;
}
#footer nav ul {
  list-style-type: none;
}
#footer nav ul li {
  float: left;
  color: #707c5e;
}
#footer nav ul li a {
  color: #707c5e;
  text-decoration: none;
}
#footer nav ul li a:hover {
  text-decoration: underline;
}
#footer nav ul li:after {
  content: '•';
  display: inline-block;
  padding: 0 15px;
}
#footer nav ul li:last-child:after {
  display: none;
}

#admin {
  background: #000;
  position: fixed;
  z-index: 10001;
  top: 0;
  right: 0;
  bottom: 0;
  font-size: .85em;
  width: 130px;
}
#admin ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
#admin ul li a {
  display: block;
  background: #000;
  color: #fff;
  text-decoration: none;
  padding: 10px 0;
  text-align: center;
}
#admin ul li a:hover {
  background: #333;
}
#admin ul.bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.portfolio {
  list-style-type: none;
  margin: 10px -3px;
  padding: 0;
}
.portfolio li {
  position: relative;
  display: block;
  float: left;
  width: 33.3333%;
  padding-top: 22.2222%;
}
.portfolio li a {
  display: block;
  position: absolute;
  left: 3px;
  top: 3px;
  bottom: 3px;
  right: 3px;
  overflow: hidden;
}
.portfolio li a .description, .portfolio li a .photo {
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.portfolio li a .photo {
  background: #eee 50% 50% no-repeat;
  background-size: cover;
  -webkit-background-size: cover;
}
.portfolio li a .photo img {
  display: block;
  opacity: 0;
  transition: 500ms opacity linear;
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.portfolio li a .photo.photo--empty {
  background-image: url(../images/no-photo.png);
}
.portfolio li a .photo.photo--ready img {
  opacity: 1;
}
.portfolio li a .photo.photo--loading:before {
  content: '';
  pointer-events: none;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(50%,#f6f6f6), to(transparent));
  background: linear-gradient(90deg, transparent 0, #f6f6f6 50%, transparent);
  animation: lazy-image-loader 1.5s cubic-bezier(0.4, 0.0, 0.2, 1) infinite;
}
.portfolio li a .description {
  opacity: 0;
  z-index: 2;
  background: rgba(109, 171, 19, 0.7) url(../images/zoom.png) 50% 35% no-repeat;
  color: #fff;
  text-decoration: none;
  text-align: center;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  padding-top: 32%;
}
.portfolio li a .description h5 {
  font-size: 1.2em;
  margin-bottom: 5px;
}
.portfolio li a:hover .photo {
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
}
.portfolio li a:hover .description {
  opacity: 1;
}

.details.details--simple .photos {
  padding-right: 0;
}
.details.details--simple .photos .portfolio li {
  width: 20%;
  padding-top: 10%;
}
.details .photos {
  padding-right: 10px;
}
.details .photos .big {
  width: 100%;
  height: auto;
}
.details .photos .portfolio {
  margin-top: 3px;
}
.details .photos .portfolio li a:after {
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: block;
  z-index: 2;
  opacity: 0;
  background: rgba(109, 171, 19, 0.7) url(../images/zoom.png) 50% 50% no-repeat;
}
.details .photos .portfolio li a .remove, .details .photos .portfolio li a .default {
  display: none;
  position: absolute;
  z-index: 3;
  background: #000;
  color: #fff;
  text-decoration: none;
  font-size: .8em;
  padding: 5px 8px;
}
.details .photos .portfolio li a .remove {
  right: 0;
  bottom: 0;
}
.details .photos .portfolio li a .default {
  left: 0;
  top: 0;
}
.details .photos .portfolio li a:hover .remove, .details .photos .portfolio li a:hover .default {
  display: block;
}
.details .photos .portfolio li a:hover:after {
  opacity: 1;
}
.details .photos .portfolio li[data-default] a:hover .default {
  display: none;
}
.details .description {
  padding-left: 10px;
}

.lightbox {
  display: table;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 100000;
}
.lightbox .lightbox-content {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  max-width: 90%;
}
.lightbox .lightbox-arrow {
  color: #fff;
  text-decoration: none;
  font-size: 10vh;
  margin: 0 10px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.lightbox .lightbox-arrow--previous {
  position: absolute;
  left: 10%;
  top: 50%;
  transform: translateY(-50%);
}
.lightbox .lightbox-arrow--next {
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}

form.styled {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-top: 7px solid #6dab13;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.05);
  margin: 30px 0;
  padding: 20px 0 10px;
}
form.styled .buttons {
  margin: 0 1.5%;
}
form.styled .buttons button {
  border: 0;
  background: #6dab13;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  padding: 13px 18px;
  float: right;
  cursor: pointer;
}
form.styled .buttons button:hover {
  opacity: .8;
}
form.styled .message {
  margin: 0 1.5%;
}
form.styled .message textarea {
  width: 100%;
  min-height: 8.8em;
  line-height: 1.5em;
  padding: .5em;
}
form.styled .element label {
  float: left;
  width: 34%;
  margin-left: 3%;
  font-size: .9em;
}
form.styled .element div {
  float: right;
  width: 60%;
  margin-right: 3%;
}
form.styled .element div input {
  width: 100%;
  padding: 0 5px;
  text-align: left;
  line-height: 2em;
  font-size: .9em;
  height: 2em;
}

@keyframes lazy-image-loader {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

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