/* Document
 * ========================================================================== */

/**
 * Add border box sizing in all browsers (opinionated).
 */

*,
::before,
::after {
  box-sizing: border-box;
}

/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritance in all browsers (opinionated).
 */

::before,
::after {
  text-decoration: inherit; /* 1 */
  vertical-align: inherit; /* 2 */
}

/**
 * 1. Use the default cursor in all browsers (opinionated).
 * 2. Change the line height in all browsers (opinionated).
 * 3. Use a 4-space tab width in all browsers (opinionated).
 * 4. Remove the grey highlight on links in iOS (opinionated).
 * 5. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 * 6. Breaks words to prevent overflow in all browsers (opinionated).
 */

html {
  cursor: default; /* 1 */
  line-height: 1.5; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  -webkit-tap-highlight-color: transparent /* 4 */;
  -ms-text-size-adjust: 100%; /* 5 */
  -webkit-text-size-adjust: 100%; /* 5 */
  word-break: break-word; /* 6 */
}

/* Sections
 * ========================================================================== */

/**
 * Remove the margin in all browsers (opinionated).
 */

body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Edge, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
 * ========================================================================== */

/**
 * Remove the margin on nested lists in Chrome, Edge, IE, and Safari.
 */

dl dl,
dl ol,
dl ul,
ol dl,
ul dl {
  margin: 0;
}

/**
 * Remove the margin on nested lists in Edge 18- and IE.
 */

ol ol,
ol ul,
ul ol,
ul ul {
  margin: 0;
}

/**
 * 1. Correct the inheritance of border color in Firefox.
 * 2. Add the correct box sizing in Firefox.
 * 3. Show the overflow in Edge 18- and IE.
 */

hr {
  color: inherit; /* 1 */
  height: 0; /* 2 */
  overflow: visible; /* 3 */
}

/**
 * Add the correct display in IE.
 */

main {
  display: block;
}

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */

nav ol,
nav ul {
  list-style: none;
  padding: 0;
}

/**
 * Prevent VoiceOver from ignoring list semantics in Safari (opinionated).
 */

nav li::before {
  content: "\200B";
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 * 3. Prevent overflow of the container in all browsers (opinionated).
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
  overflow: auto; /* 3 */
  -ms-overflow-style: scrollbar; /* 3 */
}

/* Text-level semantics
 * ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * Add the correct text decoration in Edge 18-, IE, and Safari.
 */

abbr[title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/* Embedded content
 * ========================================================================== */

/*
 * Change the alignment on media elements in all browsers (opinionated).
 */

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/**
 * Add the correct display in IE 9-.
 */

audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */

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

/**
 * Remove the border on iframes in all browsers (opinionated).
 */

iframe {
  border-style: none;
}

/**
 * Remove the border on images within links in IE 10-.
 */

img {
  border-style: none;
}

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */

svg:not([fill]) {
  fill: currentColor;
}

/**
 * Hide the overflow in IE.
 */

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

/* Tabular data
 * ========================================================================== */

/**
 * 1. Collapse border spacing in all browsers (opinionated).
 * 2. Correct table border color inheritance in all Chrome, Edge, and Safari.
 * 3. Remove text indentation from table contents in Chrome, Edge, and Safari.
 */

table {
  border-collapse: collapse; /* 1 */
  border-color: inherit; /* 2 */
  text-indent: 0; /* 3 */
}

/* Forms
 * ========================================================================== */

/**
 * Remove the margin on controls in Safari.
 */

button,
input,
select {
  margin: 0;
}

/**
 * 1. Show the overflow in IE.
 * 2. Remove the inheritance of text transform in Edge 18-, Firefox, and IE.
 */

button {
  overflow: visible; /* 1 */
  text-transform: none; /* 2 */
}

/**
 * Correct the inability to style buttons in iOS and Safari.
 */

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

/**
 * 1. Change the inconsistent appearance in all browsers (opinionated).
 * 2. Correct the padding in Firefox.
 */

fieldset {
  border: 1px solid #a0a0a0; /* 1 */
  padding: 0.35em 0.75em 0.625em; /* 2 */
}

/**
 * Show the overflow in Edge 18- and IE.
 */

input {
  overflow: visible;
}

/**
 * 1. Correct the text wrapping in Edge 18- and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 */

legend {
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  white-space: normal; /* 1 */
}

/**
 * 1. Add the correct display in Edge 18- and IE.
 * 2. Add the correct vertical alignment in Chrome, Edge, and Firefox.
 */

progress {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Remove the inheritance of text transform in Firefox.
 */

select {
  text-transform: none;
}

/**
 * 1. Remove the margin in Firefox and Safari.
 * 2. Remove the default vertical scrollbar in IE.
 * 3. Change the resize direction in all browsers (opinionated).
 */

textarea {
  margin: 0; /* 1 */
  overflow: auto; /* 2 */
  resize: vertical; /* 3 */
  resize: block; /* 3 */
}

/**
 * Remove the padding in IE 10-.
 */

[type="checkbox"],
[type="radio"] {
  padding: 0;
}

/**
 * 1. Correct the odd appearance in Chrome, Edge, and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */

::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/**
 * Remove the inner padding in Chrome, Edge, and Safari on macOS.
 */

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style upload buttons in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Remove the inner border and padding of focus outlines in Firefox.
 */

::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus outline styles unset by the previous rule in Firefox.
 */

:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Remove the additional :invalid styles in Firefox.
 */

:-moz-ui-invalid {
  box-shadow: none;
}

/* Interactive
 * ========================================================================== */

/*
 * Add the correct display in Edge 18- and IE.
 */

details {
  display: block;
}

/*
 * Add the correct styles in Edge 18-, IE, and Safari.
 */

dialog {
  background-color: white;
  border: solid;
  color: black;
  display: block;
  height: -moz-fit-content;
  height: -webkit-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
}

dialog:not([open]) {
  display: none;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Scripting
 * ========================================================================== */

/**
 * Add the correct display in IE 9-.
 */

canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */

template {
  display: none;
}

/* User interaction
 * ========================================================================== */

/*
 * Remove the tapping delay in IE 10.
 */

a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] {
  -ms-touch-action: manipulation;
}

/**
 * Add the correct display in IE 10-.
 */

[hidden] {
  display: none;
}

/* Accessibility
 * ========================================================================== */

/**
 * Change the cursor on busy elements in all browsers (opinionated).
 */

[aria-busy="true"] {
  cursor: progress;
}

/*
 * Change the cursor on control elements in all browsers (opinionated).
 */

[aria-controls] {
  cursor: pointer;
}

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements in all browsers (opinionated).
 */

[aria-disabled="true"],
[disabled] {
  cursor: not-allowed;
}

/*
 * Change the display on visually hidden accessible elements
 * in all browsers (opinionated).
 */

[aria-hidden="false"][hidden] {
  display: initial;
}

[aria-hidden="false"][hidden]:not(:focus) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}

/**
 * 1. Change the inconsistent appearance in all browsers (opinionated).
 * 2. Add typography inheritance in all browsers (opinionated).
 */

button,
input,
select,
textarea {
  background-color: transparent; /* 1 */
  border: 1px solid WindowFrame; /* 1 */
  color: inherit; /* 1 */
  font: inherit; /* 2 */
  letter-spacing: inherit; /* 2 */
  padding: 0.25em 0.375em; /* 1 */
}

/**
 * Change the inconsistent appearance in all browsers (opinionated).
 */

select {
  -moz-appearance: none;
  -webkit-appearance: none;
  background: no-repeat right center / 1em;
  border-radius: 0;
  padding-right: 1em;
}

/**
 * Change the inconsistent appearance in all browsers (opinionated).
 */

select:not([multiple]):not([size]) {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='4'%3E%3Cpath d='M4 0h6L7 4'/%3E%3C/svg%3E");
}

/**
 * Remove the border and padding in all browsers (opinionated).
 */

[type="color"],
[type="range"] {
  border-width: 0;
  padding: 0;
}

/**
 * Change the inconsistent appearance in IE (opinionated).
 */

::-ms-expand {
  display: none;
}

/**
 * Correct the inconsistent appearance in IE (opinionated).
 */

:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.54);
}

/*! Lity - v2.4.1 - 2020-04-26
* http://sorgalla.com/lity/
* Copyright (c) 2015-2020 Jan Sorgalla; Licensed MIT */
.lity {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  white-space: nowrap;
  background: #0b0b0b;
  background: rgba(0, 0, 0, 0.9);
  outline: none !important;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.lity.lity-opened {
  opacity: 1;
}
.lity.lity-closed {
  opacity: 0;
}
.lity * {
  box-sizing: border-box;
}
.lity-wrap {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
  outline: none !important;
}
.lity-wrap:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
}
.lity-loader {
  z-index: 9991;
  color: #fff;
  position: absolute;
  top: 50%;
  margin-top: -0.8em;
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.lity-loading .lity-loader {
  opacity: 1;
}
.lity-container {
  z-index: 9992;
  position: relative;
  text-align: left;
  vertical-align: middle;
  display: inline-block;
  white-space: normal;
  max-width: 100%;
  max-height: 100%;
  outline: none !important;
}
.lity-content {
  z-index: 9993;
  width: 100%;
  transform: scale(1);
  transition: transform 0.3s ease;
}
.lity-loading .lity-content,
.lity-closed .lity-content {
  transform: scale(0.8);
}
.lity-content:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}
.lity-close {
  z-index: 9994;
  width: 35px;
  height: 35px;
  position: fixed;
  right: 0;
  top: 0;
  -webkit-appearance: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  font-family: Arial, Baskerville, monospace;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border: 0;
  background: none;
  outline: none;
  box-shadow: none;
}
.lity-close::-moz-focus-inner {
  border: 0;
  padding: 0;
}
.lity-close:hover,
.lity-close:focus,
.lity-close:active,
.lity-close:visited {
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  font-family: Arial, Baskerville, monospace;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border: 0;
  background: none;
  outline: none;
  box-shadow: none;
}
.lity-close:active {
  top: 1px;
}
/* Image */
.lity-image img {
  max-width: 100%;
  display: block;
  line-height: 0;
  border: 0;
}
/* iFrame */
.lity-iframe .lity-container,
.lity-youtube .lity-container,
.lity-vimeo .lity-container,
.lity-facebookvideo .lity-container,
.lity-googlemaps .lity-container {
  width: 100%;
  max-width: 964px;
}
.lity-iframe-container {
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  overflow: auto;
  pointer-events: auto;
  transform: translateZ(0);
  -webkit-overflow-scrolling: touch;
}
.lity-iframe-container iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}
.lity-hide {
  display: none;
}

@charset "UTF-8";
body {
  font-family: futura-pt, sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #2C2A29;
  background: #fff;
  font-size: 23px;
}
@media (max-width: 767px) {
  body {
    font-size: 18px;
  }
}
@media (min-width: 1024px) and (-webkit-max-device-pixel-ratio: 1.5) and (-webkit-min-device-pixel-ratio: 1.5), (min-width: 1024px) and (max-resolution: 144dpi) and (min-resolution: 144dpi) {
  body {
    font-size: 15.3333333333px;
  }
}
@media (min-width: 1024px) and (-webkit-max-device-pixel-ratio: 1.25) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 1024px) and (max-resolution: 120dpi) and (min-resolution: 120dpi) {
  body {
    font-size: 18.4px;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: futura-pt, sans-serif;
  font-weight: 700;
  font-style: normal;
  color: inherit;
  margin-top: 0;
  position: relative;
  line-height: 1.3;
}

h1 > a, h2 > a, h3 > a, h4 > a, h5 > a, h6 > a {
  text-decoration: none;
}
h1 > a:hover, h2 > a:hover, h3 > a:hover, h4 > a:hover, h5 > a:hover, h6 > a:hover {
  color: #FF6F4A;
}

h1 {
  font-size: 43px;
}
@media (max-width: 767px) {
  h1 {
    font-size: 36px;
  }
}
@media (min-width: 1024px) and (-webkit-max-device-pixel-ratio: 1.5) and (-webkit-min-device-pixel-ratio: 1.5), (min-width: 1024px) and (max-resolution: 144dpi) and (min-resolution: 144dpi) {
  h1 {
    font-size: 28.6666666667px;
  }
}
@media (min-width: 1024px) and (-webkit-max-device-pixel-ratio: 1.25) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 1024px) and (max-resolution: 120dpi) and (min-resolution: 120dpi) {
  h1 {
    font-size: 34.4px;
  }
}

h2 {
  font-size: 31px;
}
@media (max-width: 767px) {
  h2 {
    font-size: 25px;
  }
}
@media (min-width: 1024px) and (-webkit-max-device-pixel-ratio: 1.5) and (-webkit-min-device-pixel-ratio: 1.5), (min-width: 1024px) and (max-resolution: 144dpi) and (min-resolution: 144dpi) {
  h2 {
    font-size: 20.6666666667px;
  }
}
@media (min-width: 1024px) and (-webkit-max-device-pixel-ratio: 1.25) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 1024px) and (max-resolution: 120dpi) and (min-resolution: 120dpi) {
  h2 {
    font-size: 24.8px;
  }
}

h3 {
  font-size: 26px;
}
@media (min-width: 1024px) and (-webkit-max-device-pixel-ratio: 1.5) and (-webkit-min-device-pixel-ratio: 1.5), (min-width: 1024px) and (max-resolution: 144dpi) and (min-resolution: 144dpi) {
  h3 {
    font-size: 17.3333333333px;
  }
}
@media (min-width: 1024px) and (-webkit-max-device-pixel-ratio: 1.25) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 1024px) and (max-resolution: 120dpi) and (min-resolution: 120dpi) {
  h3 {
    font-size: 20.8px;
  }
}

b {
  font-weight: 700;
}

a {
  color: #FF6F4A;
}

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 0 0;
  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: 0.7;
}
.hamburger.is-active:hover {
  opacity: 0.7;
}
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #000;
}

.hamburger-box {
  width: 30px;
  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: 30px;
  height: 3px;
  background-color: #000;
  border-radius: 4px;
  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;
}

/*
 * 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.15s;
}
.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(-4.2857142857px, -5px, 0);
  opacity: 0;
}
.hamburger--slider.is-active .hamburger-inner::after {
  transform: translate3d(0, -16px, 0) rotate(-90deg);
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.sprite__waves {
  width: 68px;
  height: 33px;
  margin-bottom: 30px;
  color: #FF6F4A;
}
.sprite__download {
  width: 40px;
  height: 40px;
  color: #fff;
}
.sprite__back {
  width: 19px;
  height: 19px;
}

.header {
  position: fixed;
  padding: 0 15px;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  z-index: 4;
  color: #2C2A29;
  height: 60px;
  overflow: hidden;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease-in-out;
}
.header .hamburger {
  z-index: 1;
  margin-top: 5px;
}
.header > h1 {
  position: absolute;
  display: flex;
  line-height: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  z-index: 0;
  pointer-events: none;
}
.header > h1 a {
  margin: 0 auto;
  pointer-events: auto;
  width: 125px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header > h1 a svg {
  height: 25px;
  width: 125px;
}
.header svg {
  max-height: 100%;
}
.header__nav-search {
  display: flex;
  flex: 1;
}
.header__nav {
  list-style: none;
  margin: 0 0 0 auto;
  font-size: 14px;
  display: flex;
  align-items: center;
}
@media (max-width: 1024px) {
  .header__nav {
    display: none;
  }
}
.header__nav li {
  padding: 0 7.5px;
}
.header__nav li.current-menu-item a {
  color: #FF6F4A;
}
.header__nav li a {
  text-decoration: none;
}
.header__nav li a:hover {
  color: #FF6F4A;
}
.header__locale button {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}
.header__locale button svg {
  margin-right: 7.5px;
  width: 26px;
  height: 26px;
  color: inherit;
  display: block;
}
.header__search {
  padding: 0 15px;
  display: flex;
  align-items: center;
}
@media (max-width: 1024px) {
  .header__search {
    margin-left: auto;
  }
}
.header__search button {
  height: 26px;
  width: 26px;
  margin: 0;
  padding: 0;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}
.header__search button svg {
  color: inherit;
  display: block;
}
.header a, .header h1 {
  color: #2C2A29;
  transition: color 0.3s;
}

.nav-is-expanded .header {
  background-color: transparent;
}
.nav-is-expanded .header .header__nav-search {
  opacity: 0;
}
.nav-is-expanded .header > h1 svg {
  color: #000;
}

body.home .header {
  color: #fff;
}
body.home .header .hamburger-inner {
  background-color: #fff;
}
body.home .header .hamburger-inner:before, body.home .header .hamburger-inner:after {
  background-color: #fff;
}
body.home .header a, body.home .header h1 {
  color: #fff;
}

.scroll-up .header {
  background: #fff;
}

.hide-header .header {
  transform: translateY(-100%);
  z-index: -1;
  pointer-events: none;
}

body.home.scroll-up .header {
  background-color: transparent;
}

body.home.hide-header .header {
  transform: translateY(0%);
  z-index: 4;
  pointer-events: auto;
}

.offline-bar {
  opacity: 0;
  pointer-events: none;
  z-index: -1;
  display: flex;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  background: #FF6F4A;
  text-align: center;
  color: #fff;
  font-size: 14px;
  height: 25px;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.offline-bar svg {
  width: 19px;
  height: 16px;
  margin-right: 5px;
}

.offline .offline-bar {
  display: flex;
  opacity: 1;
  z-index: 3;
}

.hide-header .offline-bar {
  top: 0;
}

.nav {
  transform: translateX(-100%);
  transition: 1s ease;
  transition-delay: 0.5s;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding-top: 60px;
  pointer-events: none;
  background-color: #FFE5DF;
  transition: all 0.3s;
  z-index: 3;
}
.nav[aria-expanded=true] {
  pointer-events: auto;
  transform: translateX(0);
  transition: 1s ease;
}
.nav li:before {
  content: none;
}
.nav__container {
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  max-width: 900px;
  overflow: auto;
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
  height: 100%;
}
.nav a {
  color: #2C2A29;
  text-decoration: none;
}
.nav__main {
  margin: 15px 0 0 0;
  padding: 0;
  transition: transform 0.3s;
}
@media (max-width: 767px) {
  .nav__main:focus-within, .nav__main.expanded {
    transform: translateX(-100%);
  }
}
.nav__main > li {
  padding: 7.5px;
  opacity: 0;
}
.nav__main > li > a {
  display: block;
  font-size: 26px;
}
.nav__main > li > a > svg {
  color: #2C2A29;
  height: 37px;
  width: 75px;
}
.nav__main > li ul {
  margin: 0;
  padding: 0;
  font-size: 18px;
  overflow: auto;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  left: 30px;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .nav__main > li ul {
    transform: translateX(100%);
  }
}
@media (min-width: 768px) {
  .nav__main > li ul {
    left: auto;
    width: 350px;
  }
}
.nav__main > li ul > li {
  margin: 0;
  padding: 5px 0;
}
.nav__main > li .back {
  font-size: 26px;
}
@media (min-width: 768px) {
  .nav__main > li .back {
    display: none;
  }
}
.nav__main > li.active > a, .nav__main > li:focus-within > a {
  color: #FF6F4A;
}
.nav__main > li.active ul, .nav__main > li:focus-within ul {
  background-color: #FFE5DF;
  pointer-events: auto;
  opacity: 1;
}
.nav__main > li.active ul > li > a:hover, .nav__main > li:focus-within ul > li > a:hover {
  color: #FF6F4A;
}
.nav__sub {
  font-size: 18px;
  margin: 15px 0 0 0;
  padding: 0;
  opacity: 0;
}
.nav__sub > li {
  padding: 3.75px;
  margin: 0;
}
.nav__privacy {
  margin: 7.5px 0 0 0;
  font-size: 14px;
  padding: 0;
  opacity: 0;
}
.nav__privacy > li {
  padding: 3.75px;
  margin: 0;
}

.nav-is-expanded {
  overflow: hidden;
}
.nav-is-expanded.scroll-up .header {
  background-color: transparent;
}
.nav-is-expanded .nav__main > li {
  opacity: 1;
}
.nav-is-expanded .nav__main > li:nth-child(1) {
  transition: opacity 0.3s ease-in 0.5s;
}
.nav-is-expanded .nav__main > li:nth-child(2) {
  transition: opacity 0.3s ease-in 0.7s;
}
.nav-is-expanded .nav__main > li:nth-child(3) {
  transition: opacity 0.3s ease-in 0.9s;
}
.nav-is-expanded .nav__main > li:nth-child(4) {
  transition: opacity 0.3s ease-in 1.1s;
}
.nav-is-expanded .nav__main > li:nth-child(5) {
  transition: opacity 0.3s ease-in 1.3s;
}
.nav-is-expanded .nav__main > li:nth-child(6) {
  transition: opacity 0.3s ease-in 1.5s;
}
.nav-is-expanded .nav__main > li:nth-child(7) {
  transition: opacity 0.3s ease-in 1.7s;
}
.nav-is-expanded .nav__main > li:nth-child(8) {
  transition: opacity 0.3s ease-in 1.9s;
}
.nav-is-expanded .nav__main > li:nth-child(9) {
  transition: opacity 0.3s ease-in 2.1s;
}
.nav-is-expanded .nav__sub {
  opacity: 1;
  margin-left: 30px;
  transition: opacity 0.3s ease-in 2.3s;
}
.nav-is-expanded .nav__privacy {
  opacity: 1;
  margin-left: 30px;
  transition: opacity 0.3s ease-in 2.6s;
}

.section-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  z-index: 2;
  display: flex;
  align-items: center;
  box-shadow: 0px -2px 8px rgba(0, 0, 0, 0.1);
  height: 100px;
}
@media (max-width: 1024px) {
  .section-nav {
    overflow-x: auto;
    /*&::-webkit-scrollbar {
      width: 1px;
      height: 10px;
    }

    &::-webkit-scrollbar-thumb {
      background: $color-light;
      border-radius: 10px;
    }

    &::-webkit-scrollbar-track {
      background: transparent;
    }

    &::-webkit-scrollbar-thumb {
      background: $color-light;
      border-radius: 10px;
    }*/
  }
}
@media (max-width: 767px) {
  .section-nav {
    height: 75px;
  }
}
.section-nav > ul {
  flex: 0 0 auto;
  display: flex;
  position: relative;
  margin: 0 auto;
  padding: 0;
}
@media (max-width: 1024px) {
  .section-nav > ul {
    min-width: 950px;
  }
}
.section-nav > ul:before {
  position: absolute;
  content: "";
  left: 50px;
  top: 30px;
  right: 50px;
  background: #D8D8D8;
  height: 2px;
  z-index: -1;
}
@media (max-width: 767px) {
  .section-nav > ul:before {
    top: 15px;
  }
}
.section-nav > ul > li {
  text-align: center;
  padding: 0 15px;
  margin: 0;
  line-height: 1;
  position: relative;
}
@media (min-width: 1025px) and (max-width: 1400px) {
  .section-nav > ul > li:first-child .section-nav__bubble {
    margin-left: 0px;
    margin-right: -280px;
  }
  .section-nav > ul > li:first-child .section-nav__bubble > div:after {
    left: 50px;
  }
  .section-nav > ul > li:last-child .section-nav__bubble {
    margin-left: -280px;
    margin-right: 0px;
  }
  .section-nav > ul > li:last-child .section-nav__bubble > div:after {
    left: auto;
    right: 45px;
  }
}
.section-nav > ul > li:hover .section-nav__bubble {
  opacity: 1;
}
.section-nav > ul > li > a {
  font-size: 14px;
  text-style: none;
  color: #2C2A29;
  font-weight: 700;
  text-decoration: none;
}
.section-nav > ul > li > a > svg {
  display: block;
  background-color: #fff;
  z-index: 1;
  padding: 0 15px;
  height: 50px;
  width: 100px;
  color: #2C2A29;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .section-nav > ul > li > a > svg {
    height: 30px;
    width: 70px;
  }
}
.section-nav > ul > li.is-active > a, .section-nav > ul > li:hover > a {
  color: #FF6F4A;
}
.section-nav > ul > li.is-active > a svg, .section-nav > ul > li:hover > a svg {
  color: #FF6F4A;
}
.section-nav__bubble {
  opacity: 0;
  transition: all 0.3s ease-in-out;
  pointer-events: none;
  position: absolute;
  bottom: 110px;
  margin-left: -140px;
  margin-right: -140px;
  font-size: 16px;
  text-align: left;
}
@media (max-width: 1024px) {
  .section-nav__bubble {
    display: none;
  }
}
.section-nav__bubble > div {
  box-shadow: 0px 0px 6px #D8D8D8;
  position: relative;
  background-color: #fff;
  border-radius: 0.4em;
  line-height: 1.5;
  padding: 15px 30px;
}
.section-nav__bubble > div:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 0;
  border: 20px solid transparent;
  filter: drop-shadow(6px 6px 4px #D8D8D8);
  border-top-color: #fff;
  border-bottom: 0;
  margin-left: -20px;
  margin-bottom: -20px;
}

.search {
  opacity: 0;
  pointer-events: none;
  z-index: -1;
  transition: all 0.3s;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #FFE5DF;
}
.search__close {
  color: #000;
  position: absolute;
  top: 0;
  right: 15px;
  border: none;
  cursor: pointer;
}
.search__close > svg {
  width: 23px;
  height: 23px;
}
.search__container {
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  max-width: 900px;
  margin: 60px auto;
  max-height: calc(100% - 60px);
  display: flex;
  flex-flow: column;
}
.search__query {
  position: relative;
}
.search__query input {
  width: 100%;
  padding: 0;
  outline: none;
  border: none;
  border-bottom: 1px solid #2C2A29;
  font-size: 26px;
}
.search__query input:focus {
  background: none;
}
.search__query svg {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 25px;
  height: 25px;
}
.search__query:focus-within svg {
  opacity: 0;
}
.search__results {
  margin: 0;
  padding: 0 0 30px 0;
  overflow: auto;
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
  flex: 1;
}
.search__results > li {
  list-style: none;
  margin: 0;
  padding: 7.5px 0;
}
.search__results > li a {
  font-size: 26px;
  color: #2C2A29;
  text-decoration: none;
  opacity: 0.75;
}
.search__results > li a:hover {
  opacity: 1;
}
.search.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 5;
}

.modal {
  pointer-events: none;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.25);
  transition: all 0.5s ease;
  z-index: 113;
}
.modal.is-active {
  opacity: 1;
  pointer-events: all;
}
.modal__close {
  color: #000;
  position: absolute;
  top: 0;
  right: 7.5px;
  border: none;
  cursor: pointer;
  padding: 0;
}
.modal__close > svg {
  width: 10px;
  height: 10px;
}
.modal__container {
  margin: 30px;
  max-width: 562px;
  padding: 15px 30px;
  border: 1px solid #e5e5e5;
  background: #fff;
  position: relative;
}
.modal-locale__languages {
  margin: 0;
  padding: 0;
}
.modal-locale__languages > li {
  list-style: none;
  padding: 7.5px 0;
}
.modal-locale__languages > li.active > a {
  color: #FF6F4A;
}
.modal-locale__languages > li a {
  color: #2C2A29;
  display: flex;
  align-items: center;
  text-decoration: none;
}
.modal-locale__languages > li a svg {
  width: 32px;
  height: 32px;
  margin-right: 15px;
}

.on-this-page {
  z-index: 2;
  position: fixed;
  right: 0;
  top: 0;
  pointer-events: none;
  height: 100vh;
  height: -webkit-fill-available;
  width: 440px;
  max-width: 100%;
  transition: transform 0.3s ease-in-out, z-index 0.3s ease-in-out;
  transform: translateX(calc(100% - 40px));
  color: #fff;
}
.on-this-page__button {
  pointer-events: auto;
  cursor: pointer;
  z-index: 1;
  display: flex;
  flex-flow: column;
  border: none;
  border-top-left-radius: 34px;
  border-bottom-left-radius: 34px;
  position: absolute;
  left: 0;
  height: 145px;
  bottom: 115px;
  justify-content: flex-start;
  align-items: center;
  padding: 10px;
  width: 40px;
  background: #FF6F4A;
  color: #fff;
  box-shadow: 0px 0px 13px rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .on-this-page__button {
    bottom: 90px;
  }
}
.on-this-page__button > svg {
  color: #fff;
  width: 15px;
  height: 25px;
  transition: transform 0.5s;
}
.on-this-page__button > span {
  display: block;
  -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
  transform: rotate(180deg);
  -webkit-text-orientation: mixed;
          text-orientation: mixed;
  font-size: 16px;
  white-space: nowrap;
  font-weight: 600;
}
.on-this-page__button-close {
  position: absolute;
  border: none;
  padding: 0;
  margin: 0;
  top: 55px;
  left: 40px;
  outline: none;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  width: 51px;
  height: 51px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FF6F4A;
  border-radius: 50%;
}
.on-this-page__button-close > svg {
  width: 23px;
  height: 23px;
  transition: all 0.3s ease-out;
  transform: rotate(360deg);
  will-change: transform;
}
.on-this-page.is-active {
  transform: none;
  z-index: 10000;
  pointer-events: auto;
}
.on-this-page.is-active .on-this-page__button {
  opacity: 0;
}
.on-this-page.is-active .on-this-page__button > svg {
  transform: rotate(180deg);
}
.on-this-page.is-active .on-this-page__button-close {
  transform: translateX(-50%);
}
.on-this-page.is-active .on-this-page__container {
  pointer-events: auto;
}
.on-this-page__container {
  background: #425563;
  margin-left: 40px;
  height: 100%;
  overflow: auto;
  pointer-events: none;
  display: flex;
  flex-flow: column;
}
.on-this-page__container a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
}
.on-this-page__container a:hover {
  text-decoration: underline;
}
.on-this-page__container ul {
  margin: 0;
  padding: 0;
}
.on-this-page__container ul li {
  list-style: none;
  margin: 0;
}
.on-this-page__header {
  background: #617A89;
  padding: 30px;
}
.on-this-page__sections {
  flex: 1;
  padding: 0;
}
.on-this-page__sections > ul {
  min-height: 100%;
  display: flex;
  flex-flow: column;
}
.on-this-page__sections__group {
  padding: 30px;
  display: block;
  font-size: 14px;
}
.on-this-page__sections__group--deep-dive {
  background-color: #2C3E4C;
  flex: 1;
}

.footer {
  display: flex;
  flex-flow: row;
  margin-bottom: 100px;
}
@media (max-width: 1023px) {
  .footer {
    flex-flow: column-reverse;
  }
}
@media (max-width: 767px) {
  .footer {
    margin-bottom: 75px;
  }
}
.footer__content {
  padding: 30px;
  width: 40%;
  background-color: #2C3E4C;
  color: #fff;
}
.footer__content > p {
  font-family: futura-pt, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
}
@media (max-width: 1023px) {
  .footer__content {
    width: 100%;
    padding: 15px;
  }
}
.footer__content li {
  list-style: none;
}
.footer__content a {
  text-decoration: none;
  color: #fff;
}
.footer__content a:hover {
  color: #FF6F4A;
}
.footer__content h1 {
  margin-left: 30px;
}
.footer__content h1 svg {
  width: 182px;
  height: 41px;
}
.footer__content p {
  margin-left: 30px;
}
.footer__nav-main {
  margin: 0;
  padding: 0;
}
.footer__nav-main svg {
  height: 37px;
  width: 75px;
}
.footer__nav-main > li {
  padding: 7.5px;
}
.footer__nav-main > li > a {
  display: block;
  font-size: 26px;
}
.footer__nav-sub {
  font-size: 16px;
  margin: 0 0 0 30px;
  padding: 0;
}
.footer__bg {
  flex: 1 1 auto;
  background-size: cover;
  background-position: center center;
}
@media (max-width: 1023px) {
  .footer__bg {
    min-height: 100vw;
  }
}

body.home .footer {
  display: none;
}

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

body {
  overflow-y: scroll;
}

html {
  scroll-behavior: smooth;
}

#main {
  max-width: 100vw;
  min-height: calc(100vh - 100px);
}
@media (max-width: 767px) {
  #main {
    min-height: calc(100vh - 75px);
  }
}
@media (min-width: 1024px) and (-webkit-max-device-pixel-ratio: 1.5) and (-webkit-min-device-pixel-ratio: 1.5), (min-width: 1024px) and (max-resolution: 144dpi) and (min-resolution: 144dpi) {
  #main {
    min-height: calc(100vh - 66.6666666667px);
  }
}
@media (min-width: 1024px) and (-webkit-max-device-pixel-ratio: 1.25) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 1024px) and (max-resolution: 120dpi) and (min-resolution: 120dpi) {
  #main {
    min-height: calc(100vh - 80px);
  }
}

blockquote {
  font-size: 32px;
  color: #425563;
}
@media (max-width: 767px) {
  blockquote {
    font-size: 24px;
  }
}

li::marker {
  color: #FF6F4A;
}

nav li:before {
  content: none;
}

::-webkit-scrollbar {
  width: 7px;
  height: 8px;
  background-color: #D8D8D8;
  /* or add it to the track */
}

::-webkit-scrollbar-thumb {
  background-color: #2C2A29;
  border-radius: 5px;
}

.otgs-development-site-front-end {
  display: none !important;
}

.slick-slider {
  position: relative;
}

.slick-initialized .slick-slide.slick-active {
  z-index: 1;
}

.block-404 {
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  max-width: 1200px;
}
@media (min-width: 1024px) and (-webkit-max-device-pixel-ratio: 1.5) and (-webkit-min-device-pixel-ratio: 1.5), (min-width: 1024px) and (max-resolution: 144dpi) and (min-resolution: 144dpi) {
  .block-404 {
    max-width: 800px;
  }
}
@media (min-width: 1024px) and (-webkit-max-device-pixel-ratio: 1.25) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 1024px) and (max-resolution: 120dpi) and (min-resolution: 120dpi) {
  .block-404 {
    max-width: 960px;
  }
}

.container {
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  max-width: 1200px;
}
@media (min-width: 1024px) and (-webkit-max-device-pixel-ratio: 1.5) and (-webkit-min-device-pixel-ratio: 1.5), (min-width: 1024px) and (max-resolution: 144dpi) and (min-resolution: 144dpi) {
  .container {
    max-width: 800px;
  }
}
@media (min-width: 1024px) and (-webkit-max-device-pixel-ratio: 1.25) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 1024px) and (max-resolution: 120dpi) and (min-resolution: 120dpi) {
  .container {
    max-width: 960px;
  }
}

.container--narrow {
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  max-width: 900px;
}
@media (min-width: 1024px) and (-webkit-max-device-pixel-ratio: 1.5) and (-webkit-min-device-pixel-ratio: 1.5), (min-width: 1024px) and (max-resolution: 144dpi) and (min-resolution: 144dpi) {
  .container--narrow {
    max-width: 600px;
  }
}
@media (min-width: 1024px) and (-webkit-max-device-pixel-ratio: 1.25) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 1024px) and (max-resolution: 120dpi) and (min-resolution: 120dpi) {
  .container--narrow {
    max-width: 720px;
  }
}

.u-image-overlay {
  position: relative;
}
.u-image-overlay > * {
  z-index: 0;
}
.u-image-overlay:before {
  z-index: 0;
  pointer-events: none;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.6);
}

.sw-refresh {
  position: fixed;
  display: block;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  border: none;
  padding: 7.5px 0;
  background-color: rgba(66, 85, 99, 0.9);
  color: #fff;
  font-size: 18px;
  text-align: center;
  cursor: pointer;
  z-index: 10000000;
}

.u-lines-tb {
  position: relative;
  padding: 60px 0;
  z-index: 1;
  pointer-events: none;
}
.u-lines-tb:before {
  content: "";
  position: absolute;
  height: 120px;
  width: 1px;
  left: 50%;
  top: 0px;
  background-color: #bbb;
  z-index: 1;
}
.u-lines-tb:after {
  content: "";
  position: absolute;
  height: 120px;
  width: 1px;
  left: 50%;
  bottom: 0px;
  background-color: #bbb;
}
.u-lines-tb--pullout--quote--image-quote, .u-lines-tb--pullout--quote--video-quote {
  padding: 0 0 60px 0;
}
.u-lines-tb--pullout--quote--image-quote:before, .u-lines-tb--pullout--quote--video-quote:before {
  top: -180px;
}
.u-lines-tb--pullout--quote--image-quote:after, .u-lines-tb--pullout--quote--video-quote:after {
  bottom: 60px;
}
.u-lines-tb--pullout--quote--quote:after {
  bottom: 60px;
}
.u-lines-tb > * {
  pointer-events: auto;
}

.u-tags {
  margin: 0 0 45px 0;
  padding: 0;
  font-size: 16px;
  color: #425563;
  text-transform: uppercase;
  letter-spacing: 0.25em;
}
.u-tags > li {
  display: inline-block;
}
.u-tags > li:first-child:before {
  content: none;
}
.u-tags > li:before {
  content: "•";
}

.video--fit-cover {
  -o-object-fit: cover;
     object-fit: cover;
}

.b-partial-downloads {
  width: 100%;
}
.b-partial-downloads thead {
  border-bottom: 2px solid #2C2A29;
}
.b-partial-downloads thead th {
  text-align: left;
}
.b-partial-downloads tbody tr {
  position: relative;
  cursor: pointer;
}
.b-partial-downloads tbody tr td {
  padding: 7.5px 0;
  border-bottom: 1px solid #2C2A29;
}
.b-partial-downloads tbody tr td.icon {
  vertical-align: top;
  text-align: right;
}
.b-partial-downloads tbody tr td a:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.block-404 {
  padding: 120px 0;
  text-align: center;
}

.b-intro--carousel {
  width: 100%;
  position: relative;
}
.b-intro--carousel__slides {
  display: flex;
  overflow: hidden;
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
}
.b-intro--carousel__slides.initial {
  scroll-behavior: initial;
}
.b-intro--carousel__slides::-webkit-scrollbar {
  width: 1px;
  height: 1px;
}
.b-intro--carousel__slides::-webkit-scrollbar-thumb {
  background: black;
  border-radius: 10px;
}
.b-intro--carousel__slides::-webkit-scrollbar-track {
  background: transparent;
}
.b-intro--carousel__slides::-webkit-scrollbar-thumb {
  background: black;
  border-radius: 10px;
}
.b-intro--carousel__slides > * {
  flex-shrink: 0;
  scroll-snap-align: start;
  width: 100%;
  min-height: calc(100vh - 100px);
  background-position: center center;
  background-size: cover;
}
@media (max-width: 767px) {
  .b-intro--carousel__slides > * {
    min-height: calc(100vh - 75px);
  }
}
@media (min-width: 1024px) and (-webkit-max-device-pixel-ratio: 1.5) and (-webkit-min-device-pixel-ratio: 1.5), (min-width: 1024px) and (max-resolution: 144dpi) and (min-resolution: 144dpi) {
  .b-intro--carousel__slides > * {
    min-height: calc(100vh - 66.6666666667px);
  }
}
@media (min-width: 1024px) and (-webkit-max-device-pixel-ratio: 1.25) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 1024px) and (max-resolution: 120dpi) and (min-resolution: 120dpi) {
  .b-intro--carousel__slides > * {
    min-height: calc(100vh - 80px);
  }
}
.b-intro--carousel__slide-home {
  overflow: hidden;
  position: relative;
  z-index: 1;
  max-height: calc(100vh - 100px);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  text-align: center;
  width: 100%;
  color: #fff;
}
@media (max-width: 767px) {
  .b-intro--carousel__slide-home {
    max-height: calc(100vh - 75px);
  }
}
@media (min-width: 1024px) and (-webkit-max-device-pixel-ratio: 1.5) and (-webkit-min-device-pixel-ratio: 1.5), (min-width: 1024px) and (max-resolution: 144dpi) and (min-resolution: 144dpi) {
  .b-intro--carousel__slide-home {
    max-height: calc(100vh - 66.6666666667px);
  }
}
@media (min-width: 1024px) and (-webkit-max-device-pixel-ratio: 1.25) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 1024px) and (max-resolution: 120dpi) and (min-resolution: 120dpi) {
  .b-intro--carousel__slide-home {
    max-height: calc(100vh - 80px);
  }
}
.b-intro--carousel__slide-home[data-current-slide] .b-intro--carousel__slide-home__image {
  transform: scale(1);
}
.b-intro--carousel__slide-home__content {
  z-index: 1;
  width: 100%;
}
.b-intro--carousel__slide-home__content lottie-player {
  margin: 0 auto;
}
.b-intro--carousel__slide-home__logo {
  color: #FF6F4A;
  margin-bottom: 30px;
}
@media (min-width: 769px) {
  .b-intro--carousel__slide-home__logo {
    width: 296px;
    height: 284px;
  }
}
.b-intro--carousel__slide-home__logo-protein {
  width: 75px;
  height: 75px;
  color: #fff;
}
@media (min-width: 768px) {
  .b-intro--carousel__slide-home__logo-protein {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 100px;
    height: 100px;
  }
}
.b-intro--carousel__slide-home h1 {
  margin: 0 auto;
  padding: 15px 30px;
  font-size: 43px;
}
@media (max-width: 767px) {
  .b-intro--carousel__slide-home h1 {
    font-size: 36px;
  }
}
@media (min-width: 1024px) and (-webkit-max-device-pixel-ratio: 1.5) and (-webkit-min-device-pixel-ratio: 1.5), (min-width: 1024px) and (max-resolution: 144dpi) and (min-resolution: 144dpi) {
  .b-intro--carousel__slide-home h1 {
    font-size: 28.6666666667px;
  }
}
@media (min-width: 1024px) and (-webkit-max-device-pixel-ratio: 1.25) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 1024px) and (max-resolution: 120dpi) and (min-resolution: 120dpi) {
  .b-intro--carousel__slide-home h1 {
    font-size: 34.4px;
  }
}
@media (min-width: 1025px) {
  .b-intro--carousel__slide-home h1 {
    max-width: 65%;
  }
}
.b-intro--carousel__slide-home__video {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}
.b-intro--carousel__slide-home__video > video {
  width: 100%;
  height: 100%;
}
@media (min-width: 1024px) {
  .b-intro--carousel__slide-home__video > video.video--fit-cover {
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.b-intro--carousel__slide-home__video > video.video--fit-contain {
  -o-object-fit: contain;
     object-fit: contain;
}
.b-intro--carousel__slide-home__image {
  transform: scale(1.2);
  background: no-repeat center center;
  background-size: cover;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  transition: transform 6s ease-out;
}
.b-intro--carousel__slide-hero {
  padding: 60px 75px;
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .b-intro--carousel__slide-hero {
    padding: 60px 15px;
  }
}
@media (min-width: 769px) {
  .b-intro--carousel__slide-hero {
    align-items: center;
  }
}
.b-intro--carousel__slide-hero__waves {
  z-index: -2;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  .b-intro--carousel__slide-hero__waves {
    display: none;
  }
}
.b-intro--carousel__slide-hero__waves svg {
  color: #EEF0F1;
}
.b-intro--carousel__slide-hero__waves > :first-child {
  position: absolute;
  left: 0;
  top: 50%;
}
.b-intro--carousel__slide-hero__waves > :nth-child(2) {
  position: absolute;
  top: 20%;
  left: 40%;
}
.b-intro--carousel__slide-hero__waves > :nth-child(3) {
  position: absolute;
  bottom: 10%;
  right: 0;
}
.b-intro--carousel__slide-hero__waves > :nth-child(4) {
  position: absolute;
  top: 20%;
  right: 0;
}
.b-intro--carousel__slide-hero__waves > :nth-child(5) {
  position: absolute;
  top: 20%;
  right: 0;
}
.b-intro--carousel__slide-hero__container {
  display: flex;
  max-height: 800px;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .b-intro--carousel__slide-hero__container {
    max-height: none;
    flex-flow: column;
  }
}
.b-intro--carousel__slide-hero__container > * {
  flex: 0 1 30%;
}
@media (max-width: 1024px) {
  .b-intro--carousel__slide-hero__container > * {
    flex: 0 1 25%;
  }
}
@media (max-width: 767px) {
  .b-intro--carousel__slide-hero__container > * {
    flex: 0 0 auto;
  }
}
.b-intro--carousel__slide-hero__text {
  flex: 0 1 40%;
  padding: 0 30px;
}
@media (max-width: 1024px) {
  .b-intro--carousel__slide-hero__text {
    flex: 0 1 50%;
  }
}
@media (max-width: 767px) {
  .b-intro--carousel__slide-hero__text {
    flex: 0 0 auto;
  }
}
.b-intro--carousel__slide-hero__text a {
  font-size: 16px;
  color: #2C2A29;
  text-decoration: none;
}
.b-intro--carousel__slide-hero__text a:after {
  display: inline-block;
  content: "";
  margin-left: 5px;
  background: url(../img/icon__arrow-right.svg) no-repeat center right;
  width: 15px;
  height: 12px;
  background-size: cover;
}
@media (max-width: 1024px) {
  .b-intro--carousel__slide-hero__text lottie-player {
    width: 150px !important;
    height: 150px !important;
  }
}
.b-intro--carousel__slide-hero__text h1, .b-intro--carousel__slide-hero__text h2 {
  margin-bottom: 0;
}
.b-intro--carousel__slide-hero__text h1 + p, .b-intro--carousel__slide-hero__text h2 + p {
  margin-top: 0;
}
.b-intro--carousel__slide-hero__text svg {
  display: block;
}
.b-intro--carousel__slide-hero__text svg.sprite__waves {
  width: 54px;
  height: 26px;
}
@media (max-width: 768px) {
  .b-intro--carousel__slide-hero__text svg.sprite__waves {
    margin-bottom: 15px;
  }
}
.b-intro--carousel__slide-hero__text svg.section {
  max-width: 100px;
  height: 100px;
}
@media (min-width: 1025px) {
  .b-intro--carousel__slide-hero__image1 img, .b-intro--carousel__slide-hero__image2 img {
    max-width: 25vw;
    max-height: 45vh;
  }
}
.b-intro--carousel__slide-hero__image1 [data-rellax], .b-intro--carousel__slide-hero__image2 [data-rellax] {
  overflow: hidden;
}
.b-intro--carousel__slide-hero__image1 img, .b-intro--carousel__slide-hero__image2 img {
  transform: scale(1.2);
  transition: all 6s;
  will-change: transform;
}
.b-intro--carousel__slide-hero[data-current-slide] .b-intro--carousel__slide-hero__image1 img,
.b-intro--carousel__slide-hero[data-current-slide] .b-intro--carousel__slide-hero__image2 img {
  transform: scale(1);
  transition: all 6s;
}
.b-intro--carousel__slide-hero__image1 {
  display: flex;
  margin-top: auto;
  margin-bottom: auto;
}
@media (min-width: 769px) {
  .b-intro--carousel__slide-hero__image1 > div {
    transform: translateY(50%);
  }
}
@media (max-width: 768px) {
  .b-intro--carousel__slide-hero__image1 {
    max-width: 60%;
    order: 2;
    margin-top: -30px;
    z-index: 1;
  }
}
.b-intro--carousel__slide-hero__image1 > div {
  position: relative;
}
.b-intro--carousel__slide-hero__image1 > div:before {
  content: "";
  position: absolute;
  bottom: -45px;
  left: -30px;
  right: 40%;
  top: 40%;
  background-color: #EEF0F1;
  z-index: -1;
}
.b-intro--carousel__slide-hero__image2 {
  display: flex;
  margin-bottom: auto;
  margin-top: auto;
}
@media (min-width: 769px) {
  .b-intro--carousel__slide-hero__image2 > div {
    transform: translateY(-25%);
  }
}
@media (max-width: 768px) {
  .b-intro--carousel__slide-hero__image2 {
    order: 1;
    max-width: 75%;
    margin-top: 30px;
  }
}
.b-intro--carousel__slide-hero__image2 > div {
  position: relative;
}
.b-intro--carousel__slide-hero__image2 > div:before {
  content: "";
  position: absolute;
  bottom: -45px;
  right: -30px;
  left: 40%;
  top: 40%;
  background-color: #EEF0F1;
  z-index: -1;
}
@media (min-width: 769px) {
  .b-intro--carousel__slide-hero--right .b-intro--carousel__slide-hero__text {
    order: 2;
  }
}
.b-intro--carousel__slide-hero--right .b-intro--carousel__slide-hero__image1 > div {
  position: relative;
}
@media (min-width: 769px) {
  .b-intro--carousel__slide-hero--right .b-intro--carousel__slide-hero__image1 > div {
    transform: translateY(25%);
  }
}
.b-intro--carousel__slide-hero--right .b-intro--carousel__slide-hero__image1 > div:before {
  content: "";
  position: absolute;
  bottom: -15px;
  right: -45px;
  left: 40%;
  top: 40%;
  background-color: #FF6F4A;
  z-index: -1;
}
@media (max-width: 768px) {
  .b-intro--carousel__slide-hero--right .b-intro--carousel__slide-hero__image1 {
    order: 1;
    margin-top: 30px;
    margin-right: 30px;
  }
}
@media (max-width: 768px) {
  .b-intro--carousel__slide-hero--right .b-intro--carousel__slide-hero__image2 {
    order: 2;
    margin-left: 30px;
    margin-top: -30px;
  }
}
@media (min-width: 769px) {
  .b-intro--carousel__slide-hero--right .b-intro--carousel__slide-hero__image2 {
    margin-right: 30px;
  }
}
.b-intro--carousel__slide-hero--right .b-intro--carousel__slide-hero__image2 > div {
  position: relative;
}
@media (min-width: 769px) {
  .b-intro--carousel__slide-hero--right .b-intro--carousel__slide-hero__image2 > div {
    transform: translateY(-50%);
  }
}
.b-intro--carousel__slide-hero--right .b-intro--carousel__slide-hero__image2 > div:before {
  content: "";
  position: absolute;
  bottom: 40%;
  left: 40%;
  right: -30px;
  top: -45px;
  background-color: #EEF0F1;
  z-index: -1;
}
.b-intro--carousel__controls {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 30px;
  left: 30px;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}
@media (max-width: 768px) {
  .b-intro--carousel__controls {
    right: 5px;
    left: 5px;
    height: calc(calc(100vh - 75px) + 30px);
  }
}
.b-intro--carousel__controls__next, .b-intro--carousel__controls__prev {
  border: 0;
  outline: none;
  cursor: pointer;
  pointer-events: auto;
  padding: 0;
}
.b-intro--carousel__controls__next svg, .b-intro--carousel__controls__prev svg {
  width: 51px;
  height: 51px;
}
@media (max-width: 768px) {
  .b-intro--carousel__controls__next svg, .b-intro--carousel__controls__prev svg {
    width: 30px;
    height: 30px;
  }
}
.b-intro--carousel__controls__next.hidden, .b-intro--carousel__controls__prev.hidden {
  pointer-events: none;
  opacity: 0;
}

body.home .b-intro--carousel {
  max-height: calc(100vh - 100px);
  overflow: hidden;
}
@media (max-width: 767px) {
  body.home .b-intro--carousel {
    max-height: calc(100vh - 75px);
  }
}
@media (min-width: 1024px) and (-webkit-max-device-pixel-ratio: 1.5) and (-webkit-min-device-pixel-ratio: 1.5), (min-width: 1024px) and (max-resolution: 144dpi) and (min-resolution: 144dpi) {
  body.home .b-intro--carousel {
    max-height: calc(100vh - 66.6666666667px);
  }
}
@media (min-width: 1024px) and (-webkit-max-device-pixel-ratio: 1.25) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 1024px) and (max-resolution: 120dpi) and (min-resolution: 120dpi) {
  body.home .b-intro--carousel {
    max-height: calc(100vh - 80px);
  }
}

.b-intro--fun-facts {
  background-position: center center;
  background-size: cover;
  min-height: calc(100vh - 100px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
  padding: 60px 0;
  position: relative;
}
@media (max-width: 767px) {
  .b-intro--fun-facts {
    min-height: calc(100vh - 75px);
  }
}
@media (min-width: 1024px) and (-webkit-max-device-pixel-ratio: 1.5) and (-webkit-min-device-pixel-ratio: 1.5), (min-width: 1024px) and (max-resolution: 144dpi) and (min-resolution: 144dpi) {
  .b-intro--fun-facts {
    min-height: calc(100vh - 66.6666666667px);
  }
}
@media (min-width: 1024px) and (-webkit-max-device-pixel-ratio: 1.25) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 1024px) and (max-resolution: 120dpi) and (min-resolution: 120dpi) {
  .b-intro--fun-facts {
    min-height: calc(100vh - 80px);
  }
}
.b-intro--fun-facts video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100% !important;
  width: 100%;
  z-index: -1;
  background: #000;
}
@media (min-width: 768px) {
  .b-intro--fun-facts__columns {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    margin: -10px;
    max-width: 1200px;
  }
}
.b-intro--fun-facts__logo {
  color: #FF6F4A;
  width: 50px;
  height: 52px;
  margin-bottom: 15px;
}
.b-intro--fun-facts__column {
  padding: 15px;
  font-size: 20px;
  text-align: center;
}
@media (min-width: 768px) {
  .b-intro--fun-facts__column {
    flex: 0 0 calc(33.3333% - 20px);
    margin: 10px;
    padding: 0 15px;
  }
}
@media (min-width: 1025px) {
  .b-intro--fun-facts__column--4 {
    flex: 0 0 calc(25% - 20px);
  }
}

.b-body--narrow-text-image {
  padding-top: 60px;
  padding-bottom: 60px;
  justify-content: space-between;
}
@media (min-width: 1024px) and (-webkit-max-device-pixel-ratio: 1.5) and (-webkit-min-device-pixel-ratio: 1.5), (min-width: 1024px) and (max-resolution: 144dpi) and (min-resolution: 144dpi) {
  .b-body--narrow-text-image {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media (min-width: 1024px) and (-webkit-max-device-pixel-ratio: 1.25) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 1024px) and (max-resolution: 120dpi) and (min-resolution: 120dpi) {
  .b-body--narrow-text-image {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
@media (min-width: 769px) {
  .b-body--narrow-text-image {
    display: flex;
    flex-flow: row;
  }
}
@media (min-width: 769px) {
  .b-body--narrow-text-image {
    align-items: flex-start;
  }
  .b-body--narrow-text-image > * {
    max-width: calc(50% - 15px);
    flex: 0 1 calc(50% - 15px);
  }
}
.b-body--narrow-text-image__image {
  position: relative;
  margin-bottom: 30px;
  padding: 0 30px 45px 0;
  display: flex;
  justify-content: flex-end;
}
@media (min-width: 769px) {
  .b-body--narrow-text-image__image {
    position: -webkit-sticky;
    position: sticky;
    top: 15px;
  }
}
.b-body--narrow-text-image__image > div {
  flex: 0 1 auto;
  position: relative;
}
.b-body--narrow-text-image__image-shadow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.b-body--narrow-text-image__image-shadow:before {
  content: "";
  position: absolute;
  bottom: -45px;
  right: -30px;
  left: 40%;
  height: 75%;
  background-color: #FF6F4A;
}
@media (min-width: 769px) {
  .b-body--narrow-text-image__image-shadow:before {
    bottom: -50%;
  }
}
.b-body--narrow-text-image--text-image {
  flex-flow: row-reverse;
}
.b-body--narrow-text-image--text-image .b-body--narrow-text-image__image {
  justify-content: flex-start;
  padding: 0 0 45px 30px;
}
.b-body--narrow-text-image--text-image .b-body--narrow-text-image__image-shadow:before {
  right: 40%;
  left: -30px;
  background-color: #EEF0F1;
}
.b-body--narrow-text-image__download--button {
  color: #000;
  position: absolute;
  right: 15px;
  bottom: 15px;
}
.b-body--narrow-text-image__text {
  flex: 1;
}
.b-body--wide-text-image-quote {
  padding-top: 60px;
  padding-bottom: 60px;
  align-items: flex-start;
}
@media (min-width: 1024px) and (-webkit-max-device-pixel-ratio: 1.5) and (-webkit-min-device-pixel-ratio: 1.5), (min-width: 1024px) and (max-resolution: 144dpi) and (min-resolution: 144dpi) {
  .b-body--wide-text-image-quote {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media (min-width: 1024px) and (-webkit-max-device-pixel-ratio: 1.25) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 1024px) and (max-resolution: 120dpi) and (min-resolution: 120dpi) {
  .b-body--wide-text-image-quote {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
@media (min-width: 769px) {
  .b-body--wide-text-image-quote {
    display: flex;
    flex-flow: row;
  }
}
@media (min-width: 769px) {
  .b-body--wide-text-image-quote {
    justify-content: space-between;
  }
  .b-body--wide-text-image-quote > * {
    max-width: calc(50% - 15px);
    flex: 0 1 calc(50% - 15px);
  }
}
.b-body--wide-text-image-quote__shrink {
  position: relative;
  margin-bottom: 30px;
}
.b-body--wide-text-image-quote__shrink .b-body--wide-text-image-quote__download {
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 768px) {
  .b-body--wide-text-image-quote__shrink img {
    transform: translateX(0) scale(1) !important;
  }
}
@media (min-width: 769px) {
  .b-body--wide-text-image-quote__shrink {
    position: -webkit-sticky;
    position: sticky;
    top: 15px;
  }
  .b-body--wide-text-image-quote__shrink img {
    transform-origin: top left;
    will-change: transform;
  }
}
.b-body--wide-text-image-quote__quote {
  font-size: 32px;
  color: #425563;
  align-self: center;
}
@media (min-width: 769px) {
  .b-body--wide-text-image-quote__quote {
    padding-right: 30px;
  }
}
.b-body--wide-text-image-quote--text-quote .b-body--wide-text-image-quote__quote {
  padding-right: 0;
}
@media (min-width: 769px) {
  .b-body--wide-text-image-quote--text-quote .b-body--wide-text-image-quote__quote {
    padding-left: 30px;
  }
}
.b-body--wide-text-image-quote__image {
  position: relative;
  margin-bottom: 60px;
  padding: 0 30px 45px 0;
  display: flex;
  justify-content: flex-end;
}
@media (min-width: 769px) {
  .b-body--wide-text-image-quote__image {
    position: -webkit-sticky;
    position: sticky;
    top: 15px;
  }
}
.b-body--wide-text-image-quote__image > div {
  position: relative;
  flex: 0 1 auto;
}
.b-body--wide-text-image-quote__image-shadow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  will-change: transform;
}
.b-body--wide-text-image-quote__image-shadow:before {
  content: "";
  position: absolute;
  bottom: -45px;
  right: -30px;
  left: 40%;
  height: 75%;
  background-color: #EEF0F1;
}
@media (min-width: 769px) {
  .b-body--wide-text-image-quote__image-shadow:before {
    bottom: -50%;
  }
}
@media (min-width: 769px) {
  .b-body--wide-text-image-quote--text-shrink .b-body--wide-text-image-quote__shrink img {
    transform-origin: top right;
  }
}
.b-body--wide-text-image-quote--text-image {
  flex-flow: row-reverse;
}
.b-body--wide-text-image-quote--text-image .b-body--wide-text-image-quote__image {
  justify-content: flex-start;
  padding: 0 0 45px 30px;
}
.b-body--wide-text-image-quote--text-image .b-body--wide-text-image-quote__image-shadow:before {
  right: 40%;
  left: -30px;
  background-color: #EEF0F1;
}
@media (min-width: 769px) {
  .b-body--wide-text-image-quote__text {
    max-width: 570px;
  }
}
.b-body--wide-text-image-quote--text {
  justify-content: center;
}
.b-body--wide-text-image-quote--text .b-body--wide-text-image-quote__text {
  margin-top: 0;
  flex: 1 1 auto;
}
@media (min-width: 769px) {
  .b-body--wide-text-image-quote--text-shrink .b-body--wide-text-image-quote__text, .b-body--wide-text-image-quote--shrink-text .b-body--wide-text-image-quote__text {
    margin-top: 150vh;
  }
}
.b-body--wide-text-image-quote--text-shrink {
  flex-flow: row-reverse;
}
.b-body--wide-text-image-quote.-is-finished .b-body--wide-text-image-quote__shrink .b-body--wide-text-image-quote__download {
  opacity: 1;
  pointer-events: auto;
}
.b-body--wide-text-image-quote__download {
  color: #000;
  position: absolute;
  right: 15px;
  bottom: 15px;
  opacity: 1;
  transition: opacity 0.1s;
}

.b-stats--statistic {
  padding-top: 60px;
}
@media (min-width: 769px) {
  .b-stats--statistic {
    display: flex;
    flex-flow: row;
  }
}
@media (min-width: 769px) {
  .b-stats--statistic {
    align-items: center;
    justify-content: space-between;
  }
  .b-stats--statistic > * {
    max-width: calc(50% - 15px);
    flex: 0 1 calc(50% - 15px);
  }
}
.b-stats--statistic__image {
  padding: 0 30px 45px 0;
  position: relative;
  margin-bottom: 30px;
}
.b-stats--statistic__image img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
.b-stats--statistic__image:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  left: 40%;
  top: 40%;
  background: #FF6F4A;
  z-index: -1;
}
.b-stats--statistic__details {
  flex: 1;
}
.b-stats--statistic__details h1 {
  font-size: 20px;
}
.b-stats--statistic__headline {
  color: #FF6F4A;
  font-size: 54px;
}
.b-stats--statistic__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0;
  padding: 15px 0;
}
.b-stats--statistic__stats li {
  list-style: none;
  padding: 15px 0;
  margin: 0;
  font-size: 20px;
}
.b-stats--statistic__stats h2 {
  color: #7C7C7C;
  font-weight: 400;
  font-size: 16px;
  margin: 0;
}
.b-stats--statistic__content {
  padding-top: 15px;
}

.b-pullout--intro {
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  max-width: 900px;
  padding-top: 60px;
  padding-bottom: 60px;
  text-align: center;
  font-size: 23px;
}
@media (min-width: 1024px) and (-webkit-max-device-pixel-ratio: 1.5) and (-webkit-min-device-pixel-ratio: 1.5), (min-width: 1024px) and (max-resolution: 144dpi) and (min-resolution: 144dpi) {
  .b-pullout--intro {
    max-width: 600px;
  }
}
@media (min-width: 1024px) and (-webkit-max-device-pixel-ratio: 1.25) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 1024px) and (max-resolution: 120dpi) and (min-resolution: 120dpi) {
  .b-pullout--intro {
    max-width: 720px;
  }
}
@media (min-width: 1024px) and (-webkit-max-device-pixel-ratio: 1.5) and (-webkit-min-device-pixel-ratio: 1.5), (min-width: 1024px) and (max-resolution: 144dpi) and (min-resolution: 144dpi) {
  .b-pullout--intro {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media (min-width: 1024px) and (-webkit-max-device-pixel-ratio: 1.25) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 1024px) and (max-resolution: 120dpi) and (min-resolution: 120dpi) {
  .b-pullout--intro {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
@media (max-width: 767px) {
  .b-pullout--intro {
    font-size: 18px;
  }
}
@media (min-width: 1024px) and (-webkit-max-device-pixel-ratio: 1.5) and (-webkit-min-device-pixel-ratio: 1.5), (min-width: 1024px) and (max-resolution: 144dpi) and (min-resolution: 144dpi) {
  .b-pullout--intro {
    font-size: 15.3333333333px;
  }
}
@media (min-width: 1024px) and (-webkit-max-device-pixel-ratio: 1.25) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 1024px) and (max-resolution: 120dpi) and (min-resolution: 120dpi) {
  .b-pullout--intro {
    font-size: 18.4px;
  }
}

.b-pullout--quote {
  padding-top: 60px;
  padding-bottom: 60px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  max-width: 1200px;
  margin-bottom: 60px;
  font-size: 43px;
  line-height: 1.2;
}
@media (min-width: 1024px) and (-webkit-max-device-pixel-ratio: 1.5) and (-webkit-min-device-pixel-ratio: 1.5), (min-width: 1024px) and (max-resolution: 144dpi) and (min-resolution: 144dpi) {
  .b-pullout--quote {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media (min-width: 1024px) and (-webkit-max-device-pixel-ratio: 1.25) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 1024px) and (max-resolution: 120dpi) and (min-resolution: 120dpi) {
  .b-pullout--quote {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
@media (min-width: 1024px) and (-webkit-max-device-pixel-ratio: 1.5) and (-webkit-min-device-pixel-ratio: 1.5), (min-width: 1024px) and (max-resolution: 144dpi) and (min-resolution: 144dpi) {
  .b-pullout--quote {
    max-width: 800px;
  }
}
@media (min-width: 1024px) and (-webkit-max-device-pixel-ratio: 1.25) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 1024px) and (max-resolution: 120dpi) and (min-resolution: 120dpi) {
  .b-pullout--quote {
    max-width: 960px;
  }
}
.b-pullout--quote--image-quote, .b-pullout--quote--video-quote {
  margin-top: 180px;
}
.b-pullout--quote--image-quote .b-pullout--quote__quote, .b-pullout--quote--video-quote .b-pullout--quote__quote {
  padding-top: 0;
}
@media (max-width: 767px) {
  .b-pullout--quote {
    font-size: 36px;
  }
}
@media (min-width: 1024px) and (-webkit-max-device-pixel-ratio: 1.5) and (-webkit-min-device-pixel-ratio: 1.5), (min-width: 1024px) and (max-resolution: 144dpi) and (min-resolution: 144dpi) {
  .b-pullout--quote {
    font-size: 28.6666666667px;
  }
}
@media (min-width: 1024px) and (-webkit-max-device-pixel-ratio: 1.25) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 1024px) and (max-resolution: 120dpi) and (min-resolution: 120dpi) {
  .b-pullout--quote {
    font-size: 34.4px;
  }
}
.b-pullout--quote--orange {
  background: #FF6F4A;
  color: #fff;
}
.b-pullout--quote--grey {
  background: #425563;
  color: #fff;
}
.b-pullout--quote--light-grey {
  background-color: #EEF0F1;
}
.b-pullout--quote__image, .b-pullout--quote__video {
  margin-top: -180px;
  padding: 0 60px 60px 60px;
}
@media (max-width: 767px) {
  .b-pullout--quote__image, .b-pullout--quote__video {
    padding: 0 15px 15px 15px;
  }
}
.b-pullout--quote__quote {
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  max-width: 900px;
  text-align: center;
  padding: 30px 0;
}

.b-pullout--paragraph {
  background: url(../img/wave.svg) repeat-x right 10px center;
  background-size: cover;
  padding: 60px 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-animation: wave 5s infinite ease-in-out;
          animation: wave 5s infinite ease-in-out;
}
@media (min-width: 1025px) {
  .b-pullout--paragraph {
    min-height: calc(100vh - 100px);
  }
}
@media (min-width: 1025px) and (max-width: 767px) {
  .b-pullout--paragraph {
    min-height: calc(100vh - 75px);
  }
}
@media (min-width: 1025px) and (min-width: 1024px) and (-webkit-max-device-pixel-ratio: 1.5) and (-webkit-min-device-pixel-ratio: 1.5), (min-width: 1025px) and (min-width: 1024px) and (max-resolution: 144dpi) and (min-resolution: 144dpi) {
  .b-pullout--paragraph {
    min-height: calc(100vh - 66.6666666667px);
  }
}
@media (min-width: 1025px) and (min-width: 1024px) and (-webkit-max-device-pixel-ratio: 1.25) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 1025px) and (min-width: 1024px) and (max-resolution: 120dpi) and (min-resolution: 120dpi) {
  .b-pullout--paragraph {
    min-height: calc(100vh - 80px);
  }
}
.b-pullout--paragraph > div {
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  max-width: 900px;
  color: #fff;
  text-align: center;
  font-size: 43px;
}
@media (max-width: 767px) {
  .b-pullout--paragraph > div {
    font-size: 36px;
  }
}
@media (min-width: 1024px) and (-webkit-max-device-pixel-ratio: 1.5) and (-webkit-min-device-pixel-ratio: 1.5), (min-width: 1024px) and (max-resolution: 144dpi) and (min-resolution: 144dpi) {
  .b-pullout--paragraph > div {
    font-size: 28.6666666667px;
  }
}
@media (min-width: 1024px) and (-webkit-max-device-pixel-ratio: 1.25) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 1024px) and (max-resolution: 120dpi) and (min-resolution: 120dpi) {
  .b-pullout--paragraph > div {
    font-size: 34.4px;
  }
}
@-webkit-keyframes wave {
  50% {
    background-position: left 10px center;
  }
}
@keyframes wave {
  50% {
    background-position: left 10px center;
  }
}

.b-video--fullbleed__video video {
  width: 100%;
}

.b-image--fullbleed__image img {
  width: 100%;
}

.b-reusable--map {
  color: #fff;
  text-align: center;
  padding: 30px;
  background-color: #425563;
}
.b-reusable--map img {
  width: 100%;
}

.b-reusable--map-google {
  position: relative;
  margin-top: 60px;
  max-height: calc(100vh - 100px);
}
@media (min-width: 769px) {
  .b-reusable--map-google {
    display: flex;
  }
}
@media (max-width: 767px) {
  .b-reusable--map-google {
    max-height: calc(100vh - 75px);
  }
}
@media (max-width: 768px) {
  .b-reusable--map-google {
    height: 75vh;
  }
}
.b-reusable--map-google__list {
  max-width: 100%;
  overflow: auto;
  background: #EEF0F1;
}
@media (min-width: 769px) {
  .b-reusable--map-google__list {
    width: 410px;
  }
}
@media (max-width: 768px) {
  .b-reusable--map-google__list {
    height: 100%;
  }
}
.b-reusable--map-google__list .-show-modal {
  display: none;
}
.b-reusable--map-google__list > div {
  border: 1px solid #BBBBBB;
  display: flex;
  cursor: pointer;
}
.b-reusable--map-google__list > div.active {
  background: #2C2A29;
  color: #fff;
}
.b-reusable--map-google__list > div > div {
  padding: 15px;
  flex: 1 1 auto;
}
.b-reusable--map-google__list ul {
  font-size: 14px;
  margin: 0;
  padding: 0;
}
@media (min-width: 1024px) and (-webkit-max-device-pixel-ratio: 1.5) and (-webkit-min-device-pixel-ratio: 1.5), (min-width: 1024px) and (max-resolution: 144dpi) and (min-resolution: 144dpi) {
  .b-reusable--map-google__list ul {
    font-size: 9.3333333333px;
  }
}
@media (min-width: 1024px) and (-webkit-max-device-pixel-ratio: 1.25) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 1024px) and (max-resolution: 120dpi) and (min-resolution: 120dpi) {
  .b-reusable--map-google__list ul {
    font-size: 11.2px;
  }
}
.b-reusable--map-google__list ul li {
  margin: 0;
  padding: 0;
  display: inline;
  font-weight: bold;
}
.b-reusable--map-google__list ul li:not(:first-child):before {
  content: "•";
}
.b-reusable--map-google__list img {
  flex: 0 0 25%;
  -o-object-fit: cover;
     object-fit: cover;
}
.b-reusable--map-google__map {
  flex: 1;
}
@media (max-width: 768px) {
  .b-reusable--map-google__map {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
}
.b-reusable--map-google__btn {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: #FF6F4A;
  border: #FF6F4A;
  border-radius: 30px;
  color: #2C2A29;
  padding: 7.5px 15px;
  z-index: 1;
}
@media (min-width: 769px) {
  .b-reusable--map-google__btn {
    display: none;
  }
}
.b-reusable--map-google__btn > svg {
  margin-right: 7.5px;
  width: 25px;
  height: 25px;
  pointer-events: none;
}
.b-reusable--map-google__btn--map {
  display: none;
  pointer-events: none;
  z-index: -1;
}
.b-reusable--map-google.-list-active .b-reusable--map-google__map {
  display: none;
}
.b-reusable--map-google.-list-active .b-reusable--map-google__btn--list {
  display: none;
  pointer-events: none;
  z-index: -1;
}
.b-reusable--map-google.-list-active .b-reusable--map-google__btn--map {
  display: block;
  pointer-events: auto;
  z-index: 1;
}
.b-reusable--map-google__modal {
  background: transparent;
}
.b-reusable--map-google__modal__slider {
  position: relative;
}
.b-reusable--map-google__modal__slider .slick-slide img {
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 100%;
  aspect-ratio: 488/284;
}
.b-reusable--map-google__modal__slider .slick-arrow {
  z-index: 1;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  position: absolute;
  top: calc(47% - 12.5px);
  color: #fff;
  outline: 0;
}
.b-reusable--map-google__modal__slider .slick-arrow > svg {
  width: 25px;
  height: 25px;
}
.b-reusable--map-google__modal__slider .slick-arrow.slick-disabled {
  display: none !important;
}
.b-reusable--map-google__modal__slider .slick-prev {
  left: 7.5px;
}
@media (min-width: 769px) {
  .b-reusable--map-google__modal__slider .slick-prev {
    left: 15px;
  }
}
.b-reusable--map-google__modal__slider .slick-next {
  right: 7.5px;
}
@media (min-width: 768px) {
  .b-reusable--map-google__modal__slider .slick-next {
    right: 15px;
  }
}
.b-reusable--map-google__modal__slider .slick-dots {
  display: flex;
  margin: 0;
  padding: 0;
  justify-content: center;
}
.b-reusable--map-google__modal__slider .slick-dots li {
  list-style: none;
  margin: 7.5px 3.75px 0 3.75px;
  padding: 0;
  cursor: pointer;
}
.b-reusable--map-google__modal__slider .slick-dots li > button {
  background: #D8D8D8;
  border-radius: 50%;
  display: block;
  line-height: 0;
  text-indent: -9999px;
  border: none;
  outline: none;
  width: 7px;
  height: 7px;
  overflow: hidden;
  padding: 0;
  margin: 0;
}
.b-reusable--map-google__modal__slider .slick-dots li.slick-active > button {
  background: #2C2A29;
}
.b-reusable--map-google__modal .-hide-modal {
  display: none;
}
.b-reusable--map-google__modal .lity-close {
  position: absolute;
  top: 15px;
  right: 15px;
}
.b-reusable--map-google__modal .lity-content {
  max-width: 495px;
  background: #fff;
  position: relative;
  max-height: 75vh;
  overflow: hidden;
}
.b-reusable--map-google__modal .lity-content h3 {
  color: #fff;
  background: #2C2A29;
  margin: 0;
  padding: 15px 30px;
}
.b-reusable--map-google__modal .lity-content .b-reusable--map-google__modal__scroll {
  height: calc(75vh - 60px);
  overflow: auto;
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
}
.b-reusable--map-google__modal .lity-content .b-reusable--map-google__modal__scroll > ul {
  margin: 7.5px 0 0 0;
  padding: 7.5px 30px;
  font-size: 23px;
}
@media (max-width: 767px) {
  .b-reusable--map-google__modal .lity-content .b-reusable--map-google__modal__scroll > ul {
    font-size: 18px;
  }
}
@media (min-width: 1024px) and (-webkit-max-device-pixel-ratio: 1.5) and (-webkit-min-device-pixel-ratio: 1.5), (min-width: 1024px) and (max-resolution: 144dpi) and (min-resolution: 144dpi) {
  .b-reusable--map-google__modal .lity-content .b-reusable--map-google__modal__scroll > ul {
    font-size: 15.3333333333px;
  }
}
@media (min-width: 1024px) and (-webkit-max-device-pixel-ratio: 1.25) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 1024px) and (max-resolution: 120dpi) and (min-resolution: 120dpi) {
  .b-reusable--map-google__modal .lity-content .b-reusable--map-google__modal__scroll > ul {
    font-size: 18.4px;
  }
}
.b-reusable--map-google__modal .lity-content .b-reusable--map-google__modal__scroll > ul > li {
  list-style: none;
  padding: 0;
  margin: 0 15px 0 0;
  display: inline;
}
.b-reusable--map-google__modal .lity-content .b-reusable--map-google__modal__scroll > ul > li:before {
  content: none;
}
.b-reusable--map-google__modal .lity-content .b-reusable--map-google__modal__scroll > ul > li.farming svg {
  color: #E55C65;
}
.b-reusable--map-google__modal .lity-content .b-reusable--map-google__modal__scroll > ul > li.sales_marketing svg {
  color: #FDE6DF;
}
.b-reusable--map-google__modal .lity-content .b-reusable--map-google__modal__scroll > ul > li svg {
  width: 24px;
  height: 24px;
  margin-bottom: 3px;
  margin-right: 5px;
}
.b-reusable--map-google__modal .lity-content .b-reusable--map-google__modal__content {
  padding: 7.5px 30px;
}
.b-reusable--map-google__modal .lity-content .b-reusable--map-google__modal__content p {
  margin-top: 0;
}

@media (min-width: 1024px) and (-webkit-max-device-pixel-ratio: 1.5) and (-webkit-min-device-pixel-ratio: 1.5), (min-width: 1024px) and (max-resolution: 144dpi) and (min-resolution: 144dpi) {
  .footer,
.section-nav,
.search,
.nav,
.on-this-page,
.header,
lottie-player {
    zoom: 0.6666666667;
  }

  .b-intro--carousel__slide-home__logo {
    width: 197.3333333333px;
    height: 189.3333333333px;
  }

  .b-intro--carousel__slide-home__logo-protein {
    width: 66.6666666667px;
    height: 66.6666666667px;
  }

  .b-intro--fun-facts__logo {
    width: 33.3333333333px;
    height: 34.6666666667px;
  }

  .b-intro--carousel__controls__next svg,
.b-intro--carousel__controls__prev svg {
    width: 34px;
    height: 34px;
  }

  .b-body--wide-text-image-quote__text {
    max-width: 380px;
  }
}
@media (min-width: 1024px) and (-webkit-max-device-pixel-ratio: 1.25) and (-webkit-min-device-pixel-ratio: 1.25), (min-width: 1024px) and (max-resolution: 120dpi) and (min-resolution: 120dpi) {
  .footer,
.section-nav,
.search,
.nav,
.on-this-page,
.header,
lottie-player {
    zoom: 0.8;
  }

  .b-intro--carousel__slide-home__logo {
    width: 236.8px;
    height: 227.2px;
  }

  .b-intro--carousel__slide-home__logo-protein {
    width: 80px;
    height: 80px;
  }

  .b-intro--fun-facts__logo {
    width: 40px;
    height: 41.6px;
  }

  .b-intro--carousel__controls__next svg,
.b-intro--carousel__controls__prev svg {
    width: 40.8px;
    height: 40.8px;
  }

  .b-body--wide-text-image-quote__text {
    max-width: 456px;
  }
}

/*# sourceMappingURL=site.css.map*/