/* Links */
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section, summary {
  display: block; }

audio, canvas, video {
  display: inline-block; }

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

[hidden] {
  display: none; }

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

body {
  margin: 0; }

a:focus {
  outline: thin dotted; }

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

h1 {
  font-size: 2em; }

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

b, strong {
  font-weight: bold; }

dfn {
  font-style: italic; }

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

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

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word; }

q {
  quotes: "\201C" "\201D" "\2018" "\2019"; }

small {
  font-size: 80%; }

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

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

img {
  border: 0; }

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

figure {
  margin: 0; }

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: .35em .625em .75em; }

legend {
  border: 0;
  padding: 0; }

button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0; }

button, input {
  line-height: normal; }

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

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

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

input[type="search"] {
  -webkit-appearance: textfield;
  box-sizing: content-box; }

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

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

textarea {
  overflow: auto;
  vertical-align: top; }

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

/*
 * Breakpoint mixin.
 *
 * Use:
 * .row {
 *  @include bp(mobile, min) {
 *    //mobile styles
 *  };
 * }
 *
 * Breakpoints are set in _config.scss e.g. $bp1
 */
/* ============ Optional modules ============= */
.pull-left {
  float: left; }

img.pull-left {
  display: block;
  margin-right: 20px;
  margin-bottom: 20px; }

.pull-right {
  float: right; }

img.pull-right {
  display: block;
  margin-left: 20px;
  margin-bottom: 20px; }

.text-left {
  text-align: left; }

.text-right {
  text-align: right; }

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

/*
 * Reset list - Placeholder
 *
 * Removes margin, padding and list type.
 * Usage: ul { @extend %reset-list; }
 */
.nav, .faq-block .faq-accordion, .artwork-singles-nav ul {
  margin: 0;
  padding: 0;
  list-style: none; }

.row--centered {
  text-align: center; }

.clearfix {
  *zoom: 1; }
  .clearfix:before, .clearfix:after {
    display: table;
    content: ""; }
  .clearfix:after {
    clear: both; }

.visually-hidden {
  overflow: hidden;
  position: absolute;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0; }
  .visually-hidden.focusable:active, .visually-hidden.focusable:focus {
    position: static;
    clip: auto;
    height: auto;
    width: auto;
    margin: 0;
    overflow: visible; }

.hidden {
  display: none !important;
  visibility: hidden; }

.invisible {
  visibility: hidden; }

.btn {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  padding: 5px 30px;
  margin-bottom: 0;
  *margin-left: .3em;
  font-weight: normal;
  font-family: "Source Serif", Georgia, Times, serif;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #ffffff;
  text-align: center;
  vertical-align: middle;
  background-color: #333;
  border: none;
  border-radius: 0;
  cursor: pointer;
  text-transform: none; }
  .btn:visited, .btn:hover, .btn:active {
    color: #ffffff;
    text-decoration: none;
    background-color: #1a1a1a; }
  .btn:focus {
    outline: 4px solid #9c9c9c;
    outline: 5px auto -webkit-focus-ring-color;
    border-radius: 0; }

.btn--error, .btn--error:visited {
  background: #d9534f;
  color: #ffffff; }
  .btn--error:active, .btn--error:hover, .btn--error:visited:active, .btn--error:visited:hover {
    background-color: #c9302c;
    color: #ffffff; }

.btn--info, .btn--info:visited {
  background: #5bc0de;
  color: #ffffff; }
  .btn--info:active, .btn--info:hover, .btn--info:visited:active, .btn--info:visited:hover {
    background-color: #31b0d5;
    color: #ffffff; }

.btn--success, .btn--success:visited {
  background: #5cb85c;
  color: #ffffff; }
  .btn--success:active, .btn--success:hover, .btn--success:visited:active, .btn--success:visited:hover {
    background-color: #449d44;
    color: #ffffff; }

.btn--warning, .btn--warning:visited {
  background: #f0ad4e;
  color: #ffffff; }
  .btn--warning:active, .btn--warning:hover, .btn--warning:visited:active, .btn--warning:visited:hover {
    background-color: #ec971f;
    color: #ffffff; }

.btn--primary, .btn--primary:visited {
  background: #9b3300;
  color: #ffffff; }
  .btn--primary:active, .btn--primary:hover, .btn--primary:visited:active, .btn--primary:visited:hover {
    background-color: #682200;
    color: #ffffff; }

.btn--secondary, .btn--secondary:visited {
  background: #bdbbac;
  color: #ffffff; }
  .btn--secondary:active, .btn--secondary:hover, .btn--secondary:visited:active, .btn--secondary:visited:hover {
    background-color: #a6a490;
    color: #ffffff; }

.btn--inverted, .btn--inverted:visited {
  background: #333;
  color: #ffffff; }
  .btn--inverted:active, .btn--inverted:hover, .btn--inverted:visited:active, .btn--inverted:visited:hover {
    background-color: #1a1a1a;
    color: #ffffff; }

.btn--primary:hover, .btn--primary:visited:hover {
  background-color: #bdbbac;
  color: #9b3300;
  transition: all 0.1s ease-in; }

.btn--extlarge {
  padding: 15px 30px;
  font-size: 21px;
  font-size: 1.3125rem;
  border-radius: 0; }

.btn--large {
  padding: 11px 40px;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: inherit;
  border-radius: 0; }

.btn--small {
  padding: 5px 10px;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: inherit; }

.btn--mini {
  padding: 3px 5px;
  font-size: 10px;
  font-size: 0.625rem;
  line-height: inherit; }

.btn:first-child {
  *margin-left: 0; }

.btn--disabled {
  opacity: .5;
  cursor: default; }

.btn-group {
  position: relative;
  *zoom: 1;
  *margin-left: .3em;
  margin-bottom: 1.5em; }
  .btn-group .btn {
    position: relative;
    float: left;
    margin-left: -1px;
    border-radius: 0; }
  .btn-group .btn:first-child {
    margin-left: 0;
    border-radius: 2px 0 2px 0; }
  .btn-group .btn:last-child {
    border-radius: 0 2px 0 2px; }
  .btn-group .btn.large:first-child {
    margin-left: 0;
    border-radius: 4px 0 4px 0; }
  .btn-group .btn.large:last-child {
    border-radius: 0 4px 0 4px; }

.alert {
  padding: 5px 10px;
  margin-bottom: 1.5em;
  background-color: #000000;
  border: 1px solid black;
  border-radius: 4px;
  font-size: 16px;
  font-size: 1rem;
  color: #ffffff; }

/*alert*/
.alert--success {
  background-color: #5cb85c;
  border-color: #449d44;
  color: #ffffff; }

/*alert--success*/
.alert--danger, .alert--error {
  background-color: #d9534f;
  border-color: #c9302c;
  color: #ffffff; }

/*alert--error*/
.alert--info {
  background-color: #5bc0de;
  border-color: #31b0d5;
  color: #ffffff; }

/*alert--info*/
.alert--warning {
  background-color: #f0ad4e;
  border-color: #ec971f;
  color: #ffffff; }

.alert--block {
  padding-top: 14px;
  padding-bottom: 14px; }
  .alert--block > p, .alert--block > ul {
    margin-bottom: 0; }
  .alert--block > p + p {
    margin-top: 5px; }

.error {
  color: #d9534f; }

.valid {
  color: #5cb85c; }

fieldset {
  padding: 0;
  margin: 0;
  border: 0;
  min-width: 0; }

legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 21px;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: inherit;
  color: #333;
  border: 0;
  border-bottom: 1px solid #cfcfcf; }

label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: bold; }

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

input[type="radio"], input[type="checkbox"] {
  margin: 4px 0 0;
  margin-top: 1px \9;
  line-height: normal; }

input[type="file"] {
  display: block; }

input[type="range"] {
  display: block;
  width: 100%; }

select[multiple], select[size] {
  height: auto; }

output {
  display: block;
  padding-top: 9px;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #333; }

.form-control, .contact-form-block .form-input .wpcf7-form-control-wrap input, .contact-form-block .form-input .wpcf7-form-control-wrap textarea {
  display: block;
  width: 100%;
  height: 39px;
  padding: 8px 10px;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  color: #333;
  background-color: #fff;
  background-image: none;
  border: 1px solid #cfcfcf;
  border-radius: 0;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-sizing: border-box; }
  .form-control:focus, .contact-form-block .form-input .wpcf7-form-control-wrap input:focus, .contact-form-block .form-input .wpcf7-form-control-wrap textarea:focus {
    border-color: #9c9c9c;
    outline: 0;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(156, 156, 156, 0.6); }
  .form-control[disabled], .contact-form-block .form-input .wpcf7-form-control-wrap input[disabled], .contact-form-block .form-input .wpcf7-form-control-wrap textarea[disabled], .form-control[readonly], .contact-form-block .form-input .wpcf7-form-control-wrap input[readonly], .contact-form-block .form-input .wpcf7-form-control-wrap textarea[readonly], fieldset[disabled] .form-control, fieldset[disabled] .contact-form-block .form-input .wpcf7-form-control-wrap input, .contact-form-block .form-input .wpcf7-form-control-wrap fieldset[disabled] input, fieldset[disabled] .contact-form-block .form-input .wpcf7-form-control-wrap textarea, .contact-form-block .form-input .wpcf7-form-control-wrap fieldset[disabled] textarea {
    cursor: not-allowed;
    background-color: #76797c;
    opacity: 1; }

textarea.form-control, .contact-form-block .form-input .wpcf7-form-control-wrap textarea {
  height: auto; }

input[type="search"] {
  -webkit-appearance: none; }

input[type="date"], input[type="time"], input[type="datetime-local"], input[type="month"] {
  line-height: 39px;
  line-height: 1.5 \0; }
  input[type="date"].input-sm, .form-horizontal .form-group-sm input[type="date"].form-control, .form-horizontal .form-group-sm .contact-form-block .form-input .wpcf7-form-control-wrap input[type="date"], .contact-form-block .form-input .wpcf7-form-control-wrap .form-horizontal .form-group-sm input[type="date"], input[type="time"].input-sm, .form-horizontal .form-group-sm input[type="time"].form-control, .form-horizontal .form-group-sm .contact-form-block .form-input .wpcf7-form-control-wrap input[type="time"], .contact-form-block .form-input .wpcf7-form-control-wrap .form-horizontal .form-group-sm input[type="time"], input[type="datetime-local"].input-sm, .form-horizontal .form-group-sm input[type="datetime-local"].form-control, .form-horizontal .form-group-sm .contact-form-block .form-input .wpcf7-form-control-wrap input[type="datetime-local"], .contact-form-block .form-input .wpcf7-form-control-wrap .form-horizontal .form-group-sm input[type="datetime-local"], input[type="month"].input-sm, .form-horizontal .form-group-sm input[type="month"].form-control, .form-horizontal .form-group-sm .contact-form-block .form-input .wpcf7-form-control-wrap input[type="month"], .contact-form-block .form-input .wpcf7-form-control-wrap .form-horizontal .form-group-sm input[type="month"] {
    line-height: 30px; }
  input[type="date"].input-lg, .form-horizontal .form-group-lg input[type="date"].form-control, .form-horizontal .form-group-lg .contact-form-block .form-input .wpcf7-form-control-wrap input[type="date"], .contact-form-block .form-input .wpcf7-form-control-wrap .form-horizontal .form-group-lg input[type="date"], input[type="time"].input-lg, .form-horizontal .form-group-lg input[type="time"].form-control, .form-horizontal .form-group-lg .contact-form-block .form-input .wpcf7-form-control-wrap input[type="time"], .contact-form-block .form-input .wpcf7-form-control-wrap .form-horizontal .form-group-lg input[type="time"], input[type="datetime-local"].input-lg, .form-horizontal .form-group-lg input[type="datetime-local"].form-control, .form-horizontal .form-group-lg .contact-form-block .form-input .wpcf7-form-control-wrap input[type="datetime-local"], .contact-form-block .form-input .wpcf7-form-control-wrap .form-horizontal .form-group-lg input[type="datetime-local"], input[type="month"].input-lg, .form-horizontal .form-group-lg input[type="month"].form-control, .form-horizontal .form-group-lg .contact-form-block .form-input .wpcf7-form-control-wrap input[type="month"], .contact-form-block .form-input .wpcf7-form-control-wrap .form-horizontal .form-group-lg input[type="month"] {
    line-height: 46px; }

.form-group {
  margin-bottom: 30px; }

.radio, .checkbox {
  position: relative;
  display: block;
  min-height: 21px;
  margin-top: 10px;
  margin-bottom: 10px; }
  .radio label, .checkbox label {
    padding-left: 20px;
    margin-bottom: 0;
    font-weight: normal;
    cursor: pointer; }

.radio input[type="radio"], .radio-inline input[type="radio"], .checkbox input[type="checkbox"], .checkbox-inline input[type="checkbox"] {
  position: absolute;
  margin-left: -20px;
  margin-top: 4px \9; }

.radio + .radio, .checkbox + .checkbox {
  margin-top: -5px; }

.radio-inline, .checkbox-inline {
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  vertical-align: middle;
  font-weight: normal;
  cursor: pointer; }

.radio-inline + .radio-inline, .checkbox-inline + .checkbox-inline {
  margin-top: 0;
  margin-left: 10px; }

input[type="radio"][disabled], input[type="radio"].disabled, fieldset[disabled] input[type="radio"], input[type="checkbox"][disabled], input[type="checkbox"].disabled, fieldset[disabled] input[type="checkbox"] {
  cursor: not-allowed; }

.radio-inline.disabled, fieldset[disabled] .radio-inline, .checkbox-inline.disabled, fieldset[disabled] .checkbox-inline {
  cursor: not-allowed; }

.radio.disabled label, fieldset[disabled] .radio label, .checkbox.disabled label, fieldset[disabled] .checkbox label {
  cursor: not-allowed; }

.form-control-static {
  padding-top: 9px;
  padding-bottom: 9px;
  margin-bottom: 0; }
  .form-control-static.input-lg, .form-horizontal .form-group-lg .form-control-static.form-control, .form-horizontal .form-group-lg .contact-form-block .form-input .wpcf7-form-control-wrap input.form-control-static, .contact-form-block .form-input .wpcf7-form-control-wrap .form-horizontal .form-group-lg input.form-control-static, .form-horizontal .form-group-lg .contact-form-block .form-input .wpcf7-form-control-wrap textarea.form-control-static, .contact-form-block .form-input .wpcf7-form-control-wrap .form-horizontal .form-group-lg textarea.form-control-static, .form-control-static.input-sm, .form-horizontal .form-group-sm .form-control-static.form-control, .form-horizontal .form-group-sm .contact-form-block .form-input .wpcf7-form-control-wrap input.form-control-static, .contact-form-block .form-input .wpcf7-form-control-wrap .form-horizontal .form-group-sm input.form-control-static, .form-horizontal .form-group-sm .contact-form-block .form-input .wpcf7-form-control-wrap textarea.form-control-static, .contact-form-block .form-input .wpcf7-form-control-wrap .form-horizontal .form-group-sm textarea.form-control-static {
    padding-left: 0;
    padding-right: 0; }

.input-sm, .form-horizontal .form-group-sm .form-control, .form-horizontal .form-group-sm .contact-form-block .form-input .wpcf7-form-control-wrap input, .contact-form-block .form-input .wpcf7-form-control-wrap .form-horizontal .form-group-sm input, .form-horizontal .form-group-sm .contact-form-block .form-input .wpcf7-form-control-wrap textarea, .contact-form-block .form-input .wpcf7-form-control-wrap .form-horizontal .form-group-sm textarea {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 4px; }

select.input-sm, .form-horizontal .form-group-sm select.form-control {
  height: 30px;
  line-height: 30px; }

textarea.input-sm, .form-horizontal .form-group-sm textarea.form-control, .form-horizontal .form-group-sm .contact-form-block .form-input .wpcf7-form-control-wrap textarea, .contact-form-block .form-input .wpcf7-form-control-wrap .form-horizontal .form-group-sm textarea, select[multiple].input-sm, .form-horizontal .form-group-sm select[multiple].form-control {
  height: auto; }

.input-lg, .form-horizontal .form-group-lg .form-control, .form-horizontal .form-group-lg .contact-form-block .form-input .wpcf7-form-control-wrap input, .contact-form-block .form-input .wpcf7-form-control-wrap .form-horizontal .form-group-lg input, .form-horizontal .form-group-lg .contact-form-block .form-input .wpcf7-form-control-wrap textarea, .contact-form-block .form-input .wpcf7-form-control-wrap .form-horizontal .form-group-lg textarea {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33;
  border-radius: 4px; }

select.input-lg, .form-horizontal .form-group-lg select.form-control {
  height: 46px;
  line-height: 46px; }

textarea.input-lg, .form-horizontal .form-group-lg textarea.form-control, .form-horizontal .form-group-lg .contact-form-block .form-input .wpcf7-form-control-wrap textarea, .contact-form-block .form-input .wpcf7-form-control-wrap .form-horizontal .form-group-lg textarea, select[multiple].input-lg, .form-horizontal .form-group-lg select[multiple].form-control {
  height: auto; }

.has-feedback {
  position: relative; }
  .has-feedback .form-control, .has-feedback .contact-form-block .form-input .wpcf7-form-control-wrap input, .contact-form-block .form-input .wpcf7-form-control-wrap .has-feedback input, .has-feedback .contact-form-block .form-input .wpcf7-form-control-wrap textarea, .contact-form-block .form-input .wpcf7-form-control-wrap .has-feedback textarea {
    padding-right: 48.75px; }

.form-control-feedback {
  position: absolute;
  top: 26px;
  right: 0;
  z-index: 2;
  display: block;
  width: 39px;
  height: 39px;
  line-height: 39px;
  text-align: center; }

.input-lg + .form-control-feedback, .form-horizontal .form-group-lg .form-control + .form-control-feedback, .form-horizontal .form-group-lg .contact-form-block .form-input .wpcf7-form-control-wrap input + .form-control-feedback, .contact-form-block .form-input .wpcf7-form-control-wrap .form-horizontal .form-group-lg input + .form-control-feedback, .form-horizontal .form-group-lg .contact-form-block .form-input .wpcf7-form-control-wrap textarea + .form-control-feedback, .contact-form-block .form-input .wpcf7-form-control-wrap .form-horizontal .form-group-lg textarea + .form-control-feedback {
  width: 46px;
  height: 46px;
  line-height: 46px; }

.input-sm + .form-control-feedback, .form-horizontal .form-group-sm .form-control + .form-control-feedback, .form-horizontal .form-group-sm .contact-form-block .form-input .wpcf7-form-control-wrap input + .form-control-feedback, .contact-form-block .form-input .wpcf7-form-control-wrap .form-horizontal .form-group-sm input + .form-control-feedback, .form-horizontal .form-group-sm .contact-form-block .form-input .wpcf7-form-control-wrap textarea + .form-control-feedback, .contact-form-block .form-input .wpcf7-form-control-wrap .form-horizontal .form-group-sm textarea + .form-control-feedback {
  width: 30px;
  height: 30px;
  line-height: 30px; }

.has-success .help-block, .has-success .control-label, .has-success .radio, .has-success .checkbox, .has-success .radio-inline, .has-success .checkbox-inline {
  color: #5cb85c; }
.has-success .form-control, .has-success .contact-form-block .form-input .wpcf7-form-control-wrap input, .contact-form-block .form-input .wpcf7-form-control-wrap .has-success input, .has-success .contact-form-block .form-input .wpcf7-form-control-wrap textarea, .contact-form-block .form-input .wpcf7-form-control-wrap .has-success textarea {
  border-color: #5cb85c;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }
  .has-success .form-control:focus, .has-success .contact-form-block .form-input .wpcf7-form-control-wrap input:focus, .contact-form-block .form-input .wpcf7-form-control-wrap .has-success input:focus, .has-success .contact-form-block .form-input .wpcf7-form-control-wrap textarea:focus, .contact-form-block .form-input .wpcf7-form-control-wrap .has-success textarea:focus {
    border-color: #449d44;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #a3d7a3; }
.has-success .input-group-addon {
  color: #5cb85c;
  border-color: #5cb85c;
  background-color: #333; }
.has-success .form-control-feedback {
  color: #5cb85c; }

.has-warning .help-block, .has-warning .control-label, .has-warning .radio, .has-warning .checkbox, .has-warning .radio-inline, .has-warning .checkbox-inline {
  color: #f0ad4e; }
.has-warning .form-control, .has-warning .contact-form-block .form-input .wpcf7-form-control-wrap input, .contact-form-block .form-input .wpcf7-form-control-wrap .has-warning input, .has-warning .contact-form-block .form-input .wpcf7-form-control-wrap textarea, .contact-form-block .form-input .wpcf7-form-control-wrap .has-warning textarea {
  border-color: #f0ad4e;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }
  .has-warning .form-control:focus, .has-warning .contact-form-block .form-input .wpcf7-form-control-wrap input:focus, .contact-form-block .form-input .wpcf7-form-control-wrap .has-warning input:focus, .has-warning .contact-form-block .form-input .wpcf7-form-control-wrap textarea:focus, .contact-form-block .form-input .wpcf7-form-control-wrap .has-warning textarea:focus {
    border-color: #ec971f;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #f8d9ac; }
.has-warning .input-group-addon {
  color: #f0ad4e;
  border-color: #f0ad4e;
  background-color: #333; }
.has-warning .form-control-feedback {
  color: #f0ad4e; }

.has-error .help-block, .has-error .control-label, .has-error .radio, .has-error .checkbox, .has-error .radio-inline, .has-error .checkbox-inline {
  color: #d9534f; }
.has-error .form-control, .has-error .contact-form-block .form-input .wpcf7-form-control-wrap input, .contact-form-block .form-input .wpcf7-form-control-wrap .has-error input, .has-error .contact-form-block .form-input .wpcf7-form-control-wrap textarea, .contact-form-block .form-input .wpcf7-form-control-wrap .has-error textarea {
  border-color: #d9534f;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }
  .has-error .form-control:focus, .has-error .contact-form-block .form-input .wpcf7-form-control-wrap input:focus, .contact-form-block .form-input .wpcf7-form-control-wrap .has-error input:focus, .has-error .contact-form-block .form-input .wpcf7-form-control-wrap textarea:focus, .contact-form-block .form-input .wpcf7-form-control-wrap .has-error textarea:focus {
    border-color: #c9302c;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #eba5a3; }
.has-error .input-group-addon {
  color: #d9534f;
  border-color: #d9534f;
  background-color: #333; }
.has-error .form-control-feedback {
  color: #d9534f; }

.has-feedback label.sr-only ~ .form-control-feedback {
  top: 0; }

.help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #737373; }

.form-inline .form-group {
  display: inline-block;
  margin-bottom: 0;
  vertical-align: middle; }
.form-inline .form-control, .form-inline .contact-form-block .form-input .wpcf7-form-control-wrap input, .contact-form-block .form-input .wpcf7-form-control-wrap .form-inline input, .form-inline .contact-form-block .form-input .wpcf7-form-control-wrap textarea, .contact-form-block .form-input .wpcf7-form-control-wrap .form-inline textarea {
  display: inline-block;
  width: auto;
  vertical-align: middle; }
.form-inline .input-group {
  display: inline-table;
  vertical-align: middle; }
  .form-inline .input-group .input-group-addon, .form-inline .input-group .input-group-btn, .form-inline .input-group .form-control, .form-inline .input-group .contact-form-block .form-input .wpcf7-form-control-wrap input, .contact-form-block .form-input .wpcf7-form-control-wrap .form-inline .input-group input, .form-inline .input-group .contact-form-block .form-input .wpcf7-form-control-wrap textarea, .contact-form-block .form-input .wpcf7-form-control-wrap .form-inline .input-group textarea {
    width: auto; }
.form-inline .input-group > .form-control, .form-inline .contact-form-block .form-input .wpcf7-form-control-wrap .input-group > input, .contact-form-block .form-input .wpcf7-form-control-wrap .form-inline .input-group > input, .form-inline .contact-form-block .form-input .wpcf7-form-control-wrap .input-group > textarea, .contact-form-block .form-input .wpcf7-form-control-wrap .form-inline .input-group > textarea {
  width: 100%; }
.form-inline .control-label {
  margin-bottom: 0;
  vertical-align: middle; }
.form-inline .radio, .form-inline .checkbox {
  display: inline-block;
  margin-top: 0;
  margin-bottom: 0;
  vertical-align: middle; }
  .form-inline .radio label, .form-inline .checkbox label {
    padding-left: 0; }
.form-inline .radio input[type="radio"], .form-inline .checkbox input[type="checkbox"] {
  position: relative;
  margin-left: 0; }
.form-inline .has-feedback .form-control-feedback {
  top: 0; }

.form-horizontal .radio, .form-horizontal .checkbox, .form-horizontal .radio-inline, .form-horizontal .checkbox-inline {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 9px; }
.form-horizontal .radio, .form-horizontal .checkbox {
  min-height: 30px; }
.form-horizontal .control-label {
  text-align: right;
  margin-bottom: 0;
  padding-top: 9px; }
.form-horizontal .has-feedback .form-control-feedback {
  top: 0;
  right: 10px; }
.form-horizontal .form-group-lg .control-label {
  padding-top: 14.3px; }
.form-horizontal .form-group-sm .control-label {
  padding-top: 6px; }

.asteriskField {
  display: inline-block;
  padding: 0 4px;
  padding: 0 0.25rem;
  color: #d9534f; }

@media (min-width: 30em) {
  .input-mini {
    width: 6.7474%; } }

@media (min-width: 30em) {
  .input-small {
    width: 15.22491%; } }

@media (min-width: 37.5em) {
  .input-medium {
    width: 23.70242%; } }

@media (min-width: 37.5em) {
  .input-large {
    width: 49.13495%; } }

@media (min-width: 37.5em) {
  .input-xlarge {
    width: 57.61246%; } }

@media (min-width: 37.5em) {
  .input-xxlarge {
    width: 66.08997%; } }

[placeholder]:focus::-webkit-input-placeholder {
  opacity: 0;
  transition: opacity .5s .5s ease; }

table {
  max-width: 100%;
  background-color: #ffffff;
  border-collapse: collapse;
  border-spacing: 0;
  font-family: "Source Serif", Georgia, Times, serif; }

.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 1.5em; }
  .table th, .table td {
    padding: 10px;
    vertical-align: top;
    border-top: 1px solid #cfcfcf;
    font-size: 11.2px;
    font-size: 0.7rem;
    line-height: 1.5em;
    text-align: left; }
  .table th {
    font-weight: bold; }
  .table thead th {
    vertical-align: bottom; }
  .table colgroup + thead tr:first-child th, .table colgroup + thead tr:first-child td, .table thead:first-child tr:first-child th, .table thead:first-child tr:first-child td {
    border-top: 0; }
  .table tbody + tbody {
    border-top: 2px solid #cfcfcf; }
  .table tbody tr:hover td, .table tbody tr:hover th {
    background-color: transparent; }

.table-condensed th, .table-condensed td {
  padding: 4px 5px; }

.table-bordered {
  border: 1px solid #cfcfcf;
  border-left: 0;
  border-collapse: separate;
  *border-collapse: collapsed; }
  .table-bordered th, .table-bordered td {
    border-left: 1px solid #cfcfcf; }
  .table-bordered caption + thead tr:first-child th, .table-bordered caption + tbody tr:first-child th, .table-bordered caption + tbody tr:first-child td, .table-bordered colgroup + thead tr:first-child th, .table-bordered colgroup + tbody tr:first-child th, .table-bordered colgroup + tbody tr:first-child td, .table-bordered thead:first-child tr:first-child th, .table-bordered tbody:first-child tr:first-child th, .table-bordered tbody:first-child tr:first-child td {
    border-top: 0; }

.table-striped tbody tr:nth-child(odd) td, .table-striped tbody tr:nth-child(odd) th {
  background-color: #cfcfcf; }

.table-hover tbody tr:hover td, .table-hover tbody tr:hover th {
  background-color: transparent; }

.navbar-toggle {
  display: block;
  padding: 8px 6px;
  margin-top: 6px;
  background: transparent;
  border: 0;
  border-radius: 0;
  float: right; }
  .navbar-toggle:hover {
    text-decoration: none; }

.navbar-collapse {
  position: relative;
  transition: all .35s ease-out;
  overflow: hidden;
  max-height: 0;
  clear: both; }
  @media only screen and (max-width: 750px) {
    .navbar-collapse {
      background: #fff;
      color: #333;
      margin-left: -22px;
      margin-right: -22px; } }
  @media only screen and (min-width: 751px) {
    .navbar-collapse {
      height: auto !important;
      overflow: visible !important;
      opacity: 1;
      clear: none;
      max-height: inherit; } }

.navbar-collapse.in {
  max-height: 45em; }

@media only screen and (min-width: 751px) {
  .navbar .navbar-toggle, .mobile-menu {
    display: none; } }

/**
 * Menu elements
 *
 */
.icon-bars {
  display: inline-block; }

.icon-bar {
  width: 30px;
  height: 4px;
  background: #ffffff;
  display: block; }
  .icon-bar + .icon-bar {
    margin-top: 4px; }

.btn-navbar__title {
  font-size: 16px;
  font-size: 1rem; }

.sr-only {
  overflow: hidden;
  position: absolute;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0; }
  .sr-only.focusable:active, .sr-only.focusable:focus {
    position: static;
    clip: auto;
    height: auto;
    width: auto;
    margin: 0;
    overflow: visible; }

.media, .media-body {
  overflow: hidden;
  *overflow: visible;
  zoom: 1; }

.media, .media .media {
  margin-top: 15px; }

.media:first-child {
  margin-top: 0; }

.media-object {
  display: block; }

.media-heading {
  margin: 0 0 5px; }

.media .pull-left {
  float: left;
  margin-right: 10px; }

.media .pull-right {
  float: right;
  margin-left: 10px; }

.media-list {
  margin-left: 0;
  list-style-type: none; }

.flag {
  display: table;
  width: 100%; }

.flag__image, .flag__body {
  display: table-cell;
  vertical-align: middle; }
  .flag--top .flag__image, .flag--top .flag__body {
    vertical-align: top; }
  .flag--bottom .flag__image, .flag--bottom .flag__body {
    vertical-align: bottom; }

.flag__image {
  padding-right: 10px; }
  .flag__image img {
    display: block;
    max-width: none; }
  .flag--rev .flag__image {
    padding-right: 0;
    padding-left: 10px; }

.flag__body {
  width: 100%; }

/* =============== Site styles =============== */
html {
  height: 100%;
  background: #fff;
  -webkit-overflow-scrolling: touch;
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%; }

body {
  width: 100%;
  height: 100%;
  background-color: #fff;
  font-family: "Source Serif", Georgia, Times, serif;
  font-size: 14px;
  line-height: 1.5em;
  color: #333; }
  @media (min-width: 50em) {
    body {
      font-size: 14px; } }

hr {
  clear: both;
  display: block;
  margin: 3em 0;
  padding: 0;
  height: 1px;
  border: 0;
  border-top: 1px solid #cfcfcf; }

img {
  max-width: 100%;
  border-width: 0;
  vertical-align: middle;
  -ms-interpolation-mode: bicubic; }

.img-rounded {
  border-radius: 4px; }

.img-polaroid {
  padding: 10px;
  background-color: #ffffff;
  border: 1px solid #cfcfcf;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); }

.img-circle {
  border-radius: 500px; }

figure {
  margin-bottom: 1.5em; }
  figure img {
    margin-bottom: 0; }
  figure figcaption {
    display: block;
    font-weight: normal;
    font-size: 14px;
    font-size: 0.875rem;
    font-style: italic;
    color: #ffffff;
    background: gray;
    padding: 5px 10px; }

.well {
  background: #F9FAFB;
  padding: 20px;
  margin-bottom: 1.5em; }

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: 'Alegreya SC', serif;
  font-weight: 400;
  color: #000000;
  text-rendering: optimizelegibility;
  line-height: 1.2; }
  h1 small, h2 small, h3 small, h4 small, h5 small, h6 small {
    font-weight: normal;
    line-height: 1; }

h1, .h1 {
  font-size: 26px;
  font-size: 1.625rem;
  margin-bottom: 18px; }

h2, .h2 {
  font-size: 24px;
  font-size: 1.5rem;
  margin-bottom: 14px; }

h3, .h3 {
  font-size: 18px;
  font-size: 1.125rem;
  margin-bottom: 12px; }

h4, .h4 {
  font-size: 16px;
  font-size: 1rem;
  margin-bottom: 12px; }

h5, .h5 {
  font-size: 14px;
  font-size: 0.875rem;
  margin-bottom: 12px; }

h6, .h6 {
  font-size: 14px;
  font-size: 0.875rem;
  margin-bottom: 12px; }

p, ol, ul, dl, address {
  margin-top: 0;
  margin-bottom: 1.5em; }

small {
  font-size: 11.2px;
  font-size: 0.7rem; }

ul, ol {
  margin: 0 0 1.5em 20px;
  padding: 0 0 0 20px; }

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

ul.inline, ol.inline {
  list-style-type: none;
  margin-left: 0; }
  ul.inline > li, ol.inline > li {
    display: inline-block;
    padding-left: 10px;
    padding-right: 10px; }

blockquote {
  margin: 0 0 1.5em 0; }
  blockquote small:before {
    content: '\00A0 \2014'; }
  blockquote small:after {
    content: ''; }
  blockquote.pull-right {
    float: right;
    background-color: transparent; }
    blockquote.pull-right p, blockquote.pull-right small {
      text-align: right; }
    blockquote.pull-right small:before {
      content: ''; }
    blockquote.pull-right small:after {
      content: '\00A0 \2014'; }
  blockquote cite {
    font-style: normal; }

q {
  quotes: none; }

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

dl, dd {
  margin-bottom: 1.5em; }

dt {
  font-weight: bold; }

.dl-horizontal {
  *zoom: 1; }
  .dl-horizontal:before, .dl-horizontal:after {
    display: table;
    content: ""; }
  .dl-horizontal:after {
    clear: both; }
  .dl-horizontal dt {
    float: left;
    clear: left;
    width: 30.38869%; }
  .dl-horizontal dd {
    margin-left: 32.99289%; }

abbr[title] {
  border-bottom: 1px dotted #cfcfcf;
  cursor: help; }

b, strong {
  font-weight: bold; }

dfn {
  font-style: italic; }

ins {
  color: #333;
  text-decoration: none; }

mark {
  color: #333;
  font-style: italic;
  font-weight: bold; }

pre, code, kbd, samp {
  font-family: Monaco, Courier New, monospace;
  font-size: 11.2px;
  font-size: 0.7rem;
  line-height: 1.5em;
  color: #343434; }

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word; }

sub, sup {
  position: relative;
  font-size: 11.2px;
  font-size: 0.7rem;
  line-height: 0;
  vertical-align: baseline; }

sup {
  top: -.5em; }

sub {
  bottom: -.25em; }

.lede {
  font-size: 16.1px;
  font-size: 1.00625rem; }

.secondary {
  font-size: 12.17391px;
  font-size: 0.76087rem; }

.tertiary {
  font-size: 11.2px;
  font-size: 0.7rem; }

.amp {
  font-family: Monaco, Courier New, monospace; }

.footnotes li {
  margin-bottom: 0.75em;
  font-family: "Source Serif", Georgia, Times, serif;
  font-size: 10.76923px;
  font-size: 0.67308rem;
  line-height: 1.4; }

.spaced {
  letter-spacing: 1px; }

a {
  text-decoration: none;
  color: #9b3300; }
  a:visited {
    color: #9b3300; }
  a:hover {
    text-decoration: underline;
    color: #682200; }
  a:focus {
    outline: thin dotted #9c9c9c;
    color: #682200; }
  a:hover, a:active {
    outline: 0; }

::-moz-selection {
  background-color: #9c9c9c;
  color: #000000;
  text-shadow: none; }

::selection {
  background-color: #9c9c9c;
  color: #000000;
  text-shadow: none; }

/*
 * For general layout and structure.
 * breakpoint specific layout will be in bp scss files.
 *
 *
 */
.container {
  max-width: 82.57143em;
  margin-left: auto;
  margin-right: auto;
  padding-left: 22px;
  padding-right: 22px; }
  .container:after {
    content: " ";
    display: block;
    clear: both; }

@media (min-width: 48em) {
  .has-sidebar .main {
    width: 74.56747%;
    float: left;
    margin-right: 1.7301%; } }

@media (min-width: 48em) {
  .sidebar {
    width: 23.70242%;
    float: right;
    margin-right: 0; } }

.row, .form-horizontal .form-group {
  *zoom: 1;
  clear: both; }
  .row:before, .form-horizontal .form-group:before, .row:after, .form-horizontal .form-group:after {
    display: table;
    content: ""; }
  .row:after, .form-horizontal .form-group:after {
    clear: both; }
  @media (min-width: 37.5em) {
    .row .one-half, .form-horizontal .form-group .one-half {
      width: 49.13495%;
      float: left;
      margin-right: 1.7301%; }
    .row .one-third, .form-horizontal .form-group .one-third {
      width: 32.17993%;
      float: left;
      margin-right: 1.7301%; }
    .row .one-quarter, .form-horizontal .form-group .one-quarter {
      width: 23.70242%;
      float: left;
      margin-right: 1.7301%; }
    .row .third-twothird--first, .form-horizontal .form-group .third-twothird--first {
      width: 32.17993%;
      float: left;
      margin-right: 1.7301%; }
    .row .third-twothird--last, .form-horizontal .form-group .third-twothird--last {
      width: 66.08997%;
      float: right;
      margin-right: 0; }
    .row .twothird-third--first, .form-horizontal .form-group .twothird-third--first {
      width: 66.08997%;
      float: left;
      margin-right: 1.7301%; }
    .row .twothird-third--last, .form-horizontal .form-group .twothird-third--last {
      width: 32.17993%;
      float: right;
      margin-right: 0; }
    .row .one-third--last, .form-horizontal .form-group .one-third--last, .row .one-half--last, .form-horizontal .form-group .one-half--last, .row .one-quarter--last, .form-horizontal .form-group .one-quarter--last {
      margin-right: 0; } }

/**
 * Site general styling.
 *
 * Breakpoints use a mixin to keep styles together. E.g.
 *
 * .row {
 *  // mobile first styles
 *  @include bp(mobile-large) {
 *    // Breakpoint styles for 600px and up (set in config)
 *  }
 *  @include bp(tablet) {
 *    // Breakpoint styles for ipad and up.
 *  }
 * }
 *
 * Look in _mixins.scss for more information and _config for bp sizes.
 *
 */
/* ==========================================================================
    General
   ========================================================================== */
.artwork-img--original, .featured-article--artwork .feature-image.artwork-img--original, .art-hero-wrap .image--original {
  margin: auto;
  padding: 30px 30px 40px;
  background: #f8f7f4;
  border: #000 solid 15px;
  box-shadow: 10px 10px 20px #ccc;
  display: inline-block; }
  .artwork-img--original img, .featured-article--artwork .feature-image.artwork-img--original img, .art-hero-wrap .image--original img {
    box-shadow: -2px -2px 0px #ccc, 2px 2px 0px #fff; }

.artwork-img, .artwork--limited .artwork-alt-img, .featured-article--artwork .feature-image, .art-hero-wrap .image--limited_edition, .art-hero-wrap .image {
  margin: auto;
  padding: 20px;
  background: #fff;
  box-shadow: 10px 10px 20px #ccc;
  display: inline-block; }

/* ==========================================================================
    Header
   ========================================================================== */
.banner {
  *zoom: 1;
  padding-top: 6px;
  padding-bottom: 6px;
  z-index: 100;
  position: relative;
  background: #000; }
  .banner:before, .banner:after {
    display: table;
    content: ""; }
  .banner:after {
    clear: both; }
  @media (min-width: 61.875em) {
    .home .banner {
      background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.53) 50%, rgba(255, 255, 255, 0) 99%);
      /* W3C */
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b3000000', endColorstr='#00ffffff',GradientType=0 ); } }

@media (min-width: 61.875em) {
  .navbar-header {
    width: 23.70242%;
    float: left;
    margin-right: 1.7301%; } }

.navbar-brand {
  display: block;
  background: url('../img/header-logo-graemebase@2x.png') no-repeat left center transparent;
  background-size: auto 40px;
  height: 40px;
  text-indent: -9999px; }
  @media only screen and (min-width: 751px) and (max-width: 61.875em) {
    .navbar-brand {
      background-position: center; } }
  @media (min-width: 61.875em) {
    .navbar-brand {
      background-position: left center; } }
  .no-backgroundsize .navbar-brand {
    background-image: url('../img/header-logo-graemebase.png'); }

/* ==========================================================================
    Navigation
   ========================================================================== */
.nav {
  *zoom: 1; }
  .nav:before, .nav:after {
    display: table;
    content: ""; }
  .nav:after {
    clear: both; }
  @media (min-width: 37.5em) {
    .nav li {
      display: inline-block; } }
  .nav a {
    color: #9b3300;
    padding: 6px 10px;
    display: block; }
    .nav a:hover {
      color: #bdbbac;
      text-decoration: none; }

@media only screen and (max-width: 750px) {
  .navbar-collapse {
    top: 10px; } }

.navbar-nav {
  text-align: center; }
  .navbar-nav li {
    display: block; }
  .navbar-nav li.menu-facebook {
    width: 30px;
    text-indent: -9999px;
    background: url('../img/header-social-facebook.png') no-repeat center center transparent;
    background-size: 20px auto; }
  .navbar-nav li.menu-instagram {
    width: 30px;
    text-indent: -9999px;
    background: url('../img/header-social-instagram.png') no-repeat center center transparent;
    background-size: 20px auto; }
  .navbar-nav a {
    font-family: "Source Serif", Georgia, Times, serif;
    font-size: 18px;
    font-size: 1.125rem;
    padding: 20px 10px;
    color: #333; }
    .navbar-nav a:hover {
      color: #000000; }
  @media only screen and (max-width: 750px) {
    .navbar-nav a {
      border-bottom: 1px solid #cfcfcf; } }
  @media only screen and (min-width: 751px) {
    .navbar-nav li {
      display: inline-block; }
    .navbar-nav a {
      color: white;
      transition: color 0.2s linear;
      padding: 8px;
      font-size: 16px;
      font-size: 1rem; }
      .navbar-nav a:hover {
        color: #bdbbac;
        transition: color 0.1s linear; } }
  @media (min-width: 48em) {
    .navbar-nav a {
      font-size: 18px;
      font-size: 1.125rem; } }
  @media (min-width: 61.875em) {
    .navbar-nav {
      text-align: left;
      width: 74.56747%;
      float: left; }
      .navbar-nav a {
        font-size: 17px;
        font-size: 1.0625rem; } }
  @media (min-width: 75em) {
    .navbar-nav a {
      padding: 8px 18px;
      font-size: 18px;
      font-size: 1.125rem; } }

/* ==========================================================================
    Main Content
   ========================================================================== */
.content {
  *zoom: 1; }
  .content:before, .content:after {
    display: table;
    content: ""; }
  .content:after {
    clear: both; }

.main {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.666666; }
  .main h1 {
    font-size: 24px;
    font-size: 1.5rem;
    margin-bottom: 30px; }
  .main h2 {
    font-size: 20px;
    font-size: 1.25rem;
    margin-bottom: 10px; }
    @media (min-width: 48em) {
      .main h2 {
        font-size: 24px;
        margin-bottom: 30px; } }
  .main article, .main .single-book-content {
    *zoom: 1;
    padding: 50px 0; }
    .main article:before, .main article:after, .main .single-book-content:before, .main .single-book-content:after {
      display: table;
      content: ""; }
    .main article:after, .main .single-book-content:after {
      clear: both; }
  .main object.flashmovie {
    display: block;
    margin: 10px auto; }

/* ------------------------------ Global ------------------------------------ */
.wide-wrap {
  padding: 50px 0;
  border-top: solid 2px #cfcfcf; }

.wp-pagenavi {
  border-top: solid 1px #bdbbac;
  padding: 20px 0;
  text-align: center;
  font-family: "Source Serif", Georgia, Times, serif;
  font-size: 18px;
  font-size: 1.125rem; }
  .wp-pagenavi .pages {
    color: #000000;
    display: inline-block;
    padding: 0 30px; }
  .wp-pagenavi .page {
    color: #9b3300;
    display: inline-block;
    padding: 0 4px; }
  .wp-pagenavi .current {
    color: black;
    display: inline-block;
    padding: 0 4px; }
  .wp-pagenavi a {
    display: inline-block; }

.previouspostslink, .nextpostslink {
  padding: 0 30px; }

/*
Make the Facebook Like box responsive (fluid width)
https://developers.facebook.com/docs/reference/plugins/like-box/
*/
/*
This element holds injected scripts inside iframes that in
some cases may stretch layouts. So, we're just hiding it.
*/
#fb-root {
  display: none; }

/* To fill the container and nothing else */
.fb_iframe_widget, .fb_iframe_widget span, .fb_iframe_widget span iframe[style] {
  width: 100% !important; }

._4s7c {
  border: 0 !important;
  border-top-color: 0 !important; }

/* ------------------------------- Front ------------------------------------ */
.home-hero-wrap {
  position: relative;
  z-index: 99;
  background-color: #333;
  background-size: 1536px 400px;
  background-position: -840px 0; }
  @media (max-width: 37.4em) {
    .home-hero-wrap {
      padding-top: 400px; } }
  @media (min-width: 37.5em) {
    .home-hero-wrap {
      padding-top: 0;
      height: 350px;
      border-bottom: solid 3px black;
      background-position: center center;
      background-size: cover; } }
  @media (min-width: 48em) {
    .home-hero-wrap {
      height: 395px;
      margin-top: -54px; }
      .home-hero-wrap .container {
        position: relative; } }
  @media (min-width: 50em) {
    .home-hero-wrap {
      height: 450px; } }
  @media (min-width: 61.875em) {
    .home-hero-wrap {
      height: 495px; } }
  .home-hero-wrap .hero-text-wrap {
    position: relative; }
    @media (max-width: 37.4em) {
      .home-hero-wrap .hero-text-wrap {
        background: #000;
        margin-left: -22px;
        margin-right: -22px;
        padding: 30px; } }
    @media (min-width: 37.5em) {
      .home-hero-wrap .hero-text-wrap {
        top: 20px; } }
    @media (min-width: 48em) {
      .home-hero-wrap .hero-text-wrap {
        top: 100px; } }
  .home-hero-wrap .title {
    float: left;
    width: 100%;
    font-family: 'Alegreya SC', serif;
    font-size: 24px;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 20px; }
    @media (min-width: 48em) {
      .home-hero-wrap .title {
        margin-bottom: 30px; } }
  .home-hero-wrap .intro-text {
    font-family: 'Alegreya', serif;
    font-size: 16px;
    font-size: 1rem;
    line-height: 2;
    color: white;
    margin-bottom: 30px; }
    @media (min-width: 37.5em) {
      .home-hero-wrap .intro-text {
        max-width: 500px; } }
    @media (min-width: 48em) {
      .home-hero-wrap .intro-text {
        display: block; } }
    @media (min-width: 61.875em) {
      .home-hero-wrap .intro-text {
        font-size: 18px;
        font-size: 1.125rem;
        line-height: 1.7; } }
  @media (min-width: 37.5em) {
    .home-hero-wrap .signature {
      float: left; } }
  @media (min-width: 61.875em) {
    .home-hero-wrap .signature {
      max-width: 500px;
      float: none; } }
  .home-hero-wrap .more-info {
    position: absolute;
    right: 0;
    bottom: 0;
    border: solid 1px white;
    margin: 0 10px 10px 0; }
    @media (min-width: 48em) {
      .home-hero-wrap .more-info {
        margin: 0 20px 50px 0; } }
    @media (min-width: 50em) {
      .home-hero-wrap .more-info {
        margin: 0 10px 10px 0; } }
    @media (min-width: 61.875em) {
      .home-hero-wrap .more-info {
        margin: 0; } }

.home-banner {
  text-align: center;
  padding-top: 30px; }
  .home-banner .main {
    float: none; }

.home-section-narrow-img {
  margin-top: 30px;
  border-top: solid 2px #bdbbac;
  padding: 30px 0; }
  .home-section-narrow-img .img-wrap {
    width: 100%;
    float: left;
    margin-left: 0;
    margin-right: 0;
    height: auto; }
    @media (min-width: 37.5em) {
      .home-section-narrow-img .img-wrap {
        width: 32.17993%;
        float: left;
        margin-right: 1.7301%; } }
  .home-section-narrow-img .content-wrap {
    width: 100%;
    float: left;
    margin-left: 0;
    margin-right: 0;
    margin-top: 20px; }
    @media (min-width: 37.5em) {
      .home-section-narrow-img .content-wrap {
        width: 66.08997%;
        float: right;
        margin-right: 0; } }
    .home-section-narrow-img .content-wrap h3 {
      font-size: 24px;
      font-size: 1.5rem;
      margin-bottom: 30px; }
    .home-section-narrow-img .content-wrap p {
      font-family: "Source Serif", Georgia, Times, serif;
      font-size: 17px;
      font-size: 1.0625rem;
      line-height: 2;
      color: black;
      margin-bottom: 30px; }
    .home-section-narrow-img .content-wrap .product-link {
      font-family: "Source Serif", Georgia, Times, serif;
      font-size: 18px;
      color: #9b3300;
      text-decoration: none; }

.artwork {
  *zoom: 1;
  margin-bottom: 50px; }
  .artwork:before, .artwork:after {
    display: table;
    content: ""; }
  .artwork:after {
    clear: both; }
  .artwork .img-wrap {
    text-align: center; }
    .artwork .img-wrap > a {
      display: block; }
  @media (min-width: 48em) {
    .flexbox .artwork {
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center; } }

.artwork-img img {
  max-height: 300px; }

.artwork--limited .artwork-alt-img img {
  max-height: 300px; }
.artwork--limited .content-wrap {
  background: url('../img/limited-ed-stamp.png') no-repeat 0 0;
  background-size: 75px 65px;
  padding-top: 75px; }

.artwork-status {
  color: red;
  text-transform: uppercase;
  display: block;
  text-align: right;
  font-family: 'Alegreya SC', serif;
  font-size: 18px;
  font-size: 1.125rem;
  margin: 10px 0; }
  .artwork-status:after {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 20px;
    display: inline-block;
    vertical-align: middle;
    margin: 0 3px 3px;
    background: red; }

.section-wide-img {
  margin-top: -2px;
  border-top: solid 2px #bdbbac;
  padding: 30px 0; }
  @media (min-width: 50em) {
    .section-wide-img .img-wrap {
      width: 54.15225%;
      float: left;
      margin-right: 3.46021%;
      margin-left: 8.47751%; } }
  .section-wide-img .content-wrap {
    margin-top: 20px;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.5em; }
    @media (min-width: 50em) {
      .section-wide-img .content-wrap {
        width: 32.17993%;
        float: right;
        margin-right: 0; } }
    .section-wide-img .content-wrap h3 {
      font-size: 24px;
      font-size: 1.5rem; }
    .section-wide-img .content-wrap .product-link {
      font-family: "Source Serif", Georgia, Times, serif;
      font-size: 18px;
      color: #9b3300;
      text-decoration: none; }

.featured-article {
  padding: 60px 0;
  border-bottom: 2px solid #cfcfcf; }
  .featured-article__bd {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.5em; }
  .featured-article:first-of-type {
    border-top: 1px solid #cfcfcf;
    margin-top: 30px; }
  .featured-article__image {
    margin-bottom: 40px;
    text-align: center; }
  @media (min-width: 37.5em) {
    .featured-article__image {
      margin-left: 15.22491%;
      width: 47.40484%;
      float: left;
      margin-right: 5.19031%; }
    .featured-article__bd {
      width: 25.43253%;
      float: left;
      padding-top: 30px; }
    .featured-article__footer {
      padding-top: 30px; } }

.featured-title {
  font-size: 24px;
  font-size: 1.5rem; }
  .featured-title__title {
    display: block; }

@media (min-width: 37.5em) {
  .featured-article--book .featured-article__image {
    width: 25.43253%; }
  .featured-article--book .featured-article__bd {
    width: 47.40484%; } }

.feature-image img {
  box-shadow: 10px 10px 20px #CCC; }

.content-banners {
  padding: 60px 0;
  border-bottom: 2px solid #cfcfcf;
  margin-bottom: 60px; }

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

/* ------------------------------- Pages ------------------------------------ */
.container h2 span {
  color: #9b3300; }

/* ==========================================================================
    About Page
   ========================================================================== */
@media (max-width: 37.4em) {
  .page-id-2 .col-left {
    margin-left: -22px;
    margin-right: -22px; }
    .page-id-2 .col-left img {
      display: block;
      max-width: none;
      width: 100%; } }
@media (min-width: 37.5em) {
  .page-id-2 .col-left {
    padding: 30px 0;
    width: 40.65744%;
    float: left;
    margin-right: 2.59516%; } }
.page-id-2 .col-right {
  padding: 30px 0; }
  @media (min-width: 37.5em) {
    .page-id-2 .col-right {
      width: 56.7474%;
      float: right; } }

.instagram-feed {
  padding: 50px 0; }
  .instagram-feed .ig-b- {
    display: inline-block;
    float: right; }
  .instagram-feed .ig-b- img {
    visibility: hidden; }
  .instagram-feed .ig-b-:hover {
    background-position: 0 -60px; }
  .instagram-feed .ig-b-:active {
    background-position: 0 -120px; }
  .instagram-feed .ig-b-v-24 {
    width: 137px;
    height: 24px;
    background: url(//badges.instagram.com/static/images/ig-badge-view-sprite-24.png) no-repeat 0 0; }
  @media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
    .instagram-feed .ig-b-v-24 {
      background-image: url(//badges.instagram.com/static/images/ig-badge-view-sprite-24@2x.png);
      background-size: 160px 178px; } }

.faq-block {
  line-height: 1.8; }
  @media (min-width: 37.5em) {
    .faq-block h2 {
      margin-left: 15.22491%; } }
  .faq-block .faq-accordion li {
    display: block;
    margin-bottom: 20px;
    font-size: 18px;
    font-size: 1.125rem;
    background: url('../img/faq-arrow-down.png') no-repeat right 8px;
    cursor: pointer; }
  .faq-block .faq-accordion .question {
    display: block;
    font-weight: 600; }
  .faq-block .faq-accordion .active {
    background: url('../img/faq-arrow-up.png') no-repeat right 8px; }
    .js .faq-block .faq-accordion .active .answer {
      display: block; }
  .faq-block .faq-accordion .answer {
    display: block;
    margin-bottom: 20px; }
    .js .faq-block .faq-accordion .answer {
      display: none; }
  @media (min-width: 37.5em) {
    .faq-block .faq-accordion {
      width: 66.08997%;
      margin-left: 15.22491%; } }

.contact-form-block .form-label {
  font-size: 18px;
  font-size: 1.125rem;
  color: black; }
.contact-form-block .wpcf7-radio {
  display: table;
  float: left;
  width: 100%;
  padding: 20px 0; }
  .contact-form-block .wpcf7-radio .wpcf7-list-item {
    display: table-cell;
    font-size: 16px;
    font-size: 1rem;
    color: black;
    text-align: center; }
.contact-form-block .form-2-col {
  float: left;
  width: 100%;
  float: left;
  margin-left: 0;
  margin-right: 0; }
  .contact-form-block .form-2-col .form-col-left {
    width: 49.13495%;
    float: left;
    margin-right: 1.7301%; }
  .contact-form-block .form-2-col .form-col-right {
    width: 49.13495%;
    float: right;
    margin-right: 0; }
.contact-form-block .form-1-col {
  width: 100%;
  float: left;
  margin-left: 0;
  margin-right: 0; }
.contact-form-block .wpcf7-submit {
  float: right;
  border: 0;
  background: #9b3300;
  border-radius: 0;
  padding: 5px 30px;
  margin-top: 30px;
  color: white;
  font-family: "Source Serif", Georgia, Times, serif;
  font-size: 16px;
  font-variant: small-caps;
  transition: all 0.2s ease-in;
  outline: none; }
  @media (min-width: 48em) {
    .contact-form-block .wpcf7-submit {
      padding: 10px 45px; } }
  @media (min-width: 61.875em) {
    .contact-form-block .wpcf7-submit {
      padding: 15px 55px; } }
.contact-form-block .wpcf7-submit:hover {
  background-color: #bdbbac;
  color: #9b3300;
  transition: all 0.1s ease-in; }

.contact-form {
  font-size: 18px;
  font-size: 1.125rem; }
  @media (min-width: 37.5em) {
    .contact-form {
      width: 69.55017%;
      margin-left: 15.22491%; } }

/* ==========================================================================
    Books Page
   ========================================================================== */
.books-container {
  padding: 50px 0;
  border-bottom: 2px solid #cfcfcf;
  margin-bottom: 50px; }

.books-wrap .item {
  text-align: center;
  margin-bottom: 30px; }
  .books-wrap .item img {
    display: inline-block;
    box-shadow: 10px 10px 20px #aaa; }
@media only screen and (max-width: 37.5em) {
  .books-wrap .item {
    float: left;
    width: 47.40484%;
    margin-right: 3.46021%; }
    .books-wrap .item:nth-child(even) {
      margin-right: 0; } }
@media (min-width: 37.5em) {
  .books-wrap .item {
    float: left;
    width: 50%; } }
@media (min-width: 50em) {
  .books-wrap .item {
    width: 23.70242%;
    margin-right: 1.7301%; }
    .books-wrap .item--last {
      margin-right: 0; } }

.book-hero-wrap {
  position: relative;
  z-index: 99;
  width: 100%;
  background: #000;
  overflow: hidden; }
  @media (max-width: 47.9em) {
    .book-hero-wrap .background-image {
      text-align: center; }
    .book-hero-wrap .background-image__title {
      display: block;
      text-align: center;
      font-size: 22px;
      font-size: 1.375rem;
      font-family: 'Alegreya SC', serif;
      line-height: 1.2;
      margin: 20px 0;
      padding: 0 20px;
      color: #fff; } }
  @media (min-width: 48em) {
    .book-hero-wrap .background-image {
      position: absolute;
      z-index: 1;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      overflow: hidden; }
      .book-hero-wrap .background-image img {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
        min-height: 100%;
        min-width: 100%;
        -webkit-filter: blur(12px);
                filter: blur(12px);
        opacity: 0.6; } }

.book-img {
  position: relative;
  z-index: 10;
  margin: 50px 0; }
  @media (max-width: 47.9em) {
    .book-img {
      display: none; } }

.flipbook-viewport:before, .flipbook-viewport:after {
  content: '';
  display: block;
  color: #fff;
  width: 320px;
  position: absolute;
  left: 25%;
  margin-left: -160px;
  text-align: center;
  z-index: 10; }
.flipbook-viewport:before {
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1.2;
  top: 100px; }
.flipbook-viewport:after {
  content: 'Click on the arrows to look inside';
  font-size: 18px;
  font-size: 1.125rem;
  font-family: 'Alegreya SC', serif;
  top: 170px; }
@media (min-width: 61.875em) {
  .flipbook-viewport:before, .flipbook-viewport:after {
    width: 528px;
    margin-left: -264px; }
  .flipbook-viewport:before {
    top: 240px; }
  .flipbook-viewport:after {
    top: 300px; } }
.flipbook-viewport.hide-intro:before, .flipbook-viewport.hide-intro:after {
  content: ''; }

.flipbook {
  margin: 0 auto;
  position: relative;
  z-index: 30; }
  .flipbook .page {
    width: 100%; }
    .flipbook .page img {
      max-width: 100%;
      height: auto; }
  @media (min-width: 75em) {
    .flipbook {
      width: 1156px;
      height: 578px; } }

.flip-control {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1; }
  .flip-control #prev, .flip-control #next {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 30px;
    text-indent: -999em;
    background: url('../img/icon-arrows.png') no-repeat; }
  .flip-control #prev {
    left: -30px;
    display: none;
    border-radius: 10px 0 0 10px;
    background-position: 0 50%; }
  .flip-control #next {
    right: -30px;
    border-radius: 0 10px 10px 0;
    background-position: -38px 50%; }

@media (min-width: 37.5em) {
  .single-book-content {
    width: 72.83737%;
    float: left;
    margin-right: 3.46021%; } }

@media (min-width: 37.5em) {
  .buy-buttons {
    width: 23.70242%;
    float: right;
    margin-right: 0;
    padding-top: 50px; } }

.challenges-quests {
  margin-bottom: 50px; }

.challenge {
  text-align: center;
  margin-bottom: 20px; }
  .challenge__title {
    font-size: 24px;
    font-size: 1.5rem; }
  @media (min-width: 37.5em) {
    .challenge {
      width: 32.17993%;
      float: left;
      margin-right: 1.7301%; }
      .challenge--last {
        margin-right: 0; } }

@media (min-width: 37.5em) {
  .flexbox .challenge-block .container > .row, .flexbox .challenge-block .form-horizontal .container > .form-group, .form-horizontal .flexbox .challenge-block .container > .form-group {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center; } }
.challenge-block .challenge-img {
  text-align: center; }
  @media (min-width: 37.5em) {
    .challenge-block .challenge-img {
      width: 32.17993%;
      float: left;
      margin-right: 1.7301%; } }
.challenge-block .challenge-content {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.666666; }
  @media (min-width: 37.5em) {
    .challenge-block .challenge-content {
      width: 57.61246%;
      float: left; } }

.app-block__bd {
  font-size: 18px;
  font-size: 1.125rem;
  width: 83.04498%;
  margin-left: 8.47751%;
  line-height: 1.66666; }
.app-block .app-icon {
  width: 38.75%;
  margin-bottom: 30px; }
  @media (min-width: 37.5em) {
    .app-block .app-icon {
      width: 18.33333%;
      float: left;
      margin-right: 3.46021%; } }
@media (min-width: 37.5em) {
  .app-block .app-description {
    width: 57.43656%;
    float: left;
    margin-right: 1.7301%; } }
.app-block .app-description h3 {
  font-size: 24px;
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 20px; }
  @media (min-width: 37.5em) {
    .app-block .app-description h3 {
      text-align: left; } }
.app-block .app-link {
  text-align: center; }
  @media (min-width: 37.5em) {
    .app-block .app-link {
      width: 18.33333%;
      float: right;
      margin-right: 0;
      padding-top: 55px; } }

.video-block .video-wrap {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.666666;
  margin-bottom: 30px; }
  @media (min-width: 48em) {
    .flexbox .video-block .video-wrap {
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center; } }
.video-block .video-embed {
  margin-bottom: 20px; }
  @media (min-width: 48em) {
    .video-block .video-embed {
      width: 47.40484%;
      float: left;
      margin-right: 3.46021%; } }
.video-block .video-desc h4 {
  font-size: 24px;
  font-size: 1.5rem;
  margin-bottom: 30px; }
@media (min-width: 48em) {
  .video-block .video-desc {
    width: 49.13495%;
    float: right;
    margin-right: 0; } }

.award-block .single-award {
  width: 49.13495%;
  float: left;
  background: url('../img/icon-award.png') no-repeat center 14px;
  padding: 95px 0 0 0;
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.2;
  margin-bottom: 20px; }
  @media (min-width: 37.5em) {
    .award-block .single-award {
      width: 30.44983%;
      margin-right: 1.7301%;
      background-position: 12px top;
      padding: 12px 0 12px 95px;
      text-align: left;
      min-height: 50px; } }
  @media (min-width: 50em) {
    .award-block .single-award {
      width: 18.51211%; }
      .award-block .single-award:nth-child(3n) {
        margin-right: 0; } }
  @media (min-width: 61.875em) {
    .award-block .single-award {
      width: 21.97232%; } }

/* ==========================================================================
    Books Page
   ========================================================================== */
.artwork-home-block-outer {
  padding: 30px 0; }

.artwork-home-block {
  border: solid 1px #cfcfcf;
  text-align: center;
  margin-bottom: 20px; }
  .artwork-home-block h2 {
    margin-bottom: 40px; }
  @media (min-width: 37.5em) {
    .artwork-home-block {
      width: 47.40484%;
      float: left;
      margin-right: 3.46021%;
      margin-bottom: 30px;
      box-sizing: border-box; }
      .artwork-home-block.artwork-limited {
        margin-right: 0; } }

.section-artwork-home {
  padding: 30px 0; }

.artwork-home__bd {
  padding: 50px 30px 30px;
  border: 1px solid #e9e9e9;
  margin: 10px; }
  .artwork-home__bd p:last-of-type {
    margin-bottom: 0; }

/* ==========================================================================
    Artwork Pages
   ========================================================================== */
.artwork-singles-nav ul {
  text-align: center; }
  .artwork-singles-nav ul li {
    display: inline-block;
    border-left: solid 2px #bdbbac;
    border-bottom: solid 2px #bdbbac;
    background: white; }
    .artwork-singles-nav ul li a {
      font-family: "Source Serif", Georgia, Times, serif;
      font-size: 16px;
      font-size: 1rem;
      font-weight: normal;
      color: #9b3300;
      text-align: center;
      padding: 20px;
      display: block; }
      @media (min-width: 37.5em) {
        .artwork-singles-nav ul li a {
          font-size: 18px;
          font-size: 1.125rem;
          padding: 20px 45px; } }
    .artwork-singles-nav ul li:last-child {
      border-right: solid 2px #bdbbac; }
    .artwork-singles-nav ul li.selected {
      border-bottom: solid 2px white; }
      .artwork-singles-nav ul li.selected a {
        color: black; }

.artwork-list-wrap {
  margin-top: -2px; }

.tabbed-artwork-page {
  float: left;
  width: 100%;
  position: relative; }

.art-original {
  position: absolute;
  z-index: 100; }

.art-limited-ed {
  position: absolute;
  z-index: 99; }

@media (min-width: 50em) {
  .book-art-wrap .img-wrap {
    width: 66.08997%;
    float: left;
    margin-right: 1.7301%; } }
.book-art-wrap .content-wrap {
  margin-top: 20px; }
  @media (min-width: 50em) {
    .book-art-wrap .content-wrap {
      width: 32.17993%;
      float: right;
      margin-right: 0; } }

.art-hero-wrap {
  text-align: center; }
  .art-hero-wrap .image--original {
    margin-bottom: 50px;
    padding: 20px; }
    .art-hero-wrap .image--original img {
      max-height: 800px; }
  .art-hero-wrap .zoom-wrap {
    display: inline-block; }
  .art-hero-wrap .image--limited_edition, .art-hero-wrap .image {
    margin-bottom: 50px; }
    .art-hero-wrap .image--limited_edition img, .art-hero-wrap .image img {
      max-height: 800px; }
  .art-hero-wrap .image--limited_edition + .info {
    background: url('../img/limited-ed-stamp.png') no-repeat center top;
    padding-top: 150px; }
    @media (min-width: 48em) {
      .art-hero-wrap .image--limited_edition + .info {
        background: url('../img/limited-ed-stamp.png') no-repeat right top;
        padding-top: 0; } }
  .art-hero-wrap .info {
    font-family: "Source Serif", Georgia, Times, serif;
    font-size: 19px;
    font-size: 1.1875rem;
    text-align: center; }
    .art-hero-wrap .info .from-book {
      margin-bottom: 10px; }
      .art-hero-wrap .info .from-book span {
        color: #9b3300; }
    .art-hero-wrap .info .info-about {
      margin-left: 16.95502%;
      width: 66.08997%;
      float: left;
      margin-right: 1.7301%; }
    .art-hero-wrap .info .artwork-detail, .art-hero-wrap .info .artwork-material {
      margin-bottom: 10px; }
    .art-hero-wrap .info .artwork-pricing {
      font-size: 24px;
      font-size: 1.5rem;
      font-family: 'Alegreya SC', serif;
      color: #000000; }
    .art-hero-wrap .info .artwork-size {
      margin-bottom: 50px; }
    .art-hero-wrap .info .artwork-type {
      margin-right: 50px;
      display: inline-block; }

.artwork-pricing {
  margin-bottom: 20px; }

.also-from h2 {
  margin-bottom: 40px; }

/* ==========================================================================
    Sidebars
   ========================================================================== */
/* ==========================================================================
    Footer
   ========================================================================== */
.content-info {
  background: black;
  border-top: solid 2px #bdbbac;
  padding: 10px 0;
  *zoom: 1; }
  .content-info:before, .content-info:after {
    display: table;
    content: ""; }
  .content-info:after {
    clear: both; }
  .content-info .navbar-toggle {
    display: none; }
  .content-info .navbar-brand {
    background-position: center center; }
    @media (min-width: 61.875em) {
      .content-info .navbar-brand {
        background-position: left center; } }
  .content-info .nav a {
    color: white;
    border-right: 0; }
  .content-info .nav a:hover {
    color: #9b3300; }
  .content-info .copyright-notice {
    width: 100%;
    float: left;
    margin-left: 0;
    margin-right: 0;
    font-size: 10px;
    color: white;
    text-align: center;
    padding-top: 50px; }

.mobile-backtotop {
  float: left;
  width: 100%;
  height: 40px;
  background: black;
  font-family: "Source Serif", Georgia, Times, serif;
  font-size: 12px;
  line-height: 40px;
  color: white;
  text-align: center; }
  @media (min-width: 50em) {
    .mobile-backtotop {
      display: none; } }
  .mobile-backtotop a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none; }
