/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *		without disabling user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* HTML5 display definitions
	 ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

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

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

/* Links
	 ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */
a:active,
a:hover {
  outline: 0;
}

/* Text-level semantics
	 ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

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

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
	 ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
	 ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
	 ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *		Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}

/**
 * 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 Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
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.
 */
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.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

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

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

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type='checkbox'],
input[type='radio'] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type='number']::-webkit-inner-spin-button,
input[type='number']::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
 */
input[type='search'] {
  -webkit-appearance: textfield;
  /* 1 */
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  /* 2 */
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type='search']::-webkit-search-cancel-button,
input[type='search']::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
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/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

/* Tables
	 ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

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

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

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

ul {
  margin: 0;
  padding: 0;
}

/*! Lity - v2.2.2 - 2017-07-17
* http://sorgalla.com/lity/
* Copyright (c) 2015-2017 Jan Sorgalla; Licensed MIT */
.lity {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  white-space: nowrap;
  background: #0b0b0b;
  background: rgba(0, 0, 0, 0.65);
  outline: none !important;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.lity.lity-opened {
  opacity: 1;
}

.lity.lity-closed {
  opacity: 0;
}

.lity * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.lity-wrap {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
  outline: none !important;
}

.lity-wrap:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
}

.lity-loader {
  z-index: 9991;
  color: #fff;
  position: absolute;
  top: 50%;
  margin-top: -0.8em;
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
  opacity: 0;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}

.lity-loading .lity-loader {
  opacity: 1;
}

.lity-container {
  z-index: 9992;
  position: relative;
  text-align: left;
  vertical-align: middle;
  display: inline-block;
  white-space: normal;
  max-width: 100%;
  max-height: 100%;
  outline: none !important;
}

.rtl .lity-container {
  text-align: right;
}

.lity-content {
  z-index: 9993;
  width: 100%;
  -webkit-transform: scale(1) translateY(0);
          transform: scale(1) translateY(0);
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.lity-loading .lity-content,
.lity-closed .lity-content {
  -webkit-transform: scale(1) translateY(5vh);
          transform: scale(1) translateY(5vh);
}

.lity-content:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  -webkit-box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
          box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
}

.lity-close {
  z-index: 9994;
  width: 35px;
  height: 35px;
  position: fixed;
  right: 10px;
  top: 10px;
  -webkit-appearance: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  font-family: Arial, Baskerville, monospace;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border: 0;
  background: none;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.lity-close::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.lity-close:hover,
.lity-close:focus,
.lity-close:active,
.lity-close:visited {
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  font-family: Arial, Baskerville, monospace;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border: 0;
  background: none;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.lity-close:active {
  top: 11px;
}

/* Image */
.lity-image img {
  max-width: 100%;
  display: block;
  line-height: 0;
  border: 0;
}

/* iFrame */
.lity-iframe .lity-container,
.lity-youtube .lity-container,
.lity-vimeo .lity-container,
.lity-facebookvideo .lity-container,
.lity-googlemaps .lity-container {
  width: 100%;
  max-width: 964px;
}

.lity-iframe-container {
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  overflow: auto;
  pointer-events: auto;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-overflow-scrolling: touch;
}

.lity-iframe-container iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
          box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
  background: #000;
}

.lity-hide {
  display: none;
}

/**
 * Set up a decent box model on the root element
 */
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/*
body {
	background-image: repeating-linear-gradient(to bottom, transparent 0px, transparent 23px, red 23px, red 24px);
}
*/
/**
 * Make all elements from the DOM inherit from the parent box-sizing
 * Since `*` has a specificity of 0, it does not override the `html` value
 * making all elements inheriting from the root box-sizing value
 * See: https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/
 */
*, *::before, *::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

body {
  background-color: #ffffff;
  color: #212121;
  overflow-x: hidden;
}

body.rtl {
  direction: rtl;
}

body.menu-open {
  overflow: hidden;
}

@media (min-width: 960px) {
  body.menu-open {
    overflow-x: hidden;
    overflow-y: auto;
  }
}

body.modal-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

#wpadminbar {
  position: absolute !important;
}

a {
  color: #71c894;
}

a:hover {
  color: #3b9860;
}

/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  -webkit-clip-path: none;
          clip-path: none;
  color: #21759b;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  right: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/**
 * Basic typography style for copy text
 */
html {
  font-size: 16px;
}

body {
  font: 400 1rem/1.5625 "Rubik", helvetica, arial, sans-serif;
}

em,
i {
  font-style: italic;
}

strong,
b {
  font-weight: 700;
}

strong.peach,
b.peach {
  color: #ffa384;
}

a {
  outline: none;
  text-decoration: none;
}

a[href$='.jpg'], a[href$='.jpeg'], a[href$='.png'], a[href$='.gif'] {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

a:hover {
  color: #3b9860;
}

a:active {
  color: #ffa384;
  -webkit-transition-duration: 0s;
          transition-duration: 0s;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

.wysiwyg h1:not(:first-child),
.wysiwyg h2:not(:first-child),
.wysiwyg h3:not(:first-child),
.wysiwyg h4:not(:first-child),
.wysiwyg h5:not(:first-child),
.wysiwyg h6:not(:first-child),
.wysiwyg p:not(:first-child),
.wysiwyg ul:not(:first-child),
.wysiwyg ol:not(:first-child),
.wysiwyg table:not(:first-child),
.wysiwyg dl:not(:first-child),
.wysiwyg blockquote:not(:first-child),
.wysiwyg div:not(:first-child) {
  margin-top: 1.25rem;
}

.wysiwyg h1:not(:last-child),
.wysiwyg h2:not(:last-child),
.wysiwyg h3:not(:last-child),
.wysiwyg h4:not(:last-child),
.wysiwyg h5:not(:last-child),
.wysiwyg h6:not(:last-child),
.wysiwyg p:not(:last-child),
.wysiwyg ul:not(:last-child),
.wysiwyg ol:not(:last-child),
.wysiwyg table:not(:last-child),
.wysiwyg dl:not(:last-child),
.wysiwyg blockquote:not(:last-child),
.wysiwyg div:not(:last-child) {
  margin-bottom: 1.25rem;
}

.wysiwyg strong,
.wysiwyg b {
  font-weight: 500;
}

.wysiwyg h1,
.wysiwyg h2,
.wysiwyg h3,
.wysiwyg h4 {
  font: 400 1rem/1.25 "Poppins", helvetica, arial, sans-serif;
}

.wysiwyg h1:not(:first-child),
.wysiwyg h2:not(:first-child),
.wysiwyg h3:not(:first-child),
.wysiwyg h4:not(:first-child) {
  margin-top: 2.5rem;
}

.wysiwyg h1,
.wysiwyg h2 {
  font-size: 2rem;
}

.wysiwyg h3, .wysiwyg h4 {
  font-size: 1.625rem;
}

.wysiwyg h5,
.wysiwyg h6 {
  font-weight: 500;
}

.wysiwyg ul,
.wysiwyg ol {
  padding-left: 1.25em;
}

.rtl .wysiwyg ul, .rtl
.wysiwyg ol {
  padding: 0 1.25em 0 0;
}

.wysiwyg ul {
  list-style: disc;
}

.wysiwyg ol {
  list-style: decimal;
}

.wysiwyg li ol,
.wysiwyg li ul {
  margin: 0.75em 0;
}

.wysiwyg li:last-child > ol,
.wysiwyg li:last-child > ul {
  margin-bottom: 0;
}

.wysiwyg blockquote {
  padding-left: 1em;
  border-left: 0.25em solid #e4e4e4;
}

.rtl .wysiwyg blockquote {
  padding: 0 1em 0 0;
  border-left: none;
  border-right: 0.25em solid #e4e4e4;
}

.wysiwyg img {
  margin: 1.5rem auto;
  display: block;
}

@media (min-width: 540px) {
  .wysiwyg img.alignleft {
    float: left;
    margin-right: 1.5em;
    margin-bottom: 1em;
    max-width: 55%;
  }
  .wysiwyg img.alignright {
    float: right;
    margin-left: 1.5em;
    margin-bottom: 1em;
    max-width: 55%;
  }
}

.wysiwyg img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wysiwyg img.imageAlignCenter {
  width: 100%;
}

.wysiwyg figure > figcaption {
  margin-top: -1rem;
  font-size: 0.9em;
  color: #4e4e4e;
}

.wysiwyg .instagram-media {
  max-width: none !important;
  margin-left: auto;
  margin-right: auto;
}

.wysiwyg div:empty {
  display: none;
}

mark {
  background-color: rgba(113, 200, 148, 0.25);
  color: #212121;
}

.footnote {
  font-size: 0.6875rem;
  color: #8c8c8c;
  margin-top: 1.5em;
}

/**
 * Clear inner floats
 */
.clearfix::after, .card::after {
  clear: both;
  content: '';
  display: table;
}

/**
 * Main content containers
 * 1. Make the container full-width with a maximum width
 * 2. Center it in the viewport
 */
.container {
  margin-left: auto;
  /* 2 */
  margin-right: auto;
  /* 2 */
  width: 100%;
  /* 1 */
  padding: 0 24px;
  max-width: 528px;
  margin: 0 auto;
}

@media (min-width: 720px) {
  .container {
    max-width: 1072px;
  }
}

.container--post {
  padding-top: 48px;
  padding-bottom: 48px;
  background: #ffffff;
  position: relative;
  margin-top: -48px;
}

.container--list {
  padding: 0;
}

@media (min-width: 540px) {
  .container--list {
    padding: 0 24px;
  }
}

@media (min-width: 540px) {
  .container__pad {
    padding: 0 12px;
  }
}

/**
 * Hide text while making it readable for screen readers
 * 1. Needed in WebKit-based browsers because of an implementation bug;
 *		See: https://code.google.com/p/chromium/issues/detail?id=457146
 */
.hide-text {
  overflow: hidden;
  padding: 0;
  /* 1 */
  text-indent: 101%;
  white-space: nowrap;
}

/**
 * Hide element while making it readable for screen readers
 * Shamelessly borrowed from HTML5Boilerplate:
 * https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css#L119-L133
 */
.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

a,
button {
  -webkit-transition: all 0.25s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.25s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transition-property: background-color, border-color, border-width, color, opacity, -webkit-box-shadow, -webkit-transform;
  transition-property: background-color, border-color, border-width, color, opacity, -webkit-box-shadow, -webkit-transform;
  transition-property: background-color, border-color, border-width, box-shadow, color, transform, opacity;
  transition-property: background-color, border-color, border-width, box-shadow, color, transform, opacity, -webkit-box-shadow, -webkit-transform;
}

a path,
button path {
  -webkit-transition: fill 0.25s cubic-bezier(0.19, 1, 0.22, 1);
  transition: fill 0.25s cubic-bezier(0.19, 1, 0.22, 1);
}

.center {
  text-align: center;
}

.grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: -12px;
}

.grid > * {
  padding: 12px;
}

.grid--double-pad {
  margin: -24px;
}

.grid--double-pad > * {
  padding: 24px;
}

.grid--3 > *, .grid--3-2 > * {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

@media (min-width: 960px) {
  .grid--3 > *, .grid--3-2 > * {
    width: 33.33333% !important;
    max-width: none;
    margin: 0;
  }
}

@media (min-width: 720px) {
  .grid--3-2 > * {
    width: 50%;
  }
}

.grid--2 > * {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

@media (min-width: 720px) {
  .grid--2 > * {
    width: 50%;
  }
}

.grid--4 > * {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

@media (min-width: 540px) {
  .grid--4 > * {
    width: 50%;
  }
}

@media (min-width: 720px) {
  .grid--4 > * {
    width: 25%;
  }
}

.grid--left {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.grid--left > * {
  margin-left: 0;
}

.form {
  position: relative;
}

.form__loader, .form__loader::after {
  border-radius: 50%;
  width: 42px;
  height: 42px;
}

.form__loader {
  margin: -21px 0 0 -21px;
  position: absolute;
  text-indent: -9999em;
  border: 6px solid rgba(113, 200, 148, 0.2);
  border-left-color: #71c894;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-animation: textboxLoading 0.4s infinite linear;
          animation: textboxLoading 0.4s infinite linear;
  left: 50%;
  top: 50%;
  opacity: 1 !important;
}

.form--loading > * {
  opacity: 0.2;
}

.form__success {
  color: #71c894;
  font-size: 1.222em;
  margin-top: 1rem;
}

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

.form__success:empty {
  display: none;
}

.form__success path {
  fill: currentColor;
}

.textbox {
  position: relative;
  font-size: 1em;
  margin: 0.5em 0 0;
  padding: 1em 0 0;
}

.textbox__input {
  display: block;
  border: 0;
  border-bottom: 1px solid #8c8c8c;
  padding: 0.25em 0 0.5em;
  font-size: 1em;
  line-height: 1.2;
  outline: none;
  width: 100%;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background: none;
  border-radius: 0;
  height: 2em;
}

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

.textbox__input:focus {
  border-color: #71c894;
}

.textbox__input::-webkit-input-placeholder {
  color: inherit;
}

.textbox__input:-ms-input-placeholder {
  color: inherit;
}

.textbox__input::-ms-input-placeholder {
  color: inherit;
}

.textbox__input::placeholder {
  color: inherit;
}

.textbox__input:focus::-webkit-input-placeholder {
  color: rgba(140, 140, 140, 0.5);
}

.textbox__input:focus:-ms-input-placeholder {
  color: rgba(140, 140, 140, 0.5);
}

.textbox__input:focus::-ms-input-placeholder {
  color: rgba(140, 140, 140, 0.5);
}

.textbox__input:focus::placeholder {
  color: rgba(140, 140, 140, 0.5);
}

.textbox__input--textarea {
  line-height: 1.5;
  min-height: 2em;
}

.textbox__note {
  color: #8c8c8c;
  font-size: 0.6875rem;
  margin-top: 0.25em;
}

.textbox__label {
  position: absolute;
  display: block;
  width: 100%;
  top: 0;
  left: 0;
  display: block;
  font-size: 0.75em;
  color: #8c8c8c;
  opacity: 0;
  -webkit-transform: translateY(0.125em);
          transform: translateY(0.125em);
  -webkit-transition: opacity 0.25s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.25s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.25s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.25s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.25s cubic-bezier(0.19, 1, 0.22, 1), transform 0.25s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.25s cubic-bezier(0.19, 1, 0.22, 1), transform 0.25s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.25s cubic-bezier(0.19, 1, 0.22, 1);
}

.textbox__label--visible,
.textbox--active .textbox__label {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.textbox__loader, .textbox__loader::after {
  border-radius: 50%;
  width: 17px;
  height: 17px;
}

.textbox__loader {
  margin: 0;
  position: absolute;
  text-indent: -9999em;
  border: 3px solid rgba(113, 200, 148, 0.2);
  border-left-color: #71c894;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-animation: textboxLoading 0.4s infinite linear;
          animation: textboxLoading 0.4s infinite linear;
  left: 0;
  top: 1.25em;
}

.textbox--loading input, .textbox--loading select, .textbox--loading textarea {
  color: rgba(33, 33, 33, 0);
}

@-webkit-keyframes textboxLoading {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes textboxLoading {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.checkbox {
  font-size: 0.875rem;
  margin: 1em 0;
}

.checkbox__label {
  position: relative;
  text-indent: 1.375em;
  display: block;
  cursor: pointer;
}

.rtl .checkbox__label {
  padding-left: 0;
  padding-right: 1.375em;
}

.checkbox__label::before, .checkbox__label::after {
  -webkit-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
  cursor: pointer;
  content: '';
  display: block;
  position: absolute;
}

.checkbox__label::before {
  height: 1em;
  width: 1em;
  background: #ffffff;
  left: 0;
  top: 3px;
  border: 2px solid #8c8c8c;
}

.rtl .checkbox__label::before {
  right: 0;
  left: auto;
}

.checkbox__label::after {
  height: 0.9875em;
  width: 0.5875em;
  left: 0.25em;
  top: 0;
  border-bottom: 3px solid #71c894;
  border-right: 3px solid #71c894;
  -webkit-transform: scale(0) rotate(40deg);
          transform: scale(0) rotate(40deg);
  opacity: 0;
}

.rtl .checkbox__label::after {
  right: 0.25em;
  left: auto;
}

.checkbox--error .checkbox__label::before {
  border-color: #ffa384;
  -webkit-animation: checkboxPulse 1s linear infinite;
          animation: checkboxPulse 1s linear infinite;
}

.checkbox input {
  display: none;
}

input:checked + .checkbox__label::after {
  opacity: 1;
  -webkit-transform: scale(1) rotate(40deg);
          transform: scale(1) rotate(40deg);
}

.rtl input:checked + .checkbox__label::after {
  -webkit-transform: scale(-1, 1) rotate(40deg);
          transform: scale(-1, 1) rotate(40deg);
}

input:checked + .checkbox__label::before {
  opacity: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
}

@-webkit-keyframes checkboxPulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.125);
            transform: scale(1.125);
    border-color: #ff7d51;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes checkboxPulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.125);
            transform: scale(1.125);
    border-color: #ff7d51;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

select.textbox__input {
  outline: none;
  background: transparent url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAGCAYAAAD68A/GAAAAWklEQVQImYXKwQnCUBAE0LfEuxYRG4nV2NDvJpWkiRQgTC4/4R9EFwaWmQcN+ZMGE9YfaMVNErhj+4I2PJKQ5MQz9gHteF77+XS84NPzGrfq4LqqeqOStLE/AAM4R+8y8SyeAAAAAElFTkSuQmCC") no-repeat right 0.75em;
  padding-right: 13px;
}

.rtl select.textbox__input {
  background-position: left 0.75em;
}

.button, .input-container input[type="button"],
.input-container input[type="submit"] {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #71c894;
  color: #fff;
  font-size: 1rem;
  line-height: 1.25;
  padding: 0.5em 1.5rem;
  border: 0;
  margin: 2px 0;
  -webkit-transition: all 0.25s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.25s cubic-bezier(0.19, 1, 0.22, 1);
  outline: none;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  min-height: 2.25em;
}

.button:hover, .input-container input:hover[type="button"],
.input-container input:hover[type="submit"] {
  background: #4cba78;
  color: #fff;
}

.button:active, .input-container input:active[type="button"],
.input-container input:active[type="submit"] {
  background: #71c894;
  -webkit-transition-duration: 0s;
          transition-duration: 0s;
}

.button:disabled, .input-container input:disabled[type="button"],
.input-container input:disabled[type="submit"] {
  background: #8c8c8c;
  opacity: 0.5;
}

.button--block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  text-align: center;
  padding: 0.5em;
}

.button--block + .button--block {
  margin: 10px 0 0;
}

.button--orange {
  background: #ffa384;
}

.button--orange:hover {
  background: #ff7d51;
}

.button--orange:active {
  background: #ffa384;
}

.button--white {
  background: #ffffff;
  color: #212121;
}

.button--white:hover, .button--white:active {
  background: #ffffff;
  color: #71c894;
}

.button--facebook {
  background: #3b5998;
  color: #ffffff;
}

.button--facebook:hover, .button--facebook:active {
  background: #2d4373;
  color: #ffffff;
}

.button--link {
  padding: 0;
  line-height: inherit;
  background: none;
  color: #71c894;
}

.button--link:hover {
  background: none;
  color: #3b9860;
}

.button__label {
  padding: 0 0.125em;
}

.button__icon {
  padding: 0 0.125em;
  -webkit-transition: -webkit-transform 0.25s cubic-bezier(0.19, 1, 0.22, 1);
  transition: -webkit-transform 0.25s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.25s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.25s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.25s cubic-bezier(0.19, 1, 0.22, 1);
}

.button__icon svg {
  display: block;
  height: 1em;
  width: 1em;
  margin-top: -1px;
}

.button__icon svg path, .button__icon svg rect {
  fill: currentColor;
}

.button:not(:disabled):hover .button__icon:last-child, .input-container input:not(:disabled):hover[type="button"] .button__icon:last-child, .input-container input:not(:disabled):hover[type="submit"] .button__icon:last-child {
  -webkit-transform: translateX(0.25em);
          transform: translateX(0.25em);
}

.rtl .button:not(:disabled):hover .button__icon:last-child, .rtl .input-container input:not(:disabled):hover[type="button"] .button__icon:last-child, .input-container .rtl input:not(:disabled):hover[type="button"] .button__icon:last-child, .rtl .input-container input:not(:disabled):hover[type="submit"] .button__icon:last-child, .input-container .rtl input:not(:disabled):hover[type="submit"] .button__icon:last-child {
  -webkit-transform: translateX(-0.25em);
          transform: translateX(-0.25em);
}

.button:not(:disabled):hover .button__icon:first-child, .input-container input:not(:disabled):hover[type="button"] .button__icon:first-child, .input-container input:not(:disabled):hover[type="submit"] .button__icon:first-child {
  -webkit-transform: translateX(-0.25em);
          transform: translateX(-0.25em);
}

.rtl .button:not(:disabled):hover .button__icon:first-child, .rtl .input-container input:not(:disabled):hover[type="button"] .button__icon:first-child, .input-container .rtl input:not(:disabled):hover[type="button"] .button__icon:first-child, .rtl .input-container input:not(:disabled):hover[type="submit"] .button__icon:first-child, .input-container .rtl input:not(:disabled):hover[type="submit"] .button__icon:first-child {
  -webkit-transform: translateX(0.25em);
          transform: translateX(0.25em);
}

.header {
  height: 60px;
  line-height: 60px;
  background: #fff;
  position: -webkit-sticky;
  position: sticky;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 100;
}

.page-template-template-grocery-list .header {
  display: none;
}

@media (min-width: 960px) {
  .header {
    height: 80px;
    line-height: 80px;
  }
}

.header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 20px;
  max-width: 1064px;
  margin: 0 auto;
  height: 100%;
}

.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 14px;
}

.header__nav a {
  display: block;
  padding: 0 6.5px;
  white-space: nowrap;
  color: #4e4e4e;
  text-decoration: none;
  position: relative;
}

.header__nav a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 0;
  background: #71c894;
  opacity: 0;
  -webkit-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
}

.header__nav a:hover::after {
  height: 5px;
  opacity: 1;
}

.header__nav a:active::after {
  background: #3b9860;
  -webkit-transition-duration: 0s;
          transition-duration: 0s;
}

.header__nav .current_page_item a::after {
  height: 5px;
  opacity: 1;
}

.header__section {
  padding: 0 10px;
  height: 100%;
}

.header__section:first-child {
  padding-left: 0;
}

.header__section:last-child {
  padding-right: 0;
}

.header__section--title {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 12px 10px 12px 0;
}

@media (min-width: 960px) {
  .header__section--title {
    padding: 15px 10px 15px 0;
  }
}

.header__section--menu {
  display: none;
}

@media (min-width: 960px) {
  .header__section--menu {
    display: block;
  }
}

.header__section--search {
  width: 170px;
  position: relative;
  display: none;
}

@media (min-width: 960px) {
  .header__section--search {
    display: block;
  }
}

@media (min-width: 960px) {
  .header__section--trigger {
    display: none;
  }
}

.header__logo {
  height: 100%;
  width: 100%;
}

.header__logo a {
  display: block;
  height: 100%;
  position: relative;
  width: 100%;
}

.header__logo img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  height: auto;
  width: auto;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.header__veggie-burger {
  width: 25px;
  height: 100%;
  border: none;
  background: none;
  padding: 0;
  outline: 0;
  color: #8c8c8c;
}

.header__veggie-burger:hover {
  color: #71c894;
}

.header__veggie-burger span {
  position: relative;
}

.header__veggie-burger span, .header__veggie-burger span::before, .header__veggie-burger span::after {
  display: block;
  width: 24px;
  height: 3px;
  background-color: currentColor;
  -webkit-transition: background-color 0.125s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.125s cubic-bezier(0.19, 1, 0.22, 1);
  transition: background-color 0.125s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.125s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.125s cubic-bezier(0.19, 1, 0.22, 1), background-color 0.125s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.125s cubic-bezier(0.19, 1, 0.22, 1), background-color 0.125s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.125s cubic-bezier(0.19, 1, 0.22, 1);
}

.header__veggie-burger span::before, .header__veggie-burger span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
}

.header__veggie-burger span::before {
  -webkit-transform: translate(0, -8px);
          transform: translate(0, -8px);
}

.header__veggie-burger span::after {
  -webkit-transform: translate(0, 6px);
          transform: translate(0, 6px);
}

.menu-open .header__veggie-burger span {
  background-color: rgba(140, 140, 140, 0);
}

.menu-open .header__veggie-burger span::before {
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.menu-open .header__veggie-burger span::after {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}

.mobile-menu {
  position: fixed;
  background: #ffffff;
  width: 100%;
  top: 60px;
  height: calc(100% - 60px);
  overflow-y: auto;
  z-index: -1;
  -webkit-transform: translateY(-100px);
          transform: translateY(-100px);
  opacity: 0;
  -webkit-transition: opacity 0.25s cubic-bezier(0.19, 1, 0.22, 1), z-index 0s linear 0.25s, -webkit-transform 0.25s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.25s cubic-bezier(0.19, 1, 0.22, 1), z-index 0s linear 0.25s, -webkit-transform 0.25s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.25s cubic-bezier(0.19, 1, 0.22, 1), transform 0.25s cubic-bezier(0.19, 1, 0.22, 1), z-index 0s linear 0.25s;
  transition: opacity 0.25s cubic-bezier(0.19, 1, 0.22, 1), transform 0.25s cubic-bezier(0.19, 1, 0.22, 1), z-index 0s linear 0.25s, -webkit-transform 0.25s cubic-bezier(0.19, 1, 0.22, 1);
}

@media (min-width: 960px) {
  .mobile-menu {
    display: none !important;
  }
}

.menu-open .mobile-menu {
  z-index: 99;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  -webkit-transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1), transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1), transform 0.5s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.mobile-menu__search {
  padding: 30px;
  max-width: 550px;
  margin: auto;
}

.mobile-menu__menu {
  border-top: 1px solid #eee;
  padding: 30px 0;
  text-align: center;
}

.mobile-menu__menu ul {
  list-style: none;
}

.mobile-menu__menu li {
  display: block;
}

.mobile-menu__menu a {
  display: block;
  padding: 0.7em 25px;
  font-size: 1.125rem;
  text-transform: uppercase;
  font-weight: 500;
  color: #212121;
  border-left: 0 solid #71c894;
  border-right: 0 solid transparent;
}

.mobile-menu__menu a:hover {
  color: #71c894;
  border-left-width: 5px;
  border-right-width: 5px;
}

.mobile-menu__menu .current_page_item a {
  color: #71c894;
  border-left-width: 5px;
  border-right-width: 5px;
}

.mobile-menu .search {
  font-size: 16px;
}

.mobile-menu .search__input {
  padding-left: 1em;
  height: 3em;
  line-height: 3;
  border-radius: 1.5em;
}

.mobile-menu .search__submit {
  height: calc(3em + 2px);
  width: calc(3em + 2px);
}

.mobile-menu .search__submit svg {
  width: 18px;
  height: 18px;
}

.footer {
  padding: 48px 0;
}

.page-template-template-grocery-list .footer {
  display: none;
}

.footer__container {
  margin: -12px;
}

@media (min-width: 720px) {
  .footer__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: none;
  }
}

.footer__section {
  padding: 12px;
}

@media (min-width: 720px) {
  .footer__section {
    width: 33.33333%;
  }
}

.footer__nav ul {
  margin: 0;
  padding: 0;
  -webkit-columns: 2;
          columns: 2;
  line-height: 1;
  font-size: 0.875rem;
  text-transform: uppercase;
  font-weight: 500;
  vertical-align: top;
  display: block;
}

.footer__nav li {
  margin: 0;
  padding: 0;
  display: inline-block;
  width: 100%;
}

.footer__nav a {
  display: block;
  color: #8c8c8c;
  text-decoration: none;
  padding: 0.5rem 0;
}

.footer__nav a:hover {
  color: #71c894;
}

.footer__social a {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background: #8c8c8c;
  color: #fff;
  padding: 0.5rem;
  border-radius: 50%;
  margin-right: 4px;
}

.footer__social a:hover {
  background: #71c894;
}

.footer__social a svg {
  display: block;
  width: 1rem;
  height: 1rem;
}

.footer__social a path {
  fill: currentColor;
}

.search-form {
  position: relative;
  font-size: 16px;
}

@media (min-width: 960px) {
  .search-form {
    font-size: 12px;
  }
}

.header__section--search .search-form {
  height: 26px;
  top: 50%;
  width: 100%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.search-form__input {
  display: block;
  min-width: none;
  width: calc(90% - 2px);
  height: 2em;
  line-height: 2;
  font-size: inherit;
  border-radius: 1em;
  padding: 0 5%;
  border: 1px solid #ddd;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none;
}

.search-form__submit {
  background: #71c894;
  display: block;
  border: 0;
  border-radius: 50%;
  position: absolute;
  right: 0;
  top: 0;
  height: calc(2em + 2px);
  width: calc(2em + 2px);
  text-align: center;
  outline: none;
}

.rtl .search-form__submit {
  right: auto;
  left: 0;
}

.search-form__submit:hover {
  background: #4cba78;
}

.search-form__submit svg {
  height: 14px;
  width: 14px;
  display: block;
  margin: 0 auto;
}

.hero {
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: black;
  text-align: center;
  color: #fff;
  min-height: 320px;
  display: table;
  width: 100%;
  position: relative;
  padding: 50px 0;
}

@media (min-width: 720px) {
  .hero {
    height: 60vh;
    max-height: 570px;
  }
}

.hero::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  background: #000;
  opacity: 0.5;
  z-index: 1;
}

.hero--post::after, .hero:empty::after {
  display: none;
}

.hero--post {
  display: block;
  padding: 0;
}

.hero--post img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 0;
     object-position: 50% 0;
  width: 100%;
  height: 100%;
  max-width: none;
  min-height: 320px;
}

.hero__button {
  line-height: 1.625;
  font-weight: 500;
}

.hero__content {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero__title {
  font-weight: 500;
  text-transform: uppercase;
  font-size: 14px;
}

.hero__heading {
  margin: 0.67em 0;
  font-size: 28px;
  font-family: "Poppins", helvetica, arial, sans-serif;
  line-height: 1.375;
}

@media (min-width: 720px) {
  .hero__heading {
    font-size: 40px;
  }
}

.hero__title, .hero__heading {
  width: 82%;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 720px) {
  .hero__title, .hero__heading {
    width: 62%;
  }
}

.hero__play {
  color: #fff;
  display: block;
  margin: 5.25% auto 0;
  width: 45px;
  height: 45px;
  opacity: 0.8;
}

.hero__play:hover {
  opacity: 1;
}

.hero__play svg {
  width: 100%;
  display: block;
  margin: 0 auto;
}

.hero__play path {
  fill: currentColor;
}

@media (min-width: 720px) {
  .hero__play {
    width: 70px;
    height: 70px;
  }
}

.hero__form {
  background: #ffffff;
  color: #212121;
  padding: 50px;
}

.hero__form .search-form {
  max-width: 480px;
  margin: 1.5rem auto 0;
  font-size: 16px;
}

.link-card {
  text-align: center;
  display: block;
  text-decoration: none;
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (min-width: 720px) {
  .link-card {
    -webkit-transition: all 0s cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 0s cubic-bezier(0.19, 1, 0.22, 1);
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    transition-property: opacity, transform;
    transition-property: opacity, transform, -webkit-transform;
  }
  .link-card.js-animate-in[data-in-view-class] {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  .link-card--in-view.js-animate-in[data-in-view-class] {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-transition-duration: 1s;
            transition-duration: 1s;
  }
  .link-card--in-view.js-animate-in[data-in-view-class]:nth-child(3n + 2) {
    -webkit-transition-delay: 0.125s;
            transition-delay: 0.125s;
  }
  .link-card--in-view.js-animate-in[data-in-view-class]:nth-child(3n + 3) {
    -webkit-transition-delay: 0.25s;
            transition-delay: 0.25s;
  }
}

.link-card__image {
  height: 250px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.link-card__image img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: none;
  height: 100%;
  width: 100%;
}

.link-card__content {
  padding: 50px 10%;
  background: #ffffff;
  position: relative;
  margin: -36px 6% 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.link-card__title {
  color: #212121;
  font: 400 1.625rem/1.25 "Poppins", helvetica, arial, sans-serif;
  margin: 0;
}

@media (min-width: 540px) {
  .link-card__title {
    font-size: 2rem;
  }
}

@media (min-width: 720px) {
  .link-card__title {
    min-height: 2.5em;
  }
}

.link-card__text {
  color: #8c8c8c;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.link-card__text p, .link-card__text ul, .link-card__text ol {
  margin: 1rem 0 0;
}

.link-card__text ul, .link-card__text ol {
  text-align: left;
  padding-left: 1.25em;
}

.rtl .link-card__text ul, .rtl .link-card__text ol {
  padding: 0 1.25em 0 0;
}

.link-card__text ul {
  list-style: disc;
}

.link-card__text ol {
  list-style: decimal;
}

.link-card__text li ol,
.link-card__text li ul {
  margin: 0.75em 0;
}

.link-card__text li:last-child > ol,
.link-card__text li:last-child > ul {
  margin-bottom: 0;
}

.link-card__button {
  background: #ffa384;
  display: block;
  color: #ffffff;
  padding: 0.5em 1.5em;
  line-height: 1.125;
  -webkit-transition: background-color 0.1s ease-out;
  transition: background-color 0.1s ease-out;
  margin: 1.5rem 0 0;
  text-align: center;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.link-card__button-text {
  padding: 0 0.125em;
}

.link-card__button-icon {
  padding: 0 0.125em;
  -webkit-transition: -webkit-transform 0.25s cubic-bezier(0.19, 1, 0.22, 1);
  transition: -webkit-transform 0.25s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.25s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.25s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.25s cubic-bezier(0.19, 1, 0.22, 1);
}

.link-card__button-icon svg {
  display: block;
  height: 0.875em;
  width: 0.875em;
}

.rtl .link-card__button-icon svg {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

.link-card:hover .link-card__button {
  background: #ff7d51;
}

.link-card:hover .link-card__button-icon {
  -webkit-transform: translateX(0.25em);
          transform: translateX(0.25em);
}

.rtl .link-card:hover .link-card__button-icon {
  -webkit-transform: translateX(-0.25em);
          transform: translateX(-0.25em);
}

@media (min-width: 720px) {
  .link-card--large {
    text-align: inherit;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .rtl .link-card--large {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .link-card--alt {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .rtl .link-card--alt {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .link-card--large .link-card__image {
    height: auto;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    width: 50%;
    -webkit-transition: all 0s cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 0s cubic-bezier(0.19, 1, 0.22, 1);
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    transition-property: opacity, transform;
    transition-property: opacity, transform, -webkit-transform;
  }
  .link-card--large .link-card__image.js-animate-in[data-in-view-class] {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  .link-card--large .link-card__image--in-view.js-animate-in[data-in-view-class] {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-transition-duration: 1s;
            transition-duration: 1s;
    -webkit-transition-delay: 0.25s;
            transition-delay: 0.25s;
  }
  .link-card--large .link-card__image img {
    height: auto;
    max-width: 100%;
    min-height: none;
    min-width: none;
    position: static;
    -webkit-transform: none;
            transform: none;
  }
  .link-card--large .link-card__title {
    min-height: 0;
  }
  .link-card--large .link-card__content {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    margin: 20px -30px 0 -30px;
    padding: 75px 30px;
    display: block;
    height: auto;
    min-height: none;
    width: 50%;
    -webkit-transition: all 0s cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 0s cubic-bezier(0.19, 1, 0.22, 1);
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    transition-property: opacity, transform;
    transition-property: opacity, transform, -webkit-transform;
  }
  .link-card--large .link-card__content.js-animate-in[data-in-view-class] {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  .link-card--large .link-card__content--in-view.js-animate-in[data-in-view-class] {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-transition-duration: 1s;
            transition-duration: 1s;
  }
  .link-card--large .link-card__button {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}

.page--basic {
  padding: 50px 0;
}

.page--basic .container {
  max-width: 50rem;
}

.page__title {
  font: 400 2.125rem/1.25 "Poppins", helvetica, arial, sans-serif;
  margin-bottom: 0.5em;
}

@media (min-width: 720px) {
  .page__title {
    font-size: 3rem;
  }
}

.page__title--archive {
  margin: 2rem 0;
}

@media (min-width: 720px) {
  .page__title--archive {
    font-size: 2.125rem;
  }
}

.pop-up {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: auto;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99999;
  /*
	.pop-up-content {
		width: 100%;
		text-align: center;
	}
*/
}

.pop-up .close-button {
  position: absolute;
  right: 0;
  top: -40px;
  z-index: 1000;
  color: #FFF;
  text-transform: uppercase;
  text-align: right;
  font-size: 30px;
  cursor: pointer;
}

.pop-up .closeButton .fa-close:before {
  content: "\f00d";
}

.pop-up .pop-up-container {
  position: absolute;
  top: 60px;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  background-position: 50% 100%;
}

@media (max-width: 770px) {
  .pop-up .pop-up-container {
    width: 80%;
    margin: auto auto;
  }
}

.pop-up .pop-up-image {
  width: auto;
  max-width: 100%;
}

/*
.mobile-pop-up {
	background: none;
	display: block;
	height: 130px;
	z-index: 11000;

	.banner-info .banner-button {
		color: #fff;
		cursor: pointer;
		display: block;
		font-size: 14px;
		font-weight: 700;
		margin: 0 auto;
		-moz-transition: all 0.3s ease 0s;
		-ms-transition: all 0.3s ease 0s;
		padding: 10px;
		text-align: center;
		text-decoration: none;
		text-transform: uppercase;
		transition: all 0.3s ease 0s;
		-webkit-transition: all 0.3s ease 0s;
		width: 200px;
		background-color: #c13636;
		@include respond-to(b-770) {
			padding-left: 130px;
			position: absolute;
			top: 50%;
			transform: translateY(-50%);
			width: 100%;
		}
		@include respond-to(b-470) {
			width: 165px;
		}
	}

	.pop-up-container {
		box-shadow: 0 0 6px #999;
		height: 0;
		left: 0;
		max-width: 100%;
		-moz-box-shadow: 0 0 6px #999;
		position: relative;
		top: 0;
		transform: translate(0, 0);
		-webkit-box-shadow: 0 0 6px #999;
		width: 100%;
	}

	.close-button {
		cursor: pointer;
		position: absolute;
		right: 5px;
		top: 5px;
		z-index: 1000;
		@include respond-to(b-770) {
			left: 10px;
		}
	}

	.close-text {
		display: none;
	}

	.banner-content {
		display: table;
		width: 100%;
	}

	.banner-image {
		left: 0;
		position: absolute;
		top: 0;
	}

	.banner-image, .banner-info {
		vertical-align: middle;
	}

	img {
		height: 130px;
		max-height: 130px;
		width: 130px;
		max-width: 130px;
	}

	.banner-info p {
		font-size: 14px;
		line-height: 16px;
		font-weight: 700;
		padding: 10px 0 25px;
		@include respond-to(b-470) {
			font-size: 12px;
			line-height: 14px;
			margin-bottom: 5px;
			padding: 0 10px 15px;
		}
	}

}
*/
.post__content {
  max-width: 40.875em;
  margin: 0 auto;
  padding: 3.75% 0 7.5%;
  min-height: 360px;
}

.post--listing .post__content {
  min-height: 0;
  padding: 20px 15px;
  margin: 0;
  background: #ffffff;
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

@media (min-width: 540px) {
  .post--listing .post__content {
    margin: -30px 20px 0;
  }
}

.post__type {
  text-transform: uppercase;
  color: #8c8c8c;
  font-size: 0.8125rem;
  line-height: 1;
  margin: 0 0 1.25em;
}

.post__title {
  font: 400 2.125rem/1.25 "Poppins", helvetica, arial, sans-serif;
}

@media (min-width: 720px) {
  .post__title {
    font-size: 3rem;
  }
}

.post--listing .post__title {
  font-size: 1.375rem;
  line-height: 1.36364;
  font-weight: 500;
  color: #212121;
  margin-top: 0 !important;
}

.post__excerpt {
  font-size: 0.875rem;
  color: #8c8c8c;
  margin: 0.625rem 0 1.25rem;
}

.post--listing {
  min-height: 100%;
  max-width: 480px;
  margin: 0 auto;
}

@media (min-width: 540px) {
  .post--listing {
    max-width: 480px;
  }
}

@media (min-width: 720px) {
  .post--listing {
    max-width: none;
    margin: 0;
  }
}

.post--listing article {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-bottom: 25px;
}

@media (min-width: 720px) {
  .post--listing article {
    border-bottom: 1px solid #ebebf0;
  }
}

.post--listing .post__image {
  height: 250px;
  width: 100%;
  background: #ebebf0;
}

.post--listing .post__image img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
  max-width: none;
}

.post__more {
  font-size: 0.875rem;
  text-transform: uppercase;
  position: absolute;
  left: 15px;
  bottom: 0;
}

.post__more::after {
  content: '>';
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  display: inline-block;
  margin-left: 0.25em;
  -webkit-transition: margin-left 0.25s cubic-bezier(0.19, 1, 0.22, 1);
  transition: margin-left 0.25s cubic-bezier(0.19, 1, 0.22, 1);
}

.post:hover .post__more::after {
  margin-left: 0.5em;
}

.post--sticky {
  display: block;
  max-width: 456px;
  margin: 0 auto;
}

@media (min-width: 540px) {
  .post--sticky {
    max-width: 504px;
  }
}

@media (min-width: 720px) {
  .post--listing {
    -webkit-transition: all 0s cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 0s cubic-bezier(0.19, 1, 0.22, 1);
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    transition-property: opacity, transform;
    transition-property: opacity, transform, -webkit-transform;
  }
  .post--listing.js-animate-in[data-in-view-class] {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  .post--listing--in-view.js-animate-in[data-in-view-class] {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-transition-duration: 1s;
            transition-duration: 1s;
  }
  .post--listing--in-view.js-animate-in[data-in-view-class]:nth-child(3n + 2) {
    -webkit-transition-delay: 0.125s;
            transition-delay: 0.125s;
  }
  .post--listing--in-view.js-animate-in[data-in-view-class]:nth-child(3n + 3) {
    -webkit-transition-delay: 0.25s;
            transition-delay: 0.25s;
  }
}

@media (min-width: 720px) {
  .post--sticky {
    min-height: 0;
    height: 570px;
    position: relative;
    width: 100%;
    display: block;
    margin: 0 0 50px;
    padding: 0;
    max-width: none;
  }
  .post--sticky article {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-bottom: 0;
  }
  .post--sticky .post__content {
    max-width: none;
    width: 510px;
    margin: 75px 0 0;
    padding: 30px;
    min-height: 0;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
  }
  .post--sticky .post__image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-position: center 15%;
  }
  .post--sticky .post__image img {
    -o-object-position: 50% 0;
       object-position: 50% 0;
  }
  .post--sticky .post__title {
    font-size: 2.125rem;
    line-height: 1.32;
  }
  .post--sticky .post__excerpt {
    max-width: 80%;
    margin-top: 0.625em;
    font-size: 1rem;
    line-height: 1.68;
    min-height: 5.5em;
  }
  .post--sticky .post__more {
    position: static;
  }
}

.post-list {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.navigation {
  max-width: 40.875em;
  margin: 0 auto 7.5% auto;
  border-bottom: 1px solid #eaeaea;
  border-top: 1px solid #eaeaea;
  padding: 30px 16px;
}

@media (min-width: 768px) {
  .navigation {
    padding: 30px 0;
  }
}

.navigation .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.navigation .nav-links .nav-previous {
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .navigation .nav-links {
    text-align: left;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .navigation .nav-links .nav-previous {
    margin-bottom: 0;
    max-width: 50%;
    padding-right: 14px;
  }
  .navigation .nav-links .nav-next {
    text-align: right;
    max-width: 50%;
    padding-left: 14px;
  }
}

.navigation .nav-links .nav-subtitle {
  display: block;
  color: #6e7c90;
  text-transform: uppercase;
}

.navigation .nav-links .nav-subtitle:hover, .navigation .nav-links .nav-subtitle:focus {
  color: #6e7c90;
}

.section {
  padding: 48px 0;
  overflow-x: hidden;
  position: relative;
  clear: both;
}

@media (min-width: 960px) {
  .section {
    padding: 72px 0;
  }
}

.section--white {
  background: #ffffff;
}

.section--white + .section--white {
  padding-top: 0;
}

.section--white:last-child {
  border-bottom: 1px solid #ebebf0;
}

.section--green {
  background: #d2efdd;
}

.section--green + .section--green {
  padding-top: 0;
}

.section--blue {
  background: #eaf7fd;
}

.section--blue + .section--blue {
  padding-top: 0;
}

.section--orange {
  background: #fff0ea;
}

.section--orange + .section--orange {
  padding-top: 0;
}

.section--rainbow {
  background: #d2efdd url(../images/pride-color-bar.jpg) repeat-y top center;
  background-size: 100% auto;
}

.section--rainbow + .section--rainbow {
  padding-top: 0;
}

.section--grey {
  background: #f5f5f8;
}

.section--grey + .section--grey {
  padding-top: 0;
}

.section--yellow {
  background: #fff3d6;
}

.section--yellow + .section--yellow {
  padding-top: 0;
}

.section > a[name]:empty {
  position: absolute;
  left: 50%;
  top: 0;
}

.section__header:not(:last-child) {
  margin-bottom: 24px;
}

.section__title {
  text-align: center;
  color: #212121;
  font: 400 1.625rem/1.25 "Poppins", helvetica, arial, sans-serif;
  margin: 0;
}

.section__title:not(:last-child) {
  margin-bottom: 1.25rem;
}

@media (min-width: 540px) {
  .section__title {
    font-size: 2rem;
  }
}

.section__text {
  text-align: center;
  font-size: 1.125rem;
  color: #8c8c8c;
  margin: 0 auto;
  max-width: 54em;
}

.section__text p:not(:first-child) {
  margin-top: 1.25rem;
}

.section__text:not(:last-child) {
  margin-bottom: 3.125rem;
}

.section__box {
  background: #fff;
  padding: 48px;
}

.vsg-card {
  padding: 50px 10%;
  position: relative;
  max-width: 480px;
  margin: 0 auto;
}

.rtl .vsg-card {
  text-align: right;
}

@media (min-width: 720px) {
  .vsg-card {
    padding: 10% 5%;
    max-width: none;
    -webkit-transition: opacity 0s cubic-bezier(0.19, 1, 0.22, 1);
    transition: opacity 0s cubic-bezier(0.19, 1, 0.22, 1);
  }
  .vsg-card.js-animate-in[data-in-view-class] {
    opacity: 0;
  }
  .vsg-card--in-view.js-animate-in[data-in-view-class] {
    opacity: 1;
    -webkit-transition-duration: 1s;
            transition-duration: 1s;
  }
}

.vsg-card::after {
  background: #ffffff;
  display: block;
  left: 0;
  top: 0;
  content: '';
  width: 100%;
  height: 100%;
  z-index: 0;
  position: absolute;
}

@media (min-width: 720px) {
  .vsg-card::after {
    margin-left: 5%;
  }
}

@media (min-width: 960px) {
  .vsg-card::after {
    margin-right: -5%;
  }
}

@media (min-width: 720px) {
  .rtl .vsg-card::after {
    margin-right: 5%;
  }
}

@media (min-width: 960px) {
  .rtl .vsg-card::after {
    margin-left: -5%;
  }
}

.vsg-card__image {
  margin: -65px auto 50px;
  max-width: 315px;
  position: relative;
  z-index: 1;
}

@media (min-width: 720px) {
  .vsg-card__image {
    position: absolute;
    right: 72%;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    margin: 0;
    max-width: none;
    height: 85%;
    -webkit-transition: all 0s cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 0s cubic-bezier(0.19, 1, 0.22, 1);
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    transition-property: opacity, transform;
    transition-property: opacity, transform, -webkit-transform;
  }
  .vsg-card__image.js-animate-in[data-in-view-class] {
    opacity: 0;
    -webkit-transform: translateY(-45%);
            transform: translateY(-45%);
  }
  .vsg-card__image--in-view.js-animate-in[data-in-view-class] {
    opacity: 1;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    -webkit-transition-duration: 1s;
            transition-duration: 1s;
    -webkit-transition-delay: 0.25s;
            transition-delay: 0.25s;
  }
  .rtl .vsg-card__image {
    right: auto;
    left: 72%;
  }
}

.vsg-card__image img {
  display: block;
  margin: 0 auto;
}

@media (min-width: 720px) {
  .vsg-card__image img {
    float: right;
    max-width: none;
    height: 100%;
    width: auto;
  }
  .rtl .vsg-card__image img {
    float: left;
  }
}

.vsg-card__content {
  position: relative;
  z-index: 1;
}

@media (min-width: 720px) {
  .vsg-card__content {
    margin-left: 32%;
    -webkit-transition: all 0s cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 0s cubic-bezier(0.19, 1, 0.22, 1);
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    transition-property: opacity, transform;
    transition-property: opacity, transform, -webkit-transform;
  }
  .vsg-card__content.js-animate-in[data-in-view-class] {
    opacity: 0;
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
  }
  .vsg-card__content--in-view.js-animate-in[data-in-view-class] {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    -webkit-transition-duration: 1s;
            transition-duration: 1s;
    -webkit-transition-delay: 0.125s;
            transition-delay: 0.125s;
  }
  .rtl .vsg-card__content {
    margin-left: 0;
    margin-right: 32%;
  }
}

.vsg-card__title {
  font: 500 1.625rem/1.25 "Poppins", helvetica, arial, sans-serif;
}

.vsg-card__title i {
  display: block;
}

@media (min-width: 720px) {
  .vsg-card__title {
    font-size: 2rem;
  }
}

.vsg-card__subtitle {
  font: 400 1.375rem/1.25 "Poppins", helvetica, arial, sans-serif;
  margin-top: 0.5em;
}

.vsg-card__button {
  margin-top: 1em;
}

.vsg-card__text {
  color: #8c8c8c;
  margin-top: 1em;
}

.vsg-card__text + .signup-form {
  margin-top: 1em;
}

.vsg-card__message {
  font-weight: 500;
  margin-top: 1em;
}

.vsg-card .signup-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (min-width: 720px) {
  .vsg-card .signup-form .input-container {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 50%;
  }
}

@media (min-width: 960px) {
  .vsg-card .signup-form .input-container {
    max-width: 25%;
  }
}

.newsletter-signup {
  font-size: 0.875rem;
  line-height: 1.5;
}

.newsletter-signup:not(:first-child) {
  margin-top: 2em;
}

.newsletter-signup__title {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 1em;
}

@media (min-width: 960px) {
  .newsletter-signup .signup-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.newsletter-signup .input-container {
  font-size: 0.875rem;
}

@media (min-width: 960px) {
  .newsletter-signup .input-container {
    width: 50%;
  }
}

.newsletter-signup__field {
  padding: 0;
  font-size: 0.875rem;
}

.newsletter-signup__field-group .newsletter-signup__field {
  padding: 0 12px;
}

.newsletter-signup__button {
  margin-top: 1em;
}

.newsletter-signup__submit {
  display: block;
  width: 100%;
}

@media (min-width: 720px) {
  .newsletter-signup__submit {
    display: inline-block;
    width: auto;
  }
}

.support {
  font-size: 0.875rem;
  line-height: 1.5;
}

.support__title {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 1em;
}

.support__logo {
  display: block;
  max-width: 200px;
  margin: 1em 0;
}

.support__text {
  margin: 0.5em 0 0;
}

.support a {
  text-transform: uppercase;
  color: #71c894;
  text-decoration: none;
}

.banner {
  text-align: center;
}

@media (min-width: 720px) {
  .banner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-width: none;
    margin: -12px;
    text-align: inherit;
  }
}

@media (min-width: 720px) {
  .banner__section {
    padding: 12px;
  }
}

.banner__section--text {
  font-size: 1.4375rem;
  line-height: 30/23;
}

.banner__section--text p {
  max-width: 32em;
}

.banner__section--cta {
  white-space: nowrap;
  padding-top: 12px;
}

.banner__section--cta .button, .banner__section--cta .input-container input[type="button"], .input-container .banner__section--cta input[type="button"],
.banner__section--cta .input-container input[type="submit"], .input-container .banner__section--cta input[type="submit"] {
  width: 100%;
  display: block;
}

@media (min-width: 720px) {
  .banner__section--cta .button, .banner__section--cta .input-container input[type="button"], .input-container .banner__section--cta input[type="button"],
  .banner__section--cta .input-container input[type="submit"], .input-container .banner__section--cta input[type="submit"] {
    width: auto;
    display: inline-block;
  }
}

.slider {
  position: relative;
}

.rtl .slider {
  direction: ltr;
}

.slider__tray {
  width: 99999em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  left: -22px;
}

.slider--store .slider__tray {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

.slider__viewport {
  width: 312px;
  overflow: hidden;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

@media (min-width: 720px) {
  .slider__viewport {
    width: 668px;
  }
}

@media (min-width: 1072px) {
  .slider__viewport {
    width: 1024px;
  }
}

.slider--store .slider__viewport {
  padding-top: 1%;
}

.slider__slide {
  width: 356px;
  margin: 0 22px;
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}

.slider__slide--info {
  display: block;
}

.slider__slide--info .button, .slider__slide--info .input-container input[type="button"], .input-container .slider__slide--info input[type="button"],
.slider__slide--info .input-container input[type="submit"], .input-container .slider__slide--info input[type="submit"] {
  position: absolute;
  top: 320px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  margin: 0;
  width: calc(100% - 100px);
  opacity: 0;
  -webkit-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

@media (min-width: 720px) {
  .slider__slide--store {
    width: 193.33333px;
  }
}

@media (min-width: 1072px) {
  .slider__slide--store {
    width: 223px;
  }
}

.slider__slide--store a {
  display: block;
}

@media (min-width: 720px) {
  .slider__slide {
    -webkit-transition: all 0s cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 0s cubic-bezier(0.19, 1, 0.22, 1);
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    transition-property: opacity, transform;
    transition-property: opacity, transform, -webkit-transform;
  }
  .slider__slide.js-animate-in[data-in-view-class] {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  .slider__slide--in-view.js-animate-in[data-in-view-class] {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-transition-duration: 1s;
            transition-duration: 1s;
  }
  .slider__slide--in-view.js-animate-in[data-in-view-class]:nth-child(2) {
    -webkit-transition-delay: 0.125s;
            transition-delay: 0.125s;
  }
  .slider__slide--in-view.js-animate-in[data-in-view-class]:nth-child(3) {
    -webkit-transition-delay: 0.25s;
            transition-delay: 0.25s;
  }
}

.slider__slide-info {
  font-size: 0.8125rem;
  text-align: center;
}

.slider__slide-button {
  margin: 1.5rem 0 0;
}

.slider__slide-image {
  height: 230px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.slider__slide-image img {
  display: block;
  max-width: none;
  width: auto;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.slider__slide-image--contain img {
  -o-object-fit: contain;
     object-fit: contain;
}

.slider__slide--store .slider__slide-image {
  height: auto;
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  transition: -webkit-transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transform-origin: 50% 100%;
          transform-origin: 50% 100%;
}

.slider__slide--store .slider__slide-image img {
  max-width: 100%;
  max-height: 350px;
  height: auto;
  width: auto;
  display: block;
  position: static;
  -webkit-transform: none;
          transform: none;
  margin: 0 auto;
}

.slider__slide--store:hover .slider__slide-image {
  -webkit-transform: scale(1.025);
          transform: scale(1.025);
}

.slider__slide--store .slider__slide-price {
  background: #d3d3d3;
  color: #ffffff;
  font-size: 1.75rem;
  padding: .5em 0;
  text-align: center;
  -webkit-transition: background-color 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  transition: background-color 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  line-height: 1;
  position: relative;
}

.slider__slide--store:hover .slider__slide-price {
  background-color: #71c894;
}

.slider__slide--info .slider__slide-image {
  height: 350px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.slider__slide--info .slider__slide-image img {
  display: none;
}

.slider__slide-title {
  font-size: 1.25rem;
  font-family: "Rubik", helvetica, arial, sans-serif;
  text-align: center;
  margin: 1.5rem 0 0;
  line-height: 1.2;
  height: 2.4em;
  color: #212121;
}

.slider__slide-subtitle {
  color: #ffa384;
  font-weight: 700;
  margin-bottom: -0.25em;
}

.slider__slide-text {
  font-size: 0.9375rem;
  color: #8c8c8c;
  margin-top: 0.25em;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.slider__slide-text > p {
  margin-top: 1.4em;
}

.slider__slide--info .slider__slide-text {
  position: absolute;
  height: 290px;
  width: 252px;
  background: #fff;
  overflow: auto;
  top: 30px;
  left: 30px;
  padding: 30px 20px;
  font-size: 1.0625rem;
  text-align: center;
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.slider__slide--info:hover .slider__slide-text,
.slider__slide--info:hover .button,
.slider__slide--info:hover .input-container input[type="button"],
.input-container .slider__slide--info:hover input[type="button"],
.slider__slide--info:hover .input-container input[type="submit"],
.input-container .slider__slide--info:hover input[type="submit"] {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}


.slider__slide--info:hover .button,
.slider__slide--info:hover .input-container input[type="button"],
.input-container .slider__slide--info:hover input[type="button"],
.slider__slide--info:hover .input-container input[type="submit"],
.input-container .slider__slide--info:hover input[type="submit"] {
  -webkit-transition-delay: 0.125s;
          transition-delay: 0.125s;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.slider__slide-footer {
  margin-top: 1.5rem;
}

.slider__nav-item {
  display: block;
  background: black;
  z-index: 4;
  position: absolute;
  top: 115px;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  left: 0;
  background: rgba(33, 33, 33, 0.75);
  color: #fff;
  width: 40px;
  height: 58px;
  cursor: pointer;
  overflow: hidden;
}

@media (min-width: 540px) {
  .slider__nav-item {
    width: 48px;
    height: 64px;
    left: 50% !important;
    right: auto !important;
  }
}

.slider__nav-item:hover {
  opacity: 0.85;
  color: #fff;
}

.slider__nav-item svg {
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
}

@media (min-width: 540px) {
  .slider__nav-item svg {
    width: 16px;
    height: 16px;
  }
}

.slider__nav-item path {
  fill: currentColor;
}

.slider__nav-item--prev {
  left: -24px;
}

.slider__nav-item--prev svg {
  -webkit-transform: translate(-50%, -50%) scale(-1, 1);
          transform: translate(-50%, -50%) scale(-1, 1);
}

@media (min-width: 540px) {
  .slider__nav-item--prev {
    margin-left: -156px;
    -webkit-transform: translate(-100%, -50%);
            transform: translate(-100%, -50%);
  }
}

@media (min-width: 720px) {
  .slider__nav-item--prev {
    margin-left: -334px;
  }
}

@media (min-width: 1072px) {
  .slider__nav-item--prev {
    margin-left: -512px;
  }
}

.slider__nav-item--next {
  left: calc(100% - 16px);
}

@media (min-width: 540px) {
  .slider__nav-item--next {
    margin-left: 156px;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
}

@media (min-width: 720px) {
  .slider__nav-item--next {
    margin-left: 334px;
  }
}

@media (min-width: 1072px) {
  .slider__nav-item--next {
    margin-left: 512px;
  }
}

.slider--store .slider__nav-item {
  top: 50%;
  margin-top: -32px;
}

.slider--info .slider__nav-item {
  top: 175px;
}

.slider--info-graphic .slider__nav-item {
  top: 50%;
}

.slider--info-graphic .slider__viewport {
  padding-top: 22px;
  padding-bottom: 22px;
}

.list-trigger {
  border: 0;
  padding: 0;
  display: block;
  background: none;
  width: 40px;
  margin: 0 -10px;
  padding: 0 8px;
  height: 100%;
  cursor: pointer;
  outline: none;
  position: relative;
  overflow: hidden;
}

.list-trigger:hover {
  color: #71c894;
  overflow: visible;
}

.list-trigger:hover[data-tooltip]::before {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: all 0.25s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.25s cubic-bezier(0.19, 1, 0.22, 1);
}

.list-trigger[data-tooltip]::before {
  content: attr(data-tooltip);
  display: block;
  position: absolute;
  background: #71c894;
  color: white;
  line-height: 1.5;
  font-size: 0.875rem;
  padding: 1em;
  right: 0;
  top: 100%;
  width: 200px;
  margin-top: -0.5em;
  opacity: 0;
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
}

.rtl .list-trigger[data-tooltip]::before {
  right: auto;
  left: 0;
}

.list-trigger svg {
  width: 100%;
  height: auto;
  vertical-align: middle;
  display: block;
}

.list-trigger path {
  fill: currentColor;
}

.list-trigger::after {
  content: "";
  background-color: #ffa384;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: block;
  position: absolute;
  top: 55%;
  right: 7px;
  -webkit-transition: -webkit-transform 0.25s cubic-bezier(0.19, 1, 0.22, 1);
  transition: -webkit-transform 0.25s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.25s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.25s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.25s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transform: scale(0);
          transform: scale(0);
  border: 2px solid #fff;
}

.rtl .list-trigger::after {
  right: auto;
  left: 7px;
}

.list-trigger--full::after {
  -webkit-transform: scale(1);
          transform: scale(1);
}

@media (min-width: 720px) {
  .card {
    padding-top: 40px;
  }
}

.card__title {
  font-family: "Poppins", helvetica, arial, sans-serif;
  font-size: 1.625rem;
  line-height: 1.25;
  margin: 0 0 1.25rem;
}

.card--grid .card__title,
.card--grid .card__footer {
  text-align: center;
}

@media (min-width: 720px) {
  .card--grid .card__title {
    min-height: 2.5em;
  }
}

@media (min-width: 720px) {
  .grid--4 .card__title {
    font-size: 1.5rem;
  }
}

@media (min-width: 540px) {
  .card--large .card__title {
    font-size: 2rem;
  }
}

.card__text {
  color: #8c8c8c;
}

.card__text > * {
  margin-bottom: 1.5em;
}

.card__image img {
  display: block;
  margin: 0 auto;
}

@media (min-width: 720px) {
  .card--large .card__image {
    float: left;
    width: 30%;
    margin-top: -40px;
    -webkit-transition: all 0s cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 0s cubic-bezier(0.19, 1, 0.22, 1);
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    transition-property: opacity, transform;
    transition-property: opacity, transform, -webkit-transform;
    position: relative;
    z-index: 2;
  }
  .card--large .card__image.js-animate-in[data-in-view-class] {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  .card--large .card__image--in-view.js-animate-in[data-in-view-class] {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-transition-duration: 1s;
            transition-duration: 1s;
    -webkit-transition-delay: 0.25s;
            transition-delay: 0.25s;
  }
}

@media (min-width: 720px) {
  .card--alternate .card__image {
    float: right;
  }
}

.card__content {
  background: #ffffff;
  padding: 30px 0;
  position: relative;
  z-index: 1;
}

.card--large .card__content {
  padding: 50px 10%;
}

@media (min-width: 720px) {
  .card--large .card__content {
    margin: 0 0 0 10%;
    position: static;
    padding: 7.8125% 10% 7.8125% 28%;
    -webkit-transition: all 0s cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 0s cubic-bezier(0.19, 1, 0.22, 1);
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    transition-property: opacity, transform;
    transition-property: opacity, transform, -webkit-transform;
  }
  .card--large .card__content.js-animate-in[data-in-view-class] {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  .card--large .card__content--in-view.js-animate-in[data-in-view-class] {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-transition-duration: 1s;
            transition-duration: 1s;
  }
}

@media (min-width: 720px) {
  .card--alternate .card__content {
    margin: 0 10% 0 0;
    padding-right: 28%;
    padding-left: 10%;
  }
}

.card--grid .card__content {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.card--grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100%;
}

.story__details {
  padding: 30px;
  width: 90vw;
  max-width: 100%;
  background: #fff;
  overflow: auto;
  max-height: 90vh;
}

@media (min-width: 720px) {
  .story__details {
    padding: 50px;
    width: 75vw;
  }
}

@media (min-width: 1072px) {
  .story__details {
    width: 55vw;
  }
}

.story__photo {
  display: block;
  margin: 0 auto 1em;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
}

.story__photo img {
  width: 100%;
  height: auto;
  min-height: 100%;
  display: block;
}

.story__title {
  font-size: 1.375rem;
  text-align: center;
  margin-bottom: 1em;
}

.story__text p:not(:last-child) {
  margin-bottom: 1.5em;
}

@media (min-width: 720px) {
  .story__text {
    background: #f5f5f8;
    border: 1px solid #ebebf0;
    padding: 5%;
  }
}

@media (min-width: 720px) {
  .story__preview {
    padding: 15px 0 0 30px;
  }
  .rtl .story__preview {
    padding-left: 0;
    padding-right: 30px;
  }
}

.story__preview-photo {
  float: left;
  width: 28%;
  margin: -15px 0 0 -15px;
}

.rtl .story__preview-photo {
  float: right;
  margin-left: 0;
  margin-right: -15px;
}

@media (min-width: 720px) {
  .story__preview-photo {
    margin-left: -30px;
  }
}

.story__preview-photo img {
  display: block;
  width: 100%;
}

.story__preview-content {
  background: #eaf7fd;
  padding: 20px;
  padding-left: 30%;
}

.rtl .story__preview-content {
  padding-left: 20px;
  padding-right: 30%;
}

@media (min-width: 720px) {
  .story__preview-content {
    padding-left: 28%;
  }
  .rtl .story__preview-content {
    padding-left: 20px;
    padding-right: 28%;
  }
}

.story__preview-text {
  color: #737272;
  margin: 0.5em 0 1.5em;
}

.story__preview-title {
  font-size: 1.375rem;
  margin: 0;
}

.stack-card {
  padding: 50px 0;
}

@media (min-width: 720px) {
  .stack-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    min-height: 450px;
  }
  .stack-card:nth-of-type(even), .stack-card--alt {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

@media (min-width: 720px) {
  .stack-card__images {
    width: 50%;
    position: relative;
  }
}

.stack-card__image {
  display: block;
  width: 100%;
  z-index: 1;
}

.stack-card__image:last-child {
  display: none;
}

@media (min-width: 720px) {
  .stack-card__image {
    position: absolute;
    max-height: 100%;
    max-width: 60%;
    width: auto;
    height: auto;
    -webkit-transition: all 0s cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 0s cubic-bezier(0.19, 1, 0.22, 1);
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    transition-property: opacity, transform;
    transition-property: opacity, transform, -webkit-transform;
  }
  .stack-card__image.js-animate-in[data-in-view-class] {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  .stack-card__image.in-view.js-animate-in[data-in-view-class] {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-transition-duration: 1s;
            transition-duration: 1s;
  }
  .stack-card__image.in-view.js-animate-in[data-in-view-class]:nth-child(2) {
    -webkit-transition-delay: 0.125s;
            transition-delay: 0.125s;
  }
  .stack-card__image.in-view.js-animate-in[data-in-view-class]:nth-child(3) {
    -webkit-transition-delay: 0.25s;
            transition-delay: 0.25s;
  }
  .stack-card__image:last-child {
    display: block;
  }
  .stack-card__image--top {
    top: -20px;
  }
  .stack-card__image--bottom {
    bottom: -20px;
  }
  .stack-card__image--left {
    left: 0;
  }
  .stack-card__image--right {
    right: 0;
  }
  .stack-card__image--front {
    z-index: 2;
  }
  .stack-card__image--back {
    z-index: 1;
  }
}

.stack-card__content {
  padding: 30px 0 0;
}

@media (min-width: 720px) {
  .stack-card__content {
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    min-height: 100%;
    width: 50%;
    padding: 0 10% 0 0;
    position: relative;
  }
  .rtl .stack-card__content {
    padding: 0 0 0 10%;
  }
  .stack-card:nth-of-type(even) .stack-card__content,
  .stack-card--alt .stack-card__content {
    padding-right: 0;
    padding-left: 10%;
  }
  .stack-card__content.js-animate-in[data-in-view-class] {
    opacity: 0;
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
  }
  .stack-card:nth-of-type(even) .stack-card__content.js-animate-in[data-in-view-class],
  .stack-card--alt .stack-card__content.js-animate-in[data-in-view-class] {
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
  }
  .stack-card__content--in-view.js-animate-in[data-in-view-class] {
    opacity: 1;
    -webkit-transform: translateX(0) !important;
            transform: translateX(0) !important;
    -webkit-transition-duration: 1s;
            transition-duration: 1s;
  }
}

.stack-card__text {
  color: #8c8c8c;
}

.stack-card__title {
  font-family: "Poppins", helvetica, arial, sans-serif;
  font-size: 1.625rem;
  line-height: 1.25;
  margin: 0 0 1.25rem;
}

@media (min-width: 540px) {
  .stack-card__title {
    font-size: 2rem;
  }
}

.video-card {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (min-width: 720px) {
  .video-card {
    -webkit-transition: all 0s cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 0s cubic-bezier(0.19, 1, 0.22, 1);
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    transition-property: opacity, transform;
    transition-property: opacity, transform, -webkit-transform;
    max-width: none !important;
  }
  .video-card.js-animate-in[data-in-view-class] {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  .video-card--in-view.js-animate-in[data-in-view-class] {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-transition-duration: 1s;
            transition-duration: 1s;
  }
  .video-card--in-view.js-animate-in[data-in-view-class]:nth-child(even) {
    -webkit-transition-delay: 0.125s;
            transition-delay: 0.125s;
  }
}

.video-card__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 1;
  padding: 77.77778% 0 0;
  height: 0;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  width: 100%;
  overflow: hidden;
}

.video-card__image::after {
  content: '';
  background: #000;
  opacity: 0.15;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  z-index: 2;
  -webkit-transition: opacity 0.25s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.25s cubic-bezier(0.19, 1, 0.22, 1);
}

.video-card__image img {
  display: block;
  max-width: none;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
}

.video-card__image svg {
  width: 51px;
  height: 51px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 3;
  opacity: 0.85;
  -webkit-transition: opacity 0.25s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.25s cubic-bezier(0.19, 1, 0.22, 1);
}

.video-card__image:hover svg {
  opacity: 1;
}

.video-card__image:hover::after {
  opacity: 0.25;
}

.video-card__content {
  padding: 50px 10%;
  background: #ffffff;
  position: relative;
  margin: -36px 6% 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  z-index: 2;
  text-align: center;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.video-card__title {
  font-size: 1.25rem;
  line-height: 1.25;
  margin: 0 0 1.5rem;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.video-card__lightbox {
  width: 90vw;
  max-width: 100%;
  background: #fff;
  overflow: auto;
  max-height: 90vh;
}

@media (min-width: 720px) {
  .video-card__lightbox {
    width: 75vw;
  }
}

@media (min-width: 1072px) {
  .video-card__lightbox {
    width: 55vw;
  }
}

.video-card__lightbox-content {
  text-align: center;
  padding: 30px;
}

.video-card__lightbox-buttons .button, .video-card__lightbox-buttons .input-container input[type="button"], .input-container .video-card__lightbox-buttons input[type="button"],
.video-card__lightbox-buttons .input-container input[type="submit"], .input-container .video-card__lightbox-buttons input[type="submit"] {
  margin-top: 1rem !important;
}

@media (min-width: 720px) {
  .video-card__lightbox-buttons .button, .video-card__lightbox-buttons .input-container input[type="button"], .input-container .video-card__lightbox-buttons input[type="button"],
  .video-card__lightbox-buttons .input-container input[type="submit"], .input-container .video-card__lightbox-buttons input[type="submit"] {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
    width: auto !important;
  }
}

.video-card__lightbox-title {
  font-size: 1.125rem;
}

.video-card__lightbox-video {
  width: 100%;
  height: 0;
  overflow: hidden;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  padding: 56.25% 0 0;
  position: relative;
}

.video-card__lightbox-video iframe, .video-card__lightbox-video video {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  display: block;
}

@media (min-width: 720px) {
  .tabber {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .rtl .tabber {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.tabber__nav {
  width: 100%;
  text-align: center;
}

@media (min-width: 720px) {
  .tabber__nav {
    width: 15%;
    text-align: left;
  }
}

.tabber__nav-item {
  display: inline-block;
  overflow: hidden;
  text-indent: -9999em;
  width: 12px;
  height: 0;
  padding: 12px 0 0;
  border-radius: 50%;
  background: #8c8c8c;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin: 0 0.25em;
}

.tabber__nav-item:hover, .tabber__nav-item--active {
  background-color: #71c894;
}

@media (min-width: 720px) {
  .tabber__nav-item {
    display: block;
    font-size: 0.6875rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #212121;
    text-decoration: none;
    padding: 5px 0;
    text-indent: 0;
    border-radius: 0;
    background: none !important;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0;
    width: auto;
    height: auto;
  }
  .tabber__nav-item span {
    width: 1.5em;
    display: inline-block;
  }
  .tabber__nav-item:hover, .tabber__nav-item--active {
    font-weight: 500;
    color: inherit;
  }
}

@media (min-width: 720px) {
  .tabber__viewport {
    width: 75%;
  }
}

.tabber__item {
  display: none;
}

.tabber__item--active {
  display: block;
}

.share {
  padding-top: 3em;
  height: 1.5rem;
}

.share--vertical {
  padding-top: 80px;
  width: 1.5rem;
  height: auto;
  display: none;
  float: left;
  padding-bottom: 100px;
}

.rtl .share--vertical {
  left: auto;
  right: 0;
  float: right;
}

@media (min-width: 960px) {
  .share--vertical {
    display: block;
  }
}

.share--vertical .share__nav {
  height: auto;
}

.share__title {
  font-size: 0.875rem;
  color: #8c8c8c;
  text-transform: uppercase;
  line-height: 1.5rem;
  display: inline-block;
}

.share--vertical .share__title {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  display: block;
  width: 1em;
  margin: 0 auto;
  text-align: center;
}

.rtl .share--vertical .share__title {
  -webkit-transform: rotate(-270deg);
          transform: rotate(-270deg);
}

.share--character-based .share__title {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}

.rtl .share--character-based .share__title {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}

.share__nav {
  vertical-align: middle;
  display: inline-block;
  white-space: nowrap;
  margin: 0 -0.625rem;
  height: 25px;
}

.share__nav::before {
  content: "";
  display: inline-block;
  background-color: #ccc;
  height: 2px;
  width: 30px;
  margin: 0 0.5em;
  -webkit-transform: translateY(-11px);
          transform: translateY(-11px);
}

.share__nav-item {
  display: inline-block;
  margin: 0 0.375rem;
  cursor: pointer;
}

@media (min-width: 540px) {
  .share__nav-item {
    margin: 0 0.625rem;
  }
}

.share__nav-item:hover {
  opacity: 0.75;
}

.share__nav-item svg {
  display: block;
  width: 24px;
  height: 24px;
}

.share--vertical .share__nav {
  display: block;
}

.share--vertical .share__nav::before {
  height: 30px;
  width: 2px;
  margin: 0.5em auto;
  -webkit-transform: none;
          transform: none;
  display: block;
}

.share--vertical .share__nav-item {
  display: block;
}

.share--vertical .share__nav-item:not(:last-child) {
  margin-bottom: 1.25rem;
}

.meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #8c8c8c;
  padding: 2em 0;
  line-height: 1rem;
  font-size: 0.875rem;
}

@media (min-width: 540px) {
  .meta {
    font-size: 1rem;
    padding: 2.75em 0;
  }
}

.meta__item {
  padding: 0 0.75em;
}

.meta__item:first-child {
  padding-left: 0;
}

.meta__item:last-child {
  padding-right: 0;
}

.meta__item--avatar {
  margin: -7px 0;
  padding-right: 0em;
}

.meta__item--avatar img {
  display: block;
  height: 30px;
  width: auto;
}

@media (min-width: 540px) {
  .meta__item--avatar img {
    height: 56px;
  }
}

@media (min-width: 540px) {
  .meta__item--avatar {
    margin: -20px 0;
    padding-right: 0.25em;
  }
}

.rtl .meta__item--avatar {
  padding: 0 0 0 0.25em;
}

.meta__item--author {
  padding-right: 0;
}

.meta__item--author::after {
  content: "|";
  padding-left: 0.75em;
}

.rtl .meta__item--author::after {
  padding: 0 0.75em 0 0;
}

.grocery-list {
  padding: 30px;
  width: 90vw;
  max-width: 100%;
  background: #fff;
  overflow: auto;
  max-height: 90vh;
  text-align: center;
}

@media (min-width: 720px) {
  .grocery-list {
    padding: 50px;
    width: 75vw;
  }
}

@media (min-width: 1072px) {
  .grocery-list {
    width: 55vw;
  }
}

.grocery-list__title {
  font: 400 1.75rem/1.25 "Poppins", helvetica, arial, sans-serif;
  margin-bottom: 1em;
}

.grocery-list__group {
  width: 100%;
}

.grocery-list__group-name {
  font-size: 0.875rem;
  color: #8c8c8c;
  margin: 1.5em 0 0.75em;
  text-align: left;
}

.rtl .grocery-list__group-name {
  text-align: right;
}

.grocery-list__group-action {
  color: #71c894;
  float: right;
}

.rtl .grocery-list__group-action {
  float: left;
}

.grocery-list__groceries .grocery-list__group-action {
  display: none;
}

.grocery-list__groceries .grocery-list__empty {
  display: block;
}

.grocery-list__groceries--full .grocery-list__empty {
  display: none;
}

.grocery-list__groceries .grocery-list__actions {
  display: none;
}

.grocery-list__groceries--full .grocery-list__actions {
  display: block;
}

.grocery-list__empty {
  font-size: 1.125rem;
  color: #8c8c8c;
}

.grocery-list__actions {
  margin: 24px 0;
}

.grocery-list__actions .button, .grocery-list__actions .input-container input[type="button"], .input-container .grocery-list__actions input[type="button"],
.grocery-list__actions .input-container input[type="submit"], .input-container .grocery-list__actions input[type="submit"] {
  margin: 0 0.5em;
}

.grocery-list__products-title {
  font-size: 1.125rem;
  color: #8c8c8c;
  margin: 2em 0 1em;
}

.grocery-list__item {
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  border-top: 2px solid #ebebf0;
  padding: 0.5em 0;
  height: 4em;
}

.rtl .grocery-list__item {
  text-align: right;
}

.grocery-list__item:last-child {
  border-bottom: 2px solid #ebebf0;
}

.grocery-list__item-image {
  width: 2.5em;
  height: 2.5em;
  background: #ebebf0;
}

.grocery-list__item-image img {
  display: block;
}

.grocery-list__item-name {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 0 1em;
}

.grocery-list__item-actions {
  width: 120px;
}

.grocery-list__item-actions .button, .grocery-list__item-actions .input-container input[type="button"], .input-container .grocery-list__item-actions input[type="button"],
.grocery-list__item-actions .input-container input[type="submit"], .input-container .grocery-list__item-actions input[type="submit"] {
  font-size: 0.875rem;
  padding-left: 1em;
  padding-right: 1em;
}

.grocery-list--print {
  width: 100%;
  font-size: 0.875rem;
  color: #000;
  max-height: none;
  overflow: visible;
}

.grocery-list--print * {
  color: inherit;
}

.grocery-list--print .grocery-list__item-actions,
.grocery-list--print .grocery-list__group-action {
  display: none;
}

.grocery-list--print .grocery-list__item {
  height: 2.5em;
  padding: 0;
  border-width: 1px;
  margin-top: -1px;
  line-height: 1;
}

.grocery-list--print .grocery-list__item:first-child {
  margin-top: 0;
}

.grocery-list--print .grocery-list__item-image {
  height: 0.9em;
  width: 0.9em;
  background: #fff;
  border: 2px solid #000;
}

.grocery-list--print .grocery-list__item-image img {
  display: none;
}

.grocery-list--print .grocery-list__item-name {
  padding: 0 0.75em;
}

.popup-form {
  padding: 30px;
  width: 90vw;
  max-width: 100%;
  background: #fff;
  overflow: auto;
  max-height: 90vh;
}

@media (min-width: 720px) {
  .popup-form {
    padding: 50px;
    width: 75vw;
  }
}

@media (min-width: 1072px) {
  .popup-form {
    width: 55vw;
  }
}

.popup-form__title {
  font: 400 2rem/1.25 "Poppins", helvetica, arial, sans-serif;
  text-align: center;
}

.popup-form__text {
  margin-top: 1rem;
  font-size: 1.125rem;
  color: #8c8c8c;
  text-align: center;
}

.popup-form__submit {
  text-align: center;
  width: 100%;
  max-width: none;
}

.popup-form__form,
.popup-form .signup-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.popup-form__form .input-container,
.popup-form .signup-form .input-container {
  width: 100%;
}

@media (min-width: 720px) {
  .popup-form__form .input-container,
  .popup-form .signup-form .input-container {
    width: 50%;
  }
}

.popup-form__form .input-container.submit,
.popup-form .signup-form .input-container.submit {
  text-align: center;
}

.popup-form .form__success {
  text-align: center;
  width: 100%;
  max-width: none;
}

.loading-bar {
  height: 100px;
  position: relative;
}

.loading-bar__spinner, .loading-bar__spinner::after {
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

.loading-bar__spinner {
  margin: 0;
  position: absolute;
  text-indent: -9999em;
  border: 6px solid rgba(113, 200, 148, 0.2);
  border-left-color: #71c894;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-animation: spinnerLoading 0.4s infinite linear;
          animation: spinnerLoading 0.4s infinite linear;
  left: 50%;
  top: 50%;
  margin: -20px 0 0 -20px;
}

@-webkit-keyframes spinnerLoading {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spinnerLoading {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.vsg-blog {
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 0 auto;
}

.vsg-blog__image {
  height: 250px;
  width: 100%;
  background: #ebebf0;
}

.vsg-blog__image img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: none;
  height: 100%;
  width: 100%;
}

.vsg-blog__form {
  padding: 20px 15px;
  margin: 0;
  background: #ffffff;
  position: relative;
}

@media (min-width: 540px) {
  .vsg-blog__form {
    margin: -30px 20px 0;
  }
}

@media (min-width: 720px) {
  .vsg-blog__form {
    border-bottom: 1px solid #ebebf0;
  }
}

.vsg-blog .signup-form .optIn {
  font-size: 0.75rem;
}

.vsg-blog__title {
  font: 500 1.125rem/1.25 "Poppins", helvetica, arial, sans-serif;
}

.vsg-blog__title i {
  display: block;
}

.vsg-blog__field-group {
  margin: 0 -12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.vsg-blog__field {
  padding: 0;
  font-size: 0.875rem;
}

.vsg-blog__field-group .vsg-blog__field {
  padding: 0 12px;
  width: 50%;
}

.vsg-blog__submit {
  display: block;
  width: 100%;
}

@media (min-width: 720px) {
  .vsg-blog__submit {
    display: inline-block;
    width: auto;
  }
}

.credit {
  text-align: center;
  margin: 1.5rem 0 0;
}

.credit__logo {
  display: block;
  margin: 0 auto;
  max-width: 150px;
}

.credit__link {
  display: block;
}

.slider-group__selector {
  text-align: center;
  margin-bottom: 1.5rem;
}

.slider-group__selector-label {
  display: inline;
  color: #8c8c8c;
}

.slider-group__selector-nav {
  display: inline;
}

.slider-group__selector-nav-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0.25em 0;
}

@media (min-width: 960px) {
  .slider-group__selector-nav-item {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin: 0 0.25em;
  }
}

.slider-group__item {
  display: none;
}

.slider-group__item--active {
  display: block;
}

.image-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.local__google-map {
  width: 100%;
  height: 300px;
}

.local__google-map img {
  max-width: none;
  max-height: none;
}

@media (min-width: 720px) {
  .local__google-map {
    height: 100%;
  }
}

@media (min-width: 720px) {
  .local__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media (min-width: 720px) {
  .local__map {
    width: 50%;
  }
}

.local__content {
  padding: 24px 0;
}

@media (min-width: 720px) {
  .local__content {
    width: 44%;
    padding: 8% 0;
  }
}

.local__title {
  font: 400 1.625rem/1.25 "Poppins", helvetica, arial, sans-serif;
}

@media (min-width: 720px) {
  .local__title {
    font-size: 2.5rem;
  }
}

.local__subtitle {
  font: 400 1.25rem/1.25 "Poppins", helvetica, arial, sans-serif;
  margin-top: 0.25em;
}

@media (min-width: 720px) {
  .local__subtitle {
    font-size: 1.75rem;
    max-width: 360px;
  }
}

.local__instructions {
  color: #8c8c8c;
  font-size: 0.8rem;
  margin: 1rem 0;
}

.local__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin: 1.5rem 0 1rem;
}

.local__form > * {
  white-space: nowrap;
}

.local__form > *:first-child {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding-right: 1em;
}

.dialog {
  padding: 30px;
  width: 90vw;
  max-width: 100%;
  background: #fff;
  overflow: auto;
  max-height: 90vh;
  text-align: center;
}

@media (min-width: 720px) {
  .dialog {
    padding: 50px;
    width: 75vw;
  }
}

@media (min-width: 1072px) {
  .dialog {
    width: 55vw;
  }
}

.dialog--narrow {
  max-width: 600px;
}

.dialog__title {
  font: 400 1.75rem/1.25 "Poppins", helvetica, arial, sans-serif;
  margin-bottom: 1em;
}

.dialog__text {
  font-size: 1.125rem;
  color: #8c8c8c;
}

.dialog__actions {
  margin: 24px 0;
}

.dialog__actions .button, .dialog__actions .input-container input[type="button"], .input-container .dialog__actions input[type="button"],
.dialog__actions .input-container input[type="submit"], .input-container .dialog__actions input[type="submit"] {
  margin: 0 0.5em;
}

.dialog__content {
  text-align: left;
}

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

.qr {
  position: relative;
}

.qr__trigger {
  border: 0;
  padding: 0;
  display: block;
  background: none;
  width: 40px;
  margin: 0 -10px;
  padding: 0 8px;
  height: 100%;
  -webkit-transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1), transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1), transform 0.5s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  outline: none;
}

.qr__trigger svg {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.qr__trigger path {
  fill: currentColor;
}

.qr--active .qr__trigger,
.qr:hover .qr__trigger {
  color: #71c894;
}

.qr--active .qr__trigger {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.qr__code {
  position: absolute;
  right: -20px;
  opacity: 0;
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
  top: -999999em;
  background: #fff;
  padding: 10px;
  border: 10px solid #71c894;
  -webkit-transition: opacity 0.25s cubic-bezier(0.19, 1, 0.22, 1), top 0s linear 0.25s, -webkit-transform 0.25s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.25s cubic-bezier(0.19, 1, 0.22, 1), top 0s linear 0.25s, -webkit-transform 0.25s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.25s cubic-bezier(0.19, 1, 0.22, 1), transform 0.25s cubic-bezier(0.19, 1, 0.22, 1), top 0s linear 0.25s;
  transition: opacity 0.25s cubic-bezier(0.19, 1, 0.22, 1), transform 0.25s cubic-bezier(0.19, 1, 0.22, 1), top 0s linear 0.25s, -webkit-transform 0.25s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 99;
  height: 240px;
}

.qr--active .qr__code {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  top: 100%;
}

.qr__logo {
  display: none;
}

.language-select {
  cursor: pointer;
  font-size: 13px;
  line-height: 30px;
  display: inline-block;
  text-align: left;
  position: relative;
  margin-right: -1em;
  /*
	&:hover &__navigation {
		@include respond-to(wp) {
			display: block;
		}
	}
	*/
}

.language-select__trigger {
  display: block;
  padding: 0 1em;
  color: #71c894;
  -webkit-transition: background-color 0.25s cubic-bezier(0.19, 1, 0.22, 1), color 0.25s cubic-bezier(0.19, 1, 0.22, 1);
  transition: background-color 0.25s cubic-bezier(0.19, 1, 0.22, 1), color 0.25s cubic-bezier(0.19, 1, 0.22, 1);
}

.language-select__icon {
  display: inline-block;
  height: 15px;
  width: 15px;
  margin: 0 4px -3px 0;
}

.language-select__icon path {
  fill: currentColor;
}

.language-select:hover .language-select__trigger {
  background: #3b9860;
  color: #fff;
}

.language-select__navigation {
  display: none;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: inherit;
  line-height: inherit;
  position: absolute;
  right: 0;
  top: 30px;
  min-width: 100%;
  background: #71c894;
}

.language-select__navigation li {
  display: block;
}

.language-select__navigation a {
  display: block;
  padding: 0 1em;
  color: #fff;
  white-space: nowrap;
}

.language-select__navigation a:hover {
  background: #ffa384;
}

.language-select__navigation.click-display {
  /*@include respond-to(mobile-only) {*/
  display: block;
  /*}*/
}

.top-bar {
  background: #f5f5f8;
  text-align: right;
  height: 30px;
  position: relative;
  z-index: 101;
}

.top-bar .container {
  max-width: 1064px;
  padding: 0 20px;
}

.page-template-template-grocery-list .top-bar {
  display: none;
}

.info {
  padding: 24px 0;
}

.info__trigger {
  display: block;
  width: 60px;
  height: 60px;
  margin: 0 auto;
  position: relative;
}

.info__icon {
  display: block;
  -webkit-transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: absolute;
  left: 0;
  top: 0;
}

.info__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.info__icon--on {
  opacity: 0;
  -webkit-transform: scale(0.75);
          transform: scale(0.75);
}

.info__trigger:hover .info__icon--on {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.info__trigger:hover .info__icon--off {
  opacity: 0;
  -webkit-transform: scale(0.75);
          transform: scale(0.75);
}

.icon-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

@media (min-width: 720px) {
  .icon-nav {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

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

@media (min-width: 720px) {
  .icon-nav__item {
    padding: 0 2%;
    white-space: nowrap;
  }
}

.icon-nav__item-icon {
  display: block;
  border: 2px solid #71c894;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  padding: 9px;
  margin: 0 auto 0.5rem;
  -webkit-transition: background-color 0.25s cubic-bezier(0.19, 1, 0.22, 1);
  transition: background-color 0.25s cubic-bezier(0.19, 1, 0.22, 1);
}

@media (min-width: 720px) {
  .icon-nav__item-icon {
    height: 50px;
    width: 50px;
    padding: 10px;
    border-width: 3px;
  }
}

@media (min-width: 720px) {
  .icon-nav__item-icon {
    height: 80px;
    width: 80px;
    padding: 20px;
  }
}

.icon-nav__item-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  margin: 0 auto;
  -webkit-transition: -webkit-transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: -webkit-transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275), -webkit-transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.icon-nav__item-icon svg path {
  fill: currentColor;
}

.icon-nav__item:hover .icon-nav__item-icon {
  color: #fff;
  background: #71c894;
}

.icon-nav__item:hover .icon-nav__item-icon svg {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.icon-nav__item-label {
  display: block;
  color: #212121;
  font-size: 0.75rem;
}

@media (min-width: 720px) {
  .icon-nav__item-label {
    font-size: 1rem;
  }
}

.info-graphic {
  max-width: 65vh;
  margin: 0 auto;
}

.info-graphic__container {
  width: 100%;
  height: 0;
  padding: 100% 0 0;
  position: relative;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-bottom: 48px;
}

.info-graphic__tray {
  position: relative;
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  transition: -webkit-transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.info-graphic__item {
  position: relative;
  width: 100%;
  height: 0;
  padding: 100% 0 0;
  overflow: hidden;
}

.info-graphic__item img {
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  display: block;
}

.info-graphic__window {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.info-graphic__trigger {
  position: absolute;
  background: #71c894;
  height: 38px;
  width: 64px;
  background: rgba(33, 33, 33, 0.75);
  color: #fff;
  left: 50%;
  cursor: pointer;
  opacity: 0;
  -webkit-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  color: #fff;
}

.info-graphic__trigger svg {
  display: block;
  width: 20px;
  height: 20px;
  margin: 0 auto;
}

.info-graphic__trigger path {
  fill: currentColor;
}

.info-graphic__trigger--up {
  top: 0;
}

.info-graphic__trigger--up svg {
  margin-top: 8px;
}

.info-graphic__trigger--down {
  bottom: 0;
}

.info-graphic__trigger--down svg {
  margin-top: 10px;
}

.info-graphic__trigger:hover {
  -webkit-transition-duration: 0.125s;
          transition-duration: 0.125s;
  background-color: #ffa384;
}

.info-graphic__trigger:active {
  -webkit-transition-duration: 0s;
          transition-duration: 0s;
}

.info-graphic__trigger--disabled {
  display: none;
}

.info-graphic:hover .info-graphic__trigger {
  opacity: 1;
}

.info-graphic__nav {
  width: 100%;
  text-align: center;
  margin-top: 48px;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

.info-graphic__nav-item {
  display: inline-block;
  overflow: hidden;
  text-indent: -9999em;
  width: 12px;
  height: 0;
  padding: 12px 0 0;
  border-radius: 50%;
  background: #8c8c8c;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin: 0 0.25em;
}

.info-graphic__nav-item:hover, .info-graphic__nav-item--active {
  background-color: #71c894;
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}

.grocery-list-banner {
  text-align: center;
}

@media (min-width: 720px) {
  .grocery-list-banner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: left;
  }
}

.grocery-list-banner__title {
  font-family: "Poppins", helvetica, arial, sans-serif;
  font-size: 1.625rem;
  line-height: 1.25;
  margin: 1.25rem 0;
}

@media (min-width: 720px) {
  .grocery-list-banner__title {
    margin-top: 0;
  }
}

.grocery-list-banner__text {
  color: #8c8c8c;
}

.section--grey .grocery-list-banner__text {
  color: #737272;
}

.grocery-list-banner__button {
  margin: 1.25rem 0 0;
}

@media (min-width: 720px) {
  .grocery-list-banner__content, .grocery-list-banner__image {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    width: 50%;
  }
}

@media (min-width: 720px) {
  .grocery-list-banner__content {
    padding-right: 24px;
  }
  .grocery-list-banner__content.js-animate-in[data-in-view-class] {
    opacity: 0;
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
  }
  .grocery-list-banner__content--in-view.js-animate-in[data-in-view-class] {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    -webkit-transition-duration: 1s;
            transition-duration: 1s;
    -webkit-transition-delay: 0.25s;
            transition-delay: 0.25s;
  }
}

.grocery-list-banner__image img {
  display: block;
  margin: 0 auto;
}

@media (min-width: 720px) {
  .grocery-list-banner__image {
    padding-left: 24px;
  }
  .grocery-list-banner__image.js-animate-in[data-in-view-class] {
    opacity: 0;
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
  }
  .grocery-list-banner__image--in-view.js-animate-in[data-in-view-class] {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    -webkit-transition-duration: 1s;
            transition-duration: 1s;
    -webkit-transition-delay: 0.25s;
            transition-delay: 0.25s;
  }
}

.signup-form {
  margin: -8px;
}

.signup-form.signup-form-loading {
  opacity: 0.5;
}

.form-error,
.form-success {
  width: 100%;
  padding: 0 8px;
  font-weight: 500;
  margin: 8px 0 0;
  display: none;
}

.form-error.active,
.form-success.active {
  display: block;
}

.form-error:empty,
.form-success:empty {
  display: none;
}

.form-error {
  color: #ff7d51;
}

.form-success {
  color: #71c894;
}

.input-label {
  position: absolute;
  display: block;
  width: 100%;
  top: 0;
  left: 8px;
  display: block;
  font-size: 0.75em;
  color: #8c8c8c;
  opacity: 0;
  -webkit-transform: translateY(0.125em);
          transform: translateY(0.125em);
  -webkit-transition: opacity 0.25s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.25s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.25s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.25s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.25s cubic-bezier(0.19, 1, 0.22, 1), transform 0.25s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.25s cubic-bezier(0.19, 1, 0.22, 1), transform 0.25s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.25s cubic-bezier(0.19, 1, 0.22, 1);
}

.input-label-open {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.input-container {
  position: relative;
  font-size: 1em;
  margin: 0.5em 0 0;
  padding: 1em 8px 0;
  width: 100%;
  display: block;
}

.input-container.optIn, .input-container.submit, .input-container--full {
  max-width: none !important;
  width: 100% !important;
}

.input-container.active .input-label {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.input-container.error .input-label {
  color: #ff7d51;
}

.input-container.error input[type="text"],
.input-container.error input[type="email"],
.input-container.error input[type="number"],
.input-container.error input[type="url"],
.input-container.error input[type="tel"],
.input-container.error select,
.input-container.error textarea {
  border-bottom-color: #ff7d51;
}

.input-container.input-container-loading {
  opacity: 0.5;
}

.input-container.optIn {
  width: 100%;
  font-size: 0.875rem;
  margin: 1em 0;
  padding-top: 0;
}

.input-container.submit {
  padding-top: 0;
  width: 100%;
}

.input-container input[type="text"],
.input-container input[type="email"],
.input-container input[type="number"],
.input-container input[type="url"],
.input-container input[type="tel"],
.input-container select,
.input-container textarea {
  display: block;
  width: 100%;
  border: 0;
  border-bottom: 1px solid #8c8c8c;
  padding: 0.25em 0 0.5em;
  font-size: 1em;
  line-height: 1.2;
  outline: none;
}

.input-container input[type="text"]:focus,
.input-container input[type="email"]:focus,
.input-container input[type="number"]:focus,
.input-container input[type="url"]:focus,
.input-container input[type="tel"]:focus,
.input-container select:focus,
.input-container textarea:focus {
  border-bottom-color: #71c894;
}

.input-container input[type="text"]::-webkit-input-placeholder,
.input-container input[type="email"]::-webkit-input-placeholder,
.input-container input[type="number"]::-webkit-input-placeholder,
.input-container input[type="url"]::-webkit-input-placeholder,
.input-container input[type="tel"]::-webkit-input-placeholder,
.input-container select::-webkit-input-placeholder,
.input-container textarea::-webkit-input-placeholder {
  color: inherit;
}

.input-container input[type="text"]:-ms-input-placeholder,
.input-container input[type="email"]:-ms-input-placeholder,
.input-container input[type="number"]:-ms-input-placeholder,
.input-container input[type="url"]:-ms-input-placeholder,
.input-container input[type="tel"]:-ms-input-placeholder,
.input-container select:-ms-input-placeholder,
.input-container textarea:-ms-input-placeholder {
  color: inherit;
}

.input-container input[type="text"]::-ms-input-placeholder,
.input-container input[type="email"]::-ms-input-placeholder,
.input-container input[type="number"]::-ms-input-placeholder,
.input-container input[type="url"]::-ms-input-placeholder,
.input-container input[type="tel"]::-ms-input-placeholder,
.input-container select::-ms-input-placeholder,
.input-container textarea::-ms-input-placeholder {
  color: inherit;
}

.input-container input[type="text"]::placeholder,
.input-container input[type="email"]::placeholder,
.input-container input[type="number"]::placeholder,
.input-container input[type="url"]::placeholder,
.input-container input[type="tel"]::placeholder,
.input-container select::placeholder,
.input-container textarea::placeholder {
  color: inherit;
}

.input-container input[type="text"]:focus::-webkit-input-placeholder,
.input-container input[type="email"]:focus::-webkit-input-placeholder,
.input-container input[type="number"]:focus::-webkit-input-placeholder,
.input-container input[type="url"]:focus::-webkit-input-placeholder,
.input-container input[type="tel"]:focus::-webkit-input-placeholder,
.input-container select:focus::-webkit-input-placeholder,
.input-container textarea:focus::-webkit-input-placeholder {
  color: rgba(140, 140, 140, 0.5);
}

.input-container input[type="text"]:focus:-ms-input-placeholder,
.input-container input[type="email"]:focus:-ms-input-placeholder,
.input-container input[type="number"]:focus:-ms-input-placeholder,
.input-container input[type="url"]:focus:-ms-input-placeholder,
.input-container input[type="tel"]:focus:-ms-input-placeholder,
.input-container select:focus:-ms-input-placeholder,
.input-container textarea:focus:-ms-input-placeholder {
  color: rgba(140, 140, 140, 0.5);
}

.input-container input[type="text"]:focus::-ms-input-placeholder,
.input-container input[type="email"]:focus::-ms-input-placeholder,
.input-container input[type="number"]:focus::-ms-input-placeholder,
.input-container input[type="url"]:focus::-ms-input-placeholder,
.input-container input[type="tel"]:focus::-ms-input-placeholder,
.input-container select:focus::-ms-input-placeholder,
.input-container textarea:focus::-ms-input-placeholder {
  color: rgba(140, 140, 140, 0.5);
}

.input-container input[type="text"]:focus::placeholder,
.input-container input[type="email"]:focus::placeholder,
.input-container input[type="number"]:focus::placeholder,
.input-container input[type="url"]:focus::placeholder,
.input-container input[type="tel"]:focus::placeholder,
.input-container select:focus::placeholder,
.input-container textarea:focus::placeholder {
  color: rgba(140, 140, 140, 0.5);
}

.input-container input[type="text"]:disabled,
.input-container input[type="email"]:disabled,
.input-container input[type="number"]:disabled,
.input-container input[type="url"]:disabled,
.input-container input[type="tel"]:disabled,
.input-container select:disabled,
.input-container textarea:disabled {
  opacity: 0.5;
}

.input-container input,
.input-container select {
  height: 2em;
}

.input-container textarea {
  line-height: 1.5;
  min-height: 2em;
}

.input-container select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border-radius: 0;
  background: transparent url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAGCAYAAAD68A/GAAAAWklEQVQImYXKwQnCUBAE0LfEuxYRG4nV2NDvJpWkiRQgTC4/4R9EFwaWmQcN+ZMGE9YfaMVNErhj+4I2PJKQ5MQz9gHteF77+XS84NPzGrfq4LqqeqOStLE/AAM4R+8y8SyeAAAAAElFTkSuQmCC") no-repeat right 0.75em;
  padding-right: 13px;
}

.rtl .input-container select {
  background-position: left 0.75em;
}

.input-container input[type="checkbox"],
.input-container input[type="radio"] {
  vertical-align: middle;
  display: inline-block;
  height: 1em;
  margin-right: 0.2em;
}

@-webkit-keyframes checkboxError {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.125);
            transform: scale(1.125);
    border-color: #ff7d51;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes checkboxError {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.125);
            transform: scale(1.125);
    border-color: #ff7d51;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.content-box {
  padding: 50px 10%;
  background: #fff;
  color: #8c8c8c;
}

.header-wrap {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
}

.donation-banner {
  background: #71c894;
  padding: 10px 0;
}

body.menu-open .donation-banner {
  display: none;
}

.donation-banner a {
  color: #ffffff;
  font-weight: bold;
}

.donation-banner a:hover {
  color: #ffffff;
  opacity: .8;
}

.donation-banner a:active, .donation-banner a:visited {
  color: #ffffff;
}

.donation-banner .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (min-width: 960px) {
  .donation-banner .container {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.donation-banner .closeButton {
  padding-left: 30px;
}

.donation-banner span {
  color: #ffffff;
  cursor: pointer;
  font-size: 30px;
  font-weight: bold;
  line-height: 1;
}

.donation-banner span:hover {
  opacity: .8;
}

.engaging-networks-petition {
  width: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.engaging-networks-petition .row {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 975px) {
  .engaging-networks-petition .row {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media (max-width: 600px) {
  .engaging-networks-petition .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.engaging-networks-petition strong {
  font-weight: 700;
}

.engaging-networks-petition .petition-button-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  margin-top: 5px;
}

.engaging-networks-petition .petition-button-wrap a {
  padding: 15px 30px;
  color: #ffffff;
  background-color: #212121;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  cursor: pointer;
}

.engaging-networks-petition .embedded-petition-button-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  margin-top: 5px;
}

.engaging-networks-petition .embedded-petition-button-wrap a {
  padding: 15px 30px;
  color: #ffffff;
  background-color: #212121;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  cursor: pointer;
}

.engaging-networks-petition .en-embed {
  width: 100%;
}

.engaging-networks-petition .en-embed.ios iframe {
  display: none;
}

.engaging-networks-petition .en-embed.ios .only-ios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 0;
}

.engaging-networks-petition .en-embed .only-ios {
  display: none;
}

.engaging-networks-petition .en-embed div {
  margin: 0 auto;
}

@media (max-width: 975px) {
  .engaging-networks-petition .en-embed div {
    width: 100%;
  }
}

/* WordPress pagination: show only the current page, Prev and Next button */
.chooseveg-pagination .navigation,
.chooseveg-pagination .paginagion {
  margin: 80px auto;
  padding: 0;
  width: auto;
  max-width: auto;
  border: 0;
}

.chooseveg-pagination .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.chooseveg-pagination .nav-links .page-numbers {
  display: none;
}

.chooseveg-pagination .nav-links .page-numbers:first-child, .chooseveg-pagination .nav-links .page-numbers:last-child, .chooseveg-pagination .nav-links .page-numbers.current {
  width: 45px;
  height: 45px;
  margin: 5px;
  line-height: 42px;
  font-size: 15px;
  font-weight: 400;
  background: #fff;
  color: #777;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 2px solid rgba(46, 56, 65, 0.1);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.chooseveg-pagination .nav-links .page-numbers:first-child:hover, .chooseveg-pagination .nav-links .page-numbers:last-child:hover, .chooseveg-pagination .nav-links .page-numbers.current:hover {
  background: #71c894;
  color: #fff;
  border-color: #71c894;
}

.chooseveg-pagination .nav-links .page-numbers.current {
  background: #71c894;
  color: #fff;
  border-color: #71c894;
}

.chooseveg-pagination .nav-links .page-numbers.prev, .chooseveg-pagination .nav-links .page-numbers.next {
  width: auto;
  padding-left: 16px;
  padding-right: 16px;
}

.header__nav .current-section::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 5px !important;
  background: #71c894;
  opacity: 1 !important;
  -webkit-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
}

.emprasas {
  /*
	.innovar-text {
		width: 100%;
		padding: 0 20px 80px;
		margin-top: 450px;
		background-image: url('https://mfacdn.cachefly.net/chooseveg/sites/3/2020/04/innovemos.png');
		background-repeat: no-repeat;
		background-size: contain;

		.text-wrap {
			width: 100%;
			max-width: 1072px;
			margin: 0 auto;
			text-align: center;

			h2 {
				max-width: 800px;
				margin: 0 auto;
				color: $green;
				text-align: center;
				font-size: 57.06px;
				line-height: 66.94px;
				font-weight: $semi-bold;
			}

			a {
				display: inline-flex;
				-webkit-box-pack: center;
				justify-content: center;
				-webkit-box-align: center;
				min-height: 2.25em;
				padding: 0.5em 1.5rem;
				margin: 40px auto 0;
				border: 0;
				align-items: center;
				background: $green;
				color: $white;
				font-size: 1rem;
				line-height: 1.25;
				transition: all 0.25s cubic-bezier(0.19, 1, 0.22, 1);
				outline: none;
				text-decoration: none;
				vertical-align: middle;
				cursor: pointer;
				line-height: 1.625;
				font-weight: 500;
				&:hover {
					background-color: $medium-green;
				}
			}

		} // .text-wrap

	} // .innovar-text
*/
}

.emprasas .target {
  position: relative;
}

.emprasas .emprasas-hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  position: relative;
  padding: 130px 0;
  color: #ffffff;
  background-image: url("https://mfacdn.cachefly.net/chooseveg/sites/3/2020/08/Fried_tofu_with_edible_flowers.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  text-align: center;
}

.emprasas .emprasas-hero .hero-content {
  width: 100%;
  max-width: 1072px;
  padding: 0 24px;
  margin: 0 auto;
  z-index: 2;
}

.emprasas .emprasas-hero .hero-content h1 {
  margin-bottom: .67em;
  font-size: 40px;
  line-height: 45px;
  letter-spacing: 5;
}

.emprasas .emprasas-hero .hero-content h2 {
  margin-bottom: 30px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
}

.emprasas .emprasas-hero .hero-content a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
      justify-content: center;
  -webkit-box-align: center;
  min-height: 2.25em;
  padding: 0.5em 1.5rem;
  margin: 2px 0;
  border: 0;
  -ms-flex-align: center;
      align-items: center;
  background: #71c894;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.25;
  -webkit-transition: all 0.25s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.25s cubic-bezier(0.19, 1, 0.22, 1);
  outline: none;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  line-height: 1.625;
  font-weight: 500;
}

.emprasas .emprasas-hero .hero-content a:hover {
  background-color: #4cba78;
}

.emprasas .emprasas-hero .color-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.emprasas .nosotros {
  padding: 80px 0;
  /*
		.image {
			display: block;
			width: 100%;
			max-width: 100%;
			height: 190px;
			margin: 0 auto 30px;
			border: none;
			box-shadow: none;
			object-fit: cover;
			background-size: cover;
			background-position: top center;
		}

		.text {
			min-height: 135px;
			@include respond-to(b-1140) {
				min-height: 120px;
			}
			@include respond-to(b-1105) {
				min-height: 110px;
			}
			@include respond-to(b-1010) {
				min-height: 130px;
			}
			@include respond-to(b-770) {
				min-height: 200px;
			}
			@include respond-to(b-550) {
				min-height: 250px;
			}
			@include respond-to(b-495) {
				min-height: 150px;
			}
		}

		p, a {
			width: 80%;
			margin: 0 auto 10px;
			color: $black;
			text-align: center;
			font-size: 16px;
			font-weight: 400;
			@include respond-to(b-1140) {
				width: 73%;
			}
			@include respond-to(b-1105) {
				width: 80%;
			}
			&:hover {
				color: $green;
			}
		}

		.divider {
			width: 100%;
			border-top: 1px solid $medium-grey;
			margin-top: 20px;
			padding-top: 20px;
		}

		.date {
			width: 100%;
			color: $black;
			text-align: center;
			font-size: 14px;
			font-weight: 400;
		}

		.learn-more {
			display: flex;
			justify-content: center;
			align-items: center;
			width: 100%;
			color: $green;
			text-align: center;
			font-size: 14px;
			font-weight: 400;
		}

		.icon {
			margin-top: 2px;
			margin-left: 5px;
			font-size: 10px;
		}

		i {
			color: $green;
		}
*/
}

.emprasas .nosotros .intro, .emprasas .nosotros .outro {
  width: 100%;
  max-width: 1072px;
  padding: 0 20px;
  margin: 0 auto;
}

.emprasas .nosotros .intro h2, .emprasas .nosotros .outro h2 {
  width: 100%;
  margin-bottom: 40px;
  color: #212121;
  text-align: center;
  font-size: 32px;
  line-height: 44px;
}

.emprasas .nosotros .intro p, .emprasas .nosotros .outro p {
  max-width: 800px;
  margin: 0 auto;
  color: #8c8c8c;
  text-align: center;
  font-size: 18px;
}

.emprasas .nosotros .blog-posts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  max-width: 1140px;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 90px 20px 60px;
  margin-right: auto;
  margin-left: auto;
}

.emprasas .nosotros .blog-posts .headline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100px;
  margin: 0 auto 55px;
  background-size: contain;
  background-position: top center;
  background-repeat: no-repeat;
}

.emprasas .nosotros .blog-posts h2 {
  color: #212121;
  font-size: 35px;
  font-weight: 500;
  text-transform: capitalize;
}

.emprasas .nosotros .blog-posts .blog-posts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}

.emprasas .nosotros .blog-posts .blog-post {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  max-width: 30%;
  height: auto;
  margin: 0 10px 50px;
}

@media (max-width: 1140px) {
  .emprasas .nosotros .blog-posts .blog-post {
    max-width: 45%;
  }
}

@media (max-width: 495px) {
  .emprasas .nosotros .blog-posts .blog-post {
    max-width: 90%;
    margin: 0 auto 50px;
  }
}

@media (max-width: 495px) {
  .emprasas .nosotros .blog-posts .blog-post {
    max-width: 95%;
  }
}

.emprasas .nosotros .blog-posts .image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 190px;
  margin: 0 auto 30px;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  -o-object-fit: cover;
     object-fit: cover;
  background-size: cover;
  background-position: top center;
}

.emprasas .nosotros .blog-posts .text {
  min-height: 135px;
}

@media (max-width: 1140px) {
  .emprasas .nosotros .blog-posts .text {
    min-height: 120px;
  }
}

@media (max-width: 1105px) {
  .emprasas .nosotros .blog-posts .text {
    min-height: 110px;
  }
}

@media (max-width: 1010px) {
  .emprasas .nosotros .blog-posts .text {
    min-height: 130px;
  }
}

@media (max-width: 770px) {
  .emprasas .nosotros .blog-posts .text {
    min-height: 200px;
  }
}

@media (max-width: 550px) {
  .emprasas .nosotros .blog-posts .text {
    min-height: 250px;
  }
}

@media (max-width: 495px) {
  .emprasas .nosotros .blog-posts .text {
    min-height: 150px;
  }
}

.emprasas .nosotros .blog-posts p, .emprasas .nosotros .blog-posts a {
  width: 80%;
  margin: 0 auto 10px;
  color: #212121;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
}

@media (max-width: 1140px) {
  .emprasas .nosotros .blog-posts p, .emprasas .nosotros .blog-posts a {
    width: 73%;
  }
}

@media (max-width: 1105px) {
  .emprasas .nosotros .blog-posts p, .emprasas .nosotros .blog-posts a {
    width: 80%;
  }
}

.emprasas .nosotros .blog-posts p:hover, .emprasas .nosotros .blog-posts a:hover {
  color: #71c894;
}

.emprasas .nosotros .blog-posts .divider {
  width: 100%;
  border-top: 1px solid #737272;
  margin-top: 20px;
  padding-top: 20px;
}

.emprasas .nosotros .blog-posts .date {
  width: 100%;
  color: #212121;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
}

.emprasas .nosotros .blog-posts .learn-more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  color: #71c894;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
}

.emprasas .nosotros .blog-posts .icon {
  margin-top: 2px;
  margin-left: 5px;
  font-size: 10px;
}

.emprasas .nosotros .blog-posts i {
  color: #71c894;
}

.emprasas .de-impacto {
  position: relative;
  padding: 80px 0 40px;
  background-color: #f5f5f8;
  z-index: 1;
}

.emprasas .de-impacto .title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: -24px;
  width: 100%;
}

.emprasas .de-impacto h2 {
  padding: 10px 20px;
  margin: 0 auto;
  color: #ffffff;
  background-color: #ff9e7d;
  text-align: center;
  font-weight: 700;
}

.emprasas .de-impacto .impact-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  max-width: 1072px;
  margin: 0 auto;
}

.emprasas .de-impacto .impact-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 33%;
  margin-bottom: 40px;
}

@media (max-width: 575px) {
  .emprasas .de-impacto .impact-item {
    width: 50%;
  }
}

.emprasas .de-impacto .impact-item:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  cursor: pointer;
}

.emprasas .de-impacto .impact-item .image-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 150px;
  margin: 0 auto 0;
}

.emprasas .de-impacto .impact-item img {
  display: block;
  width: 80%;
}

.emprasas .de-impacto .impact-item p {
  width: 80%;
  margin: 0 auto;
  text-align: center;
}

.emprasas .impact-modal {
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 101;
  overflow: auto;
  color: #ffffff;
}

.emprasas .impact-modal .modal-content {
  position: relative;
  margin: 0 auto;
  color: #ffffff;
}

.emprasas .impact-modal .impact-slide {
  padding: 80px;
}

.emprasas .impact-modal .impact-slide:nth-child(odd) {
  background-color: #ff9e7d;
}

.emprasas .impact-modal .impact-slide:nth-child(even) {
  background-color: #424242;
}

.emprasas .impact-modal .image-wrap img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 400px;
  margin: auto auto;
}

.emprasas .impact-modal .caption-wrap {
  width: 100%;
  max-width: 700px;
  margin: 0 auto 0;
  color: #212121;
  text-align: center;
}

.emprasas .impact-modal .caption-wrap h2 {
  max-width: 400px;
  margin: 0 auto 20px;
  text-align: center;
  font-size: 32px;
  line-height: 44px;
  color: #ffffff;
}

.emprasas .impact-modal .caption-wrap li {
  width: 95%;
  max-width: 550px;
  margin: 0 auto 20px;
  color: #ffffff;
  list-style: disc;
  text-align: left;
  font-size: 18px;
  line-height: 20px;
}

.emprasas .impact-modal .caption-wrap li:last-of-type {
  margin-bottom: 0;
}

.emprasas .impact-modal .close {
  color: #212121;
  position: absolute;
  top: 42px;
  right: 46px;
  font-size: 35px;
  cursor: pointer;
}

@media (max-width: 480px) {
  .emprasas .impact-modal .close {
    top: 21px;
    right: 23px;
  }
}

.emprasas .impact-modal .prev,
.emprasas .impact-modal .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  color: #212121;
  font-size: 35px;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

.emprasas .impact-modal .next {
  right: 0;
}

@media (max-width: 1040px) {
  .emprasas .impact-modal .next {
    right: 46px;
  }
}

@media (max-width: 480px) {
  .emprasas .impact-modal .next {
    right: 23px;
  }
}

.emprasas .impact-modal .prev {
  left: 0;
}

@media (max-width: 1040px) {
  .emprasas .impact-modal .prev {
    left: 46px;
  }
}

@media (max-width: 480px) {
  .emprasas .impact-modal .prev {
    left: 23px;
  }
}

.emprasas .lo-que-hacemos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  position: relative;
  overflow-y: visible;
}

.emprasas .lo-que-hacemos h2 {
  max-width: 400px;
  padding-left: 118px;
  margin: 170px auto 0;
  text-align: center;
  font-size: 32px;
  line-height: 44px;
}

@media (max-width: 1602px) {
  .emprasas .lo-que-hacemos h2 {
    padding-left: 109px;
  }
}

@media (max-width: 1075px) {
  .emprasas .lo-que-hacemos h2 {
    padding-left: 83px;
  }
}

@media (max-width: 985px) {
  .emprasas .lo-que-hacemos h2 {
    padding-left: 81px;
  }
}

@media (max-width: 985px) {
  .emprasas .lo-que-hacemos h2 {
    margin-top: 190px;
  }
}

@media (max-width: 840px) {
  .emprasas .lo-que-hacemos h2 {
    padding-left: 72px;
    margin-top: 210px;
  }
}

@media (max-width: 590px) {
  .emprasas .lo-que-hacemos h2 {
    padding-left: 50px;
    margin-top: 230px;
    font-size: 24px;
  }
}

.emprasas .lo-que-hacemos h3 {
  max-width: 400px;
  padding-left: 118px;
  margin: 20px auto 0;
  text-align: center;
  font-size: 42px;
  line-height: 44px;
}

@media (max-width: 1602px) {
  .emprasas .lo-que-hacemos h3 {
    padding-left: 109px;
  }
}

@media (max-width: 1075px) {
  .emprasas .lo-que-hacemos h3 {
    padding-left: 83px;
  }
}

@media (max-width: 985px) {
  .emprasas .lo-que-hacemos h3 {
    padding-left: 81px;
  }
}

@media (max-width: 985px) {
  .emprasas .lo-que-hacemos h3 {
    margin-top: 190px;
  }
}

@media (max-width: 840px) {
  .emprasas .lo-que-hacemos h3 {
    padding-left: 72px;
    margin-top: 210px;
  }
}

@media (max-width: 590px) {
  .emprasas .lo-que-hacemos h3 {
    padding-left: 50px;
    margin-top: 230px;
    font-size: 24px;
  }
}

.emprasas .lo-que-hacemos .lo-que-hacemos-image {
  width: 1803px;
  height: 631px;
  position: absolute;
  margin: -120px auto 0 auto;
  background-image: url("https://mfacdn.cachefly.net/chooseveg/sites/3/2020/05/el_antes_y_el_ahora-no_arrow.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  z-index: 5;
  overflow-y: visible;
}

@media (max-width: 1935px) {
  .emprasas .lo-que-hacemos .lo-que-hacemos-image {
    width: 100%;
    height: 631px;
    background-size: 100%;
  }
}

@media (max-width: 1602px) {
  .emprasas .lo-que-hacemos .lo-que-hacemos-image {
    background-size: 120%;
  }
}

@media (max-width: 985px) {
  .emprasas .lo-que-hacemos .lo-que-hacemos-image {
    margin-top: -150px;
  }
}

@media (max-width: 840px) {
  .emprasas .lo-que-hacemos .lo-que-hacemos-image {
    margin-top: -200px;
  }
}

@media (max-width: 590px) {
  .emprasas .lo-que-hacemos .lo-que-hacemos-image {
    margin-top: -220px;
  }
}

.emprasas .lo-que-hacemos-text {
  width: 100%;
  padding: 0 20px 80px;
  margin-top: 450px;
}

@media (max-width: 1935px) {
  .emprasas .lo-que-hacemos-text {
    margin-top: 450px;
  }
}

@media (max-width: 1602px) {
  .emprasas .lo-que-hacemos-text {
    margin-top: 450px;
  }
}

@media (max-width: 985px) {
  .emprasas .lo-que-hacemos-text {
    margin-top: 350px;
  }
}

@media (max-width: 840px) {
  .emprasas .lo-que-hacemos-text {
    margin-top: 300px;
  }
}

@media (max-width: 590px) {
  .emprasas .lo-que-hacemos-text {
    margin-top: 250px;
  }
}

.emprasas .lo-que-hacemos-text .text-wrap {
  width: 100%;
  max-width: 1072px;
  margin: 0 auto;
  text-align: center;
}

.emprasas .lo-que-hacemos-text .text-wrap p {
  max-width: 800px;
  margin: 0 auto;
  color: #8c8c8c;
  text-align: center;
  font-size: 18px;
}

.emprasas .lo-que-hacemos-text .text-wrap a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
      justify-content: center;
  -webkit-box-align: center;
  min-height: 2.25em;
  padding: 0.5em 1.5rem;
  margin: 40px auto 0;
  border: 0;
  -ms-flex-align: center;
      align-items: center;
  background: #71c894;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.25;
  -webkit-transition: all 0.25s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.25s cubic-bezier(0.19, 1, 0.22, 1);
  outline: none;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  line-height: 1.625;
  font-weight: 500;
}

.emprasas .lo-que-hacemos-text .text-wrap a:hover {
  background-color: #4cba78;
}

.emprasas .innovemos {
  width: 100%;
  padding: 80px 20px;
  background: #ff9e7d;
}

.emprasas .innovemos .title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.emprasas .innovemos .title-wrap h2 {
  width: 100%;
  margin-bottom: 40px;
  color: #212121;
  text-align: center;
  font-size: 32px;
  line-height: 44px;
}

.emprasas .innovemos .circle-graph-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  max-width: 1072px;
  margin: 0 auto;
}

@media (max-width: 810px) {
  .emprasas .innovemos .circle-graph-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.emprasas .innovemos .animation-item {
  margin-bottom: 1rem;
  width: 175px;
}

@media (max-width: 810px) {
  .emprasas .innovemos .animation-item {
    width: 40%;
    margin: 0 auto 40px;
  }
}

@media (max-width: 480px) {
  .emprasas .innovemos .animation-item {
    width: 100%;
  }
}

.emprasas .innovemos .animation-item h3 {
  display: block;
  width: 100%;
  margin: 20px auto 0;
  color: #ffffff;
  text-align: center;
  font-weight: bold;
}

.emprasas .innovemos .graph-text {
  fill: #ffffff;
}

.emprasas .innovemos .percent {
  fill: #ffffff;
}

.emprasas .innovemos .animation-graph-container {
  height: 175px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  text-align: center;
  width: 175px;
}

.emprasas .innovemos .animation-graph-container .circle-bg {
  fill: none;
  stroke: #ffffff;
  stroke-width: 8;
}

.emprasas .innovemos .animation-graph-container .graph-circle {
  fill: none;
  stroke-linecap: initial;
}

.emprasas .innovemos .animation-graph-container .circle-animation {
  stroke-width: 8;
  stroke: #71c894;
  -webkit-animation: progress 1s ease-out forwards;
          animation: progress 1s ease-out forwards;
  /*
				border-left: 3px solid $pink;
				border-right: 3px solid $pink;
*/
}

@-webkit-keyframes progress {
  0% {
    stroke-dasharray: 0 100;
  }
}

@keyframes progress {
  0% {
    stroke-dasharray: 0 100;
  }
}

.emprasas .quote-section {
  width: 100%;
  padding: 0 20px 85px;
  background: #ff9e7d;
}

.emprasas .quote-section .quote-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 1072px;
  margin: 0 auto;
}

@media (max-width: 790px) {
  .emprasas .quote-section .quote-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media (max-width: 500px) {
  .emprasas .quote-section .quote-wrap {
    max-width: 310px;
    margin: 0 auto;
  }
}

.emprasas .quote-section .quotation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 60%;
  color: #ffffff;
  font-size: 57.06px;
  line-height: 66.94px;
  font-weight: 600;
}

@media (max-width: 790px) {
  .emprasas .quote-section .quotation {
    width: 100%;
  }
}

@media (max-width: 500px) {
  .emprasas .quote-section .quotation {
    margin: 0 auto;
    font-size: 30px;
    line-height: 32px;
  }
}

.emprasas .quote-section .annotation {
  width: 30%;
  margin-right: 20px;
  color: #212121;
}

@media (max-width: 790px) {
  .emprasas .quote-section .annotation {
    width: 100%;
    margin-right: auto;
    margin-left: 30px;
  }
}

@media (max-width: 500px) {
  .emprasas .quote-section .annotation {
    margin: 0 auto;
  }
}

.emprasas .other-data {
  padding: 85px 20px;
  /*
		.image:nth-of-type(odd) {
			order: 1;
		}

		.text-wrap:nth-of-type(odd) {
			order: 2;
			margin-left: 100px;
			@include respond-to(b-770) {
				margin-left: auto;
			}
		}

		.data:nth-of-type(odd), .source:nth-of-type(odd) {
			text-align: left;
			@include respond-to(b-770) {
				text-align: center;
			}
		}



		.image:nth-of-type(even) {
			order: 2;
			@include respond-to(b-770) {
				order: 1;
			}
		}

		.text-wrap:nth-of-type(even) {
			order: 1;
			margin-right: 100px;
			@include respond-to(b-770) {
				order: 2;
				margin-right: auto;
			}
		}

		.data:nth-of-type(even), .source:nth-of-type(even) {
			text-align: right;
			@include respond-to(b-770) {
				text-align: center;
			}
		}
*/
}

.emprasas .other-data .title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}

.emprasas .other-data h2 {
  width: 100%;
  margin-bottom: 80px;
  color: #212121;
  text-align: center;
  font-size: 32px;
  line-height: 44px;
  /*
			padding: 10px 20px;
			margin: 0 auto 30px;
			color: $white;
			background-color: $pink;
			text-align: center;
			font-weight: $bold;
*/
}

.emprasas .other-data .data-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 1072px;
  margin: 0 auto;
  /*
			&:after {
				content: "";
				display: block;
				margin: 0 auto;
				width: 50px;
				padding-top: 40px;
				border-bottom: 5px solid $pink;
			}
*/
}

@media (max-width: 770px) {
  .emprasas .other-data .data-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.emprasas .other-data .data-wrap .image {
  width: 182px;
  height: 182px;
  border: 5px solid #ff9e7d;
  border-radius: 50%;
  background-size: cover;
  background-position: center center;
}

@media (max-width: 770px) {
  .emprasas .other-data .data-wrap .image {
    margin: 0 auto;
  }
}

.emprasas .other-data .data-wrap .text-wrap {
  width: 62%;
}

@media (max-width: 770px) {
  .emprasas .other-data .data-wrap .text-wrap {
    width: 80%;
    margin: 20px auto 0;
  }
}

.emprasas .other-data .data-wrap .data {
  width: 100%;
  max-width: 790px;
  margin: 0 auto 20px;
  color: #212121;
  font-size: 24px;
}

.emprasas .other-data .data-wrap .source {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  color: #8c8c8c;
  font-size: 18px;
}

.emprasas .other-data .image-left .image {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.emprasas .other-data .image-left .text-wrap {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin-left: 100px;
}

@media (max-width: 770px) {
  .emprasas .other-data .image-left .text-wrap {
    margin-left: auto;
  }
}

.emprasas .other-data .image-left .data, .emprasas .other-data .image-left .source {
  text-align: left;
}

@media (max-width: 770px) {
  .emprasas .other-data .image-left .data, .emprasas .other-data .image-left .source {
    text-align: center;
  }
}

.emprasas .other-data .image-right .image {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

@media (max-width: 770px) {
  .emprasas .other-data .image-right .image {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.emprasas .other-data .image-right .text-wrap {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  margin-right: 100px;
}

@media (max-width: 770px) {
  .emprasas .other-data .image-right .text-wrap {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-right: auto;
  }
}

.emprasas .other-data .image-right .data, .emprasas .other-data .image-right .source {
  text-align: right;
}

@media (max-width: 770px) {
  .emprasas .other-data .image-right .data, .emprasas .other-data .image-right .source {
    text-align: center;
  }
}

.emprasas .other-data .data-divider {
  width: 100%;
  height: 3px;
  max-width: 318px;
  margin: 80px auto;
  background-image: url("https://mfacdn.cachefly.net/chooseveg/sites/3/2020/09/data-divider.png");
  background-position: center center;
  background-size: 318px 3px;
  background-repeat: no-repeat;
}

.emprasas .other-data .data-divider:last-of-type {
  display: none;
}

.emprasas .beneficios {
  position: relative;
  padding: 80px 0 40px;
  background-color: #f5f5f8;
  z-index: 1;
}

.emprasas .beneficios .title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  /*
			position: absolute;
			top: -24px;
			*/
  width: 100%;
}

.emprasas .beneficios h2 {
  width: 100%;
  margin-bottom: 40px;
  color: #212121;
  text-align: center;
  font-size: 32px;
  line-height: 44px;
  /*
			padding: 10px 100px;
			margin: 0 auto 40px;
			color: $white;
			background-color: $pink;
			text-align: center;
			font-weight: $bold;
*/
}

.emprasas .beneficios .benefit-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-width: 1072px;
  margin: 0 auto;
}

.emprasas .beneficios .benefit-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 33%;
  margin-bottom: 40px;
}

@media (max-width: 575px) {
  .emprasas .beneficios .benefit-item {
    width: 50%;
  }
}

.emprasas .beneficios .benefit-item:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  cursor: pointer;
}

.emprasas .beneficios .benefit-item .image-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 150px;
  margin: 0 auto 0;
}

.emprasas .beneficios .benefit-item img {
  display: block;
  width: 80%;
}

.emprasas .beneficios .benefit-item p {
  width: 80%;
  margin: 0 auto;
  text-align: center;
}

.emprasas .benefit-modal {
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 101;
  overflow: auto;
  color: #ffffff;
}

.emprasas .benefit-modal .modal-content {
  position: relative;
  margin: 0 auto;
  color: #ffffff;
}

.emprasas .benefit-modal .benefit-slide {
  padding: 80px;
}

.emprasas .benefit-modal .benefit-slide:nth-child(odd) {
  background-color: #ff9e7d;
}

.emprasas .benefit-modal .benefit-slide:nth-child(even) {
  background-color: #424242;
}

.emprasas .benefit-modal .image-wrap img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 400px;
  margin: auto auto;
}

.emprasas .benefit-modal .caption-wrap {
  width: 100%;
  max-width: 700px;
  margin: 0 auto 0;
  color: #ffffff;
  text-align: center;
}

.emprasas .benefit-modal .caption-wrap h2 {
  max-width: 400px;
  margin: 0 auto 20px;
  text-align: center;
  font-size: 32px;
  line-height: 44px;
  color: #ffffff;
}

.emprasas .benefit-modal .caption-wrap p {
  color: #ffffff;
  text-align: left;
}

.emprasas .benefit-modal .caption-wrap li {
  width: 95%;
  max-width: 550px;
  margin: 0 auto 20px;
  color: #ffffff;
  list-style: disc;
  text-align: left;
  font-size: 18px;
  line-height: 20px;
}

.emprasas .benefit-modal .caption-wrap li:last-of-type {
  margin-bottom: 0;
}

.emprasas .benefit-modal .close {
  color: #212121;
  position: absolute;
  top: 42px;
  right: 46px;
  font-size: 35px;
  cursor: pointer;
}

@media (max-width: 480px) {
  .emprasas .benefit-modal .close {
    top: 21px;
    right: 23px;
  }
}

.emprasas .benefit-modal .prev,
.emprasas .benefit-modal .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  color: #212121;
  font-size: 35px;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

.emprasas .benefit-modal .next {
  right: 0;
}

@media (max-width: 1040px) {
  .emprasas .benefit-modal .next {
    right: 46px;
  }
}

@media (max-width: 480px) {
  .emprasas .benefit-modal .next {
    right: 23px;
  }
}

.emprasas .benefit-modal .prev {
  left: 0;
}

@media (max-width: 1040px) {
  .emprasas .benefit-modal .prev {
    left: 46px;
  }
}

@media (max-width: 480px) {
  .emprasas .benefit-modal .prev {
    left: 23px;
  }
}

.emprasas .video-section {
  width: 100%;
  padding: 80px 0 0;
}

.emprasas .video-section .title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-width: 535px;
  margin: 0 auto;
}

.emprasas .video-section .title-wrap h2 {
  width: 100%;
  margin-bottom: 40px;
  color: #212121;
  text-align: center;
  font-size: 32px;
  line-height: 44px;
}

.emprasas .video-section .video {
  width: 100%;
  max-width: 560px;
  position: relative;
  margin: 0 auto;
}

.emprasas .video-section .video .video-wrapper {
  width: 100%;
  height: 0;
  position: relative;
  padding: 30px 20px 45.25%;
  margin: 0 auto;
}

@media (max-width: 600px) {
  .emprasas .video-section .video .video-wrapper {
    padding: 30px 20px 70%;
  }
}

.emprasas .video-section .video .video-wrapper iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 3;
}

.emprasas .video-section .video .video-shadow {
  width: 560px;
  height: 290px;
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: #ff9e7d;
  z-index: 2;
}

.emprasas .slider {
  width: 100%;
  padding: 120px 20px 80px;
}

.emprasas .slider .slide {
  width: 100%;
}

.emprasas .slider .quote-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1072px;
  margin: 0 auto;
}

@media (max-width: 650px) {
  .emprasas .slider .quote-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.emprasas .slider .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 20%;
}

@media (max-width: 650px) {
  .emprasas .slider .logo {
    width: 50%;
    margin-bottom: 40px;
  }
}

.emprasas .slider .logo img {
  max-width: 100%;
}

.emprasas .slider .quote {
  width: 65%;
  margin-right: 5%;
}

@media (max-width: 650px) {
  .emprasas .slider .quote {
    width: 80%;
  }
}

.emprasas .slider .quote .quotation {
  width: 100%;
  margin-bottom: 40px;
  color: #212121;
  font-size: 19px;
  font-weight: 400;
  line-height: 22px;
}

.emprasas .slider .quote .annotation {
  width: 100%;
  color: #8c8c8c;
  font-size: 18px;
  text-align: right;
}

.emprasas .slider .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 40px 0 0 0;
  padding: 1rem 0;
  list-style-type: none;
}

.emprasas .slider .slick-dots li {
  margin: 0 0.25rem;
}

.emprasas .slider .slick-dots button {
  display: block;
  width: 1rem;
  height: 1rem;
  padding: 0;
  border: none;
  border-radius: 100%;
  background-color: #8c8c8c;
  text-indent: -9999px;
}

.emprasas .slider .slick-dots li.slick-active button {
  background-color: #4e4e4e;
}

.emprasas .innovar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  position: relative;
  overflow-y: visible;
}

.emprasas .innovar .innovar-image {
  width: 100%;
  height: 730px;
  position: absolute;
  margin: -120px auto 0 auto;
  background-image: url("https://mfacdn.cachefly.net/chooseveg/sites/3/2020/04/innovemos.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  z-index: 5;
  overflow-y: visible;
}

@media (max-width: 1935px) {
  .emprasas .innovar .innovar-image {
    width: 100%;
    height: 631px;
    background-size: 100%;
  }
}

@media (max-width: 1602px) {
  .emprasas .innovar .innovar-image {
    background-size: 120%;
  }
}

@media (max-width: 985px) {
  .emprasas .innovar .innovar-image {
    margin-top: -150px;
  }
}

@media (max-width: 840px) {
  .emprasas .innovar .innovar-image {
    margin-top: -200px;
  }
}

@media (max-width: 590px) {
  .emprasas .innovar .innovar-image {
    margin-top: -250px;
  }
}

.emprasas .innovar-text {
  width: 100%;
  padding: 120px 20px 120px;
  background-image: url("https://mfacdn.cachefly.net/chooseveg/sites/3/2020/04/innovemos.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  overflow: visible;
}

.emprasas .innovar-text .text-wrap {
  width: 100%;
  max-width: 933px;
  margin: 0 auto;
  text-align: center;
}

@media (max-width: 1435px) {
  .emprasas .innovar-text .text-wrap {
    max-width: 790px;
  }
}

@media (max-width: 1388px) {
  .emprasas .innovar-text .text-wrap {
    max-width: 650px;
  }
}

.emprasas .innovar-text .text-wrap h2 {
  margin: 0 auto;
  color: #71c894;
  text-align: center;
  font-size: 57.06px;
  line-height: 66.94px;
  font-weight: 600;
}

@media (max-width: 675px) {
  .emprasas .innovar-text .text-wrap h2 {
    font-size: 32.06px;
    line-height: 46.94px;
  }
}

.emprasas .innovar-text .text-wrap a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
      justify-content: center;
  -webkit-box-align: center;
  min-height: 2.25em;
  padding: 0.5em 1.5rem;
  margin: 40px auto 0;
  border: 0;
  -ms-flex-align: center;
      align-items: center;
  background: #71c894;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.25;
  -webkit-transition: all 0.25s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.25s cubic-bezier(0.19, 1, 0.22, 1);
  outline: none;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  line-height: 1.625;
  font-weight: 500;
}

.emprasas .innovar-text .text-wrap a:hover {
  background-color: #4cba78;
}

.emprasas .recursos {
  width: 100%;
  padding: 120px 20px 100px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.emprasas .recursos h2 {
  width: 100%;
  margin-bottom: 40px;
  color: #212121;
  text-align: center;
  font-size: 32px;
  line-height: 44px;
}

.emprasas .recursos .recursos-content-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.emprasas .recursos .recursos-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 30%;
  margin: 0 20px 20px;
}

@media (max-width: 950px) {
  .emprasas .recursos .recursos-content {
    width: 40%;
  }
}

@media (max-width: 550px) {
  .emprasas .recursos .recursos-content {
    width: 80%;
    margin: 0 auto 20px;
  }
}

.emprasas .recursos .recursos-content img {
  width: 100%;
}

.emprasas .recursos .recursos-content p {
  width: 100%;
  margin: 20px auto 0;
  color: #8c8c8c;
  text-align: center;
  font-size: 18px;
}

.emprasas .recursos .recursos-content:hover {
  /*
				transform: scale(1.1);
				-webkit-transition: all .3s ease;
				-moz-transition: all .3s ease;
				-o-transition: all .3s ease;
				transition: all .3s ease;
*/
  cursor: pointer;
}

.emprasas .recursos .recursos-content:hover p {
  color: #71c894;
}

.emprasas .recursos .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 40px 0 0 0;
  padding: 1rem 0;
  list-style-type: none;
}

.emprasas .recursos .slick-dots li {
  margin: 0 0.25rem;
}

.emprasas .recursos .slick-dots button {
  display: block;
  width: 1rem;
  height: 1rem;
  padding: 0;
  border: none;
  border-radius: 100%;
  background-color: #8c8c8c;
  text-indent: -9999px;
}

.emprasas .recursos .slick-dots li.slick-active button {
  background-color: #4e4e4e;
}

.emprasas .conoce-mas {
  width: 100%;
}

.emprasas .conoce-mas .conoce-header {
  width: 100%;
  height: 340px;
  position: relative;
  padding: 100px 20px 0;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(#FFF)), url("https://mfacdn.cachefly.net/chooseveg/sites/3/2020/08/EligeVeg-Companies_conoce-mas.jpg") no-repeat center top;
  background: linear-gradient(to bottom, transparent 0%, #FFF 100%), url("https://mfacdn.cachefly.net/chooseveg/sites/3/2020/08/EligeVeg-Companies_conoce-mas.jpg") no-repeat center top;
  background-size: cover;
  z-index: 1;
}

.emprasas .conoce-mas .conoce-header h2 {
  width: 290px;
  padding: 5px 40px;
  margin: 0 auto;
  color: #212121;
  background-color: #ffffff;
  border-radius: 100px 100px 100px 100px;
  text-align: center;
  font-size: 32px;
}

.emprasas .conoce-mas .conoce-content {
  width: 100%;
  max-width: 1090px;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 70px 100px;
  margin: -80px auto 0;
  background-color: #ffffff;
  z-index: 5;
}

@media (max-width: 550px) {
  .emprasas .conoce-mas .conoce-content {
    padding: 70px 20px;
  }
}

.emprasas .conoce-mas .intro {
  width: 100%;
  margin-bottom: 60px;
}

.emprasas .conoce-mas .intro h3 {
  width: 100%;
  margin-bottom: 40px;
  color: #71c894;
  text-align: center;
  font-size: 35px;
  line-height: 45px;
}

@media (max-width: 675px) {
  .emprasas .conoce-mas .intro h3 {
    text-align: left;
    font-size: 24px;
    line-height: 30px;
  }
}

.emprasas .conoce-mas .intro p {
  width: 100%;
  margin: 0 auto 20px;
  color: #212121;
  text-align: center;
  font-size: 17px;
  line-height: 26px;
}

@media (max-width: 675px) {
  .emprasas .conoce-mas .intro p {
    text-align: left;
    font-size: 16px;
    line-height: 24px;
  }
}

.emprasas .conoce-mas .accordion {
  width: 100%;
  margin-bottom: 80px;
  /*
			h4 {
				//display: block;
				display: block;
				margin: 0 auto;
				padding: 10px 40px;
				color: $black;
				border: 1px solid $pink;
				border-radius: 100px 100px 100px 100px;
				text-align: center;
				font-size: 26px;
				line-height: 34px;
				font-weight: 300;
				cursor: pointer;
				@extend .no-select;
			}
*/
  /*
				&:after {
					content: '\003e';
				}
				&:hover::after {
					content: '\f530';
				}
*/
  /*
			h4:hover {
				h4:after {
					content: '\f530';
				}
			}
*/
}

.emprasas .conoce-mas .accordion h3 {
  width: 100%;
  margin-bottom: 40px;
  color: #71c894;
  text-align: center;
  font-size: 35px;
  line-height: 45px;
}

@media (max-width: 675px) {
  .emprasas .conoce-mas .accordion h3 {
    text-align: left;
    font-size: 24px;
    line-height: 30px;
  }
}

.emprasas .conoce-mas .accordion .transition, .emprasas .conoce-mas .accordion p, .emprasas .conoce-mas .accordion ul li i:before, .emprasas .conoce-mas .accordion ul li i:after {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.emprasas .conoce-mas .accordion .flipIn, .emprasas .conoce-mas .accordion ul li {
  -webkit-animation: flipdown 0.5s ease both;
          animation: flipdown 0.5s ease both;
}

.emprasas .conoce-mas .accordion .no-select, .emprasas .conoce-mas .accordion h4 {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.emprasas .conoce-mas .accordion h4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  font-size: 26px;
  line-height: 34px;
  font-weight: 300;
  cursor: pointer;
}

@media (max-width: 675px) {
  .emprasas .conoce-mas .accordion h4 {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    text-align: left;
    font-size: 24px;
    line-height: 30px;
  }
}

.emprasas .conoce-mas .accordion h4 .fas {
  width: 20px;
  height: 20px;
  position: static;
  -webkit-transform: none;
          transform: none;
  margin-top: auto;
  margin-left: 10px;
  margin-bottom: auto;
  color: #212121;
  font-size: 20px;
  line-height: 21px;
  opacity: 1;
}

@media (max-width: 675px) {
  .emprasas .conoce-mas .accordion h4 .fas {
    text-align: left;
    font-size: 16px;
    line-height: 24px;
  }
}

.emprasas .conoce-mas .accordion h4 .fa-chevron-right {
  display: inline-block;
}

.emprasas .conoce-mas .accordion h4 .fa-glasses {
  display: none;
}

.emprasas .conoce-mas .accordion h4:hover .fa-chevron-right {
  display: none;
}

.emprasas .conoce-mas .accordion h4:hover .fa-glasses {
  display: inline-block;
}

.emprasas .conoce-mas .accordion li:hover h4 .fa-chevron-right {
  display: none;
}

.emprasas .conoce-mas .accordion li:hover h4 .fa-glasses {
  display: inline-block;
}

.emprasas .conoce-mas .accordion p {
  width: 100%;
  max-width: 800px;
  max-height: 800px;
  position: relative;
  overflow: hidden;
  margin: 20px auto 0;
  color: #212121;
  text-align: center;
  font-size: 17px;
  line-height: 26px;
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  z-index: 2;
}

@media (max-width: 675px) {
  .emprasas .conoce-mas .accordion p {
    text-align: left;
    font-size: 16px;
    line-height: 24px;
  }
}

.emprasas .conoce-mas .accordion ul {
  list-style: none;
  -webkit-perspective: 900;
          perspective: 900;
  padding: 0;
  margin: 0;
}

.emprasas .conoce-mas .accordion ul li {
  position: relative;
  padding: 0;
  margin: 0;
  padding-bottom: 4px;
  padding-top: 18px;
}

.emprasas .conoce-mas .accordion ul li:nth-of-type(1) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.emprasas .conoce-mas .accordion ul li:nth-of-type(2) {
  -webkit-animation-delay: 0.75s;
          animation-delay: 0.75s;
}

.emprasas .conoce-mas .accordion ul li:nth-of-type(3) {
  -webkit-animation-delay: 1.0s;
          animation-delay: 1.0s;
}

.emprasas .conoce-mas .accordion ul li:last-of-type {
  padding-bottom: 0;
}

@media (max-width: 675px) {
  .emprasas .conoce-mas .accordion ul li {
    text-align: left;
    font-size: 24px;
    line-height: 30px;
  }
}

.emprasas .conoce-mas .accordion ul li i {
  position: absolute;
  -webkit-transform: translate(-6px, 0);
          transform: translate(-6px, 0);
  margin-top: 16px;
  right: 0;
}

.emprasas .conoce-mas .accordion ul li i:before, .emprasas .conoce-mas .accordion ul li i:after {
  content: "";
  position: absolute;
  width: 3px;
  height: 9px;
}

.emprasas .conoce-mas .accordion ul li i:before {
  -webkit-transform: translate(-2px, 0) rotate(45deg);
          transform: translate(-2px, 0) rotate(45deg);
}

.emprasas .conoce-mas .accordion ul li i:after {
  -webkit-transform: translate(2px, 0) rotate(-45deg);
          transform: translate(2px, 0) rotate(-45deg);
}

.emprasas .conoce-mas .accordion ul li input[type=checkbox] {
  position: absolute;
  cursor: pointer;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
}

.emprasas .conoce-mas .accordion ul li input[type=checkbox]:checked ~ p {
  margin-top: 0;
  max-height: 0;
  opacity: 0;
  -webkit-transform: translate(0, 50%);
          transform: translate(0, 50%);
}

.emprasas .conoce-mas .accordion ul li input[type=checkbox]:checked ~ i:before {
  -webkit-transform: translate(2px, 0) rotate(45deg);
          transform: translate(2px, 0) rotate(45deg);
}

.emprasas .conoce-mas .accordion ul li input[type=checkbox]:checked ~ i:after {
  -webkit-transform: translate(-2px, 0) rotate(-45deg);
          transform: translate(-2px, 0) rotate(-45deg);
}

@-webkit-keyframes flipdown {
  0% {
    opacity: 0;
    -webkit-transform-origin: top center;
            transform-origin: top center;
    -webkit-transform: rotateX(-90deg);
            transform: rotateX(-90deg);
  }
  5% {
    opacity: 1;
  }
  80% {
    -webkit-transform: rotateX(8deg);
            transform: rotateX(8deg);
  }
  83% {
    -webkit-transform: rotateX(6deg);
            transform: rotateX(6deg);
  }
  92% {
    -webkit-transform: rotateX(-3deg);
            transform: rotateX(-3deg);
  }
  100% {
    -webkit-transform-origin: top center;
            transform-origin: top center;
    -webkit-transform: rotateX(0deg);
            transform: rotateX(0deg);
  }
}

@keyframes flipdown {
  0% {
    opacity: 0;
    -webkit-transform-origin: top center;
            transform-origin: top center;
    -webkit-transform: rotateX(-90deg);
            transform: rotateX(-90deg);
  }
  5% {
    opacity: 1;
  }
  80% {
    -webkit-transform: rotateX(8deg);
            transform: rotateX(8deg);
  }
  83% {
    -webkit-transform: rotateX(6deg);
            transform: rotateX(6deg);
  }
  92% {
    -webkit-transform: rotateX(-3deg);
            transform: rotateX(-3deg);
  }
  100% {
    -webkit-transform-origin: top center;
            transform-origin: top center;
    -webkit-transform: rotateX(0deg);
            transform: rotateX(0deg);
  }
}

.emprasas .conoce-mas .outro h3 {
  width: 100%;
  max-width: 600px;
  margin: 0 auto 40px;
  color: #71c894;
  text-align: center;
  font-size: 35px;
  line-height: 45px;
}

@media (max-width: 675px) {
  .emprasas .conoce-mas .outro h3 {
    text-align: left;
    font-size: 24px;
    line-height: 30px;
  }
}

.emprasas .conoce-mas .outro p {
  color: #212121;
  text-align: center;
  font-size: 17px;
  line-height: 26px;
}

@media (max-width: 675px) {
  .emprasas .conoce-mas .outro p {
    text-align: left;
    font-size: 16px;
    line-height: 24px;
  }
}

.emprasas .colaboradores {
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 0 100px 0;
}

.emprasas .colaboradores h2 {
  width: 100%;
  margin-bottom: 40px;
  color: #212121;
  text-align: center;
  font-size: 32px;
  line-height: 44px;
}

.emprasas .colaboradores p {
  max-width: 800px;
  margin: 0 auto;
  color: #8c8c8c;
  text-align: center;
  font-size: 18px;
}

.emprasas .colaboradores .colaboradores-content-wrap {
  width: 90%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.emprasas .colaboradores .colaboradores-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 30%;
  margin: 0 20px 20px;
}

@media (max-width: 950px) {
  .emprasas .colaboradores .colaboradores-content {
    width: 40%;
  }
}

@media (max-width: 550px) {
  .emprasas .colaboradores .colaboradores-content {
    width: 80%;
    margin: 0 auto 20px;
  }
}

.emprasas .colaboradores .colaboradores-content .colaborador-img-container {
  width: 100%;
  height: 260px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.emprasas .colaboradores .colaboradores-content .colaborador-img-container img {
  width: 100%;
  max-width: 260px;
}

.emprasas .colaboradores .colaboradores-content h4 {
  color: #71c894;
  text-align: center;
  font-size: 18px;
  margin: 0 0 0.5em 0;
  min-height: 110px;
}

.emprasas .colaboradores .colaboradores-content p {
  width: 100%;
  margin: 20px auto 0;
  color: #8c8c8c;
  text-align: center;
  font-size: 18px;
}

.emprasas .colaboradores .colaboradores-content .colaboradores-text-containter {
  background-color: #fdf4f0;
  min-height: 400px;
  padding: 1em 2em;
}

.emprasas .colaboradores .colaboradores-content:hover h4 {
  color: #ff9e7d;
}

.emprasas .colaboradores .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 40px 0 0 0;
  padding: 1rem 0;
  list-style-type: none;
}

.emprasas .colaboradores .slick-dots li {
  margin: 0 0.25rem;
}

.emprasas .colaboradores .slick-dots button {
  display: block;
  width: 1rem;
  height: 1rem;
  padding: 0;
  border: none;
  border-radius: 100%;
  background-color: #8c8c8c;
  text-indent: -9999px;
}

.emprasas .colaboradores .slick-dots li.slick-active button {
  background-color: #4e4e4e;
}

.emprasas .colaboradores .data-divider {
  width: 100%;
  height: 3px;
  max-width: 318px;
  margin: 80px auto;
  background-image: url("https://mfacdn.cachefly.net/chooseveg/sites/3/2020/09/data-divider.png");
  background-position: center center;
  background-size: 318px 3px;
  background-repeat: no-repeat;
}

.emprasas .colaboradores .data-divider:last-of-type {
  display: none;
}

.emprasas .contacto {
  width: 100%;
  padding: 120px 20px;
  background-color: #f5f5f8;
}

.emprasas .contacto .title-wrap h2 {
  width: 100%;
  margin-bottom: 100px;
  color: #212121;
  text-align: center;
  font-size: 32px;
  line-height: 44px;
}

.emprasas .contacto .content-wrap {
  width: 100%;
}

.emprasas .contacto .content-wrap h3 {
  margin-bottom: 40px;
  color: #212121;
  text-align: center;
  font-size: 24px;
}

.emprasas .contacto .content-wrap .button-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}

.emprasas .contacto .content-wrap a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
      justify-content: center;
  -webkit-box-align: center;
  min-height: 2.25em;
  padding: 0.5em 1.5rem;
  margin: 20px auto;
  border: 0;
  -ms-flex-align: center;
      align-items: center;
  background: #71c894;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.25;
  -webkit-transition: all 0.25s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.25s cubic-bezier(0.19, 1, 0.22, 1);
  outline: none;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  line-height: 1.625;
  font-weight: 500;
}

.emprasas .contacto .content-wrap a:hover {
  background-color: #4cba78;
}

.emprasas .contacto .content-wrap p {
  max-width: 800px;
  margin: 0 auto;
  color: #8c8c8c;
  text-align: center;
  font-size: 18px;
}

.emprasas .contacto .image-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}

.emprasas .contacto .image-wrap img {
  max-width: 800px;
  margin: 50px auto 0;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .col {
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
            flex: 0 0 auto;
  }
}

@media print {
  html {
    font-size: 9pt;
  }
  * {
    color: #000;
    background: transparent;
  }
  p {
    orphans: 2;
    widows: 2;
  }
  .container,
  .post__content {
    max-width: none !important;
  }
  .header {
    position: relative !important;
  }
  .header__section--menu, .header__section--search, .header__section--trigger, .header__section--cart {
    display: none !important;
  }
  .page__header,
  .footer,
  .share,
  .meta,
  #vsg-card-form,
  .loading-bar,
  .no-print,
  .top-bar {
    display: none !important;
  }
  .post__title {
    margin-bottom: 1.5rem;
  }
  h1, h2, h3, h4, h5, h6 {
    -webkit-column-break-after: avoid;
            break-after: avoid-page;
    page-break-after: avoid;
  }
  .hero {
    background: transparent !important;
  }
  .hero * {
    display: none;
  }
  .hero img {
    display: block !important;
    width: 100%;
    height: auto;
  }
}
/*# sourceMappingURL=main.css.map */