@charset "UTF-8";
/*! Made with Bones: http://themble.com/bones :) */
/******************************************************************
Site Name:
Author:

Stylesheet: Main Stylesheet

Here's where the magic happens. Here, you'll see we are calling in
the separate media queries. The base mobile goes outside any query
and is called at the beginning, after that we call the rest
of the styles inside media queries.

Helpful articles on Sass file organization:
http://thesassway.com/advanced/modular-css-naming-conventions

******************************************************************/
/*********************
IMPORTING PARTIALS
These files are needed at the beginning so that we establish all
our mixins, functions, and variables that we'll be using across
the whole project.
*********************/
/* normalize.css 2012-07-07T09:50 UTC - http://github.com/necolas/normalize.css */
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined in IE 8/9.
 */
/* line 12, ../scss/partials/_normalize.scss */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

/**
 * Correct `inline-block` display not defined in IE 8/9.
 */
/* line 31, ../scss/partials/_normalize.scss */
audio,
canvas,
video {
  display: inline-block;
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
/* line 42, ../scss/partials/_normalize.scss */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9.
 * Hide the `template` element in IE, Safari, and Firefox < 22.
 */
/* line 52, ../scss/partials/_normalize.scss */
[hidden],
template {
  display: none;
}

/* ==========================================================================
   Base
   ========================================================================== */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
/* line 67, ../scss/partials/_normalize.scss */
html {
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/**
 * Remove default margin.
 */
/* line 77, ../scss/partials/_normalize.scss */
body {
  margin: 0;
}

/* ==========================================================================
   Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
/* line 89, ../scss/partials/_normalize.scss */
a {
  background: transparent;
  color: #00205b;
}

/**
 * Address `outline` inconsistency between Chrome and other browsers.
 */
/* line 97, ../scss/partials/_normalize.scss */
a:focus {
  outline: thin dotted;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
/* line 105, ../scss/partials/_normalize.scss */
a:active,
a:hover {
  outline: 0;
}

/* ==========================================================================
   Typography
   ========================================================================== */
/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */
/* line 119, ../scss/partials/_normalize.scss */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9, Safari 5, and Chrome.
 */
/* line 128, ../scss/partials/_normalize.scss */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
 */
/* line 136, ../scss/partials/_normalize.scss */
b,
strong,
.strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari 5 and Chrome.
 */
/* line 146, ../scss/partials/_normalize.scss */
dfn,
em,
.em {
  font-style: italic;
}

/**
 * Address differences between Firefox and other browsers.
 */
/* line 156, ../scss/partials/_normalize.scss */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/*
 * proper formatting (http://blog.fontdeck.com/post/9037028497/hyphens)
*/
/* line 166, ../scss/partials/_normalize.scss */
p {
  -webkit-hyphens: auto;
  -epub-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
}

/*
 * Addresses margins set differently in IE6/7.
 */
/* line 177, ../scss/partials/_normalize.scss */
pre {
  margin: 0;
}

/**
 * Correct font family set oddly in Safari 5 and Chrome.
 */
/* line 185, ../scss/partials/_normalize.scss */
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em;
}

/**
 * Improve readability of pre-formatted text in all browsers.
 */
/* line 197, ../scss/partials/_normalize.scss */
pre {
  white-space: pre-wrap;
}

/**
 * Set consistent quote types.
 */
/* line 205, ../scss/partials/_normalize.scss */
q {
  quotes: "\201C" "\201D" "\2018" "\2019";
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
/* line 212, ../scss/partials/_normalize.scss */
q:before,
q:after {
  content: '';
  content: none;
}

/* line 218, ../scss/partials/_normalize.scss */
small, .small {
  font-size: 75%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
/* line 226, ../scss/partials/_normalize.scss */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

/* line 234, ../scss/partials/_normalize.scss */
sup {
  top: -0.5em;
}

/* line 238, ../scss/partials/_normalize.scss */
sub {
  bottom: -0.25em;
}

/* ==========================================================================
  Lists
========================================================================== */
/*
 * Addresses margins set differently in IE6/7.
 */
/* line 250, ../scss/partials/_normalize.scss */
dl,
menu,
ol,
ul {
  margin: 1em 0;
}

/* line 257, ../scss/partials/_normalize.scss */
dd {
  margin: 0;
}

/*
 * Addresses paddings set differently in IE6/7.
 */
/* line 265, ../scss/partials/_normalize.scss */
menu {
  padding: 0 0 0 40px;
}

/* line 269, ../scss/partials/_normalize.scss */
ol,
ul {
  padding: 0;
  list-style-type: none;
}

/*
 * Corrects list images handled incorrectly in IE7.
 */
/* line 279, ../scss/partials/_normalize.scss */
nav ul,
nav ol {
  list-style: none;
  list-style-image: none;
}

/* ==========================================================================
  Embedded content
========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9.
 */
/* line 293, ../scss/partials/_normalize.scss */
img {
  border: 0;
}

/**
 * Correct overflow displayed oddly in IE 9.
 */
/* line 301, ../scss/partials/_normalize.scss */
svg:not(:root) {
  overflow: hidden;
}

/* ==========================================================================
   Figures
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari 5.
 */
/* line 313, ../scss/partials/_normalize.scss */
figure {
  margin: 0;
}

/* ==========================================================================
   Forms
   ========================================================================== */
/**
 * Define consistent border, margin, and padding.
 */
/* line 325, ../scss/partials/_normalize.scss */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
/* line 336, ../scss/partials/_normalize.scss */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * 1. Correct font family not being inherited in all browsers.
 * 2. Correct font size not being inherited in all browsers.
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
 */
/* line 347, ../scss/partials/_normalize.scss */
button,
input,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 2 */
  margin: 0;
  /* 3 */
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
/* line 361, ../scss/partials/_normalize.scss */
button,
input {
  line-height: normal;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
/* line 373, ../scss/partials/_normalize.scss */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
/* line 386, ../scss/partials/_normalize.scss */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
/* line 398, ../scss/partials/_normalize.scss */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
/* line 408, ../scss/partials/_normalize.scss */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
/* line 420, ../scss/partials/_normalize.scss */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
/* line 432, ../scss/partials/_normalize.scss */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
/* line 441, ../scss/partials/_normalize.scss */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * 1. Remove default vertical scrollbar in IE 8/9.
 * 2. Improve readability and alignment in all browsers.
 */
/* line 452, ../scss/partials/_normalize.scss */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}


/* ==========================================================================
   Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
/* line 465, ../scss/partials/_normalize.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* line 472, ../scss/partials/_normalize.scss */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 479, ../scss/partials/_normalize.scss */
.image-replacement,
.ir {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

/* line 487, ../scss/partials/_normalize.scss */
.clearfix, .cf, .comment-respond {
  zoom: 1;
}
/* line 489, ../scss/partials/_normalize.scss */
.clearfix:before, .clearfix:after, .cf:before, .comment-respond:before, .cf:after, .comment-respond:after {
  content: "";
  display: table;
}
/* line 490, ../scss/partials/_normalize.scss */
.clearfix:after, .cf:after, .comment-respond:after {
  clear: both;
}

/*
use the best ampersand
http://simplebits.com/notebook/2008/08/14/ampersands-2/
*/
/* line 497, ../scss/partials/_normalize.scss */
span.amp {
  font-style: italic;
}

/*********************
COLORS
*********************/
/*********************
FONT STACKS
*********************/
/*********************
TYPO DEFAULTS
*********************/
/* line 49, ../scss/partials/_variables.scss */
p {
  -ms-word-wrap: break-word;
  word-break: break-word;
  word-wrap: break-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
  -webkit-hyphenate-before: 2;
  -webkit-hyphenate-after: 3;
  hyphenate-lines: 3;
  -webkit-font-feature-settings: "liga", "dlig";
  -moz-font-feature-settings: "liga=1, dlig=1";
  -ms-font-feature-settings: "liga", "dlig";
  -o-font-feature-settings: "liga", "dlig";
  font-feature-settings: "liga", "dlig";
}

/*********************
COLOR FUNCTIONS
These are helpful when you're working
with shadows and such things. It's essentially
a quicker way to write RGBA.

Example:
box-shadow: 0 0 4px black(0.3);
compiles to:
box-shadow: 0 0 4px rgba(0,0,0,0.3);
*********************/
/*********************
RESPONSIVE HELPER FUNCTION
If you're creating a responsive site, then
you've probably already read
Responsive Web Design: http://www.abookapart.com/products/responsive-web-design

Here's a nice little helper function for calculating
target / context
as mentioned in that book.

Example:
width: cp(650px, 1000px);
or
width: calc-percent(650px, 1000px);
both compile to:
width: 65%;
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Mixins Stylesheet

This is where you can take advantage of Sass' great features: Mixins.
I won't go in-depth on how they work exactly,
there are a few articles below that will help do that. What I will
tell you is that this will help speed up simple changes like
changing a color or adding CSS3 techniques gradients.

A WORD OF WARNING: It's very easy to overdo it here. Be careful and
remember less is more.

Helpful:
http://sachagreif.com/useful-sass-mixins/
http://thesassway.com/intermediate/leveraging-sass-mixins-for-cleaner-code
http://web-design-weekly.com/blog/2013/05/12/handy-sass-mixins/

******************************************************************/
/*********************
TRANSITION
*********************/
/*
I totally rewrote this to be cleaner and easier to use.
You'll need to be using Sass 3.2+ for these to work.
Thanks to @anthonyshort for the inspiration on these.
USAGE: @include transition(all 0.2s ease-in-out);
*/
/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************/
/* @include css-gradient(#dfdfdf,#f8f8f8); */
/*********************
BOX SIZING
*********************/
/* @include box-sizing(border-box); */
/* NOTE: value of "padding-box" is only supported in Gecko. So
probably best not to use it. I mean, were you going to anyway? */
/*********************
CLEARFIX
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Grid Stylesheet

I've seperated the grid so you can swap it out easily. It's
called at the top the style.scss stylesheet.

There are a ton of grid solutions out there. You should definitely
experiment with your own. Here are some recommendations:

http://gridsetapp.com - Love this site. Responsive Grids made easy.
http://susy.oddbird.net/ - Grids using Compass. Very elegant.
http://gridpak.com/ - Create your own responsive grid.
https://github.com/dope/lemonade - Neat lightweight grid.


The grid below is a custom built thingy I modeled a bit after
Gridset. It's VERY basic and probably shouldn't be used on
your client projects. The idea is you learn how to roll your
own grids. It's better in the long run and allows you full control
over your project's layout.

******************************************************************/
/* line 35, ../scss/partials/_grid.scss */
.last-col {
  float: right;
  padding-right: 0 !important;
}

/*
Mobile Grid Styles
These are the widths for the mobile grid.
There are four types, but you can add or customize
them however you see fit.
*/
@media (max-width: 767px) {
  /* line 49, ../scss/partials/_grid.scss */
  .m-all {
    float: left;
    padding-right: 0.75em;
    width: 100%;
    padding-right: 0;
  }

  /* line 55, ../scss/partials/_grid.scss */
  .m-1of2 {
    float: left;
    padding-right: 0.75em;
    width: 50%;
  }

  /* line 60, ../scss/partials/_grid.scss */
  .m-1of3 {
    float: left;
    padding-right: 0.75em;
    width: 33.33%;
  }

  /* line 65, ../scss/partials/_grid.scss */
  .m-2of3 {
    float: left;
    padding-right: 0.75em;
    width: 66.66%;
  }

  /* line 70, ../scss/partials/_grid.scss */
  .m-1of4 {
    float: left;
    padding-right: 0.75em;
    width: 25%;
  }

  /* line 75, ../scss/partials/_grid.scss */
  .m-3of4 {
    float: left;
    padding-right: 0.75em;
    width: 75%;
  }
}
/* Portrait tablet to landscape */
@media (min-width: 768px) and (max-width: 1029px) {
  /* line 86, ../scss/partials/_grid.scss */
  .t-all {
    float: left;
    padding-right: 0.75em;
    width: 100%;
    padding-right: 0;
  }

  /* line 92, ../scss/partials/_grid.scss */
  .t-1of2 {
    float: left;
    padding-right: 0.75em;
    width: 50%;
  }

  /* line 97, ../scss/partials/_grid.scss */
  .t-1of3 {
    float: left;
    padding-right: 0.75em;
    width: 33.33%;
  }

  /* line 102, ../scss/partials/_grid.scss */
  .t-2of3 {
    float: left;
    padding-right: 0.75em;
    width: 66.66%;
  }

  /* line 107, ../scss/partials/_grid.scss */
  .t-1of4 {
    float: left;
    padding-right: 0.75em;
    width: 25%;
  }

  /* line 112, ../scss/partials/_grid.scss */
  .t-3of4 {
    float: left;
    padding-right: 0.75em;
    width: 75%;
  }

  /* line 117, ../scss/partials/_grid.scss */
  .t-1of5 {
    float: left;
    padding-right: 0.75em;
    width: 20%;
  }

  /* line 122, ../scss/partials/_grid.scss */
  .t-2of5 {
    float: left;
    padding-right: 0.75em;
    width: 40%;
  }

  /* line 127, ../scss/partials/_grid.scss */
  .t-3of5 {
    float: left;
    padding-right: 0.75em;
    width: 60%;
  }

  /* line 132, ../scss/partials/_grid.scss */
  .t-4of5 {
    float: left;
    padding-right: 0.75em;
    width: 80%;
  }
}
/* Landscape to small desktop */
@media (min-width: 1030px) {
  /* line 142, ../scss/partials/_grid.scss */
  .d-all {
    float: left;
    padding-right: 0.75em;
    width: 100%;
    padding-right: 0;
  }

  /* line 148, ../scss/partials/_grid.scss */
  .d-1of2 {
    float: left;
    padding-right: 0.75em;
    width: 50%;
  }

  /* line 153, ../scss/partials/_grid.scss */
  .d-1of3 {
    float: left;
    padding-right: 0.75em;
    width: 33.33%;
  }

  /* line 158, ../scss/partials/_grid.scss */
  .d-2of3 {
    float: left;
    padding-right: 0.75em;
    width: 66.66%;
  }

  /* line 163, ../scss/partials/_grid.scss */
  .d-1of4 {
    float: left;
    padding-right: 0.75em;
    width: 25%;
  }

  /* line 168, ../scss/partials/_grid.scss */
  .d-3of4 {
    float: left;
    padding-right: 0.75em;
    width: 75%;
  }

  /* line 173, ../scss/partials/_grid.scss */
  .d-1of5 {
    float: left;
    padding-right: 0.75em;
    width: 20%;
  }

  /* line 178, ../scss/partials/_grid.scss */
  .d-2of5 {
    float: left;
    padding-right: 0.75em;
    width: 40%;
  }

  /* line 183, ../scss/partials/_grid.scss */
  .d-3of5 {
    float: left;
    padding-right: 0.75em;
    width: 60%;
  }

  /* line 188, ../scss/partials/_grid.scss */
  .d-4of5 {
    float: left;
    padding-right: 0.75em;
    width: 80%;
  }

  /* line 193, ../scss/partials/_grid.scss */
  .d-1of6 {
    float: left;
    padding-right: 0.75em;
    width: 16.6666666667%;
  }

  /* line 198, ../scss/partials/_grid.scss */
  .d-1of7 {
    float: left;
    padding-right: 0.75em;
    width: 14.2857142857%;
  }

  /* line 203, ../scss/partials/_grid.scss */
  .d-2of7 {
    float: left;
    padding-right: 0.75em;
    width: 28.5714286%;
  }

  /* line 208, ../scss/partials/_grid.scss */
  .d-3of7 {
    float: left;
    padding-right: 0.75em;
    width: 42.8571429%;
  }

  /* line 213, ../scss/partials/_grid.scss */
  .d-4of7 {
    float: left;
    padding-right: 0.75em;
    width: 57.1428572%;
  }

  /* line 218, ../scss/partials/_grid.scss */
  .d-5of7 {
    float: left;
    padding-right: 0.75em;
    width: 71.4285715%;
  }

  /* line 223, ../scss/partials/_grid.scss */
  .d-6of7 {
    float: left;
    padding-right: 0.75em;
    width: 85.7142857%;
  }

  /* line 228, ../scss/partials/_grid.scss */
  .d-1of8 {
    float: left;
    padding-right: 0.75em;
    width: 12.5%;
  }

  /* line 233, ../scss/partials/_grid.scss */
  .d-1of9 {
    float: left;
    padding-right: 0.75em;
    width: 11.1111111111%;
  }

  /* line 238, ../scss/partials/_grid.scss */
  .d-1of10 {
    float: left;
    padding-right: 0.75em;
    width: 10%;
  }

  /* line 243, ../scss/partials/_grid.scss */
  .d-1of11 {
    float: left;
    padding-right: 0.75em;
    width: 9.09090909091%;
  }

  /* line 248, ../scss/partials/_grid.scss */
  .d-1of12 {
    float: left;
    padding-right: 0.75em;
    width: 8.33%;
  }
}
/**
 * BxSlider v4.1.2 - Fully loaded, responsive content slider
 * http://bxslider.com
 *
 * Written by: Steven Wanderski, 2014
 * http://stevenwanderski.com
 * (while drinking Belgian ales and listening to jazz)
 *
 * CEO and founder of bxCreative, LTD
 * http://bxcreative.com
 */
/** RESET AND LAYOUT
===================================*/
/* line 15, ../scss/partials/_plugins.scss */
.bx-wrapper {
  position: relative;
  margin: 0 auto;
  padding: 0;
  *zoom: 1;
}
body.home .bx-wrapper {
  margin-top: -1px;
}

/* line 23, ../scss/partials/_plugins.scss */
.bx-wrapper img {
  max-width: 100%;
  display: block;
}

/** THEME
===================================*/
/* line 31, ../scss/partials/_plugins.scss */
.bx-wrapper .bx-viewport {
  background: white;
  /*fix other elements on the page moving (on Chrome)*/
  -webkit-transform: translatez(0);
  -moz-transform: translatez(0);
  -ms-transform: translatez(0);
  -o-transform: translatez(0);
  transform: translatez(0);
}

/* LOADER */
/* line 51, ../scss/partials/_plugins.scss */
.bx-wrapper .bx-loading {
  min-height: 50px;
  background: url(images/bx_loader.gif) center center no-repeat #fff;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2000;
}

/* PAGER */
/* line 64, ../scss/partials/_plugins.scss */
.bx-wrapper .bx-pager {
    position: relative;
    bottom: 0;
    height: 100%;
    padding-top: 24px;
    padding-bottom: 24px;
    text-align: center;
    font-size: .85em;
    font-weight: bold;
    display: grid;
}

/* line 74, ../scss/partials/_plugins.scss */
.bx-wrapper .bx-pager .bx-pager-item,
.bx-wrapper .bx-controls-auto .bx-controls-auto-item {
  display: inline-block;
  *zoom: 1;
  *display: inline;
}
.bx-pager-item {
    width: 12px;
    height: 80%;
    display: block !important;
    clear: both;
    margin: 0 auto;
}

/* line 82, ../scss/partials/_plugins.scss */
.bx-wrapper .bx-pager.bx-default-pager a {
    background: none;
    border-right: 1px solid #e5e1e6;
    text-indent: -9999px;
    width: 12px;
    padding-left: 5px;
    height: calc(100% - 4px);
    display: block;
    margin: 0;
    outline: 0;
    transition: all 0.5s;
    position: relative;
}
.bx-wrapper .bx-pager.bx-default-pager a:after {
    content: '';
    position: absolute;
    width: 200%;
    height: 100%;
    display: block;
    right: 0;
    left: 0;
}
.bx-wrapper .bx-pager.bx-default-pager a:hover,
.bx-wrapper .bx-pager.bx-default-pager a.active {
    border-right: 2px solid#041E42;
    padding-left: 4px;
}


/* DIRECTION CONTROLS (NEXT / PREV) */
/* line 107, ../scss/partials/_plugins.scss */
.bx-wrapper .bx-prev {
  right: 80px;
  background: url(images/controls.png) no-repeat 0 -32px;
}

/* line 113, ../scss/partials/_plugins.scss */
.bx-wrapper .bx-next {
  right: 20px;
  background: url(images/controls.png) no-repeat -43px -32px;
}

/* line 119, ../scss/partials/_plugins.scss */
.bx-wrapper .bx-prev:hover {
  background-position: 0 0;
}

/* line 124, ../scss/partials/_plugins.scss */
.bx-wrapper .bx-next:hover {
  background-position: -43px 0;
}

/* line 129, ../scss/partials/_plugins.scss */
.bx-wrapper .bx-controls-direction a {
  position: absolute;
  bottom: 15px;
  margin-top: -16px;
  outline: 0;
  width: 32px;
  height: 32px;
  text-indent: -9999px;
  z-index: 9999;
  cursor: pointer !important;
}

/* line 142, ../scss/partials/_plugins.scss */
.bx-wrapper .bx-controls-direction a.disabled {
  display: none;
}

/* AUTO CONTROLS (START / STOP) */
/* line 148, ../scss/partials/_plugins.scss */
.bx-wrapper .bx-controls-auto {
  text-align: center;
}

/* line 153, ../scss/partials/_plugins.scss */
.bx-wrapper .bx-controls-auto .bx-start {
  display: block;
  text-indent: -9999px;
  width: 10px;
  height: 11px;
  outline: 0;
  background: url(images/controls.png) -86px -11px no-repeat;
  margin: 0 3px;
}

/* line 164, ../scss/partials/_plugins.scss */
.bx-wrapper .bx-controls-auto .bx-start:hover,
.bx-wrapper .bx-controls-auto .bx-start.active {
  background-position: -86px 0;
}

/* line 170, ../scss/partials/_plugins.scss */
.bx-wrapper .bx-controls-auto .bx-stop {
  display: block;
  text-indent: -9999px;
  width: 9px;
  height: 11px;
  outline: 0;
  background: url(images/controls.png) -86px -44px no-repeat;
  margin: 0 3px;
}

/* line 181, ../scss/partials/_plugins.scss */
.bx-wrapper .bx-controls-auto .bx-stop:hover,
.bx-wrapper .bx-controls-auto .bx-stop.active {
  background-position: -86px -33px;
}

/* PAGER WITH AUTO-CONTROLS HYBRID LAYOUT */
/* line 188, ../scss/partials/_plugins.scss */
.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager {
  text-align: left;
  width: 80%;
}

/* line 194, ../scss/partials/_plugins.scss */
.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto {
  right: 0;
  width: 35px;
}

/* IMAGE CAPTIONS */
/* line 201, ../scss/partials/_plugins.scss */
.bx-wrapper .bx-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #666 \9;
  background: rgba(80, 80, 80, 0.75);
  width: 100%;
}

/* line 211, ../scss/partials/_plugins.scss */
.bx-wrapper .bx-caption span {
  color: #fff;
  display: block;
  font-size: .85em;
  padding: 10px;
}


/* Magnific Popup CSS */
/* line 315, ../scss/partials/_plugins.scss */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
}

/* line 329, ../scss/partials/_plugins.scss */
.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

/* line 341, ../scss/partials/_plugins.scss */
.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box;
}

/* line 354, ../scss/partials/_plugins.scss */
.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

/* line 365, ../scss/partials/_plugins.scss */
.mfp-align-top .mfp-container:before {
  display: none;
}

/* line 372, ../scss/partials/_plugins.scss */
.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

/* line 382, ../scss/partials/_plugins.scss */
.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

/* line 389, ../scss/partials/_plugins.scss */
.mfp-ajax-cur {
  cursor: progress;
}

/* line 393, ../scss/partials/_plugins.scss */
.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

/* line 399, ../scss/partials/_plugins.scss */
.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

/* line 406, ../scss/partials/_plugins.scss */
.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

/* line 411, ../scss/partials/_plugins.scss */
.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

/* line 422, ../scss/partials/_plugins.scss */
.mfp-loading.mfp-figure {
  display: none;
}

/* line 441, ../scss/partials/_plugins.scss */
.mfp-hide {
  display: none !important;
}

/* line 452, ../scss/partials/_plugins.scss */
.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}
/* line 462, ../scss/partials/_plugins.scss */
.mfp-preloader a {
  color: #CCC;
}
/* line 464, ../scss/partials/_plugins.scss */
.mfp-preloader a:hover {
  color: #FFF;
}

/* line 472, ../scss/partials/_plugins.scss */
.mfp-s-ready .mfp-preloader {
  display: none;
}

/* line 479, ../scss/partials/_plugins.scss */
.mfp-s-error .mfp-content {
  display: none;
}

/* line 486, ../scss/partials/_plugins.scss */
button.mfp-close, button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation;
}
/* line 500, ../scss/partials/_plugins.scss */
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

/* line 508, ../scss/partials/_plugins.scss */
.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
}
/* line 526, ../scss/partials/_plugins.scss */
.mfp-close:hover, .mfp-close:focus {
  opacity: 1;
}
/* line 531, ../scss/partials/_plugins.scss */
.mfp-close:active {
  top: 1px;
}

/* line 536, ../scss/partials/_plugins.scss */
.mfp-close-btn-in .mfp-close {
  color: #333;
}

/* line 542, ../scss/partials/_plugins.scss */
.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

/* line 552, ../scss/partials/_plugins.scss */
.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

/* line 564, ../scss/partials/_plugins.scss */
.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}
/* line 574, ../scss/partials/_plugins.scss */
.mfp-arrow:active {
  margin-top: -54px;
}
/* line 577, ../scss/partials/_plugins.scss */
.mfp-arrow:hover, .mfp-arrow:focus {
  opacity: 1;
}
/* line 581, ../scss/partials/_plugins.scss */
.mfp-arrow:before, .mfp-arrow:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}
/* line 595, ../scss/partials/_plugins.scss */
.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}
/* line 602, ../scss/partials/_plugins.scss */
.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

/* line 610, ../scss/partials/_plugins.scss */
.mfp-arrow-left {
  left: 0;
}
/* line 612, ../scss/partials/_plugins.scss */
.mfp-arrow-left:after {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}
/* line 616, ../scss/partials/_plugins.scss */
.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}

/* line 622, ../scss/partials/_plugins.scss */
.mfp-arrow-right {
  right: 0;
}
/* line 624, ../scss/partials/_plugins.scss */
.mfp-arrow-right:after {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}
/* line 628, ../scss/partials/_plugins.scss */
.mfp-arrow-right:before {
  border-left: 27px solid #3F3F3F;
}

/* line 638, ../scss/partials/_plugins.scss */
.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}
/* line 641, ../scss/partials/_plugins.scss */
.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}
/* line 646, ../scss/partials/_plugins.scss */
.mfp-iframe-holder .mfp-close {
  top: -40px;
}

/* line 650, ../scss/partials/_plugins.scss */
.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}
/* line 655, ../scss/partials/_plugins.scss */
.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

/* Main image in popup */
/* line 675, ../scss/partials/_plugins.scss */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
/* line 688, ../scss/partials/_plugins.scss */
.mfp-figure {
  line-height: 0;
}
/* line 690, ../scss/partials/_plugins.scss */
.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}
/* line 704, ../scss/partials/_plugins.scss */
.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}
/* line 710, ../scss/partials/_plugins.scss */
.mfp-figure figure {
  margin: 0;
}

/* line 714, ../scss/partials/_plugins.scss */
.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

/* line 722, ../scss/partials/_plugins.scss */
.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}

/* line 731, ../scss/partials/_plugins.scss */
.mfp-image-holder .mfp-content {
  max-width: 100%;
}

/* line 738, ../scss/partials/_plugins.scss */
.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
   * Remove all paddings around the image on small screen
   */
  /* line 751, ../scss/partials/_plugins.scss */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }
  /* line 756, ../scss/partials/_plugins.scss */
  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }
  /* line 762, ../scss/partials/_plugins.scss */
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }
  /* line 766, ../scss/partials/_plugins.scss */
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }
  /* line 771, ../scss/partials/_plugins.scss */
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box;
  }
  /* line 779, ../scss/partials/_plugins.scss */
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }
  /* line 783, ../scss/partials/_plugins.scss */
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }
  /* line 787, ../scss/partials/_plugins.scss */
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}
@media all and (max-width: 900px) {
  /* line 807, ../scss/partials/_plugins.scss */
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }

  /* line 811, ../scss/partials/_plugins.scss */
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }

  /* line 815, ../scss/partials/_plugins.scss */
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }

  /* line 819, ../scss/partials/_plugins.scss */
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}
/**
 * Simple fade transition,
 */
/* line 828, ../scss/partials/_plugins.scss */
.mfp-fade.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}

/* line 834, ../scss/partials/_plugins.scss */
.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.8;
}

/* line 837, ../scss/partials/_plugins.scss */
.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

/* line 841, ../scss/partials/_plugins.scss */
.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}

/* line 847, ../scss/partials/_plugins.scss */
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}

/* line 850, ../scss/partials/_plugins.scss */
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

/** FANCYBOX DEL CONTACTO **/
/*! fancyBox v2.1.5 fancyapps.com | fancyapps.com/fancybox/#license */
/* line 859, ../scss/partials/_plugins.scss */
.fancybox-wrap,
.fancybox-skin,
.fancybox-outer,
.fancybox-inner,
.fancybox-image,
.fancybox-wrap iframe,
.fancybox-wrap object,
.fancybox-nav,
.fancybox-nav span,
.fancybox-tmp {
  padding: 0;
  margin: 0;
  border: 0;
  outline: none;
  vertical-align: top;
}

/* line 877, ../scss/partials/_plugins.scss */
.fancybox-wrap {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 8020;
}

/* line 884, ../scss/partials/_plugins.scss */
.fancybox-skin {
  position: relative;
  background: #f9f9f9;
  color: #444;
  text-shadow: none;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

/* line 894, ../scss/partials/_plugins.scss */
.fancybox-opened {
  z-index: 8030;
}

/* line 898, ../scss/partials/_plugins.scss */
.fancybox-opened .fancybox-skin {
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

/* line 904, ../scss/partials/_plugins.scss */
.fancybox-outer, .fancybox-inner {
  position: relative;
}

/* line 908, ../scss/partials/_plugins.scss */
.fancybox-inner {
  overflow: hidden;
}

/* line 912, ../scss/partials/_plugins.scss */
.fancybox-type-iframe .fancybox-inner {
  -webkit-overflow-scrolling: touch;
}

/* line 916, ../scss/partials/_plugins.scss */
.fancybox-error {
  color: #444;
  font: 14px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
  margin: 0;
  padding: 15px;
  white-space: nowrap;
}

/* line 924, ../scss/partials/_plugins.scss */
.fancybox-image, .fancybox-iframe {
  display: block;
  width: 100%;
  height: 100%;
}

/* line 930, ../scss/partials/_plugins.scss */
.fancybox-image {
  max-width: 100%;
  max-height: 100%;
}

/* line 935, ../scss/partials/_plugins.scss */
#fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
  background-image: url("../img/fancybox_sprite.png");
}

/* line 939, ../scss/partials/_plugins.scss */
#fancybox-loading {
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -22px;
  margin-left: -22px;
  background-position: 0 -108px;
  opacity: 0.8;
  cursor: pointer;
  z-index: 8060;
}

/* line 951, ../scss/partials/_plugins.scss */
#fancybox-loading div {
  width: 44px;
  height: 44px;
  background: url("fancybox_loading.gif") center center no-repeat;
}

/* line 957, ../scss/partials/_plugins.scss */
.fancybox-close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  z-index: 8040;
}

/* line 967, ../scss/partials/_plugins.scss */
.fancybox-nav {
  position: absolute;
  top: 0;
  width: 40%;
  height: 100%;
  cursor: pointer;
  text-decoration: none;
  background: transparent url("blank.gif");
  /* helps IE */
  -webkit-tap-highlight-color: transparent;
  z-index: 8040;
}

/* line 979, ../scss/partials/_plugins.scss */
.fancybox-prev {
  left: 0;
}

/* line 983, ../scss/partials/_plugins.scss */
.fancybox-next {
  right: 0;
}

/* line 987, ../scss/partials/_plugins.scss */
.fancybox-nav span {
  position: absolute;
  top: 50%;
  width: 36px;
  height: 34px;
  margin-top: -18px;
  cursor: pointer;
  z-index: 8040;
  visibility: hidden;
}

/* line 998, ../scss/partials/_plugins.scss */
.fancybox-prev span {
  left: 10px;
  background-position: 0 -36px;
}

/* line 1003, ../scss/partials/_plugins.scss */
.fancybox-next span {
  right: 10px;
  background-position: 0 -72px;
}

/* line 1008, ../scss/partials/_plugins.scss */
.fancybox-nav:hover span {
  visibility: visible;
}

/* line 1012, ../scss/partials/_plugins.scss */
.fancybox-tmp {
  position: absolute;
  top: -99999px;
  left: -99999px;
  visibility: hidden;
  max-width: 99999px;
  max-height: 99999px;
  overflow: visible !important;
}

/* Overlay helper */
/* line 1024, ../scss/partials/_plugins.scss */
.fancybox-lock {
  overflow: hidden !important;
  width: auto;
}

/* line 1029, ../scss/partials/_plugins.scss */
.fancybox-lock body {
  overflow: hidden !important;
}

/* line 1033, ../scss/partials/_plugins.scss */
.fancybox-lock-test {
  overflow-y: hidden !important;
}

/* line 1037, ../scss/partials/_plugins.scss */
.fancybox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  display: none;
  z-index: 8010;
  background: url("fancybox_overlay.png");
}

/* line 1047, ../scss/partials/_plugins.scss */
.fancybox-overlay-fixed {
  position: fixed;
  bottom: 0;
  right: 0;
}

/* line 1053, ../scss/partials/_plugins.scss */
.fancybox-lock .fancybox-overlay {
  overflow: auto;
  overflow-y: scroll;
}

/* Title helper */
/* line 1060, ../scss/partials/_plugins.scss */
.fancybox-title {
  visibility: hidden;
  font: normal 13px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
  position: relative;
  text-shadow: none;
  z-index: 8050;
}

/* line 1068, ../scss/partials/_plugins.scss */
.fancybox-opened .fancybox-title {
  visibility: visible;
}

/* line 1072, ../scss/partials/_plugins.scss */
.fancybox-title-float-wrap {
  position: absolute;
  bottom: 0;
  right: 50%;
  margin-bottom: -35px;
  z-index: 8050;
  text-align: center;
}

/* line 1081, ../scss/partials/_plugins.scss */
.fancybox-title-float-wrap .child {
  display: inline-block;
  margin-right: -100%;
  padding: 2px 20px;
  background: transparent;
  /* Fallback for web browsers that doesn't support RGBa */
  background: rgba(0, 0, 0, 0.8);
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  text-shadow: 0 1px 2px #222;
  color: #FFF;
  font-weight: bold;
  line-height: 24px;
  white-space: nowrap;
}

/* line 1097, ../scss/partials/_plugins.scss */
.fancybox-title-outside-wrap {
  position: relative;
  margin-top: 10px;
  color: #fff;
}

/* line 1103, ../scss/partials/_plugins.scss */
.fancybox-title-inside-wrap {
  padding-top: 10px;
}

/* line 1107, ../scss/partials/_plugins.scss */
.fancybox-title-over-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  padding: 10px;
  background: #000;
  background: rgba(0, 0, 0, 0.8);
}

/*Retina graphics!*/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
  /* line 1122, ../scss/partials/_plugins.scss */
  #fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
    background-image: url("../img/fancybox_sprite@2x.png");
    background-size: 44px 152px;
    /*The size of the normal image, half the size of the hi-res image*/
  }

  /* line 1127, ../scss/partials/_plugins.scss */
  #fancybox-loading div {
    background-image: url("../img/fancybox_loading@2x.gif");
    background-size: 24px 24px;
    /*The size of the normal image, half the size of the hi-res image*/
  }
}
/*********************
BASE (MOBILE) SIZE
This are the mobile styles. It's what people see on their phones. If
you set a great foundation, you won't need to add too many styles in
the other stylesheets. Remember, keep it light: Speed is Important.
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Base Mobile Stylesheet

Be light and don't over style since everything here will be
loaded by mobile devices. You want to keep it as minimal as
possible. This is called at the top of the main stylsheet
and will be used across all viewports.

******************************************************************/
/*********************
GENERAL STYLES
*********************/
/* line 18, ../scss/breakpoints/_base.scss */
body {
  font-family: lucasreg;
  font-size: 18px;
  line-height: 1.5;
  background-color: #fff;
  color: #00205B;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/********************
WORDPRESS BODY CLASSES
style a page via class
********************/
/* for sites that are read right to left (i.e. hebrew) */
/* home page */
/* blog template page */
/* archive page */
/* date archive page */
/* replace the number to the corresponding page number */
/* search page */
/* search result page */
/* no results search page */
/* individual paged search (i.e. body.search-paged-3) */
/* 404 page */
/* single post page */
/* individual post page by id (i.e. body.postid-73) */
/* individual paged single (i.e. body.single-paged-3) */
/* attatchment page */
/* individual attatchment page (i.e. body.attachmentid-763) */
/* style mime type pages */
/* author page */
/* user nicename (i.e. body.author-samueladams) */
/* paged author archives (i.e. body.author-paged-4) for page 4 */
/* category page */
/* individual category page (i.e. body.category-6) */
/* replace the number to the corresponding page number */
/* tag page */
/* individual tag page (i.e. body.tag-news) */
/* replace the number to the corresponding page number */
/* custom page template page */
/* individual page template (i.e. body.page-template-contact-php */
/* replace the number to the corresponding page number */
/* parent page template */
/* child page template */
/* replace the number to the corresponding page number */
/* if user is logged in */
/* paged items like search results or archives */
/* individual paged (i.e. body.paged-3) */
/*********************
LAYOUT & GRID STYLES
*********************/
/* line 73, ../scss/breakpoints/_base.scss */
.wrap {
  width: 96%;
  margin: 0 auto;
}
/* line 76, ../scss/breakpoints/_base.scss */
.wrap.nomargin {
  width: 100%;
}


/******************************************************************
H1, H2, H3, H4, H5 STYLES
******************************************************************/
/* line 113, ../scss/breakpoints/_base.scss */
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5 {
  text-rendering: optimizelegibility;
  font-weight: 500;
  /*
  if you're going to use webfonts, be sure to check your weights
  http://css-tricks.com/watch-your-font-weight/
  */
  /* removing text decoration from all headline links */
}
/* line 122, ../scss/breakpoints/_base.scss */
h1 a, .h1 a, h2 a, .h2 a, h3 a, .h3 a, h4 a, .h4 a, h5 a, .h5 a {
  text-decoration: none;
}

/* line 127, ../scss/breakpoints/_base.scss */
h1, .h1 {
  font-size: 2.5em;
  line-height: 1.333em;
}

/* line 132, ../scss/breakpoints/_base.scss */
h2, .h2 {
  font-size: 1.75em;
  line-height: 1.4em;
  margin-bottom: 0.375em;
}

/* line 138, ../scss/breakpoints/_base.scss */
h3, .h3 {
  font-size: 1.125em;
}

/* line 142, ../scss/breakpoints/_base.scss */
h4, .h4 {
  font-size: 1.1em;
  font-weight: 700;
}

/* line 147, ../scss/breakpoints/_base.scss */
h5, .h5 {
  font-size: 0.846em;
  line-height: 2.09em;
  text-transform: uppercase;
  letter-spacing: 2px;
}

h2 a,
h2 a:hover,
h2 a:visited {
  color: #00205b;
}

/*********************
HEADER STYLES
*********************/
/* line 158, ../scss/breakpoints/_base.scss */

body > #container > .header {
  display: block;
  position: relative;
  height: 85px;
  width: 100%;
}
body > #container > header {
  display: block;
  position: absolute;
  z-index: 10;
  top: 0;
  background-color: #00205B;
  height: auto;
  overflow: visible;
}
body > #container > header #inner-header.wrap {
  height: 100%;
  padding-left: 0;
}

/* line 164, ../scss/breakpoints/_base.scss */

#logo {
    position: absolute;
    z-index: 20;
    width: auto;
    height: 80px;
    top: 0;
    left: 110px;
    margin: auto;
    display: block;
    float: left
}
header #inner-header.wrap > nav {
    height: 100%;
    display: block;
}
header #inner-header.wrap #menu-cabecera {
    height: 100%;
}
header #inner-header.wrap #menu-cabecera li {
    display: inline-block;
    padding-left: 0;
    height: 100%;
}

header #inner-header.wrap #menu-cabecera li a {
    line-height: 80px;
}

/* line 167, ../scss/breakpoints/_base.scss */
#logo a {
  display: block;
  float: left;
  width: auto;
  height: auto;
}
#logo a img {
  height: 85px;
  width: auto;
}
@media (max-width: 1320px) {
  #logo {
    left: 40px;
  }
}
@media (max-width: 1200px) {
  #logo {
    left: 0;
  }
  #logo a img {
    height: 80px;
    width: auto;
  }
}

/* line 172, ../scss/breakpoints/_base.scss */
body.home #container {
  position: relative;
}
#mobile-header #mobile-menu-trigger {
    position: relative;
    display: block;
    float: left;
    clear: both;
    height: 100%;
}
/* line 177, ../scss/breakpoints/_base.scss */
#mobile-header #mobile-menu-trigger a {
  top: 0;
  left: 0;
  position: absolute;
  padding: 8px 20px;
  z-index: 20;
}
/* line 184, ../scss/breakpoints/_base.scss */
#mobile-header #mobile-logo img {
  margin: 8px auto;
  display: block;
}
/* line 188, ../scss/breakpoints/_base.scss */
#mobile-header #mobile-menu-wrapper {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #00205B;
  z-index: 100000;
  overflow: scroll;
}
/* line 200, ../scss/breakpoints/_base.scss */
#mobile-header #mobile-menu-wrapper a.close-menu {
  position: fixed;
  top: 25px;
  right: 25px;
}
/* line 205, ../scss/breakpoints/_base.scss */
#mobile-header #mobile-menu-wrapper .mobile-nav {
  margin-top: 100px;
  margin-bottom: 100px;
}
/* line 208, ../scss/breakpoints/_base.scss */
#mobile-header #mobile-menu-wrapper .mobile-nav li {
  font-family: lucasreg;
  font-size: 16px;
  letter-spacing: 1.2px;
  padding-top: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(208, 164, 63, 0.2);
}

/* line 215, ../scss/breakpoints/_base.scss */
#mobile-header #mobile-menu-wrapper .mobile-nav li a {
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  padding-left: 22px;
  padding-right: 22px;
}
/* line 221, ../scss/breakpoints/_base.scss */
#mobile-header #mobile-menu-wrapper .mobile-nav li a:hover {
  color: #fed141;
}
/* line 227, ../scss/breakpoints/_base.scss */
#mobile-header #mobile-menu-wrapper img.logo-brand {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: auto;
}

/* line 237, ../scss/breakpoints/_base.scss */
body.mobile-menu-visible {
  overflow: hidden;
}


/*********************
NAVIGATION STYLES
*********************/
/*
all navs have a .nav class applied via
the wp_menu function; this is so we can
easily write one group of styles for
the navs on the site so our css is cleaner
and more scalable.
*/
/* line 253, ../scss/breakpoints/_base.scss */
.nav {
  border-bottom: 0;
  margin: 0;
  /* end .menu li */
  /* highlight current page */
  /* end current highlighters */
}
/* line 257, ../scss/breakpoints/_base.scss */
.nav li {
  /*
  so you really have to rethink your dropdowns for mobile.
  you don't want to have it expand too much because the
  screen is so small. How you manage your menu should
  depend on the project. Here's some great info on it:
  http://www.alistapart.com/articles/organizing-mobile/
  */
}
/* line 259, ../scss/breakpoints/_base.scss */
.nav li a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 0.75em;
  /*
  remember this is for mobile ONLY, so there's no need
  to even declare hover styles here, you can do it in
  the style.scss file where it's relevant. We want to
  keep this file as small as possible!
  */
}
/* line 292, ../scss/breakpoints/_base.scss */
.nav li ul.sub-menu li a,
.nav li ul.children li a {
  padding-left: 30px;
}

/* end .nav */
/*********************
POSTS & CONTENT STYLES
*********************/
/* line 331, ../scss/breakpoints/_base.scss */
.hentry {
  margin-bottom: 5rem;
}
/* line 334, ../scss/breakpoints/_base.scss */
.hentry header {
  padding: 2rem 2rem 0;
}
/* line 336, ../scss/breakpoints/_base.scss */
.hentry header .article-date {
  color: #00205b;
  font-size: 16px;
  line-height: 1.1;
  padding-bottom: 2rem;
}
/* line 342, ../scss/breakpoints/_base.scss */
.hentry header .article-cat a {
  position: relative;
  top: -3px;
  color: #00205b;
  font-size: 13px;
  letter-spacing: 1.5px;
  padding: 5px 15px;
  margin-right: 1rem;
  border: 1px solid #fed141;
  background-color: #fed141;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .3s linear;
  font-family: lucasmed;
}
.hentry header .article-cat a:hover,
.hentry header .article-cat a:focus {
  background-color: #fff;
  border-color: #00205b;
}
/* line 356, ../scss/breakpoints/_base.scss */
.hentry footer {
  border-top: 2px solid rgba(249, 251, 251, 0.2);
  padding-top: 2rem;
  margin: 2rem 2rem 0;
}
/* line 360, ../scss/breakpoints/_base.scss */
.hentry footer p {
  margin: 0;
}
/* line 363, ../scss/breakpoints/_base.scss */
.hentry footer .tags {
  font-size: 14px;
  color: #f1f1f1;
}
/* line 366, ../scss/breakpoints/_base.scss */
.hentry footer .tags img {
  vertical-align: middle;
  margin-right: 1rem;
}
/* line 370, ../scss/breakpoints/_base.scss */
.hentry footer .tags a {
  color: #f1f1f1;
  text-decoration: none;
}
#carousel li .contents .h1container {
  max-width: 650px;
}
#carousel li .contents .h1container h1 {
  font-family: lucasbold !important;
}
/* end .hentry */
/* line 379, ../scss/breakpoints/_base.scss */
#content.single-recetas span.page-title {
  display: block;
}
#content.single-recetas span.page-title,
.single-title,
.page-title,
.entry-title {
  font-family: lucasbold;
  font-weight: bold;
  font-size: 44px;
  line-height: 1.1;
  color: #00205b;
}

/* line 390, ../scss/breakpoints/_base.scss */
#top-picture {
  height: 400px;
  background-size: cover;
  background-position: center center;
  position: relative;
}
/* line 395, ../scss/breakpoints/_base.scss */
#top-picture #top-title {
  position: absolute;
  width: 100%;
  top: 40%;
}
body.single-post #top-title {
    position: relative !important;
    margin: 0 auto;
}
/* line 400, ../scss/breakpoints/_base.scss */
#top-picture #top-title .single-title,
#top-picture #top-title .page-title,
#top-picture #top-title .entry-title {
  left: 0;
  right: 0;
  margin: auto;
  color: #00205b;
  text-align: center;
}
body.single-post #top-picture #top-title .page-title {
  color: #fff;
}
body.single-recetas #top-picture h1.page-title {
  width: 50%;
}
#content.page-historia #top-picture #top-title .page-title,
#content.page-noticias #top-picture #top-title .page-title {
  color: #fff;
}
/* line 411, ../scss/breakpoints/_base.scss */
#top-picture #top-title hr {
  background: white;
  height: 2px;
  width: 200px;
  border: 0;
}
/* line 417, ../scss/breakpoints/_base.scss */
#top-picture #top-title h2.page-subtitle {
  font-family: lucasreg;
  font-size: 28px;
  font-weight: 300;
  line-height: 2;
  letter-spacing: 8.4px;
  text-align: center;
  color: #ffffff;
  text-transform: uppercase;
  margin: 0;
  position: relative;
}
/* line 428, ../scss/breakpoints/_base.scss */
#top-picture #top-title h2.page-subtitle span {
  position: relative;
}
/* line 433, ../scss/breakpoints/_base.scss */
#top-picture #receta_info {
  position: absolute;
  bottom: -100px;
  width: 100%;
  height: 90px;
  margin: 0;
  text-align: center;
}
/* line 440, ../scss/breakpoints/_base.scss */
#top-picture #receta_info li {
  display: inline-block;
  font-size: 12px;
  line-height: 1.1;
  position: relative;
}
/* line 445, ../scss/breakpoints/_base.scss */
#top-picture #receta_info li div {
  display: block;
  height: 90px;
  padding: 20px 15px 0 15px;
}
/* line 449, ../scss/breakpoints/_base.scss */
#top-picture #receta_info li div img {
  margin: auto;
}
/* line 452, ../scss/breakpoints/_base.scss */
#top-picture #receta_info li div span.label {
  font-family: lucasbold;
  font-weight: bold;
  display: block;
}
/* line 457, ../scss/breakpoints/_base.scss */
#top-picture #receta_info li div span.value {
  font-family: lucasreg;
}
/* line 461, ../scss/breakpoints/_base.scss */
#top-picture #receta_info li:after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -25px;
  height: 50px;
}
/* line 470, ../scss/breakpoints/_base.scss */
#top-picture #receta_info li:last-child:after {
  display: none;
}

/* entry content */
/* line 478, ../scss/breakpoints/_base.scss */
.entry-content {
  padding: 1rem 1rem 0;
  font-family: lucasreg;
  font-weight: 300;
  font-size: 18px;
  line-height: 22px;
  /*
  image alignment on a screen this size may be
  a bit difficult. It's set to start aligning
  and floating images at the next breakpoint,
  but it's up to you. Feel free to change it up.
  */
}
/* line 485, ../scss/breakpoints/_base.scss */
.entry-content h2 {
  font-family: lucasbold;
  color: #00205b;
  font-size: 25px;
  line-height: 26px;
  font-weight: 700;
}
/* line 494, ../scss/breakpoints/_base.scss */
.entry-content h3 {
  font-family: lucasbold;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.3;
  color: #fed141;
}
/* line 503, ../scss/breakpoints/_base.scss */
.entry-content h5 {
  font-size: 17px;
  line-height: 26px;
  text-transform: none;
  color: #fed141;
  letter-spacing: inherit;
}
/* line 511, ../scss/breakpoints/_base.scss */
.entry-content p {
  margin: 0 0 1.5em;
}
/* line 524, ../scss/breakpoints/_base.scss */
.entry-content ul {
  padding-left: 1.2em;
}
/* line 526, ../scss/breakpoints/_base.scss */
.entry-content ul li {
  color: #00205b;
  position: relative;
  margin-bottom: .5em;
}
/* line 530, ../scss/breakpoints/_base.scss */
.entry-content ul li:before {
  content: "• ";
  position: absolute;
  top: 0;
  left: -.75em;
  font-size: 2em;
  vertical-align: middle;
  color: #00205b;
  /* or whatever color you prefer */
}
/* line 549, ../scss/breakpoints/_base.scss */
.entry-content table {
  width: 100%;
  border: 1px solid #eaedf2;
  margin-bottom: 1.5em;
}
/* line 554, ../scss/breakpoints/_base.scss */
.entry-content table caption {
  margin: 0 0 7px;
  font-size: 0.75em;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}
/* line 563, ../scss/breakpoints/_base.scss */
.entry-content tr {
  border-bottom: 1px solid #eaedf2;
}
/* line 566, ../scss/breakpoints/_base.scss */
.entry-content tr:nth-child(even) {
  background-color: #f8f9fa;
}
/* line 571, ../scss/breakpoints/_base.scss */
.entry-content td {
  padding: 7px;
  border-right: 1px solid #eaedf2;
}
/* line 575, ../scss/breakpoints/_base.scss */
.entry-content td:last-child {
  border-right: 0;
}
/* line 580, ../scss/breakpoints/_base.scss */
.entry-content th {
  background-color: #f8f9fa;
  border-bottom: 1px solid #eaedf2;
  border-right: 1px solid #eaedf2;
}
/* line 585, ../scss/breakpoints/_base.scss */
.entry-content th:last-child {
  border-right: 0;
}
/* line 590, ../scss/breakpoints/_base.scss */
.entry-content blockquote {
  margin: 0 0 1.5em 0.75em;
  padding: 0 0 0 0.75em;
  border-left: 3px solid #2980b9;
  font-style: italic;
  color: #fff;
}
/* line 605, ../scss/breakpoints/_base.scss */
.entry-content dd {
  margin-left: 0;
  font-size: 0.9em;
  color: #787878;
  margin-bottom: 1.5em;
}
/* line 612, ../scss/breakpoints/_base.scss */
.entry-content img {
  margin: 0 0 1.5em 0;
  max-width: 100%;
  height: auto;
}
/* line 628, ../scss/breakpoints/_base.scss */
.entry-content .size-auto,
.entry-content .size-full,
.entry-content .size-large,
.entry-content .size-medium,
.entry-content .size-thumbnail {
  max-width: 100%;
  height: auto;
}
/* line 637, ../scss/breakpoints/_base.scss */
.entry-content pre {
  background: #323944;
  color: #f8f9fa;
  font-size: 0.9em;
  padding: 1.5em;
  margin: 0 0 1.5em;
  border-radius: 3px;
}

/* end .entry-content */
/* line 648, ../scss/breakpoints/_base.scss */
.wp-caption {
  max-width: 100%;
  background: #eee;
  padding: 5px;
  /* images inside wp-caption */
}
/* line 654, ../scss/breakpoints/_base.scss */
.wp-caption img {
  max-width: 100%;
  margin-bottom: 0;
  width: 100%;
}
/* line 660, ../scss/breakpoints/_base.scss */
.wp-caption p.wp-caption-text {
  font-size: 0.85em;
  margin: 4px 0 7px;
  text-align: center;
}

/* end .wp-caption */
/* image gallery styles */
/* end .gallery */
/* gallery caption styles */
/* line 694, ../scss/breakpoints/_base.scss */
.tags {
  margin: 0;
}

/* line 698, ../scss/breakpoints/_base.scss */
#top-picture {
  position: relative;
}
/* line 700, ../scss/breakpoints/_base.scss */
#top-picture #breadcrumb {
  display: none;
  /*position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.5);
  margin: 0;
  padding-left: 22px;
  padding-right: 22px;*/
}
/* line 77, ../scss/partials/_mixins.scss */
#top-picture #breadcrumb:after {
  content: "";
  display: table;
  clear: both;
}
/* line 710, ../scss/breakpoints/_base.scss */
#top-picture #breadcrumb li {
  font-family: lucasreg;
  font-size: 12px;
  line-height: 15px;
  float: left;
  padding: 5px 0;
  color: #00205B;
}
/* line 717, ../scss/breakpoints/_base.scss */
#top-picture #breadcrumb li a {
  color: #00205B;
  text-decoration: none;
}
/* line 721, ../scss/breakpoints/_base.scss */
#top-picture #breadcrumb li:first-child a {
  font-weight: bold;
}
/* line 724, ../scss/breakpoints/_base.scss */
#top-picture #breadcrumb li:after {
  content: "/";
  color: #fed141;
  padding-left: 13px;
  padding-right: 13px;
}
/* line 730, ../scss/breakpoints/_base.scss */
#top-picture #breadcrumb li:last-child:after {
  display: none;
}
/* line 733, ../scss/breakpoints/_base.scss */
#top-picture #breadcrumb li.self {
  width: 125px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* line 743, ../scss/breakpoints/_base.scss */
#archive_menu {
  width: 100%;
  text-align: center;
  background: #00205b;
  margin: 0;
  display: none;
}
/* line 749, ../scss/breakpoints/_base.scss */
#archive_menu li {
  display: inline-block;
  padding: 2em 1em;
  position: relative;
}
/* line 753, ../scss/breakpoints/_base.scss */
#archive_menu li a {
  font-size: 15px;
  line-height: 1.3;
  letter-spacing: 1.7px;
  color: #fed141;
  text-transform: uppercase;
  text-decoration: none;
}
/* line 760, ../scss/breakpoints/_base.scss */
#archive_menu li a:hover {
  color: white;
}
/* line 764, ../scss/breakpoints/_base.scss */
#archive_menu li.active:after {
  content: "";
  border-bottom: 1px solid #fed141;
  width: 40%;
  position: absolute;
  bottom: 20px;
  left: 30%;
}

/* line 776, ../scss/breakpoints/_base.scss */
body.tag h2.page-title {
  margin-top: 0;
  font-size: 30px;
}

/* line 783, ../scss/breakpoints/_base.scss */
.archive_container img {
  max-width: 100%;
  height: auto;
}
/* line 787, ../scss/breakpoints/_base.scss */
.archive_container h3 {
  font-size: 20px;
  line-height: 1.3;
  margin: 0;
  min-height: 80px;
  text-align: left;
}
/* line 792, ../scss/breakpoints/_base.scss */
.archive_container .article-cat {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
/* line 796, ../scss/breakpoints/_base.scss */
.archive_container .entry-content {
  padding: 1rem 2rem;
  font-size: 18px;
  line-height: 1.7;
}
/* line 801, ../scss/breakpoints/_base.scss */
.archive_container .article-date {
  font-size: 15px;
  line-height: 1.5;
  color: #00205b;
}

/* line 808, ../scss/breakpoints/_base.scss */
#side_receta {
  text-align: center;
}
/* line 810, ../scss/breakpoints/_base.scss */
#side_receta #ingredients_box {
  padding: 17px 17px;
}
/* line 813, ../scss/breakpoints/_base.scss */
#side_receta #ingredients_box h2 {
  margin-top: 0;
  text-align: center;
}
/* line 817, ../scss/breakpoints/_base.scss */
#side_receta #ingredients_box li {
  text-align: left;
  font-size: 18px;
  line-height: 2rem;
}
/* line 822, ../scss/breakpoints/_base.scss */
#side_receta #ingredients_box .qty {
  float: right;
}
/* line 826, ../scss/breakpoints/_base.scss */
#side_receta a#download_pdf {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 1.5px;
  margin: 2rem auto;
  text-decoration: none;
  text-transform: uppercase;
  border: 1px solid #fed141;
  padding: 20px 25px;
}
/* line 835, ../scss/breakpoints/_base.scss */
#side_receta a#download_pdf:hover {
  background-color: #fed141;
  color: #04133b;
}
/* line 840, ../scss/breakpoints/_base.scss */
#side_receta .img_container {
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1em;
}
/* line 843, ../scss/breakpoints/_base.scss */
#side_receta .img_container img {
  max-width: 100%;
  height: auto;
  margin: 0;
}

/* line 851, ../scss/breakpoints/_base.scss */
#main_receta .entry-content {
  padding-top: 0;
}
/* line 854, ../scss/breakpoints/_base.scss */
#main_receta h2.prod-title {
  font-size: 25px;
}
/* line 858, ../scss/breakpoints/_base.scss */
#main_receta h2.nutritional_title {
  margin-top: 1em;
  font-size: 20px;
}
#main_receta h2.nutritional_title:before {
    content: '';
    border-top: 1px solid #00205b;
    height: 2px;
    display: block;
    width: 200px;
    margin-bottom: 2em;
}
/* line 862, ../scss/breakpoints/_base.scss */
#main_receta div.prepared_with {
  margin-bottom: 3rem;
}
/* line 864, ../scss/breakpoints/_base.scss */
#main_receta div.prepared_with h3 {
  margin-top: 0;
}
/* line 867, ../scss/breakpoints/_base.scss */
#main_receta div.prepared_with .prepared-product {
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  padding: 40px 150px 40px 35px;
  display: inline-block;
  min-width: 300px;
  max-width: 100%;
}
/* line 874, ../scss/breakpoints/_base.scss */
#main_receta div.prepared_with .prepared-product img {
  position: absolute;
  right: 20px;
  bottom: 15px;
  margin: 0;
}
/* line 880, ../scss/breakpoints/_base.scss */
#main_receta div.prepared_with .prepared-product a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

/* line 889, ../scss/breakpoints/_base.scss */
#nutritional_box {
  background: #25396D;
  padding: 17px 17px;
}
/* line 892, ../scss/breakpoints/_base.scss */
#nutritional_box li {
  text-align: left;
  font-size: 18px;
  line-height: 2rem;
}
/* line 897, ../scss/breakpoints/_base.scss */
#nutritional_box .qty {
  float: right;
}

/* line 902, ../scss/breakpoints/_base.scss */
#extra_receta {
  position: relative;
  overflow: hidden;
  margin: 3em auto 1em;
  float: none;
  width: 100%;
}
#extra_receta .diagonal {
  
content: '';
  
position: absolute;
  
background: #00205b;
  
height: 100%;
  
left: -50%;
  
width: 200%;
  
transform: rotate(-20deg);
  
top: 46%;
  
z-index: 0;
}
/* line 904, ../scss/breakpoints/_base.scss */
#extra_receta img, #extra_receta iframe {
  max-width: 98%;
  display: block;
  margin: auto;
  margin-bottom: 4rem;
}
/* line 910, ../scss/breakpoints/_base.scss */
#extra_receta > h2 {
    font-family: lucasbold;
    text-align: center;
    font-size: 30px;
    width: 100%;
    padding-top: 1em;
    line-height: 1.4em;
    margin-bottom: 0.375em;
    font-weight: bold;
}
/* line 914, ../scss/breakpoints/_base.scss */
#extra_receta .grid-container img {
  max-width: 100%;
  margin: 0;
  width: 100%;
  height: auto;
}

/* line 920, ../scss/breakpoints/_base.scss */
div.cat-container {
  padding: 0;
  text-align: center;
}
#content.page-recetas div.cat-container:not(.cat30) {
    display: none; /* de momento se ocultan las demás */
}
/* line 923, ../scss/breakpoints/_base.scss */
div.cat-container.even {
  background-color: #ffffff;
}
/* line 926, ../scss/breakpoints/_base.scss */
div.cat-container.bordered {
  border-top: 1px solid #fed141;
}
/* line 929, ../scss/breakpoints/_base.scss */
div.cat-container h2 {
  font-family: lucasbold;
  font-size: 40px;
  font-weight: bold;
  color: #00205b;
  margin: 0;
  padding-bottom: 1rem;
}
/* line 938, ../scss/breakpoints/_base.scss */
div.cat-container img {
  max-width: 100%;
  height: auto;
  margin-bottom: 2rem;
}
/* line 943, ../scss/breakpoints/_base.scss */
div.cat-container p.description {
  font-family: lucasreg;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.4;
  color: rgna(255, 255, 255, 0.8);
  padding-bottom: 2rem;
}
/* line 951, ../scss/breakpoints/_base.scss */
div.cat-container p.description-sub {
  font-size: 14px;
  text-align: left;
}
/* line 955, ../scss/breakpoints/_base.scss */
div.cat-container a.view-more, div.cat-container a.tab-select {
  display: inline-block;
  font-size: 15px;
  letter-spacing: 1.5px;
  margin: 0 auto;
  text-decoration: none;
  text-transform: uppercase;
  border: 1px solid #fed141;
  padding: 20px 35px;
  background: #fed141;
  color: #00205b;
  font-family: lucasbold;
}

/* line 964, ../scss/breakpoints/_base.scss */
div.cat-container a.view-more.tab-select, div.cat-container a.tab-select.tab-select {
  margin-left: 5px;
  margin-right: 5px;
  margin-bottom: 10px;
}
/* line 969, ../scss/breakpoints/_base.scss */
div.cat-container a.view-more.active, div.cat-container a.tab-select.active {
  background-color: #fff;
  color: #04133b;
  border-color: #04133b;
}
#content.page-productos div.cat-container a.view-more, div.cat-container a.tab-select {
    opacity: 0.5;
}
#content.page-productos div.cat-container a.view-more.active, div.cat-container a.tab-select.active {
    border: 1px solid #fed141;
    background: #fed141;
    color: #00205b;
    opacity: 1;
}
/* line 975, ../scss/breakpoints/_base.scss */
div.cat-container h2.cat-product-title {
  margin-bottom: 0;
}
/* line 978, ../scss/breakpoints/_base.scss */
div.cat-container .cat-products-container {
  padding-top: 3rem;
  display: none;
}
/* line 981, ../scss/breakpoints/_base.scss */
div.cat-container .cat-products-container .cat-product {
  display: inline-block;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-bottom: 2rem;
}
/* line 986, ../scss/breakpoints/_base.scss */
div.cat-container .cat-products-container .cat-product h3 {
  font-family: lucasbold;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.8;
    text-align: center;
    text-transform: uppercase;
    max-width: 298px;
    margin: 0.8em auto 1em;
}
/* line 993, ../scss/breakpoints/_base.scss */
div.cat-container .cat-products-container .cat-product h3 a {
  color: #00205B;
}
/* line 996, ../scss/breakpoints/_base.scss */
div.cat-container .cat-products-container .cat-product h3 span {
  color: #adb4c4;
  font-weight: 300;
  text-transform: none;
  display: none;
}
/* line 1003, ../scss/breakpoints/_base.scss */
div.cat-container .cat-products-container .cat-product img {
  margin: 0;
  width: auto;
}

/* line 1012, ../scss/breakpoints/_base.scss */
#page-intro {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
/* line 1015, ../scss/breakpoints/_base.scss */
#page-intro p {
  max-width: 800px;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
  font-family: lucasmed;
  font-size: 20px;
  line-height: 1.7;
  text-align: center;
  position: relative;
  padding-bottom: 2rem;
  color: #00205B;
}
/* line 1030, ../scss/breakpoints/_base.scss */
#page-intro p:after {
  content: " ";
  text-align: center;
  margin: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  border-top: 1px solid #fed141;
  width: 100px;
}

/* line 1044, ../scss/breakpoints/_base.scss */
.grid-container {
  font-size: 0;
  padding-top: 2rem;
  padding-bottom: 5rem;
  text-align: center;
  max-width: 966px;
  margin: auto;
  float: left;
  width: 100%;
}
/* line 1051, ../scss/breakpoints/_base.scss */
.grid-container .hentry {
  margin: 0;
  padding: 0;
  display: inline-block;
  margin-bottom: -6px;
}
/* line 1057, ../scss/breakpoints/_base.scss */
.grid-container .grid-item {
  width: 322px;
  height: 322px;
  border: 1px solid #fed141;
  border: 1px solid #fed141;
  margin: 0;
  padding: 0;
  position: relative;
}
/* line 1065, ../scss/breakpoints/_base.scss */
.grid-container .grid-item a {
  z-index: 10;
  width: 320px;
  height: 320px;
}
/* line 1070, ../scss/breakpoints/_base.scss */
.grid-container .grid-item img {
  width: 320px;
  height: 320px;
  margin: 0;
}
/* line 1075, ../scss/breakpoints/_base.scss */
.grid-container .grid-item h3.entry-title {
  position: absolute;
  top: 0;
  left: 0;
  width: 320px;
  margin: 0;
  height: 320px;
  font-size: 20px;
  text-align: center;
  color: white;
  font-style: normal;
  text-shadow: 1px 1px 3px rgba(16, 35, 84, 0.8);
}
/* line 1087, ../scss/breakpoints/_base.scss */
.grid-container .grid-item h3.entry-title span {
  position: absolute;
  width: 90%;
  top: 45%;
  left: 5%;
}

/* line 1098, ../scss/breakpoints/_base.scss */
.grid-container .grid-item.labeled-grid-item h3.entry-title {
  background-color: rgba(16, 36, 84, 0.6);
  height: 50px;
  bottom: 0;
  top: auto;
  left: auto;
  right: auto;
  line-height: 50px;
  font-family: lucasreg;
  font-size: 18px;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
  font-weight: 300;
}
/* line 1112, ../scss/breakpoints/_base.scss */
.grid-container .grid-item.labeled-grid-item h3.entry-title span {
  position: relative;
  top: auto;
  left: auto;
  line-height: 50px;
}
/* line 1120, ../scss/breakpoints/_base.scss */
.grid-container .grid-item.labeled-grid-item:hover h3.entry-title {
  background: rgba(208, 164, 63, 0.8);
  position: absolute;
  top: 0;
  left: 0;
  width: 320px;
  margin: 0;
  height: 320px;
  text-align: center;
  color: white;
  font-style: normal;
  font-family: lucasmed;
  font-size: 26px;
  font-weight: bold;
  text-transform: none;
}
/* line 1136, ../scss/breakpoints/_base.scss */
.grid-container .grid-item.labeled-grid-item:hover h3.entry-title span {
  position: absolute;
  width: 90%;
  top: 25%;
  left: 5%;
}
/* line 1143, ../scss/breakpoints/_base.scss */
.grid-container .grid-item.labeled-grid-item:hover span.know-more {
  position: absolute;
  bottom: 30%;
  left: 0;
  right: 0;
  display: inline-block;
  font-family: lucasreg;
  font-size: 13px;
  letter-spacing: 1.5px;
  margin: 0 auto;
  text-decoration: none;
  text-transform: uppercase;
  border: 1px solid white;
  color: white;
  padding: 20px 35px;
  max-width: 50%;
}

#extra_receta > .wrap {

}
#extra_receta .grid-container {
    width: 100%;
    margin: 0 auto;
    display: block;
    float: none;
}
#extra_receta .grid-container .hentry {
    width: 33.3%;
    float: left;
    display: block;
    padding: 0 24px 36px;
}
}
#extra_receta .grid-container .grid-item img {
    width: 100%;
    height: auto;
}
#extra_receta  .grid-container .grid-item {
    width: 100%;
    height: auto;
    float: left;
}
#extra_receta  .grid-container .grid-item,
#extra_receta .grid-container .grid-item a {
    height: auto;
    clear: both;
    border: 0;
    text-decoration: none;
}
#extra_receta .grid-container .grid-item a {
    display: inline-block;
    font-size: 18px;
    padding: 8px 26px;
    background: #ffde41;
    width: auto !important;
    text-align: center;
    font-family: lucasbold;
    margin-top: 1em;
}
#extra_receta .grid-container .grid-item h3,
#extra_receta .grid-container .grid-item h3 span {
    position: static;
    width: 100%;
    height: auto;
    text-shadow: none;
    text-decoration: none;
    
}
#extra_receta .grid-container .grid-item h3 {
    color: #ffffff;
    padding: 20px 0;
    font-family: lucasmed;
    font-weight: normal;
}
@media (max-width: 767px) {
    #content.single-recetas span.page-title {
        margin: 0.67em 0 0;
    }
    body.single-productos .prod-title {
        margin-top: 1em;
    }
    #nutritional_box {
        background: none;
        padding: 0;
    }
    #extra_receta > h2 {
        width: 80%;
        margin-right: auto;
        margin-left: auto;
    }
    #extra_receta .grid-container .hentry {
        width: 100%;
    }
    #extra_receta .grid-container .hentry:last-child {
        display: none;
    }
}

/* line 1165, ../scss/breakpoints/_base.scss */
main.embajadores {
  padding-top: 3rem;
}
/* line 1167, ../scss/breakpoints/_base.scss */
main.embajadores h2 {
  text-align: center;
  max-width: 100%;
  width: 730px;
  margin: auto;
  font-family: lucasmed;
  color: #fed141;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.4;
  text-shadow: 1px 1px 3px rgba(16, 35, 84, 0.2);
}
/* line 1180, ../scss/breakpoints/_base.scss */
main.embajadores hr {
  background: rgba(255, 255, 255, 0.3);
  height: 1px;
  width: 100px;
  border: 0;
  margin-top: 3rem;
  margin-bottom: 5rem;
}
/* line 1188, ../scss/breakpoints/_base.scss */
main.embajadores blockquote {
  max-width: 100%;
  width: 600px;
  margin: auto;
  margin-bottom: 6rem;
  border: 1px solid #fed141;
  padding: 20px;
  position: relative;
}
/* line 1196, ../scss/breakpoints/_base.scss */
main.embajadores blockquote img {
  position: absolute;
  bottom: -40px;
  left: 50%;
  margin-left: -40px;
}
/* line 1202, ../scss/breakpoints/_base.scss */
main.embajadores blockquote p {
  font-size: 16px;
  font-style: italic;
  line-height: 1.7;
}
/* line 1207, ../scss/breakpoints/_base.scss */
main.embajadores blockquote span {
  display: block;
  font-size: 14px;
  font-weight: bold;
  line-height: 2.4;
  text-align: right;
}
/* line 1216, ../scss/breakpoints/_base.scss */
main.embajadores #videos_container .video_item {
  margin-bottom: 5rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
/* line 1220, ../scss/breakpoints/_base.scss */
main.embajadores #videos_container .video_item .video_thumbnail {
  width: 100%;
  height: 230px;
  background-size: cover;
  max-width: 100%;
  position: relative;
  border-top: 1px solid #fed141;
  margin-bottom: 33px;
}
/* line 1228, ../scss/breakpoints/_base.scss */
main.embajadores #videos_container .video_item .video_thumbnail a {
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: center;
  display: inline-block;
  font-size: 13px;
  letter-spacing: 1.5px;
  margin: -20px 0 0 -70px;
  text-decoration: none;
  text-transform: uppercase;
  border: 1px solid #fed141;
  padding: 20px 35px;
  color: white;
}
/* line 1242, ../scss/breakpoints/_base.scss */
main.embajadores #videos_container .video_item .video_thumbnail a:hover {
  background-color: #fed141;
  color: #04133b;
}
/* line 1248, ../scss/breakpoints/_base.scss */
main.embajadores #videos_container .video_item h3 {
  font-family: lucasmed;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.3;
  color: #fed141;
}
/* line 1256, ../scss/breakpoints/_base.scss */
main.embajadores #videos_container .video_item p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
}

/* Home */
/* line 1266, ../scss/breakpoints/_base.scss */
#carousel {
  margin: 0;
  background-color: #00205B;
}
/* line 1269, ../scss/breakpoints/_base.scss */
#carousel li {
  height: 300px;
  background-size: cover !important;
  background-position: top center;
  position: relative;
  background-color: #00205B;
}
/* line 1275, ../scss/breakpoints/_base.scss */
#carousel li .contents {
  position: absolute;
  width: 100%;
  top: 30%;
}
/* line 1279, ../scss/breakpoints/_base.scss */
#carousel li .contents.hasbutton {
  top: 30%;
}
/* line 1282, ../scss/breakpoints/_base.scss */
#carousel li .contents .h1container {
  text-align: center;
}
/* line 1284, ../scss/breakpoints/_base.scss */
#carousel li .contents .h1container .single-title,
#carousel li .contents .h1container .page-title,
#carousel li .contents .h1container .entry-title {
  left: 0;
  right: 0;
  margin: auto;
  color: white;
  font-family: lucasmed;
  text-align: center;
  text-shadow: 1px 1px 3px rgba(16, 35, 84, 0.2);
  padding: 0 1rem 1rem 1rem;
  font-size: 32px;
}
/* line 1296, ../scss/breakpoints/_base.scss */
#carousel li .contents .h1container .single-title a,
#carousel li .contents .h1container .page-title a,
#carousel li .contents .h1container .entry-title a {
  color: white;
}
/* line 1300, ../scss/breakpoints/_base.scss */
#carousel li .contents .h1container hr {
  background: white;
  height: 1px;
  width: 200px;
  border: 0;
}
/* line 1306, ../scss/breakpoints/_base.scss */
#carousel li .contents .h1container a.carousel_button {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 1.5px;
  margin: 1rem auto 0 auto;
  text-decoration: none;
  text-transform: uppercase;
  border: 1px solid #fed141;
  background-color: #fed141;
  padding: 20px 35px;
  color: #00205b;
  font-weight: bold;
}


/* Mapa de la web */
/* line 1327, ../scss/breakpoints/_base.scss */
#post-59 a {
  color: white;
  text-decoration: none;
  font-size: 14px;
}

/* Historia */
/* line 1334, ../scss/breakpoints/_base.scss */
div.cat-container.historia-container {
  padding-left: 20px;
  padding-right: 20px;
}
/* line 1337, ../scss/breakpoints/_base.scss */
div.cat-container.historia-container p {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  color: #00205B;
}
/* line 1344, ../scss/breakpoints/_base.scss */
div.cat-container.historia-container div.historia-video {
  margin: 0 0 30px 0;
  text-align: center;
  position: relative;
}
/* line 1348, ../scss/breakpoints/_base.scss */
div.cat-container.historia-container div.historia-video img {
  border-top: 1px solid #fed141;
  border-bottom: 1px solid #fed141;
}
/* line 1352, ../scss/breakpoints/_base.scss */
div.cat-container.historia-container div.historia-video a {
  position: absolute;
  top: 45%;
  left: 0;
  right: 0;
  margin: auto;
  display: inline-block;
  font-size: 15px;
  font-family: lucasbold;
  letter-spacing: 1.5px;
  text-decoration: none;
  text-transform: uppercase;
  border: 1px solid #fed141;
  background-color: #fed141;
  padding: 20px 35px;
  color: #00205B;
  width: 160px;
}

/* line 1373, ../scss/breakpoints/_base.scss */
div.cat-container.historia-container ul.historia-logos {
  padding-top: 3rem;
}
/* line 1375, ../scss/breakpoints/_base.scss */
div.cat-container.historia-container ul.historia-logos li {
  margin-bottom: 3rem;
}
/* line 1377, ../scss/breakpoints/_base.scss */
div.cat-container.historia-container ul.historia-logos li div {
  height: 85px;
}
/* line 1379, ../scss/breakpoints/_base.scss */
div.cat-container.historia-container ul.historia-logos li div img {
  margin: 0;
}
/* line 1383, ../scss/breakpoints/_base.scss */
div.cat-container.historia-container ul.historia-logos li span {
  color: rgba(255, 255, 255, 0.8);
}
/* line 1389, ../scss/breakpoints/_base.scss */
div.cat-container.historia-container .historia-infograf.infog-start {
  margin-top: 6rem;
}
/* line 1391, ../scss/breakpoints/_base.scss */
div.cat-container.historia-container .historia-infograf.infog-start > div {
  max-width: 450px;
  margin: auto;
  border: 6px solid #fed141;
  padding: 40px 65px 40px 65px;
}
/* line 1399, ../scss/breakpoints/_base.scss */
div.cat-container.historia-container.nomargin {
  margin: 0;
  padding: 0;
}
/* line 1402, ../scss/breakpoints/_base.scss */
div.cat-container.historia-container.nomargin img {
  margin: 0 auto;
  display: block;
}

/* line 1408, ../scss/breakpoints/_base.scss */
#historia-show {
    display: inline-block;
    font-size: 15px;
    letter-spacing: 1.5px;
    margin: 1em auto;
    text-decoration: none;
    text-transform: uppercase;
    border: 1px solid #fed141;
    padding: 20px 55px;
    background-color:#fed141;
    font-family: lucasbold;
}


/* line 1422, ../scss/breakpoints/_base.scss */
#historia-extended {
  display: none;
}
/* line 1424, ../scss/breakpoints/_base.scss */
#historia-extended p {
  max-width: 500px;
}
/* line 1427, ../scss/breakpoints/_base.scss */
#historia-extended .image_container {
  margin-top: 4rem;
  margin-bottom: 4rem;
}
/* line 1430, ../scss/breakpoints/_base.scss */
#historia-extended .image_container img {
  display: inline-block;
  margin-left: 1rem;
  margin-right: 1rem;
}
/* line 1436, ../scss/breakpoints/_base.scss */
#historia-extended h2.border_title {
  width: 460px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  border-bottom: 4px solid #fed141;
}
/* line 1443, ../scss/breakpoints/_base.scss */
#historia-extended div.border-box {
  max-width: 450px;
  margin: 1em auto;
  border: 6px solid #fed141;
  padding: 40px 65px 40px 65px;
}
/* line 1448, ../scss/breakpoints/_base.scss */
#historia-extended div.border-box.border-video-box {
  padding: 50px 5px 5px 5px;
}
/* line 1450, ../scss/breakpoints/_base.scss */
#historia-extended div.border-box.border-video-box p {
  padding: 0 60px;
}
/* line 1453, ../scss/breakpoints/_base.scss */
#historia-extended div.border-box.border-video-box img {
  margin: 0;
  border: 0;
}
/* line 1458, ../scss/breakpoints/_base.scss */
#historia-extended div.border-box.wide-border-box {
  width: 100%;
  max-width: 100%;
  position: relative;
  margin-top: 300px;
}
/* line 1463, ../scss/breakpoints/_base.scss */
#historia-extended div.border-box.wide-border-box p {
  max-width: 90%;
  margin: auto;
}
/* line 1467, ../scss/breakpoints/_base.scss */
#historia-extended div.border-box.wide-border-box:before {
  content: " ";
  height: 270px;
  width: 0;
  border-right: 3px solid #fed141;
  position: absolute;
  top: -270px;
  left: 50%;
}
/* line 1476, ../scss/breakpoints/_base.scss */
#historia-extended div.border-box.wide-border-box img {
  margin-top: 2rem;
}
/* line 1481, ../scss/breakpoints/_base.scss */
#historia-extended div.vertical-line {
  width: 0;
  height: 130px;
  border-right: 4px solid #fed141;
  margin: 4rem auto;
}
/* line 1486, ../scss/breakpoints/_base.scss */
#historia-extended div.vertical-line.short-line {
  height: 80px;
}
/* line 1491, ../scss/breakpoints/_base.scss */
#historia-extended .historia-crest .crest-number {
  font-family: lucasmed;
  font-size: 180px;
  font-weight: bold;
  text-align: center;
  color: #fed141;
  position: relative;
  width: 250px;
  height: 220px;
  margin: auto;
}
/* line 1501, ../scss/breakpoints/_base.scss */
#historia-extended .historia-crest .crest-number .crest-izda {
  position: absolute;
  left: -50px;
  top: 55%;
}
/* line 1506, ../scss/breakpoints/_base.scss */
#historia-extended .historia-crest .crest-number .crest-dcha {
  position: absolute;
  right: -50px;
  top: 55%;
}
/* line 1512, ../scss/breakpoints/_base.scss */
#historia-extended .historia-crest .crest-label {
  font-family: lucasbold;
  font-size: 40px;
  line-height: 0.8;
  text-align: center;
  color: #fed141;
  text-transform: uppercase;
  border-top: 1px solid #fed141;
  border-bottom: 1px solid #fed141;
  padding: 20px 40px;
  margin: -10px auto 0 auto;
  display: inline-block;
}

/* Contacto */
/* line 1528, ../scss/breakpoints/_base.scss */
div.cat-container.contacto-container {
  padding-left: 20px;
  padding-right: 20px;
}
/* line 1531, ../scss/breakpoints/_base.scss */
div.cat-container.contacto-container p {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.8);
}
/* line 1537, ../scss/breakpoints/_base.scss */
div.cat-container.contacto-container p.contact-details {
  max-width: 500px;
}
/* line 1541, ../scss/breakpoints/_base.scss */
div.cat-container.contacto-container h3 {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-family: lucasmed;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
  color: #fed141;
  text-shadow: 1px 1px 3px rgba(16, 35, 84, 0.2);
}
/* line 1554, ../scss/breakpoints/_base.scss */
div.cat-container.contacto-container hr {
  background: rgba(255, 255, 255, 0.2);
  height: 1px;
  width: 100px;
  border: 0;
  margin-top: 3rem;
  margin-bottom: 5rem;
}
/* line 1562, ../scss/breakpoints/_base.scss */
div.cat-container.contacto-container ul.contact-phones {
  text-align: center;
}
/* line 1564, ../scss/breakpoints/_base.scss */
div.cat-container.contacto-container ul.contact-phones li {
  display: inline-block;
  margin: auto;
  width: 200px;
}
/* line 1568, ../scss/breakpoints/_base.scss */
div.cat-container.contacto-container ul.contact-phones li img {
  margin: 0;
  float: left;
  position: relative;
  left: 20px;
  top: 4px;
}
/* line 1577, ../scss/breakpoints/_base.scss */
div.cat-container.contacto-container ul.contact-places {
  margin-top: 5rem;
  text-align: center;
}
/* line 1580, ../scss/breakpoints/_base.scss */
div.cat-container.contacto-container ul.contact-places li {
  display: inline-block;
  margin: auto;
  width: 430px;
  max-width: 100%;
  padding: 25px;
  font-family: lucasreg;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
  color: #ffffff;
}
/* line 1591, ../scss/breakpoints/_base.scss */
div.cat-container.contacto-container ul.contact-places li iframe {
  max-width: 100%;
}
/* line 1596, ../scss/breakpoints/_base.scss */
div.cat-container.contacto-container .contacto_form {
  width: 500px;
  max-width: 100%;
  margin: auto;
}
/* line 1600, ../scss/breakpoints/_base.scss */
div.cat-container.contacto-container .contacto_form input, div.cat-container.contacto-container .contacto_form textarea, div.cat-container.contacto-container .contacto_form select {
  width: 480px;
  max-width: 100%;
  margin: auto;
  border: 1px solid #fed141;
  background: #00205B;
  font-family: lucasreg;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.9px;
  color: #ffffff;
  padding: 10px 25px;
  margin-bottom: 20px;
}
/* line 1613, ../scss/breakpoints/_base.scss */
div.cat-container.contacto-container .contacto_form input ::-webkit-input-placeholder, div.cat-container.contacto-container .contacto_form textarea ::-webkit-input-placeholder, div.cat-container.contacto-container .contacto_form select ::-webkit-input-placeholder {
  color: #A9A9A9;
}
/* line 1614, ../scss/breakpoints/_base.scss */
div.cat-container.contacto-container .contacto_form input :-moz-placeholder, div.cat-container.contacto-container .contacto_form textarea :-moz-placeholder, div.cat-container.contacto-container .contacto_form select :-moz-placeholder {
  color: #A9A9A9;
}
/* line 1615, ../scss/breakpoints/_base.scss */
div.cat-container.contacto-container .contacto_form input ::-moz-placeholder, div.cat-container.contacto-container .contacto_form textarea ::-moz-placeholder, div.cat-container.contacto-container .contacto_form select ::-moz-placeholder {
  color: #A9A9A9;
}
/* line 1616, ../scss/breakpoints/_base.scss */
div.cat-container.contacto-container .contacto_form input :-ms-input-placeholder, div.cat-container.contacto-container .contacto_form textarea :-ms-input-placeholder, div.cat-container.contacto-container .contacto_form select :-ms-input-placeholder {
  color: #A9A9A9;
}
/* line 1617, ../scss/breakpoints/_base.scss */
div.cat-container.contacto-container .contacto_form input ::placeholder, div.cat-container.contacto-container .contacto_form textarea ::placeholder, div.cat-container.contacto-container .contacto_form select ::placeholder {
  color: #A9A9A9;
}
/* line 1620, ../scss/breakpoints/_base.scss */
div.cat-container.contacto-container .contacto_form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url("/wp-content/themes/lagula16/library/images/arrow-icon.png") no-repeat 96% 15px;
  border-radius: 0 !important;
}
/* line 1627, ../scss/breakpoints/_base.scss */
div.cat-container.contacto-container .contacto_form select:invalid {
  color: #A9A9A9;
}
/* line 1629, ../scss/breakpoints/_base.scss */
div.cat-container.contacto-container .contacto_form p.label {
  color: white;
  text-align: left;
  font-family: lucasreg;
  font-size: 11px;
  clear: both;
}
/* line 1635, ../scss/breakpoints/_base.scss */
div.cat-container.contacto-container .contacto_form p.label input[type=checkbox] {
  width: 30px;
  max-width: 30px;
  float: left;
  position: relative;
  top: 3px;
  left: 5px;
  margin-bottom: -3px;
}
/* line 1646, ../scss/breakpoints/_base.scss */
div.cat-container.contacto-container .contacto_form button {
  clear: both;
  display: inline-block;
  font-size: 13px;
  letter-spacing: 1.5px;
  margin: 0 auto;
  text-decoration: none;
  text-transform: uppercase;
  border: 1px solid #fed141;
  padding: 20px 35px;
  background: transparent;
  color: #fed141;
}
/* line 1658, ../scss/breakpoints/_base.scss */
div.cat-container.contacto-container .contacto_form button.active, div.cat-container.contacto-container .contacto_form button:hover {
  background-color: #fed141;
  color: #04133b;
}

/******************************************************************
PAGE NAVI STYLES
******************************************************************/
/* line 1670, ../scss/breakpoints/_base.scss */
.pagination,
.wp-prev-next {
  margin: 1.5em 0;
}

/* line 1674, ../scss/breakpoints/_base.scss */
.pagination {
  text-align: center;
}
/* line 1677, ../scss/breakpoints/_base.scss */
.pagination ul {
  display: inline-block;
  background-color: #fff;
  white-space: nowrap;
  padding: 0;
  clear: both;
  border-radius: 3px;
}
/* line 1686, ../scss/breakpoints/_base.scss */
.pagination li {
  padding: 0;
  margin: 0;
  float: left;
  display: inline;
  overflow: hidden;
  border-right: 1px solid #eaedf2;
}
/* line 1695, ../scss/breakpoints/_base.scss */
.pagination a, .pagination span {
  margin: 0;
  text-decoration: none;
  padding: 0;
  line-height: 1em;
  font-size: 1em;
  font-weight: normal;
  padding: 0.75em;
  min-width: 1em;
  display: block;
  color: #2980b9;
}
/* line 1707, ../scss/breakpoints/_base.scss */
.pagination a:hover, .pagination a:focus, .pagination span:hover, .pagination span:focus {
  background-color: #2980b9;
  color: #fff;
}
/* line 1713, ../scss/breakpoints/_base.scss */
.pagination .current {
  cursor: default;
  color: #fff;
}
/* line 1717, ../scss/breakpoints/_base.scss */
.pagination .current:hover, .pagination .current:focus {
  background-color: #fff;
  color: #fff;
}

/* end .bones_page_navi */
/* fallback previous & next links */
/* line 1730, ../scss/breakpoints/_base.scss */
.wp-prev-next .prev-link {
  float: left;
}
/* line 1734, ../scss/breakpoints/_base.scss */
.wp-prev-next .next-link {
  float: right;
}

/* end .wp-prev-next */
/******************************************************************
COMMENT STYLES
******************************************************************/
/* h3 comment title */
/* line 1745, ../scss/breakpoints/_base.scss */
#comments-title {
  padding: 0.75em;
  margin: 0;
  border-top: 1px solid #f8f9fa;
  /* number of comments span */
}

/* line 1765, ../scss/breakpoints/_base.scss */
.commentlist {
  margin: 0;
  list-style-type: none;
}

/* line 1770, ../scss/breakpoints/_base.scss */
.comment {
  position: relative;
  clear: both;
  overflow: hidden;
  padding: 1.5em;
  border-bottom: 1px solid #f8f9fa;
  /* vcard */
  /* end .commentlist .vcard */
  /* end children */
  /* general comment classes */
}
/* line 1777, ../scss/breakpoints/_base.scss */
.comment .comment-author {
  padding: 7px;
  border: 0;
}
/* line 1783, ../scss/breakpoints/_base.scss */
.comment .vcard {
  margin-left: 50px;
}
/* line 1786, ../scss/breakpoints/_base.scss */
.comment .vcard cite.fn {
  font-weight: 700;
  font-style: normal;
}
/* line 1794, ../scss/breakpoints/_base.scss */
.comment .vcard time {
  display: block;
  font-size: 0.9em;
  font-style: italic;
}
/* line 1799, ../scss/breakpoints/_base.scss */
.comment .vcard time a {
  color: #fff;
  text-decoration: none;
}
/* line 1803, ../scss/breakpoints/_base.scss */
.comment .vcard time a:hover {
  text-decoration: underline;
}
/* line 1813, ../scss/breakpoints/_base.scss */
.comment .vcard .avatar {
  position: absolute;
  left: 16px;
  border-radius: 50%;
}
/* line 1821, ../scss/breakpoints/_base.scss */
.comment:last-child {
  margin-bottom: 0;
}
/* line 1825, ../scss/breakpoints/_base.scss */
.comment .children {
  margin: 0;
  /* variations */
  /* change number for different depth */
}
/* line 1843, ../scss/breakpoints/_base.scss */
.comment[class*=depth-] {
  margin-top: 1.1em;
}
/* line 1847, ../scss/breakpoints/_base.scss */
.comment.depth-1 {
  margin-left: 0;
  margin-top: 0;
}
/* line 1852, ../scss/breakpoints/_base.scss */
.comment:not(.depth-1) {
  margin-top: 0;
  margin-left: 7px;
  padding: 7px;
}
/* line 1865, ../scss/breakpoints/_base.scss */
.comment.odd {
  background-color: #fff;
}
/* line 1868, ../scss/breakpoints/_base.scss */
.comment.even {
  background: #f8f9fa;
}

/* comment meta */
/* comment content */
/* line 1902, ../scss/breakpoints/_base.scss */
.comment_content p {
  margin: 0.7335em 0 1.5em;
  font-size: 1em;
  line-height: 1.5em;
}

/* end .commentlist .comment_content */
/* comment reply link */
/* line 1911, ../scss/breakpoints/_base.scss */
.comment-reply-link {
  font-size: 0.9em;
  float: right;
}

/* end .commentlist .comment-reply-link */
/* edit comment link */
/* line 1922, ../scss/breakpoints/_base.scss */
.comment-edit-link {
  font-style: italic;
  margin: 0 7px;
  text-decoration: none;
  font-size: 0.9em;
}

/******************************************************************
COMMENT FORM STYLES
******************************************************************/
/* line 1935, ../scss/breakpoints/_base.scss */
.comment-respond {
  padding: 1.5em;
  border-top: 1px solid #f8f9fa;
}

/* line 1941, ../scss/breakpoints/_base.scss */
#reply-title {
  margin: 0;
}

/* line 1945, ../scss/breakpoints/_base.scss */
.logged-in-as {
  color: #fff;
  font-style: italic;
  margin: 0;
}
/* line 1950, ../scss/breakpoints/_base.scss */
.logged-in-as a {
  color: #fff;
}

/* line 1955, ../scss/breakpoints/_base.scss */
.comment-form-comment {
  margin: 1.5em 0 0.75em;
}

/* line 1959, ../scss/breakpoints/_base.scss */
.form-allowed-tags {
  padding: 1.5em;
  background-color: #f8f9fa;
  font-size: 0.9em;
}

/* comment submit button */
/* line 1966, ../scss/breakpoints/_base.scss */
#submit {
  float: right;
  font-size: 1em;
}

/* comment form title */
/* line 1972, ../scss/breakpoints/_base.scss */
#comment-form-title {
  margin: 0 0 1.1em;
}

/* cancel comment reply link */
/* logged in comments */
/* allowed tags */
/* line 1985, ../scss/breakpoints/_base.scss */
#allowed_tags {
  margin: 1.5em 10px 0.7335em 0;
}

/* no comments */
/* line 1990, ../scss/breakpoints/_base.scss */
.nocomments {
  margin: 0 20px 1.1em;
}

/*********************
SIDEBARS & ASIDES
*********************/
/* line 2006, ../scss/breakpoints/_base.scss */
.widget ul li {
  /* deep nesting */
}

/* line 2023, ../scss/breakpoints/_base.scss */
.no-widgets {
  background-color: #fff;
  padding: 1.5em;
  text-align: center;
  border: 1px solid #fff;
  border-radius: 2px;
  margin-bottom: 1.5em;
}

/*********************
FOOTER STYLES
*********************/
/* line 2036, ../scss/breakpoints/_base.scss */
.footer {
  clear: both;
  background-color: #00205B;
  color: #fff;
  border-top: 1px solid #fed141;
  padding-top: .5rem;
}
/* line 2042, ../scss/breakpoints/_base.scss */
.footer .social_links {
  text-align: center;
}
body.home #content {
    width: calc(100% - 220px);
}
body.home #content .social_links {
    position: absolute;
    bottom: 0;
    left: -110px;
    width: 110px;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
}
body.home #content .social_links ul {
    margin-top: auto;
    margin-bottom: 0;
    width: 100%;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
}
body.home #content .social_links li {
    display: block;
    margin: 12px auto;
    width: auto;
    clear: both;
}
body.home #content .social_links li a {
    width: auto;
    position: relative;
    left: 5px;
    margin: 0 auto;
    display: inline-block;
    float: left;
    text-align: center;
}
body.home #content .social_links li a img {
    display: block;
    text-align: center;
    width: auto;
    height: 24px;
    margin: 0 auto;
}
@media (min-width: 768px) {
  body.home .footer .social_links {
      display: none !important;
  }
}

/* line 2044, ../scss/breakpoints/_base.scss */
.footer .social_links li {
  display: inline-block;
}
/* line 2048, ../scss/breakpoints/_base.scss */
.footer p.copyright {
  font-size: 12px;
  text-align: center;
  color: #fff;
}
body.home .footer p.copyright {
  color: #00205b;
}

/*
if you checked out the link above:
http://www.alistapart.com/articles/organizing-mobile/
you'll want to style the footer nav
a bit more in-depth. Remember to keep
it simple because you'll have to
override these styles for the desktop
view.
*/
/* line 2064, ../scss/breakpoints/_base.scss */
.footer-links {
  margin-bottom: 2rem;
}
/* line 2066, ../scss/breakpoints/_base.scss */
.footer-links ul {
  text-align: center;
}
/* line 2068, ../scss/breakpoints/_base.scss */
.footer-links ul li {
  font-size: 14px;
  line-height: 18px;
  position: relative;
}
/* line 2074, ../scss/breakpoints/_base.scss */
.footer-links ul li:after {
  /*content: "–";*/
  position: absolute;
  left: 47%;
  bottom: -10px;
}
/* line 2080, ../scss/breakpoints/_base.scss */
.footer-links ul li:last-child:after {
  display: none;
}
/* line 2083, ../scss/breakpoints/_base.scss */
.footer-links ul li a:hover {
  color: rgba(255, 255, 255, 0.5);
}

/* end .footer-links */
/*********************
LARGER MOBILE DEVICES
This is for devices like the Galaxy Note or something that's
larger than an iPhone but smaller than a tablet. Let's call them
tweeners.
*********************/
@media only screen and (min-width: 481px) {
  /******************************************************************
  Site Name:
  Author:

  Stylesheet: 481px and Up Stylesheet

  This stylesheet is loaded for larger devices. It's set to
  481px because at 480px it would load on a landscaped iPhone.
  This isn't ideal because then you would be loading all those
  extra styles on that same mobile connection.

  A word of warning. This size COULD be a larger mobile device,
  so you still want to keep it pretty light and simply expand
  upon your base.scss styles.

  ******************************************************************/
  /*********************
  NAVIGATION STYLES
  *********************/
  /* .menu is clearfixed inside mixins.scss */
  /* line 25, ../scss/breakpoints/_481up.scss */
  .menu {
    /* end .menu ul */
  }
  /* line 26, ../scss/breakpoints/_481up.scss */
  .menu ul {
    /* end .menu ul li */
    /* highlight current page */
    /* end current highlighters */
  }
  /* line 27, ../scss/breakpoints/_481up.scss */
  .menu ul li {
    /*
    plan your menus and drop-downs wisely.
    */
  }
  /* line 28, ../scss/breakpoints/_481up.scss */
  .menu ul li a {
    /*
    you can use hover styles here even though this size
    has the possibility of being a mobile device.
    */
  }

  /* end .menu */
  /*********************
  POSTS & CONTENT STYLES
  *********************/
  /* entry content */
  /* line 74, ../scss/breakpoints/_481up.scss */
  .entry-content .alignleft, .entry-content img.alignleft {
    margin-right: 1.5em;
    display: inline;
    float: left;
  }
  /* line 79, ../scss/breakpoints/_481up.scss */
  .entry-content .alignright, .entry-content img.alignright {
    margin-left: 1.5em;
    display: inline;
    float: right;
  }
  /* line 84, ../scss/breakpoints/_481up.scss */
  .entry-content .aligncenter, .entry-content img.aligncenter {
    margin-right: auto;
    margin-left: auto;
    display: block;
    clear: both;
  }

  /* end .entry-content */
}

.single-title,
.page-title,
.entry-title {
  text-align: center;
  font-size: 50px;
}

.page-title {
    text-transform: uppercase;
    font-style: normal;
    text-align: left;
}
/*********************
TABLET & SMALLER LAPTOPS
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*********************/
@media only screen and (min-width: 768px) {
  /******************************************************************
  Site Name:
  Author:

  Stylesheet: Tablet & Small Desktop Stylesheet

  Here's where you can start getting into the good stuff.
  This size will work on iPads, other tablets, and desktops.
  So you can start working with more styles, background images,
  and other resources. You'll also notice the grid starts to
  come into play. Have fun!

  ******************************************************************/
  /*********************
  GENERAL STYLES
  *********************/
  /*********************
  LAYOUT & GRID STYLES
  *********************/
  /* line 27, ../scss/breakpoints/_768up.scss */
  .wrap {
    width: 100%;
    max-width: 760px;
  }

  /* line 31, ../scss/breakpoints/_768up.scss */
  body.home #container {
    position: relative;
  }

  /*********************
  HEADER STYLES
  *********************/
  /* line 39, ../scss/breakpoints/_768up.scss */


  /* line 48, ../scss/breakpoints/_768up.scss */
  #inner-header.wrap {
    width: 100%;
  }

  /* line 61, ../scss/breakpoints/_768up.scss */

  /* line 67, ../scss/breakpoints/_768up.scss */
  #brand {
    position: absolute;
    z-index: 20;
    right: 22px;
    top: 50px;
  }

  /* line 74, ../scss/breakpoints/_768up.scss */
  #mobile-header {
    display: none;
  }

  /*********************
  NAVIGATION STYLES
  *********************/
  /* line 82, ../scss/breakpoints/_768up.scss */
  .nav {
    border: 0;
    /* end .menu ul li */
    /* highlight current page */
    /* end current highlighters */
  }
  /* line 84, ../scss/breakpoints/_768up.scss */
  .nav ul {
    background: #323944;
    margin-top: 0;
  }
  /* line 88, ../scss/breakpoints/_768up.scss */
  .nav li {
    float: left;
    position: relative;
    /*
    plan your menus and drop-downs wisely.
    */
    /* showing sub-menus */
  }
  /* line 92, ../scss/breakpoints/_768up.scss */
  .nav li a {
    border-bottom: 0;
    transition: opacity .6s ease-in-out,color .6s ease-in-out;
  }
  /* line 96, ../scss/breakpoints/_768up.scss */
  .nav li a:hover, .nav li a:focus {
    color: white;
  }
  /* line 107, ../scss/breakpoints/_768up.scss */
  .nav li ul.sub-menu,
  .nav li ul.children {
    margin-top: 0;
    border: 1px solid #ccc;
    border-top: 0;
    position: absolute;
    visibility: hidden;
    z-index: 8999;
    /* highlight sub-menu current page */
  }
  /* line 116, ../scss/breakpoints/_768up.scss */
  .nav li ul.sub-menu li,
  .nav li ul.children li {
    /*
    if you need to go deeper, go nuts
    just remember deeper menus suck
    for usability. k, bai.
    */
  }
  /* line 118, ../scss/breakpoints/_768up.scss */
  .nav li ul.sub-menu li a,
  .nav li ul.children li a {
    padding-left: 10px;
    border-right: 0;
    display: block;
    width: 180px;
    border-bottom: 1px solid #ccc;
  }
  /* line 135, ../scss/breakpoints/_768up.scss */
  .nav li ul.sub-menu li:last-child a,
  .nav li ul.children li:last-child a {
    border-bottom: 0;
  }
  /* line 145, ../scss/breakpoints/_768up.scss */
  .nav li ul.sub-menu li ul,
  .nav li ul.children li ul {
    top: 0;
    left: 100%;
  }
  /* line 160, ../scss/breakpoints/_768up.scss */
  .nav li:hover > ul {
    top: auto;
    visibility: visible;
  }

  /* end .nav */
  /* line 176, ../scss/breakpoints/_768up.scss */
  ul.top-nav {
    text-align: center;
  }
  /* line 179, ../scss/breakpoints/_768up.scss */
  ul.top-nav li {
    display: inline-block;
    float: none;
    font-family: lucasmed;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    line-height: 63px;
  }
  /* line 188, ../scss/breakpoints/_768up.scss */
  ul.top-nav li a {
    color: #fed141;
    padding: 0 7px;
  }
  /* line 192, ../scss/breakpoints/_768up.scss */
  ul.top-nav li:first-child {
    padding-left: 0;
  }
  /* line 193, ../scss/breakpoints/_768up.scss */
  ul.top-nav li:last-child {
    padding-right: 0;
  }
  /* line 194, ../scss/breakpoints/_768up.scss */
  ul.top-nav li:nth-child(3) {
    padding-right: 0px;
  }
  /* line 195, ../scss/breakpoints/_768up.scss */
  ul.top-nav li:nth-child(4) {
    padding-left: 120px;
  }
  /* line 196, ../scss/breakpoints/_768up.scss */
  ul.top-nav li.current-menu-item a {
    color: white;
  }

  /* line 201, ../scss/breakpoints/_768up.scss */
  #content #inner-content {
    padding-top: 100px;
  }

  /* line 206, ../scss/breakpoints/_768up.scss */
  .entry-content {
    font-size: 18px;
    line-height: 26px;
    padding: 2rem 2rem 0;
  }

  /* line 214, ../scss/breakpoints/_768up.scss */
  .hentry header .article-date {
    float: right;
    padding-bottom: 0;
  }

  /* line 221, ../scss/breakpoints/_768up.scss */
  #content.single-recetas span.page-title,
  .single-title,
  .page-title,
  .entry-title {
    font-size: 36px;
    margin: 2em 0 .5em 0;
  }

  /* line 228, ../scss/breakpoints/_768up.scss */
  #top-picture {
    height: 640px;
  }
  /* line 230, ../scss/breakpoints/_768up.scss */
  #top-picture #top-title {
    top: 45%;
  }
 
  /* line 238, ../scss/breakpoints/_768up.scss */
  #top-picture #top-title h2.page-subtitle span:before {
    content: " ";
    position: absolute;
    left: -65px;
    top: 50%;
    border-top: 1px solid white;
    width: 50px;
  }
  /* line 246, ../scss/breakpoints/_768up.scss */
  #top-picture #top-title h2.page-subtitle span:after {
    content: " ";
    position: absolute;
    right: -65px;
    top: 50%;
    border-top: 1px solid white;
    width: 50px;
  }
  /* line 256, ../scss/breakpoints/_768up.scss */
  #top-picture #breadcrumb {
    bottom: 0;
    top: auto;
    width: auto;
  }
  /* line 260, ../scss/breakpoints/_768up.scss */
  #top-picture #breadcrumb li {
    padding: 13px 0;
  }
  /* line 262, ../scss/breakpoints/_768up.scss */
  #top-picture #breadcrumb li.self {
    width: auto;
  }
  /* line 267, ../scss/breakpoints/_768up.scss */
  #top-picture #receta_info {
    height: 130px;
    bottom: 0;
  }
  /* line 271, ../scss/breakpoints/_768up.scss */
  #top-picture #receta_info li {
    font-size: 15px;
  }
  /* line 273, ../scss/breakpoints/_768up.scss */
  #top-picture #receta_info li div {
    height: 130px;
    padding: 28px 65px 0 65px;
  }
  /* line 276, ../scss/breakpoints/_768up.scss */
  #top-picture #receta_info li div img {
    margin-bottom: 10px;
  }
  /* line 279, ../scss/breakpoints/_768up.scss */
  #top-picture #receta_info li div span.label {
    margin-bottom: 3px;
  }

  /* line 287, ../scss/breakpoints/_768up.scss */
  #archive_menu {
    display: block;
  }

  /* line 291, ../scss/breakpoints/_768up.scss */
  body.single-recetas #top-picture #breadcrumb {
    bottom: 130px;
  }

  /* line 293, ../scss/breakpoints/_768up.scss */
  body.single-post #main {
    max-width: 75%;
    margin: auto;
  }

  /* line 298, ../scss/breakpoints/_768up.scss */
  #side_receta {
    padding-right: 55px;
  }
  /* line 300, ../scss/breakpoints/_768up.scss */
  #side_receta #ingredients_box {
    padding: 37px 50px;
    background: none;
  }
  body.single-recetas #side_receta #ingredients_box,
  body.single-recetas #side_receta .prepared_with {
      padding: 0 50px 20px;
  }
  /* line 304, ../scss/breakpoints/_768up.scss */
  #side_receta #ingredients_box h2 {
    margin-top: auto;
  }
  /* line 308, ../scss/breakpoints/_768up.scss */
  #side_receta a#download_pdf {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 1.5px;
    margin: 2rem auto;
    text-decoration: none;
    text-transform: uppercase;
    border: 1px solid #fed141;
    padding: 20px 25px;
  }

  /* line 322, ../scss/breakpoints/_768up.scss */
  #main_receta {
    padding-left: 20px;
  }
  /* line 324, ../scss/breakpoints/_768up.scss */
  #main_receta h2 {
    margin-top: 0;
    margin-bottom: 2.5rem;
  }
  /* line 327, ../scss/breakpoints/_768up.scss */
  #main_receta h2.nutritional_title {
    padding-top: 1em;
    margin-bottom: 0;
  }
  /* line 332, ../scss/breakpoints/_768up.scss */
  #main_receta div.howto {
    padding-bottom: 3rem;
  }
  /* line 334, ../scss/breakpoints/_768up.scss */
  #main_receta div.howto li {
    margin-bottom: 1rem;
  }
  /* line 338, ../scss/breakpoints/_768up.scss */
  #main_receta #nutritional_box {
    padding: 20px 0px;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  /* line 345, ../scss/breakpoints/_768up.scss */
  #extra_receta {
    margin: 0 auto;
    float: none;
  }

  /* line 349, ../scss/breakpoints/_768up.scss */
  #content div.cat-container #inner-content {
    padding-top: 40px;
  }

  /* line 350, ../scss/breakpoints/_768up.scss */
  #content div.cat-container.first #inner-content {
    padding-top: 100px;
  }

  /* line 352, ../scss/breakpoints/_768up.scss */
  div.cat-container p.description {
    max-width: 60%;
    margin: auto;
  }

  /* line 359, ../scss/breakpoints/_768up.scss */
  main.embajadores blockquote {
    padding: 60px 75px;
  }
  /* line 361, ../scss/breakpoints/_768up.scss */
  main.embajadores blockquote p {
    font-size: 20px;
  }
  /* line 365, ../scss/breakpoints/_768up.scss */
  main.embajadores #videos_container {
    padding-left: 40px;
    padding-right: 40px;
  }

  /* line 372, ../scss/breakpoints/_768up.scss */
  #carousel li {
    height: 750px;
  }
  /* line 374, ../scss/breakpoints/_768up.scss */
  #carousel li .contents {
    top: 42%;
  }
  /* line 377, ../scss/breakpoints/_768up.scss */
  #carousel li .contents.hasbutton {
    top: 35%;
  }
  /* line 380, ../scss/breakpoints/_768up.scss */
  #carousel li .contents .h1container {
    max-width: 650px;
  }
  /* line 382, ../scss/breakpoints/_768up.scss */
  #carousel li .contents .h1container .single-title,
  #carousel li .contents .h1container .page-title,
  #carousel li .contents .h1container .entry-title {
    font-size: 44px;
  }
  /* line 387, ../scss/breakpoints/_768up.scss */
  #carousel li .contents .h1container.align-center {
    margin: auto;
  }
  /* line 390, ../scss/breakpoints/_768up.scss */
  #carousel li .contents .h1container.align-left {
    margin-left: 10%;
  }
  /* line 393, ../scss/breakpoints/_768up.scss */
  #carousel li .contents .h1container.align-right {
    float: right;
    margin-right: 10%;
  }

  /* line 403, ../scss/breakpoints/_768up.scss */
  #page-intro #inner-content {
    padding-bottom: 40px;
  }

  /* Historia */
  /* line 412, ../scss/breakpoints/_768up.scss */
  div.cat-container.historia-container .historia-infograf.infog-start {
    position: relative;
    width: 720px;
    height: 600px;
    margin: 6rem auto 4rem auto;
    padding-bottom: 3rem;
  }
  /* line 418, ../scss/breakpoints/_768up.scss */
  div.cat-container.historia-container .historia-infograf.infog-start img {
    position: absolute;
    top: 0;
    left: 0;
  }
  /* line 423, ../scss/breakpoints/_768up.scss */
  div.cat-container.historia-container .historia-infograf.infog-start > div {
    padding: 65px 65px 40px 65px;
    position: absolute;
    bottom: 0;
    right: 0;
  }

  /* line 436, ../scss/breakpoints/_768up.scss */
  #historia-extended div.border-box.wide-border-box {
    margin-top: 300px;
    padding-bottom: 250px;
    margin-bottom: 200px;
  }
  /* line 440, ../scss/breakpoints/_768up.scss */
  #historia-extended div.border-box.wide-border-box img {
    position: absolute;
    bottom: -120px;
    left: 0;
    right: 0;
    margin: auto;
  }

  /* Contacto */
  /* line 454, ../scss/breakpoints/_768up.scss */
  div.cat-container.contacto-container ul.contact-places li {
    text-align: left;
  }
  /* line 460, ../scss/breakpoints/_768up.scss */
  div.cat-container.contacto-container .contacto_form input.half-width, div.cat-container.contacto-container .contacto_form textarea.half-width, div.cat-container.contacto-container .contacto_form select.half-width {
    width: 230px;
  }
  /* line 463, ../scss/breakpoints/_768up.scss */
  div.cat-container.contacto-container .contacto_form input.half-first, div.cat-container.contacto-container .contacto_form textarea.half-first, div.cat-container.contacto-container .contacto_form select.half-first {
    margin-right: 15px;
  }

  /*********************
  SIDEBARS & ASIDES
  *********************/
  /* line 474, ../scss/breakpoints/_768up.scss */
  .sidebar {
    margin-top: 2.2em;
  }

  /* line 478, ../scss/breakpoints/_768up.scss */
  .widgettitle {
    margin-bottom: 0.75em;
  }

  /* line 482, ../scss/breakpoints/_768up.scss */
  .widget {
    padding: 0 10px;
    margin: 2.2em 0;
  }
  /* line 487, ../scss/breakpoints/_768up.scss */
  .widget ul li {
    margin-bottom: 0.75em;
    /* deep nesting */
  }
  /* line 495, ../scss/breakpoints/_768up.scss */
  .widget ul li ul {
    margin-top: 0.75em;
    padding-left: 1em;
  }

  /* links widget */
  /* meta widget */
  /* pages widget */
  /* recent-posts widget */
  /* archives widget */
  /* tag-cloud widget */
  /* calendar widget */
  /* category widget */
  /* recent-comments widget */
  /* search widget */
  /* text widget */
  /*********************
  FOOTER STYLES
  *********************/
  /* line 596, ../scss/breakpoints/_768up.scss */
  .footer {
    padding-top: 1rem;
  }
  /* line 598, ../scss/breakpoints/_768up.scss */
  .footer .social_links {
    float: right;
  }
  /* line 600, ../scss/breakpoints/_768up.scss */
  .footer .social_links li {
    float: right;
    margin-right: .5rem;
  }
  /* line 606, ../scss/breakpoints/_768up.scss */
  .footer p.copyright {
    text-align: right;
    margin: 1.5rem .5rem 1.5rem auto;
  }

  /* line 612, ../scss/breakpoints/_768up.scss */
  .footer-links {
    margin-top: .65rem;
    margin-bottom: auto;
  }
  /* line 615, ../scss/breakpoints/_768up.scss */
  .footer-links ul {
    text-align: left;
  }
  /* line 617, ../scss/breakpoints/_768up.scss */
  .footer-links ul li {
    padding-right: 1rem;
  }
  /* line 619, ../scss/breakpoints/_768up.scss */
  .footer-links ul li a {
    color: white;
  }
  /* line 621, ../scss/breakpoints/_768up.scss */
  .footer-links ul li a:hover {
    color: #fed141;
  }


  /* end .footer-links */
}
/*********************
DESKTOP
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*********************/
@media only screen and (min-width: 1030px) {
  /******************************************************************
  Site Name:
  Author:

  Stylesheet: Desktop Stylsheet

  This is the desktop size. It's larger than an iPad so it will only
  be seen on the Desktop.

  ******************************************************************/
  /* line 12, ../scss/breakpoints/_1030up.scss */
  .wrap {
    width: 100%;
    max-width: 1120px;
  }

  /* line 17, ../scss/breakpoints/_1030up.scss */
  #inner-header.wrap {
    padding-left: 25px;
  }

  /* line 22, ../scss/breakpoints/_1030up.scss */
  #logo a {
    position: relative;
    left: 0;
  }

  /* line 29, ../scss/breakpoints/_1030up.scss */
  ul.top-nav li {
    font-size: 15px;
  }
  /* line 31, ../scss/breakpoints/_1030up.scss */
  ul.top-nav li a {
    padding: 0 10px;
  }

  /* line 38, ../scss/breakpoints/_1030up.scss */
  #carousel li {
    height: 850px;
  }
  /* line 40, ../scss/breakpoints/_1030up.scss */
  #carousel li .contents {
    top: 45%;
  }
  /* line 42, ../scss/breakpoints/_1030up.scss */
  #carousel li .contents.hasbutton {
    top: 40%;
  }
}
/*********************
LARGE VIEWING SIZE
This is for the larger monitors and possibly full screen viewers.
*********************/
@media only screen and (min-width: 1240px) {
  /******************************************************************
  Site Name:
  Author:

  Stylesheet: Super Large Monitor Stylesheet

  You can add some advanced styles here if you like. This kicks in
  on larger screens.

  ******************************************************************/
  /* line 12, ../scss/breakpoints/_1240up.scss */
  #brand {
    top: 15px;
  }

  /* line 17, ../scss/breakpoints/_1240up.scss */
  ul.top-nav li {
    font-size: 16px;
  }
  /* line 19, ../scss/breakpoints/_1240up.scss */
  ul.top-nav li:nth-child(3) {
    padding-right: 0px;
  }
  /* line 20, ../scss/breakpoints/_1240up.scss */
  ul.top-nav li:nth-child(4) {
    padding-left: 120px;
  }
  /* line 21, ../scss/breakpoints/_1240up.scss */
  ul.top-nav li a {
    padding: 0 18px;
  }

  /* line 28, ../scss/breakpoints/_1240up.scss */
  #carousel li {
    height: 950px;
  }
}
/*********************
RETINA (2x RESOLUTION DEVICES)
This applies to the retina iPhone (4s) and iPad (2,3) along with
other displays with a 2x resolution. You can also create a media
query for retina AND a certain size if you want. Go Nuts.
*********************/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
  /******************************************************************
  Site Name:
  Author:

  Stylesheet: Retina Screens & Devices Stylesheet

  When handling retina screens you need to make adjustments, especially
  if you're not using font icons. Here you can add them in one neat
  place.

  ******************************************************************/
  /*

  EXAMPLE
  Let's say you have an image and you need to make sure it looks ok
  on retina screens. Let's say we have an icon which dimension are
  24px x 24px. In your regular stylesheets, it would look something
  like this:

  .icon {
    width: 24px;
    height: 24px;
    background: url(img/test.png) no-repeat;
  }

  For retina screens, we have to make some adjustments, so that image
  doesn't look blurry. So, taking into account the image above and the
  dimensions, this is what we would put in our retina stylesheet:

  .icon {
    background: url(img/test@2x.png) no-repeat;
    background-size: 24px 24px;
  }

  So, you would create the same icon, but at double the resolution, meaning
  it would be 48px x 48px. You'd name it the same, but with a @2x at the end
  (this is pretty standard practice). Set the background image so it matches
  the original dimensions and you are good to go.

  */
}
/*********************
PRINT STYLESHEET
Feel free to customize this. Remember to add things that won't make
sense to print at the bottom. Things like nav, ads, and forms should
be set to display none.
*********************/
@media print {
  /******************************************************************
  Site Name:
  Author:

  Stylesheet: Print Stylesheet

  This is the print stylesheet. There's probably not a lot
  of reasons to edit this stylesheet. If you want to
  though, go for it.

  ******************************************************************/
  /* line 13, ../scss/partials/_print.scss */
  * {
    background: transparent !important;
    color: black !important;
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important;
  }

  /* line 21, ../scss/partials/_print.scss */
  a, a:visited {
    color: #444 !important;
    text-decoration: underline;
  }
  /* line 26, ../scss/partials/_print.scss */
  a:after, a:visited:after {
    content: " (" attr(href) ")";
  }
  /* line 31, ../scss/partials/_print.scss */
  a abbr[title]:after, a:visited abbr[title]:after {
    content: " (" attr(title) ")";
  }

  /* line 36, ../scss/partials/_print.scss */
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }

  /* line 42, ../scss/partials/_print.scss */
  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  /* line 47, ../scss/partials/_print.scss */
  thead {
    display: table-header-group;
  }

  /* line 51, ../scss/partials/_print.scss */
  tr, img {
    page-break-inside: avoid;
  }

  /* line 55, ../scss/partials/_print.scss */
  img {
    max-width: 100% !important;
  }

  @page {
    margin: 0.5cm;
  }
  /* line 63, ../scss/partials/_print.scss */
  p, h2, h3 {
    orphans: 3;
    widows: 3;
  }

  /* line 68, ../scss/partials/_print.scss */
  h2,
  h3 {
    page-break-after: avoid;
  }

  /* line 74, ../scss/partials/_print.scss */
  .sidebar,
  .page-navigation,
  .wp-prev-next,
  .respond-form,
  nav {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  /* line 2, ../scss/breakpoints/_fixes.scss */
  #extra_receta iframe {
    height: auto;
  }

  /* line 5, ../scss/breakpoints/_fixes.scss */
  .single-recetas #top-picture #top-title, .single-post #top-picture #top-title {
    top: auto;
    bottom: 0;
    padding: 20px;
  }
  /* line 11, ../scss/breakpoints/_fixes.scss */
  .single-recetas #top-picture #top-title .single-title,
  .single-recetas #top-picture #top-title .page-title,
  .single-recetas #top-picture #top-title .entry-title, .single-post #top-picture #top-title .single-title,
  .single-post #top-picture #top-title .page-title,
  .single-post #top-picture #top-title .entry-title {
    max-width: 100%;
    width: 100%;
    font-size: 20px;  
    padding: 0;
    line-height: 1.3;
  }
  /* line 20, ../scss/breakpoints/_fixes.scss */
  .single-recetas #top-picture #top-title hr, .single-post #top-picture #top-title hr {
    display: none;
  }

  /* line 26, ../scss/breakpoints/_fixes.scss */
  .single-recetas #top-picture {
    margin-bottom: 90px;
  }

  /* line 28, ../scss/breakpoints/_fixes.scss */
  .bx-wrapper .bx-controls-direction {
    display: none;
  }
}
@media only screen and (min-width: 767px) and (max-width: 900px) {
  /* line 35, ../scss/breakpoints/_fixes.scss */
  ul.top-nav li {
    font-size: 11px;
  }
  /* line 37, ../scss/breakpoints/_fixes.scss */
  ul.top-nav li a {
    padding: 0 3px;
  }
}

#content.page-recetas > h1 {
  display: none;
}


body.archive.tax-categorias_receta #main.grid-container {
    padding-top: 0;
    width: 100%;
    max-width: none;
}
body.archive.tax-categorias_receta #main > article { 
    width: 33.33%;
    float: left;
    padding-right: 0.75em;
    display: block;
}
body.archive.tax-categorias_receta #main > article a {
    display: block;
    float: left;
    clear: both;
    width: 100%;
    height: auto;
    text-decoration: none;
}
body.archive.tax-categorias_receta #main > article header {
    border: 0;
    padding: 2rem 2rem 0;
    display: block;
    float: left;
    clear: both;
    height: auto;
}
body.archive.tax-categorias_receta #main > article header img {
    margin-bottom: 16px;
    position: static;
    width: 100%;
    height: auto;
}
body.archive.tax-categorias_receta #main > article header h3,
body.archive.tax-categorias_receta #main > article header h3 span {
    position: static;
    width: 100%;
    height: auto;
    margin: 0;
    text-shadow: none;
    text-align: left;
    background: none !important;
}
body.archive.tax-categorias_receta #main > article header h3 span {
    font-family: lucasmed;
    font-weight: bold;
    line-height: 1.1;
    color: #00205b;
}
@media (max-width: 767px) {
    body.archive.tax-categorias_receta #main > article,
    body.archive.tax-categorias_receta #main > article header {
        width: 100%;
    }
}
@media only screen and (min-width: 1030px) {

  div.cat-container .cat-products-container .cat-product{

    max-width: 20%;
    vertical-align: top;
  }

}

@media only screen and (max-width: 1029px) {

  div.cat-container .cat-products-container .cat-product{

  width: 40%;


  }
}

@media only screen and (max-width: 769px) {

  div.cat-container .cat-products-container .cat-product{

  width: 51%;


  }
}

@media only screen and (max-width: 450px) {

 #top-picture #top-title h2.page-subtitle {

 line-height: 1.5;
 font-size: 20px;


  }
}

.branda{
  display: none;
}

.logoa{
  position: relative;
  height: auto;
}
ul.top-nav li:nth-child(4) {
    display: none;
}

.logoa a img{
  width: 100%;
}


body.home {
    background-color: #fff;
}
body.home #content {
    position: fixed;
    top: 85px;
    bottom: 62px;
    left: 110px;
}
body.home #content > .bx-wrapper,
body.home #content > .bx-wrapper .bx-viewport,
body.home #content #carousel,
body.home #content #carousel li {
    height: 100% !important;
}
body.home #content #carousel li {
  background-position: center center;
}
body.home footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 62px;
    padding: 0 !important;
    border: 0 !important;
    background: #fff !important;
}
body.home .footer-links ul li a {
    color: #00205B;
}
body:not(.home) footer {
  background-color: #00205B !important;
  padding: 1em;
}
body:not(.home) footer.article-footer {
  background: transparent !important;
  padding: 0;
}
body:not(.home) footer .footer-links ul li a {
  color: #fff;
}
body.home #content .bx-controls.bx-has-pager {
    position: absolute;
    top: 0;
    bottom: 170px;
    left: -110px;
    width: 110px;
}
body.home #carousel li .contents.hasbutton {
    display: block;
    width: 100%;
    height: 100%;
    position: relative; 
    top: 0 !important;
}
body.home #carousel li .contents .h1container {
  max-width: 650px;
}
body.home #carousel li .contents .h1container h1 {
  font-family: lucasbold !important;
  font-style: normal;
}

body.home #carousel li .contents {
    position: relative;
    width: 100%;
    top: 0 !important;
    bottom: auto;
    left: 0;
    right: 0;
    float: left;
    height: 100%;
}
body.home #carousel li.li-2 .contents,
body.home #carousel li.li-4 .contents {
    height: 100%;
    position: relative;
    top: 0;
}
body.home #carousel li .contents h1 {
    margin: 0 !important;
}
body.home #carousel li .contents .h1container h1 span.amarillo {
    color: #fed141;
}
body.home #carousel li .contents .h1container.align-corner1 {
    position: absolute;
    top: 12px;
    left: 0;
}
body.home #carousel li .contents .h1container.align-corner2 {
    position: absolute;
    top: 12px;
    right: 0;
}
body.home #carousel li .contents .h1container.align-corner3 {
    position: absolute;
    bottom: 12px;
    right: 0;
}
body.home #carousel li .contents .h1container.align-corner4 {
    position: absolute;
    bottom: 12px;
    left: 0;
}
body.home #carousel li .contents .h1container.align-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
body.home #carousel li .contents .h1container.align-left {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translate(0, -50%);
    margin: 0 !important;
}
body.home #carousel li .contents .h1container.align-right {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translate(0, -50%);
    margin: 0 !important;
}
body.home #carousel li .contents .h1container.align-top {
    position: relative;
    top: 15%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 800px;
}
body.home #carousel li .contents .h1container.align-bottom {
    position: relative;
    bottom: 15%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 800px;
}


/* home responsive */
/* responsive */
@media (max-width: 767px) {
    body > #container > .header {
        display: none;
    }
    #mobile-header {
      display: block;
      width: 100%;
      position: static;
      z-index: 10;
      background-color: #00205B;
      height: 65px;
      overflow: visible;
    }
    #mobile-header #mobile-logo a img {
        height: 65px;
        margin: 0 auto;
    }
    #mobile-header #mobile-menu-trigger a {
        height: 100%;
        display: -webkit-flex;
        display: flex;
    }
    #mobile-header #mobile-menu-trigger a img {
        margin: auto;
        vertical-align: middle;
    }
    body.home #content > .bx-wrapper {
        height: auto !important;
    }
    body.home #content > .bx-wrapper .bx-viewport,
    body.home #content #carousel,
    body.home #content #carousel li {
        height: 400px !important;
    }
    #carousel li .contents .h1container .page-title {
        font-size: 24px;
    }
    body.home #content {
      position: static;
      width: 100%;
      float: left;
      clear: both;
    }
    body.home footer {
        position: static;
        float: left;
        clear: both;
        height: auto;
        width: 100%;
    }
     body.home #content .bx-controls.bx-has-pager {
        position: static;
        width: 100%;
       /* text-align: center;*/
    }
    body.home .bx-wrapper {
      display: block;
    }
    body.home .bx-wrapper .bx-pager {
        padding: 12px 0px;
        margin: 0 auto;
        width: 240px;
        position: static;
        /*display: inline-block;*/
    }
    body.home .bx-wrapper .bx-pager .bx-pager-item {
        clear: none;
        display: inline-block !important;
        height: auto;
        width: 16%;
        width: 25%;
        padding: 0 12px;
    }
    body.home .bx-wrapper .bx-pager.bx-default-pager a {
        border-right: 0;
        border-bottom: 3px solid #e5e1e6;
        height: 24px;
        padding: 24px 12px 0;
        width: 100%;
    }
    body.home .bx-wrapper .bx-pager.bx-default-pager a:hover,
    body.home .bx-wrapper .bx-pager.bx-default-pager a.active {
        border-color: #00205B;
    }
    body.home .bx-wrapper .bx-pager.bx-default-pager a:after {
        width: 100%;
        height: 100%;
        display: block;
        bottom: 0;
        top: 100%;
        right: 0;
        left: 0;
    }
    body.home #content .social_links {
        position: static;
        top: 0;
        bottom: 0;
        left: 0;
        width: 100%;
    }
    body.home #content .social_links ul {
        width: 240px;
        margin: 0 auto;
        -webkit-flex-direction: row;
        flex-direction: row;
    }

}


body.blog #main {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
body.blog .page-title {
  text-align: center;
  margin: 0 auto !important;
}

#content.page-productos .cat-container #inner-content {
    text-align: left;
    position: relative;
}
#content.page-productos .cat-container #inner-content .description {
    margin-left: 0;
}
#content.page-productos .cat-container #inner-content > :not(div) {
    max-width: 50%;
}
/*#content.page-productos .cat-container.even #inner-content .cat-products-container {
    width: 50%;
    position: absolute;
    right: 0;
    top: 0;
    text-align: center;
}
#content.page-productos .cat-container.even .cat-products-container .cat-product {
    max-width: none !important;
}
#content.page-productos .cat-container.even .cat-products-container h3 {
    display: none;
}*/
@media (max-width: 767px) {
    /*#content.page-productos .cat-container.even #inner-content .cat-products-container {
        position: static;
        width: 100%;
    }*/
    #content.page-productos .cat-container #inner-content > :not(div) {
        max-width: 100%;
    }
    #content.page-productos .cat-container #inner-content .cat-products-container.active {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        position: static;
        text-align: center;
    }
    /*#content.page-productos .cat-container.even #inner-content .cat-products-container .cat-product {
        margin-bottom: 0;
    }*/
}


.cat-container.cat-products-main .cat-products-container article {
    width: 50%;
    max-width: none !important;
    margin: 0 auto 36px;
    display: block;
    float: left;
    position: relative;
}
.cat-container .cat-products-container article a {
    display: block;
    width: 100%;
    text-align: center;
}

body.single-recetas #top-picture {
    height: auto;
    position: static;
}
body.single-recetas #top-picture .page-title {
    text-align: center !important;
    margin: 2em auto 1em !important;
    text-transform: none;
}
body.single-recetas #top-picture #top-title,
body.single-recetas #top-picture #receta_info {
    position: static;
}
body.single-recetas #top-picture #breadcrumb {
    display: none;
}


#brand,
#mobile-menu-wrapper > img {
  display: none;
}
body .img-web{
  display: none !important;
}


body.single-productos .prod-title {
    font-family: lucasbold;
    margin: 0 0 1em;
    text-align: left;
}
body.single-productos ol {
  list-style-type: auto;
    padding-left: 1em;
}


/* cajas Historia */
div.cat-container.historia-container .historia-infograf.infog-start p,
div.cat-container.historia-container .historia-infograf.infog-start span,
div.cat-container.historia-container .historia-infograf.infog-start h2,
#historia-extended div.border-box.border-video-box p,
#historia-extended div.border-box.border-video-box h2,
#historia-extended div.border-box.wide-border-box p,
#historia-extended div.border-box.wide-border-box h2 {
    color: #fff;
}
div.cat-container.historia-container .historia-infograf.infog-start > div,
#historia-extended div.border-box.border-video-box,
#historia-extended div.border-box.wide-border-box {
    background-color: #00205b;
}

body.single-recetas #main > article > .entry-content {
    padding: 0;
}
body.single-recetas #main > article > .entry-content > img {
    margin: 0 auto 76px;
    display: block;
}
body.single-recetas #top-picture #receta_info {
  margin: 0 auto;
}
body.single-recetas #top-picture #receta_info li div img {
    width: 50px;
    height: auto;
    max-width: none;
}
body.single-recetas #side_receta #ingredients_box h2,
body.single-recetas .prepared_with h2 {
    text-align: left;
}
body.single-recetas .prepared_with h2 {
    font-family: lucasmed;
    font-weight: normal;
}
body.single-recetas .prepared-product a {
    display: block;
    float: left;
    margin-top: 12px;
}


#content.page-contacto .contacto-container {
    width: 50%;
    float: left;
}
#content.page-contacto .contacto-container.info-contacto {
    padding-right: 24px;
}
#content.page-contacto .contacto-container.form-contacto {
    padding-top: 100px;
    padding-left: 24px;
}
#content.page-contacto .contacto-container.info-contacto > #inner-content {
    padding-top: 50px;
}
#content.page-contacto .contacto-container.info-contacto > #inner-content > h3 {
    margin-top: 0;
    margin-bottom: 18px;
    font-family: lucasmed;
    font-size: 24px;
    line-height: 1.3;
}
#content.page-contacto .contacto-container.info-contacto > #inner-content > p {
    margin-top: 0;
    margin-bottom: 6px;
}


#content.page-contacto .form-contacto * {
    background-color: #fff !important;
    border: 0 !important;
}
#content.page-contacto .form-contacto textarea,
#content.page-contacto .form-contacto input {
    border-bottom: 1px solid #00205b !important;
    padding-left: 0 !important;
    color: #00205b !important;
}
#content.page-contacto .form-contacto textarea:focus,
#content.page-contacto .form-contacto input:focus {
    outline: 0;
}
#content.page-contacto .form-contacto textarea::-webkit-input-placeholder,
#content.page-contacto .form-contacto input::-webkit-input-placeholder { /* Edge */
  color: #00205b;
  opacity: 0.6;
}
#content.page-contacto .form-contacto textarea:-ms-input-placeholder,
#content.page-contacto .form-contacto input:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #00205b;
  opacity: 0.6;
}
#content.page-contacto .form-contacto textarea::placeholder,
#content.page-contacto .form-contacto input::placeholder {
  color: #00205b;
  opacity: 0.6;
}
#content.page-contacto .form-contacto input[type=file] {
  margin-bottom: 12px;
  border: 0 !important;
}
#content.page-contacto .form-contacto input[type=submit] {
  margin-top: 12px;
  margin-bottom: 40px;
  width: 100%;
  padding: 1em 0.5em;
  background-color: #00205b !important;
  color: #fff !important;
}
#content.page-contacto .form-contacto .column-full,
#content.page-contacto .form-contacto .column-half {
    padding: 0;
}
#content.page-contacto .form-contacto .column-half:nth-child(odd) {
    padding-right: 0.5em;
}
#content.page-contacto .form-contacto .column-half:nth-child(even) {
    padding-left: 0.5em;
}
#content.page-contacto .form-contacto select {
  border: 1px solid #00205b !important;
  color: #00205b;
  margin: 0.5em 0;
  padding: 1em 0.5em;
}
#content.page-contacto .form-contacto .bloque-check .column-full {
  margin-bottom: 12px;
}
#content.page-contacto .form-contacto .bloque-check .column-full > span {
    width: 74%;
    display: block;
    float: left;
}
#content.page-contacto .form-contacto .bloque-check .column-full > span.wpcf7-form-control-wrap {
    width: 26%;
}
#content.page-contacto .form-contacto .bloque-check .column-full > span.wpcf7-form-control-wrap.legal {
  width: 20px;
}
#content.page-contacto .form-contacto .bloque-check .column-full > span.wpcf7-form-control-wrap.legal .wpcf7-list-item {
  margin-left: 0;
}
#content.page-contacto .info-contacto .contact-details .icon-tel {
    text-decoration: none;
}
#content.page-contacto .info-contacto .contact-details {
    display: block;
    padding-top: 24px;
    margin-bottom: 70px;
}
#content.page-contacto .info-contacto .contact-details .icon-tel,
#content.page-contacto .info-contacto .contact-details .icon-fax {
    display: inline-block;
    position: relative;
}
#content.page-contacto .info-contacto .contact-details  .icon-tel:before {
    content: '\f879';
    font-family: "FontAwesome";
    margin-right: 8px;
    font-size: 24px;
}
#content.page-contacto .info-contacto .contact-details  .icon-tel {
    margin-right: 30px;
    padding-right: 30px;
    border-right: 1px solid #00205b;

}
#content.page-contacto .info-contacto .contact-details  .icon-fax:before {
    content: '\f1ac';
    font-family: "FontAwesome";
    margin-right: 8px;
    font-size: 24px;
}
#content.page-contacto .info-contacto .contact-places li {
    display: block;
    float: left;
    clear: both;
}
#content.page-contacto .info-contacto .contact-places li iframe {
    width: 50%;
    height: auto;
    float: left;
}
#content.page-contacto .info-contacto .contact-places li:last-child iframe {
   float: right; 
}
#content.page-contacto .info-contacto .contact-places li div {
    display: block;
    width: 50%;
    float: right;
    padding: 24px 0 24px 24px;
}
#content.page-contacto .info-contacto .contact-places li:last-child div {
    float: left;
    padding: 24px 24px 24px 0;
}
#content.page-contacto .info-contacto .contact-places li div span {
    margin-bottom: 6px;
    display: block;
}

@media (max-width: 900px) {
  #content.page-contacto .contacto-container.info-contacto > #inner-content {
    padding-top: 0;
  }
    #content.page-contacto .contacto-container {
      width: 100%;
      padding: 0 24px !important;
    }
    #content.page-contacto .contacto-container.info-contacto {
      margin-bottom: 40px !important;
    }
    #content.page-contacto .contacto-container.form-contacto #responsive-form {
      max-width: none;
    }
    #content.page-contacto .info-contacto .contact-places li div {
      padding-top: 6px !important;
    }
}

@media (min-width: 900px) and (max-width: 1200px) {
  #content.page-contacto .contacto-container {
      padding-left: 24px !important;
      padding-right: 24px !important;
  }
}



/* vídeos responsive */
figure.wp-block-embed {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
}

figure.wp-block-embed .wp-block-embed__wrapper {
    display: block;
    position: relative;
    padding-bottom: 56.25%;
    /* por defecto ratio 4:3 */
    height: 0;
    overflow: hidden;
}

figure.wp-block-embed .wp-block-embed__wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.novedad{
  padding: 18px 12px;
  display: inline-block;
  background-color: #fed141;
  color: #00205b!important;
  font-weight: bold;
  border-radius: 50%;
  text-transform: uppercase;
  transform: rotate(-35deg);
  position: absolute;
  left: calc(50% - 165px);
}
@media (max-width: 700px) {
  .novedad {
    left: 3%;
    top: -2%;    
  }
}
@media (max-width: 600px) {
  .novedad {
    font-size: 0.8em;
  }
}
@media (max-width: 600px) {
  .novedad {
    font-size: 0.6em;
  }
}
.cat-container.cat-products-main .cat-products-container[data-cat="la-gula-del-norte"] .novedad {
  display: none;
}
@media (min-width: 769px) {
  .cat-container.cat-products-main .cat-products-container[data-cat="la-gula-del-norte-bol"] article {
      width: calc(100%/3);
  }
  .cat-container.cat-products-main .cat-products-container[data-cat="la-gula-del-norte-bol"] .novedad {
    left: calc(100%/3 - 74px)
  }
}
@media (max-width: 767px) {
   .cat-container.cat-products-main .cat-products-container[data-cat="la-gula-del-norte-bol"] article {
      width: 50%;
  }
  .cat-container.cat-products-main .cat-products-container[data-cat="la-gula-del-norte-bol"] .novedad {
    left: 3%;
    top: -9%;
    
  }
}
@media (max-width: 600px) {
    .cat-container.cat-products-main .cat-products-container[data-cat="la-gula-del-norte-bol"] article {
      padding-top: 20px;
    }
    .cat-container.cat-products-main .cat-products-container[data-cat="la-gula-del-norte-bol"] .novedad {
        top: -8%;
    }
}
@media (max-width: 400px) {

    .cat-container.cat-products-main .cat-products-container[data-cat="la-gula-del-norte-bol"] .novedad {
       top: -16%;
    }
}

.modo_empleo{
  font-size: 20px!important;
  margin-bottom: 1em!important;
 
}

.separador{
  border-top: 3px solid #ffde41;
  margin-top: 1em;
}

.recetas-relacionadas .grid-container .grid-item h3 span {
  color:#00205b;
  font-weight: bold;
}

.recetas-relacionadas .grid-container .grid-item a {
  font-weight:bold;
}

.recetas-relacionadas .alin .hentry{
  display: flex!important;
  flex-flow: column nowrap;
}   

.alin{
  display: flex!important;
  justify-content: flex-start;
  flex-flow: row wrap;
}

.articulo_h3{
  font-size: 20px;
  margin:0px;
  padding: 20px 0;
  font-family: lucasmed;
  font-weight: bold;
}

.boton_receta{
  display: flex;
  margin-top: auto;
  justify-content: center;
}

.boton_receta a{

  font-size: 18px;
  padding: 8px 26px;
  background: #ffde41;
  width: auto !important;
  text-align: center;
  font-family: lucasbold;
  height: auto;
  border: 0;
  text-decoration: none;
}

@media (max-width: 767px) {
  .separador{
    margin-left: 2rem;
    margin-right: 2rem;    
  }
  #extra_receta{
    width: 96%;
  }
}
