@charset "UTF-8";
/* line 5, ../../../../Program Files (x86)/Prepros/resources/app/ruby/ruby_gems/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

/* line 22, ../../../../Program Files (x86)/Prepros/resources/app/ruby/ruby_gems/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
html {
  line-height: 1;
}

/* line 24, ../../../../Program Files (x86)/Prepros/resources/app/ruby/ruby_gems/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
ol, ul {
  list-style: none;
}

/* line 26, ../../../../Program Files (x86)/Prepros/resources/app/ruby/ruby_gems/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* line 28, ../../../../Program Files (x86)/Prepros/resources/app/ruby/ruby_gems/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

/* line 30, ../../../../Program Files (x86)/Prepros/resources/app/ruby/ruby_gems/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
q, blockquote {
  quotes: none;
}
/* line 103, ../../../../Program Files (x86)/Prepros/resources/app/ruby/ruby_gems/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

/* line 32, ../../../../Program Files (x86)/Prepros/resources/app/ruby/ruby_gems/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
a img {
  border: none;
}

/* line 116, ../../../../Program Files (x86)/Prepros/resources/app/ruby/ruby_gems/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

/*  Syntax Quick Reference
  --------------------------
  column($ratios: 1, $offset: 0, $cycle: 0, $uncycle: 0, $gutter: $jeet-gutter)
  span($ratio: 1, $offset: 0)
  shift($ratios: 0, $col_or_span: column, $gutter: $jeet-gutter)
  unshift()
  edit()
  center($max_width: 1410px, $pad: 0)
  stack($pad: 0, $align: false)
  unstack()
  align($direction: both)
  cf()
*/
/**
 * Grid settings.
 * All values are defaults and can therefore be easily overidden.
 */
/**
 * List functions courtesy of the wonderful folks at Team Sass.
 * Check out their awesome grid: Singularity.
 */
/**
 * Get  percentage from a given ratio.
 * @param {number} [$ratio=1] - The column ratio of the element.
 * @returns {number} - The percentage value.
 */
/**
 * Work out the column widths based on the ratio and gutter sizes.
 * @param {number} [$ratios=1] - The column ratio of the element.
 * @param {number} [$gutter=$jeet-gutter] - The gutter for the column.
 * @returns {list} $width $gutter - A list containing the with and gutter for the element.
 */
/**
 * Get the set layout direction for the project.
 * @returns {string} $direction - The layout direction.
 */
/**
 * Replace a specified list value with a new value (uses built in set-nth() if available)
 * @param {list} $list - The list of values you want to alter.
 * @param {number} $index - The index of the list item you want to replace.
 * @param {*} $value - The value you want to replace $index with.
 * @returns {list} $list - The list with the value replaced or removed.
 * @warn if an invalid index is supplied.
 */
/**
 * Reverse a list (progressively enhanced for Sass 3.3)
 * @param {list} $list - The list of values you want to reverse.
 * @returns {list} $result - The reversed list.
 */
/**
 * Get the opposite direction to a given value.
 * @param {string} $dir - The direction you want the opposite of.
 * @returns {string} - The opposite direction to $dir.
 * @warn if an incorrect string is provided.
 */
/**
 * Style an element as a column with a gutter.
 * @param {number} [$ratios=1] - A width relative to its container as a fraction.
 * @param {number} [$offset=0] - A offset specified as a fraction (see $ratios).
 * @param {number} [$cycle=0] - Easily create an nth column grid where $cycle equals the number of columns.
 * @param {number} [$uncycle=0] - Undo a previous cycle value to allow for a new one.
 * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * An alias for the column mixin.
 * @param [$args...] - All arguments get passed through to column().
 */
/**
 * Get the width of a column and nothing else.
 * @param {number} [$ratios=1] - A width relative to its container as a fraction.
 * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * Get the gutter size of a column and nothing else.
 * @param {number} [ratios=1] - A width relative to its container as a fraction.
 * @param {number} [gutter=jeet.gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * An alias for the column-width function.
 * @param [$args...] - All arguments get passed through to column().
 */
/**
 * An alias for the column-gutter function.
 * @param [$args...] - All arguments get passed through to column().
 */
/**
 * Style an element as a column without any gutters for a seamless row.
 * @param {number} [$ratios=1] - A width relative to its container as a fraction.
 * @param {number} [$offset=0] - A offset specified as a fraction (see $ratios).
 * @param {number} [cycle=0] - Easily create an nth column grid where cycle equals the number of columns.
 * @param {number} [uncycle=0] - Undo a previous cycle value to allow for a new one.
 */
/**
 * Reorder columns without altering the HTML.
 * @param {number} [$ratios=0] - Specify how far along you want the element to move.
 * @param {string} [$col-or-span=column] - Specify whether the element has a gutter or not.
 * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * Reset an element that has had shift() applied to it.
 */
/**
 * View the grid and its layers for easy debugging.
 * @param {string} [$color=black] - The background tint applied.
 * @param {boolean} [$important=false] - Whether to apply the style as !important.
 */
/**
 *  Alias for edit().
 */
/**
 * Horizontally center an element.
 * @param {number} [$max-width=1410px] - The max width the element can be.
 * @param {number} [$pad=0] - Specify the element's left and right padding.
 */
/**
 * Uncenter an element.
 */
/**
 * Stack an element so that nothing is either side of it.
 * @param {number} [$pad=0] - Specify the element's left and right padding.
 * @param {boolean/string} [$align=false] - Specify the text align for the element.
 */
/**
 * Unstack an element.
 */
/**
 * Center an element on either or both axes.
 * @requires A parent container with relative positioning.
 * @param {string} [$direction=both] - Specify which axes to center the element on.
 */
/**
 * Apply a clearfix to an element.
 */
@font-face {
  font-family: 'futura_lightregular';
  src: url("fonts/futura_light_1-webfont.eot");
  src: url("fonts/futura_light_1-webfont.eot?#iefix") format("embedded-opentype"), url("fonts/futura_light_1-webfont.woff2") format("woff2"), url("fonts/futura_light_1-webfont.woff") format("woff"), url("fonts/futura_light_1-webfont.ttf") format("truetype"), url("fonts/futura_light_1-webfont.svg#futura_lightregular") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'futuraextendedregular';
  src: url("fonts/futuraextended-webfont.eot");
  src: url("fonts/futuraextended-webfont.eot?#iefix") format("embedded-opentype"), url("fonts/futuraextended-webfont.woff2") format("woff2"), url("fonts/futuraextended-webfont.woff") format("woff"), url("fonts/futuraextended-webfont.ttf") format("truetype"), url("fonts/futuraextended-webfont.svg#futuraextendedregular") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* line 38, ../sass/_init.scss */
html, body {
  font-family: "futura_lightregular";
  margin: 0px;
  height: 100%;
  font-size: 17px;
  color: #8A8B8C;
}
/* line 44, ../sass/_init.scss */
html img, body img {
  max-width: 100%;
}

/* line 48, ../sass/_init.scss */
#map-canvas {
  height: 100%;
  margin: 0px;
  padding: 0px;
}

/* line 53, ../sass/_init.scss */
div {
  -webkit-box-sizing: border-box;
  /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box;
  /* Firefox, other Gecko */
  box-sizing: border-box;
  /* Opera/IE 8+ */
}

/* line 65, ../sass/_init.scss */
.wrapper {
  max-width: 100%;
}

/* line 68, ../sass/_init.scss */
.container {
  *zoom: 1;
  width: auto;
  max-width: 100%;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0;
  padding-right: 0;
  overflow-x: hidden;
  position: relative;
  min-height: 100%;
}
/* line 360, ../jeet/_grid.scss */
.container:before, .container:after {
  content: '';
  display: table;
}
/* line 365, ../jeet/_grid.scss */
.container:after {
  clear: both;
}

/* line 75, ../sass/_init.scss */
h1 {
  font-family: futuraextendedregular;
}

/* line 78, ../sass/_init.scss */
h2 {
  font-family: futuraextendedregular;
}

/* line 81, ../sass/_init.scss */
h3 {
  font-family: futuraextendedregular;
}

/* line 84, ../sass/_init.scss */
h4 {
  font-family: futuraextendedregular;
}

/* line 87, ../sass/_init.scss */
.clearHelper {
  clear: both;
}

/* line 91, ../sass/_init.scss */
#mobileMenu {
  display: none;
}

/* line 94, ../sass/_init.scss */
.slicknav_menu {
  display: none;
}

/* line 97, ../sass/_init.scss */
strong {
  font-weight: bolder;
}

/* line 100, ../sass/_init.scss */
.gradiente {
  width: 100%;
  height: 2px;
  background-color: white;
}

/* line 105, ../sass/_init.scss */
.textWrapper {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 65.66667%;
  margin-left: 17.16667%;
  margin-right: 3%;
  padding-bottom: 25px;
  text-align: center;
}
/* line 360, ../jeet/_grid.scss */
.textWrapper:before, .textWrapper:after {
  content: '';
  display: table;
}
/* line 365, ../jeet/_grid.scss */
.textWrapper:after {
  clear: both;
}
/* line 58, ../jeet/_grid.scss */
.textWrapper:last-child {
  margin-right: 0%;
}
/* line 109, ../sass/_init.scss */
.textWrapper p {
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 1.2;
  text-align: inherit;
  font-size: 1em;
}
/* line 116, ../sass/_init.scss */
.textWrapper h2 {
  text-align: center;
  display: inline-block;
  position: relative;
}

/* line 123, ../sass/_init.scss */
.readMore {
  margin-top: 10px;
  padding-top: 3px;
  padding-bottom: 3px;
  padding-left: 10px;
  padding-right: 10px;
  display: inline-block;
  background-color: #F7931D;
  border-radius: 2px;
  color: inherit;
  text-decoration: none;
}

/* line 135, ../sass/_init.scss */
#showCatering {
  display: none;
}

/* line 138, ../sass/_init.scss */
.contenedor23 {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 65.66667%;
  margin-left: 17.16667%;
  margin-right: 3%;
}
/* line 360, ../jeet/_grid.scss */
.contenedor23:before, .contenedor23:after {
  content: '';
  display: table;
}
/* line 365, ../jeet/_grid.scss */
.contenedor23:after {
  clear: both;
}
/* line 58, ../jeet/_grid.scss */
.contenedor23:last-child {
  margin-right: 0%;
}

/* line 1, ../sass/_homeScroll.scss */
.homeScroll {
  background: url("../img/home-scroll.jpg") no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: relative;
}
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  /* line 1, ../sass/_homeScroll.scss */
  .homeScroll {
    background-attachment: scroll;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  /* line 1, ../sass/_homeScroll.scss */
  .homeScroll {
    background-attachment: scroll;
  }
}
/* line 7, ../sass/_homeScroll.scss */
.homeScroll .logo {
  position: absolute;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  -o-transform-style: preserve-3d;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
/* line 9, ../sass/_homeScroll.scss */
.homeScroll .logo img {
  margin-left: auto;
  margin-right: auto;
  display: block;
  max-width: 85%;
}
/* line 16, ../sass/_homeScroll.scss */
.homeScroll .scrollDown {
  position: absolute;
  left: calc(50% - 1em);
  right: 50%;
  bottom: 20%;
  -webkit-animation: breathing 2s ease-out 2 normal;
  animation: breathing 2s ease-out 2 normal;
}
/* line 24, ../sass/_homeScroll.scss */
.homeScroll .scrollDown i {
  color: white;
  font-size: 2em;
}
@-webkit-keyframes breathing {
  0% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  25% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  60% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}
@keyframes breathing {
  0% {
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
  }
  25% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  60% {
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
  }
}
/* line 1, ../sass/_header.scss */
.fixedMenu {
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: auto;
  position: fixed !important;
  transition: opacity .55s ease-in-out;
  -moz-transition: opacity .55s ease-in-out;
  -webkit-transition: opacity .55s ease-in-out;
  opacity: 0;
  visibility: hidden;
  z-index: 20;
}
/* line 10, ../sass/_header.scss */
.fixedMenu .logo {
  visibility: hidden;
}
/* line 12, ../sass/_header.scss */
.fixedMenu .logo img {
  max-width: 25% !important;
}

/* line 17, ../sass/_header.scss */
.invisible {
  z-index: -1;
  opacity: 0;
  visibility: hidden;
}

/* line 22, ../sass/_header.scss */
.visible {
  z-index: 20;
  opacity: 1;
  visibility: visible;
}

/* line 27, ../sass/_header.scss */
.header {
  color: white;
  background-image: url("fondo-menu.svg");
  background-attachment: scroll;
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: 150%;
  font-size: 1em;
  font-family: 'futuraextendedregular';
  text-align: center;
  position: relative;
  z-index: 20;
}
/* line 39, ../sass/_header.scss */
.header .logo {
  display: inline-block;
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 9.875%;
  margin-left: 12.875%;
  margin-right: 3%;
  /*margin-left: auto;
  margin-right: auto;*/
  transition: all 1s ease-in;
}
/* line 360, ../jeet/_grid.scss */
.header .logo:before, .header .logo:after {
  content: '';
  display: table;
}
/* line 365, ../jeet/_grid.scss */
.header .logo:after {
  clear: both;
}
/* line 50, ../jeet/_grid.scss */
.header .logo:nth-of-type(2n) {
  margin-right: 0%;
  float: right;
}
/* line 54, ../jeet/_grid.scss */
.header .logo:nth-of-type(2n + 1) {
  clear: both;
}
/* line 45, ../sass/_header.scss */
.header .logo img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 85%;
  transition: all 1s ease-in;
  padding-top: 5px;
  padding-bottom: 60px;
}
/* line 54, ../sass/_header.scss */
.header #desktopMenu {
  position: absolute;
  bottom: 7%;
  right: 0;
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 61.375%;
  margin-left: 12.875%;
  margin-right: 3%;
}
/* line 360, ../jeet/_grid.scss */
.header #desktopMenu:before, .header #desktopMenu:after {
  content: '';
  display: table;
}
/* line 365, ../jeet/_grid.scss */
.header #desktopMenu:after {
  clear: both;
}
/* line 50, ../jeet/_grid.scss */
.header #desktopMenu:nth-of-type(2n) {
  margin-right: 0%;
  float: right;
}
/* line 54, ../jeet/_grid.scss */
.header #desktopMenu:nth-of-type(2n + 1) {
  clear: both;
}
/* line 61, ../sass/_header.scss */
.header .menu {
  text-transform: Capitalize;
  text-align: center;
}
/* line 66, ../sass/_header.scss */
.header .menu:hover .active:before {
  display: none;
}
/* line 72, ../sass/_header.scss */
.header .menu .active:before {
  position: absolute;
  top: -10px;
  left: calc(50% - 3px);
  content: '';
  color: #DA984F;
  border-style: solid;
  border-width: 3px;
  border-radius: 50%;
}
/* line 83, ../sass/_header.scss */
.header .menu a {
  text-decoration: none;
  color: white;
  position: relative;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
/* line 92, ../sass/_header.scss */
.header .menu a:hover {
  color: #FFC556;
}
/* line 96, ../sass/_header.scss */
.header .menu .elemento {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 20%;
  margin-left: 0%;
  margin-right: 0%;
  font-size: 0.8em;
}
/* line 360, ../jeet/_grid.scss */
.header .menu .elemento:before, .header .menu .elemento:after {
  content: '';
  display: table;
}
/* line 365, ../jeet/_grid.scss */
.header .menu .elemento:after {
  clear: both;
}
/* line 58, ../jeet/_grid.scss */
.header .menu .elemento:last-child {
  margin-right: 0%;
}
/* line 99, ../sass/_header.scss */
.header .menu .elemento .fa {
  font-size: 1.3em;
  margin-top: -0.65em;
}

/* line 1, ../sass/_homeSlide.scss */
.homeSlide {
  margin-bottom: 0px !important;
}
/* line 3, ../sass/_homeSlide.scss */
.homeSlide .slick-dots li button:before {
  font-size: 15px;
  color: white;
}
/* line 7, ../sass/_homeSlide.scss */
.homeSlide .slick-dots li.slick-active button:before {
  color: white;
}
/* line 11, ../sass/_homeSlide.scss */
.homeSlide .slide .caption {
  width: inherit;
  position: absolute;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  -o-transform-style: preserve-3d;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  background-size: contain;
  background-repeat: no-repeat;
  text-align: center;
  line-height: 1;
  color: white;
  font-size: 2em;
}
/* line 13, ../sass/_homeSlide.scss */
.homeSlide .slide .caption .mano {
  position: absolute;
  top: -15px;
  right: 15%;
  max-width: 23%;
}
/* line 19, ../sass/_homeSlide.scss */
.homeSlide .slide .caption img {
  max-width: 70%;
  margin-left: auto;
  margin-right: auto;
  display: inline-block;
}
/* line 37, ../sass/_homeSlide.scss */
.homeSlide .slide .caption .verMas {
  text-transform: uppercase;
  margin-top: 1em;
}
/* line 40, ../sass/_homeSlide.scss */
.homeSlide .slide .caption .verMas span {
  font-size: 0.55em;
  background: url(fondo-verMas-naranja.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  padding-left: 1em;
  padding-right: 1em;
}
/* line 50, ../sass/_homeSlide.scss */
.homeSlide .slide .caption p {
  font-size: 0.75em;
  padding-left: 2.75em;
  padding-right: 2.75em;
}
/* line 55, ../sass/_homeSlide.scss */
.homeSlide .slide .caption .boton {
  background-color: #F4901E;
  font-size: 0.4em;
  color: white;
  margin-top: 10px;
  width: 38%;
  height: 25px;
  line-height: 100%;
  position: relative;
}
/* line 65, ../sass/_homeSlide.scss */
.homeSlide .slide .caption .boton a {
  color: white;
  display: inline-block;
  margin-left: 10px;
  position: absolute;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  -o-transform-style: preserve-3d;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
/* line 72, ../sass/_homeSlide.scss */
.homeSlide .slide .caption .boton:after {
  width: 0;
  height: 0;
  border-style: solid;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12.5px 0 12.5px 7.5px;
  border-color: transparent transparent transparent #F4901E;
  content: '';
  position: absolute;
  right: -7px;
  top: 0;
}

/* line 90, ../sass/_homeSlide.scss */
#home {
  min-height: 100%;
}
/* line 92, ../sass/_homeSlide.scss */
#home .link {
  margin-top: 30px;
  text-align: center;
}
/* line 95, ../sass/_homeSlide.scss */
#home .link a {
  margin-right: auto;
  margin-left: auto;
  display: inline-block;
  font-size: 2em;
  color: #DFCC6E;
  text-decoration: none;
  border-bottom: 3px solid #DFCC6E;
  padding-left: 20px;
  padding-right: 20px;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
/* line 109, ../sass/_homeSlide.scss */
#home .link a:hover {
  border-bottom: 3px solid gray;
  color: gray;
}
/* line 115, ../sass/_homeSlide.scss */
#home .somos {
  margin-top: 40px;
  margin-bottom: 40px;
}
/* line 118, ../sass/_homeSlide.scss */
#home .somos .texto {
  padding-top: 50px;
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 74.25%;
  margin-left: 0%;
  margin-right: 3%;
}
/* line 120, ../sass/_homeSlide.scss */
#home .somos .texto p {
  text-align: center;
}
/* line 360, ../jeet/_grid.scss */
#home .somos .texto:before, #home .somos .texto:after {
  content: '';
  display: table;
}
/* line 365, ../jeet/_grid.scss */
#home .somos .texto:after {
  clear: both;
}
/* line 58, ../jeet/_grid.scss */
#home .somos .texto:last-child {
  margin-right: 0%;
}
/* line 125, ../sass/_homeSlide.scss */
#home .somos .imagen {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 22.75%;
  margin-left: 0%;
  margin-right: 3%;
}
/* line 360, ../jeet/_grid.scss */
#home .somos .imagen:before, #home .somos .imagen:after {
  content: '';
  display: table;
}
/* line 365, ../jeet/_grid.scss */
#home .somos .imagen:after {
  clear: both;
}
/* line 58, ../jeet/_grid.scss */
#home .somos .imagen:last-child {
  margin-right: 0%;
}
/* line 127, ../sass/_homeSlide.scss */
#home .somos .imagen img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
/* line 134, ../sass/_homeSlide.scss */
#home .bebida {
  margin-top: 40px;
  margin-bottom: 40px;
}
/* line 137, ../sass/_homeSlide.scss */
#home .bebida h3 {
  color: #DFCC6E;
  text-align: center;
  padding-bottom: 5px;
  border-bottom: 3px solid #DFCC6E;
  margin-bottom: 5px;
  font-size: 2em;
}
/* line 145, ../sass/_homeSlide.scss */
#home .bebida p {
  text-align: center;
}
/* line 147, ../sass/_homeSlide.scss */
#home .bebida p i {
  padding-top: 5px;
  font-style: italic;
  font-weight: bolder;
}
/* line 154, ../sass/_homeSlide.scss */
#home .menu {
  margin-top: 40px;
  margin-bottom: 20px;
}
/* line 157, ../sass/_homeSlide.scss */
#home .menu h2 {
  padding-top: 20px;
  font-size: 3em;
  color: #DFCC6E;
  text-align: center;
  padding-bottom: 10px;
}
/* line 164, ../sass/_homeSlide.scss */
#home .menu .fotografias {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 65.66667%;
  margin-left: 0%;
  margin-right: 3%;
}
/* line 360, ../jeet/_grid.scss */
#home .menu .fotografias:before, #home .menu .fotografias:after {
  content: '';
  display: table;
}
/* line 365, ../jeet/_grid.scss */
#home .menu .fotografias:after {
  clear: both;
}
/* line 58, ../jeet/_grid.scss */
#home .menu .fotografias:last-child {
  margin-right: 0%;
}
/* line 166, ../sass/_homeSlide.scss */
#home .menu .fotografias .foto {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 48.5%;
  margin-left: 0%;
  margin-right: 3%;
  margin-bottom: 20px;
  -webkit-transition: 1s ease-in-out;
  -moz-transition: 1s ease-in-out;
  -o-transition: 1s ease-in-out;
  transition: 1s ease-in-out;
}
/* line 360, ../jeet/_grid.scss */
#home .menu .fotografias .foto:before, #home .menu .fotografias .foto:after {
  content: '';
  display: table;
}
/* line 365, ../jeet/_grid.scss */
#home .menu .fotografias .foto:after {
  clear: both;
}
/* line 50, ../jeet/_grid.scss */
#home .menu .fotografias .foto:nth-of-type(2n) {
  margin-right: 0%;
  float: right;
}
/* line 54, ../jeet/_grid.scss */
#home .menu .fotografias .foto:nth-of-type(2n + 1) {
  clear: both;
}
/* line 173, ../sass/_homeSlide.scss */
#home .menu .fotografias .foto img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
/* line 178, ../sass/_homeSlide.scss */
#home .menu .fotografias .foto:hover {
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  -o-transform: translateY(-10px);
  transform: translateY(-10px);
}
/* line 187, ../sass/_homeSlide.scss */
#home .menu .texto {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 31.33333%;
  margin-left: 0%;
  margin-right: 3%;
  text-align: justify;
}
/* line 360, ../jeet/_grid.scss */
#home .menu .texto:before, #home .menu .texto:after {
  content: '';
  display: table;
}
/* line 365, ../jeet/_grid.scss */
#home .menu .texto:after {
  clear: both;
}
/* line 58, ../jeet/_grid.scss */
#home .menu .texto:last-child {
  margin-right: 0%;
}
/* line 192, ../sass/_homeSlide.scss */
#home .conoceMenu {
  background: url("inicio-1.jpg") no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  /* line 192, ../sass/_homeSlide.scss */
  #home .conoceMenu {
    background-attachment: scroll;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  /* line 192, ../sass/_homeSlide.scss */
  #home .conoceMenu {
    background-attachment: scroll;
  }
}
/* line 195, ../sass/_homeSlide.scss */
#home .conoceCocteles {
  background: url("inicio-2.jpg") no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  /* line 195, ../sass/_homeSlide.scss */
  #home .conoceCocteles {
    background-attachment: scroll;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  /* line 195, ../sass/_homeSlide.scss */
  #home .conoceCocteles {
    background-attachment: scroll;
  }
}
/* line 198, ../sass/_homeSlide.scss */
#home .visitanos {
  background: url("inicio-3.jpg") no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  /* line 198, ../sass/_homeSlide.scss */
  #home .visitanos {
    background-attachment: scroll;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  /* line 198, ../sass/_homeSlide.scss */
  #home .visitanos {
    background-attachment: scroll;
  }
}
/* line 202, ../sass/_homeSlide.scss */
#home .separador .caption {
  margin-top: 10%;
  margin-bottom: 10%;
  text-align: center;
  color: white;
}
/* line 208, ../sass/_homeSlide.scss */
#home .separador .caption h1 {
  font-weight: bolder;
}
/* line 211, ../sass/_homeSlide.scss */
#home .separador .caption p {
  margin-top: 20px;
  font-size: 1.15em;
}
/* line 217, ../sass/_homeSlide.scss */
#home .cuartaWelcome {
  background-image: url(home-4.jpg);
  color: white;
}
/* line 220, ../sass/_homeSlide.scss */
#home .cuartaWelcome .h1Container {
  margin-top: 5%;
  margin-bottom: 40px;
  text-align: left;
}
/* line 224, ../sass/_homeSlide.scss */
#home .cuartaWelcome .h1Container h1 {
  text-align: left;
  color: white;
  background-image: url(fondo-verde-titulo-izq.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: left;
  display: inline-block;
  padding-right: 6%;
  padding-left: 33.33%;
  padding-top: 10px;
  padding-bottom: 10px;
}
/* line 238, ../sass/_homeSlide.scss */
#home .cuartaWelcome .formContacto {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 48.5%;
  margin-left: 17.16667%;
  margin-right: 3%;
  margin-bottom: 10%;
  position: relative;
}
/* line 360, ../jeet/_grid.scss */
#home .cuartaWelcome .formContacto:before, #home .cuartaWelcome .formContacto:after {
  content: '';
  display: table;
}
/* line 365, ../jeet/_grid.scss */
#home .cuartaWelcome .formContacto:after {
  clear: both;
}
/* line 58, ../jeet/_grid.scss */
#home .cuartaWelcome .formContacto:last-child {
  margin-right: 0%;
}
/* line 242, ../sass/_homeSlide.scss */
#home .cuartaWelcome .formContacto .parte1 {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 65.66667%;
  margin-left: 0%;
  margin-right: 3%;
}
/* line 360, ../jeet/_grid.scss */
#home .cuartaWelcome .formContacto .parte1:before, #home .cuartaWelcome .formContacto .parte1:after {
  content: '';
  display: table;
}
/* line 365, ../jeet/_grid.scss */
#home .cuartaWelcome .formContacto .parte1:after {
  clear: both;
}
/* line 58, ../jeet/_grid.scss */
#home .cuartaWelcome .formContacto .parte1:last-child {
  margin-right: 0%;
}
/* line 245, ../sass/_homeSlide.scss */
#home .cuartaWelcome .formContacto .parte2 {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 31.33333%;
  margin-left: 0%;
  margin-right: 3%;
  position: absolute;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  -o-transform-style: preserve-3d;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
}
/* line 360, ../jeet/_grid.scss */
#home .cuartaWelcome .formContacto .parte2:before, #home .cuartaWelcome .formContacto .parte2:after {
  content: '';
  display: table;
}
/* line 365, ../jeet/_grid.scss */
#home .cuartaWelcome .formContacto .parte2:after {
  clear: both;
}
/* line 58, ../jeet/_grid.scss */
#home .cuartaWelcome .formContacto .parte2:last-child {
  margin-right: 0%;
}
/* line 250, ../sass/_homeSlide.scss */
#home .cuartaWelcome .formContacto .parte2 .parte2Wrapper p {
  padding-top: 15px;
}

/* line 1, ../sass/_menu.scss */
.fixedMenu .posicionMovil {
  background-color: #4B8B2A;
}

/* line 4, ../sass/_menu.scss */
.noMovible .posicionMovil {
  display: none;
}

/* line 8, ../sass/_menu.scss */
#menuSection h2 {
  font-size: 2.5em;
  color: #DFCC6E;
  text-align: center;
}
/* line 13, ../sass/_menu.scss */
#menuSection .menuCaption {
  margin-bottom: 25px;
}
/* line 15, ../sass/_menu.scss */
#menuSection .menuCaption h2 {
  font-size: 5em;
  padding-top: 25px;
  padding-bottom: 15px;
  margin-bottom: 25px;
  border-bottom: 3px solid #DFCC6E;
  margin-bottom: 5px;
}
/* line 25, ../sass/_menu.scss */
#menuSection .separador .caption {
  margin-top: 10%;
  margin-bottom: 10%;
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 48.5%;
  margin-left: 25.75%;
  margin-right: 3%;
  text-align: center;
  color: white;
}
/* line 360, ../jeet/_grid.scss */
#menuSection .separador .caption:before, #menuSection .separador .caption:after {
  content: '';
  display: table;
}
/* line 365, ../jeet/_grid.scss */
#menuSection .separador .caption:after {
  clear: both;
}
/* line 58, ../jeet/_grid.scss */
#menuSection .separador .caption:last-child {
  margin-right: 0%;
}
/* line 31, ../sass/_menu.scss */
#menuSection .separador .caption h1 {
  font-weight: bolder;
}
/* line 34, ../sass/_menu.scss */
#menuSection .separador .caption p {
  margin-top: 20px;
  font-size: 1.15em;
}
/* line 40, ../sass/_menu.scss */
#menuSection .opcionCuatro {
  margin-top: 40px;
  margin-bottom: 40px;
}
/* line 43, ../sass/_menu.scss */
#menuSection .opcionCuatro .opcion {
  margin-bottom: 20px;
  text-align: center !important;
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 31.33333%;
  margin-left: 0%;
  margin-right: 3%;
}
/* line 46, ../sass/_menu.scss */
#menuSection .opcionCuatro .opcion .wrapper {
  text-align: left;
  display: inline-block;
}
/* line 50, ../sass/_menu.scss */
#menuSection .opcionCuatro .opcion h3 {
  font-size: 1.1em;
}
/* line 360, ../jeet/_grid.scss */
#menuSection .opcionCuatro .opcion:before, #menuSection .opcionCuatro .opcion:after {
  content: '';
  display: table;
}
/* line 365, ../jeet/_grid.scss */
#menuSection .opcionCuatro .opcion:after {
  clear: both;
}
/* line 50, ../jeet/_grid.scss */
#menuSection .opcionCuatro .opcion:nth-of-type(3n) {
  margin-right: 0%;
  float: right;
}
/* line 54, ../jeet/_grid.scss */
#menuSection .opcionCuatro .opcion:nth-of-type(3n + 1) {
  clear: both;
}
/* line 54, ../sass/_menu.scss */
#menuSection .opcionCuatro .opcion ul {
  padding-top: 10px;
  padding-left: 35px;
}
/* line 57, ../sass/_menu.scss */
#menuSection .opcionCuatro .opcion ul li {
  list-style: disc;
}
/* line 62, ../sass/_menu.scss */
#menuSection .opcionCuatro #desfase {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 31.33333%;
  margin-left: 17.16667%;
  margin-right: 3%;
}
/* line 360, ../jeet/_grid.scss */
#menuSection .opcionCuatro #desfase:before, #menuSection .opcionCuatro #desfase:after {
  content: '';
  display: table;
}
/* line 365, ../jeet/_grid.scss */
#menuSection .opcionCuatro #desfase:after {
  clear: both;
}
/* line 50, ../jeet/_grid.scss */
#menuSection .opcionCuatro #desfase:nth-of-type(3n) {
  margin-right: 0%;
  float: right;
}
/* line 54, ../jeet/_grid.scss */
#menuSection .opcionCuatro #desfase:nth-of-type(3n + 1) {
  clear: both;
}
/* line 66, ../sass/_menu.scss */
#menuSection .cuatro {
  background: url("menu-2.jpg") no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  /* line 66, ../sass/_menu.scss */
  #menuSection .cuatro {
    background-attachment: scroll;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  /* line 66, ../sass/_menu.scss */
  #menuSection .cuatro {
    background-attachment: scroll;
  }
}
/* line 68, ../sass/_menu.scss */
#menuSection .cuatro .caption {
  margin-top: 0;
  margin-bottom: 0;
}
/* line 73, ../sass/_menu.scss */
#menuSection .consejos {
  background: url("menu-3.jpg") no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  /* line 73, ../sass/_menu.scss */
  #menuSection .consejos {
    background-attachment: scroll;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  /* line 73, ../sass/_menu.scss */
  #menuSection .consejos {
    background-attachment: scroll;
  }
}
/* line 75, ../sass/_menu.scss */
#menuSection .consejos .caption {
  margin-top: 0;
  margin-bottom: 0;
}
/* line 80, ../sass/_menu.scss */
#menuSection .chef {
  margin-top: 30px;
  margin-bottom: 30px;
}
/* line 83, ../sass/_menu.scss */
#menuSection .chef .consejo {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 31.33333%;
  margin-left: 0%;
  margin-right: 3%;
  text-align: center !important;
}
/* line 360, ../jeet/_grid.scss */
#menuSection .chef .consejo:before, #menuSection .chef .consejo:after {
  content: '';
  display: table;
}
/* line 365, ../jeet/_grid.scss */
#menuSection .chef .consejo:after {
  clear: both;
}
/* line 50, ../jeet/_grid.scss */
#menuSection .chef .consejo:nth-of-type(3n) {
  margin-right: 0%;
  float: right;
}
/* line 54, ../jeet/_grid.scss */
#menuSection .chef .consejo:nth-of-type(3n + 1) {
  clear: both;
}
/* line 86, ../sass/_menu.scss */
#menuSection .chef .consejo .wrapper {
  text-align: left;
  display: inline-block;
}
/* line 90, ../sass/_menu.scss */
#menuSection .chef .consejo li {
  list-style: disc;
}
/* line 95, ../sass/_menu.scss */
#menuSection .snacks {
  margin-top: 40px;
  margin-bottom: 70px;
}
/* line 98, ../sass/_menu.scss */
#menuSection .snacks h3 {
  font-size: 3em;
  border-bottom: 3px solid #DFCC6E;
}
/* line 103, ../sass/_menu.scss */
#menuSection .snacks .containerSnacks {
  padding-top: 10px;
  padding-left: 50px;
  padding-right: 50px;
}
/* line 107, ../sass/_menu.scss */
#menuSection .snacks .containerSnacks .snack {
  margin-top: 4px;
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 22.75%;
  margin-left: 0%;
  margin-right: 3%;
  text-align: center !important;
}
/* line 360, ../jeet/_grid.scss */
#menuSection .snacks .containerSnacks .snack:before, #menuSection .snacks .containerSnacks .snack:after {
  content: '';
  display: table;
}
/* line 365, ../jeet/_grid.scss */
#menuSection .snacks .containerSnacks .snack:after {
  clear: both;
}
/* line 50, ../jeet/_grid.scss */
#menuSection .snacks .containerSnacks .snack:nth-of-type(4n) {
  margin-right: 0%;
  float: right;
}
/* line 54, ../jeet/_grid.scss */
#menuSection .snacks .containerSnacks .snack:nth-of-type(4n + 1) {
  clear: both;
}
/* line 111, ../sass/_menu.scss */
#menuSection .snacks .containerSnacks .snack .wrapper {
  text-align: left;
  display: inline-block;
}
/* line 115, ../sass/_menu.scss */
#menuSection .snacks .containerSnacks .snack li {
  list-style: disc;
}
/* line 121, ../sass/_menu.scss */
#menuSection .conoceMenu {
  background: url("menu-1.jpg") no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  /* line 121, ../sass/_menu.scss */
  #menuSection .conoceMenu {
    background-attachment: scroll;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  /* line 121, ../sass/_menu.scss */
  #menuSection .conoceMenu {
    background-attachment: scroll;
  }
}

/* line 2, ../sass/_servicio.scss */
.servicio .mitadServicios {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 41.66667%;
  margin-left: 16.66667%;
  margin-right: 0%;
}
/* line 360, ../jeet/_grid.scss */
.servicio .mitadServicios:before, .servicio .mitadServicios:after {
  content: '';
  display: table;
}
/* line 365, ../jeet/_grid.scss */
.servicio .mitadServicios:after {
  clear: both;
}
/* line 58, ../jeet/_grid.scss */
.servicio .mitadServicios:last-child {
  margin-right: 0%;
}
/* line 4, ../sass/_servicio.scss */
.servicio .mitadServicios h2 {
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  font-size: 4em;
}
/* line 9, ../sass/_servicio.scss */
.servicio .mitadServicios .containerGrid {
  text-align: center;
}
/* line 11, ../sass/_servicio.scss */
.servicio .mitadServicios .containerGrid .placeholder {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 14.16667%;
  margin-left: 0%;
  margin-right: 3%;
}
/* line 360, ../jeet/_grid.scss */
.servicio .mitadServicios .containerGrid .placeholder:before, .servicio .mitadServicios .containerGrid .placeholder:after {
  content: '';
  display: table;
}
/* line 365, ../jeet/_grid.scss */
.servicio .mitadServicios .containerGrid .placeholder:after {
  clear: both;
}
/* line 58, ../jeet/_grid.scss */
.servicio .mitadServicios .containerGrid .placeholder:last-child {
  margin-right: 0%;
}
/* line 14, ../sass/_servicio.scss */
.servicio .mitadServicios .containerGrid .grid {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 33.33333%;
  margin-left: 0%;
  margin-right: 0%;
  margin-bottom: 40px;
}
/* line 360, ../jeet/_grid.scss */
.servicio .mitadServicios .containerGrid .grid:before, .servicio .mitadServicios .containerGrid .grid:after {
  content: '';
  display: table;
}
/* line 365, ../jeet/_grid.scss */
.servicio .mitadServicios .containerGrid .grid:after {
  clear: both;
}
/* line 50, ../jeet/_grid.scss */
.servicio .mitadServicios .containerGrid .grid:nth-of-type(3n) {
  margin-right: 0%;
  float: right;
}
/* line 54, ../jeet/_grid.scss */
.servicio .mitadServicios .containerGrid .grid:nth-of-type(3n + 1) {
  clear: both;
}
/* line 17, ../sass/_servicio.scss */
.servicio .mitadServicios .containerGrid .grid img {
  margin-bottom: 15px;
}
/* line 20, ../sass/_servicio.scss */
.servicio .mitadServicios .containerGrid .grid:nth-of-type(3n) {
  margin-right: 15%;
}
/* line 26, ../sass/_servicio.scss */
.servicio .mitad {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 41.66667%;
  margin-left: 0%;
  margin-right: 0%;
}
/* line 360, ../jeet/_grid.scss */
.servicio .mitad:before, .servicio .mitad:after {
  content: '';
  display: table;
}
/* line 365, ../jeet/_grid.scss */
.servicio .mitad:after {
  clear: both;
}
/* line 58, ../jeet/_grid.scss */
.servicio .mitad:last-child {
  margin-right: 0%;
}

/* line 1, ../sass/_promociones.scss */
.promociones {
  font-family: 'futuraextendedregular';
}
/* line 3, ../sass/_promociones.scss */
.promociones .preventa {
  background: url("fondo-promociones.jpg") no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  /* line 3, ../sass/_promociones.scss */
  .promociones .preventa {
    background-attachment: scroll;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  /* line 3, ../sass/_promociones.scss */
  .promociones .preventa {
    background-attachment: scroll;
  }
}
/* line 5, ../sass/_promociones.scss */
.promociones .preventa .caption {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 48.5%;
  margin-left: 0%;
  margin-right: 3%;
}
/* line 360, ../jeet/_grid.scss */
.promociones .preventa .caption:before, .promociones .preventa .caption:after {
  content: '';
  display: table;
}
/* line 365, ../jeet/_grid.scss */
.promociones .preventa .caption:after {
  clear: both;
}
/* line 58, ../jeet/_grid.scss */
.promociones .preventa .caption:last-child {
  margin-right: 0%;
}
/* line 9, ../sass/_promociones.scss */
.promociones .cupon {
  background: url("fondo-amigo.jpg") no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-attachment: scroll;
}
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  /* line 9, ../sass/_promociones.scss */
  .promociones .cupon {
    background-attachment: scroll;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  /* line 9, ../sass/_promociones.scss */
  .promociones .cupon {
    background-attachment: scroll;
  }
}
/* line 12, ../sass/_promociones.scss */
.promociones .cupon .caption {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 31.33333%;
  margin-left: 68.66667%;
  margin-right: 3%;
}
/* line 360, ../jeet/_grid.scss */
.promociones .cupon .caption:before, .promociones .cupon .caption:after {
  content: '';
  display: table;
}
/* line 365, ../jeet/_grid.scss */
.promociones .cupon .caption:after {
  clear: both;
}
/* line 58, ../jeet/_grid.scss */
.promociones .cupon .caption:last-child {
  margin-right: 0%;
}
/* line 17, ../sass/_promociones.scss */
.promociones .separador .caption {
  margin-top: 10%;
  margin-bottom: 10%;
}
/* line 22, ../sass/_promociones.scss */
.promociones .amigo {
  margin-top: 30px;
  margin-bottom: 30px;
}
/* line 25, ../sass/_promociones.scss */
.promociones .amigo .parteuno {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 31.33333%;
  margin-left: 0%;
  margin-right: 3%;
  margin-right: 2%;
  text-align: right;
}
/* line 360, ../jeet/_grid.scss */
.promociones .amigo .parteuno:before, .promociones .amigo .parteuno:after {
  content: '';
  display: table;
}
/* line 365, ../jeet/_grid.scss */
.promociones .amigo .parteuno:after {
  clear: both;
}
/* line 58, ../jeet/_grid.scss */
.promociones .amigo .parteuno:last-child {
  margin-right: 0%;
}
/* line 29, ../sass/_promociones.scss */
.promociones .amigo .parteuno span {
  font-size: 2em;
}
/* line 33, ../sass/_promociones.scss */
.promociones .amigo .partedos {
  margin-top: 0.75em;
  font-size: 0.9em;
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 65.66667%;
  margin-left: 0%;
  margin-right: 3%;
}
/* line 360, ../jeet/_grid.scss */
.promociones .amigo .partedos:before, .promociones .amigo .partedos:after {
  content: '';
  display: table;
}
/* line 365, ../jeet/_grid.scss */
.promociones .amigo .partedos:after {
  clear: both;
}
/* line 58, ../jeet/_grid.scss */
.promociones .amigo .partedos:last-child {
  margin-right: 0%;
}
/* line 37, ../sass/_promociones.scss */
.promociones .amigo .partedos ul {
  margin-top: 15px;
}
/* line 39, ../sass/_promociones.scss */
.promociones .amigo .partedos ul li {
  margin-top: 10px;
  margin-left: -10px;
  position: relative;
}
/* line 43, ../sass/_promociones.scss */
.promociones .amigo .partedos ul li:before {
  position: absolute;
  top: 0.02em;
  left: -0.3em;
  font-size: 8em;
  line-height: 0;
  content: "• ";
  color: #FFC556;
}

/* line 2, ../sass/_producto.scss */
.producto .hexagono {
  background-image: url("fondo-productos.jpg");
  background-size: cover;
  background-position: center;
}
/* line 7, ../sass/_producto.scss */
.producto h2 {
  padding-left: 80px;
  font-size: 4em;
  margin-bottom: -.2em;
  color: #F7931D;
}
/* line 13, ../sass/_producto.scss */
.producto h3 {
  padding-left: 80px;
  padding-right: 20px;
  font-size: 2em;
  padding-top: 30px;
  margin-bottom: .1em;
  color: white;
  border-bottom: 3px solid white;
  display: inline-block;
}

/* line 1, ../sass/_contacto.scss */
.contacto {
  background: url("fondo-contacto.jpg") no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  text-align: center;
}
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  /* line 1, ../sass/_contacto.scss */
  .contacto {
    background-attachment: scroll;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  /* line 1, ../sass/_contacto.scss */
  .contacto {
    background-attachment: scroll;
  }
}
/* line 4, ../sass/_contacto.scss */
.contacto h2 {
  margin-top: 45px;
  margin-bottom: 45px;
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
  color: white;
  font-size: 4em;
  text-align: center;
  padding-bottom: 7px;
  padding-left: 9px;
  padding-right: 9px;
  border-bottom: 3px white solid;
}
/* line 18, ../sass/_contacto.scss */
.contacto #contacto2 {
  font-family: 'futura_lightregular';
  color: black;
  text-align: center;
  position: relative;
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 66.66667%;
  margin-left: 16.66667%;
  margin-right: 0%;
  height: 100%;
}
/* line 360, ../jeet/_grid.scss */
.contacto #contacto2:before, .contacto #contacto2:after {
  content: '';
  display: table;
}
/* line 365, ../jeet/_grid.scss */
.contacto #contacto2:after {
  clear: both;
}
/* line 58, ../jeet/_grid.scss */
.contacto #contacto2:last-child {
  margin-right: 0%;
}
/* line 28, ../sass/_contacto.scss */
.contacto #contacto2 #contactoForm {
  z-index: 10;
  overflow: hidden;
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  background-color: rgba(255, 255, 255, 0.55);
  margin-bottom: 50px;
  border-style: none;
  font-size: 1em;
}
/* line 45, ../sass/_contacto.scss */
.contacto #contacto2 #contactoForm form {
  margin-right: 25px;
  margin-left: 25px;
  text-align: left;
}
/* line 49, ../sass/_contacto.scss */
.contacto #contacto2 #contactoForm form input:nth-of-type(1) {
  margin-top: 40px;
}
/* line 52, ../sass/_contacto.scss */
.contacto #contacto2 #contactoForm form input, .contacto #contacto2 #contactoForm form textarea {
  border-radius: 4px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.55);
  border: none;
  margin-bottom: 10px;
  font-size: 1em;
  padding: 12.5px;
  color: black;
  font-family: inherit;
  box-sizing: border-box;
}
/* line 49, ../sass/_mixins.scss */
.contacto #contacto2 #contactoForm form input::-webkit-input-placeholder, .contacto #contacto2 #contactoForm form textarea::-webkit-input-placeholder {
  color: white;
  font-weight: 100;
}
/* line 50, ../sass/_mixins.scss */
.contacto #contacto2 #contactoForm form input :-moz-placeholder, .contacto #contacto2 #contactoForm form textarea :-moz-placeholder {
  color: white;
  font-weight: 100;
}
/* line 51, ../sass/_mixins.scss */
.contacto #contacto2 #contactoForm form input::-moz-placeholder, .contacto #contacto2 #contactoForm form textarea::-moz-placeholder {
  color: white;
  font-weight: 100;
}
/* line 52, ../sass/_mixins.scss */
.contacto #contacto2 #contactoForm form input :-ms-input-placeholder, .contacto #contacto2 #contactoForm form textarea :-ms-input-placeholder {
  color: white;
  font-weight: 100;
}
/* line 68, ../sass/_contacto.scss */
.contacto #contacto2 #contactoForm form .enviar {
  padding: 5px;
  color: black;
  border-style: none;
  width: 25%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-transform: uppercase;
  background-color: #FFC556;
  font-weight: 800;
  margin-bottom: 1.75em;
}
/* line 81, ../sass/_contacto.scss */
.contacto #contacto2 #contactoForm form textarea {
  overflow: hidden;
  height: 12%;
  width: 100%;
  resize: none;
  font-family: inherit;
}
/* line 92, ../sass/_contacto.scss */
.contacto #contacto2 .partePrincipal {
  text-align: left;
}
/* line 94, ../sass/_contacto.scss */
.contacto #contacto2 .partePrincipal h1 {
  margin-left: 10px;
  text-transform: uppercase;
}
/* line 99, ../sass/_contacto.scss */
.contacto #contacto2 .parte1 {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 64.28571%;
  margin-left: 0%;
  margin-right: 0%;
}
/* line 360, ../jeet/_grid.scss */
.contacto #contacto2 .parte1:before, .contacto #contacto2 .parte1:after {
  content: '';
  display: table;
}
/* line 365, ../jeet/_grid.scss */
.contacto #contacto2 .parte1:after {
  clear: both;
}
/* line 58, ../jeet/_grid.scss */
.contacto #contacto2 .parte1:last-child {
  margin-right: 0%;
}
/* line 102, ../sass/_contacto.scss */
.contacto #contacto2 .parte2 {
  position: relative;
  color: black !important;
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 35.71429%;
  margin-left: 0%;
  margin-right: 0%;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.8);
}
/* line 360, ../jeet/_grid.scss */
.contacto #contacto2 .parte2:before, .contacto #contacto2 .parte2:after {
  content: '';
  display: table;
}
/* line 365, ../jeet/_grid.scss */
.contacto #contacto2 .parte2:after {
  clear: both;
}
/* line 58, ../jeet/_grid.scss */
.contacto #contacto2 .parte2:last-child {
  margin-right: 0%;
}
/* line 108, ../sass/_contacto.scss */
.contacto #contacto2 .parte2 .parte2Wrapper {
  position: absolute;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  -o-transform-style: preserve-3d;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
/* line 111, ../sass/_contacto.scss */
.contacto #contacto2 .parte2 .logo {
  display: inline-block;
  margin-top: 100px;
}
/* line 114, ../sass/_contacto.scss */
.contacto #contacto2 .parte2 .logo img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
/* line 119, ../sass/_contacto.scss */
.contacto #contacto2 .parte2 .logo p {
  text-align: center;
  margin-top: 10px;
  width: 75%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.90em;
}
/* line 128, ../sass/_contacto.scss */
.contacto #contacto2 .parte2 p {
  color: black !important;
  margin-top: 45px;
  margin-bottom: 55px;
}
/* line 134, ../sass/_contacto.scss */
.contacto #contacto2 h2 {
  text-align: center;
  padding-bottom: 10px;
  padding-top: 10px;
}

/* line 1, ../sass/_hexagono.scss */
.containerHexagono {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 65.66667%;
  margin-left: 17.16667%;
  margin-right: 3%;
  padding-top: 100px;
  /*#categories{
    overflow:hidden;
    width:90%;
  }*/
  /*.clr:after{
    content:"";
    display:block;
    clear:both;
  }*/
  /*#categories li{
    position:relative;
    list-style-type:none;
    width:27.85714285714286%; /* = (100-2.5) / 3.5 */
  /*float:left;
  //overflow:hidden;
  visibility:hidden;
  -webkit-transform: rotate(-60deg) skewY(30deg);
  -ms-transform: rotate(-60deg) skewY(30deg);
  transform: rotate(-60deg) skewY(30deg);
}*/
    /*#categories li:nth-child(3n+2){
      margin:0 1%;
    }
    #categories li:nth-child(6n+4){
      margin-left:0.5%;
    }
    #categories li:nth-child(6n+4), #categories li:nth-child(6n+5), #categories li:nth-child(6n+6) {
        margin-top: -6.9285714285%;
      margin-bottom: -6.9285714285%;

      -webkit-transform: translateX(50%) rotate(-60deg) skewY(30deg);
      -ms-transform: translateX(50%) rotate(-60deg) skewY(30deg);
      transform: translateX(50%) rotate(-60deg) skewY(30deg);
    }
    #categories li:nth-child(6n+4):last-child, #categories li:nth-child(6n+5):last-child, #categories li:nth-child(6n+6):last-child{
      margin-bottom:0%;
    }
    #categories li *{
      position:absolute;
      visibility:visible;
    }
    #categories li > div{
      width:100%;
      height:100%;
      text-align:center;
      color:#fff;
      overflow:hidden;

      -webkit-transform: skewY(-30deg) rotate(60deg);
      -ms-transform: skewY(-30deg) rotate(60deg);
      transform: skewY(-30deg) rotate(60deg);

        -webkit-backface-visibility:hidden;

    }*/
  /* HEX CONTENT */
  /*#categories li img{
    left:-100%; right:-100%;
    width: auto; height:100%;
    margin:0 auto;
    transform: scale(0.70);
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0) scale(0.7);
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    cursor:pointer;
  }*/
    /*#categories div h1, #categories div p{
      width:90%;
      padding:0 5%;
      background-color:#008080; background-color: rgba(0, 128, 128, 0.8);
      font-family: 'Raleway', sans-serif;

      -webkit-transition: top .2s ease-out, bottom .2s ease-out, .2s padding .2s ease-out;
      -ms-transition: top .2s ease-out, bottom .2s ease-out, .2s padding .2s ease-out;
      transition: top .2s ease-out, bottom .2s ease-out, .2s padding .2s ease-out;
    }
    #categories li h1{
      bottom:110%;
      font-style:italic;
      font-weight:normal;
      font-size:1.5em;
      padding-top:100%;
      padding-bottom:100%;
    }
    #categories li h1:after{
        content:'';
      display:block;
      position:absolute;
      bottom:-1px; left:45%;
      width:10%;
      text-align:center;
      z-index:1;
      border-bottom:2px solid #fff;
    }
    #categories li p{
        padding-top:50%;
        top:110%;
        padding-bottom:50%;
    }*/
  /* HOVER EFFECT  */
  /*#categories li img{
    &:hover{
        transform: scale(0.90);
        -webkit-backface-visibility: hidden;
        -webkit-transform: translateZ(0) scale(0.9);
    }
  }*/
  /*#categories li div:hover h1 {
    bottom:50%;
    padding-bottom:10%;
  } s
  */
  /*categories li div:hover p{
    top:50%;
    padding-top:10%;
  }*/
  /*.caption{
      transform: rotate(45deg) scaleX(0.5) skewY(2deg) skewX(3deg);
      font-size: 2em;
      color: white;
  }*/
}
/* line 360, ../jeet/_grid.scss */
.containerHexagono:before, .containerHexagono:after {
  content: '';
  display: table;
}
/* line 365, ../jeet/_grid.scss */
.containerHexagono:after {
  clear: both;
}
/* line 58, ../jeet/_grid.scss */
.containerHexagono:last-child {
  margin-right: 0%;
}
/* line 4, ../sass/_hexagono.scss */
.containerHexagono .derecha {
  left: 150%;
}
/* line 6, ../sass/_hexagono.scss */
.containerHexagono .derecha:before {
  right: calc(100% + 5px);
}
/* line 10, ../sass/_hexagono.scss */
.containerHexagono .izquierda {
  right: 150%;
}
/* line 12, ../sass/_hexagono.scss */
.containerHexagono .izquierda:before {
  left: calc(100% + 5px);
}
/* line 17, ../sass/_hexagono.scss */
.containerHexagono .small:before {
  width: 415% !important;
}
/* line 21, ../sass/_hexagono.scss */
.containerHexagono .caption {
  font-family: 'futuraextendedregular';
  position: absolute;
  white-space: pre;
  color: white;
  bottom: 24.5%;
  width: auto;
  z-index: -1;
}
/* line 29, ../sass/_hexagono.scss */
.containerHexagono .caption:before {
  z-index: 9;
  content: '';
  position: absolute;
  background-color: white;
  width: 320%;
  height: 2px;
  bottom: 3px;
}
/* line 39, ../sass/_hexagono.scss */
.containerHexagono .parte {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 33.33333%;
  margin-left: 0%;
  margin-right: 0%;
  margin-top: -60px;
  position: relative;
  transform: scale(0.7);
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0) scale(0.7);
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
  cursor: pointer;
}
/* line 360, ../jeet/_grid.scss */
.containerHexagono .parte:before, .containerHexagono .parte:after {
  content: '';
  display: table;
}
/* line 365, ../jeet/_grid.scss */
.containerHexagono .parte:after {
  clear: both;
}
/* line 58, ../jeet/_grid.scss */
.containerHexagono .parte:last-child {
  margin-right: 0%;
}
/* line 50, ../sass/_hexagono.scss */
.containerHexagono .parte:hover {
  transform: scale(0.9);
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0) scale(0.9);
}
/* line 55, ../sass/_hexagono.scss */
.containerHexagono .parte img {
  z-index: 11;
}
/* line 59, ../sass/_hexagono.scss */
.containerHexagono .esquina {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 31.33333%;
  margin-left: 17.16667%;
  margin-right: 3%;
}
/* line 360, ../jeet/_grid.scss */
.containerHexagono .esquina:before, .containerHexagono .esquina:after {
  content: '';
  display: table;
}
/* line 365, ../jeet/_grid.scss */
.containerHexagono .esquina:after {
  clear: both;
}
/* line 50, ../jeet/_grid.scss */
.containerHexagono .esquina:nth-of-type(3n) {
  margin-right: 0%;
  float: right;
}
/* line 54, ../jeet/_grid.scss */
.containerHexagono .esquina:nth-of-type(3n + 1) {
  clear: both;
}
/* line 62, ../sass/_hexagono.scss */
.containerHexagono .masInfo {
  margin-bottom: 40px;
  margin-top: 50px;
}
/* line 65, ../sass/_hexagono.scss */
.containerHexagono .masInfo .info {
  color: white;
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 22.75%;
  margin-left: 0%;
  margin-right: 3%;
  text-align: center;
}
/* line 360, ../jeet/_grid.scss */
.containerHexagono .masInfo .info:before, .containerHexagono .masInfo .info:after {
  content: '';
  display: table;
}
/* line 365, ../jeet/_grid.scss */
.containerHexagono .masInfo .info:after {
  clear: both;
}
/* line 50, ../jeet/_grid.scss */
.containerHexagono .masInfo .info:nth-of-type(4n) {
  margin-right: 0%;
  float: right;
}
/* line 54, ../jeet/_grid.scss */
.containerHexagono .masInfo .info:nth-of-type(4n + 1) {
  clear: both;
}

/* line 1, ../sass/_footer.scss */
.footer {
  background: white;
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
}
/* line 6, ../sass/_footer.scss */
.footer .logo {
  display: inline-block;
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 14.16667%;
  margin-left: 8.58333%;
  margin-right: 3%;
  /*margin-left: auto;
  margin-right: auto;*/
}
/* line 360, ../jeet/_grid.scss */
.footer .logo:before, .footer .logo:after {
  content: '';
  display: table;
}
/* line 365, ../jeet/_grid.scss */
.footer .logo:after {
  clear: both;
}
/* line 58, ../jeet/_grid.scss */
.footer .logo:last-child {
  margin-right: 0%;
}
/* line 12, ../sass/_footer.scss */
.footer .logo img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 30%;
}
/* line 17, ../sass/_footer.scss */
.footer .braigo {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 14.16667%;
  margin-left: 17.16667%;
  margin-right: 3%;
}
/* line 360, ../jeet/_grid.scss */
.footer .braigo:before, .footer .braigo:after {
  content: '';
  display: table;
}
/* line 365, ../jeet/_grid.scss */
.footer .braigo:after {
  clear: both;
}
/* line 58, ../jeet/_grid.scss */
.footer .braigo:last-child {
  margin-right: 0%;
}
/* line 19, ../sass/_footer.scss */
.footer .braigo img {
  width: 25%;
}
/* line 23, ../sass/_footer.scss */
.footer .aviso {
  color: black;
  font-size: 0.72em;
  padding-top: 5px;
  padding-bottom: 5px;
  text-align: left;
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 14.16667%;
  margin-left: 17.16667%;
  margin-right: 3%;
}
/* line 360, ../jeet/_grid.scss */
.footer .aviso:before, .footer .aviso:after {
  content: '';
  display: table;
}
/* line 365, ../jeet/_grid.scss */
.footer .aviso:after {
  clear: both;
}
/* line 58, ../jeet/_grid.scss */
.footer .aviso:last-child {
  margin-right: 0%;
}

/* line 17, ../sass/styles.scss */
.slick-prev:before,
.slick-next:before {
  color: white !important;
}

/* line 21, ../sass/styles.scss */
.anchor {
  display: block;
  position: relative;
  top: -124px;
  visibility: hidden;
}

@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  /* line 4, ../sass/_responsive.scss */
  .header .noMovible {
    display: none !important;
  }

  /* line 7, ../sass/_responsive.scss */
  .homeScroll .logo img {
    max-width: 128%;
    margin-left: -13%;
  }

  /* line 11, ../sass/_responsive.scss */
  .header .logo img {
    max-width: 100%;
  }

  /* line 15, ../sass/_responsive.scss */
  .footer .logo {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 31.33333%;
    margin-left: 0%;
    margin-right: 3%;
  }
  /* line 360, ../jeet/_grid.scss */
  .footer .logo:before, .footer .logo:after {
    content: '';
    display: table;
  }
  /* line 365, ../jeet/_grid.scss */
  .footer .logo:after {
    clear: both;
  }
  /* line 50, ../jeet/_grid.scss */
  .footer .logo:nth-of-type(3n) {
    margin-right: 0%;
    float: right;
  }
  /* line 54, ../jeet/_grid.scss */
  .footer .logo:nth-of-type(3n + 1) {
    clear: both;
  }
  /* line 18, ../sass/_responsive.scss */
  .footer .braigo {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 31.33333%;
    margin-left: 0%;
    margin-right: 3%;
  }
  /* line 360, ../jeet/_grid.scss */
  .footer .braigo:before, .footer .braigo:after {
    content: '';
    display: table;
  }
  /* line 365, ../jeet/_grid.scss */
  .footer .braigo:after {
    clear: both;
  }
  /* line 50, ../jeet/_grid.scss */
  .footer .braigo:nth-of-type(3n) {
    margin-right: 0%;
    float: right;
  }
  /* line 54, ../jeet/_grid.scss */
  .footer .braigo:nth-of-type(3n + 1) {
    clear: both;
  }
  /* line 21, ../sass/_responsive.scss */
  .footer .aviso {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 31.33333%;
    margin-left: 0%;
    margin-right: 3%;
  }
  /* line 360, ../jeet/_grid.scss */
  .footer .aviso:before, .footer .aviso:after {
    content: '';
    display: table;
  }
  /* line 365, ../jeet/_grid.scss */
  .footer .aviso:after {
    clear: both;
  }
  /* line 50, ../jeet/_grid.scss */
  .footer .aviso:nth-of-type(3n) {
    margin-right: 0%;
    float: right;
  }
  /* line 54, ../jeet/_grid.scss */
  .footer .aviso:nth-of-type(3n + 1) {
    clear: both;
  }

  /* line 27, ../sass/_responsive.scss */
  #home .somos .texto {
    display: block;
    clear: both;
    float: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  /* line 265, ../jeet/_grid.scss */
  #home .somos .texto:first-child {
    margin-left: auto;
  }
  /* line 269, ../jeet/_grid.scss */
  #home .somos .texto:last-child {
    margin-right: auto;
  }
  /* line 31, ../sass/_responsive.scss */
  #home .somos .imagen {
    display: block;
    clear: both;
    float: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  /* line 265, ../jeet/_grid.scss */
  #home .somos .imagen:first-child {
    margin-left: auto;
  }
  /* line 269, ../jeet/_grid.scss */
  #home .somos .imagen:last-child {
    margin-right: auto;
  }
  /* line 37, ../sass/_responsive.scss */
  #home .masInfo .info {
    display: block;
    clear: both;
    float: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
  }
  /* line 265, ../jeet/_grid.scss */
  #home .masInfo .info:first-child {
    margin-left: auto;
  }
  /* line 269, ../jeet/_grid.scss */
  #home .masInfo .info:last-child {
    margin-right: auto;
  }
  /* line 42, ../sass/_responsive.scss */
  #home .containerHexagono .caption:before {
    width: 100%;
  }
  /* line 45, ../sass/_responsive.scss */
  #home .servicio .mitadServicios h2 {
    font-size: 2.5em;
  }
  /* line 48, ../sass/_responsive.scss */
  #home .promociones .amigo .parteuno {
    display: block;
    clear: both;
    float: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  /* line 265, ../jeet/_grid.scss */
  #home .promociones .amigo .parteuno:first-child {
    margin-left: auto;
  }
  /* line 269, ../jeet/_grid.scss */
  #home .promociones .amigo .parteuno:last-child {
    margin-right: auto;
  }
  /* line 52, ../sass/_responsive.scss */
  #home .promociones .amigo .partedos {
    display: block;
    clear: both;
    float: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  /* line 265, ../jeet/_grid.scss */
  #home .promociones .amigo .partedos:first-child {
    margin-left: auto;
  }
  /* line 269, ../jeet/_grid.scss */
  #home .promociones .amigo .partedos:last-child {
    margin-right: auto;
  }
  /* line 55, ../sass/_responsive.scss */
  #home .contacto #contacto2 .movil {
    display: block;
    clear: both;
    float: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  /* line 265, ../jeet/_grid.scss */
  #home .contacto #contacto2 .movil:first-child {
    margin-left: auto;
  }
  /* line 269, ../jeet/_grid.scss */
  #home .contacto #contacto2 .movil:last-child {
    margin-right: auto;
  }
  /* line 58, ../sass/_responsive.scss */
  #home .promociones .cupon .caption {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 48.5%;
    margin-left: 25.75%;
    margin-right: 3%;
  }
  /* line 360, ../jeet/_grid.scss */
  #home .promociones .cupon .caption:before, #home .promociones .cupon .caption:after {
    content: '';
    display: table;
  }
  /* line 365, ../jeet/_grid.scss */
  #home .promociones .cupon .caption:after {
    clear: both;
  }
  /* line 58, ../jeet/_grid.scss */
  #home .promociones .cupon .caption:last-child {
    margin-right: 0%;
  }
  /* line 60, ../sass/_responsive.scss */
  #home .promociones .cupon .caption img {
    width: 100%;
  }

  /* line 65, ../sass/_responsive.scss */
  html, body {
    font-size: 30px;
  }

  /* line 68, ../sass/_responsive.scss */
  .slicknav_menu {
    display: block;
  }

  /* line 71, ../sass/_responsive.scss */
  #desktopMenu {
    display: none;
  }

  /* line 74, ../sass/_responsive.scss */
  .contenedor23 {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 82.83333%;
    margin-left: 8.58333%;
    margin-right: 3%;
  }
  /* line 360, ../jeet/_grid.scss */
  .contenedor23:before, .contenedor23:after {
    content: '';
    display: table;
  }
  /* line 365, ../jeet/_grid.scss */
  .contenedor23:after {
    clear: both;
  }
  /* line 58, ../jeet/_grid.scss */
  .contenedor23:last-child {
    margin-right: 0%;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  /* STYLES GO HERE */
  /* line 82, ../sass/_responsive.scss */
  .homeScroll {
    background-attachment: scroll !important;
  }

  /* line 85, ../sass/_responsive.scss */
  .separador {
    background-attachment: scroll !important;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  /* STYLES GO HERE */
  /* line 93, ../sass/_responsive.scss */
  .homeScroll .botellas img {
    width: 90%;
  }

  /* line 97, ../sass/_responsive.scss */
  .homeScroll .logo {
    margin-top: 5%;
  }
  /* line 99, ../sass/_responsive.scss */
  .homeScroll .logo p {
    width: 75%;
    font-size: 2.65em;
  }
  /* line 103, ../sass/_responsive.scss */
  .homeScroll .logo img {
    width: 75%;
  }

  /* line 110, ../sass/_responsive.scss */
  #home .consejo img {
    width: 50%;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  /* line 120, ../sass/_responsive.scss */
  #alcance .separador .titulo {
    left: 1%;
  }

  /* line 123, ../sass/_responsive.scss */
  #contactoSeccion {
    background-attachment: scroll !important;
  }

  /* line 126, ../sass/_responsive.scss */
  #alcance {
    background-attachment: scroll !important;
  }

  /* line 129, ../sass/_responsive.scss */
  .header .menu {
    padding-bottom: 30px;
  }

  /* line 132, ../sass/_responsive.scss */
  #contacto {
    font-size: 1.5em;
  }
  /* line 133, ../sass/_responsive.scss */
  #contacto .formContacto {
    width: 90%;
  }

  /* line 138, ../sass/_responsive.scss */
  .homeScroll {
    background-attachment: scroll !important;
  }

  /* line 141, ../sass/_responsive.scss */
  .separador {
    background-attachment: scroll !important;
  }

  /* line 145, ../sass/_responsive.scss */
  .footer .logo {
    display: inline-block;
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 31.33333%;
    margin-left: 12.875%;
    margin-right: 3%;
  }
  /* line 360, ../jeet/_grid.scss */
  .footer .logo:before, .footer .logo:after {
    content: '';
    display: table;
  }
  /* line 365, ../jeet/_grid.scss */
  .footer .logo:after {
    clear: both;
  }
  /* line 58, ../jeet/_grid.scss */
  .footer .logo:last-child {
    margin-right: 0%;
  }
  /* line 149, ../sass/_responsive.scss */
  .footer .braigo {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 31.33333%;
    margin-left: 12.875%;
    margin-right: 3%;
  }
  /* line 360, ../jeet/_grid.scss */
  .footer .braigo:before, .footer .braigo:after {
    content: '';
    display: table;
  }
  /* line 365, ../jeet/_grid.scss */
  .footer .braigo:after {
    clear: both;
  }
  /* line 58, ../jeet/_grid.scss */
  .footer .braigo:last-child {
    margin-right: 0%;
  }
  /* line 152, ../sass/_responsive.scss */
  .footer .aviso {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 85.28571%;
    margin-left: 7.35714%;
    margin-right: 3%;
  }
  /* line 360, ../jeet/_grid.scss */
  .footer .aviso:before, .footer .aviso:after {
    content: '';
    display: table;
  }
  /* line 365, ../jeet/_grid.scss */
  .footer .aviso:after {
    clear: both;
  }
  /* line 58, ../jeet/_grid.scss */
  .footer .aviso:last-child {
    margin-right: 0%;
  }
}
