/**
 * Tools
 */
/**
 * Tools
 */
/**
 * Get breakpoint from breakpoints settings map
 */
/**
 * Media query mixin
 * @param {} $to - Value from $settings-breakpoints
 * available breakpoints can be found in _settings.breakpoints.scss
 * usage for max width:
 * @include mq(md){};
 * usage for min width:
 * @include mq(null, md)
 */
/**
 * Fluid font sizes
 * usage:
 */
/**
 * Get font values from settings
 */
/**
 * Fluid property values
 * usage:
 * @include fluidValue("margin-top", "s-56");
 * @include fluidValue("max-width", null, 600px);
 * @include fluidValue("padding-top", "s-56", 56px);
 */
/**
 * Get spacing values from settings
 */
/**
 * Fetch nested keys
 * @param {Map} $map - Map
 * @param {Arglist} $keys - Keys to fetch
 * Fetch nested keys
 * @return {*}
 */
/**
 * Hover support mixin
 * Detect if device supports hover interaction
 * 1. If device is not supporting hover, add properties as active state styles
 * 2. If device is supporting hover, add properties as hover state styles
 * usage:
 * @include hover{}
 */
/**
 * Focus accessibility support mixin
 * Enable box shadow for focusable (tabbable) elements
 * 1. Target only elements that are not disabled and need a visible indicator to show focus
 * usage:
 * @include focus{}
 */
/**
 * Get transition easing from $settings-transitions-easing
 */
/**
 * Transition function
 * @param {string} $transitionName - Name of the transition from $settings-transitions
 * @param {string} $transitionEasing - get transition easing from $settings-transitions-easing
 * usage:
 * transition: getTransition;
 * transition: getTransition(slide, ease-in-quad);
 */
/**
 * Custom transition function
 * used when you need to specify custom transition for only one or multiple properties but not all
 * if you will not change the property use getTransition instead
 * default easing is from getTransitionEasing
 * @param {string} $transitions - any number of transitions
 * usage:
 * transition: getCustomTransition(opacity);
 * transition: getCustomTransition(transform 0.3s);
 * transition: getCustomTransition(transform 0.5s ease, background-color 0.2s);
 * transition: getCustomTransition(
 *                  top 0.3s cubic-bezier(0.23, 1, 0.32, 1),
 *                  transform 0.3s cubic-bezier(0.23, 1, 0.32, 1) 0.3s
 *               );
 */
/**
 * Unfold transition function
 * Helper for getCustomTransition();
 * Takes any number of arguments passed to getCustomTransition() and makes unfolds them to single properties
 * 1. Transition property defaults
 * 2. Grab transition properties if they exist
 */
/**
 * Font face mixin
 * @param {string} $font-name - Name of the font
 * @param {string} $font-filename - Name of the file without extension
 * @param {number} $version - Font version
 * @param {number} $font-weight - Font weight value
 * @param {string} $font-name - Font style property (if the font is italic)
 * usage:
 * @include font-face("Hanken-Grotesk", "HankenGrotesk-Regular");
 * usage for weight or style other than default
 * @include font-face(
 *  "Hanken-Grotesk",
 *  "HankenGrotesk-SemiBold",
 *  $font-weight: 600,
 *  $font-style: italic
 * );
 */
/**
 * Convert font-size from px to rem
 * 1. Default font size on html element is 100%, equivalent to 16px;
 * @param {number} $size - the value in pixel you want to convert
 * usage:
 * padding-top: rem(20px);
 */
/**
 * Convert font-size from px to em
 * 1. Default font size on html element is 100%, equivalent to 16px;
 * @param {number} $size - the value in pixel you want to convert
 * usage:
 * padding-top: em(20px);
 */
/**
 * Context
 */
/**
 * Viewport width function
 * 1. 1 vw is equal to 1% of the viewport width
 * @param {number} $size - the value in pixel you want to convert
 * usage:
 * padding-top: get-vw(100px);
 */
/**
 * Viewport height function
 * 1. 1 vw is equal to 1% of the viewport width
 * @param {number} $size - the value in pixel you want to convert
 * usage:
 * padding-top: get-vh(100px);
 */
/**
 * Get z-index from $settings-zindex
 * usage:
 * z-index: getZindex(navigation);
 * z-index: getZindex(navigation, 1);
 */
/**
 * Mixin that hides scrollbar on scrollable elements (for example overflow lists)
 * usage:
 *  div {
 *      overflow: scroll;
 *      @include hide-scrollbar;
 *  }
 */
/**
 * Third party tools
 */
/**
 * Settings
 */
/**
 * Settings
 */
/**
 * Breakpoints
 */
/**
 * Breakpoints - map
 */
/**
 * Colors
 */
/**
 * Colors - focus accessibility
 */
/**
 * Spacing map
 */
/**
 * Transition easing map
 */
/**
 * Transitions map
 */
/**
 * Avenir
 */
@font-face {
  font-family: "AvenirNext";
  src: url("../fonts/AvenirNextW02Regular.woff2?1") format("woff2"), url("../fonts/AvenirNextW02Regular.woff?1") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: "AvenirNext";
  src: url("../fonts/AvenirNextW02Bold.woff2?1") format("woff2"), url("../fonts/AvenirNextW02Bold.woff?1") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap; }

/**
 * Font variables
 */
/**
 * Font size map
 */
/**
 * Z-index map
 */
/**
 * Third party settings
 */
/**
 * Generics
 */
/**
 * Generics
 */
/**
 * Third party generics
 */
/**
 * b-reset.scss - modern CSS reset used by Bornfight frontend team.
 * Consists of best CSS reset practices combined into one file.
 */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Tells the browser to account for any border and padding in the values you specify for an element's width and height
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 3 */
  width: 100%; }

/**
 * All elements inherit box model
 */
*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit; }

/**
 * Reset elements in all browsers
 */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent; }

/**
 * Set core body defaults
 * 1. sets the behavior for a scrolling box when scrolling is triggered by the navigation or CSSOM scrolling APIs.
 * 2. The browser emphasizes rendering speed over legibility and geometric precision when drawing text.
 * 3. Disables the browser's inflation algorithm on some smart phones and tablets.
 * 4. Font smoothing
 */
body {
  scroll-behavior: smooth;
  /* 1 */
  text-rendering: optimizeSpeed;
  /* 2 */
  -webkit-text-size-adjust: none;
  /* 3 */
  -webkit-font-smoothing: antialiased;
  /* 4 */
  -moz-osx-font-smoothing: grayscale;
  /* 4 */
  width: 100%; }

/**
 * Remove list style from lists
 */
ul {
  list-style: none; }

/**
 * Make media easier to work with
 */
img,
iframe,
video,
object,
embed,
picture {
  display: block;
  max-width: 100%;
  height: auto;
  width: 100%; }

/**
 * Remove outline from tabindex -1
 */
[tabindex="-1"] {
  outline: none !important; }

/**
 * Add the correct height in Firefox.
 */
hr {
  height: 0; }

/**
 * Add the correct text decoration in Chrome, Edge, and Safari.
 */
abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; }

/**
 * Add the correct font weight in Edge and Safari.
 */
b,
strong {
  font-weight: bold; }

/**
 * 1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
 * 2. Correct the odd 'em' font sizing in all browsers.
 */
code,
kbd,
samp,
pre {
  font-family: SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%; }

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

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */ }

/**
 * Remove the inheritance of text transform in Edge and Firefox.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  text-transform: none;
  /* 1 */ }

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button; }

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0; }

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText; }

/**
 * Add the correct vertical alignment in Chrome and Firefox.
 */
progress {
  vertical-align: baseline; }

/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */ }

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to 'inherit' in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */ }

/**
 * Add the correct display in Chrome and Safari.
 */
summary {
  display: list-item; }

/**
 * Remove all animations and transitions for people that prefer not to see them
 */
@media (prefers-reduced-motion: reduce) {
  * {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important; } }

/**
 * Browser specific form elements reset
 */
/**
 * Search input browser additions reset
 * 1. Clears the 'X' from Chrome
 * 2. Clears the 'X' from Internet Explorer
 */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  /* 1 */
  -webkit-appearance: none;
  display: none; }

input[type="search"]::-ms-clear,
input[type="search"]::-ms-reveal {
  /* 2 */
  display: none;
  width: 0;
  height: 0; }

/**
 * Remove arrows/spinners from number input
 * 1. Chrome, Safari, Edge, Opera
 * 2. Firefox
 */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  /* 1 */
  -webkit-appearance: none;
  margin: 0; }

input[type="number"] {
  /* 2 */
  -moz-appearance: textfield; }

/**
 * Remove Safari autocomplete additions
 * 1. Contacts fill button
 * 2. Password fill button
 * 3. Number input spinner
 */
input[autocomplete="off"]::-webkit-contacts-auto-fill-button,
input[autocomplete="off"]::-webkit-credentials-auto-fill-button {
  /* 1, 2, 3 */
  visibility: hidden;
  display: none !important;
  pointer-events: none;
  height: 0;
  width: 0;
  margin: 0; }

/**
 * Remove select triangle on IE
 */
select::-ms-expand {
  display: none; }

/**
 * Remove dotted outline from range input on Firefox
 */
input[type=range]::-moz-focus-outer {
  border: 0; }

/**
 * Elements
 */
/**
 * Elements
 */
html,
body {
  -webkit-font-smoothing: antialiased; }

body {
  color: #000000;
  background-color: #ffffff; }

/* stylelint-disable */
/* stylelint-enable */
a {
  color: inherit;
  text-decoration: none; }

a:active, a:focus {
  /* 1 */ }

a:active:not(:disabled):focus-visible, a:focus:not(:disabled):focus-visible {
  outline: 0;
  -webkit-box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #000000;
          box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #000000; }

@media (min-width: 1440px) {
  a:active:not(:disabled):focus-visible, a:focus:not(:disabled):focus-visible {
    -webkit-box-shadow: 0 0 0 0.13889vw #ffffff, 0 0 0 0.27778vw #000000;
            box-shadow: 0 0 0 0.13889vw #ffffff, 0 0 0 0.27778vw #000000; } }

/**
 * Objects
 */
/**
 * Objects
 */
.o-container {
  padding-left: 12.5%;
  padding-right: 12.5%; }

.o-container--wide {
  padding-left: 8.33333%;
  padding-right: 8.33333%; }

@media (max-width: 800px) {
  .o-container {
    padding-left: 8.33333%;
    padding-right: 8.33333%; } }

.o-navigation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out; }

.o-navigation.slide-up,
.is-fixed-scrolled .o-navigation {
  -webkit-transform: translateY(-101%);
          transform: translateY(-101%); }

.o-navigation.has-scrolled {
  background-color: #ffffff; }

.o-navigation.has-scrolled .c-navigation {
  color: #000000;
  padding-top: 5px;
  padding-bottom: 5px; }

@media (min-width: 480px) {
  .o-navigation.has-scrolled .c-navigation {
    padding-top: calc(0.52083vw + 2.5px); } }

@media (min-width: 1440px) {
  .o-navigation.has-scrolled .c-navigation {
    padding-top: 10px; } }

@media (min-width: 1440px) {
  .o-navigation.has-scrolled .c-navigation {
    padding-top: 0.69444vw; } }

@media (min-width: 480px) {
  .o-navigation.has-scrolled .c-navigation {
    padding-bottom: calc(0.52083vw + 2.5px); } }

@media (min-width: 1440px) {
  .o-navigation.has-scrolled .c-navigation {
    padding-bottom: 10px; } }

@media (min-width: 1440px) {
  .o-navigation.has-scrolled .c-navigation {
    padding-bottom: 0.69444vw; } }

.o-navigation.has-scrolled .c-burger i {
  background-color: #000000; }

.o-page--home {
  background-color: #f8f8f8; }

.o-page--parents {
  background-color: #f8f8f8; }

.o-page--photomath-plus {
  background-color: #f8f8f8; }

.o-page--teachers {
  background-color: #f8f8f8; }

.o-page--about {
  background-color: #ffffff; }

.o-page--media-kit {
  background-color: #f8f8f8; }

.o-section {
  position: relative; }

.o-section--blue {
  background-color: #0551d8;
  color: #ffffff;
  overflow: hidden; }

.o-section--blue .c-parallax-graphic {
  color: #ffffff; }

.o-section--white {
  background-color: #ffffff;
  color: #000000; }

.o-section--gray {
  background-color: #f8f8f8;
  color: #000000; }

.o-section--yellow {
  background-color: #fed601;
  color: #000000; }

.o-section--pink {
  background-color: #ff85b0;
  color: #000000; }

.o-section--orange {
  background-color: #ff6230;
  color: #000000; }

.o-section--gradient {
  background: -webkit-gradient(linear, left top, left bottom, from(0), color-stop(0%, rgba(255, 255, 255, 0)), color-stop(23.3%, #ffffff));
  background: linear-gradient(0, rgba(255, 255, 255, 0) 0%, #ffffff 23.3%);
  color: #000000; }

.o-section--top-angle:before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  background-color: #f8f8f8;
  width: 100%;
  height: 15px;
  -webkit-clip-path: polygon(100% 0, 0 0, 0 100%);
          clip-path: polygon(100% 0, 0 0, 0 100%); }

@media (min-width: 480px) {
  .o-section--top-angle:before {
    height: calc(1.5625vw + 7.5px); } }

@media (min-width: 1440px) {
  .o-section--top-angle:before {
    height: 30px; } }

@media (min-width: 1440px) {
  .o-section--top-angle:before {
    height: 2.08333vw; } }

.o-section--bottom-angle:after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  background-color: #f8f8f8;
  width: 100%;
  z-index: 1;
  height: 15px;
  -webkit-clip-path: polygon(100% 0, 0 100%, 100% 100%);
          clip-path: polygon(100% 0, 0 100%, 100% 100%); }

@media (min-width: 480px) {
  .o-section--bottom-angle:after {
    height: calc(1.5625vw + 7.5px); } }

@media (min-width: 1440px) {
  .o-section--bottom-angle:after {
    height: 30px; } }

@media (min-width: 1440px) {
  .o-section--bottom-angle:after {
    height: 2.08333vw; } }

.o-section--bottom-angle-left:after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  background-color: #f8f8f8;
  width: 100%;
  z-index: 1;
  height: 15px;
  -webkit-clip-path: polygon(0 0, 0 100%, 100% 100%);
          clip-path: polygon(0 0, 0 100%, 100% 100%); }

@media (min-width: 480px) {
  .o-section--bottom-angle-left:after {
    height: calc(1.5625vw + 7.5px); } }

@media (min-width: 1440px) {
  .o-section--bottom-angle-left:after {
    height: 30px; } }

@media (min-width: 1440px) {
  .o-section--bottom-angle-left:after {
    height: 2.08333vw; } }

.o-section--header:before, .o-section--header:after {
  background-color: #ffffff; }

/**
 * Components
 */
/**
 * Components
 */
/**
 * Add modifier_class of ".c-button--light" for buttons that are displayed on dark color backgrounds.
 */
.c-button {
  border-radius: 200px;
  color: #000000;
  background-color: transparent;
  border: 0;
  outline: 0;
  cursor: pointer;
  position: relative;
  display: inline-block;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 70px;
  padding-right: 70px;
  overflow: hidden;
  z-index: 1;
  text-align: center; }

@media (min-width: 1440px) {
  .c-button {
    border-radius: 13.88889vw; } }

.c-button--light {
  color: #ffffff; }

.c-button--light .c-button__inner {
  border-color: #ffffff; }

.c-button span {
  color: #000000;
  -webkit-transition: color 0.25s;
  transition: color 0.25s; }

@media (min-width: 1440px) {
  .c-button {
    padding-top: 0.69444vw; } }

@media (min-width: 1440px) {
  .c-button {
    padding-bottom: 0.69444vw; } }

@media (min-width: 1440px) {
  .c-button {
    padding-left: 4.86111vw; } }

@media (min-width: 1440px) {
  .c-button {
    padding-right: 4.86111vw; } }

@media (max-width: 800px) {
  .c-button {
    padding-left: 50px;
    padding-right: 50px; } }

.c-button__inner {
  display: block;
  position: absolute;
  border-color: #000000;
  border-style: solid;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  border-radius: 200px;
  border-width: 2px; }

@media (min-width: 1440px) {
  .c-button__inner {
    border-radius: 13.88889vw; } }

@media (min-width: 1440px) {
  .c-button__inner {
    border-width: 0.13889vw; } }

.c-button::before {
  content: "";
  position: absolute;
  left: -25%;
  top: 0;
  width: 150%;
  height: 100%;
  color: #bf0c34;
  z-index: -1;
  border-color: #bf0c34;
  background-color: #bf0c34;
  border-style: solid;
  -webkit-transition: -webkit-transform ease-out 0.5s;
  transition: -webkit-transform ease-out 0.5s;
  transition: transform ease-out 0.5s;
  transition: transform ease-out 0.5s, -webkit-transform ease-out 0.5s;
  -webkit-transform: scaleX(0) skewX(-60deg);
          transform: scaleX(0) skewX(-60deg);
  -webkit-transform-origin: right center;
          transform-origin: right center;
  border-width: 0px; }

@media (min-width: 1440px) {
  .c-button::before {
    border-width: 0vw; } }

.c-button--white .c-button__inner {
  border-color: #ffffff; }

.c-button--white span {
  color: #ffffff; }

@media (hover: none) {
  .c-button {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }
  .c-button:active {
    /* 1 */
    color: #ffffff; }
  .c-button:active span {
    color: #ffffff; }
  .c-button:active::before {
    -webkit-transform: scaleX(1) skewX(-60deg);
            transform: scaleX(1) skewX(-60deg);
    -webkit-transform-origin: left center;
            transform-origin: left center; } }

@media (hover: hover), all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .c-button:hover {
    /* 2 */
    color: #ffffff; }
  .c-button:hover span {
    color: #ffffff; }
  .c-button:hover::before {
    -webkit-transform: scaleX(1) skewX(-60deg);
            transform: scaleX(1) skewX(-60deg);
    -webkit-transform-origin: left center;
            transform-origin: left center; } }

@media (min-width: 480px) {
  #cookie-law-info-bar {
    inset: auto 50px 35px auto !important;
    -webkit-clip-path: polygon(0 4.5%, 100% 0%, 100% 100%, 0% 100%) !important;
            clip-path: polygon(0 4.5%, 100% 0%, 100% 100%, 0% 100%) !important;
    width: 465px !important;
    padding: 45px 45px 30px !important;
    text-align: left !important; } }

@media (max-width: 1440px) {
  #cookie-law-info-bar {
    padding: 3.125vw 3.125vw 2.08333vw !important;
    width: 32.29167vw !important;
    inset: auto 3.47222vw 2.43056vw auto !important; } }

.c-cookie-popup__text {
  padding-bottom: 25px; }

.c-cookie-popup__button-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.c-footer {
  padding-top: 25px;
  margin-top: 25px; }

@media (min-width: 480px) {
  .c-footer {
    padding-top: calc(2.60417vw + 12.5px); } }

@media (min-width: 1440px) {
  .c-footer {
    padding-top: 50px; } }

@media (min-width: 1440px) {
  .c-footer {
    padding-top: 3.47222vw; } }

@media (min-width: 480px) {
  .c-footer {
    margin-top: calc(2.60417vw + 12.5px); } }

@media (min-width: 1440px) {
  .c-footer {
    margin-top: 50px; } }

@media (min-width: 1440px) {
  .c-footer {
    margin-top: 3.47222vw; } }

.c-footer__logo {
  width: 202px;
  margin-bottom: 25px;
  height: auto; }

@media (min-width: 1440px) {
  .c-footer__logo {
    width: 14.02778vw; } }

@media (min-width: 480px) {
  .c-footer__logo {
    margin-bottom: calc(2.60417vw + 12.5px); } }

@media (min-width: 1440px) {
  .c-footer__logo {
    margin-bottom: 50px; } }

@media (min-width: 1440px) {
  .c-footer__logo {
    margin-bottom: 3.47222vw; } }

.c-footer__logo .u-icon--logo {
  width: 100%;
  height: auto; }

.c-footer__menu-list {
  padding-bottom: 25px;
  max-width: 400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }

@media (min-width: 480px) {
  .c-footer__menu-list {
    padding-bottom: calc(2.60417vw + 12.5px); } }

@media (min-width: 1440px) {
  .c-footer__menu-list {
    padding-bottom: 50px; } }

@media (min-width: 1440px) {
  .c-footer__menu-list {
    padding-bottom: 3.47222vw; } }

@media (min-width: 1440px) {
  .c-footer__menu-list {
    max-width: 27.77778vw; } }

.c-footer__menu-list li {
  margin-bottom: 5px;
  width: 240px;
  padding-right: 60px;
  max-width: 50%; }

@media (min-width: 480px) {
  .c-footer__menu-list li {
    margin-bottom: calc(0.52083vw + 2.5px); } }

@media (min-width: 1440px) {
  .c-footer__menu-list li {
    margin-bottom: 10px; } }

@media (min-width: 1440px) {
  .c-footer__menu-list li {
    margin-bottom: 0.69444vw; } }

@media (min-width: 1440px) {
  .c-footer__menu-list li {
    width: 16.66667vw; } }

@media (min-width: 1440px) {
  .c-footer__menu-list li {
    padding-right: 4.16667vw; } }

@media (max-width: 800px) {
  .c-footer__menu-list li {
    margin-right: 40px; } }

@media (max-width: 480px) {
  .c-footer__menu-list li {
    max-width: none;
    width: 100%; } }

.c-footer__menu-list a {
  position: relative; }

.c-footer__menu-list a:after {
  position: absolute;
  display: block;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #000000;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform-origin: right;
          transform-origin: right; }

@media (hover: none) {
  .c-footer__menu-list a {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }
  .c-footer__menu-list a:active {
    /* 1 */ }
  .c-footer__menu-list a:active:after {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scale(1);
            transform: scale(1); } }

@media (hover: hover), all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .c-footer__menu-list a:hover {
    /* 2 */ }
  .c-footer__menu-list a:hover:after {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scale(1);
            transform: scale(1); } }

.c-footer__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }

@media (max-width: 800px) {
  .c-footer__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; } }

.c-footer__col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end; }

@media (max-width: 800px) {
  .c-footer__col {
    width: 100%; } }

.c-footer__download-list {
  padding-bottom: 25px;
  padding-top: 10px;
  width: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }

@media (min-width: 480px) {
  .c-footer__download-list {
    padding-bottom: calc(2.60417vw + 12.5px); } }

@media (min-width: 1440px) {
  .c-footer__download-list {
    padding-bottom: 50px; } }

@media (min-width: 1440px) {
  .c-footer__download-list {
    padding-bottom: 3.47222vw; } }

@media (min-width: 480px) {
  .c-footer__download-list {
    padding-top: calc(1.04167vw + 5px); } }

@media (min-width: 1440px) {
  .c-footer__download-list {
    padding-top: 20px; } }

@media (min-width: 1440px) {
  .c-footer__download-list {
    padding-top: 1.38889vw; } }

@media (min-width: 1440px) {
  .c-footer__download-list {
    width: 20.83333vw; } }

@media (max-width: 1140px) {
  .c-footer__download-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: auto; } }

.c-footer__download-list a {
  display: block;
  width: calc(50% - 8px); }

.c-footer__download-list a svg {
  -webkit-transition: -webkit-transform 0.2s ease-out;
  transition: -webkit-transform 0.2s ease-out;
  transition: transform 0.2s ease-out;
  transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0); }

@media (max-width: 1140px) {
  .c-footer__download-list a {
    width: 100px; } }

@media (hover: none) {
  .c-footer__download-list a {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }
  .c-footer__download-list a:active {
    /* 1 */ }
  .c-footer__download-list a:active svg {
    -webkit-transform: translate3d(0, -3px, 0);
            transform: translate3d(0, -3px, 0); } }

@media (hover: hover), all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .c-footer__download-list a:hover {
    /* 2 */ }
  .c-footer__download-list a:hover svg {
    -webkit-transform: translate3d(0, -3px, 0);
            transform: translate3d(0, -3px, 0); } }

.c-footer__hr {
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.2); }

.c-footer__bottom {
  padding-top: 10px;
  padding-bottom: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: rgba(0, 0, 0, 0.5); }

@media (min-width: 480px) {
  .c-footer__bottom {
    padding-top: calc(1.04167vw + 5px); } }

@media (min-width: 1440px) {
  .c-footer__bottom {
    padding-top: 20px; } }

@media (min-width: 1440px) {
  .c-footer__bottom {
    padding-top: 1.38889vw; } }

@media (min-width: 480px) {
  .c-footer__bottom {
    padding-bottom: calc(2.60417vw + 12.5px); } }

@media (min-width: 1440px) {
  .c-footer__bottom {
    padding-bottom: 50px; } }

@media (min-width: 1440px) {
  .c-footer__bottom {
    padding-bottom: 3.47222vw; } }

.c-footer__bottom p:nth-child(1) {
  margin-right: 6.04167vw; }

.c-footer__bottom a {
  -webkit-transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53); }

@media (hover: none) {
  .c-footer__bottom a {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }
  .c-footer__bottom a:active {
    /* 1 */
    color: #000000; } }

@media (hover: hover), all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .c-footer__bottom a:hover {
    /* 2 */
    color: #000000; } }

.c-header {
  padding-top: 100px;
  padding-bottom: 100px;
  text-align: center;
  min-height: 90vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }

@media (min-width: 480px) {
  .c-header {
    padding-top: calc(10.41667vw + 50px); } }

@media (min-width: 1440px) {
  .c-header {
    padding-top: 200px; } }

@media (min-width: 1440px) {
  .c-header {
    padding-top: 13.88889vw; } }

@media (min-width: 480px) {
  .c-header {
    padding-bottom: calc(10.41667vw + 50px); } }

@media (min-width: 1440px) {
  .c-header {
    padding-bottom: 200px; } }

@media (min-width: 1440px) {
  .c-header {
    padding-bottom: 13.88889vw; } }

@media (max-width: 800px) {
  .c-header {
    min-height: unset; } }

@media (max-width: 480px) {
  .c-header {
    padding-top: 140px; } }

.c-header .c-parallax-graphic--vortex-line {
  bottom: 10.20833vw;
  right: 29.375vw; }

.c-header .c-parallax-graphic--circle {
  right: 6.52778vw;
  bottom: 2.91667vw; }

.c-header .c-parallax-graphic--circle .u-icon__background {
  display: none; }

.c-header .c-parallax-graphic--root {
  left: 24.02778vw;
  bottom: 9.09722vw; }

.c-header .c-parallax-graphic--triangle-area {
  top: 6.52778vw;
  left: 26.875vw; }

@media (max-width: 480px) {
  .c-header .c-parallax-graphic--triangle-area {
    top: 8.33333vw; } }

.c-header__eyebrow {
  padding-bottom: 10px; }

@media (min-width: 480px) {
  .c-header__eyebrow {
    padding-bottom: calc(1.04167vw + 5px); } }

@media (min-width: 1440px) {
  .c-header__eyebrow {
    padding-bottom: 20px; } }

@media (min-width: 1440px) {
  .c-header__eyebrow {
    padding-bottom: 1.38889vw; } }

.c-header__title {
  padding-bottom: 20px; }

@media (min-width: 480px) {
  .c-header__title {
    padding-bottom: calc(2.08333vw + 10px); } }

@media (min-width: 1440px) {
  .c-header__title {
    padding-bottom: 40px; } }

@media (min-width: 1440px) {
  .c-header__title {
    padding-bottom: 2.77778vw; } }

.c-mobile-navigation {
  min-height: 100vh;
  color: #000000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 15px; }

.c-mobile-navigation__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 45px; }

.c-mobile-navigation__logo {
  width: 190px;
  height: auto; }

@media (min-width: 480px) {
  .c-mobile-navigation__logo {
    visibility: hidden;
    opacity: 0; } }

@media (max-width: 480px) {
  .c-mobile-navigation__logo {
    width: 52%; } }

.c-mobile-navigation__logo .u-icon {
  width: 100%;
  height: auto; }

.c-mobile-navigation__logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.c-mobile-navigation__close {
  margin-left: auto;
  margin-bottom: auto; }

.c-mobile-navigation__close-btn {
  -webkit-appearance: none;
  border: 0;
  background-color: transparent;
  width: 30px;
  height: 30px;
  padding: 6px;
  cursor: pointer;
  position: relative; }

.c-mobile-navigation__close-btn i {
  position: absolute;
  width: 80%;
  height: 2px;
  display: block;
  left: 10%;
  background-color: #000000; }

.c-mobile-navigation__close-btn i:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg); }

.c-mobile-navigation__close-btn i:nth-child(2) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg); }

.c-mobile-navigation__list li {
  margin-bottom: 30px; }

.c-mobile-navigation-wrapper {
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background-color: #ffffff;
  opacity: 0;
  visibility: hidden;
  display: none;
  -webkit-transform: translateX(40px);
          transform: translateX(40px);
  z-index: 110; }

@media (max-width: 800px) {
  .c-mobile-navigation-wrapper {
    display: block;
    width: 400px; } }

@media (max-width: 480px) {
  .c-mobile-navigation-wrapper {
    width: 100%; } }

.c-navigation {
  padding-left: 25px;
  padding-right: 25px;
  padding-top: 15px;
  padding-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }

@media (min-width: 480px) {
  .c-navigation {
    padding-left: calc(2.60417vw + 12.5px); } }

@media (min-width: 1440px) {
  .c-navigation {
    padding-left: 50px; } }

@media (min-width: 1440px) {
  .c-navigation {
    padding-left: 3.47222vw; } }

@media (min-width: 480px) {
  .c-navigation {
    padding-right: calc(2.60417vw + 12.5px); } }

@media (min-width: 1440px) {
  .c-navigation {
    padding-right: 50px; } }

@media (min-width: 1440px) {
  .c-navigation {
    padding-right: 3.47222vw; } }

@media (min-width: 480px) {
  .c-navigation {
    padding-top: calc(1.5625vw + 7.5px); } }

@media (min-width: 1440px) {
  .c-navigation {
    padding-top: 30px; } }

@media (min-width: 1440px) {
  .c-navigation {
    padding-top: 2.08333vw; } }

@media (min-width: 480px) {
  .c-navigation {
    padding-bottom: calc(1.5625vw + 7.5px); } }

@media (min-width: 1440px) {
  .c-navigation {
    padding-bottom: 30px; } }

@media (min-width: 1440px) {
  .c-navigation {
    padding-bottom: 2.08333vw; } }

.c-navigation--white {
  color: #ffffff; }

.c-navigation--white .c-language-switch {
  border-color: #ffffff; }

.c-navigation--white .c-burger i {
  background-color: #ffffff; }

.c-navigation__logo {
  width: 150px;
  height: auto;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  min-height: 100%;
  -webkit-transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53); }

@media (min-width: 1440px) {
  .c-navigation__logo {
    width: 10.41667vw; } }

@media (max-width: 800px) {
  .c-navigation__logo {
    width: 190px; } }

@media (max-width: 480px) {
  .c-navigation__logo {
    width: 52%; } }

.c-navigation__logo a {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }

@media (hover: none) {
  .c-navigation__logo a {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }
  .c-navigation__logo a:active {
    /* 1 */ }
  .c-navigation__logo a:active .u-icon__logo-text {
    -webkit-animation-name: logoAnim;
            animation-name: logoAnim;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    -webkit-animation-duration: 0.4s;
            animation-duration: 0.4s; } }

@media (hover: hover), all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .c-navigation__logo a:hover {
    /* 2 */ }
  .c-navigation__logo a:hover .u-icon__logo-text {
    -webkit-animation-name: logoAnim;
            animation-name: logoAnim;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    -webkit-animation-duration: 0.4s;
            animation-duration: 0.4s; } }

.c-navigation__logo .u-icon--logo {
  width: 100%;
  height: auto; }

.c-navigation__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto; }

@media (max-width: 800px) {
  .c-navigation__list {
    display: none; } }

.c-navigation__list li {
  margin-left: 30px; }

@media (min-width: 480px) {
  .c-navigation__list li {
    margin-left: calc(3.125vw + 15px); } }

@media (min-width: 1440px) {
  .c-navigation__list li {
    margin-left: 60px; } }

@media (min-width: 1440px) {
  .c-navigation__list li {
    margin-left: 4.16667vw; } }

.c-navigation__list a {
  display: inline-block;
  padding-top: 5px;
  padding-bottom: 5px; }

@media (min-width: 480px) {
  .c-navigation__list a {
    padding-top: calc(0.52083vw + 2.5px); } }

@media (min-width: 1440px) {
  .c-navigation__list a {
    padding-top: 10px; } }

@media (min-width: 1440px) {
  .c-navigation__list a {
    padding-top: 0.69444vw; } }

@media (min-width: 480px) {
  .c-navigation__list a {
    padding-bottom: calc(0.52083vw + 2.5px); } }

@media (min-width: 1440px) {
  .c-navigation__list a {
    padding-bottom: 10px; } }

@media (min-width: 1440px) {
  .c-navigation__list a {
    padding-bottom: 0.69444vw; } }

.c-navigation__list a span {
  position: relative;
  line-height: 1; }

.c-navigation__list a span:after {
  position: absolute;
  display: block;
  content: "";
  top: 100%;
  margin-top: 2px;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #ff85b0;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform-origin: right;
          transform-origin: right;
  z-index: -1; }

.hover-color-pink .c-navigation__list a span:after {
  background-color: #ff85b0; }

.hover-color-blue .c-navigation__list a span:after {
  background-color: #0551d8; }

.hover-color-yellow .c-navigation__list a span:after {
  background-color: #fed601; }

.hover-color-red .c-navigation__list a span:after {
  background-color: #bf0c34; }

@media (hover: none) {
  .c-navigation__list a {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }
  .c-navigation__list a:active {
    /* 1 */ }
  .c-navigation__list a:active span:after {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scale(1);
            transform: scale(1); } }

@media (hover: hover), all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .c-navigation__list a:hover {
    /* 2 */ }
  .c-navigation__list a:hover span:after {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scale(1);
            transform: scale(1); } }

.c-navigation__list a.is-active span:after {
  -webkit-transform: scale(1);
          transform: scale(1); }

.c-burger {
  display: none;
  margin-left: auto;
  -webkit-appearance: none;
  border: 0;
  background: transparent;
  height: 20px;
  width: 30px;
  position: relative;
  cursor: pointer; }

.c-burger i {
  position: absolute;
  width: 100%;
  height: 2px;
  display: block;
  left: 0;
  background-color: #000000; }

.c-burger i:nth-child(1) {
  top: 0; }

.c-burger i:nth-child(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%); }

.c-burger i:nth-child(3) {
  bottom: 0; }

@media (max-width: 800px) {
  .c-burger {
    display: block; } }

@-webkit-keyframes logoAnim {
  0% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%); }
  50% {
    opacity: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%); }
  51% {
    opacity: 0;
    -webkit-transform: translateY(50%);
            transform: translateY(50%); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0%);
            transform: translateY(0%); } }

@keyframes logoAnim {
  0% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%); }
  50% {
    opacity: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%); }
  51% {
    opacity: 0;
    -webkit-transform: translateY(50%);
            transform: translateY(50%); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0%);
            transform: translateY(0%); } }

.c-language-switch {
  margin-left: 30px;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-right: 14px;
  padding-left: 14px;
  border-color: #000000;
  border-style: solid;
  cursor: pointer;
  border-radius: 200px;
  border-width: 1px;
  position: relative; }

@media (min-width: 480px) {
  .c-language-switch {
    margin-left: calc(3.125vw + 15px); } }

@media (min-width: 1440px) {
  .c-language-switch {
    margin-left: 60px; } }

@media (min-width: 1440px) {
  .c-language-switch {
    margin-left: 4.16667vw; } }

@media (min-width: 480px) {
  .c-language-switch {
    padding-top: calc(0.52083vw + 2.5px); } }

@media (min-width: 1440px) {
  .c-language-switch {
    padding-top: 10px; } }

@media (min-width: 1440px) {
  .c-language-switch {
    padding-top: 0.69444vw; } }

@media (min-width: 480px) {
  .c-language-switch {
    padding-bottom: calc(0.52083vw + 2.5px); } }

@media (min-width: 1440px) {
  .c-language-switch {
    padding-bottom: 10px; } }

@media (min-width: 1440px) {
  .c-language-switch {
    padding-bottom: 0.69444vw; } }

@media (min-width: 1440px) {
  .c-language-switch {
    padding-right: 0.97222vw; } }

@media (min-width: 1440px) {
  .c-language-switch {
    padding-left: 0.97222vw; } }

@media (max-width: 800px) {
  .c-language-switch {
    display: none; } }

.c-language-switch__active, .c-language-switch__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  -webkit-transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53); }

.c-language-switch__active span, .c-language-switch__link span {
  margin-left: 10px;
  position: relative;
  bottom: -0.15em;
  line-height: 0.8;
  display: inline-block; }

@media (min-width: 1440px) {
  .c-language-switch__active span, .c-language-switch__link span {
    margin-left: 0.69444vw; } }

.c-language-switch__active img, .c-language-switch__link img {
  display: inline-block;
  width: 19px;
  height: auto; }

@media (min-width: 1440px) {
  .c-language-switch__active img, .c-language-switch__link img {
    width: 1.31944vw; } }

@media (hover: none) {
  .c-language-switch__active, .c-language-switch__link {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }
  .c-language-switch__active:active, .c-language-switch__link:active {
    /* 1 */
    opacity: 0.5; } }

@media (hover: hover), all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .c-language-switch__active:hover, .c-language-switch__link:hover {
    /* 2 */
    opacity: 0.5; } }

.c-language-switch__dropdown {
  padding-top: 10px;
  padding-right: 14px;
  padding-left: 14px;
  margin-top: 5px;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translate(-50%, -10px);
          transform: translate(-50%, -10px);
  cursor: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  background-color: #ffffff;
  border-radius: 14px;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.1); }

@media (min-width: 480px) {
  .c-language-switch__dropdown {
    padding-top: calc(1.04167vw + 5px); } }

@media (min-width: 1440px) {
  .c-language-switch__dropdown {
    padding-top: 20px; } }

@media (min-width: 1440px) {
  .c-language-switch__dropdown {
    padding-top: 1.38889vw; } }

@media (min-width: 1440px) {
  .c-language-switch__dropdown {
    padding-right: 0.97222vw; } }

@media (min-width: 1440px) {
  .c-language-switch__dropdown {
    padding-left: 0.97222vw; } }

@media (min-width: 480px) {
  .c-language-switch__dropdown {
    margin-top: calc(0.52083vw + 2.5px); } }

@media (min-width: 1440px) {
  .c-language-switch__dropdown {
    margin-top: 10px; } }

@media (min-width: 1440px) {
  .c-language-switch__dropdown {
    margin-top: 0.69444vw; } }

.c-language-switch__item {
  margin-bottom: 5px;
  color: #000000; }

@media (min-width: 480px) {
  .c-language-switch__item {
    margin-bottom: calc(0.52083vw + 2.5px); } }

@media (min-width: 1440px) {
  .c-language-switch__item {
    margin-bottom: 10px; } }

@media (min-width: 1440px) {
  .c-language-switch__item {
    margin-bottom: 0.69444vw; } }

.c-language-switch__item--active {
  color: #0551d8; }

.c-language-switch__item .u-icon {
  width: 28px;
  margin-left: 18px; }

@media (min-width: 1440px) {
  .c-language-switch__item .u-icon {
    width: 1.94444vw; } }

@media (hover: none) {
  .c-language-switch {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }
  .c-language-switch:active {
    /* 1 */ } }

@media (hover: none) and (min-width: 800px) {
  .c-language-switch:active .c-language-switch__dropdown {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0); } }

@media (hover: hover), all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .c-language-switch:hover {
    /* 2 */ } }

@media (hover: hover) and (min-width: 800px), all and (-ms-high-contrast: none) and (min-width: 800px), (-ms-high-contrast: active) and (min-width: 800px) {
  .c-language-switch:hover .c-language-switch__dropdown {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0); } }

.c-language-switch--mobile {
  display: block;
  width: auto;
  margin-right: auto;
  margin-left: 0;
  padding: 10px 16px; }

.c-language-switch--mobile .c-language-switch__dropdown {
  margin-top: 16px;
  left: 0;
  -webkit-transform: translate(0);
          transform: translate(0);
  min-width: 130px; }

.c-language-switch--mobile .c-language-switch__dropdown.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0);
          transform: translate(0); }

.c-language-switch--mobile .c-language-switch__dropdown li {
  margin-bottom: 20px; }

.c-language-switch--mobile .c-language-switch__dropdown li img {
  width: 34px; }

.c-language-switch--mobile .c-language-switch__dropdown li .u-icon {
  width: 17px;
  height: auto; }

.c-appstore-download {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex; }

@media (max-width: 480px) {
  .c-appstore-download {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; } }

.c-appstore-download__item {
  width: 144px; }

@media (min-width: 1440px) {
  .c-appstore-download__item {
    width: 10vw; } }

.c-appstore-download__item:first-child {
  margin-right: 16px; }

@media (min-width: 1440px) {
  .c-appstore-download__item:first-child {
    margin-right: 1.11111vw; } }

@media (max-width: 480px) {
  .c-appstore-download__item:first-child {
    margin-right: 0; } }

.c-appstore-download__item a svg {
  -webkit-transition: -webkit-transform 0.2s ease-out;
  transition: -webkit-transform 0.2s ease-out;
  transition: transform 0.2s ease-out;
  transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0); }

@media (hover: none) {
  .c-appstore-download__item a {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }
  .c-appstore-download__item a:active {
    /* 1 */ }
  .c-appstore-download__item a:active svg {
    -webkit-transform: translate3d(0, -3px, 0);
            transform: translate3d(0, -3px, 0); } }

@media (hover: hover), all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .c-appstore-download__item a:hover {
    /* 2 */ }
  .c-appstore-download__item a:hover svg {
    -webkit-transform: translate3d(0, -3px, 0);
            transform: translate3d(0, -3px, 0); } }

.c-custom-cursor {
  position: fixed;
  width: 5.41667vw;
  height: 5.41667vw;
  top: -2.70833vw;
  left: -2.70833vw;
  z-index: 99;
  pointer-events: none; }

@media (max-width: 800px) {
  .c-custom-cursor {
    display: none; } }

.is-cursor-visible .c-custom-cursor .c-custom-cursor__label {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1); }

.is-link-hovered .c-custom-cursor .c-custom-cursor__label {
  opacity: 0;
  -webkit-transform: scale(0);
          transform: scale(0); }

.c-custom-cursor__trail {
  display: block;
  border-radius: 50%;
  position: fixed;
  width: 5.41667vw;
  height: 5.41667vw;
  top: -2.70833vw;
  left: -2.70833vw;
  z-index: 98;
  pointer-events: none; }

.c-custom-cursor__trail:before {
  content: "";
  display: block;
  opacity: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
  top: 0;
  right: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #fed601;
  -webkit-transition: opacity 0.25s, -webkit-transform 0.25s;
  transition: opacity 0.25s, -webkit-transform 0.25s;
  transition: transform 0.25s, opacity 0.25s;
  transition: transform 0.25s, opacity 0.25s, -webkit-transform 0.25s;
  border-radius: 50%; }

.is-cursor-visible .c-custom-cursor__trail:before {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1); }

.c-custom-cursor__circle {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1.5px solid #000000;
  -webkit-transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
  opacity: 0;
  z-index: 1;
  overflow: hidden; }

.is-cursor-visible .c-custom-cursor__circle {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1); }

.is-cursor-down .c-custom-cursor__circle {
  border-color: #ffffff;
  -webkit-transform: scale(0.5);
          transform: scale(0.5); }

.c-custom-cursor__label {
  opacity: 0;
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
  -webkit-transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  margin-top: 2px; }

.c-custom-cursor__label--click {
  opacity: 0;
  -webkit-transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0.5);
          transform: translate(-50%, -50%) scale(0.5);
  mix-blend-mode: difference;
  padding: 10px; }

.is-link-hovered .c-custom-cursor__label--click {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1); }

.c-parallax-graphic {
  position: absolute;
  display: inline-block;
  pointer-events: none;
  z-index: 10; }

.c-parallax-graphic .u-icon {
  width: 100%;
  height: auto; }

.c-media-wrapper picture, .c-media-wrapper__picture {
  display: block;
  position: relative;
  height: 0; }

.c-media-wrapper img, .c-media-wrapper__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover; }

.c-section-content h2 {
  max-width: 400px;
  padding-bottom: 20px; }

@media (min-width: 1440px) {
  .c-section-content h2 {
    max-width: 27.77778vw; } }

@media (min-width: 480px) {
  .c-section-content h2 {
    padding-bottom: calc(2.08333vw + 10px); } }

@media (min-width: 1440px) {
  .c-section-content h2 {
    padding-bottom: 40px; } }

@media (min-width: 1440px) {
  .c-section-content h2 {
    padding-bottom: 2.77778vw; } }

.c-section-content h2 + h2 {
  margin-top: -20px; }

@media (min-width: 480px) {
  .c-section-content h2 + h2 {
    margin-top: calc(-2.08333vw - 10px); } }

@media (min-width: 1440px) {
  .c-section-content h2 + h2 {
    margin-top: -40px; } }

@media (min-width: 1440px) {
  .c-section-content h2 + h2 {
    margin-top: -2.77778vw; } }

.c-section-content--wide-title h2 {
  max-width: 540px; }

@media (min-width: 1440px) {
  .c-section-content--wide-title h2 {
    max-width: 37.5vw; } }

.c-section-content p {
  max-width: 400px;
  padding-bottom: 1.5em; }

@media (min-width: 1440px) {
  .c-section-content p {
    max-width: 27.77778vw; } }

@media (max-width: 800px) {
  .c-section-content p {
    max-width: 320px; } }

.c-section-content .c-button,
.c-section-content a {
  margin-bottom: 20px;
  margin-top: 1em; }

@media (min-width: 480px) {
  .c-section-content .c-button,
  .c-section-content a {
    margin-bottom: calc(2.08333vw + 10px); } }

@media (min-width: 1440px) {
  .c-section-content .c-button,
  .c-section-content a {
    margin-bottom: 40px; } }

@media (min-width: 1440px) {
  .c-section-content .c-button,
  .c-section-content a {
    margin-bottom: 2.77778vw; } }

.c-section-content ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-top: 1em;
  padding-bottom: 1.5em; }

.c-section-content ul li {
  width: 50%;
  position: relative;
  padding-left: 2em;
  margin-bottom: 1em;
  padding-right: 2em; }

.c-section-content ul li p {
  padding-bottom: 0; }

.c-section-content ul li:before {
  content: url("../ui/list-style-image.svg");
  position: absolute;
  left: 0;
  width: 1em;
  height: 1em; }

.c-section-content ul li:nth-child(6n + 1):before {
  -webkit-filter: invert(82%) sepia(100%) saturate(1030%) hue-rotate(285deg) brightness(111%) contrast(104%);
          filter: invert(82%) sepia(100%) saturate(1030%) hue-rotate(285deg) brightness(111%) contrast(104%); }

.c-section-content ul li:nth-child(6n + 2):before {
  -webkit-filter: invert(12%) sepia(99%) saturate(4206%) hue-rotate(339deg) brightness(86%) contrast(99%);
          filter: invert(12%) sepia(99%) saturate(4206%) hue-rotate(339deg) brightness(86%) contrast(99%); }

.c-section-content ul li:nth-child(6n + 3):before {
  -webkit-filter: invert(73%) sepia(93%) saturate(2382%) hue-rotate(2deg) brightness(117%) contrast(115%);
          filter: invert(73%) sepia(93%) saturate(2382%) hue-rotate(2deg) brightness(117%) contrast(115%); }

.c-section-content ul li:nth-child(6n + 4):before {
  -webkit-filter: invert(65%) sepia(97%) saturate(4483%) hue-rotate(341deg) brightness(102%) contrast(101%);
          filter: invert(65%) sepia(97%) saturate(4483%) hue-rotate(341deg) brightness(102%) contrast(101%); }

.c-section-content ul li:nth-child(6n + 5):before {
  -webkit-filter: invert(19%) sepia(62%) saturate(4508%) hue-rotate(216deg) brightness(92%) contrast(97%);
          filter: invert(19%) sepia(62%) saturate(4508%) hue-rotate(216deg) brightness(92%) contrast(97%); }

.c-section-content ul li:nth-child(6n + 6):before {
  -webkit-filter: invert(65%) sepia(84%) saturate(597%) hue-rotate(295deg) brightness(102%) contrast(104%);
          filter: invert(65%) sepia(84%) saturate(597%) hue-rotate(295deg) brightness(102%) contrast(104%); }

.c-section-content.is-single-column-list ul li {
  width: 100%;
  margin-bottom: 1.5em; }

.c-teach-card {
  width: 100%; }

.c-teach-card__image {
  position: relative;
  padding-left: 12.5%;
  padding-right: 25%;
  padding-bottom: 10px;
  padding-top: 30px;
  margin-bottom: 10px; }

@media (min-width: 480px) {
  .c-teach-card__image {
    padding-bottom: calc(1.04167vw + 5px); } }

@media (min-width: 1440px) {
  .c-teach-card__image {
    padding-bottom: 20px; } }

@media (min-width: 1440px) {
  .c-teach-card__image {
    padding-bottom: 1.38889vw; } }

@media (min-width: 480px) {
  .c-teach-card__image {
    padding-top: calc(3.125vw + 15px); } }

@media (min-width: 1440px) {
  .c-teach-card__image {
    padding-top: 60px; } }

@media (min-width: 1440px) {
  .c-teach-card__image {
    padding-top: 4.16667vw; } }

@media (min-width: 480px) {
  .c-teach-card__image {
    margin-bottom: calc(1.04167vw + 5px); } }

@media (min-width: 1440px) {
  .c-teach-card__image {
    margin-bottom: 20px; } }

@media (min-width: 1440px) {
  .c-teach-card__image {
    margin-bottom: 1.38889vw; } }

.c-teach-card__image .u-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; }

.c-teach-card__image .c-media-wrapper {
  border-radius: 50%;
  overflow: hidden; }

.c-numbers-card {
  padding-top: 30px; }

@media (min-width: 480px) {
  .c-numbers-card {
    padding-top: calc(3.125vw + 15px); } }

@media (min-width: 1440px) {
  .c-numbers-card {
    padding-top: 60px; } }

@media (min-width: 1440px) {
  .c-numbers-card {
    padding-top: 4.16667vw; } }

.c-numbers-card__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row; }

.c-numbers-card .u-icon {
  display: inline-block;
  height: auto;
  margin-right: 0.5em; }

/**
 * Custom video player
 * 1. Settings
 * 2. Time input track styles
 * 3. Time input thumb styles
 * 4. Volume input track styles
 * 5. Volume input thumb styles
 * 6. Custom video player wrapper styles
 * 7. Indicator for playback state
 * 8. HTML Video styles
 * 9. Controls wrapper
 * 10. Progress wrapper
 * 11. Progress bar styles - cross browser progress element for displaying elapsed time
 * 12. Time range input styles - cross browser range input for navigating in time
 * 13. Actions wrapper - contains all action buttons
 * 14. Actions left area
 * 15. Volume wrapper
 * 16. Volume range input styles - cross browser range input for volume
 * 17. Action buttons - accessible buttons that do action
 * 18. Icon manipulation
 * 19. Reset SVG styles inside player
 */
/* 1 */
/* 2 */
/* 3 */
/* 4 */
/* 5 */
/* 6 */
.c-custom-video-player {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  font-family: "AvenirNext", "Arial", sans-serif;
  font-size: 13px;
  line-height: 19px;
  /* 7 */
  /* 8 */
  /* 9 */
  /* 10 */
  /* 11 */
  /* 12 */
  /* 13 */
  /* 14 */
  /* 15 */
  /* 16 */
  /* 17 */
  /* 18 */
  /* 19 */ }

@media (min-width: 480px) {
  .c-custom-video-player {
    font-size: calc(0.10417vw + 12.5px); } }

@media (min-width: 1440px) {
  .c-custom-video-player {
    font-size: calc(0.07812vw + 12.875px); } }

@media (min-width: 4000px) {
  .c-custom-video-player {
    font-size: 16px; } }

@media (min-width: 480px) {
  .c-custom-video-player {
    line-height: calc(0.10417vw + 18.5px); } }

@media (min-width: 1440px) {
  .c-custom-video-player {
    line-height: calc(0.07812vw + 18.875px); } }

@media (min-width: 4000px) {
  .c-custom-video-player {
    line-height: 22px; } }

.c-custom-video-player:hover .c-custom-video-player__controls {
  -webkit-transform: translateY(0%);
          transform: translateY(0%); }

.c-custom-video-player__state-indicator {
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53); }

.is-paused .c-custom-video-player__state-indicator {
  opacity: 1;
  visibility: visible; }

.c-custom-video-player__video {
  width: 100%;
  height: 100%; }

.c-custom-video-player__controls {
  right: 0;
  left: 0;
  padding: 2.1875rem 0.625rem 0.625rem;
  position: absolute;
  bottom: 0;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(80%, rgba(0, 0, 0, 0.7)));
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 80%);
  -webkit-transform: translateY(100%);
          transform: translateY(100%); }

.is-paused .c-custom-video-player__controls {
  -webkit-transform: translateY(0%);
          transform: translateY(0%); }

.c-custom-video-player__progress {
  position: relative;
  height: 3px; }

.c-custom-video-player__progress-bar {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 3px;
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%); }

.c-custom-video-player__progress-bar::-webkit-progress-bar {
  background-color: rgba(255, 255, 255, 0.3); }

.c-custom-video-player__progress-bar::-webkit-progress-value {
  background: #ffffff; }

.c-custom-video-player__progress-bar::-moz-progress-bar {
  background: #ffffff; }

.c-custom-video-player__progress-bar::-ms-fill {
  background: #ffffff; }

.c-custom-video-player__time-input {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-appearance: none;
  margin: 0;
  padding: 0;
  width: 100%;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  -webkit-transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  cursor: pointer;
  min-height: 12px;
  background: transparent;
  font: inherit; }

.c-custom-video-player__time-input::-webkit-slider-thumb {
  -webkit-appearance: none; }

.c-custom-video-player__time-input::-webkit-slider-runnable-track {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: none;
  width: 100%;
  height: 3px;
  background: transparent; }

.c-custom-video-player__time-input::-moz-range-track {
  box-sizing: border-box;
  border: none;
  width: 100%;
  height: 3px;
  background: transparent; }

.c-custom-video-player__time-input::-ms-track {
  box-sizing: border-box;
  border: none;
  width: 100%;
  height: 3px;
  background: transparent; }

.c-custom-video-player__time-input::-webkit-slider-thumb {
  margin-top: -4.5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ffffff; }

.c-custom-video-player__time-input::-moz-range-thumb {
  box-sizing: border-box;
  border: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ffffff; }

.c-custom-video-player__time-input::-ms-thumb {
  margin-top: 0;
  box-sizing: border-box;
  border: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ffffff; }

.c-custom-video-player__time-input::-ms-tooltip {
  display: none; }

.c-custom-video-player__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 0.9375rem; }

.c-custom-video-player__actions-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0; }

.c-custom-video-player__volume {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }

.c-custom-video-player__volume-input {
  -webkit-appearance: none;
  margin: 0 0.625rem;
  padding: 0;
  width: 6.25rem;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  -webkit-transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  cursor: pointer;
  min-height: 11px;
  background: transparent;
  font: inherit; }

.c-custom-video-player__volume-input::-webkit-slider-thumb {
  -webkit-appearance: none; }

.c-custom-video-player__volume-input::-webkit-slider-runnable-track {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: none;
  width: 100%;
  height: 3px;
  background: #ffffff; }

.c-custom-video-player__volume-input::-moz-range-track {
  box-sizing: border-box;
  border: none;
  width: 100%;
  height: 3px;
  background: #ffffff; }

.c-custom-video-player__volume-input::-ms-track {
  box-sizing: border-box;
  border: none;
  width: 100%;
  height: 3px;
  background: #ffffff; }

.c-custom-video-player__volume-input::-webkit-slider-thumb {
  margin-top: -4px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: none;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #ffffff; }

.c-custom-video-player__volume-input::-moz-range-thumb {
  box-sizing: border-box;
  border: none;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #ffffff; }

.c-custom-video-player__volume-input::-ms-thumb {
  margin-top: 0;
  box-sizing: border-box;
  border: none;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #ffffff; }

.c-custom-video-player__volume-input::-ms-tooltip {
  display: none; }

.c-custom-video-player__action-button {
  background: transparent;
  text-decoration: none;
  cursor: pointer;
  padding: 5px 0.625rem;
  outline: none;
  border: none;
  vertical-align: top;
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 0;
  position: relative; }

.c-custom-video-player__play {
  display: none; }

.is-paused .c-custom-video-player__play {
  display: inline-block; }

.c-custom-video-player__pause {
  display: inline-block; }

.is-paused .c-custom-video-player__pause {
  display: none; }

.c-custom-video-player__sound {
  display: inline-block; }

.is-muted .c-custom-video-player__sound {
  display: none; }

.c-custom-video-player__mute {
  display: none; }

.is-muted .c-custom-video-player__mute {
  display: inline-block; }

.c-custom-video-player__full-screen {
  display: inline-block; }

.is-full-screen .c-custom-video-player__full-screen {
  display: none; }

.c-custom-video-player__exit-full-screen {
  display: none; }

.is-full-screen .c-custom-video-player__exit-full-screen {
  display: inline-block; }

.c-custom-video-player svg {
  width: 0.75rem;
  height: 0.75rem;
  stroke-width: 0;
  stroke: currentColor;
  fill: currentColor;
  color: #ffffff; }

.c-video-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #000000;
  visibility: hidden;
  opacity: 0;
  overflow: auto; }

.c-video-popup.is-active {
  opacity: 1;
  visibility: visible; }

.c-video-popup__inner {
  width: 100%;
  max-height: 100vh;
  padding: 20px; }

@media (min-width: 1440px) {
  .c-video-popup__inner {
    padding: 1.38889vw; } }

@media (max-width: 800px) {
  .c-video-popup__inner {
    padding: 0; } }

.c-video-popup__close {
  position: absolute;
  top: 4.16667vw;
  right: 4.16667vw;
  z-index: 2;
  -webkit-appearance: none;
  background-color: transparent;
  border: 0;
  color: #ffffff;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out; }

@media (hover: none) {
  .c-video-popup__close {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }
  .c-video-popup__close:active {
    /* 1 */
    opacity: 0.5; } }

@media (hover: hover), all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .c-video-popup__close:hover {
    /* 2 */
    opacity: 0.5; } }

.c-video-popup__close .u-icon {
  width: 0.8em;
  height: 0.8em;
  margin-left: 0.8em;
  color: #bf0c34; }

.c-video-popup .c-custom-video-player__video {
  max-height: calc(95vh); }

.c-video-popup .c-custom-video-player__controls {
  padding-left: 20px;
  padding-right: 20px; }

@media (min-width: 480px) {
  .c-video-popup .c-custom-video-player__controls {
    padding-left: calc(2.08333vw + 10px); } }

@media (min-width: 1440px) {
  .c-video-popup .c-custom-video-player__controls {
    padding-left: 40px; } }

@media (min-width: 1440px) {
  .c-video-popup .c-custom-video-player__controls {
    padding-left: 2.77778vw; } }

@media (min-width: 480px) {
  .c-video-popup .c-custom-video-player__controls {
    padding-right: calc(2.08333vw + 10px); } }

@media (min-width: 1440px) {
  .c-video-popup .c-custom-video-player__controls {
    padding-right: 40px; } }

@media (min-width: 1440px) {
  .c-video-popup .c-custom-video-player__controls {
    padding-right: 2.77778vw; } }

.c-list-with-icon {
  width: 100%; }

.c-list-with-icon__item {
  padding-bottom: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }

@media (min-width: 480px) {
  .c-list-with-icon__item {
    padding-bottom: calc(2.60417vw + 12.5px); } }

@media (min-width: 1440px) {
  .c-list-with-icon__item {
    padding-bottom: 50px; } }

@media (min-width: 1440px) {
  .c-list-with-icon__item {
    padding-bottom: 3.47222vw; } }

.c-list-with-icon__icon {
  width: 50px;
  min-width: 50px; }

@media (min-width: 1440px) {
  .c-list-with-icon__icon {
    width: 3.47222vw; } }

@media (min-width: 1440px) {
  .c-list-with-icon__icon {
    min-width: 3.47222vw; } }

@media (max-width: 800px) {
  .c-list-with-icon__icon {
    width: 40px;
    min-width: 40px; } }

.c-list-with-icon__icon .c-media-wrapper__img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center; }

.c-list-with-icon__text {
  padding-left: 25px;
  max-width: 355px; }

@media (min-width: 480px) {
  .c-list-with-icon__text {
    padding-left: calc(2.60417vw + 12.5px); } }

@media (min-width: 1440px) {
  .c-list-with-icon__text {
    padding-left: 50px; } }

@media (min-width: 1440px) {
  .c-list-with-icon__text {
    padding-left: 3.47222vw; } }

@media (min-width: 1440px) {
  .c-list-with-icon__text {
    max-width: 24.65278vw; } }

.c-store-cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.c-store-cta__link {
  width: 140px; }

@media (min-width: 1440px) {
  .c-store-cta__link {
    width: 9.72222vw; } }

.c-store-cta__link:not(:last-child) {
  margin-right: 10px; }

@media (min-width: 480px) {
  .c-store-cta__link:not(:last-child) {
    margin-right: calc(1.04167vw + 5px); } }

@media (min-width: 1440px) {
  .c-store-cta__link:not(:last-child) {
    margin-right: 20px; } }

@media (min-width: 1440px) {
  .c-store-cta__link:not(:last-child) {
    margin-right: 1.38889vw; } }

.c-text-edit h2 {
  max-width: 620px;
  margin-bottom: 0.6383em; }

@media (min-width: 1440px) {
  .c-text-edit h2 {
    max-width: 43.05556vw; } }

.c-text-edit p {
  max-width: 600px;
  margin-bottom: 1.11111em; }

@media (min-width: 1440px) {
  .c-text-edit p {
    max-width: 41.66667vw; } }

.c-text-edit p.is-big {
  max-width: 660px;
  margin-bottom: 1em; }

@media (min-width: 1440px) {
  .c-text-edit p.is-big {
    max-width: 45.83333vw; } }

.c-text-edit h3 {
  max-width: 660px;
  margin-bottom: 1em;
  font-weight: 400; }

@media (min-width: 1440px) {
  .c-text-edit h3 {
    max-width: 45.83333vw; } }

.c-text-edit h4 {
  max-width: 660px;
  margin-bottom: 0.66667em;
  margin-top: 2em;
  font-weight: 500; }

@media (min-width: 1440px) {
  .c-text-edit h4 {
    max-width: 45.83333vw; } }

.c-text-edit ul {
  list-style-type: disc;
  padding-left: 3em;
  max-width: 600px; }

@media (min-width: 1440px) {
  .c-text-edit ul {
    max-width: 41.66667vw; } }

.c-text-edit ul li {
  margin-bottom: 1.11111em; }

.c-text-edit figure {
  max-width: 600px; }

@media (min-width: 1440px) {
  .c-text-edit figure {
    max-width: 41.66667vw; } }

.c-text-edit figure img {
  margin-bottom: 10px; }

@media (min-width: 480px) {
  .c-text-edit figure img {
    margin-bottom: calc(1.04167vw + 5px); } }

@media (min-width: 1440px) {
  .c-text-edit figure img {
    margin-bottom: 20px; } }

@media (min-width: 1440px) {
  .c-text-edit figure img {
    margin-bottom: 1.38889vw; } }

.c-text-edit figure p,
.c-text-edit figure figcaption {
  color: #646464; }

.c-text-edit a {
  text-decoration: underline;
  color: #000000; }

.o-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 120;
  overflow: scroll;
  padding-left: 12.5%;
  padding-right: 12.5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 64px;
  padding-bottom: 64px;
  opacity: 0;
  visibility: hidden; }

@media (min-width: 480px) {
  .o-popup {
    padding-top: calc(3.33333vw + 48px); } }

@media (min-width: 1440px) {
  .o-popup {
    padding-top: 96px; } }

@media (min-width: 1440px) {
  .o-popup {
    padding-top: 6.66667vw; } }

@media (min-width: 480px) {
  .o-popup {
    padding-bottom: calc(3.33333vw + 48px); } }

@media (min-width: 1440px) {
  .o-popup {
    padding-bottom: 96px; } }

@media (min-width: 1440px) {
  .o-popup {
    padding-bottom: 6.66667vw; } }

@media (max-width: 800px) {
  .o-popup {
    padding-left: 4.16667%;
    padding-right: 4.16667%; } }

.o-popup.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto; }

.o-popup--download {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }

.o-popup--download .c-popup {
  min-height: unset; }

.o-popup--download .c-popup__bg {
  background-color: #ffffff; }

.o-popup--download.is-active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

@media (max-width: 800px) {
  .o-popup--download .c-popup__sticky-container {
    top: 40px; } }

.o-popup .c-popup__image {
  padding-right: 0;
  padding-bottom: 100px; }

@media (min-width: 480px) {
  .o-popup .c-popup__image {
    padding-bottom: calc(10.41667vw + 50px); } }

@media (min-width: 1440px) {
  .o-popup .c-popup__image {
    padding-bottom: 200px; } }

@media (min-width: 1440px) {
  .o-popup .c-popup__image {
    padding-bottom: 13.88889vw; } }

.o-popup .c-popup__image .c-media-wrapper {
  -webkit-transform: rotate(9.76deg);
          transform: rotate(9.76deg); }

.c-popup {
  padding-top: 30px;
  position: relative;
  min-height: 100%;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

@media (min-width: 480px) {
  .c-popup {
    padding-top: calc(3.125vw + 15px); } }

@media (min-width: 1440px) {
  .c-popup {
    padding-top: 60px; } }

@media (min-width: 1440px) {
  .c-popup {
    padding-top: 4.16667vw; } }

.c-popup__overlay {
  background-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.c-popup__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f8f8f8;
  -webkit-clip-path: polygon(0 0%, 100% 2%, 100% 100%, 0% 98%);
          clip-path: polygon(0 0%, 100% 2%, 100% 100%, 0% 98%); }

.c-popup__container {
  padding-left: 11.11111%;
  padding-right: 11.11111%;
  z-index: 1;
  position: relative; }

.c-popup__close {
  -webkit-appearance: none;
  background-color: transparent;
  border: 0;
  position: sticky;
  width: 40px;
  height: 40px;
  top: 120px;
  right: 0;
  color: #0551d8;
  cursor: pointer;
  -webkit-transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53); }

@media (min-width: 1440px) {
  .c-popup__close {
    width: 2.77778vw; } }

@media (min-width: 1440px) {
  .c-popup__close {
    height: 2.77778vw; } }

@media (min-width: 1440px) {
  .c-popup__close {
    top: 8.33333vw; } }

@media (max-width: 800px) {
  .c-popup__close {
    top: 30px;
    width: 30px;
    height: 30px;
    padding: 0; } }

.c-popup__close .u-icon {
  width: 100%;
  height: 100%; }

@media (hover: none) {
  .c-popup__close {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }
  .c-popup__close:active {
    /* 1 */
    -webkit-transform: scale(1.2);
            transform: scale(1.2); } }

@media (hover: hover), all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .c-popup__close:hover {
    /* 2 */
    -webkit-transform: scale(1.2);
            transform: scale(1.2); } }

@media (min-width: 800px) {
  .c-popup__close {
    position: absolute;
    top: 0; } }

.c-popup__appstore {
  padding-top: 15px; }

@media (min-width: 480px) {
  .c-popup__appstore {
    padding-top: calc(1.5625vw + 7.5px); } }

@media (min-width: 1440px) {
  .c-popup__appstore {
    padding-top: 30px; } }

@media (min-width: 1440px) {
  .c-popup__appstore {
    padding-top: 2.08333vw; } }

.c-popup__content {
  width: 486px;
  padding-bottom: 100px; }

@media (min-width: 1440px) {
  .c-popup__content {
    width: 33.75vw; } }

@media (min-width: 480px) {
  .c-popup__content {
    padding-bottom: calc(10.41667vw + 50px); } }

@media (min-width: 1440px) {
  .c-popup__content {
    padding-bottom: 200px; } }

@media (min-width: 1440px) {
  .c-popup__content {
    padding-bottom: 13.88889vw; } }

@media (max-width: 800px) {
  .c-popup__content {
    width: 100%; } }

.c-popup__title {
  padding-bottom: 20px; }

@media (min-width: 480px) {
  .c-popup__title {
    padding-bottom: calc(2.08333vw + 10px); } }

@media (min-width: 1440px) {
  .c-popup__title {
    padding-bottom: 40px; } }

@media (min-width: 1440px) {
  .c-popup__title {
    padding-bottom: 2.77778vw; } }

.c-popup__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

@media (max-width: 800px) {
  .c-popup__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; } }

.c-popup__image {
  padding-left: 120px;
  padding-bottom: 120px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-right: 4.16667vw; }

@media (min-width: 1440px) {
  .c-popup__image {
    padding-left: 8.33333vw; } }

@media (min-width: 1440px) {
  .c-popup__image {
    padding-bottom: 8.33333vw; } }

@media (max-width: 800px) {
  .c-popup__image {
    display: none; } }

.c-popup__image .c-media-wrapper {
  -webkit-transform: rotate(9.76deg);
          transform: rotate(9.76deg); }

.c-popup__sticky-container {
  position: absolute;
  height: 100%;
  width: 40px;
  right: 80px;
  top: 120px; }

@media (min-width: 1440px) {
  .c-popup__sticky-container {
    width: 2.77778vw; } }

@media (min-width: 1440px) {
  .c-popup__sticky-container {
    right: 5.55556vw; } }

@media (min-width: 1440px) {
  .c-popup__sticky-container {
    top: 8.33333vw; } }

@media (max-width: 800px) {
  .c-popup__sticky-container {
    top: 0;
    right: 10px; } }

.c-about-header {
  margin-top: -150px;
  position: relative;
  z-index: 10;
  overflow: visible; }

@media (min-width: 1440px) {
  .c-about-header {
    margin-top: -10.41667vw; } }

@media (max-width: 800px) {
  .c-about-header {
    margin-top: -50px; } }

@media (max-width: 800px) and (min-width: 1440px) {
  .c-about-header {
    margin-top: -3.47222vw; } }

.c-about-header__inner {
  width: 100%;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 100% auto;
  padding-left: 12.5%;
  padding-right: 12.5%; }

.c-about-header__poster {
  padding-bottom: 200px;
  -webkit-clip-path: polygon(4% 0, 96% 0, 100% 100%, 0 100%);
          clip-path: polygon(4% 0, 96% 0, 100% 100%, 0 100%);
  position: relative; }

@media (min-width: 1440px) {
  .c-about-header__poster {
    padding-bottom: 13.88889vw; } }

@media (max-width: 800px) {
  .c-about-header__poster {
    padding-bottom: 100px; } }

@media (max-width: 800px) and (min-width: 1440px) {
  .c-about-header__poster {
    padding-bottom: 6.94444vw; } }

.c-install-template {
  padding-top: 140px;
  padding-bottom: 80px; }

@media (min-width: 480px) {
  .c-install-template {
    padding-top: calc(11.45833vw + 85px); } }

@media (min-width: 1440px) {
  .c-install-template {
    padding-top: 250px; } }

@media (min-width: 1440px) {
  .c-install-template {
    padding-top: 17.36111vw; } }

@media (min-width: 480px) {
  .c-install-template {
    padding-bottom: calc(8.33333vw + 40px); } }

@media (min-width: 1440px) {
  .c-install-template {
    padding-bottom: 160px; } }

@media (min-width: 1440px) {
  .c-install-template {
    padding-bottom: 11.11111vw; } }

.c-install-template__row {
  padding-top: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }

@media (min-width: 480px) {
  .c-install-template__row {
    padding-top: calc(2.60417vw + 12.5px); } }

@media (min-width: 1440px) {
  .c-install-template__row {
    padding-top: 50px; } }

@media (min-width: 1440px) {
  .c-install-template__row {
    padding-top: 3.47222vw; } }

.c-install-template__description {
  width: 44.44444%; }

@media (max-width: 800px) {
  .c-install-template__description {
    padding-bottom: 80px;
    width: 100%; } }

@media (max-width: 800px) and (min-width: 480px) {
  .c-install-template__description {
    padding-bottom: calc(8.33333vw + 40px); } }

@media (max-width: 800px) and (min-width: 1440px) {
  .c-install-template__description {
    padding-bottom: 160px; } }

@media (max-width: 800px) and (min-width: 1440px) {
  .c-install-template__description {
    padding-bottom: 11.11111vw; } }

.c-install-template__txt {
  padding-top: 64px;
  padding-bottom: 25px; }

@media (min-width: 480px) {
  .c-install-template__txt {
    padding-top: calc(3.33333vw + 48px); } }

@media (min-width: 1440px) {
  .c-install-template__txt {
    padding-top: 96px; } }

@media (min-width: 1440px) {
  .c-install-template__txt {
    padding-top: 6.66667vw; } }

@media (min-width: 480px) {
  .c-install-template__txt {
    padding-bottom: calc(2.60417vw + 12.5px); } }

@media (min-width: 1440px) {
  .c-install-template__txt {
    padding-bottom: 50px; } }

@media (min-width: 1440px) {
  .c-install-template__txt {
    padding-bottom: 3.47222vw; } }

@media (max-width: 800px) {
  .c-install-template__txt {
    padding-top: 0; } }

.c-install-template__image-col {
  padding-top: 15px;
  width: 38.88889%;
  position: relative;
  z-index: 1; }

@media (min-width: 480px) {
  .c-install-template__image-col {
    padding-top: calc(1.5625vw + 7.5px); } }

@media (min-width: 1440px) {
  .c-install-template__image-col {
    padding-top: 30px; } }

@media (min-width: 1440px) {
  .c-install-template__image-col {
    padding-top: 2.08333vw; } }

@media (max-width: 800px) {
  .c-install-template__image-col {
    width: 100%; } }

.c-install-template__image-col .u-icon {
  -webkit-transform: translateY(-20%);
          transform: translateY(-20%);
  top: 0;
  width: 100%;
  height: auto;
  position: absolute;
  left: 0;
  z-index: -1; }

@media (max-width: 800px) {
  .c-install-template__image-col .u-icon {
    -webkit-transform: translateY(-10%);
            transform: translateY(-10%); } }

.c-install-template__image {
  width: 100%; }

.c-install-template .c-parallax-graphic--diamond {
  top: 50%;
  left: 6.25vw; }

.c-install-template .c-parallax-graphic--circle {
  top: 15%;
  right: 40%; }

.c-install-template .c-parallax-graphic--circle .u-icon__background {
  color: transparent;
  fill: transparent; }

.c-install-template .c-parallax-graphic--pyramid {
  bottom: 0;
  right: 3.47222vw; }

.c-install-template .c-parallax-graphic--pyramid .u-icon__background {
  color: #ff85b0;
  fill: #ff85b0; }

/**
 * Modules
 */
.c-teachers-hero {
  height: 92vh;
  background-color: #fed601;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative; }

.c-teachers-hero__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }

.c-teachers-hero__heading {
  width: 70%;
  margin-bottom: 20px; }

@media (min-width: 480px) {
  .c-teachers-hero__heading {
    margin-bottom: calc(2.08333vw + 10px); } }

@media (min-width: 1440px) {
  .c-teachers-hero__heading {
    margin-bottom: 40px; } }

@media (min-width: 1440px) {
  .c-teachers-hero__heading {
    margin-bottom: 2.77778vw; } }

.c-teachers-hero .image {
  position: absolute;
  left: 0;
  top: 15%;
  width: 20vw; }

.c-teachers-hero .u-shape-1 {
  top: -1%;
  left: 25%; }

.c-teachers-hero .u-shape-2 {
  right: 14%;
  top: 15%;
  width: 10px; }

@media (min-width: 480px) {
  .c-teachers-hero .u-shape-2 {
    width: calc(1.04167vw + 5px); } }

@media (min-width: 1440px) {
  .c-teachers-hero .u-shape-2 {
    width: 20px; } }

@media (min-width: 1440px) {
  .c-teachers-hero .u-shape-2 {
    width: 1.38889vw; } }

.c-teachers-hero .u-shape-3 {
  bottom: 42%;
  left: 10%; }

.c-teachers-hero .u-shape-4 {
  width: 20px;
  -webkit-transform: rotate(40deg);
          transform: rotate(40deg);
  bottom: 15%;
  left: 25%; }

@media (min-width: 480px) {
  .c-teachers-hero .u-shape-4 {
    width: calc(2.08333vw + 10px); } }

@media (min-width: 1440px) {
  .c-teachers-hero .u-shape-4 {
    width: 40px; } }

@media (min-width: 1440px) {
  .c-teachers-hero .u-shape-4 {
    width: 2.77778vw; } }

.c-teachers-hero .u-shape-5 {
  left: 55%;
  bottom: 12%; }

.c-teachers-hero .u-shape-6 {
  width: 20px;
  left: 75%;
  bottom: -2vw;
  z-index: 99; }

@media (min-width: 480px) {
  .c-teachers-hero .u-shape-6 {
    width: calc(2.08333vw + 10px); } }

@media (min-width: 1440px) {
  .c-teachers-hero .u-shape-6 {
    width: 40px; } }

@media (min-width: 1440px) {
  .c-teachers-hero .u-shape-6 {
    width: 2.77778vw; } }

.c-teachers-learning {
  position: relative;
  overflow: hidden; }

.c-teachers-learning__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 100px; }

@media (min-width: 480px) {
  .c-teachers-learning__inner {
    padding-top: calc(10.41667vw + 50px); } }

@media (min-width: 1440px) {
  .c-teachers-learning__inner {
    padding-top: 200px; } }

@media (min-width: 1440px) {
  .c-teachers-learning__inner {
    padding-top: 13.88889vw; } }

.c-teachers-learning__header {
  width: 40%;
  margin-bottom: 20px; }

@media (min-width: 480px) {
  .c-teachers-learning__header {
    margin-bottom: calc(2.08333vw + 10px); } }

@media (min-width: 1440px) {
  .c-teachers-learning__header {
    margin-bottom: 40px; } }

@media (min-width: 1440px) {
  .c-teachers-learning__header {
    margin-bottom: 2.77778vw; } }

@media (max-width: 800px) {
  .c-teachers-learning__header {
    width: 100%; } }

.c-teachers-learning__heading {
  margin-bottom: 20px; }

@media (min-width: 480px) {
  .c-teachers-learning__heading {
    margin-bottom: calc(2.08333vw + 10px); } }

@media (min-width: 1440px) {
  .c-teachers-learning__heading {
    margin-bottom: 40px; } }

@media (min-width: 1440px) {
  .c-teachers-learning__heading {
    margin-bottom: 2.77778vw; } }

.c-teachers-learning__features {
  -ms-flex-item-align: end;
      align-self: flex-end;
  margin-bottom: 112px; }

@media (min-width: 1440px) {
  .c-teachers-learning__features {
    margin-bottom: 7.77778vw; } }

@media (max-width: 800px) {
  .c-teachers-learning__features {
    -ms-flex-item-align: start;
        align-self: flex-start; } }

.c-teachers-learning__features-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }

.c-teachers-learning__features-item:not(:last-child) {
  margin-bottom: 5px; }

@media (min-width: 480px) {
  .c-teachers-learning__features-item:not(:last-child) {
    margin-bottom: calc(0.52083vw + 2.5px); } }

@media (min-width: 1440px) {
  .c-teachers-learning__features-item:not(:last-child) {
    margin-bottom: 10px; } }

@media (min-width: 1440px) {
  .c-teachers-learning__features-item:not(:last-child) {
    margin-bottom: 0.69444vw; } }

.c-teachers-learning__features-item img {
  margin-right: 15px;
  width: 10px; }

@media (min-width: 480px) {
  .c-teachers-learning__features-item img {
    margin-right: calc(1.5625vw + 7.5px); } }

@media (min-width: 1440px) {
  .c-teachers-learning__features-item img {
    margin-right: 30px; } }

@media (min-width: 1440px) {
  .c-teachers-learning__features-item img {
    margin-right: 2.08333vw; } }

@media (min-width: 480px) {
  .c-teachers-learning__features-item img {
    width: calc(1.04167vw + 5px); } }

@media (min-width: 1440px) {
  .c-teachers-learning__features-item img {
    width: 20px; } }

@media (min-width: 1440px) {
  .c-teachers-learning__features-item img {
    width: 1.38889vw; } }

.c-teachers-learning__video {
  width: 68%;
  position: relative;
  margin-bottom: 80px; }

@media (min-width: 1440px) {
  .c-teachers-learning__video {
    margin-bottom: 5.55556vw; } }

@media (max-width: 800px) {
  .c-teachers-learning__video {
    width: 100%; } }

.c-teachers-learning__video-playbtn {
  position: absolute;
  left: 70%;
  top: 20%;
  background-color: #fed601;
  border-radius: 100%;
  z-index: 99;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  --btnSize: 6vw;
  width: var(--btnSize);
  height: var(--btnSize); }

@media (max-width: 800px) {
  .c-teachers-learning__video-playbtn {
    --btnSize: 10vw; } }

.c-teachers-learning__video-playbtn::after {
  content: "";
  position: absolute;
  left: -3.5%;
  top: 3.5%;
  width: 100%;
  height: 100%;
  border-width: 2px;
  border-style: solid;
  border-radius: 100%;
  border-color: #000000;
  z-index: 100; }

@media (min-width: 1440px) {
  .c-teachers-learning__video-playbtn::after {
    border-width: 0.13889vw; } }

.c-teachers-learning__video-playbtn img {
  width: 24%; }

.c-teachers-learning__video-thumbnail {
  margin-bottom: 10px;
  position: relative; }

@media (min-width: 480px) {
  .c-teachers-learning__video-thumbnail {
    margin-bottom: calc(1.04167vw + 5px); } }

@media (min-width: 1440px) {
  .c-teachers-learning__video-thumbnail {
    margin-bottom: 20px; } }

@media (min-width: 1440px) {
  .c-teachers-learning__video-thumbnail {
    margin-bottom: 1.38889vw; } }

.c-teachers-learning__video-visual {
  position: absolute;
  z-index: -1;
  width: 30vw; }

.c-teachers-learning__video-visual:nth-child(1) {
  left: -10%;
  top: -32%; }

.c-teachers-learning__video-visual:nth-child(2) {
  right: -20%;
  bottom: -34%; }

.c-teachers-learning .u-shape-1 {
  right: 32%;
  top: 10%; }

.c-teachers-learning .u-shape-2 {
  right: 10%;
  top: 15%; }

.c-teachers-learning .u-shape-3 {
  bottom: 50%;
  left: 5%; }

@media (max-width: 480px) {
  .c-teachers-learning .u-shape-3 {
    bottom: 48%; } }

.c-teachers-learning .u-shape-4 {
  bottom: 10%;
  right: 12%; }

.c-teachers-quote {
  background-color: #f8f8f8;
  position: relative; }

.c-teachers-quote .u-shape-1 {
  top: 10%;
  left: 15%;
  width: 1.75vw; }

.c-teachers-quote .u-shape-2 {
  top: 5%;
  right: 10%; }

.c-teachers-quote .u-shape-3 {
  bottom: 10%;
  left: 5%;
  width: 3vw; }

.c-teachers-quote .u-shape-4 {
  bottom: 20%;
  right: 10%; }

.c-teachers-quote::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: white;
  width: 100%;
  height: 15px;
  -webkit-clip-path: polygon(100% 0, 0 0, 0 100%);
          clip-path: polygon(100% 0, 0 0, 0 100%); }

@media (min-width: 480px) {
  .c-teachers-quote::before {
    height: calc(1.5625vw + 7.5px); } }

@media (min-width: 1440px) {
  .c-teachers-quote::before {
    height: 30px; } }

@media (min-width: 1440px) {
  .c-teachers-quote::before {
    height: 2.08333vw; } }

.c-teachers-quote__inner {
  padding: 24vh 0; }

.c-teachers-quote__heading {
  margin-bottom: 20px; }

@media (min-width: 480px) {
  .c-teachers-quote__heading {
    margin-bottom: calc(2.08333vw + 10px); } }

@media (min-width: 1440px) {
  .c-teachers-quote__heading {
    margin-bottom: 40px; } }

@media (min-width: 1440px) {
  .c-teachers-quote__heading {
    margin-bottom: 2.77778vw; } }

.c-teachers-best-practices {
  position: relative; }

.c-teachers-best-practices__inner {
  display: grid;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 16vw 0;
  grid-gap: 1.5vw;
  grid-template-columns: repeat(12, 1fr); }

@media (max-width: 1140px) {
  .c-teachers-best-practices__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 32vw 0; } }

.c-teachers-best-practices__content {
  grid-column: span 5; }

@media (max-width: 1140px) {
  .c-teachers-best-practices__content {
    margin-bottom: 30px; } }

@media (max-width: 1140px) and (min-width: 480px) {
  .c-teachers-best-practices__content {
    margin-bottom: calc(3.125vw + 15px); } }

@media (max-width: 1140px) and (min-width: 1440px) {
  .c-teachers-best-practices__content {
    margin-bottom: 60px; } }

@media (max-width: 1140px) and (min-width: 1440px) {
  .c-teachers-best-practices__content {
    margin-bottom: 4.16667vw; } }

.c-teachers-best-practices__content *:not(:last-child) {
  margin-bottom: 15px; }

@media (min-width: 480px) {
  .c-teachers-best-practices__content *:not(:last-child) {
    margin-bottom: calc(1.5625vw + 7.5px); } }

@media (min-width: 1440px) {
  .c-teachers-best-practices__content *:not(:last-child) {
    margin-bottom: 30px; } }

@media (min-width: 1440px) {
  .c-teachers-best-practices__content *:not(:last-child) {
    margin-bottom: 2.08333vw; } }

@media (max-width: 800px) {
  .c-teachers-best-practices__content *:not(:last-child) {
    margin-bottom: 30px; } }

@media (max-width: 800px) and (min-width: 480px) {
  .c-teachers-best-practices__content *:not(:last-child) {
    margin-bottom: calc(3.125vw + 15px); } }

@media (max-width: 800px) and (min-width: 1440px) {
  .c-teachers-best-practices__content *:not(:last-child) {
    margin-bottom: 60px; } }

@media (max-width: 800px) and (min-width: 1440px) {
  .c-teachers-best-practices__content *:not(:last-child) {
    margin-bottom: 4.16667vw; } }

.c-teachers-best-practices__heading {
  margin-bottom: 30px; }

@media (min-width: 480px) {
  .c-teachers-best-practices__heading {
    margin-bottom: calc(3.125vw + 15px); } }

@media (min-width: 1440px) {
  .c-teachers-best-practices__heading {
    margin-bottom: 60px; } }

@media (min-width: 1440px) {
  .c-teachers-best-practices__heading {
    margin-bottom: 4.16667vw; } }

.c-teachers-best-practices__cta {
  grid-column: 7 / 13;
  align-self: flex-end;
  margin-bottom: -144px; }

@media (min-width: 1440px) {
  .c-teachers-best-practices__cta {
    margin-bottom: -10vw; } }

@media (max-width: 1140px) {
  .c-teachers-best-practices__cta {
    margin-bottom: 0px;
    -ms-flex-item-align: start;
        align-self: flex-start; } }

@media (max-width: 1140px) and (min-width: 1440px) {
  .c-teachers-best-practices__cta {
    margin-bottom: 0vw; } }

.c-teachers-best-practices__cta img {
  margin-bottom: 30px; }

@media (min-width: 480px) {
  .c-teachers-best-practices__cta img {
    margin-bottom: calc(3.125vw + 15px); } }

@media (min-width: 1440px) {
  .c-teachers-best-practices__cta img {
    margin-bottom: 60px; } }

@media (min-width: 1440px) {
  .c-teachers-best-practices__cta img {
    margin-bottom: 4.16667vw; } }

.c-teachers-best-practices__cta-info a {
  color: #bf0c34; }

.c-teachers-best-practices .u-shape-1 {
  top: 6vw;
  right: 14vw;
  width: 96px; }

@media (min-width: 1440px) {
  .c-teachers-best-practices .u-shape-1 {
    width: 6.66667vw; } }

.c-teachers-best-practices .u-shape-2 {
  top: 5vw;
  right: 12vw;
  -webkit-transform: rotate(80deg);
          transform: rotate(80deg);
  width: 25px; }

@media (min-width: 480px) {
  .c-teachers-best-practices .u-shape-2 {
    width: calc(2.60417vw + 12.5px); } }

@media (min-width: 1440px) {
  .c-teachers-best-practices .u-shape-2 {
    width: 50px; } }

@media (min-width: 1440px) {
  .c-teachers-best-practices .u-shape-2 {
    width: 3.47222vw; } }

.c-teachers-best-practices .u-shape-3 {
  top: 30vw;
  right: 40vw; }

@media (max-width: 800px) {
  .c-teachers-best-practices .u-shape-3 {
    right: 70vw;
    top: 20vw; } }

.c-teachers-best-practices .u-shape-4 {
  top: 38vw;
  right: 36vw; }

@media (max-width: 800px) {
  .c-teachers-best-practices .u-shape-4 {
    right: 74vw;
    top: 15vw; } }

.c-teachers-best-practices .u-shape-5 {
  bottom: 6vw;
  left: 10vw; }

.c-teachers-best-practices .u-shape-6 {
  bottom: 4vw;
  left: 40vw; }

.c-teachers-start-now {
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
  overflow: hidden; }

@media (min-width: 480px) {
  .c-teachers-start-now {
    padding-top: calc(10.41667vw + 50px); } }

@media (min-width: 1440px) {
  .c-teachers-start-now {
    padding-top: 200px; } }

@media (min-width: 1440px) {
  .c-teachers-start-now {
    padding-top: 13.88889vw; } }

@media (min-width: 480px) {
  .c-teachers-start-now {
    padding-bottom: calc(10.41667vw + 50px); } }

@media (min-width: 1440px) {
  .c-teachers-start-now {
    padding-bottom: 200px; } }

@media (min-width: 1440px) {
  .c-teachers-start-now {
    padding-bottom: 13.88889vw; } }

.c-teachers-start-now__heading {
  margin-bottom: 15px; }

@media (min-width: 480px) {
  .c-teachers-start-now__heading {
    margin-bottom: calc(1.5625vw + 7.5px); } }

@media (min-width: 1440px) {
  .c-teachers-start-now__heading {
    margin-bottom: 30px; } }

@media (min-width: 1440px) {
  .c-teachers-start-now__heading {
    margin-bottom: 2.08333vw; } }

.c-teachers-start-now__subheading {
  margin-bottom: 25px; }

@media (min-width: 480px) {
  .c-teachers-start-now__subheading {
    margin-bottom: calc(2.60417vw + 12.5px); } }

@media (min-width: 1440px) {
  .c-teachers-start-now__subheading {
    margin-bottom: 50px; } }

@media (min-width: 1440px) {
  .c-teachers-start-now__subheading {
    margin-bottom: 3.47222vw; } }

.c-teachers-start-now__visual {
  position: absolute;
  width: 27vw;
  z-index: 1; }

.c-teachers-start-now__visual.left {
  bottom: 0;
  left: 0;
  -webkit-transform: translate(-40%, 30%) rotate(35deg);
          transform: translate(-40%, 30%) rotate(35deg); }

.c-teachers-start-now__visual.right {
  width: 20vw;
  top: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%); }

.c-teachers-start-now .c-parallax-graphic--cup {
  top: 6vw;
  left: 14vw; }

@media (max-width: 480px) {
  .c-teachers-start-now .c-parallax-graphic--cup {
    top: 10vw; } }

.c-teachers-start-now .c-parallax-graphic--root {
  top: 6vw;
  left: 28vw; }

@media (max-width: 800px) {
  .c-teachers-start-now .c-parallax-graphic--root {
    top: 12vw; } }

@media (max-width: 480px) {
  .c-teachers-start-now .c-parallax-graphic--root {
    top: 18vw; } }

.c-teachers-start-now .c-parallax-graphic--curvy-line {
  bottom: 10vw;
  right: 18vw; }

.c-teachers-printables {
  color: #ffffff;
  position: relative; }

.c-teachers-printables__inner {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 1.5vw;
  padding-top: 80px;
  padding-bottom: 80px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }

@media (min-width: 480px) {
  .c-teachers-printables__inner {
    padding-top: calc(8.33333vw + 40px); } }

@media (min-width: 1440px) {
  .c-teachers-printables__inner {
    padding-top: 160px; } }

@media (min-width: 1440px) {
  .c-teachers-printables__inner {
    padding-top: 11.11111vw; } }

@media (min-width: 480px) {
  .c-teachers-printables__inner {
    padding-bottom: calc(8.33333vw + 40px); } }

@media (min-width: 1440px) {
  .c-teachers-printables__inner {
    padding-bottom: 160px; } }

@media (min-width: 1440px) {
  .c-teachers-printables__inner {
    padding-bottom: 11.11111vw; } }

@media (max-width: 800px) {
  .c-teachers-printables__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; } }

.c-teachers-printables__content {
  grid-column: span 5; }

@media (max-width: 800px) {
  .c-teachers-printables__content {
    margin-bottom: 30px; } }

@media (max-width: 800px) and (min-width: 480px) {
  .c-teachers-printables__content {
    margin-bottom: calc(3.125vw + 15px); } }

@media (max-width: 800px) and (min-width: 1440px) {
  .c-teachers-printables__content {
    margin-bottom: 60px; } }

@media (max-width: 800px) and (min-width: 1440px) {
  .c-teachers-printables__content {
    margin-bottom: 4.16667vw; } }

.c-teachers-printables__heading {
  margin-bottom: 20px; }

@media (min-width: 480px) {
  .c-teachers-printables__heading {
    margin-bottom: calc(2.08333vw + 10px); } }

@media (min-width: 1440px) {
  .c-teachers-printables__heading {
    margin-bottom: 40px; } }

@media (min-width: 1440px) {
  .c-teachers-printables__heading {
    margin-bottom: 2.77778vw; } }

.c-teachers-printables__desc {
  margin-bottom: 20px; }

@media (min-width: 480px) {
  .c-teachers-printables__desc {
    margin-bottom: calc(2.08333vw + 10px); } }

@media (min-width: 1440px) {
  .c-teachers-printables__desc {
    margin-bottom: 40px; } }

@media (min-width: 1440px) {
  .c-teachers-printables__desc {
    margin-bottom: 2.77778vw; } }

.c-teachers-printables__visuals {
  grid-column: 7 / 13;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }

.c-teachers-printables__image {
  -ms-flex-item-align: end;
      align-self: flex-end;
  width: 100%; }

.c-teachers-printables__image .u-ar-custom {
  padding-bottom: 88.29787%; }

@media (max-width: 800px) {
  .c-teachers-printables__image {
    -ms-flex-item-align: start;
        align-self: flex-start;
    max-width: 60vw; } }

.c-teachers-printables .c-parallax-graphic--triangle-area {
  top: 8vw;
  right: 20vw;
  -webkit-transform: scale(0.5);
          transform: scale(0.5); }

.c-teachers-printables .c-parallax-graphic--root {
  bottom: 20vw;
  left: 4vw; }

.c-teachers-printables .c-parallax-graphic--cup {
  bottom: 5vw;
  left: 40vw;
  width: 10px; }

@media (min-width: 480px) {
  .c-teachers-printables .c-parallax-graphic--cup {
    width: calc(1.04167vw + 5px); } }

@media (min-width: 1440px) {
  .c-teachers-printables .c-parallax-graphic--cup {
    width: 20px; } }

@media (min-width: 1440px) {
  .c-teachers-printables .c-parallax-graphic--cup {
    width: 1.38889vw; } }

.c-home-header {
  padding-top: 140px;
  position: relative; }

@media (min-width: 480px) {
  .c-home-header {
    padding-top: calc(11.45833vw + 85px); } }

@media (min-width: 1440px) {
  .c-home-header {
    padding-top: 250px; } }

@media (min-width: 1440px) {
  .c-home-header {
    padding-top: 17.36111vw; } }

.c-home-header__eyebrow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-left: auto;
  margin-right: auto; }

.c-home-header__eyebrow p {
  margin-right: 0.3em; }

@media (max-width: 800px) {
  .c-home-header__eyebrow {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center; } }

.c-home-header__eyebrow-inner {
  height: 1.3em;
  max-height: 1.3em;
  overflow: hidden;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1; }

.c-home-header__eyebrow-list {
  position: relative; }

.c-home-header__eyebrow-container {
  padding-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

@media (min-width: 480px) {
  .c-home-header__eyebrow-container {
    padding-bottom: calc(2.08333vw + 10px); } }

@media (min-width: 1440px) {
  .c-home-header__eyebrow-container {
    padding-bottom: 40px; } }

@media (min-width: 1440px) {
  .c-home-header__eyebrow-container {
    padding-bottom: 2.77778vw; } }

.c-home-header__title-underline {
  -webkit-transform-origin: left;
          transform-origin: left;
  position: absolute;
  top: -22.42991%;
  left: 0;
  width: 100%;
  height: 130.84112%;
  z-index: 0;
  color: #fed601; }

.c-home-header__title-underline span {
  display: block;
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 101%;
  background-color: #f8f8f8;
  -webkit-transform-origin: right;
          transform-origin: right;
  border: 1px solid #f8f8f8; }

.c-home-header__title {
  margin-bottom: 25px;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  text-align: center; }

@media (min-width: 480px) {
  .c-home-header__title {
    margin-bottom: calc(2.60417vw + 12.5px); } }

@media (min-width: 1440px) {
  .c-home-header__title {
    margin-bottom: 50px; } }

@media (min-width: 1440px) {
  .c-home-header__title {
    margin-bottom: 3.47222vw; } }

.c-home-header__title span {
  position: relative;
  z-index: 1; }

.c-home-header__title .u-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.c-home-header__download {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }

.c-home-header__slider {
  padding-bottom: 30px;
  position: relative; }

@media (min-width: 480px) {
  .c-home-header__slider {
    padding-bottom: calc(3.125vw + 15px); } }

@media (min-width: 1440px) {
  .c-home-header__slider {
    padding-bottom: 60px; } }

@media (min-width: 1440px) {
  .c-home-header__slider {
    padding-bottom: 4.16667vw; } }

@media (max-width: 800px) {
  .c-home-header__slider {
    cursor: auto; } }

.c-home-header__slider .c-parallax-graphic--cube {
  top: 0;
  right: 20.83333%; }

.c-home-header__slider .c-parallax-graphic--cube .u-icon__background {
  display: none; }

.c-home-header__slider .c-parallax-graphic--triangle-area {
  left: 10%;
  bottom: 18.61111vw; }

.c-home-header__slider .c-parallax-graphic--diamond {
  left: 41.66667%;
  bottom: 4.58333vw; }

.c-home-header__slider .c-parallax-graphic--fraction {
  right: 10.41667%;
  top: 22.63889vw; }

.c-home-header__slider .c-parallax-graphic--root {
  right: 16.66667%;
  bottom: 8.47222vw; }

.c-home-header .c-parallax-graphic--cup {
  top: 0;
  left: 29.16667%;
  -webkit-transform: translateY(-40%);
          transform: translateY(-40%); }

@media (max-width: 800px) {
  .c-home-header .c-parallax-graphic--cup {
    display: none; } }

.c-home-header .c-parallax-graphic--triangle-angles {
  right: 29.16667%;
  top: 128px; }

@media (min-width: 1440px) {
  .c-home-header .c-parallax-graphic--triangle-angles {
    top: 8.88889vw; } }

@media (max-width: 480px) {
  .c-home-header .c-parallax-graphic--triangle-angles {
    right: 12.5%; } }

.c-home-header .c-parallax-graphic--triangle-area-orange {
  right: 6.25%;
  top: 15.48611vw; }

.c-home-header .c-parallax-graphic--cone {
  left: 6.25%;
  top: 32.70833vw; }

.c-home-header .c-parallax-graphic--cone .u-icon__background {
  color: #fed601;
  fill: #fed601; }

.c-home-header-slide {
  padding-top: 164px;
  padding-bottom: 100px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative; }

@media (min-width: 1440px) {
  .c-home-header-slide {
    padding-top: 11.38889vw; } }

@media (min-width: 480px) {
  .c-home-header-slide {
    padding-bottom: calc(10.41667vw + 50px); } }

@media (min-width: 1440px) {
  .c-home-header-slide {
    padding-bottom: 200px; } }

@media (min-width: 1440px) {
  .c-home-header-slide {
    padding-bottom: 13.88889vw; } }

.c-home-header-slide__phone {
  width: 280px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  max-width: 30%; }

@media (min-width: 1440px) {
  .c-home-header-slide__phone {
    width: 19.44444vw; } }

@media (max-width: 800px) {
  .c-home-header-slide__phone {
    margin-left: 20.83333%; } }

@media (max-width: 480px) {
  .c-home-header-slide__phone {
    max-width: 40%;
    margin-left: 8.33333%; } }

.c-home-header-slide__phone-inner {
  border-radius: 34px;
  border-width: 5px;
  position: relative;
  padding-bottom: 211.78571%;
  border-style: solid;
  border-color: #000000;
  overflow: hidden; }

@media (min-width: 1440px) {
  .c-home-header-slide__phone-inner {
    border-radius: 2.36111vw; } }

@media (min-width: 1440px) {
  .c-home-header-slide__phone-inner {
    border-width: 0.34722vw; } }

@media (max-width: 800px) {
  .c-home-header-slide__phone-inner {
    border-radius: 25px; } }

.c-home-header-slide__phone-inner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover; }

.c-home-header-slide__content {
  width: 210px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%); }

@media (min-width: 1440px) {
  .c-home-header-slide__content {
    width: 14.58333vw; } }

.c-home-header-slide__content h4 {
  padding-bottom: 5px;
  opacity: 0;
  -webkit-transition: opacity 0.5s 0.2s;
  transition: opacity 0.5s 0.2s; }

@media (min-width: 1440px) {
  .c-home-header-slide__content h4 {
    padding-bottom: 0.34722vw; } }

.swiper-slide-active .c-home-header-slide__content h4 {
  opacity: 1; }

.c-home-header-slide__content p {
  opacity: 0;
  -webkit-transition: opacity 0.5s 0.25s;
  transition: opacity 0.5s 0.25s; }

.swiper-slide-active .c-home-header-slide__content p {
  opacity: 1; }

.c-home-header-slide__content .u-icon {
  opacity: 0;
  -webkit-transition: opacity 1s 0.3s;
  transition: opacity 1s 0.3s; }

.swiper-slide-active .c-home-header-slide__content .u-icon {
  opacity: 1; }

.c-home-header-slide__content--left {
  right: 100%;
  padding-right: 6.94444vw; }

@media (max-width: 800px) {
  .c-home-header-slide__content--left {
    right: unset;
    left: 100%;
    padding-right: 0;
    padding-left: 6.94444vw; } }

@media (max-width: 480px) {
  .c-home-header-slide__content--left {
    padding-left: 10vw; } }

.c-home-header-slide__content--left h4 {
  color: #0551d8; }

.c-home-header-slide__content--left .u-icon {
  margin-top: 15px;
  width: 80%;
  display: block;
  margin-left: auto; }

@media (min-width: 480px) {
  .c-home-header-slide__content--left .u-icon {
    margin-top: calc(1.5625vw + 7.5px); } }

@media (min-width: 1440px) {
  .c-home-header-slide__content--left .u-icon {
    margin-top: 30px; } }

@media (min-width: 1440px) {
  .c-home-header-slide__content--left .u-icon {
    margin-top: 2.08333vw; } }

@media (max-width: 800px) {
  .c-home-header-slide__content--left .u-icon {
    width: 50%;
    margin-left: -20%;
    -webkit-transform: scaleX(-1);
            transform: scaleX(-1); } }

.c-home-header-slide__content--right-1 {
  width: 383px;
  left: 100%;
  top: 60%;
  padding-left: 6.94444vw; }

@media (min-width: 1440px) {
  .c-home-header-slide__content--right-1 {
    width: 26.59722vw; } }

@media (max-width: 1140px) {
  .c-home-header-slide__content--right-1 {
    width: 240px; } }

@media (max-width: 480px) {
  .c-home-header-slide__content--right-1 {
    width: 50vw; } }

.c-home-header-slide__content--right-1 h4 {
  color: #ff6230; }

.c-home-header-slide__content--right-1 .u-icon {
  position: absolute;
  left: 2.29167vw;
  bottom: 100%;
  width: 88px; }

@media (min-width: 1440px) {
  .c-home-header-slide__content--right-1 .u-icon {
    width: 6.11111vw; } }

@media (max-width: 480px) {
  .c-home-header-slide__content--right-1 .u-icon {
    width: 30%; } }

.c-home-header-slide__content--right-2 {
  width: 383px;
  left: 100%;
  padding-left: 6.94444vw;
  top: 45%; }

@media (min-width: 1440px) {
  .c-home-header-slide__content--right-2 {
    width: 26.59722vw; } }

@media (max-width: 1140px) {
  .c-home-header-slide__content--right-2 {
    width: 240px; } }

@media (max-width: 480px) {
  .c-home-header-slide__content--right-2 {
    width: 50vw;
    top: 35%; } }

.c-home-header-slide__content--right-2 h4 {
  color: #0551d8; }

.c-home-header-slide__content--right-2 .u-icon {
  width: 88px;
  position: absolute;
  left: 2.29167vw;
  top: 100%; }

@media (min-width: 1440px) {
  .c-home-header-slide__content--right-2 .u-icon {
    width: 6.11111vw; } }

@media (max-width: 480px) {
  .c-home-header-slide__content--right-2 .u-icon {
    width: 30%; } }

.c-home-header-slide__content--right-3 {
  width: 383px;
  left: 100%;
  padding-left: 6.94444vw;
  -webkit-transform: translate(0);
          transform: translate(0);
  top: unset;
  bottom: 25%; }

@media (min-width: 1440px) {
  .c-home-header-slide__content--right-3 {
    width: 26.59722vw; } }

@media (max-width: 1140px) {
  .c-home-header-slide__content--right-3 {
    width: 240px; } }

@media (max-width: 480px) {
  .c-home-header-slide__content--right-3 {
    width: 50vw;
    bottom: 40%; } }

.c-home-header-slide__content--right-3 h4 {
  color: #ff85b0; }

.c-home-header-slide__content--right-3 .u-icon {
  width: 88px;
  position: absolute;
  left: 2.29167vw;
  top: 100%; }

@media (min-width: 1440px) {
  .c-home-header-slide__content--right-3 .u-icon {
    width: 6.11111vw; } }

@media (max-width: 480px) {
  .c-home-header-slide__content--right-3 .u-icon {
    width: 30%; } }

.c-two-column-section {
  padding-top: 80px;
  position: relative; }

@media (min-width: 480px) {
  .c-two-column-section {
    padding-top: calc(8.33333vw + 40px); } }

@media (min-width: 1440px) {
  .c-two-column-section {
    padding-top: 160px; } }

@media (min-width: 1440px) {
  .c-two-column-section {
    padding-top: 11.11111vw; } }

.c-two-column-section__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

@media (max-width: 800px) {
  .c-two-column-section__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; } }

@media (max-width: 800px) {
  .c-two-column-section__row--md-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse; } }

.c-two-column-section__col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 50%; }

.c-two-column-section__col--with-padding {
  padding-left: 11.11111%; }

@media (max-width: 800px) {
  .c-two-column-section__col--with-padding {
    padding-left: 0; } }

.c-two-column-section__col--justify-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end; }

@media (max-width: 800px) {
  .c-two-column-section__col {
    width: 100%; } }

.c-two-column-section__col--center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }

.c-two-column-section__content {
  padding-bottom: 30px;
  width: 100%; }

@media (min-width: 480px) {
  .c-two-column-section__content {
    padding-bottom: calc(3.125vw + 15px); } }

@media (min-width: 1440px) {
  .c-two-column-section__content {
    padding-bottom: 60px; } }

@media (min-width: 1440px) {
  .c-two-column-section__content {
    padding-bottom: 4.16667vw; } }

.c-two-column-section__bottom-graphic {
  padding-top: 30px;
  width: 100%; }

@media (min-width: 480px) {
  .c-two-column-section__bottom-graphic {
    padding-top: calc(3.125vw + 15px); } }

@media (min-width: 1440px) {
  .c-two-column-section__bottom-graphic {
    padding-top: 60px; } }

@media (min-width: 1440px) {
  .c-two-column-section__bottom-graphic {
    padding-top: 4.16667vw; } }

@media (max-width: 800px) {
  .c-two-column-section__bottom-graphic {
    padding-bottom: 30px; } }

@media (max-width: 800px) and (min-width: 480px) {
  .c-two-column-section__bottom-graphic {
    padding-bottom: calc(3.125vw + 15px); } }

@media (max-width: 800px) and (min-width: 1440px) {
  .c-two-column-section__bottom-graphic {
    padding-bottom: 60px; } }

@media (max-width: 800px) and (min-width: 1440px) {
  .c-two-column-section__bottom-graphic {
    padding-bottom: 4.16667vw; } }

.c-two-column-section__bottom-graphic svg,
.c-two-column-section__bottom-graphic .u-icon {
  width: 100%;
  height: auto; }

@media (max-width: 800px) {
  .c-two-column-section__bottom-graphic svg,
  .c-two-column-section__bottom-graphic .u-icon {
    max-width: 30vw; } }

.c-two-column-section__bottom-graphic--right {
  margin-left: auto; }

@media (max-width: 800px) {
  .c-two-column-section__bottom-graphic--feedback {
    padding-bottom: 15px;
    padding-top: 15px; } }

@media (max-width: 800px) and (min-width: 480px) {
  .c-two-column-section__bottom-graphic--feedback {
    padding-bottom: calc(1.5625vw + 7.5px); } }

@media (max-width: 800px) and (min-width: 1440px) {
  .c-two-column-section__bottom-graphic--feedback {
    padding-bottom: 30px; } }

@media (max-width: 800px) and (min-width: 1440px) {
  .c-two-column-section__bottom-graphic--feedback {
    padding-bottom: 2.08333vw; } }

@media (max-width: 800px) and (min-width: 480px) {
  .c-two-column-section__bottom-graphic--feedback {
    padding-top: calc(1.5625vw + 7.5px); } }

@media (max-width: 800px) and (min-width: 1440px) {
  .c-two-column-section__bottom-graphic--feedback {
    padding-top: 30px; } }

@media (max-width: 800px) and (min-width: 1440px) {
  .c-two-column-section__bottom-graphic--feedback {
    padding-top: 2.08333vw; } }

@media (max-width: 800px) and (max-width: 800px) {
  .c-two-column-section__bottom-graphic--feedback svg,
  .c-two-column-section__bottom-graphic--feedback .u-icon {
    max-width: 400px;
    width: 100%; } }

.c-two-column-section__image {
  width: 100%;
  margin-top: auto;
  position: relative; }

.c-two-column-section__image .u-icon {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  -webkit-transform: translateY(-30%);
          transform: translateY(-30%); }

@media (max-width: 800px) {
  .c-two-column-section__image {
    max-width: 50vw; } }

.c-two-column-section__image .u-ar-custom {
  padding-bottom: 87.34835%; }

.c-two-column-section__numbers {
  width: 100%;
  padding-left: 22.22222%; }

.c-two-column-section__graphic-description {
  padding-left: 30px;
  padding-top: 30px;
  width: 100%; }

@media (min-width: 480px) {
  .c-two-column-section__graphic-description {
    padding-left: calc(3.125vw + 15px); } }

@media (min-width: 1440px) {
  .c-two-column-section__graphic-description {
    padding-left: 60px; } }

@media (min-width: 1440px) {
  .c-two-column-section__graphic-description {
    padding-left: 4.16667vw; } }

@media (min-width: 480px) {
  .c-two-column-section__graphic-description {
    padding-top: calc(3.125vw + 15px); } }

@media (min-width: 1440px) {
  .c-two-column-section__graphic-description {
    padding-top: 60px; } }

@media (min-width: 1440px) {
  .c-two-column-section__graphic-description {
    padding-top: 4.16667vw; } }

.c-two-column-section__graphic-description a {
  color: #bf0c34;
  -webkit-transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53); }

@media (hover: none) {
  .c-two-column-section__graphic-description a {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }
  .c-two-column-section__graphic-description a:active {
    /* 1 */
    opacity: 0.5; } }

@media (hover: hover), all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .c-two-column-section__graphic-description a:hover {
    /* 2 */
    opacity: 0.5; } }

.c-two-column-section--intro .c-parallax-graphic {
  color: #ffffff; }

.c-two-column-section--intro .c-parallax-graphic--cube {
  top: 16.66667vw;
  left: 31.25%;
  color: #000000; }

.c-two-column-section--intro .c-parallax-graphic--cube .u-icon__background {
  color: #fed601;
  fill: #fed601; }

@media (max-width: 800px) {
  .c-two-column-section--intro .c-parallax-graphic--cube {
    display: none; } }

.c-two-column-section--intro .c-parallax-graphic--triangle-angles {
  left: 20.83333%;
  top: 7.5vw; }

.c-two-column-section--intro .c-parallax-graphic--fraction {
  left: 45.83333%;
  top: 27.98611vw; }

@media (max-width: 480px) {
  .c-two-column-section--intro .c-parallax-graphic--fraction {
    left: 70.83333%;
    top: 32.63889vw; } }

.c-two-column-section--intro .c-parallax-graphic--x {
  left: 12.01389vw;
  bottom: 31.94444vw; }

.c-two-column-section--intro .c-parallax-graphic--cube-simple {
  left: 5.27778vw;
  bottom: 6.94444vw; }

.c-two-column-section--explain .c-two-column-section__col--image {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start; }

.c-two-column-section--explain .c-two-column-section__image {
  position: relative;
  width: 133.33333%; }

@media (max-width: 800px) {
  .c-two-column-section--explain .c-two-column-section__image {
    max-width: none;
    width: 120%;
    margin-left: -10%; } }

.c-two-column-section--explain .c-two-column-section__content {
  padding-bottom: 100px; }

@media (min-width: 480px) {
  .c-two-column-section--explain .c-two-column-section__content {
    padding-bottom: calc(10.41667vw + 50px); } }

@media (min-width: 1440px) {
  .c-two-column-section--explain .c-two-column-section__content {
    padding-bottom: 200px; } }

@media (min-width: 1440px) {
  .c-two-column-section--explain .c-two-column-section__content {
    padding-bottom: 13.88889vw; } }

@media (max-width: 800px) {
  .c-two-column-section--explain .c-two-column-section__content {
    padding-bottom: 30px; } }

@media (max-width: 800px) and (min-width: 480px) {
  .c-two-column-section--explain .c-two-column-section__content {
    padding-bottom: calc(3.125vw + 15px); } }

@media (max-width: 800px) and (min-width: 1440px) {
  .c-two-column-section--explain .c-two-column-section__content {
    padding-bottom: 60px; } }

@media (max-width: 800px) and (min-width: 1440px) {
  .c-two-column-section--explain .c-two-column-section__content {
    padding-bottom: 4.16667vw; } }

.c-two-column-section--explain .c-parallax-graphic--diamond {
  top: 0;
  left: 50%; }

.c-two-column-section--explain .c-parallax-graphic--circle {
  right: 25%;
  top: 9.30556vw; }

.c-two-column-section--explain .c-parallax-graphic--circle .u-icon__background {
  color: #cd0039;
  fill: #cd0039; }

.c-two-column-section--explain .c-parallax-graphic--fraction {
  left: 10.69444vw;
  bottom: 3.61111vw;
  top: unset;
  color: #000000; }

.c-two-column-section--teach .c-two-column-section__content {
  padding-bottom: 100px; }

@media (min-width: 480px) {
  .c-two-column-section--teach .c-two-column-section__content {
    padding-bottom: calc(10.41667vw + 50px); } }

@media (min-width: 1440px) {
  .c-two-column-section--teach .c-two-column-section__content {
    padding-bottom: 200px; } }

@media (min-width: 1440px) {
  .c-two-column-section--teach .c-two-column-section__content {
    padding-bottom: 13.88889vw; } }

@media (max-width: 800px) {
  .c-two-column-section--teach .c-two-column-section__content {
    padding-bottom: 30px; } }

@media (max-width: 800px) and (min-width: 480px) {
  .c-two-column-section--teach .c-two-column-section__content {
    padding-bottom: calc(3.125vw + 15px); } }

@media (max-width: 800px) and (min-width: 1440px) {
  .c-two-column-section--teach .c-two-column-section__content {
    padding-bottom: 60px; } }

@media (max-width: 800px) and (min-width: 1440px) {
  .c-two-column-section--teach .c-two-column-section__content {
    padding-bottom: 4.16667vw; } }

.c-two-column-section--teach .c-two-column-section__bottom-graphic {
  margin-right: -11.11111%;
  padding-bottom: 20px; }

@media (min-width: 480px) {
  .c-two-column-section--teach .c-two-column-section__bottom-graphic {
    padding-bottom: calc(2.08333vw + 10px); } }

@media (min-width: 1440px) {
  .c-two-column-section--teach .c-two-column-section__bottom-graphic {
    padding-bottom: 40px; } }

@media (min-width: 1440px) {
  .c-two-column-section--teach .c-two-column-section__bottom-graphic {
    padding-bottom: 2.77778vw; } }

@media (max-width: 800px) {
  .c-two-column-section--teach .c-two-column-section__bottom-graphic {
    display: none; } }

.c-two-column-section--teach .c-two-column-section__col--2 {
  padding-left: 11.11111%; }

@media (max-width: 800px) {
  .c-two-column-section--teach .c-two-column-section__col--2 {
    padding-bottom: 30px; } }

@media (max-width: 800px) and (min-width: 480px) {
  .c-two-column-section--teach .c-two-column-section__col--2 {
    padding-bottom: calc(3.125vw + 15px); } }

@media (max-width: 800px) and (min-width: 1440px) {
  .c-two-column-section--teach .c-two-column-section__col--2 {
    padding-bottom: 60px; } }

@media (max-width: 800px) and (min-width: 1440px) {
  .c-two-column-section--teach .c-two-column-section__col--2 {
    padding-bottom: 4.16667vw; } }

.c-two-column-section--teach .c-parallax-graphic--cup {
  top: 6.52778vw;
  right: 15vw; }

@media (max-width: 480px) {
  .c-two-column-section--teach .c-parallax-graphic--cup {
    top: -2.08333vw;
    right: 4.16667vw; } }

.c-two-column-section--more-than-app .c-two-column-section__content {
  padding-bottom: 100px; }

@media (min-width: 480px) {
  .c-two-column-section--more-than-app .c-two-column-section__content {
    padding-bottom: calc(10.41667vw + 50px); } }

@media (min-width: 1440px) {
  .c-two-column-section--more-than-app .c-two-column-section__content {
    padding-bottom: 200px; } }

@media (min-width: 1440px) {
  .c-two-column-section--more-than-app .c-two-column-section__content {
    padding-bottom: 13.88889vw; } }

@media (max-width: 800px) {
  .c-two-column-section--more-than-app .c-two-column-section__content {
    padding-bottom: 30px; } }

@media (max-width: 800px) and (min-width: 480px) {
  .c-two-column-section--more-than-app .c-two-column-section__content {
    padding-bottom: calc(3.125vw + 15px); } }

@media (max-width: 800px) and (min-width: 1440px) {
  .c-two-column-section--more-than-app .c-two-column-section__content {
    padding-bottom: 60px; } }

@media (max-width: 800px) and (min-width: 1440px) {
  .c-two-column-section--more-than-app .c-two-column-section__content {
    padding-bottom: 4.16667vw; } }

.c-two-column-section--more-than-app .c-parallax-graphic--pyramid {
  top: 0;
  right: 21.18056vw; }

.c-two-column-section--more-than-app .c-parallax-graphic--pyramid .u-icon__background {
  color: rgba(5, 81, 216, 0.5);
  fill: rgba(5, 81, 216, 0.5); }

.c-two-column-section--more-than-app .c-parallax-graphic--pyramid-2 {
  top: 55.55556vw;
  left: 7.08333vw;
  -webkit-transform: rotate(-15deg);
          transform: rotate(-15deg); }

.c-two-column-section--more-than-app .c-parallax-graphic--pyramid-2 .u-icon__background {
  display: none; }

.c-two-column-section--more-than-app .c-parallax-graphic--circle {
  top: 22.43056vw;
  right: 12.63889vw; }

.c-two-column-section--more-than-app .c-parallax-graphic--circle .u-icon__background {
  display: none; }

.c-two-column-section--creator .c-two-column-section__row {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start; }

.c-two-column-section--creator .c-two-column-section__col--1 {
  padding-right: 11.11111%; }

.c-two-column-section--creator .c-two-column-section__content {
  padding-top: 30px; }

@media (min-width: 480px) {
  .c-two-column-section--creator .c-two-column-section__content {
    padding-top: calc(3.125vw + 15px); } }

@media (min-width: 1440px) {
  .c-two-column-section--creator .c-two-column-section__content {
    padding-top: 60px; } }

@media (min-width: 1440px) {
  .c-two-column-section--creator .c-two-column-section__content {
    padding-top: 4.16667vw; } }

.c-two-column-section--creator .c-parallax-graphic--fraction {
  bottom: 8.40278vw;
  left: 29.16667vw; }

.c-two-column-section--creator .c-parallax-graphic--triangle-area {
  top: 3.05556vw;
  left: 50%; }

.c-two-column-section--creator .c-parallax-graphic--cube {
  right: 9.51389vw;
  bottom: 4.93056vw; }

@media (max-width: 800px) {
  .c-two-column-section--creator .c-parallax-graphic--cube {
    display: none; } }

.c-two-column-section--creator .c-parallax-graphic--cube .u-icon__background {
  display: none; }

.c-two-column-section--creator .c-parallax-graphic--cup {
  bottom: 7.63889vw;
  left: 9.02778vw; }

.c-two-column-section--creator .c-parallax-graphic--diamond {
  top: 0;
  left: 10.13889vw; }

.c-two-column-section--help .c-two-column-section__bottom-graphic {
  position: relative;
  left: -33.33333%; }

@media (max-width: 800px) {
  .c-two-column-section--help .c-two-column-section__bottom-graphic {
    display: none; } }

@media (max-width: 800px) {
  .c-two-column-section--help .c-more-than-app-video {
    margin-top: 0; } }

.c-two-column-section--help .c-parallax-graphic--circle {
  top: 5.55556vw;
  left: 24.30556vw; }

.c-two-column-section--help .c-parallax-graphic--circle .u-icon__background {
  display: none; }

.c-two-column-section--help .c-parallax-graphic--pyramid {
  left: 6.11111vw;
  top: 50%; }

@media (max-width: 480px) {
  .c-two-column-section--help .c-parallax-graphic--pyramid {
    left: 3.05556vw;
    top: 70%; } }

.c-two-column-section--help .c-parallax-graphic--pyramid .u-icon__background {
  color: #ff85b0;
  fill: #ff85b0; }

.c-two-column-section--help .c-parallax-graphic--triangle-angles {
  right: 25.69444vw;
  top: 14.51389vw; }

.c-two-column-section--help .c-parallax-graphic--curvy-line {
  bottom: 5.97222vw;
  right: 12.98611vw; }

.c-two-column-section--save-the-day {
  padding-bottom: 30px; }

@media (min-width: 480px) {
  .c-two-column-section--save-the-day {
    padding-bottom: calc(3.125vw + 15px); } }

@media (min-width: 1440px) {
  .c-two-column-section--save-the-day {
    padding-bottom: 60px; } }

@media (min-width: 1440px) {
  .c-two-column-section--save-the-day {
    padding-bottom: 4.16667vw; } }

.c-two-column-section--save-the-day .c-two-column-section__col--1 {
  padding-bottom: 30px; }

@media (min-width: 480px) {
  .c-two-column-section--save-the-day .c-two-column-section__col--1 {
    padding-bottom: calc(3.125vw + 15px); } }

@media (min-width: 1440px) {
  .c-two-column-section--save-the-day .c-two-column-section__col--1 {
    padding-bottom: 60px; } }

@media (min-width: 1440px) {
  .c-two-column-section--save-the-day .c-two-column-section__col--1 {
    padding-bottom: 4.16667vw; } }

.c-two-column-section--save-the-day .c-two-column-section__col--1 .c-two-column-section__image {
  margin-top: 40%; }

.c-two-column-section--save-the-day .c-two-column-section__col--1 .c-two-column-section__image .u-ar-custom {
  padding-bottom: 108.48861%; }

@media (max-width: 800px) {
  .c-two-column-section--save-the-day .c-two-column-section__col--1 .c-two-column-section__image {
    margin-top: 10%; } }

.c-two-column-section--save-the-day .c-two-column-section__bottom-graphic {
  width: 225px;
  max-width: 100%; }

@media (min-width: 1440px) {
  .c-two-column-section--save-the-day .c-two-column-section__bottom-graphic {
    width: 15.625vw; } }

@media (max-width: 800px) {
  .c-two-column-section--save-the-day .c-two-column-section__bottom-graphic {
    display: none; } }

.c-two-column-section--save-the-day .c-parallax-graphic--root {
  top: 6.04167vw;
  left: 30.55556vw; }

.c-two-column-section--save-the-day .c-parallax-graphic--pyramid {
  left: 5.34722vw;
  bottom: 18.75vw; }

.c-two-column-section--save-the-day .c-parallax-graphic--pyramid .u-icon__background {
  color: #ff85b0;
  fill: #ff85b0; }

.c-two-column-section--need-more {
  padding-bottom: 80px; }

@media (min-width: 480px) {
  .c-two-column-section--need-more {
    padding-bottom: calc(8.33333vw + 40px); } }

@media (min-width: 1440px) {
  .c-two-column-section--need-more {
    padding-bottom: 160px; } }

@media (min-width: 1440px) {
  .c-two-column-section--need-more {
    padding-bottom: 11.11111vw; } }

.c-two-column-section--need-more .c-parallax-graphic--curvy-line {
  bottom: 1.80556vw;
  left: 41.31944vw; }

.c-two-column-section--need-more .c-parallax-graphic--triangle-area {
  left: 4.72222vw;
  bottom: 5.41667vw;
  -webkit-transform: rotate(60deg);
          transform: rotate(60deg); }

@media (max-width: 800px) {
  .c-two-column-section--need-more .c-parallax-graphic--triangle-area {
    display: none; } }

.c-two-column-section--need-more .c-parallax-graphic--triangle-area-2 {
  right: 6.25vw;
  top: 8.95833vw;
  -webkit-transform: rotate(38.2deg);
          transform: rotate(38.2deg); }

@media (max-width: 800px) {
  .c-two-column-section--need-more .c-parallax-graphic--triangle-area-2 {
    -webkit-transform: scale(0.5) rotate(38.2deg);
            transform: scale(0.5) rotate(38.2deg);
    top: 5.55556vw; } }

.c-two-column-section--plus-intro {
  padding-bottom: 80px; }

@media (min-width: 480px) {
  .c-two-column-section--plus-intro {
    padding-bottom: calc(5.83333vw + 52px); } }

@media (min-width: 1440px) {
  .c-two-column-section--plus-intro {
    padding-bottom: 136px; } }

@media (min-width: 1440px) {
  .c-two-column-section--plus-intro {
    padding-bottom: 9.44444vw; } }

@media (max-width: 800px) {
  .c-two-column-section--plus-intro .c-two-column-section__bottom-graphic {
    max-width: 50vw;
    margin-left: auto;
    padding-top: 0; }
  .c-two-column-section--plus-intro .c-two-column-section__bottom-graphic .u-icon {
    width: 100%;
    max-width: none; } }

.c-two-column-section--plus-intro .c-parallax-graphic--circle {
  top: 3.95833vw;
  left: 35.76389vw; }

.c-two-column-section--plus-intro .c-parallax-graphic--circle .u-icon__background {
  display: none; }

.c-two-column-section--plus-intro .c-parallax-graphic--triangle-area {
  top: 10.625vw;
  right: 11.94444vw; }

.c-two-column-section--plus-intro .c-parallax-graphic--triangle-area-orange {
  left: 5.69444vw;
  bottom: 2.91667vw; }

.c-two-column-section--plus-video .c-parallax-graphic--pyramid {
  bottom: 2.77778vw;
  left: 22.98611vw; }

.c-two-column-section--plus-video .c-parallax-graphic--pyramid .u-icon__background {
  color: #0551d8;
  fill: #0551d8; }

.c-two-column-section--plus-video .c-parallax-graphic--pyramid-2 {
  top: 0;
  left: 44.375vw; }

.c-two-column-section--plus-video .c-parallax-graphic--pyramid-2 .u-icon__background {
  display: none; }

.c-two-column-section--plus-video .c-parallax-graphic--curvy-line {
  top: 8.05556vw;
  left: 37.5vw; }

.c-two-column-section--plus-video .c-parallax-graphic--triangle-angles {
  top: 13.88889vw;
  right: 25.48611vw; }

.c-two-column-section--plus-video .c-two-column-section__col--2 {
  padding-left: 4.16667vw; }

@media (max-width: 800px) {
  .c-two-column-section--plus-video .c-two-column-section__col--2 {
    padding-left: 0; } }

.c-two-column-section--plus-video .c-more-than-app-video {
  margin-right: -8.33333vw;
  width: 120%;
  margin-top: auto; }

@media (max-width: 800px) {
  .c-two-column-section--plus-video .c-more-than-app-video {
    margin-top: 0;
    margin-right: 0;
    width: 100%; } }

.c-two-column-section--learning .c-two-column-section__content {
  padding-bottom: 0; }

.c-two-column-section--learning .c-parallax-graphic--circle {
  top: 8.19444vw;
  right: 39.58333vw; }

.c-two-column-section--learning .c-parallax-graphic--circle .u-icon__background {
  display: none; }

.c-two-column-section--learning .c-parallax-graphic--cube {
  top: 8.40278vw;
  right: 8.88889vw;
  -webkit-transform: scale(0.6);
          transform: scale(0.6); }

.c-two-column-section--learning .c-parallax-graphic--cube .u-icon__background {
  display: none; }

@media (max-width: 480px) {
  .c-two-column-section--learning .c-parallax-graphic--cube {
    top: 1.45833vw;
    right: 1.94444vw; } }

.c-two-column-section--learning .c-parallax-graphic--triangle-angles {
  top: 37.01389vw;
  left: 4.65278vw; }

@media (max-width: 480px) {
  .c-two-column-section--learning .c-parallax-graphic--triangle-angles {
    left: -12px; } }

.c-two-column-section--learning .c-parallax-graphic--triangle-area {
  right: 12.43056vw;
  bottom: 15.20833vw;
  -webkit-transform: scale(0.6);
          transform: scale(0.6); }

@media (max-width: 480px) {
  .c-two-column-section--learning .c-parallax-graphic--triangle-area {
    right: -6px; } }

.c-two-column-section--learning .c-more-than-app-video {
  padding-left: 0;
  padding-right: 0;
  margin-top: -6.94444vw;
  padding-bottom: 0; }

@media (max-width: 800px) {
  .c-two-column-section--learning .c-more-than-app-video {
    margin-top: -40px; } }

.c-two-column-section--learning .c-more-than-app-video__wrapper {
  max-width: 880px; }

@media (min-width: 1440px) {
  .c-two-column-section--learning .c-more-than-app-video__wrapper {
    max-width: 61.11111vw; } }

.c-two-column-section--learning .c-more-than-app-video__inner {
  padding-bottom: 150px;
  padding-top: 150px; }

@media (min-width: 1440px) {
  .c-two-column-section--learning .c-more-than-app-video__inner {
    padding-bottom: 10.41667vw; } }

@media (min-width: 1440px) {
  .c-two-column-section--learning .c-more-than-app-video__inner {
    padding-top: 10.41667vw; } }

@media (max-width: 800px) {
  .c-two-column-section--learning .c-more-than-app-video__inner {
    padding-top: 60px;
    padding-bottom: 60px; } }

.c-two-column-section--learning .c-more-than-app-video__description {
  padding-top: 10px; }

@media (min-width: 480px) {
  .c-two-column-section--learning .c-more-than-app-video__description {
    padding-top: calc(1.04167vw + 5px); } }

@media (min-width: 1440px) {
  .c-two-column-section--learning .c-more-than-app-video__description {
    padding-top: 20px; } }

@media (min-width: 1440px) {
  .c-two-column-section--learning .c-more-than-app-video__description {
    padding-top: 1.38889vw; } }

@media (max-width: 480px) {
  .c-two-column-section--learning .c-more-than-app-video__description {
    background: radial-gradient(circle, white 0%, white 69%, rgba(255, 255, 255, 0) 100%); } }

.c-two-column-section--best-practices {
  padding-bottom: 100px; }

@media (min-width: 480px) {
  .c-two-column-section--best-practices {
    padding-bottom: calc(10.41667vw + 50px); } }

@media (min-width: 1440px) {
  .c-two-column-section--best-practices {
    padding-bottom: 200px; } }

@media (min-width: 1440px) {
  .c-two-column-section--best-practices {
    padding-bottom: 13.88889vw; } }

.c-two-column-section--best-practices .c-parallax-graphic--x {
  top: 8.19444vw;
  right: 21.80556vw; }

@media (max-width: 800px) {
  .c-two-column-section--best-practices .c-parallax-graphic--x {
    display: none; } }

.c-two-column-section--best-practices .c-parallax-graphic--x-1 {
  top: 11.73611vw;
  right: 17.91667vw; }

@media (max-width: 800px) {
  .c-two-column-section--best-practices .c-parallax-graphic--x-1 {
    display: none; } }

.c-two-column-section--best-practices .c-parallax-graphic--curvy-line {
  top: 8.19444vw;
  right: 15.55556vw; }

.c-two-column-section--best-practices .c-parallax-graphic--x-2 {
  top: 13.61111vw;
  right: 15.97222vw; }

@media (max-width: 800px) {
  .c-two-column-section--best-practices .c-parallax-graphic--x-2 {
    display: none; } }

.c-two-column-section--best-practices .c-parallax-graphic--pyramid {
  top: 20.41667vw;
  right: 39.72222vw; }

.c-two-column-section--best-practices .c-parallax-graphic--pyramid .u-icon__background {
  color: #ff85b0;
  fill: #ff85b0; }

@media (max-width: 800px) {
  .c-two-column-section--best-practices .c-parallax-graphic--pyramid {
    top: 5.55556vw; } }

.c-two-column-section--best-practices .c-parallax-graphic--pyramid-2 {
  top: 29.72222vw;
  right: 35.20833vw; }

.c-two-column-section--best-practices .c-parallax-graphic--pyramid-2 .u-icon__background {
  display: none; }

@media (max-width: 800px) {
  .c-two-column-section--best-practices .c-parallax-graphic--pyramid-2 {
    display: none; } }

.c-two-column-section--best-practices .c-parallax-graphic--triangle-angles {
  bottom: 2.84722vw;
  left: 43.26389vw; }

.c-two-column-section--best-practices .c-parallax-graphic--triangle-area {
  left: 8.40278vw;
  bottom: 7.22222vw; }

.c-two-column-section-creator {
  padding-bottom: 100px; }

@media (min-width: 1440px) {
  .c-two-column-section-creator {
    padding-bottom: 6.94444vw; } }

@media (max-width: 800px) {
  .c-two-column-section-creator {
    padding-bottom: 60px; } }

.c-two-column-section-creator__image {
  padding-bottom: 15px;
  z-index: 2;
  position: relative; }

@media (min-width: 480px) {
  .c-two-column-section-creator__image {
    padding-bottom: calc(1.5625vw + 7.5px); } }

@media (min-width: 1440px) {
  .c-two-column-section-creator__image {
    padding-bottom: 30px; } }

@media (min-width: 1440px) {
  .c-two-column-section-creator__image {
    padding-bottom: 2.08333vw; } }

@media (max-width: 800px) {
  .c-two-column-section-creator__image {
    max-width: 300px; } }

.c-two-column-section-creator__airplane {
  max-width: 400px;
  position: relative;
  margin-left: auto;
  margin-right: -38.88889%;
  margin-top: -6.94444vw; }

@media (min-width: 1440px) {
  .c-two-column-section-creator__airplane {
    max-width: 27.77778vw; } }

@media (max-width: 800px) {
  .c-two-column-section-creator__airplane {
    margin-right: 0;
    max-width: 300px; } }

.c-two-column-section-creator__airplane .u-icon {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 0;
  -webkit-transform: translateY(0);
          transform: translateY(0); }

@media (max-width: 800px) {
  .c-two-column-section-creator__airplane .u-icon {
    position: relative; } }

.c-two-column-section-creator__airplane .u-icon__plane-hover {
  cursor: pointer;
  -webkit-transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53); }

@media (hover: none) {
  .c-two-column-section-creator__airplane .u-icon__plane-hover {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }
  .c-two-column-section-creator__airplane .u-icon__plane-hover:active {
    /* 1 */
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px); } }

@media (hover: hover), all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .c-two-column-section-creator__airplane .u-icon__plane-hover:hover {
    /* 2 */
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px); } }

.c-two-column-section-click-me {
  margin-right: -20px; }

@media (min-width: 1440px) {
  .c-two-column-section-click-me {
    margin-right: -1.38889vw; } }

.c-two-column-section-click-me p {
  max-width: 151px;
  padding-top: 15px;
  text-align: center;
  margin-left: auto;
  cursor: pointer;
  -webkit-transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53); }

@media (min-width: 1440px) {
  .c-two-column-section-click-me p {
    max-width: 10.48611vw; } }

@media (min-width: 480px) {
  .c-two-column-section-click-me p {
    padding-top: calc(1.5625vw + 7.5px); } }

@media (min-width: 1440px) {
  .c-two-column-section-click-me p {
    padding-top: 30px; } }

@media (min-width: 1440px) {
  .c-two-column-section-click-me p {
    padding-top: 2.08333vw; } }

@media (hover: none) {
  .c-two-column-section-click-me p {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }
  .c-two-column-section-click-me p:active {
    /* 1 */
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px); } }

@media (hover: hover), all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .c-two-column-section-click-me p:hover {
    /* 2 */
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px); } }

.c-steps {
  padding-top: 160px;
  padding-bottom: 160px; }

@media (min-width: 1440px) {
  .c-steps {
    padding-top: 11.11111vw; } }

@media (min-width: 1440px) {
  .c-steps {
    padding-bottom: 11.11111vw; } }

@media (max-width: 800px) {
  .c-steps {
    padding-top: 80px;
    padding-bottom: 80px; } }

.c-steps__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }

@media (max-width: 800px) {
  .c-steps__list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; } }

.c-steps__item {
  width: 27.77778%; }

@media (max-width: 800px) {
  .c-steps__item {
    width: 40%;
    margin-bottom: 30px; } }

@media (max-width: 800px) and (min-width: 480px) {
  .c-steps__item {
    margin-bottom: calc(3.125vw + 15px); } }

@media (max-width: 800px) and (min-width: 1440px) {
  .c-steps__item {
    margin-bottom: 60px; } }

@media (max-width: 800px) and (min-width: 1440px) {
  .c-steps__item {
    margin-bottom: 4.16667vw; } }

@media (max-width: 480px) {
  .c-steps__item {
    width: 100%; } }

.c-steps-card__icon {
  margin-bottom: 15px;
  height: 75px; }

@media (min-width: 480px) {
  .c-steps-card__icon {
    margin-bottom: calc(1.5625vw + 7.5px); } }

@media (min-width: 1440px) {
  .c-steps-card__icon {
    margin-bottom: 30px; } }

@media (min-width: 1440px) {
  .c-steps-card__icon {
    margin-bottom: 2.08333vw; } }

@media (min-width: 1440px) {
  .c-steps-card__icon {
    height: 5.20833vw; } }

.c-steps-card__icon .u-icon,
.c-steps-card__icon svg {
  height: 100%;
  width: auto; }

.c-steps-card__title {
  margin-bottom: 5px; }

@media (min-width: 480px) {
  .c-steps-card__title {
    margin-bottom: calc(0.52083vw + 2.5px); } }

@media (min-width: 1440px) {
  .c-steps-card__title {
    margin-bottom: 10px; } }

@media (min-width: 1440px) {
  .c-steps-card__title {
    margin-bottom: 0.69444vw; } }

.c-more-than-app-video {
  padding-left: 4.16667%;
  padding-right: 4.16667%;
  padding-bottom: 150px; }

@media (min-width: 1440px) {
  .c-more-than-app-video {
    padding-bottom: 10.41667vw; } }

@media (max-width: 800px) {
  .c-more-than-app-video {
    padding-bottom: 60px; } }

.c-more-than-app-video .c-parallax-graphic--triangle-area {
  left: 27.91667vw;
  bottom: 11.94444vw;
  -webkit-transform: rotate(78.05deg);
          transform: rotate(78.05deg); }

.c-more-than-app-video .c-parallax-graphic--x {
  left: 23.125vw;
  bottom: 15.625vw; }

.c-more-than-app-video__inner {
  padding-top: 100px;
  margin-top: 10px;
  padding-bottom: 100px;
  padding-left: 12.5%;
  padding-right: 15%;
  background-size: contain;
  background-repeat: no-repeat; }

@media (min-width: 480px) {
  .c-more-than-app-video__inner {
    padding-top: calc(10.41667vw + 50px); } }

@media (min-width: 1440px) {
  .c-more-than-app-video__inner {
    padding-top: 200px; } }

@media (min-width: 1440px) {
  .c-more-than-app-video__inner {
    padding-top: 13.88889vw; } }

@media (min-width: 480px) {
  .c-more-than-app-video__inner {
    margin-top: calc(1.04167vw + 5px); } }

@media (min-width: 1440px) {
  .c-more-than-app-video__inner {
    margin-top: 20px; } }

@media (min-width: 1440px) {
  .c-more-than-app-video__inner {
    margin-top: 1.38889vw; } }

@media (min-width: 480px) {
  .c-more-than-app-video__inner {
    padding-bottom: calc(10.41667vw + 50px); } }

@media (min-width: 1440px) {
  .c-more-than-app-video__inner {
    padding-bottom: 200px; } }

@media (min-width: 1440px) {
  .c-more-than-app-video__inner {
    padding-bottom: 13.88889vw; } }

.c-more-than-app-video__poster {
  -webkit-clip-path: polygon(4% 0%, 96% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(4% 0%, 96% 0%, 100% 100%, 0% 100%);
  position: relative; }

.c-more-than-app-video__play-wrapper {
  width: 250px;
  height: 250px;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  left: 18.18182%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }

@media (min-width: 1440px) {
  .c-more-than-app-video__play-wrapper {
    width: 17.36111vw; } }

@media (min-width: 1440px) {
  .c-more-than-app-video__play-wrapper {
    height: 17.36111vw; } }

.c-more-than-app-video__play {
  width: 100px;
  height: 100px;
  -webkit-appearance: none;
  background-color: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer; }

@media (min-width: 1440px) {
  .c-more-than-app-video__play {
    width: 6.94444vw; } }

@media (min-width: 1440px) {
  .c-more-than-app-video__play {
    height: 6.94444vw; } }

.c-more-than-app-video__play .u-icon {
  width: 100%;
  height: 100%; }

.c-more-than-app-video--column {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  margin-top: 57%; }

@media (max-width: 800px) {
  .c-more-than-app-video--column {
    margin-top: 10%; } }

.c-more-than-app-video--column .c-more-than-app-video__inner {
  padding: 0; }

.c-testimonials-slider {
  margin-bottom: 30px;
  padding-right: 12.5%;
  padding-left: 50%;
  overflow: hidden; }

@media (min-width: 480px) {
  .c-testimonials-slider {
    margin-bottom: calc(3.125vw + 15px); } }

@media (min-width: 1440px) {
  .c-testimonials-slider {
    margin-bottom: 60px; } }

@media (min-width: 1440px) {
  .c-testimonials-slider {
    margin-bottom: 4.16667vw; } }

@media (max-width: 1140px) {
  .c-testimonials-slider {
    padding-left: 37.5%; } }

@media (max-width: 800px) {
  .c-testimonials-slider {
    cursor: auto;
    padding-left: 12.5%; } }

@media (max-width: 480px) {
  .c-testimonials-slider {
    padding-left: 8.33333%;
    padding-right: 8.33333%; } }

.c-testimonials-slider .swiper-container {
  overflow: visible; }

.c-testimonials-slider .swiper-slide {
  width: 100%;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  height: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

@media (max-width: 800px) {
  .c-testimonials-slider .swiper-slide {
    width: 60vw; } }

@media (max-width: 480px) {
  .c-testimonials-slider .swiper-slide {
    width: 80vw; } }

.c-testimonials-card {
  padding-left: 10px;
  padding-right: 10px;
  position: relative;
  padding-bottom: 10px;
  padding-top: 60px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 100%; }

@media (min-width: 480px) {
  .c-testimonials-card {
    padding-left: calc(1.04167vw + 5px); } }

@media (min-width: 1440px) {
  .c-testimonials-card {
    padding-left: 20px; } }

@media (min-width: 1440px) {
  .c-testimonials-card {
    padding-left: 1.38889vw; } }

@media (min-width: 480px) {
  .c-testimonials-card {
    padding-right: calc(1.04167vw + 5px); } }

@media (min-width: 1440px) {
  .c-testimonials-card {
    padding-right: 20px; } }

@media (min-width: 1440px) {
  .c-testimonials-card {
    padding-right: 1.38889vw; } }

.c-testimonials-card__inner {
  padding: 15px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative; }

@media (min-width: 480px) {
  .c-testimonials-card__inner {
    padding: calc(1.5625vw + 7.5px); } }

@media (min-width: 1440px) {
  .c-testimonials-card__inner {
    padding: 30px; } }

@media (min-width: 1440px) {
  .c-testimonials-card__inner {
    padding: 2.08333vw; } }

.c-testimonials-card__bg {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  max-width: 100%;
  z-index: -1;
  bottom: -20px;
  top: -40px;
  -webkit-clip-path: polygon(0 7%, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 7%, 100% 0, 100% 100%, 0% 100%);
  -webkit-transform: scaley(0.75);
          transform: scaley(0.75);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out; }

.c-testimonials-card--blue .c-testimonials-card__inner {
  color: #ffffff;
  background-color: #0551d8; }

.c-testimonials-card--blue i {
  background-color: #0551d8; }

.c-testimonials-card--pink .c-testimonials-card__inner {
  background-color: #ff85b0; }

.c-testimonials-card--pink i {
  background-color: #ff85b0; }

.c-testimonials-card--orange .c-testimonials-card__inner {
  background-color: #ff6230; }

.c-testimonials-card--orange i {
  background-color: #ff6230; }

.c-testimonials-card--yellow .c-testimonials-card__inner {
  background-color: #fed601; }

.c-testimonials-card--yellow i {
  background-color: #fed601; }

.c-testimonials-card__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: auto;
  padding-top: 10px; }

@media (min-width: 480px) {
  .c-testimonials-card__footer {
    padding-top: calc(1.04167vw + 5px); } }

@media (min-width: 1440px) {
  .c-testimonials-card__footer {
    padding-top: 20px; } }

@media (min-width: 1440px) {
  .c-testimonials-card__footer {
    padding-top: 1.38889vw; } }

.c-testimonials-card__avatar {
  width: 73px;
  border-radius: 50%;
  overflow: hidden; }

@media (min-width: 1440px) {
  .c-testimonials-card__avatar {
    width: 5.06944vw; } }

.c-testimonials-card__name {
  padding-left: 1.5em; }

.c-logos {
  padding-top: 100px;
  padding-bottom: 100px; }

@media (min-width: 480px) {
  .c-logos {
    padding-top: calc(10.41667vw + 50px); } }

@media (min-width: 1440px) {
  .c-logos {
    padding-top: 200px; } }

@media (min-width: 1440px) {
  .c-logos {
    padding-top: 13.88889vw; } }

@media (min-width: 480px) {
  .c-logos {
    padding-bottom: calc(10.41667vw + 50px); } }

@media (min-width: 1440px) {
  .c-logos {
    padding-bottom: 200px; } }

@media (min-width: 1440px) {
  .c-logos {
    padding-bottom: 13.88889vw; } }

.c-logos__title {
  padding-bottom: 30px;
  text-align: center; }

@media (min-width: 480px) {
  .c-logos__title {
    padding-bottom: calc(3.125vw + 15px); } }

@media (min-width: 1440px) {
  .c-logos__title {
    padding-bottom: 60px; } }

@media (min-width: 1440px) {
  .c-logos__title {
    padding-bottom: 4.16667vw; } }

.c-logos__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }

.c-logos__item {
  padding: 15px;
  width: 20%; }

@media (min-width: 480px) {
  .c-logos__item {
    padding: calc(1.5625vw + 7.5px); } }

@media (min-width: 1440px) {
  .c-logos__item {
    padding: 30px; } }

@media (min-width: 1440px) {
  .c-logos__item {
    padding: 2.08333vw; } }

@media (max-width: 800px) {
  .c-logos__item {
    width: 33.33333%; } }

@media (max-width: 480px) {
  .c-logos__item {
    width: 50%; } }

.c-logos__item a {
  display: block;
  width: 100%;
  -webkit-transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53); }

@media (hover: none) {
  .c-logos__item a {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }
  .c-logos__item a:active {
    /* 1 */
    opacity: 0.5; } }

@media (hover: hover), all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .c-logos__item a:hover {
    /* 2 */
    opacity: 0.5; } }

.c-logos__item .c-media-wrapper__img {
  -o-object-fit: contain;
     object-fit: contain; }

.c-logos .c-parallax-graphic--x {
  right: 24.51389vw;
  top: 12.29167vw; }

.c-logos .c-parallax-graphic--x-2 {
  right: 22.56944vw;
  top: 14.16667vw; }

.c-logos .c-parallax-graphic--curvy-line {
  right: 22.15278vw;
  top: 8.75vw; }

.c-logos .c-parallax-graphic--fraction {
  right: 20.625vw;
  top: 6.04167vw; }

.c-logos .c-parallax-graphic--cone {
  top: 7.70833vw;
  left: 24.09722vw; }

.c-logos .c-parallax-graphic--cone .u-icon__background {
  color: #fed601;
  fill: #fed601; }

.c-logos .c-parallax-graphic--cube {
  bottom: 3.75vw;
  left: 7.43056vw; }

.c-logos .c-parallax-graphic--cube .u-icon__background {
  color: rgba(5, 81, 216, 0.5);
  fill: rgba(5, 81, 216, 0.5); }

.c-logos .c-parallax-graphic--vortex-line {
  bottom: 5.83333vw;
  right: 19.79167vw; }

.c-download-banner {
  padding-bottom: 100px;
  padding-top: 160px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }

@media (min-width: 1440px) {
  .c-download-banner {
    padding-bottom: 6.94444vw; } }

@media (min-width: 1440px) {
  .c-download-banner {
    padding-top: 11.11111vw; } }

@media (max-width: 800px) {
  .c-download-banner {
    padding-top: 80px;
    padding-bottom: 60px; } }

.c-download-banner .c-parallax-graphic--curvy-line {
  top: 5.55556vw;
  right: 40.34722vw; }

.c-download-banner .c-parallax-graphic--circle {
  left: 7.08333vw;
  bottom: 1.94444vw; }

.c-download-banner .c-parallax-graphic--circle .u-icon__background {
  display: none; }

.c-download-banner .c-parallax-graphic--triangle-area {
  bottom: 1.73611vw;
  right: 8.68056vw; }

.c-download-banner__text {
  max-width: 890px;
  padding-bottom: 25px;
  margin-left: auto;
  margin-right: auto;
  text-align: center; }

@media (min-width: 1440px) {
  .c-download-banner__text {
    max-width: 61.80556vw; } }

@media (min-width: 480px) {
  .c-download-banner__text {
    padding-bottom: calc(2.60417vw + 12.5px); } }

@media (min-width: 1440px) {
  .c-download-banner__text {
    padding-bottom: 50px; } }

@media (min-width: 1440px) {
  .c-download-banner__text {
    padding-bottom: 3.47222vw; } }

.c-download-banner__text span,
.c-download-banner__text u {
  text-decoration: none;
  position: relative;
  display: inline-block; }

.c-download-banner__text span:after,
.c-download-banner__text u:after {
  content: "";
  display: block;
  position: absolute;
  top: -10%;
  left: -1%;
  width: 102%;
  height: 110%;
  background-color: #fed601;
  z-index: -1;
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -webkit-transform: scaleX(1);
          transform: scaleX(1); }

.o-section--yellow .c-download-banner__text span:after, .o-section--yellow
.c-download-banner__text u:after {
  background-color: #ff85b0; }

.c-download-banner__text span.is-active:after,
.c-download-banner__text u.is-active:after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1); }

.c-quote-slider {
  padding-top: 80px; }

@media (min-width: 480px) {
  .c-quote-slider {
    padding-top: calc(8.33333vw + 40px); } }

@media (min-width: 1440px) {
  .c-quote-slider {
    padding-top: 160px; } }

@media (min-width: 1440px) {
  .c-quote-slider {
    padding-top: 11.11111vw; } }

.c-quote-slider .c-parallax-graphic--pyramid {
  right: 34.30556vw;
  top: 0;
  -webkit-transform: translateY(-80%);
          transform: translateY(-80%); }

.c-quote-slider .c-parallax-graphic--pyramid .u-icon__background {
  color: #ff85b0;
  fill: #ff85b0; }

.c-quote-slider .c-parallax-graphic--pyramid-2 {
  left: 21.45833vw;
  top: 6.52778vw;
  -webkit-transform: rotate(-15deg);
          transform: rotate(-15deg); }

.c-quote-slider .c-parallax-graphic--pyramid-2 .u-icon__background {
  display: none; }

.c-quote-slider .c-parallax-graphic--cup {
  bottom: 6.25vw;
  left: 10vw; }

.c-quote-slider__main {
  position: relative; }

.c-quote-slider__main .swiper-slide {
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.c-quote-slider__arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer; }

.c-quote-slider__arrow .u-icon {
  -webkit-transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53); }

.c-quote-slider__arrow--left {
  left: -4.16667vw; }

@media (hover: none) {
  .c-quote-slider__arrow--left {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }
  .c-quote-slider__arrow--left:active {
    /* 1 */ }
  .c-quote-slider__arrow--left:active .u-icon {
    -webkit-transform: translateX(-4px) scale(1.2);
            transform: translateX(-4px) scale(1.2); } }

@media (hover: hover), all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .c-quote-slider__arrow--left:hover {
    /* 2 */ }
  .c-quote-slider__arrow--left:hover .u-icon {
    -webkit-transform: translateX(-4px) scale(1.2);
            transform: translateX(-4px) scale(1.2); } }

.c-quote-slider__arrow--right {
  right: -4.16667vw; }

@media (hover: none) {
  .c-quote-slider__arrow--right {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }
  .c-quote-slider__arrow--right:active {
    /* 1 */ }
  .c-quote-slider__arrow--right:active .u-icon {
    -webkit-transform: translateX(4px) scale(1.2);
            transform: translateX(4px) scale(1.2); } }

@media (hover: hover), all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .c-quote-slider__arrow--right:hover {
    /* 2 */ }
  .c-quote-slider__arrow--right:hover .u-icon {
    -webkit-transform: translateX(4px) scale(1.2);
            transform: translateX(4px) scale(1.2); } }

.c-quote-slider__image {
  width: 444px;
  bottom: -100px;
  position: relative;
  margin-left: auto;
  max-width: 100%;
  margin-right: 4.16667vw;
  z-index: 2; }

@media (min-width: 1440px) {
  .c-quote-slider__image {
    width: 30.83333vw; } }

@media (min-width: 1440px) {
  .c-quote-slider__image {
    bottom: -6.94444vw; } }

@media (max-width: 800px) {
  .c-quote-slider__image {
    bottom: -60px;
    width: 60%;
    margin-right: -4.16667vw; } }

@media (max-width: 480px) {
  .c-quote-slider__image {
    bottom: -45px;
    width: 60%; } }

.c-quote-slider__image .u-icon {
  width: 100%;
  height: auto; }

.c-quote-card {
  text-align: center;
  margin-top: auto;
  margin-bottom: auto; }

.c-quote-card__quote {
  padding-bottom: 30px; }

@media (min-width: 480px) {
  .c-quote-card__quote {
    padding-bottom: calc(3.125vw + 15px); } }

@media (min-width: 1440px) {
  .c-quote-card__quote {
    padding-bottom: 60px; } }

@media (min-width: 1440px) {
  .c-quote-card__quote {
    padding-bottom: 4.16667vw; } }

.c-quote-card__quote span {
  background-color: #ff85b0; }

.c-quote {
  padding-top: 80px;
  padding-bottom: 80px; }

@media (min-width: 480px) {
  .c-quote {
    padding-top: calc(8.33333vw + 40px); } }

@media (min-width: 1440px) {
  .c-quote {
    padding-top: 160px; } }

@media (min-width: 1440px) {
  .c-quote {
    padding-top: 11.11111vw; } }

@media (min-width: 480px) {
  .c-quote {
    padding-bottom: calc(8.33333vw + 40px); } }

@media (min-width: 1440px) {
  .c-quote {
    padding-bottom: 160px; } }

@media (min-width: 1440px) {
  .c-quote {
    padding-bottom: 11.11111vw; } }

.c-quote--with-image {
  padding-bottom: 30px; }

@media (min-width: 480px) {
  .c-quote--with-image {
    padding-bottom: calc(3.125vw + 15px); } }

@media (min-width: 1440px) {
  .c-quote--with-image {
    padding-bottom: 60px; } }

@media (min-width: 1440px) {
  .c-quote--with-image {
    padding-bottom: 4.16667vw; } }

.c-quote__image {
  width: 14.58333vw;
  position: relative; }

.c-quote__image .u-icon {
  width: 100%; }

.c-quote .c-parallax-graphic--curvy-line {
  right: 12.98611vw;
  top: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%); }

.c-quote .c-parallax-graphic--x {
  left: 51.875vw;
  bottom: 0.69444vw; }

.c-plans {
  padding-top: 100px;
  padding-bottom: 100px; }

@media (min-width: 480px) {
  .c-plans {
    padding-top: calc(10.41667vw + 50px); } }

@media (min-width: 1440px) {
  .c-plans {
    padding-top: 200px; } }

@media (min-width: 1440px) {
  .c-plans {
    padding-top: 13.88889vw; } }

@media (min-width: 480px) {
  .c-plans {
    padding-bottom: calc(10.41667vw + 50px); } }

@media (min-width: 1440px) {
  .c-plans {
    padding-bottom: 200px; } }

@media (min-width: 1440px) {
  .c-plans {
    padding-bottom: 13.88889vw; } }

.c-plans__title {
  padding-bottom: 30px;
  text-align: center; }

@media (min-width: 480px) {
  .c-plans__title {
    padding-bottom: calc(3.125vw + 15px); } }

@media (min-width: 1440px) {
  .c-plans__title {
    padding-bottom: 60px; } }

@media (min-width: 1440px) {
  .c-plans__title {
    padding-bottom: 4.16667vw; } }

.c-plans__list {
  padding-top: 30px;
  margin-left: -4.16667vw;
  margin-right: -4.16667vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

@media (min-width: 480px) {
  .c-plans__list {
    padding-top: calc(3.125vw + 15px); } }

@media (min-width: 1440px) {
  .c-plans__list {
    padding-top: 60px; } }

@media (min-width: 1440px) {
  .c-plans__list {
    padding-top: 4.16667vw; } }

@media (max-width: 800px) {
  .c-plans__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; } }

.c-plans__item {
  padding-left: 20px;
  padding-right: 20px;
  width: 33.33333%;
  height: auto; }

@media (min-width: 1440px) {
  .c-plans__item {
    padding-left: 1.38889vw; } }

@media (min-width: 1440px) {
  .c-plans__item {
    padding-right: 1.38889vw; } }

.c-plans__item:nth-child(1), .c-plans__item:nth-child(3) {
  padding-top: 80px; }

@media (min-width: 1440px) {
  .c-plans__item:nth-child(1), .c-plans__item:nth-child(3) {
    padding-top: 5.55556vw; } }

@media (max-width: 800px) {
  .c-plans__item:nth-child(1), .c-plans__item:nth-child(3) {
    padding-top: 0; } }

@media (max-width: 800px) {
  .c-plans__item {
    padding-bottom: 30px;
    width: 100%;
    max-width: 385px;
    margin-left: auto;
    margin-right: auto; } }

@media (max-width: 800px) and (min-width: 480px) {
  .c-plans__item {
    padding-bottom: calc(3.125vw + 15px); } }

@media (max-width: 800px) and (min-width: 1440px) {
  .c-plans__item {
    padding-bottom: 60px; } }

@media (max-width: 800px) and (min-width: 1440px) {
  .c-plans__item {
    padding-bottom: 4.16667vw; } }

.c-plans .c-parallax-graphic--pyramid {
  left: 9.16667vw;
  top: 28.05556vw; }

.c-plans .c-parallax-graphic--pyramid .u-icon__background {
  display: none; }

.c-plans .c-parallax-graphic--cube {
  bottom: 1.80556vw;
  right: 39.09722vw; }

.c-plans .c-parallax-graphic--cube .u-icon__background {
  color: #fed601;
  fill: #fed601; }

.c-plans-card {
  padding-top: 20px;
  padding-left: 3.81944vw;
  padding-right: 3.81944vw;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative; }

@media (min-width: 480px) {
  .c-plans-card {
    padding-top: calc(2.08333vw + 10px); } }

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

@media (min-width: 1440px) {
  .c-plans-card {
    padding-top: 2.77778vw; } }

@media (max-width: 800px) {
  .c-plans-card {
    padding-left: 40px;
    padding-right: 40px; } }

.c-plans-card .c-button {
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
  text-align: center; }

.c-plans-card--pink {
  background-color: #ff85b0; }

.c-plans-card--pink li:before {
  -webkit-filter: invert(20%) sepia(65%) saturate(7492%) hue-rotate(216deg) brightness(92%) contrast(96%);
          filter: invert(20%) sepia(65%) saturate(7492%) hue-rotate(216deg) brightness(92%) contrast(96%); }

.c-plans-card--yellow {
  padding-top: 30px;
  background-color: #fed601; }

@media (min-width: 480px) {
  .c-plans-card--yellow {
    padding-top: calc(3.125vw + 15px); } }

@media (min-width: 1440px) {
  .c-plans-card--yellow {
    padding-top: 60px; } }

@media (min-width: 1440px) {
  .c-plans-card--yellow {
    padding-top: 4.16667vw; } }

.c-plans-card--yellow li:before {
  -webkit-filter: invert(12%) sepia(99%) saturate(4206%) hue-rotate(339deg) brightness(86%) contrast(99%);
          filter: invert(12%) sepia(99%) saturate(4206%) hue-rotate(339deg) brightness(86%) contrast(99%); }

.c-plans-card--orange {
  background-color: #ff6230; }

.c-plans-card--orange li:before {
  -webkit-filter: invert(73%) sepia(93%) saturate(2382%) hue-rotate(2deg) brightness(117%) contrast(115%);
          filter: invert(73%) sepia(93%) saturate(2382%) hue-rotate(2deg) brightness(117%) contrast(115%); }

.c-plans-card__title {
  padding-bottom: 5px; }

@media (min-width: 480px) {
  .c-plans-card__title {
    padding-bottom: calc(0.52083vw + 2.5px); } }

@media (min-width: 1440px) {
  .c-plans-card__title {
    padding-bottom: 10px; } }

@media (min-width: 1440px) {
  .c-plans-card__title {
    padding-bottom: 0.69444vw; } }

.c-plans-card__header {
  height: 130px;
  text-align: center; }

@media (min-width: 1440px) {
  .c-plans-card__header {
    height: 9.02778vw; } }

@media (max-width: 800px) {
  .c-plans-card__header {
    padding-bottom: 10px;
    height: auto; } }

@media (max-width: 800px) and (min-width: 480px) {
  .c-plans-card__header {
    padding-bottom: calc(1.04167vw + 5px); } }

@media (max-width: 800px) and (min-width: 1440px) {
  .c-plans-card__header {
    padding-bottom: 20px; } }

@media (max-width: 800px) and (min-width: 1440px) {
  .c-plans-card__header {
    padding-bottom: 1.38889vw; } }

.c-plans-card__price {
  opacity: 0.5; }

.c-plans-card__footer {
  margin-top: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 20px; }

@media (min-width: 480px) {
  .c-plans-card__footer {
    padding-bottom: calc(2.08333vw + 10px); } }

@media (min-width: 1440px) {
  .c-plans-card__footer {
    padding-bottom: 40px; } }

@media (min-width: 1440px) {
  .c-plans-card__footer {
    padding-bottom: 2.77778vw; } }

.c-plans-card__label {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #0551d8;
  color: #ffffff;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 20px;
  padding-right: 20px; }

@media (min-width: 480px) {
  .c-plans-card__label {
    padding-top: calc(0.52083vw + 2.5px); } }

@media (min-width: 1440px) {
  .c-plans-card__label {
    padding-top: 10px; } }

@media (min-width: 1440px) {
  .c-plans-card__label {
    padding-top: 0.69444vw; } }

@media (min-width: 480px) {
  .c-plans-card__label {
    padding-bottom: calc(0.52083vw + 2.5px); } }

@media (min-width: 1440px) {
  .c-plans-card__label {
    padding-bottom: 10px; } }

@media (min-width: 1440px) {
  .c-plans-card__label {
    padding-bottom: 0.69444vw; } }

@media (min-width: 480px) {
  .c-plans-card__label {
    padding-left: calc(2.08333vw + 10px); } }

@media (min-width: 1440px) {
  .c-plans-card__label {
    padding-left: 40px; } }

@media (min-width: 1440px) {
  .c-plans-card__label {
    padding-left: 2.77778vw; } }

@media (min-width: 480px) {
  .c-plans-card__label {
    padding-right: calc(2.08333vw + 10px); } }

@media (min-width: 1440px) {
  .c-plans-card__label {
    padding-right: 40px; } }

@media (min-width: 1440px) {
  .c-plans-card__label {
    padding-right: 2.77778vw; } }

.c-plans-card__list {
  padding-bottom: 10px; }

@media (min-width: 480px) {
  .c-plans-card__list {
    padding-bottom: calc(1.04167vw + 5px); } }

@media (min-width: 1440px) {
  .c-plans-card__list {
    padding-bottom: 20px; } }

@media (min-width: 1440px) {
  .c-plans-card__list {
    padding-bottom: 1.38889vw; } }

.c-plans-card__list li {
  width: 100%;
  position: relative;
  padding-left: 2em;
  margin-bottom: 1em; }

.c-plans-card__list li p {
  padding-bottom: 0; }

.c-plans-card__list li:before {
  content: url("../ui/list-style-image.svg");
  position: absolute;
  left: 0;
  width: 0.8em;
  height: 0.8em; }

.c-plans-card__list li.is-disabled {
  opacity: 0.5; }

.c-plans-card__list li.is-disabled:before {
  content: url("../ui/list-style-disabled-image.svg");
  -webkit-filter: brightness(0);
          filter: brightness(0); }

.c-default-content {
  padding-top: 30px;
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

@media (min-width: 480px) {
  .c-default-content {
    padding-top: calc(3.125vw + 15px); } }

@media (min-width: 1440px) {
  .c-default-content {
    padding-top: 60px; } }

@media (min-width: 1440px) {
  .c-default-content {
    padding-top: 4.16667vw; } }

@media (min-width: 480px) {
  .c-default-content {
    margin-top: calc(3.125vw + 15px); } }

@media (min-width: 1440px) {
  .c-default-content {
    margin-top: 60px; } }

@media (min-width: 1440px) {
  .c-default-content {
    margin-top: 4.16667vw; } }

.c-default-content__inner {
  margin-left: auto;
  margin-right: auto; }

.c-availability-map {
  padding-top: 80px;
  padding-bottom: 80px; }

@media (min-width: 480px) {
  .c-availability-map {
    padding-top: calc(8.33333vw + 40px); } }

@media (min-width: 1440px) {
  .c-availability-map {
    padding-top: 160px; } }

@media (min-width: 1440px) {
  .c-availability-map {
    padding-top: 11.11111vw; } }

@media (min-width: 480px) {
  .c-availability-map {
    padding-bottom: calc(8.33333vw + 40px); } }

@media (min-width: 1440px) {
  .c-availability-map {
    padding-bottom: 160px; } }

@media (min-width: 1440px) {
  .c-availability-map {
    padding-bottom: 11.11111vw; } }

.c-availability-map__info-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }

@media (max-width: 800px) {
  .c-availability-map__info-row {
    display: block; } }

.c-availability-map__info {
  width: 22.22222%; }

@media (max-width: 1140px) {
  .c-availability-map__info {
    width: 33.33333%; } }

@media (max-width: 800px) {
  .c-availability-map__info {
    padding-top: 30px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; } }

@media (max-width: 800px) and (min-width: 480px) {
  .c-availability-map__info {
    padding-top: calc(3.125vw + 15px); } }

@media (max-width: 800px) and (min-width: 1440px) {
  .c-availability-map__info {
    padding-top: 60px; } }

@media (max-width: 800px) and (min-width: 1440px) {
  .c-availability-map__info {
    padding-top: 4.16667vw; } }

.c-availability-map__info-icon .u-icon {
  font-size: 28px; }

@media (min-width: 480px) {
  .c-availability-map__info-icon .u-icon {
    font-size: calc(3.33333vw + 12px); } }

@media (min-width: 1440px) {
  .c-availability-map__info-icon .u-icon {
    font-size: 60px; } }

@media (min-width: 1440px) {
  .c-availability-map__info-icon .u-icon {
    font-size: 4.16667vw; } }

.c-availability-map__map-wrap {
  padding-top: 64px;
  padding-left: 11.11111%;
  padding-right: 11.11111%;
  width: 100%; }

@media (min-width: 480px) {
  .c-availability-map__map-wrap {
    padding-top: calc(3.33333vw + 48px); } }

@media (min-width: 1440px) {
  .c-availability-map__map-wrap {
    padding-top: 96px; } }

@media (min-width: 1440px) {
  .c-availability-map__map-wrap {
    padding-top: 6.66667vw; } }

@media (max-width: 1140px) {
  .c-availability-map__map-wrap {
    padding-left: 0;
    padding-right: 0; } }

.c-availability-map__map-wrap .u-icon {
  width: 100%;
  color: transparent; }

.c-availability-map .c-parallax-graphic--cup {
  bottom: -10px;
  left: 30%; }

.c-availability-map .c-parallax-graphic--circle {
  top: 40%;
  right: 10%; }

.c-availability-map .c-parallax-graphic--circle .u-icon__background {
  color: transparent;
  fill: transparent; }

.c-about-history {
  padding-bottom: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }

@media (min-width: 480px) {
  .c-about-history {
    padding-bottom: calc(8.33333vw + 40px); } }

@media (min-width: 1440px) {
  .c-about-history {
    padding-bottom: 160px; } }

@media (min-width: 1440px) {
  .c-about-history {
    padding-bottom: 11.11111vw; } }

@media (max-width: 1140px) {
  .c-about-history {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; } }

@media (max-width: 800px) {
  .c-about-history {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; } }

.c-about-history__text {
  width: 61.11111%; }

.c-about-history__text p {
  padding-top: 25px; }

@media (min-width: 480px) {
  .c-about-history__text p {
    padding-top: calc(2.60417vw + 12.5px); } }

@media (min-width: 1440px) {
  .c-about-history__text p {
    padding-top: 50px; } }

@media (min-width: 1440px) {
  .c-about-history__text p {
    padding-top: 3.47222vw; } }

@media (max-width: 800px) {
  .c-about-history__text {
    width: 100%; } }

.c-about-history__graphic {
  width: 27.77778%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end; }

@media (max-width: 800px) {
  .c-about-history__graphic {
    padding-top: 30px;
    width: 77.77778%; } }

@media (max-width: 800px) and (min-width: 480px) {
  .c-about-history__graphic {
    padding-top: calc(3.125vw + 15px); } }

@media (max-width: 800px) and (min-width: 1440px) {
  .c-about-history__graphic {
    padding-top: 60px; } }

@media (max-width: 800px) and (min-width: 1440px) {
  .c-about-history__graphic {
    padding-top: 4.16667vw; } }

.c-about-history__graphic .u-icon--cloud-paperplane {
  width: 100%;
  height: auto; }

.c-about-history .c-parallax-graphic--triangle-area {
  bottom: 1.73611vw;
  left: 8.68056vw; }

.c-about-history .c-parallax-graphic--pyramid {
  bottom: -10px;
  right: 30%; }

.c-about-history .c-parallax-graphic--pyramid .u-icon__background {
  color: #fed601;
  fill: #fed601; }

.c-investors-section {
  padding-top: 80px;
  padding-bottom: 80px; }

@media (min-width: 480px) {
  .c-investors-section {
    padding-top: calc(8.33333vw + 40px); } }

@media (min-width: 1440px) {
  .c-investors-section {
    padding-top: 160px; } }

@media (min-width: 1440px) {
  .c-investors-section {
    padding-top: 11.11111vw; } }

@media (min-width: 480px) {
  .c-investors-section {
    padding-bottom: calc(8.33333vw + 40px); } }

@media (min-width: 1440px) {
  .c-investors-section {
    padding-bottom: 160px; } }

@media (min-width: 1440px) {
  .c-investors-section {
    padding-bottom: 11.11111vw; } }

.c-investors-section__title {
  padding-bottom: 30px;
  text-align: center; }

@media (min-width: 480px) {
  .c-investors-section__title {
    padding-bottom: calc(3.125vw + 15px); } }

@media (min-width: 1440px) {
  .c-investors-section__title {
    padding-bottom: 60px; } }

@media (min-width: 1440px) {
  .c-investors-section__title {
    padding-bottom: 4.16667vw; } }

.c-investors-section__investors-row {
  padding-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }

@media (min-width: 480px) {
  .c-investors-section__investors-row {
    padding-top: calc(3.125vw + 15px); } }

@media (min-width: 1440px) {
  .c-investors-section__investors-row {
    padding-top: 60px; } }

@media (min-width: 1440px) {
  .c-investors-section__investors-row {
    padding-top: 4.16667vw; } }

@media (max-width: 800px) {
  .c-investors-section__investors-row {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; } }

.c-investors-section__investors-icon {
  padding-bottom: 10px;
  width: 16.66667%; }

@media (min-width: 480px) {
  .c-investors-section__investors-icon {
    padding-bottom: calc(1.04167vw + 5px); } }

@media (min-width: 1440px) {
  .c-investors-section__investors-icon {
    padding-bottom: 20px; } }

@media (min-width: 1440px) {
  .c-investors-section__investors-icon {
    padding-bottom: 1.38889vw; } }

.c-investors-section__investors-icon a {
  display: block;
  -webkit-transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53); }

@media (hover: none) {
  .c-investors-section__investors-icon a {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }
  .c-investors-section__investors-icon a:active {
    /* 1 */
    opacity: 0.5; } }

@media (hover: hover), all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .c-investors-section__investors-icon a:hover {
    /* 2 */
    opacity: 0.5; } }

@media (max-width: 800px) {
  .c-investors-section__investors-icon {
    padding-bottom: 64px;
    padding-left: 10px;
    padding-right: 10px;
    width: 33.33333%; } }

@media (max-width: 800px) and (min-width: 480px) {
  .c-investors-section__investors-icon {
    padding-bottom: calc(3.33333vw + 48px); } }

@media (max-width: 800px) and (min-width: 1440px) {
  .c-investors-section__investors-icon {
    padding-bottom: 96px; } }

@media (max-width: 800px) and (min-width: 1440px) {
  .c-investors-section__investors-icon {
    padding-bottom: 6.66667vw; } }

@media (max-width: 800px) and (min-width: 480px) {
  .c-investors-section__investors-icon {
    padding-left: calc(1.04167vw + 5px); } }

@media (max-width: 800px) and (min-width: 1440px) {
  .c-investors-section__investors-icon {
    padding-left: 20px; } }

@media (max-width: 800px) and (min-width: 1440px) {
  .c-investors-section__investors-icon {
    padding-left: 1.38889vw; } }

@media (max-width: 800px) and (min-width: 480px) {
  .c-investors-section__investors-icon {
    padding-right: calc(1.04167vw + 5px); } }

@media (max-width: 800px) and (min-width: 1440px) {
  .c-investors-section__investors-icon {
    padding-right: 20px; } }

@media (max-width: 800px) and (min-width: 1440px) {
  .c-investors-section__investors-icon {
    padding-right: 1.38889vw; } }

@media (max-width: 800px) {
  .c-investors-section__investors-icon {
    width: 100%;
    padding-left: 0;
    padding-right: 0; } }

.c-investors-section__icon {
  width: auto;
  margin: 0 auto; }

.c-investors-section .c-parallax-graphic--triangle-angles {
  top: 20%;
  right: 20%; }

.c-document-download {
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative; }

@media (min-width: 480px) {
  .c-document-download {
    padding-top: calc(8.33333vw + 40px); } }

@media (min-width: 1440px) {
  .c-document-download {
    padding-top: 160px; } }

@media (min-width: 1440px) {
  .c-document-download {
    padding-top: 11.11111vw; } }

@media (min-width: 480px) {
  .c-document-download {
    padding-bottom: calc(8.33333vw + 40px); } }

@media (min-width: 1440px) {
  .c-document-download {
    padding-bottom: 160px; } }

@media (min-width: 1440px) {
  .c-document-download {
    padding-bottom: 11.11111vw; } }

.c-document-download__graphic {
  position: absolute;
  width: 33.33333%;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  overflow: hidden; }

.c-document-download__graphic .u-icon {
  right: -10px;
  width: 100%;
  height: auto;
  position: relative; }

@media (min-width: 1440px) {
  .c-document-download__graphic .u-icon {
    right: -0.69444vw; } }

@media (max-width: 800px) {
  .c-document-download__graphic {
    display: none; } }

.c-document-download__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start; }

.c-document-download__col {
  width: 50%; }

@media (max-width: 800px) {
  .c-document-download__col {
    width: 100%; } }

.c-document-download__image {
  padding-bottom: 25px;
  padding-top: 25px; }

@media (min-width: 480px) {
  .c-document-download__image {
    padding-bottom: calc(2.60417vw + 12.5px); } }

@media (min-width: 1440px) {
  .c-document-download__image {
    padding-bottom: 50px; } }

@media (min-width: 1440px) {
  .c-document-download__image {
    padding-bottom: 3.47222vw; } }

@media (min-width: 480px) {
  .c-document-download__image {
    padding-top: calc(2.60417vw + 12.5px); } }

@media (min-width: 1440px) {
  .c-document-download__image {
    padding-top: 50px; } }

@media (min-width: 1440px) {
  .c-document-download__image {
    padding-top: 3.47222vw; } }

.c-document-download__image a {
  display: block;
  -webkit-transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53); }

@media (hover: none) {
  .c-document-download__image a {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }
  .c-document-download__image a:active {
    /* 1 */
    -webkit-box-shadow: 0px 10px 56px 0px rgba(0, 0, 0, 0.1);
            box-shadow: 0px 10px 56px 0px rgba(0, 0, 0, 0.1);
    -webkit-transform: scale(1.01);
            transform: scale(1.01); } }

@media (hover: hover), all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .c-document-download__image a:hover {
    /* 2 */
    -webkit-box-shadow: 0px 10px 56px 0px rgba(0, 0, 0, 0.1);
            box-shadow: 0px 10px 56px 0px rgba(0, 0, 0, 0.1);
    -webkit-transform: scale(1.01);
            transform: scale(1.01); } }

.c-document-download__link {
  color: #bf0c34;
  display: inline-block; }

.c-document-download__link a {
  display: block;
  position: relative;
  overflow: hidden; }

.c-document-download__link a span {
  -webkit-transform-origin: right center;
          transform-origin: right center;
  display: block;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease; }

.c-document-download__link a span:nth-child(even) {
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-transform: rotate(20deg);
          transform: rotate(20deg);
  position: absolute; }

@media (hover: none) {
  .c-document-download__link a {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }
  .c-document-download__link a:active {
    /* 1 */ }
  .c-document-download__link a:active .c-document-download__link-wrap {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%); }
  .c-document-download__link a:active .c-document-download__link-wrap span {
    -webkit-transform: rotate(20deg);
            transform: rotate(20deg); }
  .c-document-download__link a:active .c-document-download__link-wrap span:nth-child(even) {
    -webkit-transform: rotate(0);
            transform: rotate(0); } }

@media (hover: hover), all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .c-document-download__link a:hover {
    /* 2 */ }
  .c-document-download__link a:hover .c-document-download__link-wrap {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%); }
  .c-document-download__link a:hover .c-document-download__link-wrap span {
    -webkit-transform: rotate(20deg);
            transform: rotate(20deg); }
  .c-document-download__link a:hover .c-document-download__link-wrap span:nth-child(even) {
    -webkit-transform: rotate(0);
            transform: rotate(0); } }

.c-document-download__link-wrap {
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease; }

.c-document-download .c-parallax-graphic--triangle-angles {
  top: 8.68056vw;
  right: 34.72222vw; }

.c-document-download .c-parallax-graphic--pyramid {
  bottom: -1.38889vw;
  right: 34.72222vw; }

.c-document-download .c-parallax-graphic--pyramid .u-icon__background {
  color: #ff6230;
  fill: #ff6230; }

.c-media-kit-about {
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative; }

@media (min-width: 480px) {
  .c-media-kit-about {
    padding-top: calc(8.33333vw + 40px); } }

@media (min-width: 1440px) {
  .c-media-kit-about {
    padding-top: 160px; } }

@media (min-width: 1440px) {
  .c-media-kit-about {
    padding-top: 11.11111vw; } }

@media (min-width: 480px) {
  .c-media-kit-about {
    padding-bottom: calc(8.33333vw + 40px); } }

@media (min-width: 1440px) {
  .c-media-kit-about {
    padding-bottom: 160px; } }

@media (min-width: 1440px) {
  .c-media-kit-about {
    padding-bottom: 11.11111vw; } }

.c-media-kit-about__graphics {
  position: absolute;
  left: 4.16667%;
  bottom: 0;
  width: 20.83333%;
  z-index: 10; }

.c-media-kit-about__graphics .u-icon {
  width: 100%;
  height: auto; }

@media (max-width: 1140px) {
  .c-media-kit-about__graphics {
    bottom: 50%;
    left: 0;
    -webkit-transform: translateY(50%);
            transform: translateY(50%);
    width: 29.16667%; } }

@media (max-width: 480px) {
  .c-media-kit-about__graphics {
    bottom: auto;
    top: 0;
    -webkit-transform: translate(0);
            transform: translate(0);
    margin: 0 auto;
    width: 75%;
    position: relative; } }

.c-media-kit-about__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end; }

.c-media-kit-about__text {
  width: 61.11111%; }

@media (max-width: 480px) {
  .c-media-kit-about__text {
    width: 100%; } }

.c-media-kit-about__title {
  padding-bottom: 25px; }

@media (min-width: 480px) {
  .c-media-kit-about__title {
    padding-bottom: calc(2.60417vw + 12.5px); } }

@media (min-width: 1440px) {
  .c-media-kit-about__title {
    padding-bottom: 50px; } }

@media (min-width: 1440px) {
  .c-media-kit-about__title {
    padding-bottom: 3.47222vw; } }

.c-multimedia-content {
  padding-top: 80px;
  padding-bottom: 80px; }

@media (min-width: 480px) {
  .c-multimedia-content {
    padding-top: calc(8.33333vw + 40px); } }

@media (min-width: 1440px) {
  .c-multimedia-content {
    padding-top: 160px; } }

@media (min-width: 1440px) {
  .c-multimedia-content {
    padding-top: 11.11111vw; } }

@media (min-width: 480px) {
  .c-multimedia-content {
    padding-bottom: calc(8.33333vw + 40px); } }

@media (min-width: 1440px) {
  .c-multimedia-content {
    padding-bottom: 160px; } }

@media (min-width: 1440px) {
  .c-multimedia-content {
    padding-bottom: 11.11111vw; } }

.c-multimedia-content__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }

.c-multimedia-content__eyebrow {
  padding-top: 25px;
  padding-bottom: 25px; }

@media (min-width: 480px) {
  .c-multimedia-content__eyebrow {
    padding-top: calc(2.60417vw + 12.5px); } }

@media (min-width: 1440px) {
  .c-multimedia-content__eyebrow {
    padding-top: 50px; } }

@media (min-width: 1440px) {
  .c-multimedia-content__eyebrow {
    padding-top: 3.47222vw; } }

@media (min-width: 480px) {
  .c-multimedia-content__eyebrow {
    padding-bottom: calc(2.60417vw + 12.5px); } }

@media (min-width: 1440px) {
  .c-multimedia-content__eyebrow {
    padding-bottom: 50px; } }

@media (min-width: 1440px) {
  .c-multimedia-content__eyebrow {
    padding-bottom: 3.47222vw; } }

.c-multimedia-content__col {
  padding-bottom: 25px; }

@media (min-width: 480px) {
  .c-multimedia-content__col {
    padding-bottom: calc(2.60417vw + 12.5px); } }

@media (min-width: 1440px) {
  .c-multimedia-content__col {
    padding-bottom: 50px; } }

@media (min-width: 1440px) {
  .c-multimedia-content__col {
    padding-bottom: 3.47222vw; } }

.c-multimedia-content__col a .c-multimedia-content__image {
  -webkit-transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53); }

@media (hover: none) {
  .c-multimedia-content__col a {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }
  .c-multimedia-content__col a:active {
    /* 1 */ }
  .c-multimedia-content__col a:active .c-multimedia-content__image {
    -webkit-box-shadow: 0px 10px 56px 0px rgba(0, 0, 0, 0.1);
            box-shadow: 0px 10px 56px 0px rgba(0, 0, 0, 0.1);
    -webkit-transform: scale(1.01);
            transform: scale(1.01); } }

@media (hover: hover), all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .c-multimedia-content__col a:hover {
    /* 2 */ }
  .c-multimedia-content__col a:hover .c-multimedia-content__image {
    -webkit-box-shadow: 0px 10px 56px 0px rgba(0, 0, 0, 0.1);
            box-shadow: 0px 10px 56px 0px rgba(0, 0, 0, 0.1);
    -webkit-transform: scale(1.01);
            transform: scale(1.01); } }

.c-multimedia-content__links {
  padding-top: 10px; }

@media (min-width: 480px) {
  .c-multimedia-content__links {
    padding-top: calc(1.04167vw + 5px); } }

@media (min-width: 1440px) {
  .c-multimedia-content__links {
    padding-top: 20px; } }

@media (min-width: 1440px) {
  .c-multimedia-content__links {
    padding-top: 1.38889vw; } }

.c-multimedia-content__links p span {
  white-space: nowrap; }

.c-multimedia-content__links p span a {
  color: #bf0c34;
  position: relative; }

.c-multimedia-content__links p span a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: #bf0c34;
  -webkit-transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53); }

@media (hover: none) {
  .c-multimedia-content__links p span a {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }
  .c-multimedia-content__links p span a:active {
    /* 1 */ }
  .c-multimedia-content__links p span a:active:before {
    width: 100%; } }

@media (hover: hover), all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .c-multimedia-content__links p span a:hover {
    /* 2 */ }
  .c-multimedia-content__links p span a:hover:before {
    width: 100%; } }

.c-multimedia-content__download-wrap--two-col .c-multimedia-content__row {
  margin-left: -15px;
  margin-right: -15px; }

@media (min-width: 480px) {
  .c-multimedia-content__download-wrap--two-col .c-multimedia-content__row {
    margin-left: calc(-1.5625vw - 7.5px); } }

@media (min-width: 1440px) {
  .c-multimedia-content__download-wrap--two-col .c-multimedia-content__row {
    margin-left: -30px; } }

@media (min-width: 1440px) {
  .c-multimedia-content__download-wrap--two-col .c-multimedia-content__row {
    margin-left: -2.08333vw; } }

@media (min-width: 480px) {
  .c-multimedia-content__download-wrap--two-col .c-multimedia-content__row {
    margin-right: calc(-1.5625vw - 7.5px); } }

@media (min-width: 1440px) {
  .c-multimedia-content__download-wrap--two-col .c-multimedia-content__row {
    margin-right: -30px; } }

@media (min-width: 1440px) {
  .c-multimedia-content__download-wrap--two-col .c-multimedia-content__row {
    margin-right: -2.08333vw; } }

.c-multimedia-content__download-wrap--two-col .c-multimedia-content__col {
  padding-left: 15px;
  padding-right: 15px;
  width: 50%; }

@media (min-width: 480px) {
  .c-multimedia-content__download-wrap--two-col .c-multimedia-content__col {
    padding-left: calc(1.5625vw + 7.5px); } }

@media (min-width: 1440px) {
  .c-multimedia-content__download-wrap--two-col .c-multimedia-content__col {
    padding-left: 30px; } }

@media (min-width: 1440px) {
  .c-multimedia-content__download-wrap--two-col .c-multimedia-content__col {
    padding-left: 2.08333vw; } }

@media (min-width: 480px) {
  .c-multimedia-content__download-wrap--two-col .c-multimedia-content__col {
    padding-right: calc(1.5625vw + 7.5px); } }

@media (min-width: 1440px) {
  .c-multimedia-content__download-wrap--two-col .c-multimedia-content__col {
    padding-right: 30px; } }

@media (min-width: 1440px) {
  .c-multimedia-content__download-wrap--two-col .c-multimedia-content__col {
    padding-right: 2.08333vw; } }

@media (max-width: 800px) {
  .c-multimedia-content__download-wrap--two-col .c-multimedia-content__col {
    width: 100%; } }

.c-multimedia-content__download-wrap--three-col .c-multimedia-content__row {
  margin-left: -15px;
  margin-right: -15px; }

@media (min-width: 480px) {
  .c-multimedia-content__download-wrap--three-col .c-multimedia-content__row {
    margin-left: calc(-1.5625vw - 7.5px); } }

@media (min-width: 1440px) {
  .c-multimedia-content__download-wrap--three-col .c-multimedia-content__row {
    margin-left: -30px; } }

@media (min-width: 1440px) {
  .c-multimedia-content__download-wrap--three-col .c-multimedia-content__row {
    margin-left: -2.08333vw; } }

@media (min-width: 480px) {
  .c-multimedia-content__download-wrap--three-col .c-multimedia-content__row {
    margin-right: calc(-1.5625vw - 7.5px); } }

@media (min-width: 1440px) {
  .c-multimedia-content__download-wrap--three-col .c-multimedia-content__row {
    margin-right: -30px; } }

@media (min-width: 1440px) {
  .c-multimedia-content__download-wrap--three-col .c-multimedia-content__row {
    margin-right: -2.08333vw; } }

.c-multimedia-content__download-wrap--three-col .c-multimedia-content__col {
  padding-left: 15px;
  padding-right: 15px;
  width: 33.33333%; }

@media (min-width: 480px) {
  .c-multimedia-content__download-wrap--three-col .c-multimedia-content__col {
    padding-left: calc(1.5625vw + 7.5px); } }

@media (min-width: 1440px) {
  .c-multimedia-content__download-wrap--three-col .c-multimedia-content__col {
    padding-left: 30px; } }

@media (min-width: 1440px) {
  .c-multimedia-content__download-wrap--three-col .c-multimedia-content__col {
    padding-left: 2.08333vw; } }

@media (min-width: 480px) {
  .c-multimedia-content__download-wrap--three-col .c-multimedia-content__col {
    padding-right: calc(1.5625vw + 7.5px); } }

@media (min-width: 1440px) {
  .c-multimedia-content__download-wrap--three-col .c-multimedia-content__col {
    padding-right: 30px; } }

@media (min-width: 1440px) {
  .c-multimedia-content__download-wrap--three-col .c-multimedia-content__col {
    padding-right: 2.08333vw; } }

@media (max-width: 800px) {
  .c-multimedia-content__download-wrap--three-col .c-multimedia-content__col {
    width: 50%; } }

@media (max-width: 480px) {
  .c-multimedia-content__download-wrap--three-col .c-multimedia-content__col {
    width: 100%; } }

.c-multimedia-content__download-wrap--three-col .c-multimedia-content__image {
  background: #f8f8f8; }

@media (max-width: 1140px) {
  .c-multimedia-content__download-wrap--five-col .c-multimedia-content__row {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; } }

.c-multimedia-content__download-wrap--five-col .c-multimedia-content__col {
  width: 16.66667%; }

@media (max-width: 1140px) {
  .c-multimedia-content__download-wrap--five-col .c-multimedia-content__col {
    width: 33.33333%; } }

@media (max-width: 800px) {
  .c-multimedia-content__download-wrap--five-col .c-multimedia-content__col {
    width: 50%; } }

.c-multimedia-content__download-wrap--five-col .c-multimedia-content__image {
  padding-right: 10px;
  padding-left: 10px; }

@media (min-width: 480px) {
  .c-multimedia-content__download-wrap--five-col .c-multimedia-content__image {
    padding-right: calc(1.04167vw + 5px); } }

@media (min-width: 1440px) {
  .c-multimedia-content__download-wrap--five-col .c-multimedia-content__image {
    padding-right: 20px; } }

@media (min-width: 1440px) {
  .c-multimedia-content__download-wrap--five-col .c-multimedia-content__image {
    padding-right: 1.38889vw; } }

@media (min-width: 480px) {
  .c-multimedia-content__download-wrap--five-col .c-multimedia-content__image {
    padding-left: calc(1.04167vw + 5px); } }

@media (min-width: 1440px) {
  .c-multimedia-content__download-wrap--five-col .c-multimedia-content__image {
    padding-left: 20px; } }

@media (min-width: 1440px) {
  .c-multimedia-content__download-wrap--five-col .c-multimedia-content__image {
    padding-left: 1.38889vw; } }

@media (max-width: 1140px) {
  .c-multimedia-content__download-wrap--five-col .c-multimedia-content__image {
    width: 70%;
    margin: 0 auto; } }

@media (max-width: 1140px) {
  .c-multimedia-content__download-wrap--five-col .c-multimedia-content__links {
    text-align: center; } }

@media (max-width: 480px) {
  .c-multimedia-content__download-wrap--five-col .c-multimedia-content__links {
    padding-right: 4px;
    padding-left: 4px; } }

@media (max-width: 480px) and (min-width: 480px) {
  .c-multimedia-content__download-wrap--five-col .c-multimedia-content__links {
    padding-right: 4px; } }

@media (max-width: 480px) and (min-width: 1440px) {
  .c-multimedia-content__download-wrap--five-col .c-multimedia-content__links {
    padding-right: 4px; } }

@media (max-width: 480px) and (min-width: 1440px) {
  .c-multimedia-content__download-wrap--five-col .c-multimedia-content__links {
    padding-right: 0.27778vw; } }

@media (max-width: 480px) and (min-width: 480px) {
  .c-multimedia-content__download-wrap--five-col .c-multimedia-content__links {
    padding-left: 4px; } }

@media (max-width: 480px) and (min-width: 1440px) {
  .c-multimedia-content__download-wrap--five-col .c-multimedia-content__links {
    padding-left: 4px; } }

@media (max-width: 480px) and (min-width: 1440px) {
  .c-multimedia-content__download-wrap--five-col .c-multimedia-content__links {
    padding-left: 0.27778vw; } }

.c-multimedia-content .c-parallax-graphic--triangle-angles {
  top: 20%;
  right: 1.38889vw; }

.c-multimedia-content .c-parallax-graphic--triangle-area {
  top: 70%;
  left: 1.38889vw; }

.c-multimedia-content .c-parallax-graphic--cup {
  bottom: 24.30556vw;
  right: 1.38889vw; }

/**
 * Pages
 */
/**
 * Pages
 */
/**
 * Utilities
 */
/**
 * Utilities
 */
.u-icon {
  display: inline-block;
  width: 1em;
  height: 100%;
  stroke-width: 0;
  stroke: currentColor;
  fill: currentColor;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden; }

.u-icon-graphic {
  display: inline-block;
  stroke-width: 0;
  stroke: #000000;
  stroke: currentColor;
  fill: #000000;
  fill: currentColor;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden; }

@media (max-width: 800px) {
  .u-icon-graphic {
    width: 20px; } }

@media (max-width: 480px) {
  .u-icon-graphic {
    width: 16px; } }

.u-a6 {
  font-size: 32px;
  font-family: "AvenirNext", "Arial", sans-serif;
  line-height: 120%;
  letter-spacing: normal; }

@media (min-width: 480px) {
  .u-a6 {
    font-size: calc(6.04167vw + 3px); } }

@media (min-width: 1440px) {
  .u-a6 {
    font-size: 90px; } }

@media (min-width: 1440px) {
  .u-a6 {
    font-size: 6.25vw; } }

.u-a5, .c-section-content h2 {
  font-size: 28px;
  font-family: "AvenirNext", "Arial", sans-serif;
  line-height: 115%;
  letter-spacing: normal; }

@media (min-width: 480px) {
  .u-a5, .c-section-content h2 {
    font-size: calc(3.33333vw + 12px); } }

@media (min-width: 1440px) {
  .u-a5, .c-section-content h2 {
    font-size: 60px; } }

@media (min-width: 1440px) {
  .u-a5, .c-section-content h2 {
    font-size: 4.16667vw; } }

.u-a4, .c-numbers-card .u-icon, .c-text-edit h2 {
  font-size: 24px;
  font-family: "AvenirNext", "Arial", sans-serif;
  line-height: 110%;
  letter-spacing: normal; }

@media (min-width: 480px) {
  .u-a4, .c-numbers-card .u-icon, .c-text-edit h2 {
    font-size: calc(2.70833vw + 11px); } }

@media (min-width: 1440px) {
  .u-a4, .c-numbers-card .u-icon, .c-text-edit h2 {
    font-size: 50px; } }

@media (min-width: 1440px) {
  .u-a4, .c-numbers-card .u-icon, .c-text-edit h2 {
    font-size: 3.47222vw; } }

.u-a3, .c-text-edit p.is-big, .c-text-edit h3, .c-text-edit h4 {
  font-size: 20px;
  font-family: "AvenirNext", "Arial", sans-serif;
  line-height: 130%;
  letter-spacing: normal; }

@media (min-width: 480px) {
  .u-a3, .c-text-edit p.is-big, .c-text-edit h3, .c-text-edit h4 {
    font-size: calc(1.875vw + 11px); } }

@media (min-width: 1440px) {
  .u-a3, .c-text-edit p.is-big, .c-text-edit h3, .c-text-edit h4 {
    font-size: 38px; } }

@media (min-width: 1440px) {
  .u-a3, .c-text-edit p.is-big, .c-text-edit h3, .c-text-edit h4 {
    font-size: 2.63889vw; } }

.u-a2 {
  font-size: 18px;
  font-family: "AvenirNext", "Arial", sans-serif;
  line-height: 130%;
  letter-spacing: normal; }

@media (min-width: 480px) {
  .u-a2 {
    font-size: calc(0.83333vw + 14px); } }

@media (min-width: 1440px) {
  .u-a2 {
    font-size: 26px; } }

@media (min-width: 1440px) {
  .u-a2 {
    font-size: 1.80556vw; } }

.u-a1 {
  font-size: 16px;
  font-family: "AvenirNext", "Arial", sans-serif;
  line-height: 150%;
  letter-spacing: normal; }

@media (min-width: 480px) {
  .u-a1 {
    font-size: calc(0.625vw + 13px); } }

@media (min-width: 1440px) {
  .u-a1 {
    font-size: 22px; } }

@media (min-width: 1440px) {
  .u-a1 {
    font-size: 1.52778vw; } }

.u-b0, body, .c-section-content p, .c-text-edit p, .c-text-edit ul {
  font-size: 14px;
  font-family: "AvenirNext", "Arial", sans-serif;
  line-height: 140%;
  letter-spacing: normal; }

@media (min-width: 480px) {
  .u-b0, body, .c-section-content p, .c-text-edit p, .c-text-edit ul {
    font-size: calc(0.41667vw + 12px); } }

@media (min-width: 1440px) {
  .u-b0, body, .c-section-content p, .c-text-edit p, .c-text-edit ul {
    font-size: 18px; } }

@media (min-width: 1440px) {
  .u-b0, body, .c-section-content p, .c-text-edit p, .c-text-edit ul {
    font-size: 1.25vw; } }

.u-b1 {
  font-size: 12px;
  font-family: "AvenirNext", "Arial", sans-serif;
  line-height: 135%;
  letter-spacing: normal; }

@media (min-width: 480px) {
  .u-b1 {
    font-size: calc(0.41667vw + 10px); } }

@media (min-width: 1440px) {
  .u-b1 {
    font-size: 16px; } }

@media (min-width: 1440px) {
  .u-b1 {
    font-size: 1.11111vw; } }

.u-b2, .c-text-edit figure p,
.c-text-edit figure figcaption {
  font-size: 10px;
  font-family: "AvenirNext", "Arial", sans-serif;
  line-height: 135%;
  letter-spacing: normal; }

@media (min-width: 480px) {
  .u-b2, .c-text-edit figure p,
  .c-text-edit figure figcaption {
    font-size: calc(0.41667vw + 8px); } }

@media (min-width: 1440px) {
  .u-b2, .c-text-edit figure p,
  .c-text-edit figure figcaption {
    font-size: 14px; } }

@media (min-width: 1440px) {
  .u-b2, .c-text-edit figure p,
  .c-text-edit figure figcaption {
    font-size: 0.97222vw; } }

.u-uppercase {
  text-transform: uppercase; }

.u-capitalize {
  text-transform: capitalize; }

.u-text-left {
  text-align: left; }

.u-text-center {
  text-align: center; }

.u-text-right {
  text-align: right; }

.u-underline {
  text-decoration: underline; }

.u-fw-thin,
.u-fw-100 {
  font-weight: 100; }

.u-fw-extra-light,
.u-fw-200 {
  font-weight: 200; }

.u-fw-light,
.u-fw-300 {
  font-weight: 300; }

.u-fw-regular,
.u-fw-normal,
.u-fw-400 {
  font-weight: 400; }

.u-fw-medium,
.u-fw-500 {
  font-weight: 500; }

.u-fw-semi-bold,
.u-fw-600 {
  font-weight: 600; }

.u-fw-bold,
.u-fw-700,
.c-multimedia-content__links p span a {
  font-weight: 700; }

.u-fw-extra-bold,
.u-fw-800 {
  font-weight: 800; }

.u-fw-black,
.u-fw-900 {
  font-weight: 900; }

.u-ar-16-9 {
  padding-bottom: 56.25%; }

.u-ar-8-9 {
  padding-bottom: 88.88889%; }

.u-ar-1-1 {
  padding-bottom: 100%; }

.u-ar-2-1 {
  padding-bottom: 50%; }

.u-ar-1-2 {
  padding-bottom: 200%; }

.u-ar-4-3 {
  padding-bottom: 75%; }

.u-ar-3-4 {
  padding-bottom: 133.33333%; }

.u-ar-3-4 {
  padding-bottom: 133.33333%; }

.u-ar-3-2 {
  padding-bottom: 66.66667%; }

.u-ar-2-3 {
  padding-bottom: 150%; }

@media (max-width: 800px) {
  .u-ar-md-2-3 {
    padding-bottom: 150%; } }

.u-page-padding {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 100px;
  padding-right: 100px; }

@media (min-width: 480px) {
  .u-page-padding {
    padding-left: calc(10.41667vw + 50px); } }

@media (min-width: 1440px) {
  .u-page-padding {
    padding-left: 200px; } }

@media (min-width: 1440px) {
  .u-page-padding {
    padding-left: 13.88889vw; } }

@media (min-width: 480px) {
  .u-page-padding {
    padding-right: calc(10.41667vw + 50px); } }

@media (min-width: 1440px) {
  .u-page-padding {
    padding-right: 200px; } }

@media (min-width: 1440px) {
  .u-page-padding {
    padding-right: 13.88889vw; } }

@media (max-width: 480px) {
  .u-page-padding {
    padding-left: 30px;
    padding-right: 30px; } }

@media (max-width: 480px) and (min-width: 480px) {
  .u-page-padding {
    padding-left: calc(3.125vw + 15px); } }

@media (max-width: 480px) and (min-width: 1440px) {
  .u-page-padding {
    padding-left: 60px; } }

@media (max-width: 480px) and (min-width: 1440px) {
  .u-page-padding {
    padding-left: 4.16667vw; } }

@media (max-width: 480px) and (min-width: 480px) {
  .u-page-padding {
    padding-right: calc(3.125vw + 15px); } }

@media (max-width: 480px) and (min-width: 1440px) {
  .u-page-padding {
    padding-right: 60px; } }

@media (max-width: 480px) and (min-width: 1440px) {
  .u-page-padding {
    padding-right: 4.16667vw; } }

.u-shape {
  position: absolute;
  pointer-events: none;
  font-size: 1vw;
  width: 15px; }

@media (min-width: 480px) {
  .u-shape {
    width: calc(1.5625vw + 7.5px); } }

@media (min-width: 1440px) {
  .u-shape {
    width: 30px; } }

@media (min-width: 1440px) {
  .u-shape {
    width: 2.08333vw; } }

@media (max-width: 480px) {
  .u-shape {
    width: 30px;
    font-size: 2.5vw; } }

@media (max-width: 480px) and (min-width: 480px) {
  .u-shape {
    width: calc(3.125vw + 15px); } }

@media (max-width: 480px) and (min-width: 1440px) {
  .u-shape {
    width: 60px; } }

@media (max-width: 480px) and (min-width: 1440px) {
  .u-shape {
    width: 4.16667vw; } }

.u-rte--container {
  padding-left: 25%;
  padding-right: 25%; }

@media (max-width: 1140px) {
  .u-rte--container {
    padding-left: 12.5%;
    padding-right: 12.5%; } }

@media (max-width: 1140px) {
  .u-rte--container {
    padding-left: 8.33333%;
    padding-right: 8.33333%; } }

.u-rte > .narrow-block {
  padding-left: 8.33333%;
  padding-right: 8.33333%; }

.u-rte > h3 {
  padding-top: 64px; }

@media (min-width: 480px) {
  .u-rte > h3 {
    padding-top: calc(3.33333vw + 48px); } }

@media (min-width: 1440px) {
  .u-rte > h3 {
    padding-top: 96px; } }

@media (min-width: 1440px) {
  .u-rte > h3 {
    padding-top: 6.66667vw; } }

.u-rte > h4 {
  padding-top: 20px; }

@media (min-width: 480px) {
  .u-rte > h4 {
    padding-top: calc(2.08333vw + 10px); } }

@media (min-width: 1440px) {
  .u-rte > h4 {
    padding-top: 40px; } }

@media (min-width: 1440px) {
  .u-rte > h4 {
    padding-top: 2.77778vw; } }

.u-rte > h5 {
  padding-top: 20px; }

@media (min-width: 480px) {
  .u-rte > h5 {
    padding-top: calc(2.08333vw + 10px); } }

@media (min-width: 1440px) {
  .u-rte > h5 {
    padding-top: 40px; } }

@media (min-width: 1440px) {
  .u-rte > h5 {
    padding-top: 2.77778vw; } }

.u-rte > h6 {
  padding-top: 20px; }

@media (min-width: 480px) {
  .u-rte > h6 {
    padding-top: calc(2.08333vw + 10px); } }

@media (min-width: 1440px) {
  .u-rte > h6 {
    padding-top: 40px; } }

@media (min-width: 1440px) {
  .u-rte > h6 {
    padding-top: 2.77778vw; } }

.u-rte > h1,
.u-rte > h2,
.u-rte > h3,
.u-rte > h4 {
  width: 100%;
  margin: 0 auto; }

@media (max-width: 800px) {
  .u-rte > h1,
  .u-rte > h2,
  .u-rte > h3,
  .u-rte > h4 {
    max-width: 100%; } }

@media (max-width: 800px) {
  .u-rte > h1,
  .u-rte > h2,
  .u-rte > h3,
  .u-rte > h4 {
    padding-left: 4.16667%;
    padding-right: 4.16667%; } }

.u-rte > h1 a,
.u-rte > h2 a,
.u-rte > h3 a,
.u-rte > h4 a {
  text-decoration: none; }

.u-rte > h5,
.u-rte > h6,
.u-rte > p,
.u-rte > cite,
.u-rte > ul,
.u-rte > ol {
  width: 100%;
  margin: 0 auto; }

@media (max-width: 800px) {
  .u-rte > h5,
  .u-rte > h6,
  .u-rte > p,
  .u-rte > cite,
  .u-rte > ul,
  .u-rte > ol {
    padding-left: 4.16667%;
    padding-right: 4.16667%; } }

.u-rte > h5 a,
.u-rte > h6 a,
.u-rte > p a,
.u-rte > cite a,
.u-rte > ul a,
.u-rte > ol a {
  color: #bf0c34;
  -webkit-transition: opacity 0.25s;
  transition: opacity 0.25s; }

.u-rte > h5 a:hover,
.u-rte > h6 a:hover,
.u-rte > p a:hover,
.u-rte > cite a:hover,
.u-rte > ul a:hover,
.u-rte > ol a:hover {
  opacity: 0.5; }

.u-rte > h1 {
  font-size: 32px;
  padding-top: 64px;
  line-height: 1.01;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin-bottom: 1.3em; }

@media (min-width: 480px) {
  .u-rte > h1 {
    font-size: calc(6.04167vw + 3px); } }

@media (min-width: 1440px) {
  .u-rte > h1 {
    font-size: 90px; } }

@media (min-width: 1440px) {
  .u-rte > h1 {
    font-size: 6.25vw; } }

@media (min-width: 480px) {
  .u-rte > h1 {
    padding-top: calc(3.33333vw + 48px); } }

@media (min-width: 1440px) {
  .u-rte > h1 {
    padding-top: 96px; } }

@media (min-width: 1440px) {
  .u-rte > h1 {
    padding-top: 6.66667vw; } }

.u-rte > h2 {
  font-size: 28px;
  padding-top: 64px;
  line-height: 1.2;
  letter-spacing: normal;
  font-weight: 700;
  margin-bottom: 1.3em; }

@media (min-width: 480px) {
  .u-rte > h2 {
    font-size: calc(3.33333vw + 12px); } }

@media (min-width: 1440px) {
  .u-rte > h2 {
    font-size: 60px; } }

@media (min-width: 1440px) {
  .u-rte > h2 {
    font-size: 4.16667vw; } }

@media (min-width: 480px) {
  .u-rte > h2 {
    padding-top: calc(3.33333vw + 48px); } }

@media (min-width: 1440px) {
  .u-rte > h2 {
    padding-top: 96px; } }

@media (min-width: 1440px) {
  .u-rte > h2 {
    padding-top: 6.66667vw; } }

.u-rte > h3 {
  padding-bottom: 25px;
  font-size: 24px;
  padding-top: 64px;
  line-height: 1.2;
  letter-spacing: normal;
  font-weight: 700; }

@media (min-width: 480px) {
  .u-rte > h3 {
    padding-bottom: calc(2.60417vw + 12.5px); } }

@media (min-width: 1440px) {
  .u-rte > h3 {
    padding-bottom: 50px; } }

@media (min-width: 1440px) {
  .u-rte > h3 {
    padding-bottom: 3.47222vw; } }

@media (min-width: 480px) {
  .u-rte > h3 {
    font-size: calc(2.70833vw + 11px); } }

@media (min-width: 1440px) {
  .u-rte > h3 {
    font-size: 50px; } }

@media (min-width: 1440px) {
  .u-rte > h3 {
    font-size: 3.47222vw; } }

@media (min-width: 480px) {
  .u-rte > h3 {
    padding-top: calc(3.33333vw + 48px); } }

@media (min-width: 1440px) {
  .u-rte > h3 {
    padding-top: 96px; } }

@media (min-width: 1440px) {
  .u-rte > h3 {
    padding-top: 6.66667vw; } }

.u-rte > h4 {
  font-size: 20px;
  padding-bottom: 25px;
  padding-top: 20px;
  line-height: 1.3;
  letter-spacing: normal;
  font-weight: 700; }

@media (min-width: 480px) {
  .u-rte > h4 {
    font-size: calc(1.875vw + 11px); } }

@media (min-width: 1440px) {
  .u-rte > h4 {
    font-size: 38px; } }

@media (min-width: 1440px) {
  .u-rte > h4 {
    font-size: 2.63889vw; } }

@media (min-width: 480px) {
  .u-rte > h4 {
    padding-bottom: calc(2.60417vw + 12.5px); } }

@media (min-width: 1440px) {
  .u-rte > h4 {
    padding-bottom: 50px; } }

@media (min-width: 1440px) {
  .u-rte > h4 {
    padding-bottom: 3.47222vw; } }

@media (min-width: 480px) {
  .u-rte > h4 {
    padding-top: calc(2.08333vw + 10px); } }

@media (min-width: 1440px) {
  .u-rte > h4 {
    padding-top: 40px; } }

@media (min-width: 1440px) {
  .u-rte > h4 {
    padding-top: 2.77778vw; } }

.u-rte > h5 {
  font-size: 18px;
  padding-bottom: 25px;
  padding-top: 20px;
  line-height: 1.3;
  letter-spacing: normal;
  font-weight: 700; }

@media (min-width: 480px) {
  .u-rte > h5 {
    font-size: calc(0.83333vw + 14px); } }

@media (min-width: 1440px) {
  .u-rte > h5 {
    font-size: 26px; } }

@media (min-width: 1440px) {
  .u-rte > h5 {
    font-size: 1.80556vw; } }

@media (min-width: 480px) {
  .u-rte > h5 {
    padding-bottom: calc(2.60417vw + 12.5px); } }

@media (min-width: 1440px) {
  .u-rte > h5 {
    padding-bottom: 50px; } }

@media (min-width: 1440px) {
  .u-rte > h5 {
    padding-bottom: 3.47222vw; } }

@media (min-width: 480px) {
  .u-rte > h5 {
    padding-top: calc(2.08333vw + 10px); } }

@media (min-width: 1440px) {
  .u-rte > h5 {
    padding-top: 40px; } }

@media (min-width: 1440px) {
  .u-rte > h5 {
    padding-top: 2.77778vw; } }

.u-rte > h6 {
  font-size: 16px;
  padding-bottom: 25px;
  padding-top: 20px;
  line-height: 1.3;
  letter-spacing: normal;
  font-weight: 700; }

@media (min-width: 480px) {
  .u-rte > h6 {
    font-size: calc(0.625vw + 13px); } }

@media (min-width: 1440px) {
  .u-rte > h6 {
    font-size: 22px; } }

@media (min-width: 1440px) {
  .u-rte > h6 {
    font-size: 1.52778vw; } }

@media (min-width: 480px) {
  .u-rte > h6 {
    padding-bottom: calc(2.60417vw + 12.5px); } }

@media (min-width: 1440px) {
  .u-rte > h6 {
    padding-bottom: 50px; } }

@media (min-width: 1440px) {
  .u-rte > h6 {
    padding-bottom: 3.47222vw; } }

@media (min-width: 480px) {
  .u-rte > h6 {
    padding-top: calc(2.08333vw + 10px); } }

@media (min-width: 1440px) {
  .u-rte > h6 {
    padding-top: 40px; } }

@media (min-width: 1440px) {
  .u-rte > h6 {
    padding-top: 2.77778vw; } }

.u-rte > p {
  font-size: 12px;
  padding-bottom: 15px;
  line-height: 1.2;
  letter-spacing: normal;
  font-weight: 500; }

@media (min-width: 480px) {
  .u-rte > p {
    font-size: calc(0.41667vw + 10px); } }

@media (min-width: 1440px) {
  .u-rte > p {
    font-size: 16px; } }

@media (min-width: 1440px) {
  .u-rte > p {
    font-size: 1.11111vw; } }

@media (min-width: 480px) {
  .u-rte > p {
    padding-bottom: calc(1.5625vw + 7.5px); } }

@media (min-width: 1440px) {
  .u-rte > p {
    padding-bottom: 30px; } }

@media (min-width: 1440px) {
  .u-rte > p {
    padding-bottom: 2.08333vw; } }

.u-rte > p:last-child {
  margin-bottom: 0; }

.u-rte > p img {
  width: 100% !important;
  height: auto !important; }

.u-rte > .wp-block-image figcaption {
  padding-top: 4px;
  font-size: 10px;
  line-height: 1.1;
  letter-spacing: normal;
  font-weight: 500;
  margin: 0 auto;
  opacity: 0.5;
  width: 100%; }

@media (min-width: 480px) {
  .u-rte > .wp-block-image figcaption {
    padding-top: 4px; } }

@media (min-width: 1440px) {
  .u-rte > .wp-block-image figcaption {
    padding-top: 4px; } }

@media (min-width: 1440px) {
  .u-rte > .wp-block-image figcaption {
    padding-top: 0.27778vw; } }

@media (min-width: 480px) {
  .u-rte > .wp-block-image figcaption {
    font-size: calc(0.41667vw + 8px); } }

@media (min-width: 1440px) {
  .u-rte > .wp-block-image figcaption {
    font-size: 14px; } }

@media (min-width: 1440px) {
  .u-rte > .wp-block-image figcaption {
    font-size: 0.97222vw; } }

.u-rte > ul,
.u-rte > ol {
  padding-bottom: 10px;
  list-style: none;
  list-style-position: inside; }

@media (min-width: 480px) {
  .u-rte > ul,
  .u-rte > ol {
    padding-bottom: calc(1.04167vw + 5px); } }

@media (min-width: 1440px) {
  .u-rte > ul,
  .u-rte > ol {
    padding-bottom: 20px; } }

@media (min-width: 1440px) {
  .u-rte > ul,
  .u-rte > ol {
    padding-bottom: 1.38889vw; } }

.u-rte > ul li,
.u-rte > ol li {
  font-size: 14px;
  margin-left: 8.33333%;
  line-height: 1.2;
  letter-spacing: normal;
  font-weight: 500;
  margin-bottom: 0.6em;
  position: relative; }

@media (min-width: 480px) {
  .u-rte > ul li,
  .u-rte > ol li {
    font-size: calc(0.41667vw + 12px); } }

@media (min-width: 1440px) {
  .u-rte > ul li,
  .u-rte > ol li {
    font-size: 18px; } }

@media (min-width: 1440px) {
  .u-rte > ul li,
  .u-rte > ol li {
    font-size: 1.25vw; } }

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

.u-rte > ul ul,
.u-rte > ul ol,
.u-rte > ol ul,
.u-rte > ol ol {
  padding-bottom: 4px;
  margin-top: 0.6em;
  width: 100%; }

@media (min-width: 480px) {
  .u-rte > ul ul,
  .u-rte > ul ol,
  .u-rte > ol ul,
  .u-rte > ol ol {
    padding-bottom: 4px; } }

@media (min-width: 1440px) {
  .u-rte > ul ul,
  .u-rte > ul ol,
  .u-rte > ol ul,
  .u-rte > ol ol {
    padding-bottom: 4px; } }

@media (min-width: 1440px) {
  .u-rte > ul ul,
  .u-rte > ul ol,
  .u-rte > ol ul,
  .u-rte > ol ol {
    padding-bottom: 0.27778vw; } }

.u-rte > ul ul li:before,
.u-rte > ul ol li:before,
.u-rte > ol ul li:before,
.u-rte > ol ol li:before {
  background-color: transparent; }

.u-rte > ul ul li:before,
.u-rte > ol ul li:before {
  border: 1px solid black; }

.u-rte > ul li:before {
  width: 5px;
  height: 5px;
  content: "";
  display: block;
  position: absolute;
  right: 100%;
  margin-right: 0.7em;
  top: 0.55em;
  background-color: black;
  font-size: 0.8em;
  border-radius: 50%; }

@media (min-width: 1440px) {
  .u-rte > ul li:before {
    width: 0.34722vw; } }

@media (min-width: 1440px) {
  .u-rte > ul li:before {
    height: 0.34722vw; } }

.u-rte > ol {
  counter-reset: li;
  width: 100%;
  margin: 0 auto;
  min-width: unset; }

.u-rte > ol li {
  width: 100%; }

.u-rte > ol li:before {
  display: block;
  position: absolute;
  right: 100%;
  margin-right: 0.3em;
  top: 0;
  counter-increment: li;
  content: counter(li, decimal-leading-zero) ".";
  color: black;
  font-size: 1em;
  -webkit-transform: scale(0.8);
          transform: scale(0.8); }

.u-rte > ol li ol {
  counter-reset: li;
  padding-left: 7.14286%; }

.u-rte > ol li ol li:before {
  margin-right: 0.3em;
  top: 0;
  -webkit-transform: scale(0.7);
          transform: scale(0.7); }

.u-rte > li {
  position: relative; }

.u-rte > .wp-block-image {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  float: none !important; }

.u-rte > .wp-block-image img {
  width: 100%; }

.u-rte > .wp-block-gallery {
  width: 100%;
  margin: 0 auto; }

.u-rte > .wp-block-gallery li:before {
  display: none; }

.u-rte > .wp-block-pullquote {
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 4.16667%;
  padding-right: 4.16667%;
  width: 100%; }

@media (min-width: 480px) {
  .u-rte > .wp-block-pullquote {
    margin-bottom: calc(1.04167vw + 5px); } }

@media (min-width: 1440px) {
  .u-rte > .wp-block-pullquote {
    margin-bottom: 20px; } }

@media (min-width: 1440px) {
  .u-rte > .wp-block-pullquote {
    margin-bottom: 1.38889vw; } }

.u-rte > .wp-block-pullquote.is-style-large {
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
  width: 100%; }

@media (min-width: 480px) {
  .u-rte > .wp-block-pullquote.is-style-large {
    margin-bottom: calc(1.04167vw + 5px); } }

@media (min-width: 1440px) {
  .u-rte > .wp-block-pullquote.is-style-large {
    margin-bottom: 20px; } }

@media (min-width: 1440px) {
  .u-rte > .wp-block-pullquote.is-style-large {
    margin-bottom: 1.38889vw; } }

.u-rte > .wp-block-pullquote.is-style-large p,
.u-rte > .wp-block-pullquote.is-style-large cite {
  font-style: normal;
  width: 100%;
  max-width: 100%; }

.u-rte > .wp-block-pullquote.is-style-large p {
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: normal;
  font-weight: 500;
  margin-bottom: 0.52em; }

@media (min-width: 480px) {
  .u-rte > .wp-block-pullquote.is-style-large p {
    font-size: calc(1.875vw + 11px); } }

@media (min-width: 1440px) {
  .u-rte > .wp-block-pullquote.is-style-large p {
    font-size: 38px; } }

@media (min-width: 1440px) {
  .u-rte > .wp-block-pullquote.is-style-large p {
    font-size: 2.63889vw; } }

.u-rte > .wp-block-pullquote.is-style-large cite {
  font-size: 12px;
  line-height: 1.25;
  letter-spacing: normal;
  font-weight: 500; }

@media (min-width: 480px) {
  .u-rte > .wp-block-pullquote.is-style-large cite {
    font-size: calc(0.41667vw + 10px); } }

@media (min-width: 1440px) {
  .u-rte > .wp-block-pullquote.is-style-large cite {
    font-size: 16px; } }

@media (min-width: 1440px) {
  .u-rte > .wp-block-pullquote.is-style-large cite {
    font-size: 1.11111vw; } }

.u-rte > .wp-block-pullquote p {
  font-size: 16px;
  color: black;
  margin-bottom: 1.2em;
  padding-left: 0;
  padding-right: 0;
  position: relative;
  width: 100%;
  line-height: 1.3;
  letter-spacing: normal;
  font-weight: 500; }

@media (min-width: 480px) {
  .u-rte > .wp-block-pullquote p {
    font-size: calc(0.625vw + 13px); } }

@media (min-width: 1440px) {
  .u-rte > .wp-block-pullquote p {
    font-size: 22px; } }

@media (min-width: 1440px) {
  .u-rte > .wp-block-pullquote p {
    font-size: 1.52778vw; } }

.u-rte > .wp-block-pullquote p:before {
  left: -30px;
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  border-left: 1px solid black; }

@media (min-width: 1440px) {
  .u-rte > .wp-block-pullquote p:before {
    left: -2.08333vw; } }

.u-rte > .wp-block-pullquote cite {
  font-size: 12px;
  line-height: 1.25;
  letter-spacing: normal;
  font-weight: 500;
  padding-left: 0;
  padding-right: 0; }

@media (min-width: 480px) {
  .u-rte > .wp-block-pullquote cite {
    font-size: calc(0.41667vw + 10px); } }

@media (min-width: 1440px) {
  .u-rte > .wp-block-pullquote cite {
    font-size: 16px; } }

@media (min-width: 1440px) {
  .u-rte > .wp-block-pullquote cite {
    font-size: 1.11111vw; } }

/**
 * Vendors
 */
/**
 * Third party vendors
 */
@font-face {
  font-family: 'swiper-icons';
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal; }

:root {
  --swiper-theme-color: #007aff; }

.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1; }

.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
          box-sizing: content-box; }

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0); }

.swiper-container-multirow > .swiper-wrapper {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }

.swiper-container-multirow-column > .swiper-wrapper {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }

.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  margin: 0 auto; }

.swiper-container-pointer-events {
  -ms-touch-action: pan-y;
      touch-action: pan-y; }

.swiper-container-pointer-events.swiper-container-vertical {
  -ms-touch-action: pan-x;
      touch-action: pan-x; }

.swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform; }

.swiper-slide-invisible-blank {
  visibility: hidden; }

/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto; }

.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform; }

/* 3D Effects */
.swiper-container-3d {
  -webkit-perspective: 1200px;
          perspective: 1200px; }

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d; }

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10; }

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }

/* CSS Mode */
.swiper-container-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */ }

.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none; }

.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start; }

.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory; }

.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
      scroll-snap-type: y mandatory; }

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out; }

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  transition-property: opacity; }

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none; }

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto; }

/**
 * Vendors
 */
.cookie-panel {
  position: fixed;
  bottom: 0;
  z-index: 999;
  width: 100%;
  padding: 32px;
  background: rgba(0, 0, 0, 0.75);
  color: white;
  font-size: 13px; }

.cookie-panel p {
  margin: 0;
  font-size: 13px;
  line-height: 19px; }

.cookie-panel a {
  color: white;
  font-weight: bold;
  text-decoration: underline; }

.cookie-panel .buttons {
  text-align: right;
  margin-bottom: 5px; }

.cookie-panel .buttons button {
  margin: 5px 10px 2px;
  font-size: 13px;
  font-weight: bold;
  line-height: 16px;
  background: transparent;
  color: white;
  text-transform: uppercase;
  padding: 8px 20px;
  border: 1px solid #ffffff;
  border-radius: 45px;
  cursor: pointer; }

.cookie-panel .buttons button:hover, .cookie-panel .buttons button:active, .cookie-panel .buttons button:focus {
  background: unset;
  color: unset;
  outline: unset; }

.cookie-panel .buttons button.settings {
  border: 0; }

.cookie-panel .buttons button.all {
  border: 0;
  background: white no-repeat 20px center url(data:image/svg+xml;charset=utf-8;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iMTUiIHZpZXdCb3g9IjAgMCAxNCAxNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4NCjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTEuNjMwNiAyLjcyMzkyQzEyLjA1OTIgMy4wNzIxOCAxMi4xMjQ0IDMuNzAxOTkgMTEuNzc2MSA0LjEzMDYyTDUuMjc2MTEgMTIuMTMwNkM1LjA5NzU4IDEyLjM1MDQgNC44MzQyNyAxMi40ODQxIDQuNTUxNTIgMTIuNDk4N0M0LjI2ODc3IDEyLjUxMzMgMy45OTMwOSAxMi40MDczIDMuNzkyODkgMTIuMjA3MUwwLjI5Mjg5MyA4LjcwNzE0Qy0wLjA5NzYzMTEgOC4zMTY2MSAtMC4wOTc2MzExIDcuNjgzNDUgMC4yOTI4OTMgNy4yOTI5M0MwLjY4MzQxNyA2LjkwMjQgMS4zMTY1OCA2LjkwMjQgMS43MDcxMSA3LjI5MjkzTDQuNDIzMDggMTAuMDA4OUwxMC4yMjM5IDIuODY5NDRDMTAuNTcyMiAyLjQ0MDggMTEuMjAyIDIuMzc1NjUgMTEuNjMwNiAyLjcyMzkyWiIgZmlsbD0iYmxhY2siLz4NCjwvc3ZnPg==);
  padding-left: 42px;
  color: black; }

.cookie-overlay {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.3);
  top: 0 !important;
  left: 0 !important;
  width: 100%;
  height: 100%;
  overflow: auto;
  text-align: center;
  vertical-align: middle;
  z-index: 1000; }

.cookie-modal {
  position: relative;
  display: inline-block;
  text-align: left;
  background: #fff;
  margin: 14px auto;
  border: none;
  border-radius: 4px;
  -webkit-box-shadow: 1px 3px 3px 0 rgba(0, 0, 0, 0.2), 1px 3px 15px 2px rgba(0, 0, 0, 0.2);
          box-shadow: 1px 3px 3px 0 rgba(0, 0, 0, 0.2), 1px 3px 15px 2px rgba(0, 0, 0, 0.2);
  color: #4c4f54; }

.cookie-modal * {
  font-size: 14px;
  line-height: 20px; }

.cookie-modal .close {
  position: absolute;
  display: inline-block;
  margin: 0;
  top: 42px;
  right: 42px;
  width: 32px;
  height: 32px;
  background: no-repeat center url(data:image/svg+xml;charset=utf-8;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4NCjxwYXRoIGQ9Ik0zLjcwNzExIDIuMjkyODlDMy4zMTY1OCAxLjkwMjM3IDIuNjgzNDIgMS45MDIzNyAyLjI5Mjg5IDIuMjkyODlDMS45MDIzNyAyLjY4MzQyIDEuOTAyMzcgMy4zMTY1OCAyLjI5Mjg5IDMuNzA3MTFMMTAuNTg1OCAxMkwyLjI5Mjg5IDIwLjI5MjlDMS45MDIzNyAyMC42ODM0IDEuOTAyMzcgMjEuMzE2NiAyLjI5Mjg5IDIxLjcwNzFDMi42ODM0MiAyMi4wOTc2IDMuMzE2NTggMjIuMDk3NiAzLjcwNzExIDIxLjcwNzFMMTIgMTMuNDE0MkwyMC4yOTI5IDIxLjcwNzFDMjAuNjgzNCAyMi4wOTc2IDIxLjMxNjYgMjIuMDk3NiAyMS43MDcxIDIxLjcwNzFDMjIuMDk3NiAyMS4zMTY2IDIyLjA5NzYgMjAuNjgzNCAyMS43MDcxIDIwLjI5MjlMMTMuNDE0MiAxMkwyMS43MDcxIDMuNzA3MTFDMjIuMDk3NiAzLjMxNjU4IDIyLjA5NzYgMi42ODM0MiAyMS43MDcxIDIuMjkyODlDMjEuMzE2NiAxLjkwMjM3IDIwLjY4MzQgMS45MDIzNyAyMC4yOTI5IDIuMjkyODlMMTIgMTAuNTg1OEwzLjcwNzExIDIuMjkyODlaIiBmaWxsPSIjNEM0RjU0Ii8+DQo8L3N2Zz4=);
  cursor: pointer;
  opacity: 0.8; }

.privacy-panel-page {
  min-height: 500px; }

.privacy-panel-page .settings {
  width: 800px;
  margin: 0 auto;
  padding-top: 100px; }

.privacy-panel-page .settings .content {
  margin: 0 !important; }

.privacy-panel-page .settings h3 {
  margin: 10px 0 48px;
  font-size: 40px;
  color: black; }

.privacy-panel-page .settings p {
  font-size: 14px;
  line-height: 16px; }

.ui.modal.cookie-modal,
.privacy-panel-page .settings {
  width: 643px;
  font-size: 14px;
  line-height: 19px;
  color: #4c4f54; }

.ui.modal.cookie-modal a,
.privacy-panel-page .settings a {
  color: unset;
  font-weight: bold;
  text-decoration: underline; }

.ui.modal.cookie-modal .content,
.privacy-panel-page .settings .content {
  margin: 88px 40px 40px;
  padding: 0;
  width: unset; }

.ui.modal.cookie-modal .content .list,
.privacy-panel-page .settings .content .list {
  margin: 14px 0; }

.ui.modal.cookie-modal .item,
.privacy-panel-page .settings .item {
  margin-bottom: 18px;
  font-size: 14px;
  line-height: 16px;
  padding: 3px 0; }

.ui.modal.cookie-modal .item .header,
.privacy-panel-page .settings .item .header {
  margin-bottom: 11px;
  font-weight: bold; }

.ui.modal.cookie-modal .item .checkbox,
.privacy-panel-page .settings .item .checkbox {
  margin-bottom: 0 !important; }

.ui.modal.cookie-modal .item .checkbox input[type="checkbox"],
.privacy-panel-page .settings .item .checkbox input[type="checkbox"] {
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0 !important;
  outline: 0;
  z-index: -1; }

.ui.modal.cookie-modal .item .checkbox label,
.privacy-panel-page .settings .item .checkbox label {
  display: block;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-top: 2.4px;
  font-size: 16px !important;
  line-height: 22px !important;
  padding-left: 72px;
  cursor: pointer; }

.ui.modal.cookie-modal .item .checkbox label::before,
.ui.modal.cookie-modal .item .checkbox input:focus ~ label::before,
.privacy-panel-page .settings .item .checkbox label::before,
.privacy-panel-page .settings .item .checkbox input:focus ~ label::before {
  display: block;
  position: absolute;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  left: 0;
  top: 0;
  width: 58px;
  height: 24px;
  border: 1px solid black !important;
  background: unset !important;
  border-radius: 12px;
  font-weight: bold;
  font-size: 11px;
  line-height: 24px;
  padding-left: 24px;
  content: "OFF" !important; }

.ui.modal.cookie-modal .item .checkbox.checked label::before,
.ui.modal.cookie-modal .item .checkbox.checked input:focus ~ label::before,
.privacy-panel-page .settings .item .checkbox.checked label::before,
.privacy-panel-page .settings .item .checkbox.checked input:focus ~ label::before {
  background-color: unset !important;
  padding-left: 12px;
  content: "ON" !important; }

.ui.modal.cookie-modal .item .checkbox label::after,
.privacy-panel-page .settings .item .checkbox label::after {
  content: "";
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: background-color 0.3s ease, left 0.3s ease;
  transition: background-color 0.3s ease, left 0.3s ease;
  border: 1px solid black;
  border-radius: 700px;
  -webkit-box-shadow: unset;
          box-shadow: unset;
  background: white;
  width: 16px;
  height: 16px;
  top: 4px;
  left: 5px; }

.ui.modal.cookie-modal .item .checkbox.checked label::after,
.privacy-panel-page .settings .item .checkbox.checked label::after {
  left: 38px;
  background-color: black; }

.ui.modal.cookie-modal .item .checkbox.disabled,
.privacy-panel-page .settings .item .checkbox.disabled {
  opacity: 0.5; }

.ui.modal.cookie-modal .item .checkbox.disabled label,
.privacy-panel-page .settings .item .checkbox.disabled label {
  cursor: unset; }

.ui.modal.cookie-modal .buttons,
.privacy-panel-page .settings .buttons {
  margin: 32px 0;
  text-align: center; }

.ui.modal.cookie-modal .buttons button,
.privacy-panel-page .settings .buttons button {
  background: #bf0c34 no-repeat 20px center url(data:image/svg+xml;charset=utf-8;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iMTUiIHZpZXdCb3g9IjAgMCAxNCAxNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4NCjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTEuNjMwNiAyLjcyMzkyQzEyLjA1OTIgMy4wNzIxOCAxMi4xMjQ0IDMuNzAxOTkgMTEuNzc2MSA0LjEzMDYyTDUuMjc2MTEgMTIuMTMwNkM1LjA5NzU4IDEyLjM1MDQgNC44MzQyNyAxMi40ODQxIDQuNTUxNTIgMTIuNDk4N0M0LjI2ODc3IDEyLjUxMzMgMy45OTMwOSAxMi40MDczIDMuNzkyODkgMTIuMjA3MUwwLjI5Mjg5MyA4LjcwNzE0Qy0wLjA5NzYzMTEgOC4zMTY2MSAtMC4wOTc2MzExIDcuNjgzNDUgMC4yOTI4OTMgNy4yOTI5M0MwLjY4MzQxNyA2LjkwMjQgMS4zMTY1OCA2LjkwMjQgMS43MDcxMSA3LjI5MjkzTDQuNDIzMDggMTAuMDA4OUwxMC4yMjM5IDIuODY5NDRDMTAuNTcyMiAyLjQ0MDggMTEuMjAyIDIuMzc1NjUgMTEuNjMwNiAyLjcyMzkyWiIgZmlsbD0id2hpdGUiLz4NCjwvc3ZnPg==);
  border: 0;
  border-radius: 45px;
  padding: 12px 20px 12px 42px;
  color: white;
  font-weight: bold;
  font-size: 13px;
  line-height: 16px;
  cursor: pointer; }

.ui.modal.cookie-modal .buttons button:focus,
.privacy-panel-page .settings .buttons button:focus {
  outline: 0; }

.privacy-panel-page .settings {
  width: 800px; }

@media only screen and (max-width: 859px) {
  .privacy-panel-page .settings {
    width: 100%;
    margin: 0;
    padding-top: 0;
    padding-left: 20px;
    padding-right: 20px; } }

@media only screen and (max-width: 767px) {
  .ui.modal.cookie-modal .content {
    margin-top: 40px; }
  .ui.modal > .close {
    top: 7px;
    right: 7px; } }

@media only screen and (max-width: 640px) {
  .ui.modal.cookie-modal {
    margin-top: 0 !important;
    width: 100%; }
  .ui.modal.cookie-modal .content {
    margin: 40px 20px;
    padding: 0 !important; } }

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