/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 15px 15px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible; }
  .hamburger:hover {
    opacity: 1; }

.hamburger-box {
  width: 25px;
  height: 19px;
  display: inline-block;
  position: relative; }

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1.5px; }
  .hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 25px;
    height: 3px;
    background-color: #FFF;
    border-radius: 0;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease; }
  .hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block; }
  .hamburger-inner::before {
    top: -8px; }
  .hamburger-inner::after {
    bottom: -8px; }

/*
   * 3DX
   */
.hamburger--3dx .hamburger-box {
  perspective: 50px; }

.hamburger--3dx .hamburger-inner {
  transition: transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dx .hamburger-inner::before, .hamburger--3dx .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dx.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateY(180deg); }
  .hamburger--3dx.is-active .hamburger-inner::before {
    transform: translate3d(0, 8px, 0) rotate(45deg); }
  .hamburger--3dx.is-active .hamburger-inner::after {
    transform: translate3d(0, -8px, 0) rotate(-45deg); }

/*
   * 3DX Reverse
   */
.hamburger--3dx-r .hamburger-box {
  perspective: 50px; }

.hamburger--3dx-r .hamburger-inner {
  transition: transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dx-r .hamburger-inner::before, .hamburger--3dx-r .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dx-r.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateY(-180deg); }
  .hamburger--3dx-r.is-active .hamburger-inner::before {
    transform: translate3d(0, 8px, 0) rotate(45deg); }
  .hamburger--3dx-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -8px, 0) rotate(-45deg); }

/*
   * 3DY
   */
.hamburger--3dy .hamburger-box {
  perspective: 50px; }

.hamburger--3dy .hamburger-inner {
  transition: transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dy .hamburger-inner::before, .hamburger--3dy .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dy.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateX(-180deg); }
  .hamburger--3dy.is-active .hamburger-inner::before {
    transform: translate3d(0, 8px, 0) rotate(45deg); }
  .hamburger--3dy.is-active .hamburger-inner::after {
    transform: translate3d(0, -8px, 0) rotate(-45deg); }

/*
   * 3DY Reverse
   */
.hamburger--3dy-r .hamburger-box {
  perspective: 50px; }

.hamburger--3dy-r .hamburger-inner {
  transition: transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dy-r .hamburger-inner::before, .hamburger--3dy-r .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dy-r.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateX(180deg); }
  .hamburger--3dy-r.is-active .hamburger-inner::before {
    transform: translate3d(0, 8px, 0) rotate(45deg); }
  .hamburger--3dy-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -8px, 0) rotate(-45deg); }

/*
   * Arrow
   */
.hamburger--arrow.is-active .hamburger-inner::before {
  transform: translate3d(-5px, 0, 0) rotate(-45deg) scale(0.7, 1); }

.hamburger--arrow.is-active .hamburger-inner::after {
  transform: translate3d(-5px, 0, 0) rotate(45deg) scale(0.7, 1); }

/*
   * Arrow Right
   */
.hamburger--arrow-r.is-active .hamburger-inner::before {
  transform: translate3d(5px, 0, 0) rotate(45deg) scale(0.7, 1); }

.hamburger--arrow-r.is-active .hamburger-inner::after {
  transform: translate3d(5px, 0, 0) rotate(-45deg) scale(0.7, 1); }

/*
   * Arrow Alt
   */
.hamburger--arrowalt .hamburger-inner::before {
  transition: top 0.1s 0.15s ease, transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1); }

.hamburger--arrowalt .hamburger-inner::after {
  transition: bottom 0.1s 0.15s ease, transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1); }

.hamburger--arrowalt.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(-5px, -6.25px, 0) rotate(-45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

.hamburger--arrowalt.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(-5px, 6.25px, 0) rotate(45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

/*
   * Arrow Alt Right
   */
.hamburger--arrowalt-r .hamburger-inner::before {
  transition: top 0.1s 0.15s ease, transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1); }

.hamburger--arrowalt-r .hamburger-inner::after {
  transition: bottom 0.1s 0.15s ease, transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1); }

.hamburger--arrowalt-r.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(5px, -6.25px, 0) rotate(45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

.hamburger--arrowalt-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(5px, 6.25px, 0) rotate(-45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

/*
   * Boring
   */
.hamburger--boring .hamburger-inner, .hamburger--boring .hamburger-inner::before, .hamburger--boring .hamburger-inner::after {
  transition-property: none; }

.hamburger--boring.is-active .hamburger-inner {
  transform: rotate(45deg); }
  .hamburger--boring.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0; }
  .hamburger--boring.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg); }

/*
   * Collapse
   */
.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.15s;
  transition-delay: 0.15s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--collapse .hamburger-inner::after {
    top: -16px;
    transition: top 0.3s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear; }
  .hamburger--collapse .hamburger-inner::before {
    transition: top 0.12s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--collapse.is-active .hamburger-inner {
  transform: translate3d(0, -8px, 0) rotate(-45deg);
  transition-delay: 0.32s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--collapse.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.3s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.27s linear; }
  .hamburger--collapse.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-90deg);
    transition: top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.15s 0.42s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Collapse Reverse
   */
.hamburger--collapse-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.15s;
  transition-delay: 0.15s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--collapse-r .hamburger-inner::after {
    top: -16px;
    transition: top 0.3s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear; }
  .hamburger--collapse-r .hamburger-inner::before {
    transition: top 0.12s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--collapse-r.is-active .hamburger-inner {
  transform: translate3d(0, -8px, 0) rotate(45deg);
  transition-delay: 0.32s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--collapse-r.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.3s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.27s linear; }
  .hamburger--collapse-r.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(90deg);
    transition: top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.15s 0.42s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Elastic
   */
.hamburger--elastic .hamburger-inner {
  top: 1.5px;
  transition-duration: 0.4s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); }
  .hamburger--elastic .hamburger-inner::before {
    top: 8px;
    transition: opacity 0.15s 0.4s ease; }
  .hamburger--elastic .hamburger-inner::after {
    top: 16px;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55); }

.hamburger--elastic.is-active .hamburger-inner {
  transform: translate3d(0, 8px, 0) rotate(135deg);
  transition-delay: 0.1s; }
  .hamburger--elastic.is-active .hamburger-inner::before {
    transition-delay: 0s;
    opacity: 0; }
  .hamburger--elastic.is-active .hamburger-inner::after {
    transform: translate3d(0, -16px, 0) rotate(-270deg);
    transition-delay: 0.1s; }

/*
   * Elastic Reverse
   */
.hamburger--elastic-r .hamburger-inner {
  top: 1.5px;
  transition-duration: 0.4s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); }
  .hamburger--elastic-r .hamburger-inner::before {
    top: 8px;
    transition: opacity 0.15s 0.4s ease; }
  .hamburger--elastic-r .hamburger-inner::after {
    top: 16px;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55); }

.hamburger--elastic-r.is-active .hamburger-inner {
  transform: translate3d(0, 8px, 0) rotate(-135deg);
  transition-delay: 0.1s; }
  .hamburger--elastic-r.is-active .hamburger-inner::before {
    transition-delay: 0s;
    opacity: 0; }
  .hamburger--elastic-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -16px, 0) rotate(270deg);
    transition-delay: 0.1s; }

/*
   * Emphatic
   */
.hamburger--emphatic {
  overflow: hidden; }
  .hamburger--emphatic .hamburger-inner {
    transition: background-color 0.2s 0.25s ease-in; }
    .hamburger--emphatic .hamburger-inner::before {
      left: 0;
      transition: transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.2s linear, left 0.2s 0.25s ease-in; }
    .hamburger--emphatic .hamburger-inner::after {
      top: 8px;
      right: 0;
      transition: transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.2s linear, right 0.2s 0.25s ease-in; }
  .hamburger--emphatic.is-active .hamburger-inner {
    transition-delay: 0s;
    transition-timing-function: ease-out;
    background-color: transparent; }
    .hamburger--emphatic.is-active .hamburger-inner::before {
      left: -50px;
      top: -50px;
      transform: translate3d(50px, 50px, 0) rotate(45deg);
      transition: left 0.2s ease-out, top 0.05s 0.2s linear, transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1); }
    .hamburger--emphatic.is-active .hamburger-inner::after {
      right: -50px;
      top: -50px;
      transform: translate3d(-50px, 50px, 0) rotate(-45deg);
      transition: right 0.2s ease-out, top 0.05s 0.2s linear, transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1); }

/*
   * Emphatic Reverse
   */
.hamburger--emphatic-r {
  overflow: hidden; }
  .hamburger--emphatic-r .hamburger-inner {
    transition: background-color 0.2s 0.25s ease-in; }
    .hamburger--emphatic-r .hamburger-inner::before {
      left: 0;
      transition: transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.2s linear, left 0.2s 0.25s ease-in; }
    .hamburger--emphatic-r .hamburger-inner::after {
      top: 8px;
      right: 0;
      transition: transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.2s linear, right 0.2s 0.25s ease-in; }
  .hamburger--emphatic-r.is-active .hamburger-inner {
    transition-delay: 0s;
    transition-timing-function: ease-out;
    background-color: transparent; }
    .hamburger--emphatic-r.is-active .hamburger-inner::before {
      left: -50px;
      top: 50px;
      transform: translate3d(50px, -50px, 0) rotate(-45deg);
      transition: left 0.2s ease-out, top 0.05s 0.2s linear, transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1); }
    .hamburger--emphatic-r.is-active .hamburger-inner::after {
      right: -50px;
      top: 50px;
      transform: translate3d(-50px, -50px, 0) rotate(45deg);
      transition: right 0.2s ease-out, top 0.05s 0.2s linear, transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1); }

/*
   * Slider
   */
.hamburger--slider .hamburger-inner {
  top: 1.5px; }
  .hamburger--slider .hamburger-inner::before {
    top: 8px;
    transition-property: transform, opacity;
    transition-timing-function: ease;
    transition-duration: 0.2s; }
  .hamburger--slider .hamburger-inner::after {
    top: 16px; }

.hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0, 8px, 0) rotate(45deg); }
  .hamburger--slider.is-active .hamburger-inner::before {
    transform: rotate(-45deg) translate3d(-3.57143px, -5px, 0);
    opacity: 0; }
  .hamburger--slider.is-active .hamburger-inner::after {
    transform: translate3d(0, -16px, 0) rotate(-90deg); }

/*
   * Slider Reverse
   */
.hamburger--slider-r .hamburger-inner {
  top: 1.5px; }
  .hamburger--slider-r .hamburger-inner::before {
    top: 8px;
    transition-property: transform, opacity;
    transition-timing-function: ease;
    transition-duration: 0.2s; }
  .hamburger--slider-r .hamburger-inner::after {
    top: 16px; }

.hamburger--slider-r.is-active .hamburger-inner {
  transform: translate3d(0, 8px, 0) rotate(-45deg); }
  .hamburger--slider-r.is-active .hamburger-inner::before {
    transform: rotate(45deg) translate3d(3.57143px, -5px, 0);
    opacity: 0; }
  .hamburger--slider-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -16px, 0) rotate(90deg); }

/*
   * Spring
   */
.hamburger--spring .hamburger-inner {
  top: 1.5px;
  transition: background-color 0s 0.15s linear; }
  .hamburger--spring .hamburger-inner::before {
    top: 8px;
    transition: top 0.12s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spring .hamburger-inner::after {
    top: 16px;
    transition: top 0.3s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spring.is-active .hamburger-inner {
  transition-delay: 0.32s;
  background-color: transparent; }
  .hamburger--spring.is-active .hamburger-inner::before {
    top: 0;
    transition: top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.15s 0.32s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 8px, 0) rotate(45deg); }
  .hamburger--spring.is-active .hamburger-inner::after {
    top: 0;
    transition: top 0.3s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.15s 0.32s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 8px, 0) rotate(-45deg); }

/*
   * Spring Reverse
   */
.hamburger--spring-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.15s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spring-r .hamburger-inner::after {
    top: -16px;
    transition: top 0.3s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0s linear; }
  .hamburger--spring-r .hamburger-inner::before {
    transition: top 0.12s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spring-r.is-active .hamburger-inner {
  transform: translate3d(0, -8px, 0) rotate(-45deg);
  transition-delay: 0.32s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--spring-r.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.3s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s 0.32s linear; }
  .hamburger--spring-r.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(90deg);
    transition: top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.15s 0.32s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Stand
   */
.hamburger--stand .hamburger-inner {
  transition: transform 0.1s 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.1s linear; }
  .hamburger--stand .hamburger-inner::before {
    transition: top 0.1s 0.1s ease-in, transform 0.1s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--stand .hamburger-inner::after {
    transition: bottom 0.1s 0.1s ease-in, transform 0.1s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--stand.is-active .hamburger-inner {
  transform: rotate(90deg);
  background-color: transparent;
  transition: transform 0.1s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.22s linear; }
  .hamburger--stand.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-45deg);
    transition: top 0.1s 0.12s ease-out, transform 0.1s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--stand.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(45deg);
    transition: bottom 0.1s 0.12s ease-out, transform 0.1s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Stand Reverse
   */
.hamburger--stand-r .hamburger-inner {
  transition: transform 0.1s 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.1s linear; }
  .hamburger--stand-r .hamburger-inner::before {
    transition: top 0.1s 0.1s ease-in, transform 0.1s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--stand-r .hamburger-inner::after {
    transition: bottom 0.1s 0.1s ease-in, transform 0.1s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--stand-r.is-active .hamburger-inner {
  transform: rotate(-90deg);
  background-color: transparent;
  transition: transform 0.1s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.22s linear; }
  .hamburger--stand-r.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-45deg);
    transition: top 0.1s 0.12s ease-out, transform 0.1s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--stand-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(45deg);
    transition: bottom 0.1s 0.12s ease-out, transform 0.1s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Spin
   */
.hamburger--spin .hamburger-inner {
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spin .hamburger-inner::before {
    transition: top 0.1s 0.34s ease-in, opacity 0.1s ease-in; }
  .hamburger--spin .hamburger-inner::after {
    transition: bottom 0.1s 0.34s ease-in, transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spin.is-active .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.14s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--spin.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease-out, opacity 0.1s 0.14s ease-out; }
  .hamburger--spin.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.1s ease-out, transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Spin Reverse
   */
.hamburger--spin-r .hamburger-inner {
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spin-r .hamburger-inner::before {
    transition: top 0.1s 0.34s ease-in, opacity 0.1s ease-in; }
  .hamburger--spin-r .hamburger-inner::after {
    transition: bottom 0.1s 0.34s ease-in, transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spin-r.is-active .hamburger-inner {
  transform: rotate(-225deg);
  transition-delay: 0.14s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--spin-r.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease-out, opacity 0.1s 0.14s ease-out; }
  .hamburger--spin-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(90deg);
    transition: bottom 0.1s ease-out, transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Squeeze
   */
.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.1s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--squeeze .hamburger-inner::before {
    transition: top 0.1s 0.14s ease, opacity 0.1s ease; }
  .hamburger--squeeze .hamburger-inner::after {
    transition: bottom 0.1s 0.14s ease, transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.14s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--squeeze.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease, opacity 0.1s 0.14s ease; }
  .hamburger--squeeze.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.1s ease, transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Vortex
   */
.hamburger--vortex .hamburger-inner {
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .hamburger--vortex .hamburger-inner::before, .hamburger--vortex .hamburger-inner::after {
    transition-duration: 0s;
    transition-delay: 0.1s;
    transition-timing-function: linear; }
  .hamburger--vortex .hamburger-inner::before {
    transition-property: top, opacity; }
  .hamburger--vortex .hamburger-inner::after {
    transition-property: bottom, transform; }

.hamburger--vortex.is-active .hamburger-inner {
  transform: rotate(765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .hamburger--vortex.is-active .hamburger-inner::before, .hamburger--vortex.is-active .hamburger-inner::after {
    transition-delay: 0s; }
  .hamburger--vortex.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0; }
  .hamburger--vortex.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(90deg); }

/*
   * Vortex Reverse
   */
.hamburger--vortex-r .hamburger-inner {
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .hamburger--vortex-r .hamburger-inner::before, .hamburger--vortex-r .hamburger-inner::after {
    transition-duration: 0s;
    transition-delay: 0.1s;
    transition-timing-function: linear; }
  .hamburger--vortex-r .hamburger-inner::before {
    transition-property: top, opacity; }
  .hamburger--vortex-r .hamburger-inner::after {
    transition-property: bottom, transform; }

.hamburger--vortex-r.is-active .hamburger-inner {
  transform: rotate(-765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .hamburger--vortex-r.is-active .hamburger-inner::before, .hamburger--vortex-r.is-active .hamburger-inner::after {
    transition-delay: 0s; }
  .hamburger--vortex-r.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0; }
  .hamburger--vortex-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg); }

/**
 * Colours
 */
/**
 * Layout
 */
/**
 * Breakpoints
 */
/**
 * Transitions
 */
/**
 * Typography
 */
@font-face {
  font-family: "bega";
  src: url("../fonts/bega.eot");
  src: url("../fonts/bega.eot?#iefix") format("embedded-opentype"), url("../fonts/bega.woff") format("woff"), url("../fonts/bega.ttf") format("truetype"), url("../fonts/bega.svg#bega") format("svg");
  font-weight: normal;
  font-style: normal; }

[data-icon]:before {
  font-family: "bega" !important;
  content: attr(data-icon);
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

[class^="icon-"]:before,
[class*=" icon-"]:before {
  font-family: "bega" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.icon-angle-down:before {
  content: "\61"; }

.icon-facebook:before {
  content: "\62"; }

.icon-instagram:before {
  content: "\63"; }

.icon-youtube:before {
  content: "\64"; }

.icon-paper-plane:before {
  content: "\65"; }

.icon-search:before {
  content: "\66"; }

.icon-checklist:before {
  content: "\67"; }

.icon-list-unordered:before {
  content: "\68"; }

.icon-print:before {
  content: "\69"; }

.icon-clock-o:before {
  content: "\6a"; }

.icon-chef-food-restaurant-streamline:before {
  content: "\6b"; }

.icon-benefit-1:before {
  content: "\70"; }

.icon-innovation-5:before {
  content: "\71"; }

.icon-integrity-3:before {
  content: "\72"; }

.icon-quality-4:before {
  content: "\73"; }

.icon-supply-2:before {
  content: "\74"; }

html {
  background-color: #FFF;
  font-size: 62.5%;
  font-family: Verdana, Arial;
  font-weight: 300; }

body {
  margin: 0; }

a {
  text-decoration: none;
  color: #085723; }

img {
  border: 0;
  max-width: 100%; }

main.spaced {
  display: block;
  padding-top: 5.5em; }
  @media (min-width: 640px) {
    main.spaced {
      padding-top: 10em; } }
  @media (min-width: 960px) {
    main.spaced {
      padding-top: 10em; } }

.content {
  width: 90%;
  margin: 0 auto; }
  .content .column {
    display: block;
    width: 80em;
    max-width: 100%;
    margin: 4em auto;
    text-align: center; }
  .content p {
    font-size: calc(18px + (24 - 18) * ((100vw - 360px) / (1600 - 360)));
    white-space: pre-wrap; }
    @media (max-width: 360px) {
      .content p {
        font-size: 18px; } }
    @media (min-width: 1600px) {
      .content p {
        font-size: 24px; } }
  .content a {
    color: #085723; }

.general p, .general li {
  font-size: 1.6rem !important; }

.actions {
  display: flex;
  flex-direction: row;
  align-items: baseline; }
  .actions .share {
    margin-right: 3em; }
  .actions .print {
    font-size: calc(14px + (18 - 14) * ((100vw - 360px) / (1600 - 360)));
    text-transform: uppercase;
    font-family: Verdana, Arial;
    vertical-align: middle;
    color: #000; }
    @media (max-width: 360px) {
      .actions .print {
        font-size: 14px; } }
    @media (min-width: 1600px) {
      .actions .print {
        font-size: 18px; } }
    .actions .print i {
      font-size: 1.4em;
      vertical-align: middle;
      margin-right: .3em; }
    .actions .print:hover {
      color: #085723; }

.separator {
  height: 1px;
  width: 550px;
  max-width: 80%;
  width: calc(200px + (550 - 200) * ((100vw - 320px) / (1200 - 320)));
  background: rgba(255, 255, 255, 0.8); }
  @media (max-width: 320px) {
    .separator {
      width: 200px; } }
  @media (min-width: 1200px) {
    .separator {
      width: 550px; } }

.btn,
input[type=submit] {
  background: #F2F2F2;
  color: #085723;
  padding: .8em 2em;
  border-radius: .3em;
  border: 1px solid #c3c6cc;
  box-shadow: rgba(8, 87, 35, 0.9) 0 2px;
  text-shadow: 0 -0.5px #000;
  font-family: Verdana, Arial;
  font-weight: 600;
  margin: .5em;
  cursor: pointer;
  font-size: calc(12px + (14 - 12) * ((100vw - 360px) / (1600 - 360)));
  transition: all 500ms; }
  @media (max-width: 360px) {
    .btn,
    input[type=submit] {
      font-size: 12px; } }
  @media (min-width: 1600px) {
    .btn,
    input[type=submit] {
      font-size: 14px; } }
  .btn.light,
  input[type=submit].light {
    background-color: transparent;
    color: rgba(0, 0, 0, 0.8); }
  .btn:hover,
  input[type=submit]:hover {
    background: #085723;
    color: #FFF;
    border: 1px solid #77904A;
    box-shadow: rgba(235, 235, 235, 0.9) 0 2px; }
    .btn:hover.light,
    input[type=submit]:hover.light {
      background-color: #085723;
      color: #FFF; }

.times-servings {
  list-style-type: none;
  margin: 1em 0;
  padding: 0;
  text-transform: uppercase;
  font-size: calc(14px + (18 - 14) * ((100vw - 360px) / (1600 - 360))); }
  @media (max-width: 360px) {
    .times-servings {
      font-size: 14px; } }
  @media (min-width: 1600px) {
    .times-servings {
      font-size: 18px; } }
  .times-servings li {
    margin: .5em 0; }
    .times-servings li b {
      font-family: Verdana, Arial;
      font-weight: 600;
      margin-right: 1em;
      font-size: calc(12px + (14 - 12) * ((100vw - 360px) / (1600 - 360))); }
      @media (max-width: 360px) {
        .times-servings li b {
          font-size: 12px; } }
      @media (min-width: 1600px) {
        .times-servings li b {
          font-size: 14px; } }

/**
 * Owl Carousel v2.2.0
 * Copyright 2013-2016 David Deutsch
 * Licensed under MIT (https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE)
 */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1; }

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y; }

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0; }

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px); }

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none; }

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
  -webkit-transform-style: preserve-3d; }

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none; }

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.owl-carousel.owl-loaded {
  display: block; }

.owl-carousel.owl-loading {
  opacity: 0;
  display: block; }

.owl-carousel.owl-hidden {
  opacity: 0; }

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden; }

.owl-carousel.owl-drag .owl-item {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab; }

.owl-carousel.owl-rtl {
  direction: rtl; }

.owl-carousel.owl-rtl .owl-item {
  float: right; }

/* No Js */
.no-js .owl-carousel {
  display: block; }

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

.owl-carousel .owl-animated-in {
  z-index: 0; }

.owl-carousel .owl-animated-out {
  z-index: 1; }

.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut; }

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out; }

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease; }

.owl-carousel .owl-item img.owl-lazy {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d; }

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000; }

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: -webkit-transform 100ms ease;
  transition: transform 100ms ease; }

.owl-carousel .owl-video-play-icon:hover {
  -webkit-transform: scale(1.3, 1.3);
  -ms-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3); }

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none; }

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease; }

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%; }

.slider {
  width: 100%;
  height: 100%; }
  .slider .owl-stage-outer {
    height: 100%; }
    .slider .owl-stage-outer .owl-stage {
      height: 100%; }
      .slider .owl-stage-outer .owl-stage .owl-item {
        height: 100%;
        overflow: hidden; }
  .slider .slide {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain; }
  .slider .owl-dots {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: calc(8px + (12 - 8) * ((100vw - 360px) / (1600 - 360))); }
    @media (max-width: 360px) {
      .slider .owl-dots {
        font-size: 8px; } }
    @media (min-width: 1600px) {
      .slider .owl-dots {
        font-size: 12px; } }
    .slider .owl-dots .owl-dot {
      height: .6em;
      width: .6em;
      background-color: rgba(0, 0, 0, 0.6);
      border-radius: 50%;
      margin: 0 .3em;
      transition: all 500ms; }
      .slider .owl-dots .owl-dot.active, .slider .owl-dots .owl-dot:hover {
        background-color: #CD0B15;
        transform: scale(1.4); }

.breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 4em auto;
  max-width: 90%; }
  .breadcrumbs a {
    display: inline-block;
    position: relative;
    color: rgba(8, 87, 35, 0.6);
    font-family: Verdana, Arial;
    font-weight: bold;
    transition: all 500ms;
    font-size: calc(12px + (18 - 12) * ((100vw - 360px) / (1600 - 360))); }
    @media (max-width: 360px) {
      .breadcrumbs a {
        font-size: 12px; } }
    @media (min-width: 1600px) {
      .breadcrumbs a {
        font-size: 18px; } }
    .breadcrumbs a:last-child {
      color: #085723; }
    .breadcrumbs a:not(:last-child) {
      margin-right: 1.2em; }
      .breadcrumbs a:not(:last-child):after {
        content: '>';
        color: rgba(8, 87, 35, 0.6);
        position: absolute;
        display: block;
        left: 103%;
        top: 50%;
        transform: translateY(-60%);
        pointer-events: none; }
    .breadcrumbs a:hover {
      color: #085723; }

section {
  display: flex;
  flex-direction: column;
  overflow: auto;
  position: relative;
  align-items: center;
  min-height: 35vw;
  justify-content: center; }
  section .background {
    position: absolute;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left bottom;
    top: 0;
    right: 0;
    width: 100%;
    height: 70vw;
    z-index: 1;
    overflow: hidden; }
  section a {
    color: #CD0B15; }
  section .side-content {
    display: flex;
    flex-direction: column;
    height: 70vw;
    width: 100%;
    position: relative;
    z-index: 3;
    align-items: center;
    justify-content: flex-end;
    align-self: flex-end;
    overflow: hidden; }
    section .side-content img {
      display: block;
      max-height: 45%;
      max-width: 80%; }
    section .side-content h2 {
      display: block;
      margin: 7vw 0 0;
      color: #FFF;
      text-shadow: rgba(0, 0, 0, 0.5) 0 1px 1px;
      line-height: .74;
      white-space: nowrap;
      font-size: calc(110px + (250 - 110) * ((100vw - 360px) / (1600 - 360))); }
      @media (max-width: 360px) {
        section .side-content h2 {
          font-size: 110px; } }
      @media (min-width: 1600px) {
        section .side-content h2 {
          font-size: 250px; } }
      section .side-content h2 > span {
        font-size: .45em;
        display: inline-block;
        line-height: .9em;
        margin-bottom: -.1em; }
    @media (min-width: 1200px) {
      section .side-content img {
        max-height: 100%; } }
  section .section-content {
    position: relative;
    z-index: 4;
    text-align: center;
    padding: 2em 5%;
    box-sizing: border-box;
    max-width: 100%; }
    section .section-content h2 {
      display: block;
      font-weight: 400;
      width: 15em;
      max-width: 90%;
      margin: .2em auto;
      font-size: calc(26px + (64 - 26) * ((100vw - 360px) / (1600 - 360))); }
      @media (max-width: 360px) {
        section .section-content h2 {
          font-size: 26px; } }
      @media (min-width: 1600px) {
        section .section-content h2 {
          font-size: 64px; } }
    section .section-content p {
      display: block;
      margin: .2em auto;
      width: 20em;
      max-width: 90%;
      font-size: calc(16px + (28 - 16) * ((100vw - 360px) / (1600 - 360))); }
      @media (max-width: 360px) {
        section .section-content p {
          font-size: 16px; } }
      @media (min-width: 1600px) {
        section .section-content p {
          font-size: 28px; } }
    section .section-content ul {
      display: inline-block;
      text-align: left;
      font-size: calc(16px + (28 - 16) * ((100vw - 360px) / (1600 - 360))); }
      @media (max-width: 360px) {
        section .section-content ul {
          font-size: 16px; } }
      @media (min-width: 1600px) {
        section .section-content ul {
          font-size: 28px; } }
    section .section-content .btn {
      display: inline-block;
      margin-top: 2em; }
  section.full-width-background .background {
    width: 100%; }
  section.full-width-background.content-position-left .background {
    background-position: bottom right; }
  section.has-overlay .background {
    transform: translateZ(0); }
    section.has-overlay .background:before {
      content: '';
      display: block;
      position: absolute;
      z-index: 2;
      width: 100%;
      height: 100%;
      right: -35%;
      top: 0;
      background-color: #085723;
      transform: skewX(20deg);
      mix-blend-mode: multiply; }
  section.overlay-colour-black .background:before {
    background-color: rgba(0, 0, 0, 0.7); }
  @media (min-width: 640px) {
    section {
      flex-direction: row; }
      section .background {
        height: 100%;
        background-position: center bottom; }
      section .side-content {
        width: 50%;
        height: auto;
        justify-content: center; }
        section .side-content h2 {
          font-size: calc(100px + (250 - 100) * ((100vw - 640px) / (1600 - 640))); } }
      @media (min-width: 640px) and (max-width: 640px) {
        section .side-content h2 {
          font-size: 100px; } }
      @media (min-width: 640px) and (min-width: 1600px) {
        section .side-content h2 {
          font-size: 250px; } }
  @media (min-width: 640px) {
      section .section-content {
        width: 50%;
        margin-top: 0; }
      section.content-position-right {
        justify-content: flex-end; }
      section.background-colour-black {
        background-color: #000; }
        section.background-colour-black .section-content {
          color: rgba(255, 255, 255, 0.8); }
      section.full-width-background .background:before {
        right: -19%; }
      section.full-width-background.content-position-left {
        flex-direction: row-reverse; }
      section:not(.full-width-background) {
        flex-direction: row-reverse; }
        section:not(.full-width-background) .background {
          width: 50%; } }

#header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background: rgba(8, 87, 35, 0.9);
  padding: 1em 2em;
  position: fixed;
  z-index: 10;
  top: 5px;
  width: 100%;
  box-sizing: border-box;
  color: #FFF;
  height: auto;
  border-bottom: 1px solid #FFF; }
  @media screen and (max-width: 960px) {
    #header {
      top: 0; } }
  #header #logo {
    width: calc(180px + (250 - 180) * ((100vw - 360px) / (1200 - 360)));
    position: absolute;
    left: 5%; }
    @media (max-width: 360px) {
      #header #logo {
        width: 180px; } }
    @media (min-width: 1200px) {
      #header #logo {
        width: 250px; } }
    @media (min-width: 960px) {
      #header #logo {
        top: 1em; } }
    @media screen and (max-width: 960px) {
      #header #logo {
        position: relative; } }
    @media screen and (max-width: 1200px) {
      #header #logo {
        left: 0; } }
    #header #logo > div {
      height: 4em;
      padding-bottom: 22%;
      background-image: url("../images/bega-logo.png");
      background-repeat: no-repeat;
      background-position: center;
      background-size: contain; }
      @media (min-resolution: 1.1dppx) {
        #header #logo > div {
          background-image: url("../images/bega-logo.png"); } }
      @media (min-resolution: 2.1dppx) {
        #header #logo > div {
          background-image: url("../images/bega-logo.png"); } }
      @media screen and (max-width: 960px) {
        #header #logo > div {
          height: 2em; } }
  #header nav {
    display: block;
    height: 0;
    overflow: hidden;
    transition: all 500ms;
    opacity: 0; }
    #header nav ul {
      display: flex;
      flex-direction: column;
      list-style-type: none;
      padding: 0;
      margin: 0; }
      #header nav ul li {
        margin: 1em 0;
        text-align: center; }
        #header nav ul li.current-menu-item a {
          font-weight: 600; }
          #header nav ul li.current-menu-item a:after {
            width: 4em;
            max-width: 100%;
            opacity: .9; }
        #header nav ul li a {
          color: #FFF;
          display: inline-block;
          position: relative;
          font-family: Verdana, Arial;
          font-size: calc(16px + (20 - 16) * ((100vw - 360px) / (640 - 360))); }
          @media (max-width: 360px) {
            #header nav ul li a {
              font-size: 16px; } }
          @media (min-width: 640px) {
            #header nav ul li a {
              font-size: 20px; } }
          #header nav ul li a:after {
            content: '';
            display: block;
            height: 2px;
            width: 0;
            background: #B4975A;
            transition: all 250ms;
            position: absolute;
            top: 105%;
            left: 50%;
            opacity: .5;
            transform: translateX(-50%); }
          #header nav ul li a:hover:after {
            width: 4em;
            max-width: 100%;
            opacity: 1; }
    #header nav.is-active {
      height: 100vh;
      padding-top: 3em;
      opacity: 1; }
  #header .hamburger {
    outline: none;
    position: absolute;
    top: 1em;
    right: 0; }
  #header:after {
    content: '';
    display: block;
    height: 3px;
    width: 100%;
    position: absolute;
    bottom: 1px;
    left: 0;
    background: #C22026; }
  @media (min-width: 640px) {
    #header {
      height: auto;
      justify-content: center; }
      #header nav {
        height: auto;
        opacity: 1;
        margin: 1em 0;
        overflow: visible; }
        #header nav ul {
          flex-direction: row; }
          #header nav ul li {
            margin: 0 1.5em; }
            #header nav ul li a {
              font-size: calc(12px + (16 - 12) * ((100vw - 360px) / (1600 - 360))); } }
          @media (min-width: 640px) and (max-width: 360px) {
            #header nav ul li a {
              font-size: 12px; } }
          @media (min-width: 640px) and (min-width: 1600px) {
            #header nav ul li a {
              font-size: 16px; } }
  @media (min-width: 640px) {
        #header nav.is-active {
          height: auto; }
      #header .hamburger {
        display: none; } }
  @media (min-width: 960px) {
    #header {
      padding: 3em;
      flex-direction: row; }
      #header nav {
        margin: 2em; }
        #header nav ul li {
          margin: 0 4em; } }

.masthead-overlay {
  background: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  z-index: 1000;
  position: absolute; }

#masthead {
  display: flex;
  align-items: center;
  position: relative;
  height: calc(400px + (705 - 400) * ((100vw - 360px) / (1600 - 360)));
  width: 100%;
  background: #F6F6F6; }
  @media (max-width: 360px) {
    #masthead {
      height: 400px; } }
  @media (min-width: 1600px) {
    #masthead {
      height: 705px; } }
  #masthead.full-height {
    height: 100vh; }
  #masthead .background {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden; }
    #masthead .background.image {
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat; }
    #masthead .background.video video {
      position: absolute;
      min-width: 100%;
      min-height: 100%;
      width: auto;
      height: auto;
      left: 50%;
      top: 50%;
      transform: translateX(-50%) translateY(-50%); }
    #masthead .background.video.has-fallback .mobile-background {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
      display: none; }
    @media (max-aspect-ratio: 1 / 1) {
      #masthead .background.video.has-fallback video {
        display: none; }
      #masthead .background.video.has-fallback .mobile-background {
        display: block; } }
  #masthead .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    width: 100%; }
    #masthead .content img {
      width: 25em;
      max-width: 30%; }
    #masthead .content h1,
    #masthead .content h2 {
      position: relative;
      color: rgba(255, 255, 255, 0.8);
      font-family: Verdana, Arial;
      margin: .3em 0; }
    #masthead .content h1 {
      font-size: calc(20px + (50 - 20) * ((100vw - 360px) / (1600 - 360)));
      font-weight: 600;
      width: 75%;
      text-align: center;
      line-height: 1em; }
      @media (max-width: 360px) {
        #masthead .content h1 {
          font-size: 20px; } }
      @media (min-width: 1600px) {
        #masthead .content h1 {
          font-size: 50px; } }
    #masthead .content h2 {
      font-size: calc(16px + (30 - 16) * ((100vw - 360px) / (1600 - 360)));
      font-weight: 300; }
      @media (max-width: 360px) {
        #masthead .content h2 {
          font-size: 16px; } }
      @media (min-width: 1600px) {
        #masthead .content h2 {
          font-size: 30px; } }
  #masthead i {
    color: #FFF;
    font-size: calc(25px + (35 - 25) * ((100vw - 360px) / (1600 - 360)));
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    opacity: .5;
    cursor: pointer;
    padding: 1em 3em;
    transition: all 500ms;
    backface-visibility: hidden; }
    @media (max-width: 360px) {
      #masthead i {
        font-size: 25px; } }
    @media (min-width: 1600px) {
      #masthead i {
        font-size: 35px; } }
    #masthead i:hover {
      opacity: 1;
      color: #085723;
      transform: translateX(-50%) translateY(10%); }
    #masthead i:after {
      content: 'Discover More';
      position: absolute;
      bottom: 70%;
      left: 50%;
      font-size: .45em;
      transform: translateX(-50%); }
  #masthead .sticker {
    position: absolute;
    z-index: 5;
    top: 20%;
    right: 0;
    height: calc(25px + (50 - 25) * ((100vw - 360px) / (960 - 360))); }
    @media (max-width: 360px) {
      #masthead .sticker {
        height: 25px; } }
    @media (min-width: 960px) {
      #masthead .sticker {
        height: 50px; } }
  #masthead.colour-black .content h1,
  #masthead.colour-black .content h2 {
    color: rgba(0, 0, 0, 0.8); }
  #masthead.colour-black .content .separator {
    background: rgba(0, 0, 0, 0.8); }
  #masthead.colour-black i {
    color: #000; }

footer {
  display: block;
  position: relative;
  background: #4D4D4D; }
  footer .main {
    background-color: #085723;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    overflow: auto;
    color: #FFF; }
    footer .main .content {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: space-around;
      width: 90%;
      max-width: 100%;
      margin: 0 auto;
      padding: 4em 0; }
      footer .main .content > div.description {
        width: 80%; }
        footer .main .content > div.description a {
          color: #FFF; }
        @media (min-width: 1200px) {
          footer .main .content > div.description {
            width: 30%; } }
        footer .main .content > div.description h3 {
          text-transform: uppercase;
          font-size: calc(14px + (18 - 14) * ((100vw - 360px) / (1600 - 360)));
          font-family: Verdana, Arial;
          font-weight: 600;
          margin: .5em auto; }
          @media (max-width: 360px) {
            footer .main .content > div.description h3 {
              font-size: 14px; } }
          @media (min-width: 1600px) {
            footer .main .content > div.description h3 {
              font-size: 18px; } }
        footer .main .content > div.description i {
          margin: 0 1em;
          font-size: 1.2em; }
        footer .main .content > div.description p {
          font-family: Verdana, Arial;
          font-size: calc(12px + (14 - 12) * ((100vw - 360px) / (1600 - 360)));
          font-weight: 100;
          line-height: 1.5;
          display: inline-block;
          margin: 0.5em auto; }
          @media (max-width: 360px) {
            footer .main .content > div.description p {
              font-size: 12px; } }
          @media (min-width: 1600px) {
            footer .main .content > div.description p {
              font-size: 14px; } }
        footer .main .content > div.description .footer-content {
          display: block; }
        @media screen and (max-width: 960px) {
          footer .main .content > div.description {
            text-align: center; } }
      footer .main .content > div.social {
        width: 30em;
        max-width: 100%; }
        footer .main .content > div.social .social-links {
          display: flex;
          align-items: center;
          justify-content: space-between;
          width: 30%; }
          @media screen and (max-width: 960px) {
            footer .main .content > div.social .social-links {
              margin: 0 auto; } }
          footer .main .content > div.social .social-links a {
            color: #FFF;
            font-size: calc(16px + (24 - 16) * ((100vw - 360px) / (1600 - 360)));
            transition: all 500ms; }
            @media (max-width: 360px) {
              footer .main .content > div.social .social-links a {
                font-size: 16px; } }
            @media (min-width: 1600px) {
              footer .main .content > div.social .social-links a {
                font-size: 24px; } }
            footer .main .content > div.social .social-links a:hover {
              color: #B4975A; }
        footer .main .content > div.social .sign-up {
          background: #FFF;
          overflow: hidden;
          padding: 1em;
          margin-top: 2em;
          box-shadow: #C22026 0 0 0 inset;
          transition: all 500ms; }
          footer .main .content > div.social .sign-up .sign-up-field {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin: 0 0em; }
            footer .main .content > div.social .sign-up .sign-up-field input {
              padding: 0;
              border: none;
              outline: none;
              text-transform: uppercase;
              width: 94%;
              font-family: Verdana, Arial;
              font-size: calc(12px + (14 - 12) * ((100vw - 360px) / (1600 - 360))); }
              @media (max-width: 360px) {
                footer .main .content > div.social .sign-up .sign-up-field input {
                  font-size: 12px; } }
              @media (min-width: 1600px) {
                footer .main .content > div.social .sign-up .sign-up-field input {
                  font-size: 14px; } }
              footer .main .content > div.social .sign-up .sign-up-field input::-webkit-input-placeholder {
                /* Chrome/Opera/Safari */
                color: #085723; }
              footer .main .content > div.social .sign-up .sign-up-field input::-moz-placeholder {
                /* Firefox 19+ */
                color: #085723; }
              footer .main .content > div.social .sign-up .sign-up-field input:-ms-input-placeholder {
                /* IE 10+ */
                color: #085723; }
              footer .main .content > div.social .sign-up .sign-up-field input:-moz-placeholder {
                /* Firefox 18- */
                color: #085723; }
            footer .main .content > div.social .sign-up .sign-up-field i {
              font-size: 1.2em;
              color: #085723;
              cursor: pointer;
              width: 6%;
              transition: all 250ms; }
              footer .main .content > div.social .sign-up .sign-up-field i:hover {
                color: #B4975A; }
          footer .main .content > div.social .sign-up button {
            border: none;
            background: transparent;
            outline: none;
            cursor: pointer; }
          footer .main .content > div.social .sign-up.invalid {
            box-shadow: #C22026 0 0 10px inset; }
          footer .main .content > div.social .sign-up.successful {
            box-shadow: #085723 0 0 10px inset; }
      footer .main .content nav.content-links {
        display: flex;
        flex-direction: row;
        justify-content: center;
        width: 80%; }
        @media (min-width: 960px) {
          footer .main .content nav.content-links {
            width: 30%; } }
        footer .main .content nav.content-links a {
          color: #FFF;
          font-family: Verdana, Arial;
          font-weight: 400;
          margin: 1em 1em;
          font-size: calc(12px + (16 - 12) * ((100vw - 360px) / (1600 - 360)));
          transition: all 500ms; }
          @media (max-width: 360px) {
            footer .main .content nav.content-links a {
              font-size: 12px; } }
          @media (min-width: 1600px) {
            footer .main .content nav.content-links a {
              font-size: 16px; } }
          footer .main .content nav.content-links a:hover {
            color: #B4975A; }
      @media (min-width: 960px) {
        footer .main .content {
          flex-direction: row;
          align-items: flex-start; }
          footer .main .content > div.description {
            width: 20%; }
          footer .main .content > div.social {
            width: 25%; }
          footer .main .content nav.content-links {
            flex-direction: column; }
            footer .main .content nav.content-links a {
              margin: .5em 0; } }
    footer .main:before {
      content: '';
      display: block;
      height: 3px;
      width: 100%;
      position: absolute;
      top: 1px;
      left: 0;
      background: #C22026; }
  footer .legal-links {
    background: #FFF;
    position: relative;
    padding: 1em 0;
    box-sizing: border-box;
    margin-top: 2px; }
    footer .legal-links nav {
      display: flex;
      align-items: center;
      justify-content: space-around;
      width: 55em;
      max-width: 100%;
      margin: 0 auto;
      padding-right: 1em;
      box-sizing: border-box; }
      footer .legal-links nav a {
        color: #000;
        font-size: calc(10px + (14 - 10) * ((100vw - 360px) / (1600 - 360)));
        font-family: Verdana, Arial;
        font-weight: 100; }
        @media (max-width: 360px) {
          footer .legal-links nav a {
            font-size: 10px; } }
        @media (min-width: 1600px) {
          footer .legal-links nav a {
            font-size: 14px; } }
    footer .legal-links:before {
      content: '';
      display: block;
      width: 100%;
      height: 1px;
      background: #FFF;
      position: absolute;
      top: -2px; }
    @media (min-width: 640px) {
      footer .legal-links nav {
        padding-left: calc(120px + (0 - 120) * ((100vw - 640px) / (960 - 640))); } }
  @media (min-width: 640px) and (max-width: 640px) {
    footer .legal-links nav {
      padding-left: 120px; } }
  @media (min-width: 640px) and (min-width: 960px) {
    footer .legal-links nav {
      padding-left: 0px; } }
    @media (min-width: 960px) {
      footer .legal-links nav {
        margin: 0 auto;
        padding-left: 1em;
        padding-right: 1em;
        justify-content: space-between; } }
  footer .logo {
    left: 0;
    bottom: 0;
    width: 1.5em;
    height: .8em;
    background-image: url("../images/bega-logo.png");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 2;
    margin: 0 0 .2em;
    font-size: calc(150px + (200 - 150) * ((100vw - 360px) / (1600 - 360))); }
    @media (max-width: 360px) {
      footer .logo {
        font-size: 150px; } }
    @media (min-width: 1600px) {
      footer .logo {
        font-size: 200px; } }
    @media (min-width: 960px) {
      footer .logo {
        margin: 0; } }
    @media (min-resolution: 1.1dppx) {
      footer .logo {
        background-image: url("../images/bega-logo.png"); } }
    @media (min-resolution: 2.1dppx) {
      footer .logo {
        background-image: url("../images/bega-logo.png"); } }

.page-template-default main .content.centered {
  text-align: center;
  width: 120em;
  max-width: 90%; }

.page-template-default main .content h1 {
  color: rgba(0, 0, 0, 0.8);
  font-size: calc(26px + (64 - 26) * ((100vw - 360px) / (1600 - 360))); }
  @media (max-width: 360px) {
    .page-template-default main .content h1 {
      font-size: 26px; } }
  @media (min-width: 1600px) {
    .page-template-default main .content h1 {
      font-size: 64px; } }

.page-template-default main .content h3 {
  color: rgba(0, 0, 0, 0.8);
  font-size: calc(16px + (32 - 16) * ((100vw - 360px) / (1600 - 360))); }
  @media (max-width: 360px) {
    .page-template-default main .content h3 {
      font-size: 16px; } }
  @media (min-width: 1600px) {
    .page-template-default main .content h3 {
      font-size: 32px; } }

.page-template-default main .content p {
  color: rgba(0, 0, 0, 0.8);
  font-size: calc(16px + (28 - 16) * ((100vw - 360px) / (1600 - 360))); }
  @media (max-width: 360px) {
    .page-template-default main .content p {
      font-size: 16px; } }
  @media (min-width: 1600px) {
    .page-template-default main .content p {
      font-size: 28px; } }

.page-template-default main .content ol {
  font-size: calc(16px + (32 - 16) * ((100vw - 360px) / (1600 - 360))); }
  @media (max-width: 360px) {
    .page-template-default main .content ol {
      font-size: 16px; } }
  @media (min-width: 1600px) {
    .page-template-default main .content ol {
      font-size: 32px; } }

.page-template-default main .content ul {
  font-size: calc(14px + (24 - 14) * ((100vw - 360px) / (1600 - 360)));
  list-style-position: inside; }
  @media (max-width: 360px) {
    .page-template-default main .content ul {
      font-size: 14px; } }
  @media (min-width: 1600px) {
    .page-template-default main .content ul {
      font-size: 24px; } }

.home .tiles {
  display: flex;
  flex-direction: column;
  justify-content: space-between; }
  .home .tiles .tile {
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 56vw; }
    .home .tiles .tile .slide {
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
      transition: all 500ms; }
      .home .tiles .tile .slide a {
        transition: all 500ms;
        backface-visibility: hidden;
        background-color: rgba(0, 0, 0, 0.3); }
        .home .tiles .tile .slide a h2,
        .home .tiles .tile .slide a h3 {
          color: #FFF;
          text-align: center;
          margin-bottom: .4em;
          max-width: 90%;
          text-shadow: rgba(0, 0, 0, 0.9) 0 0 0.2em; }
        .home .tiles .tile .slide a h2 {
          text-transform: uppercase;
          font-weight: 400;
          margin-bottom: .2em; }
        .home .tiles .tile .slide a:hover {
          opacity: 1; }
          .home .tiles .tile .slide a:hover h2,
          .home .tiles .tile .slide a:hover h3,
          .home .tiles .tile .slide a:hover .btn {
            transform: translateY(0); }
        @media (min-width: 640px) {
          .home .tiles .tile .slide a {
            opacity: 0;
            background-color: transparent; }
            .home .tiles .tile .slide a h2,
            .home .tiles .tile .slide a h3 {
              color: rgba(255, 255, 255, 0.8);
              max-width: 70%;
              text-shadow: none; }
            .home .tiles .tile .slide a h2 {
              transform: translateY(1rem); }
            .home .tiles .tile .slide a h3 {
              transform: translateY(2rem); }
            .home .tiles .tile .slide a .btn {
              transform: translateY(3rem); }
            .home .tiles .tile .slide a:hover {
              background-color: rgba(0, 0, 0, 0.5); } }
      .home .tiles .tile .slide:hover {
        transform: scale(1.05); }
    .home .tiles .tile .background {
      position: absolute;
      z-index: 0;
      left: 0;
      right: 0;
      top: 0;
      bottom: 0;
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
      transition: all 500ms;
      backface-visibility: hidden; }
    .home .tiles .tile .btn {
      margin-top: 1em; }
    .home .tiles .tile a {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0; }
      .home .tiles .tile a h2,
      .home .tiles .tile a h3 {
        color: rgba(0, 0, 0, 0.7);
        transition: all 500ms;
        margin: 0; }
      .home .tiles .tile a h2 {
        font-size: calc(22px + (26 - 22) * ((100vw - 640px) / (1600 - 640))); }
        @media (max-width: 640px) {
          .home .tiles .tile a h2 {
            font-size: 22px; } }
        @media (min-width: 1600px) {
          .home .tiles .tile a h2 {
            font-size: 26px; } }
      .home .tiles .tile a h3 {
        font-size: calc(18px + (22 - 18) * ((100vw - 640px) / (1600 - 640)));
        font-weight: 100;
        line-height: 1.1em;
        text-align: center;
        max-width: 100%; }
        @media (max-width: 640px) {
          .home .tiles .tile a h3 {
            font-size: 18px; } }
        @media (min-width: 1600px) {
          .home .tiles .tile a h3 {
            font-size: 22px; } }
      .home .tiles .tile a:hover h2,
      .home .tiles .tile a:hover h3 {
        color: #085723; }
      @media (min-width: 640px) {
        .home .tiles .tile a h2 {
          font-size: calc(24px + (48 - 24) * ((100vw - 640px) / (1600 - 640))); } }
  @media (min-width: 640px) and (max-width: 640px) {
    .home .tiles .tile a h2 {
      font-size: 24px; } }
  @media (min-width: 640px) and (min-width: 1600px) {
    .home .tiles .tile a h2 {
      font-size: 48px; } }
      @media (min-width: 640px) {
        .home .tiles .tile a h3 {
          font-size: calc(18px + (24 - 18) * ((100vw - 640px) / (1600 - 640))); } }
  @media (min-width: 640px) and (max-width: 640px) {
    .home .tiles .tile a h3 {
      font-size: 18px; } }
  @media (min-width: 640px) and (min-width: 1600px) {
    .home .tiles .tile a h3 {
      font-size: 24px; } }
    .home .tiles .tile .sticker {
      position: absolute;
      top: 10%;
      right: 0;
      width: 33em;
      max-width: 50%; }
  .home .tiles.high-tiles .tile {
    height: 100vw; }
  @media (min-width: 640px) {
    .home .tiles {
      flex-direction: row; }
      .home .tiles .tile {
        height: 28vw; }
        .home .tiles .tile a h2,
        .home .tiles .tile a h3 {
          color: rgba(0, 0, 0, 0.5); }
        .home .tiles .tile.slim {
          width: 25%; }
        .home .tiles .tile.standard {
          width: 50%; }
        .home .tiles .tile.three-quarters {
          width: 75%; }
        .home .tiles .tile.wide {
          width: 100%; }
      .home .tiles.high-tiles .tile {
        height: 56vw; }
      .home .tiles.half-height .tile {
        height: 28vw; }
      .home .tiles.full-width .tile {
        height: 24vw;
        width: 100%; } }

.home .first-row .tile:nth-child(2) {
  background-color: #F2F2F2; }

.home .first-row .tile .slide {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: all 500ms; }

.home .recipe-row {
  background-color: #CD0B15; }
  .home .recipe-row .tile .owl-item {
    overflow: hidden;
    transform: translateZ(0); }
  .home .recipe-row .tile .slide {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: all 500ms; }
    .home .recipe-row .tile .slide a {
      transition: all 500ms;
      backface-visibility: hidden;
      background-color: rgba(0, 0, 0, 0.3); }
      .home .recipe-row .tile .slide a h2,
      .home .recipe-row .tile .slide a h3 {
        color: #FFF;
        text-align: center;
        margin-bottom: .4em;
        max-width: 90%;
        text-shadow: rgba(0, 0, 0, 0.9) 0 0 0.2em; }
      .home .recipe-row .tile .slide a h2 {
        text-transform: uppercase;
        font-weight: 400;
        margin-bottom: .2em; }
      .home .recipe-row .tile .slide a:hover {
        opacity: 1; }
        .home .recipe-row .tile .slide a:hover h2,
        .home .recipe-row .tile .slide a:hover h3,
        .home .recipe-row .tile .slide a:hover .btn {
          transform: translateY(0); }
      @media (min-width: 640px) {
        .home .recipe-row .tile .slide a {
          opacity: 0;
          background-color: transparent; }
          .home .recipe-row .tile .slide a h2,
          .home .recipe-row .tile .slide a h3 {
            color: rgba(255, 255, 255, 0.8);
            max-width: 70%; }
          .home .recipe-row .tile .slide a h2 {
            transform: translateY(1rem); }
          .home .recipe-row .tile .slide a h3 {
            transform: translateY(2rem); }
          .home .recipe-row .tile .slide a .btn {
            transform: translateY(3rem); }
          .home .recipe-row .tile .slide a:hover {
            background-color: rgba(0, 0, 0, 0.5); } }
    .home .recipe-row .tile .slide:hover {
      transform: scale(1.05); }

.home .high-tiles .tile {
  overflow: hidden;
  background-color: #4D4D4D; }
  .home .high-tiles .tile a {
    z-index: 2;
    transition: all 500ms;
    background-color: rgba(0, 0, 0, 0.3); }
    .home .high-tiles .tile a h2,
    .home .high-tiles .tile a h3 {
      color: #FFF;
      text-shadow: rgba(0, 0, 0, 0.9) 0 0 0.2em; }
  .home .high-tiles .tile .background {
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: all 500ms;
    backface-visibility: visible; }
  .home .high-tiles .tile:hover a {
    background-color: rgba(0, 0, 0, 0.5); }
    .home .high-tiles .tile:hover a h2,
    .home .high-tiles .tile:hover a h3 {
      color: rgba(255, 255, 255, 0.8); }
  .home .high-tiles .tile:hover .background {
    transform: scale(1.05) translate3d(0, 0, 0); }
  @media (min-width: 640px) {
    .home .high-tiles .tile a {
      background-color: transparent; }
      .home .high-tiles .tile a h2,
      .home .high-tiles .tile a h3 {
        color: rgba(255, 255, 255, 0.7); } }

.page-template-category-recipes p {
  font-size: calc(14px + (24 - 14) * ((100vw - 360px) / (1600 - 360))); }
  @media (max-width: 360px) {
    .page-template-category-recipes p {
      font-size: 14px; } }
  @media (min-width: 1600px) {
    .page-template-category-recipes p {
      font-size: 24px; } }

.page-template-category-recipes .recipe-filtering ul {
  display: flex;
  align-items: baseline;
  justify-content: center;
  list-style-type: none;
  width: 98%;
  padding: 2em 0;
  margin: 2em auto 4em;
  flex-wrap: wrap;
  border-top: 2px solid rgba(8, 87, 35, 0.8);
  border-bottom: 2px solid rgba(8, 87, 35, 0.8);
  text-align: center;
  color: #085723; }
  .page-template-category-recipes .recipe-filtering ul li {
    font-family: Verdana, Arial;
    user-select: none;
    margin: 0.5em 1em;
    width: 100%;
    user-select: none;
    vertical-align: middle;
    font-size: calc(14px + (18 - 14) * ((100vw - 640px) / (1600 - 640))); }
    @media (max-width: 640px) {
      .page-template-category-recipes .recipe-filtering ul li {
        font-size: 14px; } }
    @media (min-width: 1600px) {
      .page-template-category-recipes .recipe-filtering ul li {
        font-size: 18px; } }
    .page-template-category-recipes .recipe-filtering ul li:first-child {
      width: 100%; }
    .page-template-category-recipes .recipe-filtering ul li.title {
      position: relative;
      font-weight: 600;
      padding-left: 1.2em; }
      .page-template-category-recipes .recipe-filtering ul li.title i {
        color: #CD0B15;
        font-size: 1.5em;
        margin-right: .3em;
        vertical-align: middle; }
        .page-template-category-recipes .recipe-filtering ul li.title i:before {
          position: absolute;
          left: 0;
          transition: all 500ms; }
      .page-template-category-recipes .recipe-filtering ul li.title.ascending i:before {
        transform: rotate(-180deg); }
    .page-template-category-recipes .recipe-filtering ul li.filter {
      position: relative;
      font-weight: 400;
      cursor: pointer;
      transition: all 500ms; }
      .page-template-category-recipes .recipe-filtering ul li.filter:after {
        content: '';
        position: absolute;
        top: 110%;
        left: 50%;
        transform: translateX(-50%);
        height: 2px;
        width: 0;
        background-color: #B4975A;
        transition: width 500ms; }
      .page-template-category-recipes .recipe-filtering ul li.filter:hover:after, .page-template-category-recipes .recipe-filtering ul li.filter.active:after {
        width: 3em; }
      .page-template-category-recipes .recipe-filtering ul li.filter.active {
        color: black; }

@media (min-width: 360px) {
  .page-template-category-recipes .recipe-filtering ul li {
    width: auto;
    margin: .5em 1em; } }

@media (min-width: 960px) {
  .page-template-category-recipes .recipe-filtering ul li {
    margin: 0 1em; }
    .page-template-category-recipes .recipe-filtering ul li:first-child {
      width: auto; } }

.page-template-category-recipes .recipe-listing {
  display: flex;
  flex-direction: row;
  flex-flow: row wrap; }
  .page-template-category-recipes .recipe-listing .recipe {
    width: 98%;
    margin: 0 1%;
    box-shadow: rgba(0, 0, 0, 0.1) 0 3px 5px;
    transition: all 500ms;
    margin-bottom: 4em; }
    .page-template-category-recipes .recipe-listing .recipe a {
      color: #085723; }
      .page-template-category-recipes .recipe-listing .recipe a .preview {
        position: relative;
        height: 0;
        padding-bottom: 80%;
        overflow: hidden; }
        .page-template-category-recipes .recipe-listing .recipe a .preview .image {
          position: absolute;
          top: 0;
          right: 0;
          bottom: 0;
          left: 0;
          z-index: 1;
          background-size: cover;
          background-position: center;
          background-repeat: no-repeat;
          transition: transform 500ms; }
        .page-template-category-recipes .recipe-listing .recipe a .preview .overlay {
          position: absolute;
          top: 0;
          right: 0;
          bottom: 0;
          left: 0;
          z-index: 2;
          background-color: rgba(0, 0, 0, 0.5);
          opacity: 0;
          transition: opacity 500ms;
          display: flex;
          flex-direction: column;
          align-items: center;
          justify-content: center;
          backface-visibility: hidden; }
          .page-template-category-recipes .recipe-listing .recipe a .preview .overlay .btn {
            transform: translateY(2rem); }
      .page-template-category-recipes .recipe-listing .recipe a .details {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 1em 0; }
        .page-template-category-recipes .recipe-listing .recipe a .details h3 {
          color: #085723;
          max-width: 90%;
          text-align: center;
          font-family: Verdana, Arial;
          font-weight: 300;
          margin: 0;
          font-size: calc(18px + (24 - 18) * ((100vw - 360px) / (1600 - 360))); }
          @media (max-width: 360px) {
            .page-template-category-recipes .recipe-listing .recipe a .details h3 {
              font-size: 18px; } }
          @media (min-width: 1600px) {
            .page-template-category-recipes .recipe-listing .recipe a .details h3 {
              font-size: 24px; } }
        .page-template-category-recipes .recipe-listing .recipe a .details .separator {
          background-color: rgba(0, 0, 0, 0.2);
          width: 40%;
          margin: .5em 0 1em; }
        .page-template-category-recipes .recipe-listing .recipe a .details p {
          color: #085723;
          margin: .2em 0;
          text-transform: uppercase;
          white-space: initial;
          font-size: calc(14px + (18 - 14) * ((100vw - 360px) / (1600 - 360))); }
          @media (max-width: 360px) {
            .page-template-category-recipes .recipe-listing .recipe a .details p {
              font-size: 14px; } }
          @media (min-width: 1600px) {
            .page-template-category-recipes .recipe-listing .recipe a .details p {
              font-size: 18px; } }
          .page-template-category-recipes .recipe-listing .recipe a .details p b {
            font-family: Verdana, Arial;
            font-weight: 600;
            margin-right: 1em;
            vertical-align: middle;
            font-size: calc(12px + (14 - 12) * ((100vw - 360px) / (1600 - 360))); }
            @media (max-width: 360px) {
              .page-template-category-recipes .recipe-listing .recipe a .details p b {
                font-size: 12px; } }
            @media (min-width: 1600px) {
              .page-template-category-recipes .recipe-listing .recipe a .details p b {
                font-size: 14px; } }
          .page-template-category-recipes .recipe-listing .recipe a .details p .effort-rating {
            display: inline-block;
            white-space: nowrap;
            vertical-align: middle; }
            .page-template-category-recipes .recipe-listing .recipe a .details p .effort-rating i {
              color: #085723; }
    .page-template-category-recipes .recipe-listing .recipe:hover {
      box-shadow: rgba(0, 0, 0, 0.2) 0 3px 5px; }
      .page-template-category-recipes .recipe-listing .recipe:hover .preview .image {
        transform: scale(1.1); }
  @media (min-width: 640px) {
    .page-template-category-recipes .recipe-listing .recipe {
      width: 48%; } }
  @media (min-width: 960px) {
    .page-template-category-recipes .recipe-listing .recipe {
      width: 31.3%; } }
  @media (min-width: 1200px) {
    .page-template-category-recipes .recipe-listing .recipe {
      width: 23%; } }

.page-template-category-recipes .alm-btn-wrap {
  display: none; }

.single-recipes .recipe {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap; }
  .single-recipes .recipe > div {
    width: 98%; }
  .single-recipes .recipe .media .video {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; }
    .single-recipes .recipe .media .video iframe {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%; }
  .single-recipes .recipe .media .image {
    height: 0;
    padding-bottom: 56.25%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat; }
  .single-recipes .recipe .media .print-image {
    display: none; }
  .single-recipes .recipe .description {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2em;
    box-sizing: border-box;
    text-align: center;
    border-bottom: 1px solid #B4975A; }
    .single-recipes .recipe .description h1 {
      font-size: calc(20px + (58 - 20) * ((100vw - 360px) / (1600 - 360)));
      font-family: Verdana, Arial;
      font-weight: 600;
      line-height: 1.1;
      margin: .3em 0;
      color: rgba(0, 0, 0, 0.8); }
      @media (max-width: 360px) {
        .single-recipes .recipe .description h1 {
          font-size: 20px; } }
      @media (min-width: 1600px) {
        .single-recipes .recipe .description h1 {
          font-size: 58px; } }
    .single-recipes .recipe .description p {
      font-size: calc(12px + (22 - 12) * ((100vw - 360px) / (1600 - 360)));
      font-family: Verdana, Arial;
      font-weight: 300;
      margin: .3em 0;
      line-height: 1.2; }
      @media (max-width: 360px) {
        .single-recipes .recipe .description p {
          font-size: 12px; } }
      @media (min-width: 1600px) {
        .single-recipes .recipe .description p {
          font-size: 22px; } }
    .single-recipes .recipe .description .effort-rating b, .single-recipes .recipe .description .effort-rating i {
      vertical-align: middle; }
    .single-recipes .recipe .description .effort-rating i {
      color: #085723; }
  .single-recipes .recipe .ingredients,
  .single-recipes .recipe .directions {
    padding: 2em;
    box-sizing: border-box; }
    .single-recipes .recipe .ingredients h2,
    .single-recipes .recipe .directions h2 {
      font-size: calc(14px + (37 - 14) * ((100vw - 360px) / (1600 - 360)));
      position: relative;
      font-family: Verdana, Arial;
      font-weight: 600;
      line-height: 1.1;
      margin: .3em 0 .6em;
      display: block;
      text-align: center;
      color: rgba(8, 87, 35, 0.8); }
      @media (max-width: 360px) {
        .single-recipes .recipe .ingredients h2,
        .single-recipes .recipe .directions h2 {
          font-size: 14px; } }
      @media (min-width: 1600px) {
        .single-recipes .recipe .ingredients h2,
        .single-recipes .recipe .directions h2 {
          font-size: 37px; } }
    .single-recipes .recipe .ingredients h3,
    .single-recipes .recipe .directions h3 {
      font-family: Verdana, Arial;
      font-weight: bold;
      text-transform: uppercase;
      font-size: calc(14px + (18 - 14) * ((100vw - 360px) / (1600 - 360))); }
      @media (max-width: 360px) {
        .single-recipes .recipe .ingredients h3,
        .single-recipes .recipe .directions h3 {
          font-size: 14px; } }
      @media (min-width: 1600px) {
        .single-recipes .recipe .ingredients h3,
        .single-recipes .recipe .directions h3 {
          font-size: 18px; } }
    .single-recipes .recipe .ingredients .orders,
    .single-recipes .recipe .directions .orders {
      border-top: 1px solid #B4975A; }
      .single-recipes .recipe .ingredients .orders h2,
      .single-recipes .recipe .directions .orders h2 {
        margin-top: 1em; }
      .single-recipes .recipe .ingredients .orders .btn,
      .single-recipes .recipe .directions .orders .btn {
        width: 25%;
        margin: 4em auto;
        text-align: center; }
  .single-recipes .recipe .ingredients {
    background-color: #FFF;
    padding: 2em; }
    .single-recipes .recipe .ingredients .ingredient {
      margin: .5em 0;
      font-size: calc(16px + (22 - 16) * ((100vw - 360px) / (1600 - 360))); }
      @media (max-width: 360px) {
        .single-recipes .recipe .ingredients .ingredient {
          font-size: 16px; } }
      @media (min-width: 1600px) {
        .single-recipes .recipe .ingredients .ingredient {
          font-size: 22px; } }
      .single-recipes .recipe .ingredients .ingredient .checkbox-container {
        position: relative;
        display: inline-block;
        vertical-align: middle; }
        .single-recipes .recipe .ingredients .ingredient .checkbox-container input {
          display: block;
          opacity: 0;
          position: absolute;
          top: 50%;
          left: 0;
          width: 1em;
          height: 1em;
          margin: 1px;
          transform: translateY(-50%);
          cursor: pointer;
          font-size: calc(16px + (22 - 16) * ((100vw - 360px) / (1600 - 360))); }
          @media (max-width: 360px) {
            .single-recipes .recipe .ingredients .ingredient .checkbox-container input {
              font-size: 16px; } }
          @media (min-width: 1600px) {
            .single-recipes .recipe .ingredients .ingredient .checkbox-container input {
              font-size: 22px; } }
        .single-recipes .recipe .ingredients .ingredient .checkbox-container .stylised-checkbox {
          position: absolute;
          left: 0;
          width: 1em;
          height: 1em;
          border: 1px solid rgba(0, 0, 0, 0.1);
          pointer-events: none;
          transition: all 500ms;
          background: #fcfff4;
          background: linear-gradient(top, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%); }
          .single-recipes .recipe .ingredients .ingredient .checkbox-container .stylised-checkbox:after {
            content: '';
            width: 9px;
            height: 5px;
            position: absolute;
            top: 25%;
            left: 25%;
            border: 3px solid #333;
            border-top: none;
            border-right: none;
            background: transparent;
            opacity: 0;
            transform: rotate(-45deg); }
          .single-recipes .recipe .ingredients .ingredient .checkbox-container .stylised-checkbox:hover::after {
            opacity: 0.5; }
        .single-recipes .recipe .ingredients .ingredient .checkbox-container input:checked + .stylised-checkbox:after {
          opacity: 1; }
        .single-recipes .recipe .ingredients .ingredient .checkbox-container input:checked ~ label {
          color: #085723; }
      .single-recipes .recipe .ingredients .ingredient label {
        display: block;
        cursor: pointer;
        font-family: Verdana, Arial;
        font-weight: 100;
        margin-left: 1.5em;
        vertical-align: middle;
        transition: all 500ms;
        user-select: none; }
  .single-recipes .recipe .directions {
    border-top: 1px solid rgba(180, 151, 90, 0.9); }
    .single-recipes .recipe .directions ol {
      margin: 2em 0; }
      .single-recipes .recipe .directions ol li {
        font-family: Verdana, Arial;
        font-weight: bold;
        margin: 1em 0;
        font-size: calc(14px + (18 - 14) * ((100vw - 360px) / (1600 - 360))); }
        @media (max-width: 360px) {
          .single-recipes .recipe .directions ol li {
            font-size: 14px; } }
        @media (min-width: 1600px) {
          .single-recipes .recipe .directions ol li {
            font-size: 18px; } }
        .single-recipes .recipe .directions ol li span {
          display: block;
          font-family: Verdana, Arial;
          font-weight: 100;
          margin-left: 1em;
          font-size: calc(16px + (22 - 16) * ((100vw - 360px) / (1600 - 360))); }
          @media (max-width: 360px) {
            .single-recipes .recipe .directions ol li span {
              font-size: 16px; } }
          @media (min-width: 1600px) {
            .single-recipes .recipe .directions ol li span {
              font-size: 22px; } }
  @media (min-width: 960px) {
    .single-recipes .recipe > div {
      width: 49%; }
    .single-recipes .recipe .media .image {
      height: 100%;
      min-height: 26vw;
      padding-bottom: 0; }
    .single-recipes .recipe .directions {
      border-top: none; } }

.tiles {
  display: flex;
  flex-direction: column;
  justify-content: space-between; }
  .tiles .tile {
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 56vw; }
    .tiles .tile .background {
      position: absolute;
      z-index: 0;
      left: 0;
      right: 0;
      top: 0;
      bottom: 0;
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
      transition: all 500ms;
      backface-visibility: hidden; }
    .tiles .tile .btn {
      margin-top: 1em; }
    .tiles .tile a {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0; }
      .tiles .tile a h2,
      .tiles .tile a h3 {
        color: rgba(0, 0, 0, 0.7);
        transition: all 500ms;
        margin: 0; }
      .tiles .tile a h2 {
        font-size: calc(22px + (26 - 22) * ((100vw - 640px) / (1600 - 640))); }
        @media (max-width: 640px) {
          .tiles .tile a h2 {
            font-size: 22px; } }
        @media (min-width: 1600px) {
          .tiles .tile a h2 {
            font-size: 26px; } }
      .tiles .tile a h3 {
        font-size: calc(18px + (22 - 18) * ((100vw - 640px) / (1600 - 640)));
        font-weight: 100;
        line-height: 1.1em; }
        @media (max-width: 640px) {
          .tiles .tile a h3 {
            font-size: 18px; } }
        @media (min-width: 1600px) {
          .tiles .tile a h3 {
            font-size: 22px; } }
      .tiles .tile a:hover h2,
      .tiles .tile a:hover h3 {
        color: #085723; }
      @media (min-width: 640px) {
        .tiles .tile a h2 {
          font-size: calc(32px + (56 - 32) * ((100vw - 640px) / (1600 - 640))); } }
  @media (min-width: 640px) and (max-width: 640px) {
    .tiles .tile a h2 {
      font-size: 32px; } }
  @media (min-width: 640px) and (min-width: 1600px) {
    .tiles .tile a h2 {
      font-size: 56px; } }
      @media (min-width: 640px) {
        .tiles .tile a h3 {
          font-size: calc(26px + (42 - 26) * ((100vw - 640px) / (1600 - 640))); } }
  @media (min-width: 640px) and (max-width: 640px) {
    .tiles .tile a h3 {
      font-size: 26px; } }
  @media (min-width: 640px) and (min-width: 1600px) {
    .tiles .tile a h3 {
      font-size: 42px; } }
    .tiles .tile .sticker {
      position: absolute;
      top: 10%;
      right: 0;
      width: 33em;
      max-width: 50%; }
  .tiles.high-tiles .tile {
    height: 100vw; }
  @media (min-width: 640px) {
    .tiles {
      flex-direction: row; }
      .tiles .tile {
        height: 28vw; }
        .tiles .tile a h2,
        .tiles .tile a h3 {
          color: rgba(0, 0, 0, 0.5); }
        .tiles .tile.slim {
          width: 25%; }
        .tiles .tile.standard {
          width: 50%; }
        .tiles .tile.three-quarters {
          width: 75%; }
        .tiles .tile.wide {
          width: 100%; }
      .tiles.high-tiles .tile {
        height: 56vw; }
      .tiles.half-height .tile {
        height: 28vw; }
      .tiles.full-width .tile {
        height: 24vw;
        width: 100%; } }

.first-row .tile:nth-child(2) {
  background-color: #F2F2F2; }

.first-row .tile .slide {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: all 500ms; }

.recipe-row {
  background-color: #F2F2F2; }
  .recipe-row .tile .owl-item {
    overflow: hidden;
    transform: translateZ(0); }
  .recipe-row .tile .slide {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: all 500ms; }
    .recipe-row .tile .slide a {
      transition: all 500ms;
      backface-visibility: hidden;
      background-color: rgba(0, 0, 0, 0.3); }
      .recipe-row .tile .slide a h2,
      .recipe-row .tile .slide a h3 {
        color: #FFF;
        text-align: center;
        margin-bottom: .4em;
        max-width: 90%;
        text-shadow: rgba(0, 0, 0, 0.9) 0 0 0.2em; }
      .recipe-row .tile .slide a h2 {
        font-weight: 400;
        margin-bottom: .2em; }
      .recipe-row .tile .slide a:hover {
        opacity: 1; }
        .recipe-row .tile .slide a:hover h2,
        .recipe-row .tile .slide a:hover h3,
        .recipe-row .tile .slide a:hover .btn {
          transform: translateY(0); }
      @media (min-width: 640px) {
        .recipe-row .tile .slide a {
          opacity: 0;
          background-color: transparent; }
          .recipe-row .tile .slide a h2,
          .recipe-row .tile .slide a h3 {
            color: rgba(255, 255, 255, 0.8);
            max-width: 70%;
            text-shadow: none; }
          .recipe-row .tile .slide a h2 {
            transform: translateY(1rem); }
          .recipe-row .tile .slide a h3 {
            transform: translateY(2rem); }
          .recipe-row .tile .slide a .btn {
            transform: translateY(3rem); }
          .recipe-row .tile .slide a:hover {
            background-color: rgba(0, 0, 0, 0.5); } }
    .recipe-row .tile .slide:hover {
      transform: scale(1.05); }

.high-tiles .tile {
  overflow: hidden;
  background-color: #4D4D4D; }
  .high-tiles .tile a {
    z-index: 2;
    transition: all 500ms;
    background-color: rgba(0, 0, 0, 0.3); }
    .high-tiles .tile a h2,
    .high-tiles .tile a h3 {
      color: #FFF;
      text-shadow: rgba(0, 0, 0, 0.9) 0 0 0.2em; }
  .high-tiles .tile .background {
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: all 500ms;
    backface-visibility: hidden; }
  .high-tiles .tile:hover a {
    background-color: rgba(0, 0, 0, 0.5); }
    .high-tiles .tile:hover a h2,
    .high-tiles .tile:hover a h3 {
      color: rgba(255, 255, 255, 0.8); }
  .high-tiles .tile:hover .background {
    transform: scale(1.05) translate3d(0, 0, 0); }
  @media (min-width: 640px) {
    .high-tiles .tile a {
      background-color: transparent; }
      .high-tiles .tile a h2,
      .high-tiles .tile a h3 {
        color: rgba(255, 255, 255, 0.5);
        text-shadow: none; } }

.page-template-category-products #masthead {
  overflow: hidden; }

.page-template-category-products .logo-list {
  width: 80%;
  margin: 2em auto;
  text-align: center;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-flow: row wrap; }
  .page-template-category-products .logo-list img {
    height: 100%;
    margin: 0 1em; }

.page-template-category-products .column p {
  font-size: calc(14px + (18 - 14) * ((100vw - 640px) / (1600 - 640))); }
  @media (max-width: 640px) {
    .page-template-category-products .column p {
      font-size: 14px; } }
  @media (min-width: 1600px) {
    .page-template-category-products .column p {
      font-size: 18px; } }

.page-template-category-products .range-filter ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style-type: none;
  width: 100%;
  padding: 2em;
  margin: 2em auto 4em;
  flex-wrap: wrap;
  border-top: 2px solid rgba(8, 87, 35, 0.8);
  border-bottom: 2px solid rgba(8, 87, 35, 0.8);
  text-align: center;
  color: #085723;
  box-sizing: border-box; }
  .page-template-category-products .range-filter ul li {
    font-family: Verdana, Arial;
    user-select: none;
    margin: 0.5em 1em;
    width: 100%;
    user-select: none;
    font-size: calc(14px + (18 - 14) * ((100vw - 640px) / (1600 - 640))); }
    @media (max-width: 640px) {
      .page-template-category-products .range-filter ul li {
        font-size: 14px; } }
    @media (min-width: 1600px) {
      .page-template-category-products .range-filter ul li {
        font-size: 18px; } }
    .page-template-category-products .range-filter ul li:first-child {
      width: 100%; }
    .page-template-category-products .range-filter ul li.title {
      font-weight: 600; }
    .page-template-category-products .range-filter ul li.range {
      position: relative;
      font-weight: 400;
      cursor: pointer;
      transition: all 500ms; }
      .page-template-category-products .range-filter ul li.range:after {
        content: '';
        position: absolute;
        top: 110%;
        left: 50%;
        transform: translateX(-50%);
        height: 2px;
        width: 0;
        background-color: #B4975A;
        transition: width 500ms; }
      .page-template-category-products .range-filter ul li.range:hover:after, .page-template-category-products .range-filter ul li.range.active:after {
        width: 3em; }
      .page-template-category-products .range-filter ul li.range.active {
        color: black; }

@media (min-width: 960px) {
  .page-template-category-products .range-filter ul li {
    width: auto;
    margin: .5em .3em; } }

@media (min-width: 1200px) {
  .page-template-category-products .range-filter ul li {
    margin: 0 .3em; }
    .page-template-category-products .range-filter ul li:first-child {
      width: auto;
      margin-left: 0; }
    .page-template-category-products .range-filter ul li:last-child {
      margin-right: 0; } }

.page-template-category-products .ranges {
  display: block;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  font-size: 0;
  overflow: hidden; }
  .page-template-category-products .ranges .range {
    display: inline-block;
    position: relative;
    width: 98%;
    margin: 0 1% 2%;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.1) 0 3px 5px;
    transition: all 500ms;
    cursor: pointer;
    user-select: none; }
    .page-template-category-products .ranges .range .image {
      position: relative;
      width: 100%;
      height: 0;
      padding-bottom: 100%;
      background-repeat: no-repeat;
      background-position: center;
      background-size: cover;
      z-index: 1;
      transition: all 500ms;
      backface-visibility: hidden; }
  .page-template-category-products .ranges:after {
    content: '';
    display: block;
    flex-basis: 22.5%; }
  .page-template-category-products .ranges .range-products {
    font-size: 1rem;
    float: left;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    max-height: 0;
    overflow: hidden;
    transition: all 500ms; }
    .page-template-category-products .ranges .range-products .product {
      width: 98%;
      margin: 0 1% 2em;
      z-index: 1; }
      .page-template-category-products .ranges .range-products .product a {
        display: flex;
        flex-direction: column;
        color: #085723;
        text-align: center;
        align-items: center;
        transition: all 500ms;
        backface-visibility: hidden; }
        .page-template-category-products .ranges .range-products .product a .image-container {
          width: 100%; }
        .page-template-category-products .ranges .range-products .product a .image {
          width: 100%;
          height: 0;
          padding-bottom: 65%;
          background-position: center;
          background-repeat: no-repeat;
          background-size: contain; }
        .page-template-category-products .ranges .range-products .product a h1 {
          margin-bottom: 0; }
        .page-template-category-products .ranges .range-products .product a h3 {
          font-family: Verdana, Arial;
          font-weight: 400;
          margin: .2em 0;
          font-size: calc(10px + (13 - 10) * ((100vw - 640px) / (1600 - 640))); }
          @media (max-width: 640px) {
            .page-template-category-products .ranges .range-products .product a h3 {
              font-size: 10px; } }
          @media (min-width: 1600px) {
            .page-template-category-products .ranges .range-products .product a h3 {
              font-size: 13px; } }
        .page-template-category-products .ranges .range-products .product a p {
          margin: .2em 0;
          font-size: calc(18px + (28 - 18) * ((100vw - 640px) / (1600 - 640))); }
          @media (max-width: 640px) {
            .page-template-category-products .ranges .range-products .product a p {
              font-size: 18px; } }
          @media (min-width: 1600px) {
            .page-template-category-products .ranges .range-products .product a p {
              font-size: 28px; } }
        .page-template-category-products .ranges .range-products .product a:hover {
          transform: scale(1.05); }
      .page-template-category-products .ranges .range-products .product:hover {
        z-index: 2; }
    .page-template-category-products .ranges .range-products.active {
      max-height: 6000px;
      overflow: visible; }
  .page-template-category-products .ranges.opened .range:not(.active):not(:hover) {
    opacity: .8; }
  @media (min-width: 640px) {
    .page-template-category-products .ranges .range {
      width: 48%; }
    .page-template-category-products .ranges .range-products .product {
      width: 48%; }
    .page-template-category-products .ranges .range-products.active {
      max-height: 3500px;
      overflow: visible; } }
  @media (min-width: 960px) {
    .page-template-category-products .ranges .range {
      width: 31.3%; }
      .page-template-category-products .ranges .range .overlay {
        opacity: 0; }
    .page-template-category-products .ranges.opened .range:not(.active):not(:hover) {
      opacity: .3; }
    .page-template-category-products .ranges .range-products .product {
      width: 31.3%; }
    .page-template-category-products .ranges .range-products.active {
      max-height: 2400px;
      overflow: visible; } }
  @media (min-width: 1200px) {
    .page-template-category-products .ranges .range {
      width: 23%; }
    .page-template-category-products .ranges .range-products .product {
      width: 23%; }
    .page-template-category-products .ranges .range-products.active {
      max-height: 1800px;
      overflow: visible; } }

.single-products .product-basics {
  display: flex;
  flex-direction: column; }
  .single-products .product-basics .product-image .image {
    height: 0;
    padding-bottom: 75%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain; }
  .single-products .product-basics .product-description {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; }
    .single-products .product-basics .product-description h1,
    .single-products .product-basics .product-description p {
      width: 20em;
      max-width: 80%;
      text-align: center; }
    .single-products .product-basics .product-description h1 {
      font-size: calc(26px + (64 - 26) * ((100vw - 360px) / (1600 - 360)));
      font-weight: 600;
      line-height: 1.1;
      margin: 0 auto;
      color: rgba(0, 0, 0, 0.8); }
      @media (max-width: 360px) {
        .single-products .product-basics .product-description h1 {
          font-size: 26px; } }
      @media (min-width: 1600px) {
        .single-products .product-basics .product-description h1 {
          font-size: 64px; } }
    .single-products .product-basics .product-description h2 {
      font-size: calc(26px + (32 - 26) * ((100vw - 360px) / (1600 - 360)));
      margin: 0 auto;
      font-weight: 400;
      color: rgba(0, 0, 0, 0.8); }
      @media (max-width: 360px) {
        .single-products .product-basics .product-description h2 {
          font-size: 26px; } }
      @media (min-width: 1600px) {
        .single-products .product-basics .product-description h2 {
          font-size: 32px; } }
    .single-products .product-basics .product-description p {
      font-size: calc(14px + (18 - 14) * ((100vw - 360px) / (1600 - 360)));
      font-weight: 300;
      margin: 1em 0;
      line-height: 1.4; }
      @media (max-width: 360px) {
        .single-products .product-basics .product-description p {
          font-size: 14px; } }
      @media (min-width: 1600px) {
        .single-products .product-basics .product-description p {
          font-size: 18px; } }
    .single-products .product-basics .product-description .product-footnote {
      font-size: calc(10px + (14 - 10) * ((100vw - 360px) / (1600 - 360))); }
      @media (max-width: 360px) {
        .single-products .product-basics .product-description .product-footnote {
          font-size: 10px; } }
      @media (min-width: 1600px) {
        .single-products .product-basics .product-description .product-footnote {
          font-size: 14px; } }
  @media (min-width: 640px) {
    .single-products .product-basics {
      flex-direction: row; }
      .single-products .product-basics > div {
        width: 50%; } }

.single-products .product-details {
  margin: 2em auto;
  width: 60%; }
  @media screen and (max-width: 640px) {
    .single-products .product-details {
      width: 100%; } }
  .single-products .product-details ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 2em 0;
    list-style-type: none; }
    .single-products .product-details ul li {
      position: relative;
      margin: 0 2em;
      text-align: center; }
      @media screen and (max-width: 640px) {
        .single-products .product-details ul li {
          display: block;
          width: 33%;
          margin: 0 auto; } }
      .single-products .product-details ul li:after {
        content: '';
        display: block;
        background-color: #B4975A;
        height: 2px;
        position: absolute;
        top: 115%;
        left: 50%;
        width: 0;
        transform: translateX(-50%);
        transition: all 500ms; }
      .single-products .product-details ul li a {
        font-family: Verdana, Arial;
        color: #085723;
        padding: .2em 0;
        transition: all 500ms;
        font-size: calc(12px + (18 - 12) * ((100vw - 360px) / (1600 - 360))); }
        @media (max-width: 360px) {
          .single-products .product-details ul li a {
            font-size: 12px; } }
        @media (min-width: 1600px) {
          .single-products .product-details ul li a {
            font-size: 18px; } }
      .single-products .product-details ul li.active:after, .single-products .product-details ul li:hover:after {
        width: 5em; }
      .single-products .product-details ul li.active a {
        color: black; }
  .single-products .product-details .detail-groups {
    border-bottom: 3px solid #085723; }
  .single-products .product-details #product-claims {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 2em 0;
    justify-content: center;
    align-items: center; }
    .single-products .product-details #product-claims .claim {
      width: calc(100%/2);
      padding: 3%;
      box-sizing: border-box; }
      .single-products .product-details #product-claims .claim > div {
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
        height: 0;
        padding-bottom: 100%; }
        .single-products .product-details #product-claims .claim > div.claim-96_fat_free {
          background-image: url("../images/claim-96_fat_free.png"); }
        .single-products .product-details #product-claims .claim > div.claim-100_pole_line {
          background-image: url("../images/claim-100_pole_line.png"); }
        .single-products .product-details #product-claims .claim > div.claim-all_natural_ingredients {
          background-image: url("../images/claim-all_natural_ingredients.png"); }
        .single-products .product-details #product-claims .claim > div.claim-australian_owned {
          background-image: url("../images/claim-australian_owned.png"); }
        .single-products .product-details #product-claims .claim > div.claim-dolphin_safe {
          background-image: url("../images/claim-dolphin_safe.png"); }
        .single-products .product-details #product-claims .claim > div.claim-recycling {
          background-image: url("../images/claim-recycling.png"); }
      @media (min-width: 360px) {
        .single-products .product-details #product-claims .claim {
          width: calc(100%/3); } }
      @media (min-width: 640px) {
        .single-products .product-details #product-claims .claim {
          width: calc(100%/4); } }
      @media (min-width: 960px) {
        .single-products .product-details #product-claims .claim {
          width: calc(100%/6); } }
  .single-products .product-details #product-information {
    width: 90%;
    margin: 0 auto;
    padding: .5em 0;
    text-align: center; }
    .single-products .product-details #product-information p {
      margin: .5em 0;
      font-size: calc(14px + (18 - 14) * ((100vw - 360px) / (1600 - 360))); }
      @media (max-width: 360px) {
        .single-products .product-details #product-information p {
          font-size: 14px; } }
      @media (min-width: 1600px) {
        .single-products .product-details #product-information p {
          font-size: 18px; } }
  .single-products .product-details #nutritional-information {
    text-align: center; }
    .single-products .product-details #nutritional-information table {
      display: inline-block;
      width: 50em;
      max-width: 90%;
      border-collapse: collapse; }
      .single-products .product-details #nutritional-information table th {
        text-align: left;
        font-family: Verdana, Arial;
        font-weight: 600;
        text-transform: uppercase;
        padding: .2em 1em .2em 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        font-size: calc(12px + (16 - 12) * ((100vw - 360px) / (1600 - 360))); }
        @media (max-width: 360px) {
          .single-products .product-details #nutritional-information table th {
            font-size: 12px; } }
        @media (min-width: 1600px) {
          .single-products .product-details #nutritional-information table th {
            font-size: 16px; } }
        .single-products .product-details #nutritional-information table th.child {
          padding-left: 1em; }
      .single-products .product-details #nutritional-information table td {
        padding: .1em 1em;
        text-align: center;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        font-size: calc(16px + (18 - 16) * ((100vw - 360px) / (1600 - 360))); }
        @media (max-width: 360px) {
          .single-products .product-details #nutritional-information table td {
            font-size: 16px; } }
        @media (min-width: 1600px) {
          .single-products .product-details #nutritional-information table td {
            font-size: 18px; } }
        .single-products .product-details #nutritional-information table td p {
          font-size: calc(16px + (18 - 16) * ((100vw - 360px) / (1600 - 360))); }
          @media (max-width: 360px) {
            .single-products .product-details #nutritional-information table td p {
              font-size: 16px; } }
          @media (min-width: 1600px) {
            .single-products .product-details #nutritional-information table td p {
              font-size: 18px; } }

.page-template-history .history-footer {
  display: flex;
  max-width: 90%;
  margin: 0 auto;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap; }
  .page-template-history .history-footer .block {
    width: 100%;
    text-align: center;
    padding: 0 5%;
    margin: 2em 0;
    box-sizing: border-box; }
    .page-template-history .history-footer .block i {
      color: #085723;
      font-size: calc(26px + (64 - 26) * ((100vw - 360px) / (1600 - 360))); }
      @media (max-width: 360px) {
        .page-template-history .history-footer .block i {
          font-size: 26px; } }
      @media (min-width: 1600px) {
        .page-template-history .history-footer .block i {
          font-size: 64px; } }
    .page-template-history .history-footer .block h2 {
      font-weight: 400;
      color: rgba(0, 0, 0, 0.8);
      margin: 0 0 .2em;
      font-size: calc(26px + (64 - 26) * ((100vw - 360px) / (1600 - 360))); }
      @media (max-width: 360px) {
        .page-template-history .history-footer .block h2 {
          font-size: 26px; } }
      @media (min-width: 1600px) {
        .page-template-history .history-footer .block h2 {
          font-size: 64px; } }
    .page-template-history .history-footer .block p {
      color: rgba(0, 0, 0, 0.8);
      font-size: calc(16px + (28 - 16) * ((100vw - 360px) / (1600 - 360))); }
      @media (max-width: 360px) {
        .page-template-history .history-footer .block p {
          font-size: 16px; } }
      @media (min-width: 1600px) {
        .page-template-history .history-footer .block p {
          font-size: 28px; } }

@media (min-width: 960px) {
  .page-template-history .history-footer .block {
    margin: 5em 0;
    width: 50%; }
    .page-template-history .history-footer .block:first-child {
      border-right: 1px solid rgba(0, 0, 0, 0.4); } }

.page-template-contact main.spaced {
  padding-top: 0; }

.page-template-contact .contact-content {
  position: relative;
  display: flex;
  flex-wrap: wrap; }
  .page-template-contact .contact-content .background {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center; }
  .page-template-contact .contact-content .contact-details {
    width: 100%;
    padding: 8em 1%;
    text-align: center;
    box-sizing: border-box;
    background: rgba(8, 87, 35, 0.8);
    z-index: 3; }
    .page-template-contact .contact-content .contact-details h1 {
      font-weight: 600;
      color: #FFF;
      margin: .2em 0;
      font-size: calc(20px + (58 - 20) * ((100vw - 360px) / (1600 - 360))); }
      @media (max-width: 360px) {
        .page-template-contact .contact-content .contact-details h1 {
          font-size: 20px; } }
      @media (min-width: 1600px) {
        .page-template-contact .contact-content .contact-details h1 {
          font-size: 58px; } }
    .page-template-contact .contact-content .contact-details h2 {
      color: rgba(255, 255, 255, 0.9);
      font-size: calc(16px + (32 - 16) * ((100vw - 360px) / (1600 - 360)));
      font-weight: 400; }
      @media (max-width: 360px) {
        .page-template-contact .contact-content .contact-details h2 {
          font-size: 16px; } }
      @media (min-width: 1600px) {
        .page-template-contact .contact-content .contact-details h2 {
          font-size: 32px; } }
    .page-template-contact .contact-content .contact-details p, .page-template-contact .contact-content .contact-details li {
      color: rgba(255, 255, 255, 0.9);
      font-size: calc(12px + (18 - 12) * ((100vw - 360px) / (1600 - 360))); }
      @media (max-width: 360px) {
        .page-template-contact .contact-content .contact-details p, .page-template-contact .contact-content .contact-details li {
          font-size: 12px; } }
      @media (min-width: 1600px) {
        .page-template-contact .contact-content .contact-details p, .page-template-contact .contact-content .contact-details li {
          font-size: 18px; } }
    .page-template-contact .contact-content .contact-details .wpcf7 {
      width: auto;
      margin: 0 auto; }
      .page-template-contact .contact-content .contact-details .wpcf7 form {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        justify-content: center;
        width: 50em;
        max-width: 90%;
        margin: 0 auto; }
        .page-template-contact .contact-content .contact-details .wpcf7 form p {
          display: inline-block;
          margin: .4em 0;
          max-width: 100%; }
          .page-template-contact .contact-content .contact-details .wpcf7 form p label {
            display: flex;
            position: relative;
            align-items: flex-start;
            justify-content: flex-end;
            text-align: right;
            text-transform: uppercase;
            font-family: Verdana, Arial;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.8);
            font-size: calc(12px + (16 - 12) * ((100vw - 360px) / (1600 - 360))); }
            @media (max-width: 360px) {
              .page-template-contact .contact-content .contact-details .wpcf7 form p label {
                font-size: 12px; } }
            @media (min-width: 1600px) {
              .page-template-contact .contact-content .contact-details .wpcf7 form p label {
                font-size: 16px; } }
            .page-template-contact .contact-content .contact-details .wpcf7 form p label input,
            .page-template-contact .contact-content .contact-details .wpcf7 form p label textarea {
              width: 12em;
              max-width: 80%;
              border: none;
              border-bottom: 1px solid rgba(180, 151, 90, 0.8);
              outline: none;
              font-family: Verdana, Arial;
              font-size: calc(16px + (24 - 16) * ((100vw - 360px) / (1600 - 360))); }
              @media (max-width: 360px) {
                .page-template-contact .contact-content .contact-details .wpcf7 form p label input,
                .page-template-contact .contact-content .contact-details .wpcf7 form p label textarea {
                  font-size: 16px; } }
              @media (min-width: 1600px) {
                .page-template-contact .contact-content .contact-details .wpcf7 form p label input,
                .page-template-contact .contact-content .contact-details .wpcf7 form p label textarea {
                  font-size: 24px; } }
            .page-template-contact .contact-content .contact-details .wpcf7 form p label input[type=radio] {
              width: auto; }
            .page-template-contact .contact-content .contact-details .wpcf7 form p label .wpcf7-list-item-label {
              text-transform: none; }
            .page-template-contact .contact-content .contact-details .wpcf7 form p label textarea {
              height: 4em; }
            .page-template-contact .contact-content .contact-details .wpcf7 form p label i {
              position: absolute;
              top: 0;
              right: 0;
              font-style: normal;
              color: #C22026;
              font-size: calc(16px + (28 - 16) * ((100vw - 360px) / (1600 - 360))); }
              @media (max-width: 360px) {
                .page-template-contact .contact-content .contact-details .wpcf7 form p label i {
                  font-size: 16px; } }
              @media (min-width: 1600px) {
                .page-template-contact .contact-content .contact-details .wpcf7 form p label i {
                  font-size: 28px; } }
        .page-template-contact .contact-content .contact-details .wpcf7 form .submit-row {
          width: 100%;
          display: flex;
          flex-direction: row;
          align-items: center;
          justify-content: center; }
          .page-template-contact .contact-content .contact-details .wpcf7 form .submit-row .explain-required {
            margin: 0 2em;
            font-family: Verdana, Arial;
            font-weight: 400;
            color: #FFF; }
            .page-template-contact .contact-content .contact-details .wpcf7 form .submit-row .explain-required i {
              color: rgba(194, 32, 38, 0.6);
              vertical-align: middle;
              font-style: normal;
              color: #C22026;
              margin-right: .2em;
              font-size: calc(16px + (28 - 16) * ((100vw - 360px) / (1600 - 360))); }
              @media (max-width: 360px) {
                .page-template-contact .contact-content .contact-details .wpcf7 form .submit-row .explain-required i {
                  font-size: 16px; } }
              @media (min-width: 1600px) {
                .page-template-contact .contact-content .contact-details .wpcf7 form .submit-row .explain-required i {
                  font-size: 28px; } }
      .page-template-contact .contact-content .contact-details .wpcf7 .wpcf7-not-valid-tip {
        font-size: calc(10px + (14 - 10) * ((100vw - 360px) / (1600 - 360))); }
        @media (max-width: 360px) {
          .page-template-contact .contact-content .contact-details .wpcf7 .wpcf7-not-valid-tip {
            font-size: 10px; } }
        @media (min-width: 1600px) {
          .page-template-contact .contact-content .contact-details .wpcf7 .wpcf7-not-valid-tip {
            font-size: 14px; } }
      .page-template-contact .contact-content .contact-details .wpcf7 .wpcf7-response-output {
        font-size: calc(10px + (14 - 10) * ((100vw - 360px) / (1600 - 360)));
        margin: 1em auto; }
        @media (max-width: 360px) {
          .page-template-contact .contact-content .contact-details .wpcf7 .wpcf7-response-output {
            font-size: 10px; } }
        @media (min-width: 1600px) {
          .page-template-contact .contact-content .contact-details .wpcf7 .wpcf7-response-output {
            font-size: 14px; } }
      .page-template-contact .contact-content .contact-details .wpcf7 input[type=radio]:checked ~ .check {
        border: 5px solid #0DFF92; }
      .page-template-contact .contact-content .contact-details .wpcf7 input[type=radio]:checked ~ .check::before {
        background: #0DFF92; }
      .page-template-contact .contact-content .contact-details .wpcf7 input[type=radio]:checked ~ label {
        color: #0DFF92; }

@media (min-width: 960px) {
  .page-template-contact .contact-content .background {
    position: absolute;
    min-height: 100vh;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat; }
  .page-template-contact .contact-content .contact-details {
    z-index: 3;
    width: 70%;
    padding-top: 5em;
    margin: 15em auto; }
    .page-template-contact .contact-content .contact-details .wpcf7 form p label input,
    .page-template-contact .contact-content .contact-details .wpcf7 form p label textarea {
      width: 12em; } }

.page-template-divided-content .block.grey {
  background: rgba(0, 0, 0, 0.02); }

.page-template-divided-content .block .content {
  width: 100em;
  max-width: 100%;
  padding: 5em 5%;
  box-sizing: border-box;
  text-align: center; }
  .page-template-divided-content .block .content h1 {
    font-weight: 400;
    font-size: calc(26px + (64 - 26) * ((100vw - 360px) / (1600 - 360)));
    position: relative; }
    @media (max-width: 360px) {
      .page-template-divided-content .block .content h1 {
        font-size: 26px; } }
    @media (min-width: 1600px) {
      .page-template-divided-content .block .content h1 {
        font-size: 64px; } }
    .page-template-divided-content .block .content h1:after {
      content: '';
      display: block;
      position: absolute;
      top: 110%;
      height: 1px;
      width: 8em;
      max-width: 80%;
      background-color: rgba(0, 0, 0, 0.2);
      left: 50%;
      transform: translateX(-50%); }
  .page-template-divided-content .block .content h2 {
    font-weight: 100;
    font-size: calc(18px + (48 - 18) * ((100vw - 360px) / (1600 - 360))); }
    @media (max-width: 360px) {
      .page-template-divided-content .block .content h2 {
        font-size: 18px; } }
    @media (min-width: 1600px) {
      .page-template-divided-content .block .content h2 {
        font-size: 48px; } }
  .page-template-divided-content .block .content ul {
    text-align: left;
    font-size: calc(16px + (28 - 16) * ((100vw - 360px) / (1600 - 360))); }
    @media (max-width: 360px) {
      .page-template-divided-content .block .content ul {
        font-size: 16px; } }
    @media (min-width: 1600px) {
      .page-template-divided-content .block .content ul {
        font-size: 28px; } }

.about-content .about-details {
  width: 100%;
  padding: 1em 2em;
  text-align: center;
  box-sizing: border-box;
  font-size: calc(14px + (18 - 14) * ((100vw - 360px) / (1600 - 360))); }
  @media (max-width: 360px) {
    .about-content .about-details {
      font-size: 14px; } }
  @media (min-width: 1600px) {
    .about-content .about-details {
      font-size: 18px; } }

.about-content .about-benefits {
  padding-bottom: 3em; }
  .about-content .about-benefits h2 {
    color: rgba(8, 87, 35, 0.9);
    text-align: center;
    font-size: calc(18px + (38 - 18) * ((100vw - 360px) / (1600 - 360)));
    font-weight: 600; }
    @media (max-width: 360px) {
      .about-content .about-benefits h2 {
        font-size: 18px; } }
    @media (min-width: 1600px) {
      .about-content .about-benefits h2 {
        font-size: 38px; } }
  .about-content .about-benefits p, .about-content .about-benefits li {
    color: rgba(0, 0, 0, 0.9);
    font-size: calc(12px + (18 - 12) * ((100vw - 360px) / (1600 - 360))); }
    @media (max-width: 360px) {
      .about-content .about-benefits p, .about-content .about-benefits li {
        font-size: 12px; } }
    @media (min-width: 1600px) {
      .about-content .about-benefits p, .about-content .about-benefits li {
        font-size: 18px; } }
  .about-content .about-benefits .about-benefits-tile {
    height: auto;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column-reverse; }
    @media (min-width: 960px) {
      .about-content .about-benefits .about-benefits-tile {
        flex-direction: inherit; } }
    .about-content .about-benefits .about-benefits-tile div {
      display: flex;
      align-items: center; }
      .about-content .about-benefits .about-benefits-tile div p {
        text-align: center;
        box-sizing: border-box;
        padding: 1em 4em; }
    .about-content .about-benefits .about-benefits-tile img {
      margin: 0 auto;
      max-height: 16em;
      max-width: 16em;
      padding: 2em; }
  .about-content .about-benefits .about-benefits-tile:nth-child(odd) {
    background-color: #FFF; }
    .about-content .about-benefits .about-benefits-tile:nth-child(odd) p {
      color: #085723; }
  .about-content .about-benefits .about-benefits-tile:nth-child(even) {
    background-color: #085723; }
    .about-content .about-benefits .about-benefits-tile:nth-child(even) p {
      color: #FFF; }

.about-content .about-sections .img-bg {
  background-position: center;
  height: 35vw;
  background-repeat: no-repeat;
  background-size: cover; }

.about-content .about-sections .about-sections-content {
  padding: 2em 2em 5em; }
  @media (min-width: 960px) {
    .about-content .about-sections .about-sections-content {
      width: 60%;
      margin: 0 auto; } }
  .about-content .about-sections .about-sections-content h2 {
    color: rgba(8, 87, 35, 0.9);
    text-align: center;
    font-size: calc(20px + (38 - 20) * ((100vw - 360px) / (1600 - 360)));
    font-weight: 600; }
    @media (max-width: 360px) {
      .about-content .about-sections .about-sections-content h2 {
        font-size: 20px; } }
    @media (min-width: 1600px) {
      .about-content .about-sections .about-sections-content h2 {
        font-size: 38px; } }
  .about-content .about-sections .about-sections-content p {
    color: rgba(0, 0, 0, 0.9);
    text-align: center;
    margin: 0 auto;
    font-size: calc(12px + (18 - 12) * ((100vw - 360px) / (1600 - 360))); }
    @media (max-width: 360px) {
      .about-content .about-sections .about-sections-content p {
        font-size: 12px; } }
    @media (min-width: 1600px) {
      .about-content .about-sections .about-sections-content p {
        font-size: 18px; } }

@media (min-width: 960px) {
  .about-content .background {
    width: 50%;
    height: auto;
    min-height: 100vh; }
  .about-content .about-details {
    width: 50%;
    margin: 3em auto; }
  .about-benefits-tile div {
    width: 60%; }
  .img-bg {
    background-position: center;
    height: 15vw !important;
    background-repeat: no-repeat; } }

.news-content .news-details {
  width: 100%;
  padding: 1em 2em;
  text-align: center;
  box-sizing: border-box;
  font-size: calc(14px + (18 - 14) * ((100vw - 360px) / (1600 - 360))); }
  @media (max-width: 360px) {
    .news-content .news-details {
      font-size: 14px; } }
  @media (min-width: 1600px) {
    .news-content .news-details {
      font-size: 18px; } }

.news-content .tile-section {
  display: flex;
  flex-wrap: wrap;
  height: 50em; }
  .news-content .tile-section .tile-wrapper {
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 25vw;
    width: 30%;
    margin: 0 1%;
    box-shadow: rgba(0, 0, 0, 0.1) 0 3px 5px; }
    @media screen and (max-width: 960px) {
      .news-content .tile-section .tile-wrapper {
        width: 50%;
        height: 40vw; } }
    .news-content .tile-section .tile-wrapper .preview {
      position: relative;
      height: 0;
      padding-bottom: 66%;
      overflow: hidden; }
      .news-content .tile-section .tile-wrapper .preview .image {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: -1;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        transition: transform 500ms; }
      .news-content .tile-section .tile-wrapper .preview .overlay {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 2;
        background-color: rgba(8, 87, 35, 0.5);
        opacity: 0;
        transition: opacity 500ms;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        backface-visibility: hidden; }
      .news-content .tile-section .tile-wrapper .preview .description {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        position: absolute;
        flex-direction: column;
        height: 100%;
        width: 100%;
        top: 50%;
        z-index: 3;
        transform: translateY(-50%); }
        .news-content .tile-section .tile-wrapper .preview .description h2 {
          text-align: center;
          color: #FFF;
          font-size: calc(18px + (24 - 18) * ((100vw - 360px) / (1600 - 360))); }
          @media (max-width: 360px) {
            .news-content .tile-section .tile-wrapper .preview .description h2 {
              font-size: 18px; } }
          @media (min-width: 1600px) {
            .news-content .tile-section .tile-wrapper .preview .description h2 {
              font-size: 24px; } }
        .news-content .tile-section .tile-wrapper .preview .description .btn {
          margin: 0 auto;
          text-align: center;
          font-size: calc(10px + (12 - 10) * ((100vw - 360px) / (1600 - 360))); }
          @media (max-width: 360px) {
            .news-content .tile-section .tile-wrapper .preview .description .btn {
              font-size: 10px; } }
          @media (min-width: 1600px) {
            .news-content .tile-section .tile-wrapper .preview .description .btn {
              font-size: 12px; } }
    .news-content .tile-section .tile-wrapper p {
      text-align: center; }
    .news-content .tile-section .tile-wrapper .details {
      color: #085723;
      font-size: calc(14px + (22 - 14) * ((100vw - 360px) / (1600 - 360))); }
      @media (max-width: 360px) {
        .news-content .tile-section .tile-wrapper .details {
          font-size: 14px; } }
      @media (min-width: 1600px) {
        .news-content .tile-section .tile-wrapper .details {
          font-size: 22px; } }
    .news-content .tile-section .tile-wrapper:hover {
      box-shadow: rgba(0, 0, 0, 0.2) 0 3px 5px; }
      .news-content .tile-section .tile-wrapper:hover .preview .image {
        transform: scale(1.1); }
      .news-content .tile-section .tile-wrapper:hover .preview .overlay {
        opacity: 1; }

.post-container {
  width: 80%;
  margin: 0 auto;
  display: flex; }
  .post-container .post-content {
    width: 70%; }
    .post-container .post-content h1 {
      color: rgba(8, 87, 35, 0.9);
      text-align: center;
      font-size: calc(18px + (38 - 18) * ((100vw - 360px) / (1600 - 360)));
      font-weight: 600; }
      @media (max-width: 360px) {
        .post-container .post-content h1 {
          font-size: 18px; } }
      @media (min-width: 1600px) {
        .post-container .post-content h1 {
          font-size: 38px; } }
    .post-container .post-content h2 {
      color: rgba(0, 0, 0, 0.9);
      text-align: center;
      font-size: calc(14px + (32 - 14) * ((100vw - 360px) / (1600 - 360)));
      font-weight: 600; }
      @media (max-width: 360px) {
        .post-container .post-content h2 {
          font-size: 14px; } }
      @media (min-width: 1600px) {
        .post-container .post-content h2 {
          font-size: 32px; } }
    .post-container .post-content p {
      color: rgba(0, 0, 0, 0.9);
      font-size: calc(14px + (24 - 14) * ((100vw - 360px) / (1600 - 360))); }
      @media (max-width: 360px) {
        .post-container .post-content p {
          font-size: 14px; } }
      @media (min-width: 1600px) {
        .post-container .post-content p {
          font-size: 24px; } }
    @media screen and (max-width: 960px) {
      .post-container .post-content {
        width: 90%;
        margin: 0 auto; } }
  .post-container .post-related {
    width: 30%; }
    .post-container .post-related h2 {
      color: rgba(8, 87, 35, 0.9);
      font-size: calc(14px + (32 - 14) * ((100vw - 360px) / (1600 - 360)));
      font-weight: 600; }
      @media (max-width: 360px) {
        .post-container .post-related h2 {
          font-size: 14px; } }
      @media (min-width: 1600px) {
        .post-container .post-related h2 {
          font-size: 32px; } }
    .post-container .post-related ul {
      list-style: none;
      padding: 0; }
      .post-container .post-related ul li {
        margin: 3em auto; }
      .post-container .post-related ul .btn {
        width: 40%;
        text-align: center;
        font-size: calc(10px + (12 - 10) * ((100vw - 360px) / (1600 - 360))); }
        @media (max-width: 360px) {
          .post-container .post-related ul .btn {
            font-size: 10px; } }
        @media (min-width: 1600px) {
          .post-container .post-related ul .btn {
            font-size: 12px; } }
      .post-container .post-related ul h3 {
        color: rgba(8, 87, 35, 0.9);
        font-size: calc(14px + (24 - 14) * ((100vw - 360px) / (1600 - 360)));
        font-weight: 600; }
        @media (max-width: 360px) {
          .post-container .post-related ul h3 {
            font-size: 14px; } }
        @media (min-width: 1600px) {
          .post-container .post-related ul h3 {
            font-size: 24px; } }
      .post-container .post-related ul p {
        color: rgba(0, 0, 0, 0.9);
        font-size: calc(14px + (16 - 14) * ((100vw - 360px) / (1600 - 360)));
        font-weight: 600; }
        @media (max-width: 360px) {
          .post-container .post-related ul p {
            font-size: 14px; } }
        @media (min-width: 1600px) {
          .post-container .post-related ul p {
            font-size: 16px; } }
    @media screen and (max-width: 960px) {
      .post-container .post-related {
        display: none; } }

.wpcf7 .checkbox-66 {
  width: 10%; }
  .wpcf7 .checkbox-66 .wpcf7-form-control {
    text-align: left;
    float: left; }
    .wpcf7 .checkbox-66 .wpcf7-form-control .wpcf7-list-item {
      width: 6%; }

.wpcf7 .privacy {
  text-align: left;
  text-transform: none; }
  .wpcf7 .privacy a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: underline; }

.error404 .content > div {
  text-align: center;
  overflow: auto;
  margin: 6.7vw 0; }
  .error404 .content > div h1 {
    font-size: calc(60px + (120 - 60) * ((100vw - 640px) / (1600 - 640)));
    font-family: Verdana, Arial;
    color: #CD0B15;
    text-transform: uppercase;
    margin-bottom: .1em; }
    @media (max-width: 640px) {
      .error404 .content > div h1 {
        font-size: 60px; } }
    @media (min-width: 1600px) {
      .error404 .content > div h1 {
        font-size: 120px; } }
  .error404 .content > div h2 {
    font-size: calc(40px + (80 - 40) * ((100vw - 640px) / (1600 - 640)));
    margin-top: .2em; }
    @media (max-width: 640px) {
      .error404 .content > div h2 {
        font-size: 40px; } }
    @media (min-width: 1600px) {
      .error404 .content > div h2 {
        font-size: 80px; } }
  @media (min-aspect-ratio: 1 / 1) {
    .error404 .content > div {
      margin: 6.7vh 0; } }

.print-only {
  display: none; }

@media print {
  .print-only {
    display: block; }
  #header {
    display: block;
    position: relative;
    margin: 0 !important;
    padding: 0 !important; }
    #header #logo {
      display: block;
      padding: 2em;
      margin: 0 auto;
      text-align: center; }
      #header #logo > div {
        display: none; }
    #header nav {
      display: none !important; }
    #header button {
      display: none !important; }
  main.spaced {
    padding-top: 0; }
  main .breadcrumbs {
    display: none; }
  main .actions {
    display: none; }
  footer {
    display: none; }
  .single-recipes .recipe {
    display: block; }
    .single-recipes .recipe > div {
      width: 100%; }
    .single-recipes .recipe .media .image {
      display: none; }
    .single-recipes .recipe .media .video {
      display: none; }
    .single-recipes .recipe .media .print-image {
      display: block;
      max-width: 50%;
      margin: 0 auto; }
    .single-recipes .recipe .ingredients .ingredient .checkbox-container .stylised-checkbox {
      border: 1px solid rgba(0, 0, 0, 0.5); }
    .single-recipes .recipe .directions {
      padding-bottom: 0;
      overflow: auto; }
      .single-recipes .recipe .directions ol {
        margin-bottom: 0; }
        .single-recipes .recipe .directions ol li:last-child {
          margin-bottom: 0; } }
