@charset "UTF-8";
/**
 * 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;
 *  }
 */
/**
 * replacement function for math.div()
 * usage:
 * padding-left: percentage(1, 24);
 */
/**
 * Third party tools
 */
/**
 * Settings
 */
/**
 * Settings
 */
/**
 * Breakpoints
 */
/**
 * Breakpoints - map
 */
/**
 * Colors
 */
/**
 * Colors - focus accessibility
 */
/**
 * Colors - components
 */
/**
 * Spacing map
 */
/**
 * Transition easing variables
 */
/**
 * Transition easing map
 */
/**
 * Transitions map
 */
/**
 * Roboto
 */
@font-face {
  font-family: "Avenir Bold";
  src: url("../fonts/AvenirBold.woff2?1") format("woff2"), url("../fonts/AvenirBold.woff?1") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Avenir Regular";
  src: url("../fonts/AvenirRegular.woff2?1") format("woff2"), url("../fonts/AvenirRegular.woff?1") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Matter";
  src: url("../fonts/Matter-Regular.woff2?1") format("woff2"), url("../fonts/Matter-Regular.woff?1") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Telegraf";
  src: url("../fonts/Telegraf-Regular.woff2?1") format("woff2"), url("../fonts/Telegraf-Regular.woff?1") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/**
 * Font variables
 */
/**
 * Font size map
 */
/**
 * Z-index
 */
/**
 * 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
 */
:root {
  --navigation-height: 63px;
}

@media (max-width: 1140px) {
  :root {
    --navigation-height: 52px;
  }
}
html,
body {
  -webkit-font-smoothing: antialiased;
}

body {
  background-color: #fafafa;
  color: #1d1d1f;
}

body.home {
  background-color: #161617;
}

html {
  position: relative;
}

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 #fafafa, 0 0 0 4px #000000;
          box-shadow: 0 0 0 2px #fafafa, 0 0 0 4px #000000;
}

/**
 * Objects
 */
/**
 * Objects
 */
.o-container {
  width: 100%;
  margin: 0 auto;
  max-width: 2000px;
}

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

@media (max-width: 1140px) {
  .o-container__inner {
    padding-left: 4.1666666667%;
    padding-right: 4.1666666667%;
  }
}
@media (max-width: 800px) {
  .o-container__inner {
    padding-left: 4.1666666667%;
  }
}
.o-container--narrow {
  max-width: 1280px;
}

.o-container--none .o-container__inner {
  padding: 0;
}

.o-container--full {
  max-width: 2560px;
}

.o-container--full .o-container__inner {
  padding-left: 12px;
  padding-right: 12px;
}

@media (min-width: 480px) {
  .o-container--full .o-container__inner {
    padding-left: calc(1.25vw + 6px);
  }
}
@media (min-width: 800px) {
  .o-container--full .o-container__inner {
    padding-left: 16px;
  }
}
@media (min-width: 1440px) {
  .o-container--full .o-container__inner {
    padding-left: 16px;
  }
}
@media (min-width: 2560px) {
  .o-container--full .o-container__inner {
    padding-left: calc(0.1612903226vw + 11.8709677419px);
  }
}
@media (min-width: 3800px) {
  .o-container--full .o-container__inner {
    padding-left: 18px;
  }
}
@media (min-width: 480px) {
  .o-container--full .o-container__inner {
    padding-right: calc(1.25vw + 6px);
  }
}
@media (min-width: 800px) {
  .o-container--full .o-container__inner {
    padding-right: 16px;
  }
}
@media (min-width: 1440px) {
  .o-container--full .o-container__inner {
    padding-right: 16px;
  }
}
@media (min-width: 2560px) {
  .o-container--full .o-container__inner {
    padding-right: calc(0.1612903226vw + 11.8709677419px);
  }
}
@media (min-width: 3800px) {
  .o-container--full .o-container__inner {
    padding-right: 18px;
  }
}
@media (max-width: 480px) {
  .o-container--full .o-container__inner {
    padding-left: 4.1666666667%;
    padding-right: 4.1666666667%;
  }
}
.o-container--wide {
  max-width: 2000px;
}

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

.o-container--max-width {
  max-width: 100%;
}

.o-container--max-width .o-container__inner {
  padding: 0;
}

.o-navigation {
  position: relative;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
}

.o-navigation.is-fixed {
  position: fixed;
}

.o-navigation-dummy {
  position: relative;
  display: none;
  width: 100%;
  height: var(--navigation-height);
  pointer-events: none;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
}

.o-secondary-navigation {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
  background-color: rgba(251, 251, 253, 0.8);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
}

.o-secondary-navigation--blur-10 {
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  backdrop-filter: saturate(180%) blur(10px);
}

.o-secondary-navigation--blur-20 {
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
}

.o-secondary-navigation--blur-30 {
  -webkit-backdrop-filter: saturate(180%) blur(30px);
  backdrop-filter: saturate(180%) blur(30px);
}

.o-secondary-navigation--blur-40 {
  -webkit-backdrop-filter: saturate(180%) blur(40px);
  backdrop-filter: saturate(180%) blur(40px);
}

.o-secondary-navigation--blur-50 {
  -webkit-backdrop-filter: saturate(180%) blur(50px);
  backdrop-filter: saturate(180%) blur(50px);
}

.o-secondary-navigation--blur-60 {
  -webkit-backdrop-filter: saturate(180%) blur(60px);
  backdrop-filter: saturate(180%) blur(60px);
}

.o-secondary-navigation--blur-70 {
  -webkit-backdrop-filter: saturate(180%) blur(70px);
  backdrop-filter: saturate(180%) blur(70px);
}

.o-secondary-navigation--blur-80 {
  -webkit-backdrop-filter: saturate(180%) blur(80px);
  backdrop-filter: saturate(180%) blur(80px);
}

.o-secondary-navigation--blur-90 {
  -webkit-backdrop-filter: saturate(180%) blur(90px);
  backdrop-filter: saturate(180%) blur(90px);
}

.o-secondary-navigation--blur-100 {
  -webkit-backdrop-filter: saturate(180%) blur(100px);
  backdrop-filter: saturate(180%) blur(100px);
}

.o-page__inner {
  position: relative;
  background-color: white;
  display: block;
  width: 100%;
}

.o-page--home {
  margin-top: 38px;
}

@media (min-width: 480px) {
  .o-page--home {
    margin-top: calc(1.875vw + 29px);
  }
}
@media (min-width: 800px) {
  .o-page--home {
    margin-top: 44px;
  }
}
@media (min-width: 1440px) {
  .o-page--home {
    margin-top: 44px;
  }
}
@media (min-width: 2560px) {
  .o-page--home {
    margin-top: calc(0.4435483871vw + 32.6451612903px);
  }
}
@media (min-width: 3800px) {
  .o-page--home {
    margin-top: 49.5px;
  }
}
.o-page--default .o-page__inner {
  padding-top: 64px;
  padding-bottom: 80px;
}

@media (min-width: 480px) {
  .o-page--default .o-page__inner {
    padding-top: calc(17.5vw - 20px);
  }
}
@media (min-width: 800px) {
  .o-page--default .o-page__inner {
    padding-top: 120px;
  }
}
@media (min-width: 1440px) {
  .o-page--default .o-page__inner {
    padding-top: 120px;
  }
}
@media (min-width: 2560px) {
  .o-page--default .o-page__inner {
    padding-top: calc(1.2096774194vw + 89.0322580645px);
  }
}
@media (min-width: 3800px) {
  .o-page--default .o-page__inner {
    padding-top: 135px;
  }
}
@media (min-width: 480px) {
  .o-page--default .o-page__inner {
    padding-bottom: calc(25vw - 40px);
  }
}
@media (min-width: 800px) {
  .o-page--default .o-page__inner {
    padding-bottom: 160px;
  }
}
@media (min-width: 1440px) {
  .o-page--default .o-page__inner {
    padding-bottom: 160px;
  }
}
@media (min-width: 2560px) {
  .o-page--default .o-page__inner {
    padding-bottom: calc(1.6129032258vw + 118.7096774194px);
  }
}
@media (min-width: 3800px) {
  .o-page--default .o-page__inner {
    padding-bottom: 180px;
  }
}
.o-section {
  position: relative;
}

.o-section__gradient-bg {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.o-section--cta {
  overflow: hidden;
}

.o-section.is-accent {
  background-color: #fbfbfb;
}

/**
 * Components
 */
/**
 * Components
 */
.c-accordion__item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  transition: all 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

.is-dark .c-accordion__item {
  border-color: rgba(250, 250, 250, 0.2);
}

.have-active .c-accordion__item {
  opacity: 0.5;
}

.have-active .c-accordion__item.is-opened {
  opacity: 1;
}

.c-accordion__header {
  padding-top: 24px;
  padding-bottom: 24px;
  cursor: pointer;
}

@media (min-width: 480px) {
  .c-accordion__header {
    padding-top: calc(5vw + 0px);
  }
}
@media (min-width: 800px) {
  .c-accordion__header {
    padding-top: 40px;
  }
}
@media (min-width: 1440px) {
  .c-accordion__header {
    padding-top: 40px;
  }
}
@media (min-width: 2560px) {
  .c-accordion__header {
    padding-top: calc(0.4032258065vw + 29.6774193548px);
  }
}
@media (min-width: 3800px) {
  .c-accordion__header {
    padding-top: 45px;
  }
}
@media (min-width: 480px) {
  .c-accordion__header {
    padding-bottom: calc(5vw + 0px);
  }
}
@media (min-width: 800px) {
  .c-accordion__header {
    padding-bottom: 40px;
  }
}
@media (min-width: 1440px) {
  .c-accordion__header {
    padding-bottom: 40px;
  }
}
@media (min-width: 2560px) {
  .c-accordion__header {
    padding-bottom: calc(0.4032258065vw + 29.6774193548px);
  }
}
@media (min-width: 3800px) {
  .c-accordion__header {
    padding-bottom: 45px;
  }
}
.c-accordion__header-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.c-accordion__header-title .u-a1 {
  padding-right: 40px;
}

.c-accordion__header-title .u-icon {
  -webkit-transition: -webkit-transform 0.25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: -webkit-transform 0.25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: transform 0.25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: transform 0.25s cubic-bezier(0.455, 0.03, 0.515, 0.955), -webkit-transform 0.25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.is-opened .c-accordion__header-title .u-icon {
  -webkit-transform: rotateX(-180deg);
          transform: rotateX(-180deg);
}

.c-accordion__content-inner {
  max-width: 620px;
}

@media (min-width: 1440px) {
  .c-accordion__content-inner {
    max-width: calc(6.9196428571vw + 520.3571428571px);
  }
}
@media (min-width: 2560px) {
  .c-accordion__content-inner {
    max-width: 697.5px;
  }
}
.c-accordion__content-inner p {
  padding-top: 24px;
}

@media (min-width: 480px) {
  .c-accordion__content-inner p {
    padding-top: calc(5vw + 0px);
  }
}
@media (min-width: 800px) {
  .c-accordion__content-inner p {
    padding-top: 40px;
  }
}
@media (min-width: 1440px) {
  .c-accordion__content-inner p {
    padding-top: 40px;
  }
}
@media (min-width: 2560px) {
  .c-accordion__content-inner p {
    padding-top: calc(0.4032258065vw + 29.6774193548px);
  }
}
@media (min-width: 3800px) {
  .c-accordion__content-inner p {
    padding-top: 45px;
  }
}
.c-button {
  padding-top: 4px;
  padding-bottom: 4px;
  padding-left: 12px;
  padding-right: 12px;
  position: relative;
  border-radius: 9999px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  min-height: 24px;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  background-color: #4aa6dd;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media (min-width: 480px) {
  .c-button {
    padding-top: 4px;
  }
}
@media (min-width: 800px) {
  .c-button {
    padding-top: 4px;
  }
}
@media (min-width: 1440px) {
  .c-button {
    padding-top: 4px;
  }
}
@media (min-width: 2560px) {
  .c-button {
    padding-top: calc(0.0403225806vw + 2.9677419355px);
  }
}
@media (min-width: 3800px) {
  .c-button {
    padding-top: 4.5px;
  }
}
@media (min-width: 480px) {
  .c-button {
    padding-bottom: 4px;
  }
}
@media (min-width: 800px) {
  .c-button {
    padding-bottom: 4px;
  }
}
@media (min-width: 1440px) {
  .c-button {
    padding-bottom: 4px;
  }
}
@media (min-width: 2560px) {
  .c-button {
    padding-bottom: calc(0.0403225806vw + 2.9677419355px);
  }
}
@media (min-width: 3800px) {
  .c-button {
    padding-bottom: 4.5px;
  }
}
@media (min-width: 480px) {
  .c-button {
    padding-left: calc(1.25vw + 6px);
  }
}
@media (min-width: 800px) {
  .c-button {
    padding-left: 16px;
  }
}
@media (min-width: 1440px) {
  .c-button {
    padding-left: 16px;
  }
}
@media (min-width: 2560px) {
  .c-button {
    padding-left: calc(0.1612903226vw + 11.8709677419px);
  }
}
@media (min-width: 3800px) {
  .c-button {
    padding-left: 18px;
  }
}
@media (min-width: 480px) {
  .c-button {
    padding-right: calc(1.25vw + 6px);
  }
}
@media (min-width: 800px) {
  .c-button {
    padding-right: 16px;
  }
}
@media (min-width: 1440px) {
  .c-button {
    padding-right: 16px;
  }
}
@media (min-width: 2560px) {
  .c-button {
    padding-right: calc(0.1612903226vw + 11.8709677419px);
  }
}
@media (min-width: 3800px) {
  .c-button {
    padding-right: 18px;
  }
}
@media (min-width: 480px) {
  .c-button {
    min-height: calc(2.5vw + 12px);
  }
}
@media (min-width: 800px) {
  .c-button {
    min-height: 32px;
  }
}
@media (min-width: 1440px) {
  .c-button {
    min-height: 32px;
  }
}
@media (min-width: 2560px) {
  .c-button {
    min-height: calc(0.3225806452vw + 23.7419354839px);
  }
}
@media (min-width: 3800px) {
  .c-button {
    min-height: 36px;
  }
}
@media (max-width: 800px) {
  .c-button {
    padding: 4px 16px;
    min-height: 32px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .c-button:hover {
    background-color: rgba(74, 166, 221, 0.8);
  }

  .c-button:hover span {
    -webkit-animation-name: textAnim;
            animation-name: textAnim;
    -webkit-animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
            animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -webkit-animation-duration: 0.3s;
            animation-duration: 0.3s;
    color: #fafafa;
  }
}
.c-button span {
  display: inline-block;
  position: relative;
  z-index: 2;
  color: #fafafa;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}

.c-button--grey {
  background-color: #cbd1db;
  /*&:after {
      content: "";
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      width: 220%;
      animation: 2.25s gradient linear infinite alternate;
      animation-play-state: paused;
      opacity: 1;
      transition: all 0.25s ease-in-out;
      background-color: transparent;
  }*/
}

.c-button--grey span {
  color: #161617;
}

@media (hover: hover) and (pointer: fine) {
  .c-button--grey:hover span {
    color: #4aa6dd;
  }
}
.c-button--white {
  background-color: #fafafa;
  /*&:after {
      content: "";
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      width: 220%;
      animation: 2.25s gradient linear infinite alternate;
      animation-play-state: paused;
      opacity: 1;
      transition: all 0.25s ease-in-out;
      background-color: transparent;
  }*/
}

@media (hover: hover) and (pointer: fine) {
  .c-button--white:hover {
    background-color: #4aa6dd;
    border-color: #4aa6dd;
  }
}
.c-button--ghost-white {
  background-color: transparent;
  border: 1px solid #fafafa;
  border-radius: 9999px;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  /*&:after {
      content: "";
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      width: 220%;
      animation: 2.25s gradient linear infinite alternate;
      animation-play-state: paused;
      opacity: 1;
      transition: all 0.25s ease-in-out;
      background-color: transparent;
  }*/
}

@media (hover: hover) and (pointer: fine) {
  .c-button--ghost-white:hover {
    background-color: #4aa6dd;
    border-color: #4aa6dd;
  }
}
@-webkit-keyframes gradient {
  from {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  to {
    -webkit-transform: translateX(-52%);
            transform: translateX(-52%);
  }
}
@keyframes gradient {
  from {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  to {
    -webkit-transform: translateX(-52%);
            transform: translateX(-52%);
  }
}
@-webkit-keyframes textAnim {
  0% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateY(-35%);
            transform: translateY(-35%);
  }
  51% {
    opacity: 0;
    -webkit-transform: translateY(35%);
            transform: translateY(35%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}
@keyframes textAnim {
  0% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateY(-35%);
            transform: translateY(-35%);
  }
  51% {
    opacity: 0;
    -webkit-transform: translateY(35%);
            transform: translateY(35%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}
.c-link {
  padding-top: 2px;
  padding-bottom: 2px;
  font-size: 16px;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  background-color: inherit;
  font-family: "Avenir Next Bold", sans-serif;
  line-height: 1.2;
  letter-spacing: normal;
}

@media (min-width: 1440px) {
  .c-link {
    padding-top: calc(0.0223214286vw + 1.6785714286px);
  }
}
@media (min-width: 2560px) {
  .c-link {
    padding-top: 2.25px;
  }
}
@media (min-width: 1440px) {
  .c-link {
    padding-bottom: calc(0.0223214286vw + 1.6785714286px);
  }
}
@media (min-width: 2560px) {
  .c-link {
    padding-bottom: 2.25px;
  }
}
@media (min-width: 480px) {
  .c-link {
    font-size: 16px;
  }
}
@media (min-width: 1440px) {
  .c-link {
    font-size: 16px;
  }
}
@media (min-width: 2560px) {
  .c-link {
    font-size: 16px;
  }
}
.c-link:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 220%;
  background: -webkit-gradient(linear, left top, right top, from(#4aa6dd), color-stop(21.85%, #acc9f5ff), color-stop(45.1%, #4aa6dd), color-stop(70%, #acc9f5ff), to(#acc9f5ff));
  background: linear-gradient(90deg, #4aa6dd 0%, #acc9f5ff 21.85%, #4aa6dd 45.1%, #acc9f5ff 70%, #acc9f5ff 100%);
  -webkit-animation: 2s gradient linear infinite alternate;
          animation: 2s gradient linear infinite alternate;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
  opacity: 0;
  -webkit-transition: opacity 0.25s;
  transition: opacity 0.25s;
}

.c-link:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #000000;
  opacity: 1;
  -webkit-transition: opacity 0.25s;
  transition: opacity 0.25s;
}

.is-dark .c-link:before {
  background-color: #fafafa;
}

.c-link.u-a2:before, .c-link.u-a2:after, .c-link.u-a3:before, .c-image-sequence-section--2-2 .c-link.c-image-sequence-section__title:before, .c-link.u-a3:after, .c-image-sequence-section--2-2 .c-link.c-image-sequence-section__title:after, .c-link.u-a4:before, .c-link.u-a4:after, .c-link.u-a5:before, .c-link.u-a5:after {
  height: 2px;
}

@media (hover: hover) and (pointer: fine) {
  .c-link:hover span {
    -webkit-animation-name: textAnim;
            animation-name: textAnim;
    -webkit-animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
            animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -webkit-animation-duration: 0.3s;
            animation-duration: 0.3s;
  }

  .c-link:hover:after {
    opacity: 1;
    -webkit-animation-play-state: running;
            animation-play-state: running;
  }

  .c-link:hover:before {
    opacity: 0;
  }

  .c-link:hover i {
    -webkit-transform: translateX(-8%) rotate(45deg);
            transform: translateX(-8%) rotate(45deg);
  }

  .c-link:hover .u-icon {
    opacity: 0;
  }

  .c-link:hover .u-icon:nth-child(2) {
    opacity: 1;
    -webkit-transform: translateY(-67%);
            transform: translateY(-67%);
  }
}
.c-link span {
  display: inline-block;
  position: relative;
  z-index: 2;
}

.c-link i {
  margin-left: 12px;
  position: relative;
  display: inline-block;
  margin-bottom: 0.2em;
  -webkit-transition: -webkit-transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: -webkit-transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@media (min-width: 480px) {
  .c-link i {
    margin-left: calc(1.25vw + 6px);
  }
}
@media (min-width: 800px) {
  .c-link i {
    margin-left: 16px;
  }
}
@media (min-width: 1440px) {
  .c-link i {
    margin-left: 16px;
  }
}
@media (min-width: 2560px) {
  .c-link i {
    margin-left: calc(0.1612903226vw + 11.8709677419px);
  }
}
@media (min-width: 3800px) {
  .c-link i {
    margin-left: 18px;
  }
}
.c-link--off-page:before, .c-link--off-page:after {
  display: none;
}

.c-link .u-icon {
  font-size: 0.75em;
  display: inline-block;
  fill: rgba(250, 250, 250, 0.2);
  opacity: 1;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  vertical-align: middle;
}

.c-link .u-icon:nth-child(2) {
  fill: url(#svg-gradient) #fff;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-47%);
          transform: translateY(-47%);
  height: 100%;
  width: 100%;
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.c-menu-link {
  padding-top: 6px;
  padding-bottom: 6px;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  overflow: hidden;
  background-color: inherit;
  -webkit-transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  padding-left: 16px;
  padding-right: 16px;
}

@media (min-width: 1440px) {
  .c-menu-link {
    padding-top: calc(0.0669642857vw + 5.0357142857px);
  }
}
@media (min-width: 2560px) {
  .c-menu-link {
    padding-top: 6.75px;
  }
}
@media (min-width: 1440px) {
  .c-menu-link {
    padding-bottom: calc(0.0669642857vw + 5.0357142857px);
  }
}
@media (min-width: 2560px) {
  .c-menu-link {
    padding-bottom: 6.75px;
  }
}
@media (min-width: 480px) {
  .c-menu-link {
    padding-left: calc(2.5vw + 4px);
  }
}
@media (min-width: 800px) {
  .c-menu-link {
    padding-left: 24px;
  }
}
@media (min-width: 1440px) {
  .c-menu-link {
    padding-left: 24px;
  }
}
@media (min-width: 2560px) {
  .c-menu-link {
    padding-left: calc(0.2419354839vw + 17.8064516129px);
  }
}
@media (min-width: 3800px) {
  .c-menu-link {
    padding-left: 27px;
  }
}
@media (min-width: 480px) {
  .c-menu-link {
    padding-right: calc(2.5vw + 4px);
  }
}
@media (min-width: 800px) {
  .c-menu-link {
    padding-right: 24px;
  }
}
@media (min-width: 1440px) {
  .c-menu-link {
    padding-right: 24px;
  }
}
@media (min-width: 2560px) {
  .c-menu-link {
    padding-right: calc(0.2419354839vw + 17.8064516129px);
  }
}
@media (min-width: 3800px) {
  .c-menu-link {
    padding-right: 27px;
  }
}
@media (max-width: 1280px) {
  .c-menu-link {
    padding-left: 8px;
    padding-right: 8px;
  }
}
@media (max-width: 1280px) and (min-width: 480px) {
  .c-menu-link {
    padding-left: calc(1.25vw + 2px);
  }
}
@media (max-width: 1280px) and (min-width: 800px) {
  .c-menu-link {
    padding-left: 12px;
  }
}
@media (max-width: 1280px) and (min-width: 1440px) {
  .c-menu-link {
    padding-left: 12px;
  }
}
@media (max-width: 1280px) and (min-width: 2560px) {
  .c-menu-link {
    padding-left: calc(0.1209677419vw + 8.9032258065px);
  }
}
@media (max-width: 1280px) and (min-width: 3800px) {
  .c-menu-link {
    padding-left: 13.5px;
  }
}
@media (max-width: 1280px) and (min-width: 480px) {
  .c-menu-link {
    padding-right: calc(1.25vw + 2px);
  }
}
@media (max-width: 1280px) and (min-width: 800px) {
  .c-menu-link {
    padding-right: 12px;
  }
}
@media (max-width: 1280px) and (min-width: 1440px) {
  .c-menu-link {
    padding-right: 12px;
  }
}
@media (max-width: 1280px) and (min-width: 2560px) {
  .c-menu-link {
    padding-right: calc(0.1209677419vw + 8.9032258065px);
  }
}
@media (max-width: 1280px) and (min-width: 3800px) {
  .c-menu-link {
    padding-right: 13.5px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .c-menu-link:hover span {
    -webkit-animation-name: textAnim;
            animation-name: textAnim;
    -webkit-animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
            animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -webkit-animation-duration: 0.3s;
            animation-duration: 0.3s;
  }
}
.c-menu-link span {
  display: inline-block;
  position: relative;
  z-index: 2;
}

.c-menu-link .u-icon {
  font-size: 0.6em;
  margin-left: 0.6em;
}

.c-menu-link.is-blurred, .c-menu-link.is-active {
  color: rgba(250, 250, 250, 0.5);
}

.c-close-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-close-link .u-icon {
  font-size: 0.5em;
  margin-right: 1em;
}

.c-big-link {
  display: inline-block;
  -webkit-transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.c-big-link.is-blurred {
  color: rgba(250, 250, 250, 0.5);
}

.c-mega-menu-link {
  display: block;
  margin-bottom: 12px;
  position: relative;
  cursor: initial;
  overflow: hidden;
  color: rgba(250, 250, 250, 0.5);
  /*&:before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 0.0625em;
      height: 220%;
      //background: linear-gradient(0deg, #3660ff 0%, #d94dff 21.85%, #ff949f 45.1%, #ffb961 70%, #82f5ff 100%);
      background: linear-gradient(90deg, #4AA6DD 0%, #E7F1FF 21.85%, #4AA6DD 45.1%, #1d4f91 70%, #4AA6DD 100%);
      animation: 2s gradientY linear infinite alternate;
      animation-play-state: paused;
      opacity: 0;
      transition: opacity 0.35s;
  }*/
}

@media (min-width: 480px) {
  .c-mega-menu-link {
    margin-bottom: calc(1.25vw + 6px);
  }
}
@media (min-width: 800px) {
  .c-mega-menu-link {
    margin-bottom: 16px;
  }
}
@media (min-width: 1440px) {
  .c-mega-menu-link {
    margin-bottom: 16px;
  }
}
@media (min-width: 2560px) {
  .c-mega-menu-link {
    margin-bottom: calc(0.1612903226vw + 11.8709677419px);
  }
}
@media (min-width: 3800px) {
  .c-mega-menu-link {
    margin-bottom: 18px;
  }
}
.c-mega-menu-link .u-b0, .c-mega-menu-link html,
.c-mega-menu-link body {
  padding-bottom: 4px;
  -webkit-transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@media (min-width: 480px) {
  .c-mega-menu-link .u-b0, .c-mega-menu-link html,
.c-mega-menu-link body {
    padding-bottom: 4px;
  }
}
@media (min-width: 800px) {
  .c-mega-menu-link .u-b0, .c-mega-menu-link html,
.c-mega-menu-link body {
    padding-bottom: 4px;
  }
}
@media (min-width: 1440px) {
  .c-mega-menu-link .u-b0, .c-mega-menu-link html,
.c-mega-menu-link body {
    padding-bottom: 4px;
  }
}
@media (min-width: 2560px) {
  .c-mega-menu-link .u-b0, .c-mega-menu-link html,
.c-mega-menu-link body {
    padding-bottom: calc(0.0403225806vw + 2.9677419355px);
  }
}
@media (min-width: 3800px) {
  .c-mega-menu-link .u-b0, .c-mega-menu-link html,
.c-mega-menu-link body {
    padding-bottom: 4.5px;
  }
}
.c-mega-menu-link .u-b1 {
  color: rgba(250, 250, 250, 0.5);
  -webkit-transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.c-mega-menu-link .u-icon {
  font-size: 0.4em;
  margin-left: 0.8em;
}

.is-blurred .c-mega-menu-link .u-b0, .is-blurred .c-mega-menu-link html,
.is-blurred .c-mega-menu-link body {
  color: rgba(250, 250, 250, 0.5);
}

.is-blurred .c-mega-menu-link .u-b1 {
  color: rgba(250, 250, 250, 0.2);
}

.is-focused .c-mega-menu-link {
  /*&:before {
      opacity: 1;
      animation-play-state: running;
  }*/
}

@keyframes gradient {
  from {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  to {
    -webkit-transform: translateX(-52%);
            transform: translateX(-52%);
  }
}
@-webkit-keyframes gradientY {
  from {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
  to {
    -webkit-transform: translateY(-52%);
            transform: translateY(-52%);
  }
}
@keyframes gradientY {
  from {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
  to {
    -webkit-transform: translateY(-52%);
            transform: translateY(-52%);
  }
}
@keyframes textAnim {
  0% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateY(-35%);
            transform: translateY(-35%);
  }
  51% {
    opacity: 0;
    -webkit-transform: translateY(35%);
            transform: translateY(35%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}
.c-cookie-message {
  bottom: 24px;
  max-width: 400px;
  left: 4.1666666667%;
  position: fixed;
  background-color: #161617;
  color: #fafafa;
  z-index: 20;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (min-width: 480px) {
  .c-cookie-message {
    bottom: calc(5vw + 0px);
  }
}
@media (min-width: 800px) {
  .c-cookie-message {
    bottom: 40px;
  }
}
@media (min-width: 1440px) {
  .c-cookie-message {
    bottom: 40px;
  }
}
@media (min-width: 2560px) {
  .c-cookie-message {
    bottom: calc(0.4032258065vw + 29.6774193548px);
  }
}
@media (min-width: 3800px) {
  .c-cookie-message {
    bottom: 45px;
  }
}
@media (min-width: 1440px) {
  .c-cookie-message {
    max-width: calc(4.4642857143vw + 335.7142857143px);
  }
}
@media (min-width: 2560px) {
  .c-cookie-message {
    max-width: 450px;
  }
}
.c-cookie-message.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

@media (max-width: 480px) {
  .c-cookie-message {
    bottom: 0;
    left: 0;
    right: 0;
    max-width: none;
  }
}
.c-cookie-message__inner {
  padding-top: 24px;
  padding-left: 24px;
  padding-bottom: 24px;
  padding-right: 24px;
}

@media (min-width: 480px) {
  .c-cookie-message__inner {
    padding-top: calc(5vw + 0px);
  }
}
@media (min-width: 800px) {
  .c-cookie-message__inner {
    padding-top: 40px;
  }
}
@media (min-width: 1440px) {
  .c-cookie-message__inner {
    padding-top: 40px;
  }
}
@media (min-width: 2560px) {
  .c-cookie-message__inner {
    padding-top: calc(0.4032258065vw + 29.6774193548px);
  }
}
@media (min-width: 3800px) {
  .c-cookie-message__inner {
    padding-top: 45px;
  }
}
@media (min-width: 480px) {
  .c-cookie-message__inner {
    padding-left: calc(5vw + 0px);
  }
}
@media (min-width: 800px) {
  .c-cookie-message__inner {
    padding-left: 40px;
  }
}
@media (min-width: 1440px) {
  .c-cookie-message__inner {
    padding-left: 40px;
  }
}
@media (min-width: 2560px) {
  .c-cookie-message__inner {
    padding-left: calc(0.4032258065vw + 29.6774193548px);
  }
}
@media (min-width: 3800px) {
  .c-cookie-message__inner {
    padding-left: 45px;
  }
}
@media (min-width: 480px) {
  .c-cookie-message__inner {
    padding-bottom: calc(5vw + 0px);
  }
}
@media (min-width: 800px) {
  .c-cookie-message__inner {
    padding-bottom: 40px;
  }
}
@media (min-width: 1440px) {
  .c-cookie-message__inner {
    padding-bottom: 40px;
  }
}
@media (min-width: 2560px) {
  .c-cookie-message__inner {
    padding-bottom: calc(0.4032258065vw + 29.6774193548px);
  }
}
@media (min-width: 3800px) {
  .c-cookie-message__inner {
    padding-bottom: 45px;
  }
}
@media (min-width: 480px) {
  .c-cookie-message__inner {
    padding-right: calc(5vw + 0px);
  }
}
@media (min-width: 800px) {
  .c-cookie-message__inner {
    padding-right: 40px;
  }
}
@media (min-width: 1440px) {
  .c-cookie-message__inner {
    padding-right: 40px;
  }
}
@media (min-width: 2560px) {
  .c-cookie-message__inner {
    padding-right: calc(0.4032258065vw + 29.6774193548px);
  }
}
@media (min-width: 3800px) {
  .c-cookie-message__inner {
    padding-right: 45px;
  }
}
.c-cookie-message__title {
  padding-bottom: 12px;
}

@media (min-width: 480px) {
  .c-cookie-message__title {
    padding-bottom: calc(1.25vw + 6px);
  }
}
@media (min-width: 800px) {
  .c-cookie-message__title {
    padding-bottom: 16px;
  }
}
@media (min-width: 1440px) {
  .c-cookie-message__title {
    padding-bottom: 16px;
  }
}
@media (min-width: 2560px) {
  .c-cookie-message__title {
    padding-bottom: calc(0.1612903226vw + 11.8709677419px);
  }
}
@media (min-width: 3800px) {
  .c-cookie-message__title {
    padding-bottom: 18px;
  }
}
.c-cookie-message__content {
  padding-bottom: 12px;
  color: rgba(250, 250, 250, 0.5);
}

@media (min-width: 480px) {
  .c-cookie-message__content {
    padding-bottom: calc(1.25vw + 6px);
  }
}
@media (min-width: 800px) {
  .c-cookie-message__content {
    padding-bottom: 16px;
  }
}
@media (min-width: 1440px) {
  .c-cookie-message__content {
    padding-bottom: 16px;
  }
}
@media (min-width: 2560px) {
  .c-cookie-message__content {
    padding-bottom: calc(0.1612903226vw + 11.8709677419px);
  }
}
@media (min-width: 3800px) {
  .c-cookie-message__content {
    padding-bottom: 18px;
  }
}
.c-cookie-message .c-link:before {
  background-color: rgba(250, 250, 250, 0.5);
}

.c-footer-wrapper {
  position: relative;
  background-color: #161617;
  color: #fafafa;
  padding-top: 56px;
}

@media (min-width: 480px) {
  .c-footer-wrapper {
    padding-top: calc(7.5vw + 20px);
  }
}
@media (min-width: 800px) {
  .c-footer-wrapper {
    padding-top: 80px;
  }
}
@media (min-width: 1440px) {
  .c-footer-wrapper {
    padding-top: 80px;
  }
}
@media (min-width: 2560px) {
  .c-footer-wrapper {
    padding-top: calc(0.8064516129vw + 59.3548387097px);
  }
}
@media (min-width: 3800px) {
  .c-footer-wrapper {
    padding-top: 90px;
  }
}
.c-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 800px) {
  .c-footer {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.c-footer__left {
  width: 13.6363636364%;
}

@media (max-width: 800px) {
  .c-footer__left {
    width: 100%;
    padding-bottom: 56px;
  }
}
@media (max-width: 800px) and (min-width: 480px) {
  .c-footer__left {
    padding-bottom: calc(7.5vw + 20px);
  }
}
@media (max-width: 800px) and (min-width: 800px) {
  .c-footer__left {
    padding-bottom: 80px;
  }
}
@media (max-width: 800px) and (min-width: 1440px) {
  .c-footer__left {
    padding-bottom: 80px;
  }
}
@media (max-width: 800px) and (min-width: 2560px) {
  .c-footer__left {
    padding-bottom: calc(0.8064516129vw + 59.3548387097px);
  }
}
@media (max-width: 800px) and (min-width: 3800px) {
  .c-footer__left {
    padding-bottom: 90px;
  }
}
.c-footer__right {
  width: 86.3636363636%;
}

@media (max-width: 800px) {
  .c-footer__right {
    width: 100%;
  }
}
.c-footer__right-top {
  padding-bottom: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media (min-width: 480px) {
  .c-footer__right-top {
    padding-bottom: calc(2.5vw + 0px);
  }
}
@media (min-width: 800px) {
  .c-footer__right-top {
    padding-bottom: 20px;
  }
}
@media (min-width: 1440px) {
  .c-footer__right-top {
    padding-bottom: 20px;
  }
}
@media (min-width: 2560px) {
  .c-footer__right-top {
    padding-bottom: calc(0.2016129032vw + 14.8387096774px);
  }
}
@media (min-width: 3800px) {
  .c-footer__right-top {
    padding-bottom: 22.5px;
  }
}
@media (max-width: 800px) {
  .c-footer__right-top {
    padding-bottom: 40px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media (max-width: 800px) and (min-width: 480px) {
  .c-footer__right-top {
    padding-bottom: calc(7.5vw + 4px);
  }
}
@media (max-width: 800px) and (min-width: 800px) {
  .c-footer__right-top {
    padding-bottom: 64px;
  }
}
@media (max-width: 800px) and (min-width: 1440px) {
  .c-footer__right-top {
    padding-bottom: 64px;
  }
}
@media (max-width: 800px) and (min-width: 2560px) {
  .c-footer__right-top {
    padding-bottom: calc(0.6451612903vw + 47.4838709677px);
  }
}
@media (max-width: 800px) and (min-width: 3800px) {
  .c-footer__right-top {
    padding-bottom: 72px;
  }
}
.c-footer__right-bottom {
  border-top: 1px solid rgba(250, 250, 250, 0.2);
  color: rgba(250, 250, 250, 0.2);
  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: 12px;
  padding-bottom: 12px;
}

@media (min-width: 480px) {
  .c-footer__right-bottom {
    padding-top: calc(2.5vw + 0px);
  }
}
@media (min-width: 800px) {
  .c-footer__right-bottom {
    padding-top: 20px;
  }
}
@media (min-width: 1440px) {
  .c-footer__right-bottom {
    padding-top: 20px;
  }
}
@media (min-width: 2560px) {
  .c-footer__right-bottom {
    padding-top: calc(0.2016129032vw + 14.8387096774px);
  }
}
@media (min-width: 3800px) {
  .c-footer__right-bottom {
    padding-top: 22.5px;
  }
}
@media (min-width: 480px) {
  .c-footer__right-bottom {
    padding-bottom: calc(2.5vw + 0px);
  }
}
@media (min-width: 800px) {
  .c-footer__right-bottom {
    padding-bottom: 20px;
  }
}
@media (min-width: 1440px) {
  .c-footer__right-bottom {
    padding-bottom: 20px;
  }
}
@media (min-width: 2560px) {
  .c-footer__right-bottom {
    padding-bottom: calc(0.2016129032vw + 14.8387096774px);
  }
}
@media (min-width: 3800px) {
  .c-footer__right-bottom {
    padding-bottom: 22.5px;
  }
}
@media (max-width: 480px) {
  .c-footer__right-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.c-footer .c-link {
  color: rgba(250, 250, 250, 0.5);
}

.c-footer .c-link span {
  color: rgba(250, 250, 250, 0.5);
  -webkit-transition: color 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: color 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.c-footer .c-link:before {
  background-color: currentColor;
}

@media (hover: hover) and (pointer: fine) {
  .c-footer .c-link:hover span {
    color: #fafafa;
  }
}
.c-footer-links {
  width: 68.4210526316%;
}

@media (max-width: 480px) {
  .c-footer-links {
    width: 100%;
  }
}
.c-footer-links__social li {
  padding-bottom: 4px;
}

@media (min-width: 480px) {
  .c-footer-links__social li {
    padding-bottom: 4px;
  }
}
@media (min-width: 800px) {
  .c-footer-links__social li {
    padding-bottom: 4px;
  }
}
@media (min-width: 1440px) {
  .c-footer-links__social li {
    padding-bottom: 4px;
  }
}
@media (min-width: 2560px) {
  .c-footer-links__social li {
    padding-bottom: calc(0.0403225806vw + 2.9677419355px);
  }
}
@media (min-width: 3800px) {
  .c-footer-links__social li {
    padding-bottom: 4.5px;
  }
}
.c-footer-links__social li:last-of-type {
  padding-bottom: 0;
}

.c-footer-links__pages {
  padding-top: 24px;
  padding-bottom: 56px;
}

@media (min-width: 480px) {
  .c-footer-links__pages {
    padding-top: calc(5vw + 0px);
  }
}
@media (min-width: 800px) {
  .c-footer-links__pages {
    padding-top: 40px;
  }
}
@media (min-width: 1440px) {
  .c-footer-links__pages {
    padding-top: 40px;
  }
}
@media (min-width: 2560px) {
  .c-footer-links__pages {
    padding-top: calc(0.4032258065vw + 29.6774193548px);
  }
}
@media (min-width: 3800px) {
  .c-footer-links__pages {
    padding-top: 45px;
  }
}
@media (min-width: 480px) {
  .c-footer-links__pages {
    padding-bottom: calc(7.5vw + 20px);
  }
}
@media (min-width: 800px) {
  .c-footer-links__pages {
    padding-bottom: 80px;
  }
}
@media (min-width: 1440px) {
  .c-footer-links__pages {
    padding-bottom: 80px;
  }
}
@media (min-width: 2560px) {
  .c-footer-links__pages {
    padding-bottom: calc(0.8064516129vw + 59.3548387097px);
  }
}
@media (min-width: 3800px) {
  .c-footer-links__pages {
    padding-bottom: 90px;
  }
}
.c-footer-links__pages li {
  padding-bottom: 12px;
}

@media (min-width: 480px) {
  .c-footer-links__pages li {
    padding-bottom: calc(1.25vw + 6px);
  }
}
@media (min-width: 800px) {
  .c-footer-links__pages li {
    padding-bottom: 16px;
  }
}
@media (min-width: 1440px) {
  .c-footer-links__pages li {
    padding-bottom: 16px;
  }
}
@media (min-width: 2560px) {
  .c-footer-links__pages li {
    padding-bottom: calc(0.1612903226vw + 11.8709677419px);
  }
}
@media (min-width: 3800px) {
  .c-footer-links__pages li {
    padding-bottom: 18px;
  }
}
.c-footer-links__pages li:last-of-type {
  padding-bottom: 0;
}

.c-footer-contact-info {
  color: rgba(250, 250, 250, 0.5);
  padding-top: 4px;
}

@media (min-width: 480px) {
  .c-footer-contact-info {
    padding-top: calc(0.625vw + 1px);
  }
}
@media (min-width: 800px) {
  .c-footer-contact-info {
    padding-top: 6px;
  }
}
@media (min-width: 1440px) {
  .c-footer-contact-info {
    padding-top: 6px;
  }
}
@media (min-width: 2560px) {
  .c-footer-contact-info {
    padding-top: calc(0.060483871vw + 4.4516129032px);
  }
}
@media (min-width: 3800px) {
  .c-footer-contact-info {
    padding-top: 6.75px;
  }
}
.c-footer-contact-info__title {
  padding-bottom: 12px;
  color: #fafafa;
}

@media (min-width: 480px) {
  .c-footer-contact-info__title {
    padding-bottom: calc(1.25vw + 6px);
  }
}
@media (min-width: 800px) {
  .c-footer-contact-info__title {
    padding-bottom: 16px;
  }
}
@media (min-width: 1440px) {
  .c-footer-contact-info__title {
    padding-bottom: 16px;
  }
}
@media (min-width: 2560px) {
  .c-footer-contact-info__title {
    padding-bottom: calc(0.1612903226vw + 11.8709677419px);
  }
}
@media (min-width: 3800px) {
  .c-footer-contact-info__title {
    padding-bottom: 18px;
  }
}
.c-footer-contact-info p,
.c-footer-contact-info a {
  padding-bottom: 12px;
}

@media (min-width: 480px) {
  .c-footer-contact-info p,
.c-footer-contact-info a {
    padding-bottom: calc(1.25vw + 6px);
  }
}
@media (min-width: 800px) {
  .c-footer-contact-info p,
.c-footer-contact-info a {
    padding-bottom: 16px;
  }
}
@media (min-width: 1440px) {
  .c-footer-contact-info p,
.c-footer-contact-info a {
    padding-bottom: 16px;
  }
}
@media (min-width: 2560px) {
  .c-footer-contact-info p,
.c-footer-contact-info a {
    padding-bottom: calc(0.1612903226vw + 11.8709677419px);
  }
}
@media (min-width: 3800px) {
  .c-footer-contact-info p,
.c-footer-contact-info a {
    padding-bottom: 18px;
  }
}
.c-footer-contact-info p {
  max-width: 220px;
}

@media (min-width: 1440px) {
  .c-footer-contact-info p {
    max-width: 15.2777777778vw;
  }
}
.c-footer-contact-info 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: hover) and (pointer: fine) {
  .c-footer-contact-info a:hover {
    color: #fafafa;
  }
}
.c-footer-credits {
  padding-right: 20px;
}

@media (max-width: 480px) {
  .c-footer-credits {
    padding-right: 0;
    width: 100%;
    padding-bottom: 8px;
  }
}
@media (max-width: 800px) {
  .c-back-to-top {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .c-back-to-top {
    width: 100%;
    padding-top: 56px;
  }
}
@media (max-width: 480px) and (min-width: 480px) {
  .c-back-to-top {
    padding-top: calc(7.5vw + 20px);
  }
}
@media (max-width: 480px) and (min-width: 800px) {
  .c-back-to-top {
    padding-top: 80px;
  }
}
@media (max-width: 480px) and (min-width: 1440px) {
  .c-back-to-top {
    padding-top: 80px;
  }
}
@media (max-width: 480px) and (min-width: 2560px) {
  .c-back-to-top {
    padding-top: calc(0.8064516129vw + 59.3548387097px);
  }
}
@media (max-width: 480px) and (min-width: 3800px) {
  .c-back-to-top {
    padding-top: 90px;
  }
}
.c-back-to-top .c-link {
  color: #fafafa;
  white-space: nowrap;
}

.c-back-to-top .c-link span {
  color: #fafafa;
}

.c-back-to-top .c-link:before, .c-back-to-top .c-link:after {
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  .c-back-to-top .c-link:hover i {
    -webkit-transform: none;
            transform: none;
  }
}
.c-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  background-color: #161617;
  pointer-events: none !important;
  will-change: transform;
}

.c-loader .c-spinner {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  opacity: 0;
  visibility: hidden;
}

@media (min-width: 1440px) {
  .c-loader .c-spinner {
    width: calc(0.6696428571vw + 50.3571428571px);
  }
}
@media (min-width: 2560px) {
  .c-loader .c-spinner {
    width: 67.5px;
  }
}
@media (min-width: 1440px) {
  .c-loader .c-spinner {
    height: calc(0.6696428571vw + 50.3571428571px);
  }
}
@media (min-width: 2560px) {
  .c-loader .c-spinner {
    height: 67.5px;
  }
}
.c-loader .c-spinner__inner {
  border-width: 3px;
}

@media (min-width: 1440px) {
  .c-loader .c-spinner__inner {
    border-width: calc(0.0334821429vw + 2.5178571429px);
  }
}
@media (min-width: 2560px) {
  .c-loader .c-spinner__inner {
    border-width: 3.375px;
  }
}
.c-loader.is-shown .c-spinner {
  opacity: 1;
  visibility: visible;
}

.c-spinner {
  width: 120px;
  height: 120px;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #cbd1db;
  z-index: 2;
}

@media (min-width: 1440px) {
  .c-spinner {
    width: calc(1.3392857143vw + 100.7142857143px);
  }
}
@media (min-width: 2560px) {
  .c-spinner {
    width: 135px;
  }
}
@media (min-width: 1440px) {
  .c-spinner {
    height: calc(1.3392857143vw + 100.7142857143px);
  }
}
@media (min-width: 2560px) {
  .c-spinner {
    height: 135px;
  }
}
.c-spinner__inner {
  border-width: 6px;
  z-index: 0;
  border-style: solid;
  border-color: #cbd1db;
  border-top-color: #4aa6dd;
  border-right-color: #4aa6dd;
  border-radius: 50%;
  -webkit-animation: spinner 1s linear infinite;
          animation: spinner 1s linear infinite;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (min-width: 1440px) {
  .c-spinner__inner {
    border-width: calc(0.0669642857vw + 5.0357142857px);
  }
}
@media (min-width: 2560px) {
  .c-spinner__inner {
    border-width: 6.75px;
  }
}
.c-bfml-modal.is-loader {
  opacity: 1;
  visibility: visible;
}

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

@keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.c-mobile-navigation {
  display: none;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  padding-top: var(--navigation-height);
  color: #fafafa;
  -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);
  z-index: 1;
  height: 100vh;
  pointer-events: none;
}

@media (max-width: 1140px) {
  .c-mobile-navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
.is-mobile-nav-opened .c-mobile-navigation {
  pointer-events: auto;
}

.c-mobile-navigation__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  left: 0;
  top: var(--navigation-height);
  width: 100vw;
  height: calc(100vh - var(--navigation-height));
  color: #fafafa;
  background-color: rgba(22, 22, 23, 0.8);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: all 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.is-mobile-nav-opened .c-mobile-navigation__menu {
  opacity: 1;
  visibility: visible;
}

.c-mobile-navigation__drawer {
  display: block;
  position: absolute;
  left: 0;
  top: var(--navigation-height);
  width: 100vw;
  height: calc(100vh - var(--navigation-height));
  z-index: 3;
  -webkit-transform: translateX(10%);
          transform: translateX(10%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s cubic-bezier(1, 0, 0, 1);
  transition: all 0.3s cubic-bezier(1, 0, 0, 1);
}

.c-mobile-navigation__drawer .c-drawer-menu__menu {
  padding-bottom: 60px;
}

.c-mobile-navigation__drawer.is-opened {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.c-mobile-navigation__footer {
  padding: 20px 4.1666666667% 20px 4.1666666667%;
  border-top: 1px solid rgba(250, 250, 250, 0.1);
}

.has-scrolled .c-mobile-navigation {
  padding: 20px 4.1666666667% 20px 4.1666666667%;
}

.c-drawer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: calc(100vh - var(--navigation-height));
  background-color: #161617;
  color: #fafafa;
}

.c-drawer__header {
  padding: 20px 4.1666666667% 20px 4.1666666667%;
  -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: translateX(20px);
          transform: translateX(20px);
  opacity: 0;
  pointer-events: none;
  color: rgba(250, 250, 250, 0.5);
}

@media (max-width: 480px) {
  .c-drawer__header {
    padding: 10px 4.1666666667%;
  }
}
.is-drawer-opened .c-drawer__header {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}

.c-drawer__header .c-close-link {
  pointer-events: auto;
}

.c-drawer__content {
  height: 100%;
  padding: 20px 4.1666666667%;
  -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-transition-delay: 0.2s;
          transition-delay: 0.2s;
  -webkit-transform: translateX(40px);
          transform: translateX(40px);
  opacity: 0;
  background-color: #161617;
}

.is-drawer-opened .c-drawer__content {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}

.c-drawer__content .c-button {
  margin: 0 auto;
}

.c-drawer-menu {
  height: 100%;
  max-height: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.c-drawer-menu__intro {
  position: relative;
  padding: 40px;
}

.c-drawer-menu__intro:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  height: 100%;
  left: 0;
  width: 100%;
  background-color: rgba(203, 209, 219, 0.3);
  z-index: 0;
}

.c-drawer-menu__intro .c-drawer-menu__header,
.c-drawer-menu__intro .c-drawer-menu__content {
  position: relative;
  z-index: 2;
}

.c-drawer-menu__intro .c-drawer-menu__header {
  padding-bottom: 15px;
}

.c-drawer-menu__heading {
  padding-top: 20px;
  padding-left: 40px;
}

.c-drawer-menu__content {
  max-width: 320px;
}

.c-drawer-menu__content .u-b3 {
  margin-top: 20px;
}

.c-drawer-menu__content .c-link {
  margin-top: 20px;
}

.c-drawer-menu__menu .c-mega-menu-link {
  padding-left: 0;
}

.c-drawer-menu__item {
  padding-bottom: 2.2222222222vh;
}

.c-mobile-menu {
  padding: 0 4.1666666667%;
}

.c-mobile-links__item .c-menu-link {
  max-width: 100%;
  display: block;
  position: relative;
  padding: 25px 0;
  cursor: pointer;
  text-align: left;
}

.c-mobile-links__item .c-menu-link .u-icon {
  width: 0.6em;
  font-size: 0.6em;
  margin-left: 0.6em;
}

.c-navigation-wrapper {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  background-color: rgba(22, 22, 23, 0.8);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  color: #fafafa;
  position: relative;
  z-index: 2;
}

.c-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 1140px) {
  .c-navigation {
    padding-left: 0;
    padding-right: 0;
  }
}
.c-navigation__left {
  width: 200px;
}

@media (min-width: 1440px) {
  .c-navigation__left {
    width: calc(2.2321428571vw + 167.8571428571px);
  }
}
@media (min-width: 2560px) {
  .c-navigation__left {
    width: 225px;
  }
}
@media (max-width: 1140px) {
  .c-navigation__left {
    padding-top: 8px;
    padding-bottom: 8px;
  }
}
@media (max-width: 1140px) and (min-width: 1440px) {
  .c-navigation__left {
    padding-top: calc(0.0892857143vw + 6.7142857143px);
  }
}
@media (max-width: 1140px) and (min-width: 2560px) {
  .c-navigation__left {
    padding-top: 9px;
  }
}
@media (max-width: 1140px) and (min-width: 1440px) {
  .c-navigation__left {
    padding-bottom: calc(0.0892857143vw + 6.7142857143px);
  }
}
@media (max-width: 1140px) and (min-width: 2560px) {
  .c-navigation__left {
    padding-bottom: 9px;
  }
}
.c-navigation__center {
  width: 100%;
}

@media (max-width: 1140px) {
  .c-navigation__center {
    display: none;
  }
}
.c-navigation__right {
  width: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media (min-width: 1440px) {
  .c-navigation__right {
    width: calc(2.2321428571vw + 167.8571428571px);
  }
}
@media (min-width: 2560px) {
  .c-navigation__right {
    width: 225px;
  }
}
@media (max-width: 1140px) {
  .c-navigation__right {
    display: none;
  }
}
.c-navigation .c-menu-link--has-submenu .u-icon--chevron-down {
  margin-top: 2px;
}

.c-hamburger {
  display: none;
}

@media (max-width: 1140px) {
  .c-hamburger {
    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: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: relative;
    height: 13px;
    cursor: pointer;
  }

  .c-hamburger:before {
    content: "";
    position: absolute;
    top: -15px;
    left: -10px;
    bottom: -15px;
    right: -10px;
    z-index: 0;
  }
}
.c-hamburger__line {
  display: inline-block;
  width: 25px;
  height: 1px;
  background-color: #fafafa;
  position: relative;
  z-index: 2;
  -webkit-transition: all 0.3s cubic-bezier(1, 0, 0, 1);
  transition: all 0.3s cubic-bezier(1, 0, 0, 1);
}

.c-hamburger.is-opened .c-hamburger__line--top {
  -webkit-transform: translate3d(0, 6px, 0) rotate(45deg);
          transform: translate3d(0, 6px, 0) rotate(45deg);
}

.c-hamburger.is-opened .c-hamburger__line--bottom {
  -webkit-transform: translate3d(0, -6px, 0) rotate(-45deg);
          transform: translate3d(0, -6px, 0) rotate(-45deg);
}

.c-hamburger.is-opened .c-hamburger__line--center {
  opacity: 0;
  -webkit-transform: translateX(-100%) scaleX(2);
          transform: translateX(-100%) scaleX(2);
}

.c-request-a-quote {
  top: 6px;
  position: fixed;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  margin: 0 auto;
  max-width: 2000px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  z-index: 11;
  color: #fafafa;
  pointer-events: none;
  padding-left: 4.1666666667%;
  padding-right: 4.1666666667%;
}

@media (min-width: 1440px) {
  .c-request-a-quote {
    top: calc(0.0669642857vw + 5.0357142857px);
  }
}
@media (min-width: 2560px) {
  .c-request-a-quote {
    top: 6.75px;
  }
}
@media (max-width: 1140px) {
  .c-request-a-quote {
    padding-left: 4.1666666667%;
    padding-right: 12.5%;
  }
}
@media (max-width: 800px) {
  .c-request-a-quote {
    padding-left: 4.1666666667%;
  }
}
@media (max-width: 800px) {
  .c-request-a-quote {
    display: none;
  }
}
.c-request-a-quote .c-button {
  pointer-events: initial;
}

.c-secondary-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  overflow: hidden;
}

.c-secondary-navigation:after {
  position: absolute;
  top: 0;
  width: 24px;
  height: 100%;
  right: 0;
  z-index: 3;
}

.c-secondary-navigation__heading {
  padding-top: 2px;
  white-space: nowrap;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 480px) {
  .c-secondary-navigation__heading {
    display: none;
  }
}
.c-secondary-navigation__heading:after {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 24px;
  height: 200%;
  left: 100%;
  background: white;
  z-index: 3;
}

.c-secondary-navigation__heading span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-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;
}

.c-secondary-navigation__heading .c-dash {
  margin-right: 0;
}

.c-secondary-navigation .u-b0, .c-secondary-navigation html,
.c-secondary-navigation body {
  color: rgba(22, 22, 23, 0.5);
}

.c-secondary-navigation .c-menu {
  position: relative;
  overflow: scroll;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.c-secondary-navigation .c-menu::-webkit-scrollbar {
  display: none;
}

.c-secondary-navigation .c-menu__item {
  min-height: 44px;
  cursor: auto;
}

@media (min-width: 1440px) {
  .c-secondary-navigation .c-menu__item {
    min-height: calc(0.4910714286vw + 36.9285714286px);
  }
}
@media (min-width: 2560px) {
  .c-secondary-navigation .c-menu__item {
    min-height: 49.5px;
  }
}
.c-secondary-navigation .c-menu__item a.is-active {
  pointer-events: none;
}

.c-secondary-navigation .c-menu__inner {
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 12px;
  padding-right: 12px;
}

@media (max-width: 480px) {
  .c-secondary-navigation .c-menu__inner {
    padding-left: 0;
  }

  .c-secondary-navigation .c-menu__inner li:first-child a {
    padding-left: 0;
  }
}
@media (max-width: 800px) {
  .c-secondary-navigation .c-menu {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.c-secondary-navigation .c-menu-link {
  padding-left: 8px;
  padding-right: 8px;
}

@media (min-width: 1440px) {
  .c-secondary-navigation .c-menu-link {
    padding-left: calc(0.0892857143vw + 6.7142857143px);
  }
}
@media (min-width: 2560px) {
  .c-secondary-navigation .c-menu-link {
    padding-left: 9px;
  }
}
@media (min-width: 1440px) {
  .c-secondary-navigation .c-menu-link {
    padding-right: calc(0.0892857143vw + 6.7142857143px);
  }
}
@media (min-width: 2560px) {
  .c-secondary-navigation .c-menu-link {
    padding-right: 9px;
  }
}
.c-secondary-navigation .c-menu-link.is-active, .c-secondary-navigation .c-menu-link.is-blurred {
  color: inherit;
  text-decoration: underline;
}

.c-navigation-dropdown-wrapper {
  position: absolute;
  width: 100%;
  z-index: 2;
  top: 100%;
  padding-top: 0;
}

@media (max-width: 1140px) {
  .c-navigation-dropdown-wrapper {
    display: none;
  }
}
.c-navigation-dropdown {
  position: absolute;
  left: 0;
  width: 100%;
  color: #fafafa;
  display: none;
  pointer-events: none;
  -webkit-transition: all 0.2s 0.2s ease-in-out, visibility 0.2s 0.2s ease-in-out;
  transition: all 0.2s 0.2s ease-in-out, visibility 0.2s 0.2s ease-in-out;
  padding-top: 20px;
  padding-bottom: 20px;
}

@media (min-width: 480px) {
  .c-navigation-dropdown {
    padding-top: calc(3.75vw + 2px);
  }
}
@media (min-width: 800px) {
  .c-navigation-dropdown {
    padding-top: 32px;
  }
}
@media (min-width: 1440px) {
  .c-navigation-dropdown {
    padding-top: 32px;
  }
}
@media (min-width: 2560px) {
  .c-navigation-dropdown {
    padding-top: calc(0.3225806452vw + 23.7419354839px);
  }
}
@media (min-width: 3800px) {
  .c-navigation-dropdown {
    padding-top: 36px;
  }
}
@media (min-width: 480px) {
  .c-navigation-dropdown {
    padding-bottom: calc(3.75vw + 2px);
  }
}
@media (min-width: 800px) {
  .c-navigation-dropdown {
    padding-bottom: 32px;
  }
}
@media (min-width: 1440px) {
  .c-navigation-dropdown {
    padding-bottom: 32px;
  }
}
@media (min-width: 2560px) {
  .c-navigation-dropdown {
    padding-bottom: calc(0.3225806452vw + 23.7419354839px);
  }
}
@media (min-width: 3800px) {
  .c-navigation-dropdown {
    padding-bottom: 36px;
  }
}
.c-navigation-dropdown:before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  content: "";
  background-color: rgba(22, 22, 23, 0.8);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
}

.c-navigation-dropdown.is-active {
  pointer-events: auto;
  display: block;
  -webkit-transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
}

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

.c-navigation-dropdown__column {
  position: relative;
}

.c-navigation-dropdown__column--left {
  width: 100%;
  z-index: 1;
}

.c-navigation-dropdown__column--right {
  display: none !important;
}

.c-images-spacer {
  display: block;
  width: 100%;
  padding-bottom: 56.25%;
}

.c-navigation-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: -1;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
  pointer-events: none;
}

@media (max-width: 1140px) {
  .c-navigation-overlay {
    display: none;
  }
}
.c-navigation-dropdown-wrapper {
  position: absolute;
  width: 100%;
  z-index: 2;
  top: 100%;
  padding-top: 0;
}

@media (max-width: 1140px) {
  .c-navigation-dropdown-wrapper {
    display: none;
  }
}
.c-navigation-dropdown {
  position: absolute;
  left: 0;
  width: 100%;
  color: #fafafa;
  display: none;
  pointer-events: none;
  -webkit-transition: all 0.2s 0.2s ease-in-out, visibility 0.2s 0.2s ease-in-out;
  transition: all 0.2s 0.2s ease-in-out, visibility 0.2s 0.2s ease-in-out;
  padding-top: 20px;
  padding-bottom: 20px;
}

@media (min-width: 480px) {
  .c-navigation-dropdown {
    padding-top: calc(3.75vw + 2px);
  }
}
@media (min-width: 800px) {
  .c-navigation-dropdown {
    padding-top: 32px;
  }
}
@media (min-width: 1440px) {
  .c-navigation-dropdown {
    padding-top: 32px;
  }
}
@media (min-width: 2560px) {
  .c-navigation-dropdown {
    padding-top: calc(0.3225806452vw + 23.7419354839px);
  }
}
@media (min-width: 3800px) {
  .c-navigation-dropdown {
    padding-top: 36px;
  }
}
@media (min-width: 480px) {
  .c-navigation-dropdown {
    padding-bottom: calc(3.75vw + 2px);
  }
}
@media (min-width: 800px) {
  .c-navigation-dropdown {
    padding-bottom: 32px;
  }
}
@media (min-width: 1440px) {
  .c-navigation-dropdown {
    padding-bottom: 32px;
  }
}
@media (min-width: 2560px) {
  .c-navigation-dropdown {
    padding-bottom: calc(0.3225806452vw + 23.7419354839px);
  }
}
@media (min-width: 3800px) {
  .c-navigation-dropdown {
    padding-bottom: 36px;
  }
}
.c-navigation-dropdown:before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  content: "";
  background-color: rgba(22, 22, 23, 0.8);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
}

.c-navigation-dropdown.is-active {
  pointer-events: auto;
  display: block;
  -webkit-transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
}

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

.c-navigation-dropdown__column {
  position: relative;
}

.c-navigation-dropdown__column--left {
  width: 100%;
  z-index: 1;
}

.c-navigation-dropdown__column--right {
  display: none !important;
}

.c-images-spacer {
  display: block;
  width: 100%;
  padding-bottom: 56.25%;
}

.c-navigation-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: -1;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
  pointer-events: none;
}

@media (max-width: 1140px) {
  .c-navigation-overlay {
    display: none;
  }
}
.c-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.c-menu__item {
  min-height: 44px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: initial;
}

@media (min-width: 1440px) {
  .c-menu__item {
    min-height: calc(0.4910714286vw + 36.9285714286px);
  }
}
@media (min-width: 2560px) {
  .c-menu__item {
    min-height: 49.5px;
  }
}
.c-menu__item .u-icon {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform 0.25s;
  transition: -webkit-transform 0.25s;
  transition: transform 0.25s;
  transition: transform 0.25s, -webkit-transform 0.25s;
}

.c-menu__item.is-active .u-icon {
  -webkit-transform: scale(-1);
          transform: scale(-1);
}

.c-mega-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.c-mega-menu__item {
  width: 25%;
  padding-top: 4px;
  padding-bottom: 4px;
}

@media (min-width: 480px) {
  .c-mega-menu__item {
    padding-top: calc(0.625vw + 1px);
  }
}
@media (min-width: 800px) {
  .c-mega-menu__item {
    padding-top: 6px;
  }
}
@media (min-width: 1440px) {
  .c-mega-menu__item {
    padding-top: 6px;
  }
}
@media (min-width: 2560px) {
  .c-mega-menu__item {
    padding-top: calc(0.060483871vw + 4.4516129032px);
  }
}
@media (min-width: 3800px) {
  .c-mega-menu__item {
    padding-top: 6.75px;
  }
}
@media (min-width: 480px) {
  .c-mega-menu__item {
    padding-bottom: calc(0.625vw + 1px);
  }
}
@media (min-width: 800px) {
  .c-mega-menu__item {
    padding-bottom: 6px;
  }
}
@media (min-width: 1440px) {
  .c-mega-menu__item {
    padding-bottom: 6px;
  }
}
@media (min-width: 2560px) {
  .c-mega-menu__item {
    padding-bottom: calc(0.060483871vw + 4.4516129032px);
  }
}
@media (min-width: 3800px) {
  .c-mega-menu__item {
    padding-bottom: 6.75px;
  }
}
.c-mega-menu__item.is-active .c-mega-menu-link:before {
  opacity: 1;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}

@media (hover: hover) and (pointer: fine) {
  .c-mega-menu__item:hover .c-mega-menu-submenu {
    opacity: 1;
    visibility: visible;
  }
}
.c-mega-menu-submenu {
  position: relative;
  width: 100%;
  -webkit-transition: opacity 0.2s linear, visibility 0.2s linear;
  transition: opacity 0.2s linear, visibility 0.2s linear;
}

.c-mega-menu-submenu:first-child {
  position: relative;
}

.c-mega-menu-submenu.is-active {
  opacity: 1;
  visibility: visible;
}

.c-mega-menu-submenu li {
  padding-bottom: 12px;
}

@media (min-width: 480px) {
  .c-mega-menu-submenu li {
    padding-bottom: calc(2.5vw + 0px);
  }
}
@media (min-width: 800px) {
  .c-mega-menu-submenu li {
    padding-bottom: 20px;
  }
}
@media (min-width: 1440px) {
  .c-mega-menu-submenu li {
    padding-bottom: 20px;
  }
}
@media (min-width: 2560px) {
  .c-mega-menu-submenu li {
    padding-bottom: calc(0.2016129032vw + 14.8387096774px);
  }
}
@media (min-width: 3800px) {
  .c-mega-menu-submenu li {
    padding-bottom: 22.5px;
  }
}
.c-mega-menu-submenu li a {
  max-width: 350px;
  display: block;
  -webkit-transition: all 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: all 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

@media (min-width: 1440px) {
  .c-mega-menu-submenu li a {
    max-width: calc(3.90625vw + 293.75px);
  }
}
@media (min-width: 2560px) {
  .c-mega-menu-submenu li a {
    max-width: 393.75px;
  }
}
.c-mega-menu-submenu li:last-child {
  padding-bottom: 0;
}

.c-mega-menu-submenu--visible {
  opacity: 1;
  visibility: visible;
  width: 100%;
}

.c-mega-menu-submenu--visible li a {
  padding-left: 12px;
}

@media (min-width: 480px) {
  .c-mega-menu-submenu--visible li a {
    padding-left: calc(1.25vw + 6px);
  }
}
@media (min-width: 800px) {
  .c-mega-menu-submenu--visible li a {
    padding-left: 16px;
  }
}
@media (min-width: 1440px) {
  .c-mega-menu-submenu--visible li a {
    padding-left: 16px;
  }
}
@media (min-width: 2560px) {
  .c-mega-menu-submenu--visible li a {
    padding-left: calc(0.1612903226vw + 11.8709677419px);
  }
}
@media (min-width: 3800px) {
  .c-mega-menu-submenu--visible li a {
    padding-left: 18px;
  }
}
.c-mega-menu-submenu:hover li a {
  color: rgba(250, 250, 250, 0.5);
}

.c-mega-menu-submenu:hover li:hover a {
  color: #fafafa;
}

.c-mega-menu-images {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-bottom: 56.25%;
}

.c-mega-menu-images__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  visibility: hidden;
}

.c-mega-menu-images__image .u-b0--nav, .c-mega-menu-images__image .c-button {
  padding-top: 12px;
  padding-right: 12px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
}

@media (min-width: 480px) {
  .c-mega-menu-images__image .u-b0--nav, .c-mega-menu-images__image .c-button {
    padding-top: calc(1.25vw + 6px);
  }
}
@media (min-width: 800px) {
  .c-mega-menu-images__image .u-b0--nav, .c-mega-menu-images__image .c-button {
    padding-top: 16px;
  }
}
@media (min-width: 1440px) {
  .c-mega-menu-images__image .u-b0--nav, .c-mega-menu-images__image .c-button {
    padding-top: 16px;
  }
}
@media (min-width: 2560px) {
  .c-mega-menu-images__image .u-b0--nav, .c-mega-menu-images__image .c-button {
    padding-top: calc(0.1612903226vw + 11.8709677419px);
  }
}
@media (min-width: 3800px) {
  .c-mega-menu-images__image .u-b0--nav, .c-mega-menu-images__image .c-button {
    padding-top: 18px;
  }
}
@media (min-width: 480px) {
  .c-mega-menu-images__image .u-b0--nav, .c-mega-menu-images__image .c-button {
    padding-right: calc(2.5vw + 0px);
  }
}
@media (min-width: 800px) {
  .c-mega-menu-images__image .u-b0--nav, .c-mega-menu-images__image .c-button {
    padding-right: 20px;
  }
}
@media (min-width: 1440px) {
  .c-mega-menu-images__image .u-b0--nav, .c-mega-menu-images__image .c-button {
    padding-right: 20px;
  }
}
@media (min-width: 2560px) {
  .c-mega-menu-images__image .u-b0--nav, .c-mega-menu-images__image .c-button {
    padding-right: calc(0.2016129032vw + 14.8387096774px);
  }
}
@media (min-width: 3800px) {
  .c-mega-menu-images__image .u-b0--nav, .c-mega-menu-images__image .c-button {
    padding-right: 22.5px;
  }
}
.c-logo {
  display: inline-block;
  width: 100%;
  max-height: 16px;
  height: 16px;
}

@media (min-width: 480px) {
  .c-logo {
    max-height: calc(2.5vw + 4px);
  }
}
@media (min-width: 800px) {
  .c-logo {
    max-height: 24px;
  }
}
@media (min-width: 1440px) {
  .c-logo {
    max-height: 24px;
  }
}
@media (min-width: 2560px) {
  .c-logo {
    max-height: calc(0.2419354839vw + 17.8064516129px);
  }
}
@media (min-width: 3800px) {
  .c-logo {
    max-height: 27px;
  }
}
@media (min-width: 480px) {
  .c-logo {
    height: calc(2.5vw + 4px);
  }
}
@media (min-width: 800px) {
  .c-logo {
    height: 24px;
  }
}
@media (min-width: 1440px) {
  .c-logo {
    height: 24px;
  }
}
@media (min-width: 2560px) {
  .c-logo {
    height: calc(0.2419354839vw + 17.8064516129px);
  }
}
@media (min-width: 3800px) {
  .c-logo {
    height: 27px;
  }
}
.c-logo svg {
  height: 100%;
}

.c-highlight-products__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.c-highlight-products .c-link {
  font-size: 14px;
}

@media (min-width: 480px) {
  .c-highlight-products .c-link {
    font-size: 14px;
  }
}
@media (min-width: 1440px) {
  .c-highlight-products .c-link {
    font-size: 14px;
  }
}
@media (min-width: 2560px) {
  .c-highlight-products .c-link {
    font-size: 14px;
  }
}
.c-highlight-products {
  margin-top: 8px;
}

@media (min-width: 480px) {
  .c-highlight-products {
    margin-top: calc(1.25vw + 2px);
  }
}
@media (min-width: 800px) {
  .c-highlight-products {
    margin-top: 12px;
  }
}
@media (min-width: 1440px) {
  .c-highlight-products {
    margin-top: 12px;
  }
}
@media (min-width: 2560px) {
  .c-highlight-products {
    margin-top: calc(0.1209677419vw + 8.9032258065px);
  }
}
@media (min-width: 3800px) {
  .c-highlight-products {
    margin-top: 13.5px;
  }
}
.c-highlight-products--2 {
  margin-top: 0 !important;
}

.c-highlight-products--2:first-child {
  margin-top: 0 !important;
}

.c-highlight-products .o-container--full .o-container__inner {
  padding: 0;
}

.c-highlight-product {
  padding: 8px;
  width: 50%;
  text-align: center;
}

@media (min-width: 480px) {
  .c-highlight-product {
    padding: calc(1.25vw + 2px);
  }
}
@media (min-width: 800px) {
  .c-highlight-product {
    padding: 12px;
  }
}
@media (min-width: 1440px) {
  .c-highlight-product {
    padding: 12px;
  }
}
@media (min-width: 2560px) {
  .c-highlight-product {
    padding: calc(0.1209677419vw + 8.9032258065px);
  }
}
@media (min-width: 3800px) {
  .c-highlight-product {
    padding: 13.5px;
  }
}
.c-highlight-products--2 .c-highlight-product:first-child {
  padding-right: 0 !important;
}

.c-highlight-products--2 .c-highlight-product:last-child {
  padding-right: 8px;
}

@media (min-width: 480px) {
  .c-highlight-products--2 .c-highlight-product:last-child {
    padding-right: calc(1.25vw + 2px);
  }
}
@media (min-width: 800px) {
  .c-highlight-products--2 .c-highlight-product:last-child {
    padding-right: 12px;
  }
}
@media (min-width: 1440px) {
  .c-highlight-products--2 .c-highlight-product:last-child {
    padding-right: 12px;
  }
}
@media (min-width: 2560px) {
  .c-highlight-products--2 .c-highlight-product:last-child {
    padding-right: calc(0.1209677419vw + 8.9032258065px);
  }
}
@media (min-width: 3800px) {
  .c-highlight-products--2 .c-highlight-product:last-child {
    padding-right: 13.5px;
  }
}
@media (max-width: 800px) {
  .c-highlight-products--2 .c-highlight-product:last-child {
    padding-right: 0 !important;
    padding-bottom: 8px;
  }
}
@media (max-width: 800px) and (min-width: 480px) {
  .c-highlight-products--2 .c-highlight-product:last-child {
    padding-bottom: calc(1.25vw + 2px);
  }
}
@media (max-width: 800px) and (min-width: 800px) {
  .c-highlight-products--2 .c-highlight-product:last-child {
    padding-bottom: 12px;
  }
}
@media (max-width: 800px) and (min-width: 1440px) {
  .c-highlight-products--2 .c-highlight-product:last-child {
    padding-bottom: 12px;
  }
}
@media (max-width: 800px) and (min-width: 2560px) {
  .c-highlight-products--2 .c-highlight-product:last-child {
    padding-bottom: calc(0.1209677419vw + 8.9032258065px);
  }
}
@media (max-width: 800px) and (min-width: 3800px) {
  .c-highlight-products--2 .c-highlight-product:last-child {
    padding-bottom: 13.5px;
  }
}
@media (max-width: 800px) {
  .c-highlight-product {
    width: 100%;
    padding: 0;
    padding-top: 8px;
  }
}
@media (max-width: 800px) and (min-width: 480px) {
  .c-highlight-product {
    padding-top: calc(1.25vw + 2px);
  }
}
@media (max-width: 800px) and (min-width: 800px) {
  .c-highlight-product {
    padding-top: 12px;
  }
}
@media (max-width: 800px) and (min-width: 1440px) {
  .c-highlight-product {
    padding-top: 12px;
  }
}
@media (max-width: 800px) and (min-width: 2560px) {
  .c-highlight-product {
    padding-top: calc(0.1209677419vw + 8.9032258065px);
  }
}
@media (max-width: 800px) and (min-width: 3800px) {
  .c-highlight-product {
    padding-top: 13.5px;
  }
}
.c-highlight-product__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  padding-top: 24px;
}

@media (min-width: 480px) {
  .c-highlight-product__inner {
    padding-top: calc(7.5vw - 12px);
  }
}
@media (min-width: 800px) {
  .c-highlight-product__inner {
    padding-top: 48px;
  }
}
@media (min-width: 1440px) {
  .c-highlight-product__inner {
    padding-top: 48px;
  }
}
@media (min-width: 2560px) {
  .c-highlight-product__inner {
    padding-top: calc(0.4838709677vw + 35.6129032258px);
  }
}
@media (min-width: 3800px) {
  .c-highlight-product__inner {
    padding-top: 54px;
  }
}
.c-highlight-product--long .c-highlight-product__title, .c-highlight-product--long .c-highlight-product__subtitle, .c-highlight-product--long .c-highlight-product__links {
  z-index: 1;
}

.c-highlight-product__title {
  padding-bottom: 8px;
}

@media (min-width: 480px) {
  .c-highlight-product__title {
    padding-bottom: 8px;
  }
}
@media (min-width: 800px) {
  .c-highlight-product__title {
    padding-bottom: 8px;
  }
}
@media (min-width: 1440px) {
  .c-highlight-product__title {
    padding-bottom: 8px;
  }
}
@media (min-width: 2560px) {
  .c-highlight-product__title {
    padding-bottom: calc(0.0806451613vw + 5.935483871px);
  }
}
@media (min-width: 3800px) {
  .c-highlight-product__title {
    padding-bottom: 9px;
  }
}
.c-highlight-product__subtitle {
  max-width: 400px;
  margin: 0 auto;
  padding-bottom: 12px;
}

@media (min-width: 1440px) {
  .c-highlight-product__subtitle {
    max-width: calc(4.4642857143vw + 335.7142857143px);
  }
}
@media (min-width: 2560px) {
  .c-highlight-product__subtitle {
    max-width: 450px;
  }
}
@media (min-width: 480px) {
  .c-highlight-product__subtitle {
    padding-bottom: calc(1.25vw + 6px);
  }
}
@media (min-width: 800px) {
  .c-highlight-product__subtitle {
    padding-bottom: 16px;
  }
}
@media (min-width: 1440px) {
  .c-highlight-product__subtitle {
    padding-bottom: 16px;
  }
}
@media (min-width: 2560px) {
  .c-highlight-product__subtitle {
    padding-bottom: calc(0.1612903226vw + 11.8709677419px);
  }
}
@media (min-width: 3800px) {
  .c-highlight-product__subtitle {
    padding-bottom: 18px;
  }
}
.c-highlight-product--wide .c-highlight-product__subtitle {
  max-width: 100%;
}

.c-highlight-product__subtitle br.on-small {
  display: none;
}

@media (max-width: 480px) {
  .c-highlight-product__subtitle br.on-small {
    display: block;
  }
}
.c-highlight-product__links {
  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;
}

.c-highlight-product__links a {
  margin-left: 6px;
  margin-right: 6px;
}

@media (min-width: 1440px) {
  .c-highlight-product__links a {
    margin-left: calc(0.0669642857vw + 5.0357142857px);
  }
}
@media (min-width: 2560px) {
  .c-highlight-product__links a {
    margin-left: 6.75px;
  }
}
@media (min-width: 1440px) {
  .c-highlight-product__links a {
    margin-right: calc(0.0669642857vw + 5.0357142857px);
  }
}
@media (min-width: 2560px) {
  .c-highlight-product__links a {
    margin-right: 6.75px;
  }
}
.c-highlight-product__video, .c-highlight-product__parallax {
  margin-top: 24px;
  height: 336px;
  width: 100%;
  position: relative;
  margin-top: auto;
}

@media (min-width: 480px) {
  .c-highlight-product__video, .c-highlight-product__parallax {
    margin-top: calc(7.5vw - 12px);
  }
}
@media (min-width: 800px) {
  .c-highlight-product__video, .c-highlight-product__parallax {
    margin-top: 48px;
  }
}
@media (min-width: 1440px) {
  .c-highlight-product__video, .c-highlight-product__parallax {
    margin-top: 48px;
  }
}
@media (min-width: 2560px) {
  .c-highlight-product__video, .c-highlight-product__parallax {
    margin-top: calc(0.4838709677vw + 35.6129032258px);
  }
}
@media (min-width: 3800px) {
  .c-highlight-product__video, .c-highlight-product__parallax {
    margin-top: 54px;
  }
}
.c-highlight-product__video .c-image-content-module__media {
  width: 100%;
  height: 100%;
}

.c-highlight-product__video .c-image-content-module__video {
  display: inline-block;
  aspect-ratio: 1920/1080;
  height: 100%;
  width: auto;
}

.c-highlight-product__image {
  margin-top: 24px;
  height: 336px;
  width: 100%;
  position: relative;
  margin-top: auto;
}

@media (min-width: 480px) {
  .c-highlight-product__image {
    margin-top: calc(7.5vw - 12px);
  }
}
@media (min-width: 800px) {
  .c-highlight-product__image {
    margin-top: 48px;
  }
}
@media (min-width: 1440px) {
  .c-highlight-product__image {
    margin-top: 48px;
  }
}
@media (min-width: 2560px) {
  .c-highlight-product__image {
    margin-top: calc(0.4838709677vw + 35.6129032258px);
  }
}
@media (min-width: 3800px) {
  .c-highlight-product__image {
    margin-top: 54px;
  }
}
.c-highlight-product__image .u-image-wrapper img {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: auto;
  width: auto;
  height: auto;
  max-width: none;
}

.c-highlight-product--wide {
  width: 100%;
  padding: 0;
}

.c-highlight-product--wide .c-highlight-product__inner {
  padding-bottom: 0;
}

.c-highlight-product--wide .c-highlight-product__parallax,
.c-highlight-product--wide .c-highlight-product__video,
.c-highlight-product--wide .c-highlight-product__image {
  height: 480px;
}

@media (max-width: 1440px) {
  .c-highlight-product--wide .c-highlight-product__parallax,
.c-highlight-product--wide .c-highlight-product__video,
.c-highlight-product--wide .c-highlight-product__image {
    height: 336px;
  }
}
@media (max-width: 800px) {
  .c-highlight-product--wide .c-highlight-product__parallax,
.c-highlight-product--wide .c-highlight-product__video,
.c-highlight-product--wide .c-highlight-product__image {
    height: 336px;
  }
}
.c-highlight-product--long .c-highlight-product__inner {
  position: relative;
  height: 580px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media (max-width: 800px) {
  .c-highlight-product--long .c-highlight-product__inner {
    height: 500px;
  }
}
.c-highlight-product--long .c-highlight-product__parallax,
.c-highlight-product--long .c-highlight-product__video,
.c-highlight-product--long .c-highlight-product__image {
  height: 580px;
  margin-top: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

@media (max-width: 800px) {
  .c-highlight-product--long .c-highlight-product__parallax,
.c-highlight-product--long .c-highlight-product__video,
.c-highlight-product--long .c-highlight-product__image {
    height: 500px;
  }
}
.c-highlight-product--long .c-highlight-product__parallax .u-image-wrapper img,
.c-highlight-product--long .c-highlight-product__video .u-image-wrapper img,
.c-highlight-product--long .c-highlight-product__image .u-image-wrapper img {
  width: auto;
  height: 100%;
}

.c-highlight-product--long.c-highlight-product--wide .c-highlight-product__inner {
  height: 736px;
}

@media (max-width: 1440px) {
  .c-highlight-product--long.c-highlight-product--wide .c-highlight-product__inner {
    height: 580px;
  }
}
@media (max-width: 800px) {
  .c-highlight-product--long.c-highlight-product--wide .c-highlight-product__inner {
    height: 500px;
  }
}
.c-highlight-product--long.c-highlight-product--wide .c-highlight-product__parallax,
.c-highlight-product--long.c-highlight-product--wide .c-highlight-product__video,
.c-highlight-product--long.c-highlight-product--wide .c-highlight-product__image {
  height: 736px;
  margin-top: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

@media (max-width: 1440px) {
  .c-highlight-product--long.c-highlight-product--wide .c-highlight-product__parallax,
.c-highlight-product--long.c-highlight-product--wide .c-highlight-product__video,
.c-highlight-product--long.c-highlight-product--wide .c-highlight-product__image {
    height: 580px;
  }
}
@media (max-width: 800px) {
  .c-highlight-product--long.c-highlight-product--wide .c-highlight-product__parallax,
.c-highlight-product--long.c-highlight-product--wide .c-highlight-product__video,
.c-highlight-product--long.c-highlight-product--wide .c-highlight-product__image {
    height: 500px;
  }
}
.c-highlight-product--long.c-highlight-product--wide .c-highlight-product__parallax .u-image-wrapper img,
.c-highlight-product--long.c-highlight-product--wide .c-highlight-product__video .u-image-wrapper img,
.c-highlight-product--long.c-highlight-product--wide .c-highlight-product__image .u-image-wrapper img {
  width: auto;
  height: 100%;
}

.c-clients {
  padding-top: 64px;
  padding-bottom: 64px;
}

@media (min-width: 480px) {
  .c-clients {
    padding-top: calc(11.25vw + 10px);
  }
}
@media (min-width: 800px) {
  .c-clients {
    padding-top: 100px;
  }
}
@media (min-width: 1440px) {
  .c-clients {
    padding-top: 100px;
  }
}
@media (min-width: 2560px) {
  .c-clients {
    padding-top: calc(1.0080645161vw + 74.1935483871px);
  }
}
@media (min-width: 3800px) {
  .c-clients {
    padding-top: 112.5px;
  }
}
@media (min-width: 480px) {
  .c-clients {
    padding-bottom: calc(11.25vw + 10px);
  }
}
@media (min-width: 800px) {
  .c-clients {
    padding-bottom: 100px;
  }
}
@media (min-width: 1440px) {
  .c-clients {
    padding-bottom: 100px;
  }
}
@media (min-width: 2560px) {
  .c-clients {
    padding-bottom: calc(1.0080645161vw + 74.1935483871px);
  }
}
@media (min-width: 3800px) {
  .c-clients {
    padding-bottom: 112.5px;
  }
}
.c-clients__inner {
  position: relative;
}

.c-clients__list {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  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;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.c-clients__list:first-child {
  position: static;
}

.c-clients__list:first-child a {
  opacity: 1;
  pointer-events: auto;
}

.c-clients a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
  pointer-events: none;
  max-width: 20%;
}

@media (max-width: 480px) {
  .c-clients a {
    width: 33.3333333333%;
    max-width: none;
  }
}
.c-clients img {
  width: 92px;
  height: 92px;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (min-width: 1440px) {
  .c-clients img {
    width: calc(1.0267857143vw + 77.2142857143px);
  }
}
@media (min-width: 2560px) {
  .c-clients img {
    width: 103.5px;
  }
}
@media (min-width: 1440px) {
  .c-clients img {
    height: calc(1.0267857143vw + 77.2142857143px);
  }
}
@media (min-width: 2560px) {
  .c-clients img {
    height: 103.5px;
  }
}
.c-video-content-slider {
  padding-top: 64px;
  padding-bottom: 64px;
  overflow: hidden;
}

@media (min-width: 480px) {
  .c-video-content-slider {
    padding-top: calc(11.25vw + 10px);
  }
}
@media (min-width: 800px) {
  .c-video-content-slider {
    padding-top: 100px;
  }
}
@media (min-width: 1440px) {
  .c-video-content-slider {
    padding-top: 100px;
  }
}
@media (min-width: 2560px) {
  .c-video-content-slider {
    padding-top: calc(1.0080645161vw + 74.1935483871px);
  }
}
@media (min-width: 3800px) {
  .c-video-content-slider {
    padding-top: 112.5px;
  }
}
@media (min-width: 480px) {
  .c-video-content-slider {
    padding-bottom: calc(11.25vw + 10px);
  }
}
@media (min-width: 800px) {
  .c-video-content-slider {
    padding-bottom: 100px;
  }
}
@media (min-width: 1440px) {
  .c-video-content-slider {
    padding-bottom: 100px;
  }
}
@media (min-width: 2560px) {
  .c-video-content-slider {
    padding-bottom: calc(1.0080645161vw + 74.1935483871px);
  }
}
@media (min-width: 3800px) {
  .c-video-content-slider {
    padding-bottom: 112.5px;
  }
}
.c-video-content-slider.is-dark + p {
  padding-top: 64px;
}

@media (min-width: 480px) {
  .c-video-content-slider.is-dark + p {
    padding-top: calc(11.25vw + 10px);
  }
}
@media (min-width: 800px) {
  .c-video-content-slider.is-dark + p {
    padding-top: 100px;
  }
}
@media (min-width: 1440px) {
  .c-video-content-slider.is-dark + p {
    padding-top: 100px;
  }
}
@media (min-width: 2560px) {
  .c-video-content-slider.is-dark + p {
    padding-top: calc(1.0080645161vw + 74.1935483871px);
  }
}
@media (min-width: 3800px) {
  .c-video-content-slider.is-dark + p {
    padding-top: 112.5px;
  }
}
.c-video-content-slider__title {
  max-width: 720px;
  padding-bottom: 56px;
}

@media (min-width: 1440px) {
  .c-video-content-slider__title {
    max-width: calc(8.0357142857vw + 604.2857142857px);
  }
}
@media (min-width: 2560px) {
  .c-video-content-slider__title {
    max-width: 810px;
  }
}
@media (min-width: 480px) {
  .c-video-content-slider__title {
    padding-bottom: calc(7.5vw + 20px);
  }
}
@media (min-width: 800px) {
  .c-video-content-slider__title {
    padding-bottom: 80px;
  }
}
@media (min-width: 1440px) {
  .c-video-content-slider__title {
    padding-bottom: 80px;
  }
}
@media (min-width: 2560px) {
  .c-video-content-slider__title {
    padding-bottom: calc(0.8064516129vw + 59.3548387097px);
  }
}
@media (min-width: 3800px) {
  .c-video-content-slider__title {
    padding-bottom: 90px;
  }
}
.c-video-content-slider__slider.swiper-container {
  overflow: visible;
}

.c-video-content-slider__pagination-wrapper {
  padding-bottom: 24px;
  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;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

@media (min-width: 480px) {
  .c-video-content-slider__pagination-wrapper {
    padding-bottom: calc(5vw + 0px);
  }
}
@media (min-width: 800px) {
  .c-video-content-slider__pagination-wrapper {
    padding-bottom: 40px;
  }
}
@media (min-width: 1440px) {
  .c-video-content-slider__pagination-wrapper {
    padding-bottom: 40px;
  }
}
@media (min-width: 2560px) {
  .c-video-content-slider__pagination-wrapper {
    padding-bottom: calc(0.4032258065vw + 29.6774193548px);
  }
}
@media (min-width: 3800px) {
  .c-video-content-slider__pagination-wrapper {
    padding-bottom: 45px;
  }
}
.c-video-content-slider__pagination-wrapper .dimmed {
  opacity: 0.5;
}

.c-video-content-slider__slide-poster {
  margin-bottom: 12px;
}

@media (min-width: 480px) {
  .c-video-content-slider__slide-poster {
    margin-bottom: calc(1.25vw + 6px);
  }
}
@media (min-width: 800px) {
  .c-video-content-slider__slide-poster {
    margin-bottom: 16px;
  }
}
@media (min-width: 1440px) {
  .c-video-content-slider__slide-poster {
    margin-bottom: 16px;
  }
}
@media (min-width: 2560px) {
  .c-video-content-slider__slide-poster {
    margin-bottom: calc(0.1612903226vw + 11.8709677419px);
  }
}
@media (min-width: 3800px) {
  .c-video-content-slider__slide-poster {
    margin-bottom: 18px;
  }
}
.c-video-content-slider__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}

.c-video-content-slider__link span {
  position: relative;
}

.c-video-content-slider__link span:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #161617;
}

@media (max-width: 480px) {
  .c-video-content-slider__link span:after {
    display: none;
  }
}
.c-video-content-slider__link .u-icon--play {
  margin-right: 12px;
  width: 100%;
  /* Make the SVG width 100% of its container */
  height: auto;
  /* Maintain the SVG aspect ratio */
  max-width: 31px;
  /* Set a maximum width for the SVG, adjust as needed */
}

@media (min-width: 480px) {
  .c-video-content-slider__link .u-icon--play {
    margin-right: calc(1.25vw + 6px);
  }
}
@media (min-width: 800px) {
  .c-video-content-slider__link .u-icon--play {
    margin-right: 16px;
  }
}
@media (min-width: 1440px) {
  .c-video-content-slider__link .u-icon--play {
    margin-right: 16px;
  }
}
@media (min-width: 2560px) {
  .c-video-content-slider__link .u-icon--play {
    margin-right: calc(0.1612903226vw + 11.8709677419px);
  }
}
@media (min-width: 3800px) {
  .c-video-content-slider__link .u-icon--play {
    margin-right: 18px;
  }
}
.c-video-content-slider__cursor {
  width: 64px;
  height: 64px;
  border-radius: 1000px;
  color: #fafafa;
  border-color: #fafafa;
  background-color: rgba(250, 250, 250, 0.2);
  border: 1px solid;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  pointer-events: none;
  -webkit-transform: translate(300px, 50px);
          transform: translate(300px, 50px);
  font-style: normal;
  cursor: pointer;
}

@media (min-width: 480px) {
  .c-video-content-slider__cursor {
    width: calc(10vw + 16px);
  }
}
@media (min-width: 800px) {
  .c-video-content-slider__cursor {
    width: 96px;
  }
}
@media (min-width: 1440px) {
  .c-video-content-slider__cursor {
    width: 96px;
  }
}
@media (min-width: 2560px) {
  .c-video-content-slider__cursor {
    width: calc(0.9677419355vw + 71.2258064516px);
  }
}
@media (min-width: 3800px) {
  .c-video-content-slider__cursor {
    width: 108px;
  }
}
@media (min-width: 480px) {
  .c-video-content-slider__cursor {
    height: calc(10vw + 16px);
  }
}
@media (min-width: 800px) {
  .c-video-content-slider__cursor {
    height: 96px;
  }
}
@media (min-width: 1440px) {
  .c-video-content-slider__cursor {
    height: 96px;
  }
}
@media (min-width: 2560px) {
  .c-video-content-slider__cursor {
    height: calc(0.9677419355vw + 71.2258064516px);
  }
}
@media (min-width: 3800px) {
  .c-video-content-slider__cursor {
    height: 108px;
  }
}
@media (min-width: 2560px) {
  .c-video-content-slider__cursor {
    border: 2px solid;
  }
}
@media (max-width: 800px) {
  .c-video-content-slider__cursor {
    display: none;
  }
}
.c-video-content-slider__cursor span {
  display: inline-block;
  position: relative;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
}

.c-video-content-slider__cursor i {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0.7);
          transform: translate(-50%, -50%) scale(0.7);
  font-style: normal;
  opacity: 0;
  -webkit-transition: all 0.15s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: all 0.15s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.c-video-content-slider__cursor .u-icon {
  font-size: 7px;
  -webkit-transition: all 0.15s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: all 0.15s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

@media (min-width: 1440px) {
  .c-video-content-slider__cursor .u-icon {
    font-size: calc(0.078125vw + 5.875px);
  }
}
@media (min-width: 2560px) {
  .c-video-content-slider__cursor .u-icon {
    font-size: 7.875px;
  }
}
.c-video-content-slider__cursor .u-icon--chevron-left {
  margin-right: 8px;
}

@media (min-width: 480px) {
  .c-video-content-slider__cursor .u-icon--chevron-left {
    margin-right: calc(1.25vw + 2px);
  }
}
@media (min-width: 800px) {
  .c-video-content-slider__cursor .u-icon--chevron-left {
    margin-right: 12px;
  }
}
@media (min-width: 1440px) {
  .c-video-content-slider__cursor .u-icon--chevron-left {
    margin-right: 12px;
  }
}
@media (min-width: 2560px) {
  .c-video-content-slider__cursor .u-icon--chevron-left {
    margin-right: calc(0.1209677419vw + 8.9032258065px);
  }
}
@media (min-width: 3800px) {
  .c-video-content-slider__cursor .u-icon--chevron-left {
    margin-right: 13.5px;
  }
}
.c-video-content-slider__cursor .u-icon--chevron-right {
  margin-left: 8px;
}

@media (min-width: 480px) {
  .c-video-content-slider__cursor .u-icon--chevron-right {
    margin-left: calc(1.25vw + 2px);
  }
}
@media (min-width: 800px) {
  .c-video-content-slider__cursor .u-icon--chevron-right {
    margin-left: 12px;
  }
}
@media (min-width: 1440px) {
  .c-video-content-slider__cursor .u-icon--chevron-right {
    margin-left: 12px;
  }
}
@media (min-width: 2560px) {
  .c-video-content-slider__cursor .u-icon--chevron-right {
    margin-left: calc(0.1209677419vw + 8.9032258065px);
  }
}
@media (min-width: 3800px) {
  .c-video-content-slider__cursor .u-icon--chevron-right {
    margin-left: 13.5px;
  }
}
.c-video-content-slider__cursor.is-visible span {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.c-video-content-slider__cursor.is-link .u-icon--chevron-left {
  opacity: 0;
  -webkit-transform: translateX(-10px);
          transform: translateX(-10px);
}

.c-video-content-slider__cursor.is-link .u-icon--chevron-right {
  opacity: 0;
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
}

.c-video-content-slider__cursor.is-link i {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
}

.c-video-content-slider.is-dark .c-video-content-slider__cursor, .is-dark .c-video-content-slider .c-video-content-slider__cursor {
  background-color: rgba(250, 250, 250, 0.5);
  border-color: #fafafa;
  color: #000000;
}

.c-video-content-slider.is-dark .c-video-content-slider__link span, .is-dark .c-video-content-slider .c-video-content-slider__link span {
  color: #fafafa;
}

.c-video-content-slider.is-dark .c-video-content-slider__link span:after, .is-dark .c-video-content-slider .c-video-content-slider__link span:after {
  background-color: #fafafa;
}

.c-video-content-slider.is-accent .c-video-content-slider__cursor, .is-accent .c-video-content-slider .c-video-content-slider__cursor {
  background-color: rgba(250, 250, 250, 0.9);
  border-color: #fafafa;
  color: #000000;
}

.c-video-content-slider.is-accent .c-video-content-slider__link span, .is-accent .c-video-content-slider .c-video-content-slider__link span {
  color: #000000;
}

.c-video-content-slider.is-accent .c-video-content-slider__link span:after, .is-accent .c-video-content-slider .c-video-content-slider__link span:after {
  background-color: #000000;
}

.c-video-content-slider .swiper-slide {
  /*&.swiper-slide-prev,
  &.swiper-slide-next,
  &.swiper-slide-active {
      p {
          opacity: 1;
      }
  }*/
}

.swiper-slide:last-of-type .c-video-content-slider__slide {
  padding-right: 0;
}

.c-product-specification {
  background-color: #161617;
}

.c-product-specification__wrapper {
  padding-top: 64px;
  padding-bottom: 64px;
  border-top: 1px solid rgba(250, 250, 250, 0.2);
}

@media (min-width: 480px) {
  .c-product-specification__wrapper {
    padding-top: calc(11.25vw + 10px);
  }
}
@media (min-width: 800px) {
  .c-product-specification__wrapper {
    padding-top: 100px;
  }
}
@media (min-width: 1440px) {
  .c-product-specification__wrapper {
    padding-top: 100px;
  }
}
@media (min-width: 2560px) {
  .c-product-specification__wrapper {
    padding-top: calc(1.0080645161vw + 74.1935483871px);
  }
}
@media (min-width: 3800px) {
  .c-product-specification__wrapper {
    padding-top: 112.5px;
  }
}
@media (min-width: 480px) {
  .c-product-specification__wrapper {
    padding-bottom: calc(11.25vw + 10px);
  }
}
@media (min-width: 800px) {
  .c-product-specification__wrapper {
    padding-bottom: 100px;
  }
}
@media (min-width: 1440px) {
  .c-product-specification__wrapper {
    padding-bottom: 100px;
  }
}
@media (min-width: 2560px) {
  .c-product-specification__wrapper {
    padding-bottom: calc(1.0080645161vw + 74.1935483871px);
  }
}
@media (min-width: 3800px) {
  .c-product-specification__wrapper {
    padding-bottom: 112.5px;
  }
}
.c-product-specification__title {
  color: #fafafa;
  padding-bottom: 24px;
}

@media (min-width: 480px) {
  .c-product-specification__title {
    padding-bottom: calc(5vw + 0px);
  }
}
@media (min-width: 800px) {
  .c-product-specification__title {
    padding-bottom: 40px;
  }
}
@media (min-width: 1440px) {
  .c-product-specification__title {
    padding-bottom: 40px;
  }
}
@media (min-width: 2560px) {
  .c-product-specification__title {
    padding-bottom: calc(0.4032258065vw + 29.6774193548px);
  }
}
@media (min-width: 3800px) {
  .c-product-specification__title {
    padding-bottom: 45px;
  }
}
.c-product-specification__title span {
  display: block;
}

.c-product-specification__image {
  padding-bottom: 64px;
}

@media (min-width: 480px) {
  .c-product-specification__image {
    padding-bottom: calc(11.25vw + 10px);
  }
}
@media (min-width: 800px) {
  .c-product-specification__image {
    padding-bottom: 100px;
  }
}
@media (min-width: 1440px) {
  .c-product-specification__image {
    padding-bottom: 100px;
  }
}
@media (min-width: 2560px) {
  .c-product-specification__image {
    padding-bottom: calc(1.0080645161vw + 74.1935483871px);
  }
}
@media (min-width: 3800px) {
  .c-product-specification__image {
    padding-bottom: 112.5px;
  }
}
.c-product-specification__image .u-image-wrapper {
  position: -webkit-sticky;
  position: sticky;
  top: 64px;
}

@media (min-width: 480px) {
  .c-product-specification__image .u-image-wrapper {
    top: calc(11.25vw + 10px);
  }
}
@media (min-width: 800px) {
  .c-product-specification__image .u-image-wrapper {
    top: 100px;
  }
}
@media (min-width: 1440px) {
  .c-product-specification__image .u-image-wrapper {
    top: 100px;
  }
}
@media (min-width: 2560px) {
  .c-product-specification__image .u-image-wrapper {
    top: calc(1.0080645161vw + 74.1935483871px);
  }
}
@media (min-width: 3800px) {
  .c-product-specification__image .u-image-wrapper {
    top: 112.5px;
  }
}
.c-product-specification__detail-wrapper {
  max-width: 65.7894736842%;
  width: 100%;
  margin-left: auto;
  margin-top: 56px;
}

@media (min-width: 480px) {
  .c-product-specification__detail-wrapper {
    margin-top: calc(7.5vw + 20px);
  }
}
@media (min-width: 800px) {
  .c-product-specification__detail-wrapper {
    margin-top: 80px;
  }
}
@media (min-width: 1440px) {
  .c-product-specification__detail-wrapper {
    margin-top: 80px;
  }
}
@media (min-width: 2560px) {
  .c-product-specification__detail-wrapper {
    margin-top: calc(0.8064516129vw + 59.3548387097px);
  }
}
@media (min-width: 3800px) {
  .c-product-specification__detail-wrapper {
    margin-top: 90px;
  }
}
@media (max-width: 800px) {
  .c-product-specification__detail-wrapper {
    max-width: 72.7272727273%;
  }
}
@media (max-width: 600px) {
  .c-product-specification__detail-wrapper {
    max-width: 100%;
  }
}
.c-product-specification__cta-button {
  padding-top: 56px;
}

@media (min-width: 480px) {
  .c-product-specification__cta-button {
    padding-top: calc(7.5vw + 20px);
  }
}
@media (min-width: 800px) {
  .c-product-specification__cta-button {
    padding-top: 80px;
  }
}
@media (min-width: 1440px) {
  .c-product-specification__cta-button {
    padding-top: 80px;
  }
}
@media (min-width: 2560px) {
  .c-product-specification__cta-button {
    padding-top: calc(0.8064516129vw + 59.3548387097px);
  }
}
@media (min-width: 3800px) {
  .c-product-specification__cta-button {
    padding-top: 90px;
  }
}
.c-product-specification__cta-button .c-button {
  color: #fafafa;
  -webkit-transition: color 0.25s;
  transition: color 0.25s;
}

.c-product-specification__cta-button .c-button:before {
  border: 1px solid #fafafa;
}

@media (hover: hover) and (pointer: fine) {
  .c-product-specification__cta-button .c-button:hover {
    color: #161617;
  }
}
.c-product-specification--full .c-product-specification__title {
  padding-top: 64px;
}

@media (min-width: 480px) {
  .c-product-specification--full .c-product-specification__title {
    padding-top: calc(17.5vw - 20px);
  }
}
@media (min-width: 800px) {
  .c-product-specification--full .c-product-specification__title {
    padding-top: 120px;
  }
}
@media (min-width: 1440px) {
  .c-product-specification--full .c-product-specification__title {
    padding-top: 120px;
  }
}
@media (min-width: 2560px) {
  .c-product-specification--full .c-product-specification__title {
    padding-top: calc(1.2096774194vw + 89.0322580645px);
  }
}
@media (min-width: 3800px) {
  .c-product-specification--full .c-product-specification__title {
    padding-top: 135px;
  }
}
.c-product-specification--full .c-product-specification__detail-wrapper {
  max-width: 100%;
}

.c-product-specification .c-product-info__type:first-child {
  padding-top: 0;
}

.c-product-specification-full {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: 100%;
}

@media (max-width: 600px) {
  .c-product-specification-full {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.c-product-specification-full .c-product-specification__image {
  padding-top: 16px;
  width: 43.1818181818%;
  padding-right: 6.8181818182%;
}

@media (min-width: 480px) {
  .c-product-specification-full .c-product-specification__image {
    padding-top: calc(2.5vw + 4px);
  }
}
@media (min-width: 800px) {
  .c-product-specification-full .c-product-specification__image {
    padding-top: 24px;
  }
}
@media (min-width: 1440px) {
  .c-product-specification-full .c-product-specification__image {
    padding-top: 24px;
  }
}
@media (min-width: 2560px) {
  .c-product-specification-full .c-product-specification__image {
    padding-top: calc(0.2419354839vw + 17.8064516129px);
  }
}
@media (min-width: 3800px) {
  .c-product-specification-full .c-product-specification__image {
    padding-top: 27px;
  }
}
@media (max-width: 600px) {
  .c-product-specification-full .c-product-specification__image {
    padding-right: 0;
    width: 100%;
  }
}
.c-product-specification-full .c-product-specification__wrapper {
  width: 56.8181818182%;
  border-top: none;
  padding-top: 0;
}

@media (max-width: 600px) {
  .c-product-specification-full .c-product-specification__wrapper {
    width: 100%;
  }
}
.c-product-specification-full .c-product-specification__detail-wrapper {
  margin-top: 0;
}

.c-three-column {
  padding-top: 64px;
  padding-bottom: 64px;
}

@media (min-width: 480px) {
  .c-three-column {
    padding-top: calc(11.25vw + 10px);
  }
}
@media (min-width: 800px) {
  .c-three-column {
    padding-top: 100px;
  }
}
@media (min-width: 1440px) {
  .c-three-column {
    padding-top: 100px;
  }
}
@media (min-width: 2560px) {
  .c-three-column {
    padding-top: calc(1.0080645161vw + 74.1935483871px);
  }
}
@media (min-width: 3800px) {
  .c-three-column {
    padding-top: 112.5px;
  }
}
@media (min-width: 480px) {
  .c-three-column {
    padding-bottom: calc(11.25vw + 10px);
  }
}
@media (min-width: 800px) {
  .c-three-column {
    padding-bottom: 100px;
  }
}
@media (min-width: 1440px) {
  .c-three-column {
    padding-bottom: 100px;
  }
}
@media (min-width: 2560px) {
  .c-three-column {
    padding-bottom: calc(1.0080645161vw + 74.1935483871px);
  }
}
@media (min-width: 3800px) {
  .c-three-column {
    padding-bottom: 112.5px;
  }
}
.c-three-column__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding-top: 56px;
  margin-right: -12px;
  margin-left: -12px;
}

@media (min-width: 480px) {
  .c-three-column__wrapper {
    padding-top: calc(7.5vw + 20px);
  }
}
@media (min-width: 800px) {
  .c-three-column__wrapper {
    padding-top: 80px;
  }
}
@media (min-width: 1440px) {
  .c-three-column__wrapper {
    padding-top: 80px;
  }
}
@media (min-width: 2560px) {
  .c-three-column__wrapper {
    padding-top: calc(0.8064516129vw + 59.3548387097px);
  }
}
@media (min-width: 3800px) {
  .c-three-column__wrapper {
    padding-top: 90px;
  }
}
@media (min-width: 480px) {
  .c-three-column__wrapper {
    margin-right: calc(-2.5vw + 0px);
  }
}
@media (min-width: 800px) {
  .c-three-column__wrapper {
    margin-right: -20px;
  }
}
@media (min-width: 1440px) {
  .c-three-column__wrapper {
    margin-right: -20px;
  }
}
@media (min-width: 2560px) {
  .c-three-column__wrapper {
    margin-right: calc(-0.2016129032vw - 14.8387096774px);
  }
}
@media (min-width: 3800px) {
  .c-three-column__wrapper {
    margin-right: -22.5px;
  }
}
@media (min-width: 480px) {
  .c-three-column__wrapper {
    margin-left: calc(-2.5vw + 0px);
  }
}
@media (min-width: 800px) {
  .c-three-column__wrapper {
    margin-left: -20px;
  }
}
@media (min-width: 1440px) {
  .c-three-column__wrapper {
    margin-left: -20px;
  }
}
@media (min-width: 2560px) {
  .c-three-column__wrapper {
    margin-left: calc(-0.2016129032vw - 14.8387096774px);
  }
}
@media (min-width: 3800px) {
  .c-three-column__wrapper {
    margin-left: -22.5px;
  }
}
@media (max-width: 800px) {
  .c-three-column__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 12px;
  }
}
@media (max-width: 800px) and (min-width: 480px) {
  .c-three-column__wrapper {
    padding-top: calc(1.25vw + 6px);
  }
}
@media (max-width: 800px) and (min-width: 800px) {
  .c-three-column__wrapper {
    padding-top: 16px;
  }
}
@media (max-width: 800px) and (min-width: 1440px) {
  .c-three-column__wrapper {
    padding-top: 16px;
  }
}
@media (max-width: 800px) and (min-width: 2560px) {
  .c-three-column__wrapper {
    padding-top: calc(0.1612903226vw + 11.8709677419px);
  }
}
@media (max-width: 800px) and (min-width: 3800px) {
  .c-three-column__wrapper {
    padding-top: 18px;
  }
}
@media (max-width: 480px) {
  .c-three-column__wrapper {
    margin-left: 0;
    margin-right: 0;
  }
}
.c-three-column__inner {
  padding-right: 12px;
  padding-left: 12px;
  max-width: 33.3333333333%;
  width: 100%;
}

@media (min-width: 480px) {
  .c-three-column__inner {
    padding-right: calc(2.5vw + 0px);
  }
}
@media (min-width: 800px) {
  .c-three-column__inner {
    padding-right: 20px;
  }
}
@media (min-width: 1440px) {
  .c-three-column__inner {
    padding-right: 20px;
  }
}
@media (min-width: 2560px) {
  .c-three-column__inner {
    padding-right: calc(0.2016129032vw + 14.8387096774px);
  }
}
@media (min-width: 3800px) {
  .c-three-column__inner {
    padding-right: 22.5px;
  }
}
@media (min-width: 480px) {
  .c-three-column__inner {
    padding-left: calc(2.5vw + 0px);
  }
}
@media (min-width: 800px) {
  .c-three-column__inner {
    padding-left: 20px;
  }
}
@media (min-width: 1440px) {
  .c-three-column__inner {
    padding-left: 20px;
  }
}
@media (min-width: 2560px) {
  .c-three-column__inner {
    padding-left: calc(0.2016129032vw + 14.8387096774px);
  }
}
@media (min-width: 3800px) {
  .c-three-column__inner {
    padding-left: 22.5px;
  }
}
@media (max-width: 800px) {
  .c-three-column__inner {
    max-width: 100%;
    padding-top: 16px;
  }
}
@media (max-width: 800px) and (min-width: 480px) {
  .c-three-column__inner {
    padding-top: calc(2.5vw + 4px);
  }
}
@media (max-width: 800px) and (min-width: 800px) {
  .c-three-column__inner {
    padding-top: 24px;
  }
}
@media (max-width: 800px) and (min-width: 1440px) {
  .c-three-column__inner {
    padding-top: 24px;
  }
}
@media (max-width: 800px) and (min-width: 2560px) {
  .c-three-column__inner {
    padding-top: calc(0.2419354839vw + 17.8064516129px);
  }
}
@media (max-width: 800px) and (min-width: 3800px) {
  .c-three-column__inner {
    padding-top: 27px;
  }
}
@media (max-width: 480px) {
  .c-three-column__inner {
    padding-right: 0;
    padding-left: 0;
  }
}
.c-three-column__title {
  color: #161617;
  padding-bottom: 8px;
}

@media (min-width: 480px) {
  .c-three-column__title {
    padding-bottom: calc(1.25vw + 2px);
  }
}
@media (min-width: 800px) {
  .c-three-column__title {
    padding-bottom: 12px;
  }
}
@media (min-width: 1440px) {
  .c-three-column__title {
    padding-bottom: 12px;
  }
}
@media (min-width: 2560px) {
  .c-three-column__title {
    padding-bottom: calc(0.1209677419vw + 8.9032258065px);
  }
}
@media (min-width: 3800px) {
  .c-three-column__title {
    padding-bottom: 13.5px;
  }
}
.c-three-column__content {
  color: #161617;
}

.c-resources-plugins {
  padding-top: 64px;
  padding-bottom: 64px;
}

@media (min-width: 480px) {
  .c-resources-plugins {
    padding-top: calc(11.25vw + 10px);
  }
}
@media (min-width: 800px) {
  .c-resources-plugins {
    padding-top: 100px;
  }
}
@media (min-width: 1440px) {
  .c-resources-plugins {
    padding-top: 100px;
  }
}
@media (min-width: 2560px) {
  .c-resources-plugins {
    padding-top: calc(1.0080645161vw + 74.1935483871px);
  }
}
@media (min-width: 3800px) {
  .c-resources-plugins {
    padding-top: 112.5px;
  }
}
@media (min-width: 480px) {
  .c-resources-plugins {
    padding-bottom: calc(11.25vw + 10px);
  }
}
@media (min-width: 800px) {
  .c-resources-plugins {
    padding-bottom: 100px;
  }
}
@media (min-width: 1440px) {
  .c-resources-plugins {
    padding-bottom: 100px;
  }
}
@media (min-width: 2560px) {
  .c-resources-plugins {
    padding-bottom: calc(1.0080645161vw + 74.1935483871px);
  }
}
@media (min-width: 3800px) {
  .c-resources-plugins {
    padding-bottom: 112.5px;
  }
}
.c-resources-plugins__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  margin-right: -12px;
  margin-left: -12px;
}

@media (min-width: 480px) {
  .c-resources-plugins__list {
    margin-right: calc(-2.5vw + 0px);
  }
}
@media (min-width: 800px) {
  .c-resources-plugins__list {
    margin-right: -20px;
  }
}
@media (min-width: 1440px) {
  .c-resources-plugins__list {
    margin-right: -20px;
  }
}
@media (min-width: 2560px) {
  .c-resources-plugins__list {
    margin-right: calc(-0.2016129032vw - 14.8387096774px);
  }
}
@media (min-width: 3800px) {
  .c-resources-plugins__list {
    margin-right: -22.5px;
  }
}
@media (min-width: 480px) {
  .c-resources-plugins__list {
    margin-left: calc(-2.5vw + 0px);
  }
}
@media (min-width: 800px) {
  .c-resources-plugins__list {
    margin-left: -20px;
  }
}
@media (min-width: 1440px) {
  .c-resources-plugins__list {
    margin-left: -20px;
  }
}
@media (min-width: 2560px) {
  .c-resources-plugins__list {
    margin-left: calc(-0.2016129032vw - 14.8387096774px);
  }
}
@media (min-width: 3800px) {
  .c-resources-plugins__list {
    margin-left: -22.5px;
  }
}
.c-plugin-card {
  width: 33.3333333333%;
  padding-top: 24px;
  padding-bottom: 16px;
  padding-right: 12px;
  padding-left: 12px;
}

@media (min-width: 480px) {
  .c-plugin-card {
    padding-top: calc(7.5vw - 12px);
  }
}
@media (min-width: 800px) {
  .c-plugin-card {
    padding-top: 48px;
  }
}
@media (min-width: 1440px) {
  .c-plugin-card {
    padding-top: 48px;
  }
}
@media (min-width: 2560px) {
  .c-plugin-card {
    padding-top: calc(0.4838709677vw + 35.6129032258px);
  }
}
@media (min-width: 3800px) {
  .c-plugin-card {
    padding-top: 54px;
  }
}
@media (min-width: 480px) {
  .c-plugin-card {
    padding-bottom: calc(2.5vw + 4px);
  }
}
@media (min-width: 800px) {
  .c-plugin-card {
    padding-bottom: 24px;
  }
}
@media (min-width: 1440px) {
  .c-plugin-card {
    padding-bottom: 24px;
  }
}
@media (min-width: 2560px) {
  .c-plugin-card {
    padding-bottom: calc(0.2419354839vw + 17.8064516129px);
  }
}
@media (min-width: 3800px) {
  .c-plugin-card {
    padding-bottom: 27px;
  }
}
@media (min-width: 480px) {
  .c-plugin-card {
    padding-right: calc(2.5vw + 0px);
  }
}
@media (min-width: 800px) {
  .c-plugin-card {
    padding-right: 20px;
  }
}
@media (min-width: 1440px) {
  .c-plugin-card {
    padding-right: 20px;
  }
}
@media (min-width: 2560px) {
  .c-plugin-card {
    padding-right: calc(0.2016129032vw + 14.8387096774px);
  }
}
@media (min-width: 3800px) {
  .c-plugin-card {
    padding-right: 22.5px;
  }
}
@media (min-width: 480px) {
  .c-plugin-card {
    padding-left: calc(2.5vw + 0px);
  }
}
@media (min-width: 800px) {
  .c-plugin-card {
    padding-left: 20px;
  }
}
@media (min-width: 1440px) {
  .c-plugin-card {
    padding-left: 20px;
  }
}
@media (min-width: 2560px) {
  .c-plugin-card {
    padding-left: calc(0.2016129032vw + 14.8387096774px);
  }
}
@media (min-width: 3800px) {
  .c-plugin-card {
    padding-left: 22.5px;
  }
}
@media (max-width: 800px) {
  .c-plugin-card {
    padding-top: 40px;
    width: 50%;
  }
}
@media (max-width: 800px) and (min-width: 480px) {
  .c-plugin-card {
    padding-top: calc(7.5vw + 4px);
  }
}
@media (max-width: 800px) and (min-width: 800px) {
  .c-plugin-card {
    padding-top: 64px;
  }
}
@media (max-width: 800px) and (min-width: 1440px) {
  .c-plugin-card {
    padding-top: 64px;
  }
}
@media (max-width: 800px) and (min-width: 2560px) {
  .c-plugin-card {
    padding-top: calc(0.6451612903vw + 47.4838709677px);
  }
}
@media (max-width: 800px) and (min-width: 3800px) {
  .c-plugin-card {
    padding-top: 72px;
  }
}
@media (max-width: 480px) {
  .c-plugin-card {
    padding-top: 40px;
    width: 100%;
  }
}
@media (max-width: 480px) and (min-width: 480px) {
  .c-plugin-card {
    padding-top: calc(7.5vw + 4px);
  }
}
@media (max-width: 480px) and (min-width: 800px) {
  .c-plugin-card {
    padding-top: 64px;
  }
}
@media (max-width: 480px) and (min-width: 1440px) {
  .c-plugin-card {
    padding-top: 64px;
  }
}
@media (max-width: 480px) and (min-width: 2560px) {
  .c-plugin-card {
    padding-top: calc(0.6451612903vw + 47.4838709677px);
  }
}
@media (max-width: 480px) and (min-width: 3800px) {
  .c-plugin-card {
    padding-top: 72px;
  }
}
.c-plugin-card__description {
  padding-top: 24px;
  padding-bottom: 12px;
}

@media (min-width: 480px) {
  .c-plugin-card__description {
    padding-top: calc(5vw + 0px);
  }
}
@media (min-width: 800px) {
  .c-plugin-card__description {
    padding-top: 40px;
  }
}
@media (min-width: 1440px) {
  .c-plugin-card__description {
    padding-top: 40px;
  }
}
@media (min-width: 2560px) {
  .c-plugin-card__description {
    padding-top: calc(0.4032258065vw + 29.6774193548px);
  }
}
@media (min-width: 3800px) {
  .c-plugin-card__description {
    padding-top: 45px;
  }
}
@media (min-width: 480px) {
  .c-plugin-card__description {
    padding-bottom: calc(1.25vw + 6px);
  }
}
@media (min-width: 800px) {
  .c-plugin-card__description {
    padding-bottom: 16px;
  }
}
@media (min-width: 1440px) {
  .c-plugin-card__description {
    padding-bottom: 16px;
  }
}
@media (min-width: 2560px) {
  .c-plugin-card__description {
    padding-bottom: calc(0.1612903226vw + 11.8709677419px);
  }
}
@media (min-width: 3800px) {
  .c-plugin-card__description {
    padding-bottom: 18px;
  }
}
.c-content-link-list {
  padding-top: 64px;
  padding-bottom: 64px;
}

@media (min-width: 480px) {
  .c-content-link-list {
    padding-top: calc(11.25vw + 10px);
  }
}
@media (min-width: 800px) {
  .c-content-link-list {
    padding-top: 100px;
  }
}
@media (min-width: 1440px) {
  .c-content-link-list {
    padding-top: 100px;
  }
}
@media (min-width: 2560px) {
  .c-content-link-list {
    padding-top: calc(1.0080645161vw + 74.1935483871px);
  }
}
@media (min-width: 3800px) {
  .c-content-link-list {
    padding-top: 112.5px;
  }
}
@media (min-width: 480px) {
  .c-content-link-list {
    padding-bottom: calc(11.25vw + 10px);
  }
}
@media (min-width: 800px) {
  .c-content-link-list {
    padding-bottom: 100px;
  }
}
@media (min-width: 1440px) {
  .c-content-link-list {
    padding-bottom: 100px;
  }
}
@media (min-width: 2560px) {
  .c-content-link-list {
    padding-bottom: calc(1.0080645161vw + 74.1935483871px);
  }
}
@media (min-width: 3800px) {
  .c-content-link-list {
    padding-bottom: 112.5px;
  }
}
.c-content-link-list__title span {
  display: block;
}

.c-content-link-list__wrapper {
  max-width: 65.7894736842%;
  width: 100%;
  margin-left: auto;
  padding-top: 56px;
}

@media (min-width: 480px) {
  .c-content-link-list__wrapper {
    padding-top: calc(7.5vw + 20px);
  }
}
@media (min-width: 800px) {
  .c-content-link-list__wrapper {
    padding-top: 80px;
  }
}
@media (min-width: 1440px) {
  .c-content-link-list__wrapper {
    padding-top: 80px;
  }
}
@media (min-width: 2560px) {
  .c-content-link-list__wrapper {
    padding-top: calc(0.8064516129vw + 59.3548387097px);
  }
}
@media (min-width: 3800px) {
  .c-content-link-list__wrapper {
    padding-top: 90px;
  }
}
@media (max-width: 800px) {
  .c-content-link-list__wrapper {
    max-width: 72.7272727273%;
  }
}
@media (max-width: 480px) {
  .c-content-link-list__wrapper {
    max-width: 100%;
  }
}
.c-content-link-list__inner {
  max-width: 560px;
  width: 100%;
}

@media (min-width: 1440px) {
  .c-content-link-list__inner {
    max-width: calc(6.25vw + 470px);
  }
}
@media (min-width: 2560px) {
  .c-content-link-list__inner {
    max-width: 630px;
  }
}
@media (max-width: 480px) {
  .c-content-link-list__inner {
    max-width: 100%;
  }
}
.c-content-link-list__description p {
  padding-bottom: 12px;
}

@media (min-width: 480px) {
  .c-content-link-list__description p {
    padding-bottom: calc(1.25vw + 6px);
  }
}
@media (min-width: 800px) {
  .c-content-link-list__description p {
    padding-bottom: 16px;
  }
}
@media (min-width: 1440px) {
  .c-content-link-list__description p {
    padding-bottom: 16px;
  }
}
@media (min-width: 2560px) {
  .c-content-link-list__description p {
    padding-bottom: calc(0.1612903226vw + 11.8709677419px);
  }
}
@media (min-width: 3800px) {
  .c-content-link-list__description p {
    padding-bottom: 18px;
  }
}
.c-content-link-list__description p:last-child {
  padding-bottom: 0;
}

.c-content-link-list__single-link {
  padding-top: 24px;
}

@media (min-width: 480px) {
  .c-content-link-list__single-link {
    padding-top: calc(5vw + 0px);
  }
}
@media (min-width: 800px) {
  .c-content-link-list__single-link {
    padding-top: 40px;
  }
}
@media (min-width: 1440px) {
  .c-content-link-list__single-link {
    padding-top: 40px;
  }
}
@media (min-width: 2560px) {
  .c-content-link-list__single-link {
    padding-top: calc(0.4032258065vw + 29.6774193548px);
  }
}
@media (min-width: 3800px) {
  .c-content-link-list__single-link {
    padding-top: 45px;
  }
}
.c-content-link-list__multiple-link {
  padding-top: 24px;
}

@media (min-width: 480px) {
  .c-content-link-list__multiple-link {
    padding-top: calc(5vw + 0px);
  }
}
@media (min-width: 800px) {
  .c-content-link-list__multiple-link {
    padding-top: 40px;
  }
}
@media (min-width: 1440px) {
  .c-content-link-list__multiple-link {
    padding-top: 40px;
  }
}
@media (min-width: 2560px) {
  .c-content-link-list__multiple-link {
    padding-top: calc(0.4032258065vw + 29.6774193548px);
  }
}
@media (min-width: 3800px) {
  .c-content-link-list__multiple-link {
    padding-top: 45px;
  }
}
.c-content-link-list__link-item {
  margin-bottom: 24px;
}

@media (min-width: 480px) {
  .c-content-link-list__link-item {
    margin-bottom: calc(5vw + 0px);
  }
}
@media (min-width: 800px) {
  .c-content-link-list__link-item {
    margin-bottom: 40px;
  }
}
@media (min-width: 1440px) {
  .c-content-link-list__link-item {
    margin-bottom: 40px;
  }
}
@media (min-width: 2560px) {
  .c-content-link-list__link-item {
    margin-bottom: calc(0.4032258065vw + 29.6774193548px);
  }
}
@media (min-width: 3800px) {
  .c-content-link-list__link-item {
    margin-bottom: 45px;
  }
}
.c-content-link-list__link-item:last-child {
  margin-bottom: 0;
}

.c-content-link-list.is-dark .c-link:before, .is-dark .c-content-link-list .c-link:before {
  background-color: rgba(250, 250, 250, 0.5);
}

.c-section-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.c-section-pagination__item .c-section-pagination-number {
  color: #161617;
  opacity: 0.5;
}

@media (max-width: 800px) {
  .c-section-pagination__item .c-section-pagination-number {
    font-size: 22px;
  }
}
@media (max-width: 800px) and (min-width: 480px) {
  .c-section-pagination__item .c-section-pagination-number {
    font-size: 22px;
  }
}
@media (max-width: 800px) and (min-width: 1440px) {
  .c-section-pagination__item .c-section-pagination-number {
    font-size: 22px;
  }
}
@media (max-width: 800px) and (min-width: 2560px) {
  .c-section-pagination__item .c-section-pagination-number {
    font-size: 22px;
  }
}
.c-section-pagination__item .c-section-pagination-number.is-active {
  opacity: 1;
  pointer-events: none;
}

.c-section-pagination--separator span {
  padding: 0 5px;
  color: #161617;
  opacity: 0.5;
}

@media (max-width: 800px) {
  .c-section-pagination--separator span {
    font-size: 22px;
    padding: 0 15px;
  }
}
@media (max-width: 800px) and (min-width: 480px) {
  .c-section-pagination--separator span {
    font-size: 22px;
  }
}
@media (max-width: 800px) and (min-width: 1440px) {
  .c-section-pagination--separator span {
    font-size: 22px;
  }
}
@media (max-width: 800px) and (min-width: 2560px) {
  .c-section-pagination--separator span {
    font-size: 22px;
  }
}
.c-section-pagination--separator:last-child {
  display: none;
}

.c-quote-section {
  padding-top: 64px;
  padding-bottom: 64px;
}

@media (min-width: 480px) {
  .c-quote-section {
    padding-top: calc(11.25vw + 10px);
  }
}
@media (min-width: 800px) {
  .c-quote-section {
    padding-top: 100px;
  }
}
@media (min-width: 1440px) {
  .c-quote-section {
    padding-top: 100px;
  }
}
@media (min-width: 2560px) {
  .c-quote-section {
    padding-top: calc(1.0080645161vw + 74.1935483871px);
  }
}
@media (min-width: 3800px) {
  .c-quote-section {
    padding-top: 112.5px;
  }
}
@media (min-width: 480px) {
  .c-quote-section {
    padding-bottom: calc(11.25vw + 10px);
  }
}
@media (min-width: 800px) {
  .c-quote-section {
    padding-bottom: 100px;
  }
}
@media (min-width: 1440px) {
  .c-quote-section {
    padding-bottom: 100px;
  }
}
@media (min-width: 2560px) {
  .c-quote-section {
    padding-bottom: calc(1.0080645161vw + 74.1935483871px);
  }
}
@media (min-width: 3800px) {
  .c-quote-section {
    padding-bottom: 112.5px;
  }
}
.c-quote-section.is-dark .c-quote__company, .is-dark .c-quote-section .c-quote__company {
  color: rgba(250, 250, 250, 0.5);
}

.c-interest-links {
  padding-top: 64px;
  padding-bottom: 64px;
}

@media (min-width: 480px) {
  .c-interest-links {
    padding-top: calc(11.25vw + 10px);
  }
}
@media (min-width: 800px) {
  .c-interest-links {
    padding-top: 100px;
  }
}
@media (min-width: 1440px) {
  .c-interest-links {
    padding-top: 100px;
  }
}
@media (min-width: 2560px) {
  .c-interest-links {
    padding-top: calc(1.0080645161vw + 74.1935483871px);
  }
}
@media (min-width: 3800px) {
  .c-interest-links {
    padding-top: 112.5px;
  }
}
@media (min-width: 480px) {
  .c-interest-links {
    padding-bottom: calc(11.25vw + 10px);
  }
}
@media (min-width: 800px) {
  .c-interest-links {
    padding-bottom: 100px;
  }
}
@media (min-width: 1440px) {
  .c-interest-links {
    padding-bottom: 100px;
  }
}
@media (min-width: 2560px) {
  .c-interest-links {
    padding-bottom: calc(1.0080645161vw + 74.1935483871px);
  }
}
@media (min-width: 3800px) {
  .c-interest-links {
    padding-bottom: 112.5px;
  }
}
.c-interest-links__title {
  text-transform: uppercase;
}

.c-interest-links__title span {
  display: block;
}

.c-interest-links__wrapper {
  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;
  padding-top: 64px;
}

@media (min-width: 480px) {
  .c-interest-links__wrapper {
    padding-top: calc(17.5vw - 20px);
  }
}
@media (min-width: 800px) {
  .c-interest-links__wrapper {
    padding-top: 120px;
  }
}
@media (min-width: 1440px) {
  .c-interest-links__wrapper {
    padding-top: 120px;
  }
}
@media (min-width: 2560px) {
  .c-interest-links__wrapper {
    padding-top: calc(1.2096774194vw + 89.0322580645px);
  }
}
@media (min-width: 3800px) {
  .c-interest-links__wrapper {
    padding-top: 135px;
  }
}
@media (max-width: 800px) {
  .c-interest-links__wrapper {
    width: 100%;
  }
}
.c-interest-links__item {
  width: 50%;
}

.c-interest-links__item a {
  padding-top: 8px;
  padding-bottom: 8px;
  display: inline-block;
  -webkit-transition: opacity 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: opacity 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

@media (min-width: 480px) {
  .c-interest-links__item a {
    padding-top: 8px;
  }
}
@media (min-width: 800px) {
  .c-interest-links__item a {
    padding-top: 8px;
  }
}
@media (min-width: 1440px) {
  .c-interest-links__item a {
    padding-top: 8px;
  }
}
@media (min-width: 2560px) {
  .c-interest-links__item a {
    padding-top: calc(0.0806451613vw + 5.935483871px);
  }
}
@media (min-width: 3800px) {
  .c-interest-links__item a {
    padding-top: 9px;
  }
}
@media (min-width: 480px) {
  .c-interest-links__item a {
    padding-bottom: 8px;
  }
}
@media (min-width: 800px) {
  .c-interest-links__item a {
    padding-bottom: 8px;
  }
}
@media (min-width: 1440px) {
  .c-interest-links__item a {
    padding-bottom: 8px;
  }
}
@media (min-width: 2560px) {
  .c-interest-links__item a {
    padding-bottom: calc(0.0806451613vw + 5.935483871px);
  }
}
@media (min-width: 3800px) {
  .c-interest-links__item a {
    padding-bottom: 9px;
  }
}
.c-interest-links__item a.is-blurred {
  opacity: 0.5;
}

.c-interest-links__item span {
  display: block;
}

@media (max-width: 600px) {
  .c-interest-links__item {
    width: 100%;
  }
}
.c-404 {
  background-color: rgba(203, 209, 219, 0.3);
}

.c-404__wrapper {
  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: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-left: 4.1666666667%;
  padding-right: 4.1666666667%;
  min-height: 100vh;
  width: 100%;
  padding-bottom: 24px;
}

@media (min-width: 480px) {
  .c-404__wrapper {
    padding-bottom: calc(5vw + 0px);
  }
}
@media (min-width: 800px) {
  .c-404__wrapper {
    padding-bottom: 40px;
  }
}
@media (min-width: 1440px) {
  .c-404__wrapper {
    padding-bottom: 40px;
  }
}
@media (min-width: 2560px) {
  .c-404__wrapper {
    padding-bottom: calc(0.4032258065vw + 29.6774193548px);
  }
}
@media (min-width: 3800px) {
  .c-404__wrapper {
    padding-bottom: 45px;
  }
}
@media (max-width: 800px) {
  .c-404__wrapper {
    -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;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-right: 0;
    padding-left: 0;
  }
}
.c-404__title {
  max-width: 73.9130434783%;
  width: 100%;
}

.c-404__title h1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 800px) {
  .c-404__title h1 {
    display: block;
  }
}
.c-404__title h1 span {
  display: block;
}

.c-404__title h1 span:last-child {
  -ms-flex-item-align: end;
      align-self: flex-end;
}

.c-404__back-to-home {
  color: rgba(22, 22, 23, 0.5);
  overflow: hidden;
}

.c-404__back-to-home .u-icon {
  fill: rgba(22, 22, 23, 0.2);
}

.c-product-list {
  padding-top: 64px;
  padding-bottom: 64px;
}

@media (min-width: 480px) {
  .c-product-list {
    padding-top: calc(11.25vw + 10px);
  }
}
@media (min-width: 800px) {
  .c-product-list {
    padding-top: 100px;
  }
}
@media (min-width: 1440px) {
  .c-product-list {
    padding-top: 100px;
  }
}
@media (min-width: 2560px) {
  .c-product-list {
    padding-top: calc(1.0080645161vw + 74.1935483871px);
  }
}
@media (min-width: 3800px) {
  .c-product-list {
    padding-top: 112.5px;
  }
}
@media (min-width: 480px) {
  .c-product-list {
    padding-bottom: calc(11.25vw + 10px);
  }
}
@media (min-width: 800px) {
  .c-product-list {
    padding-bottom: 100px;
  }
}
@media (min-width: 1440px) {
  .c-product-list {
    padding-bottom: 100px;
  }
}
@media (min-width: 2560px) {
  .c-product-list {
    padding-bottom: calc(1.0080645161vw + 74.1935483871px);
  }
}
@media (min-width: 3800px) {
  .c-product-list {
    padding-bottom: 112.5px;
  }
}
.c-product-list__title {
  max-width: 720px;
  padding-bottom: 56px;
  width: 100%;
}

@media (min-width: 1440px) {
  .c-product-list__title {
    max-width: calc(8.0357142857vw + 604.2857142857px);
  }
}
@media (min-width: 2560px) {
  .c-product-list__title {
    max-width: 810px;
  }
}
@media (min-width: 480px) {
  .c-product-list__title {
    padding-bottom: calc(7.5vw + 20px);
  }
}
@media (min-width: 800px) {
  .c-product-list__title {
    padding-bottom: 80px;
  }
}
@media (min-width: 1440px) {
  .c-product-list__title {
    padding-bottom: 80px;
  }
}
@media (min-width: 2560px) {
  .c-product-list__title {
    padding-bottom: calc(0.8064516129vw + 59.3548387097px);
  }
}
@media (min-width: 3800px) {
  .c-product-list__title {
    padding-bottom: 90px;
  }
}
@media (max-width: 800px) {
  .c-product-list__title {
    padding-bottom: 24px;
  }
}
@media (max-width: 800px) and (min-width: 480px) {
  .c-product-list__title {
    padding-bottom: calc(5vw + 0px);
  }
}
@media (max-width: 800px) and (min-width: 800px) {
  .c-product-list__title {
    padding-bottom: 40px;
  }
}
@media (max-width: 800px) and (min-width: 1440px) {
  .c-product-list__title {
    padding-bottom: 40px;
  }
}
@media (max-width: 800px) and (min-width: 2560px) {
  .c-product-list__title {
    padding-bottom: calc(0.4032258065vw + 29.6774193548px);
  }
}
@media (max-width: 800px) and (min-width: 3800px) {
  .c-product-list__title {
    padding-bottom: 45px;
  }
}
.c-product-list__list {
  position: relative;
}

.c-product-list__list-item {
  position: relative;
  display: block;
  padding-top: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(22, 22, 23, 0.2);
}

@media (min-width: 480px) {
  .c-product-list__list-item {
    padding-top: calc(5vw + 0px);
  }
}
@media (min-width: 800px) {
  .c-product-list__list-item {
    padding-top: 40px;
  }
}
@media (min-width: 1440px) {
  .c-product-list__list-item {
    padding-top: 40px;
  }
}
@media (min-width: 2560px) {
  .c-product-list__list-item {
    padding-top: calc(0.4032258065vw + 29.6774193548px);
  }
}
@media (min-width: 3800px) {
  .c-product-list__list-item {
    padding-top: 45px;
  }
}
@media (min-width: 480px) {
  .c-product-list__list-item {
    padding-bottom: calc(5vw + 0px);
  }
}
@media (min-width: 800px) {
  .c-product-list__list-item {
    padding-bottom: 40px;
  }
}
@media (min-width: 1440px) {
  .c-product-list__list-item {
    padding-bottom: 40px;
  }
}
@media (min-width: 2560px) {
  .c-product-list__list-item {
    padding-bottom: calc(0.4032258065vw + 29.6774193548px);
  }
}
@media (min-width: 3800px) {
  .c-product-list__list-item {
    padding-bottom: 45px;
  }
}
@media (max-width: 800px) {
  .c-product-list__list-item {
    padding-top: 12px;
    padding-bottom: 12px;
  }
}
@media (max-width: 800px) and (min-width: 480px) {
  .c-product-list__list-item {
    padding-top: calc(2.5vw + 0px);
  }
}
@media (max-width: 800px) and (min-width: 800px) {
  .c-product-list__list-item {
    padding-top: 20px;
  }
}
@media (max-width: 800px) and (min-width: 1440px) {
  .c-product-list__list-item {
    padding-top: 20px;
  }
}
@media (max-width: 800px) and (min-width: 2560px) {
  .c-product-list__list-item {
    padding-top: calc(0.2016129032vw + 14.8387096774px);
  }
}
@media (max-width: 800px) and (min-width: 3800px) {
  .c-product-list__list-item {
    padding-top: 22.5px;
  }
}
@media (max-width: 800px) and (min-width: 480px) {
  .c-product-list__list-item {
    padding-bottom: calc(2.5vw + 0px);
  }
}
@media (max-width: 800px) and (min-width: 800px) {
  .c-product-list__list-item {
    padding-bottom: 20px;
  }
}
@media (max-width: 800px) and (min-width: 1440px) {
  .c-product-list__list-item {
    padding-bottom: 20px;
  }
}
@media (max-width: 800px) and (min-width: 2560px) {
  .c-product-list__list-item {
    padding-bottom: calc(0.2016129032vw + 14.8387096774px);
  }
}
@media (max-width: 800px) and (min-width: 3800px) {
  .c-product-list__list-item {
    padding-bottom: 22.5px;
  }
}
@media (max-width: 800px) {
  .c-product-list__list-item:last-child {
    border: 0;
  }
}
@media (max-width: 480px) {
  .c-product-list__list-item {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}
@media (max-width: 480px) and (min-width: 480px) {
  .c-product-list__list-item {
    padding-top: calc(5vw + 0px);
  }
}
@media (max-width: 480px) and (min-width: 800px) {
  .c-product-list__list-item {
    padding-top: 40px;
  }
}
@media (max-width: 480px) and (min-width: 1440px) {
  .c-product-list__list-item {
    padding-top: 40px;
  }
}
@media (max-width: 480px) and (min-width: 2560px) {
  .c-product-list__list-item {
    padding-top: calc(0.4032258065vw + 29.6774193548px);
  }
}
@media (max-width: 480px) and (min-width: 3800px) {
  .c-product-list__list-item {
    padding-top: 45px;
  }
}
@media (max-width: 480px) and (min-width: 480px) {
  .c-product-list__list-item {
    padding-bottom: calc(5vw + 0px);
  }
}
@media (max-width: 480px) and (min-width: 800px) {
  .c-product-list__list-item {
    padding-bottom: 40px;
  }
}
@media (max-width: 480px) and (min-width: 1440px) {
  .c-product-list__list-item {
    padding-bottom: 40px;
  }
}
@media (max-width: 480px) and (min-width: 2560px) {
  .c-product-list__list-item {
    padding-bottom: calc(0.4032258065vw + 29.6774193548px);
  }
}
@media (max-width: 480px) and (min-width: 3800px) {
  .c-product-list__list-item {
    padding-bottom: 45px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .c-product-list__list-item:hover .c-link span {
    -webkit-animation-name: textAnim;
            animation-name: textAnim;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    -webkit-animation-duration: 0.25s;
            animation-duration: 0.25s;
  }

  .c-product-list__list-item:hover .c-link:after {
    opacity: 1;
    -webkit-animation-play-state: running;
            animation-play-state: running;
  }
}
@media (max-width: 800px) {
  .c-product-list__list-item-inner {
    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;
  }
}
.c-product-list__list-item-content {
  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;
  pointer-events: none;
}

@media (max-width: 800px) {
  .c-product-list__list-item-content {
    width: 50%;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    opacity: 1 !important;
    visibility: visible !important;
  }
}
@media (max-width: 480px) {
  .c-product-list__list-item-content {
    width: 100%;
  }
}
.c-product-list__list-item-title {
  max-width: 15.7894736842%;
  width: 100%;
}

@media (max-width: 800px) {
  .c-product-list__list-item-title {
    padding-bottom: 12px;
    max-width: none;
  }
}
@media (max-width: 800px) and (min-width: 480px) {
  .c-product-list__list-item-title {
    padding-bottom: calc(2.5vw + 0px);
  }
}
@media (max-width: 800px) and (min-width: 800px) {
  .c-product-list__list-item-title {
    padding-bottom: 20px;
  }
}
@media (max-width: 800px) and (min-width: 1440px) {
  .c-product-list__list-item-title {
    padding-bottom: 20px;
  }
}
@media (max-width: 800px) and (min-width: 2560px) {
  .c-product-list__list-item-title {
    padding-bottom: calc(0.2016129032vw + 14.8387096774px);
  }
}
@media (max-width: 800px) and (min-width: 3800px) {
  .c-product-list__list-item-title {
    padding-bottom: 22.5px;
  }
}
.c-product-list__list-item-title .c-link {
  display: inline-block;
}

.c-product-list__list-item-title .c-link:before {
  opacity: 0;
}

.c-product-list__list-item-description {
  width: 42.1052631579%;
}

@media (max-width: 800px) {
  .c-product-list__list-item-description {
    width: 100%;
  }
}
.c-product-list__image-wrapper {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 15.7894736842%;
  right: 42.1052631579%;
  height: 150%;
  pointer-events: none;
}

@media (max-width: 800px) {
  .c-product-list__image-wrapper {
    padding-right: 16px;
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    height: auto;
    width: 50%;
    display: none !important;
  }
}
@media (max-width: 800px) and (min-width: 480px) {
  .c-product-list__image-wrapper {
    padding-right: calc(2.5vw + 4px);
  }
}
@media (max-width: 800px) and (min-width: 800px) {
  .c-product-list__image-wrapper {
    padding-right: 24px;
  }
}
@media (max-width: 800px) and (min-width: 1440px) {
  .c-product-list__image-wrapper {
    padding-right: 24px;
  }
}
@media (max-width: 800px) and (min-width: 2560px) {
  .c-product-list__image-wrapper {
    padding-right: calc(0.2419354839vw + 17.8064516129px);
  }
}
@media (max-width: 800px) and (min-width: 3800px) {
  .c-product-list__image-wrapper {
    padding-right: 27px;
  }
}
@media (max-width: 480px) {
  .c-product-list__image-wrapper {
    padding-bottom: 12px;
    padding-right: 0;
    width: 100%;
  }
}
@media (max-width: 480px) and (min-width: 480px) {
  .c-product-list__image-wrapper {
    padding-bottom: calc(2.5vw + 0px);
  }
}
@media (max-width: 480px) and (min-width: 800px) {
  .c-product-list__image-wrapper {
    padding-bottom: 20px;
  }
}
@media (max-width: 480px) and (min-width: 1440px) {
  .c-product-list__image-wrapper {
    padding-bottom: 20px;
  }
}
@media (max-width: 480px) and (min-width: 2560px) {
  .c-product-list__image-wrapper {
    padding-bottom: calc(0.2016129032vw + 14.8387096774px);
  }
}
@media (max-width: 480px) and (min-width: 3800px) {
  .c-product-list__image-wrapper {
    padding-bottom: 22.5px;
  }
}
.c-product-list__image {
  top: -8px;
  bottom: -8px;
  overflow: hidden;
  position: absolute;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  will-change: transform, filter;
}

@media (min-width: 480px) {
  .c-product-list__image {
    top: calc(-1.25vw - 2px);
  }
}
@media (min-width: 800px) {
  .c-product-list__image {
    top: -12px;
  }
}
@media (min-width: 1440px) {
  .c-product-list__image {
    top: -12px;
  }
}
@media (min-width: 2560px) {
  .c-product-list__image {
    top: calc(-0.1209677419vw - 8.9032258065px);
  }
}
@media (min-width: 3800px) {
  .c-product-list__image {
    top: -13.5px;
  }
}
@media (min-width: 480px) {
  .c-product-list__image {
    bottom: calc(-1.25vw - 2px);
  }
}
@media (min-width: 800px) {
  .c-product-list__image {
    bottom: -12px;
  }
}
@media (min-width: 1440px) {
  .c-product-list__image {
    bottom: -12px;
  }
}
@media (min-width: 2560px) {
  .c-product-list__image {
    bottom: calc(-0.1209677419vw - 8.9032258065px);
  }
}
@media (min-width: 3800px) {
  .c-product-list__image {
    bottom: -13.5px;
  }
}
@media (max-width: 800px) {
  .c-product-list__image {
    position: relative;
    top: auto;
    left: auto;
    bottom: auto;
    opacity: 1;
    visibility: visible;
    display: none !important;
  }
}
.c-product-list__image img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: 100%;
  max-width: none;
  width: auto;
  display: block;
  -o-object-position: center;
     object-position: center;
}

@media (max-width: 800px) {
  .c-product-list__image img {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: auto;
  }
}
.c-product-list.is-dark .c-product-list__list-item, .is-dark .c-product-list .c-product-list__list-item {
  border-color: rgba(250, 250, 250, 0.2);
}

.c-gradient-header {
  position: relative;
  overflow: hidden;
  width: 100%;
  left: 0;
  top: 0;
}

.c-gradient-header:before {
  width: 100%;
  height: 75svh;
  display: block;
  content: "";
}

@media (max-width: 480px) {
  .c-gradient-header:before {
    height: 75svh;
  }
}
.c-gradient-header__inner {
  padding-bottom: 24px;
  padding-top: 80px;
  padding-right: 4.5454545455%;
  z-index: 1;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -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;
  color: #fafafa;
}

@media (min-width: 480px) {
  .c-gradient-header__inner {
    padding-bottom: calc(5vw + 0px);
  }
}
@media (min-width: 800px) {
  .c-gradient-header__inner {
    padding-bottom: 40px;
  }
}
@media (min-width: 1440px) {
  .c-gradient-header__inner {
    padding-bottom: 40px;
  }
}
@media (min-width: 2560px) {
  .c-gradient-header__inner {
    padding-bottom: calc(0.4032258065vw + 29.6774193548px);
  }
}
@media (min-width: 3800px) {
  .c-gradient-header__inner {
    padding-bottom: 45px;
  }
}
@media (min-width: 480px) {
  .c-gradient-header__inner {
    padding-top: calc(25vw - 40px);
  }
}
@media (min-width: 800px) {
  .c-gradient-header__inner {
    padding-top: 160px;
  }
}
@media (min-width: 1440px) {
  .c-gradient-header__inner {
    padding-top: 160px;
  }
}
@media (min-width: 2560px) {
  .c-gradient-header__inner {
    padding-top: calc(1.6129032258vw + 118.7096774194px);
  }
}
@media (min-width: 3800px) {
  .c-gradient-header__inner {
    padding-top: 180px;
  }
}
@media (max-width: 800px) {
  .c-gradient-header__inner {
    padding-top: 24px;
    padding-bottom: 24px;
    padding-right: 0;
  }
}
@media (max-width: 800px) and (min-width: 480px) {
  .c-gradient-header__inner {
    padding-top: calc(5vw + 0px);
  }
}
@media (max-width: 800px) and (min-width: 800px) {
  .c-gradient-header__inner {
    padding-top: 40px;
  }
}
@media (max-width: 800px) and (min-width: 1440px) {
  .c-gradient-header__inner {
    padding-top: 40px;
  }
}
@media (max-width: 800px) and (min-width: 2560px) {
  .c-gradient-header__inner {
    padding-top: calc(0.4032258065vw + 29.6774193548px);
  }
}
@media (max-width: 800px) and (min-width: 3800px) {
  .c-gradient-header__inner {
    padding-top: 45px;
  }
}
@media (max-width: 800px) and (min-width: 480px) {
  .c-gradient-header__inner {
    padding-bottom: calc(5vw + 0px);
  }
}
@media (max-width: 800px) and (min-width: 800px) {
  .c-gradient-header__inner {
    padding-bottom: 40px;
  }
}
@media (max-width: 800px) and (min-width: 1440px) {
  .c-gradient-header__inner {
    padding-bottom: 40px;
  }
}
@media (max-width: 800px) and (min-width: 2560px) {
  .c-gradient-header__inner {
    padding-bottom: calc(0.4032258065vw + 29.6774193548px);
  }
}
@media (max-width: 800px) and (min-width: 3800px) {
  .c-gradient-header__inner {
    padding-bottom: 45px;
  }
}
.c-gradient-header__title {
  width: 100%;
  display: block;
}

.c-gradient-header__title p {
  padding-left: 31.8181818182%;
}

@media (max-width: 800px) {
  .c-gradient-header__title p {
    padding-left: 13.6363636364%;
  }
}
@media (max-width: 480px) {
  .c-gradient-header__title p {
    padding-left: 4.5454545455%;
  }
}
.c-gradient-header__title p:first-child {
  padding-left: 0;
}

.c-gradient-header__eyebrow {
  padding-bottom: 4px;
}

@media (min-width: 480px) {
  .c-gradient-header__eyebrow {
    padding-bottom: 4px;
  }
}
@media (min-width: 800px) {
  .c-gradient-header__eyebrow {
    padding-bottom: 4px;
  }
}
@media (min-width: 1440px) {
  .c-gradient-header__eyebrow {
    padding-bottom: 4px;
  }
}
@media (min-width: 2560px) {
  .c-gradient-header__eyebrow {
    padding-bottom: calc(0.0403225806vw + 2.9677419355px);
  }
}
@media (min-width: 3800px) {
  .c-gradient-header__eyebrow {
    padding-bottom: 4.5px;
  }
}
.c-gradient-header__content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.c-gradient-header__gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.c-gradient-header__gradient i {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background-color: rgba(22, 22, 23, 0.2);
}

.c-gradient-header__gradient i:nth-child(2) {
  background-image: radial-gradient(at 29% 19%, rgba(0, 0, 0, 0.75) 0px, transparent 50%), radial-gradient(at 30% 65%, rgba(0, 0, 0, 0.3) 0px, transparent 50%), radial-gradient(at 19% 48%, rgba(0, 0, 0, 0.1) 0px, transparent 50%);
}

.c-gradient-header__gradient i:nth-child(3) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  background-image: radial-gradient(at 29% 19%, rgba(0, 0, 0, 0.75) 0px, transparent 50%), radial-gradient(at 30% 65%, rgba(0, 0, 0, 0.3) 0px, transparent 50%), radial-gradient(at 19% 48%, rgba(0, 0, 0, 0.1) 0px, transparent 50%);
}

.c-gradient-header__go-next {
  bottom: 24px;
  padding-left: 12px;
  padding-top: 8px;
  text-align: right;
  position: absolute;
  right: 0;
  cursor: pointer;
}

@media (min-width: 480px) {
  .c-gradient-header__go-next {
    bottom: calc(5vw + 0px);
  }
}
@media (min-width: 800px) {
  .c-gradient-header__go-next {
    bottom: 40px;
  }
}
@media (min-width: 1440px) {
  .c-gradient-header__go-next {
    bottom: 40px;
  }
}
@media (min-width: 2560px) {
  .c-gradient-header__go-next {
    bottom: calc(0.4032258065vw + 29.6774193548px);
  }
}
@media (min-width: 3800px) {
  .c-gradient-header__go-next {
    bottom: 45px;
  }
}
@media (min-width: 480px) {
  .c-gradient-header__go-next {
    padding-left: calc(1.25vw + 6px);
  }
}
@media (min-width: 800px) {
  .c-gradient-header__go-next {
    padding-left: 16px;
  }
}
@media (min-width: 1440px) {
  .c-gradient-header__go-next {
    padding-left: 16px;
  }
}
@media (min-width: 2560px) {
  .c-gradient-header__go-next {
    padding-left: calc(0.1612903226vw + 11.8709677419px);
  }
}
@media (min-width: 3800px) {
  .c-gradient-header__go-next {
    padding-left: 18px;
  }
}
@media (min-width: 480px) {
  .c-gradient-header__go-next {
    padding-top: calc(1.25vw + 2px);
  }
}
@media (min-width: 800px) {
  .c-gradient-header__go-next {
    padding-top: 12px;
  }
}
@media (min-width: 1440px) {
  .c-gradient-header__go-next {
    padding-top: 12px;
  }
}
@media (min-width: 2560px) {
  .c-gradient-header__go-next {
    padding-top: calc(0.1209677419vw + 8.9032258065px);
  }
}
@media (min-width: 3800px) {
  .c-gradient-header__go-next {
    padding-top: 13.5px;
  }
}
.c-gradient-header__go-next .u-icon {
  -webkit-transform: translateY(0em);
          transform: translateY(0em);
  -webkit-transition: -webkit-transform 0.25s;
  transition: -webkit-transform 0.25s;
  transition: transform 0.25s;
  transition: transform 0.25s, -webkit-transform 0.25s;
}

@media (hover: hover) and (pointer: fine) {
  .c-gradient-header__go-next:hover .u-icon {
    -webkit-transform: translateY(0.5em);
            transform: translateY(0.5em);
  }
}
@-webkit-keyframes gradientHeader {
  0% {
    -webkit-transform: translate(0%, 0%);
            transform: translate(0%, 0%);
  }
  20% {
    -webkit-transform: translate(-25%, -25%);
            transform: translate(-25%, -25%);
  }
  40% {
    -webkit-transform: translate(25%, 0%);
            transform: translate(25%, 0%);
  }
  60% {
    -webkit-transform: translate(25%, 25%);
            transform: translate(25%, 25%);
  }
  80% {
    -webkit-transform: translate(0%, 25%);
            transform: translate(0%, 25%);
  }
  100% {
    -webkit-transform: translate(0%, 0%);
            transform: translate(0%, 0%);
  }
}
@keyframes gradientHeader {
  0% {
    -webkit-transform: translate(0%, 0%);
            transform: translate(0%, 0%);
  }
  20% {
    -webkit-transform: translate(-25%, -25%);
            transform: translate(-25%, -25%);
  }
  40% {
    -webkit-transform: translate(25%, 0%);
            transform: translate(25%, 0%);
  }
  60% {
    -webkit-transform: translate(25%, 25%);
            transform: translate(25%, 25%);
  }
  80% {
    -webkit-transform: translate(0%, 25%);
            transform: translate(0%, 25%);
  }
  100% {
    -webkit-transform: translate(0%, 0%);
            transform: translate(0%, 0%);
  }
}
.c-default-header {
  position: relative;
  overflow: hidden;
  background-color: rgba(203, 209, 219, 0.3);
}

.c-default-header__inner {
  padding-bottom: 24px;
  padding-top: 80px;
  padding-right: 4.5454545455%;
  z-index: 1;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -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 (min-width: 480px) {
  .c-default-header__inner {
    padding-bottom: calc(5vw + 0px);
  }
}
@media (min-width: 800px) {
  .c-default-header__inner {
    padding-bottom: 40px;
  }
}
@media (min-width: 1440px) {
  .c-default-header__inner {
    padding-bottom: 40px;
  }
}
@media (min-width: 2560px) {
  .c-default-header__inner {
    padding-bottom: calc(0.4032258065vw + 29.6774193548px);
  }
}
@media (min-width: 3800px) {
  .c-default-header__inner {
    padding-bottom: 45px;
  }
}
@media (min-width: 480px) {
  .c-default-header__inner {
    padding-top: calc(37.5vw - 100px);
  }
}
@media (min-width: 800px) {
  .c-default-header__inner {
    padding-top: 200px;
  }
}
@media (min-width: 1440px) {
  .c-default-header__inner {
    padding-top: 200px;
  }
}
@media (min-width: 2560px) {
  .c-default-header__inner {
    padding-top: calc(2.0161290323vw + 148.3870967742px);
  }
}
@media (min-width: 3800px) {
  .c-default-header__inner {
    padding-top: 225px;
  }
}
@media (max-width: 800px) {
  .c-default-header__inner {
    padding-bottom: 80px;
    padding-right: 0;
  }
}
@media (max-width: 800px) and (min-width: 480px) {
  .c-default-header__inner {
    padding-bottom: calc(25vw - 40px);
  }
}
@media (max-width: 800px) and (min-width: 800px) {
  .c-default-header__inner {
    padding-bottom: 160px;
  }
}
@media (max-width: 800px) and (min-width: 1440px) {
  .c-default-header__inner {
    padding-bottom: 160px;
  }
}
@media (max-width: 800px) and (min-width: 2560px) {
  .c-default-header__inner {
    padding-bottom: calc(1.6129032258vw + 118.7096774194px);
  }
}
@media (max-width: 800px) and (min-width: 3800px) {
  .c-default-header__inner {
    padding-bottom: 180px;
  }
}
.c-default-header__title {
  width: 100%;
  display: block;
}

.c-default-header__title p {
  padding-left: 31.8181818182%;
}

@media (max-width: 800px) {
  .c-default-header__title p {
    padding-left: 13.6363636364%;
  }
}
@media (max-width: 480px) {
  .c-default-header__title p {
    padding-left: 4.5454545455%;
  }
}
.c-default-header__title p:first-child {
  padding-left: 0;
}

.c-default-header__eyebrow {
  padding-bottom: 4px;
}

@media (min-width: 480px) {
  .c-default-header__eyebrow {
    padding-bottom: 4px;
  }
}
@media (min-width: 800px) {
  .c-default-header__eyebrow {
    padding-bottom: 4px;
  }
}
@media (min-width: 1440px) {
  .c-default-header__eyebrow {
    padding-bottom: 4px;
  }
}
@media (min-width: 2560px) {
  .c-default-header__eyebrow {
    padding-bottom: calc(0.0403225806vw + 2.9677419355px);
  }
}
@media (min-width: 3800px) {
  .c-default-header__eyebrow {
    padding-bottom: 4.5px;
  }
}
.c-default-header__go-next {
  bottom: 24px;
  position: absolute;
  right: 0;
  cursor: pointer;
}

@media (min-width: 480px) {
  .c-default-header__go-next {
    bottom: calc(5vw + 0px);
  }
}
@media (min-width: 800px) {
  .c-default-header__go-next {
    bottom: 40px;
  }
}
@media (min-width: 1440px) {
  .c-default-header__go-next {
    bottom: 40px;
  }
}
@media (min-width: 2560px) {
  .c-default-header__go-next {
    bottom: calc(0.4032258065vw + 29.6774193548px);
  }
}
@media (min-width: 3800px) {
  .c-default-header__go-next {
    bottom: 45px;
  }
}
.c-default-header__go-next .u-icon {
  -webkit-transform: translateY(0em);
          transform: translateY(0em);
  -webkit-transition: -webkit-transform 0.25s;
  transition: -webkit-transform 0.25s;
  transition: transform 0.25s;
  transition: transform 0.25s, -webkit-transform 0.25s;
}

@media (hover: hover) and (pointer: fine) {
  .c-default-header__go-next:hover .u-icon {
    -webkit-transform: translateY(0.5em);
            transform: translateY(0.5em);
  }
}
.c-gear-section {
  padding-top: 64px;
  padding-bottom: 64px;
}

@media (min-width: 480px) {
  .c-gear-section {
    padding-top: calc(11.25vw + 10px);
  }
}
@media (min-width: 800px) {
  .c-gear-section {
    padding-top: 100px;
  }
}
@media (min-width: 1440px) {
  .c-gear-section {
    padding-top: 100px;
  }
}
@media (min-width: 2560px) {
  .c-gear-section {
    padding-top: calc(1.0080645161vw + 74.1935483871px);
  }
}
@media (min-width: 3800px) {
  .c-gear-section {
    padding-top: 112.5px;
  }
}
@media (min-width: 480px) {
  .c-gear-section {
    padding-bottom: calc(11.25vw + 10px);
  }
}
@media (min-width: 800px) {
  .c-gear-section {
    padding-bottom: 100px;
  }
}
@media (min-width: 1440px) {
  .c-gear-section {
    padding-bottom: 100px;
  }
}
@media (min-width: 2560px) {
  .c-gear-section {
    padding-bottom: calc(1.0080645161vw + 74.1935483871px);
  }
}
@media (min-width: 3800px) {
  .c-gear-section {
    padding-bottom: 112.5px;
  }
}
.c-gear-section__list.have-active .c-gear-section__item-title {
  color: rgba(250, 250, 250, 0.5);
}

.c-gear-section__list.have-active .c-gear-section__item-description {
  color: rgba(250, 250, 250, 0.5);
}

.c-gear-section__list.have-active .c-gear-section__item-description:after {
  border: solid rgba(250, 250, 250, 0.5);
  border-width: 0 1px 1px 0;
}

.c-gear-section__item {
  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;
  padding-bottom: 24px;
  padding-top: 24px;
  border-bottom: solid 1px rgba(250, 250, 250, 0.2);
  -webkit-transition: border-color 0.5s ease-in-out;
  transition: border-color 0.5s ease-in-out;
  cursor: pointer;
}

@media (min-width: 480px) {
  .c-gear-section__item {
    padding-bottom: calc(5vw + 0px);
  }
}
@media (min-width: 800px) {
  .c-gear-section__item {
    padding-bottom: 40px;
  }
}
@media (min-width: 1440px) {
  .c-gear-section__item {
    padding-bottom: 40px;
  }
}
@media (min-width: 2560px) {
  .c-gear-section__item {
    padding-bottom: calc(0.4032258065vw + 29.6774193548px);
  }
}
@media (min-width: 3800px) {
  .c-gear-section__item {
    padding-bottom: 45px;
  }
}
@media (min-width: 480px) {
  .c-gear-section__item {
    padding-top: calc(5vw + 0px);
  }
}
@media (min-width: 800px) {
  .c-gear-section__item {
    padding-top: 40px;
  }
}
@media (min-width: 1440px) {
  .c-gear-section__item {
    padding-top: 40px;
  }
}
@media (min-width: 2560px) {
  .c-gear-section__item {
    padding-top: calc(0.4032258065vw + 29.6774193548px);
  }
}
@media (min-width: 3800px) {
  .c-gear-section__item {
    padding-top: 45px;
  }
}
.c-gear-section__item.is-opened {
  border-bottom: solid 1px rgba(250, 250, 250, 0.5);
}

.c-gear-section__item.is-opened .c-gear-section__item-title {
  color: #fafafa;
}

.c-gear-section__item.is-opened .c-gear-section__item-description {
  color: #fafafa;
}

.c-gear-section__item.is-opened .c-gear-section__item-description:after {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
  border: solid #fafafa;
  border-width: 0 1px 1px 0;
}

@media (max-width: 480px) {
  .c-gear-section__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.c-gear-section__item-description {
  width: 47.3684210526%;
  padding-right: 40px;
  position: relative;
  -webkit-transition: all 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: all 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

@media (min-width: 480px) {
  .c-gear-section__item-description {
    padding-right: calc(7.5vw + 4px);
  }
}
@media (min-width: 800px) {
  .c-gear-section__item-description {
    padding-right: 64px;
  }
}
@media (min-width: 1440px) {
  .c-gear-section__item-description {
    padding-right: 64px;
  }
}
@media (min-width: 2560px) {
  .c-gear-section__item-description {
    padding-right: calc(0.6451612903vw + 47.4838709677px);
  }
}
@media (min-width: 3800px) {
  .c-gear-section__item-description {
    padding-right: 72px;
  }
}
.c-gear-section__item-description:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  border: solid #fafafa;
  border-width: 0 1px 1px 0;
  padding: 4px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: all 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

@media (min-width: 480px) {
  .c-gear-section__item-description:after {
    padding: 4px;
  }
}
@media (min-width: 800px) {
  .c-gear-section__item-description:after {
    padding: 4px;
  }
}
@media (min-width: 1440px) {
  .c-gear-section__item-description:after {
    padding: 4px;
  }
}
@media (min-width: 2560px) {
  .c-gear-section__item-description:after {
    padding: calc(0.0403225806vw + 2.9677419355px);
  }
}
@media (min-width: 3800px) {
  .c-gear-section__item-description:after {
    padding: 4.5px;
  }
}
@media (max-width: 800px) {
  .c-gear-section__item-description {
    width: 63.1578947368%;
  }
}
@media (max-width: 480px) {
  .c-gear-section__item-description {
    width: 100%;
    padding-top: 12px;
  }
}
@media (max-width: 480px) and (min-width: 480px) {
  .c-gear-section__item-description {
    padding-top: calc(1.25vw + 6px);
  }
}
@media (max-width: 480px) and (min-width: 800px) {
  .c-gear-section__item-description {
    padding-top: 16px;
  }
}
@media (max-width: 480px) and (min-width: 1440px) {
  .c-gear-section__item-description {
    padding-top: 16px;
  }
}
@media (max-width: 480px) and (min-width: 2560px) {
  .c-gear-section__item-description {
    padding-top: calc(0.1612903226vw + 11.8709677419px);
  }
}
@media (max-width: 480px) and (min-width: 3800px) {
  .c-gear-section__item-description {
    padding-top: 18px;
  }
}
@media (max-width: 480px) {
  .c-gear-section__item-description:after {
    top: -20px;
  }
}
.c-gear-section__item-title {
  -webkit-transition: all 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: all 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.c-gear-section__accordion-content .c-button {
  margin-top: 24px;
}

@media (min-width: 480px) {
  .c-gear-section__accordion-content .c-button {
    margin-top: calc(5vw + 0px);
  }
}
@media (min-width: 800px) {
  .c-gear-section__accordion-content .c-button {
    margin-top: 40px;
  }
}
@media (min-width: 1440px) {
  .c-gear-section__accordion-content .c-button {
    margin-top: 40px;
  }
}
@media (min-width: 2560px) {
  .c-gear-section__accordion-content .c-button {
    margin-top: calc(0.4032258065vw + 29.6774193548px);
  }
}
@media (min-width: 3800px) {
  .c-gear-section__accordion-content .c-button {
    margin-top: 45px;
  }
}
.c-inpage-side-nav {
  padding-left: 2.0833333333%;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 8;
  mix-blend-mode: difference;
  pointer-events: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

@media (max-width: 800px) {
  .c-inpage-side-nav {
    display: none;
  }
}
.c-inpage-side-nav__list {
  padding-top: 100px;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  color: #fafafa;
  pointer-events: auto;
  width: 12.5%;
}

@media (min-width: 1440px) {
  .c-inpage-side-nav__list {
    padding-top: calc(1.1160714286vw + 83.9285714286px);
  }
}
@media (min-width: 2560px) {
  .c-inpage-side-nav__list {
    padding-top: 112.5px;
  }
}
.c-inpage-side-nav__list a {
  padding-bottom: 4px;
  display: inline-block;
  opacity: 0.4;
  -webkit-transition: opacity 0.25s;
  transition: opacity 0.25s;
}

@media (min-width: 480px) {
  .c-inpage-side-nav__list a {
    padding-bottom: 4px;
  }
}
@media (min-width: 800px) {
  .c-inpage-side-nav__list a {
    padding-bottom: 4px;
  }
}
@media (min-width: 1440px) {
  .c-inpage-side-nav__list a {
    padding-bottom: 4px;
  }
}
@media (min-width: 2560px) {
  .c-inpage-side-nav__list a {
    padding-bottom: calc(0.0403225806vw + 2.9677419355px);
  }
}
@media (min-width: 3800px) {
  .c-inpage-side-nav__list a {
    padding-bottom: 4.5px;
  }
}
.c-inpage-side-nav__list a.is-active {
  opacity: 1;
  pointer-events: none;
}

@media (hover: hover) and (pointer: fine) {
  .c-inpage-side-nav__list a:hover {
    opacity: 1;
  }
}
.c-instruction-manual {
  padding-top: 64px;
  padding-bottom: 64px;
}

@media (min-width: 480px) {
  .c-instruction-manual {
    padding-top: calc(11.25vw + 10px);
  }
}
@media (min-width: 800px) {
  .c-instruction-manual {
    padding-top: 100px;
  }
}
@media (min-width: 1440px) {
  .c-instruction-manual {
    padding-top: 100px;
  }
}
@media (min-width: 2560px) {
  .c-instruction-manual {
    padding-top: calc(1.0080645161vw + 74.1935483871px);
  }
}
@media (min-width: 3800px) {
  .c-instruction-manual {
    padding-top: 112.5px;
  }
}
@media (min-width: 480px) {
  .c-instruction-manual {
    padding-bottom: calc(11.25vw + 10px);
  }
}
@media (min-width: 800px) {
  .c-instruction-manual {
    padding-bottom: 100px;
  }
}
@media (min-width: 1440px) {
  .c-instruction-manual {
    padding-bottom: 100px;
  }
}
@media (min-width: 2560px) {
  .c-instruction-manual {
    padding-bottom: calc(1.0080645161vw + 74.1935483871px);
  }
}
@media (min-width: 3800px) {
  .c-instruction-manual {
    padding-bottom: 112.5px;
  }
}
.c-instruction-manual__title span {
  display: block;
}

.c-instruction-manual__description {
  max-width: 65.7894736842%;
  width: 100%;
  margin-left: auto;
  padding-top: 56px;
  padding-bottom: 20px;
}

@media (min-width: 480px) {
  .c-instruction-manual__description {
    padding-top: calc(7.5vw + 20px);
  }
}
@media (min-width: 800px) {
  .c-instruction-manual__description {
    padding-top: 80px;
  }
}
@media (min-width: 1440px) {
  .c-instruction-manual__description {
    padding-top: 80px;
  }
}
@media (min-width: 2560px) {
  .c-instruction-manual__description {
    padding-top: calc(0.8064516129vw + 59.3548387097px);
  }
}
@media (min-width: 3800px) {
  .c-instruction-manual__description {
    padding-top: 90px;
  }
}
@media (min-width: 480px) {
  .c-instruction-manual__description {
    padding-bottom: calc(3.75vw + 2px);
  }
}
@media (min-width: 800px) {
  .c-instruction-manual__description {
    padding-bottom: 32px;
  }
}
@media (min-width: 1440px) {
  .c-instruction-manual__description {
    padding-bottom: 32px;
  }
}
@media (min-width: 2560px) {
  .c-instruction-manual__description {
    padding-bottom: calc(0.3225806452vw + 23.7419354839px);
  }
}
@media (min-width: 3800px) {
  .c-instruction-manual__description {
    padding-bottom: 36px;
  }
}
@media (max-width: 800px) {
  .c-instruction-manual__description {
    max-width: 72.7272727273%;
  }
}
@media (max-width: 480px) {
  .c-instruction-manual__description {
    max-width: 100%;
  }
}
.c-instruction-manual__description article {
  max-width: 360px;
  width: 100%;
}

@media (min-width: 1440px) {
  .c-instruction-manual__description article {
    max-width: calc(4.0178571429vw + 302.1428571429px);
  }
}
@media (min-width: 2560px) {
  .c-instruction-manual__description article {
    max-width: 405px;
  }
}
@media (max-width: 480px) {
  .c-instruction-manual__description article {
    max-width: 100%;
  }
}
.c-instruction-manual__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 64px;
}

@media (min-width: 480px) {
  .c-instruction-manual__inner {
    padding-top: calc(11.25vw + 10px);
  }
}
@media (min-width: 800px) {
  .c-instruction-manual__inner {
    padding-top: 100px;
  }
}
@media (min-width: 1440px) {
  .c-instruction-manual__inner {
    padding-top: 100px;
  }
}
@media (min-width: 2560px) {
  .c-instruction-manual__inner {
    padding-top: calc(1.0080645161vw + 74.1935483871px);
  }
}
@media (min-width: 3800px) {
  .c-instruction-manual__inner {
    padding-top: 112.5px;
  }
}
@media (max-width: 800px) {
  .c-instruction-manual__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.c-instruction-manual__link {
  width: 47.3684210526%;
  border-bottom: 1px solid rgba(250, 250, 250, 0.2);
}

.c-instruction-manual__link a {
  padding-bottom: 8px;
  padding-top: 12px;
  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;
  overflow: hidden;
  -webkit-transition: opacity 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: opacity 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

@media (min-width: 480px) {
  .c-instruction-manual__link a {
    padding-bottom: calc(1.25vw + 2px);
  }
}
@media (min-width: 800px) {
  .c-instruction-manual__link a {
    padding-bottom: 12px;
  }
}
@media (min-width: 1440px) {
  .c-instruction-manual__link a {
    padding-bottom: 12px;
  }
}
@media (min-width: 2560px) {
  .c-instruction-manual__link a {
    padding-bottom: calc(0.1209677419vw + 8.9032258065px);
  }
}
@media (min-width: 3800px) {
  .c-instruction-manual__link a {
    padding-bottom: 13.5px;
  }
}
@media (min-width: 480px) {
  .c-instruction-manual__link a {
    padding-top: calc(1.25vw + 6px);
  }
}
@media (min-width: 800px) {
  .c-instruction-manual__link a {
    padding-top: 16px;
  }
}
@media (min-width: 1440px) {
  .c-instruction-manual__link a {
    padding-top: 16px;
  }
}
@media (min-width: 2560px) {
  .c-instruction-manual__link a {
    padding-top: calc(0.1612903226vw + 11.8709677419px);
  }
}
@media (min-width: 3800px) {
  .c-instruction-manual__link a {
    padding-top: 18px;
  }
}
.c-instruction-manual__link a.is-blurred {
  opacity: 0.5;
}

@media (hover: hover) and (pointer: fine) {
  .c-instruction-manual__link a:hover .c-instruction-manual__file-size {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@media (max-width: 800px) {
  .c-instruction-manual__link {
    width: 100%;
  }
}
.c-instruction-manual__file-size {
  position: relative;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  opacity: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-transition: opacity 0.25s ease-out, -webkit-transform 0.25s ease-out;
  transition: opacity 0.25s ease-out, -webkit-transform 0.25s ease-out;
  transition: transform 0.25s ease-out, opacity 0.25s ease-out;
  transition: transform 0.25s ease-out, opacity 0.25s ease-out, -webkit-transform 0.25s ease-out;
}

.c-instruction-manual__file-size .u-icon--download {
  font-size: 8px;
  margin-left: 4px;
  color: #fafafa;
}

@media (min-width: 1440px) {
  .c-instruction-manual__file-size .u-icon--download {
    font-size: calc(0.0892857143vw + 6.7142857143px);
  }
}
@media (min-width: 2560px) {
  .c-instruction-manual__file-size .u-icon--download {
    font-size: 9px;
  }
}
@media (min-width: 480px) {
  .c-instruction-manual__file-size .u-icon--download {
    margin-left: calc(0.625vw + 1px);
  }
}
@media (min-width: 800px) {
  .c-instruction-manual__file-size .u-icon--download {
    margin-left: 6px;
  }
}
@media (min-width: 1440px) {
  .c-instruction-manual__file-size .u-icon--download {
    margin-left: 6px;
  }
}
@media (min-width: 2560px) {
  .c-instruction-manual__file-size .u-icon--download {
    margin-left: calc(0.060483871vw + 4.4516129032px);
  }
}
@media (min-width: 3800px) {
  .c-instruction-manual__file-size .u-icon--download {
    margin-left: 6.75px;
  }
}
.c-splitted-image {
  padding-top: 64px;
  padding-bottom: 64px;
}

@media (min-width: 480px) {
  .c-splitted-image {
    padding-top: calc(11.25vw + 10px);
  }
}
@media (min-width: 800px) {
  .c-splitted-image {
    padding-top: 100px;
  }
}
@media (min-width: 1440px) {
  .c-splitted-image {
    padding-top: 100px;
  }
}
@media (min-width: 2560px) {
  .c-splitted-image {
    padding-top: calc(1.0080645161vw + 74.1935483871px);
  }
}
@media (min-width: 3800px) {
  .c-splitted-image {
    padding-top: 112.5px;
  }
}
@media (min-width: 480px) {
  .c-splitted-image {
    padding-bottom: calc(11.25vw + 10px);
  }
}
@media (min-width: 800px) {
  .c-splitted-image {
    padding-bottom: 100px;
  }
}
@media (min-width: 1440px) {
  .c-splitted-image {
    padding-bottom: 100px;
  }
}
@media (min-width: 2560px) {
  .c-splitted-image {
    padding-bottom: calc(1.0080645161vw + 74.1935483871px);
  }
}
@media (min-width: 3800px) {
  .c-splitted-image {
    padding-bottom: 112.5px;
  }
}
.c-splitted-image .icv__circle {
  background-color: rgba(250, 250, 250, 0.5);
  width: 60px;
  height: 60px;
}

@media (min-width: 1440px) {
  .c-splitted-image .icv__circle {
    width: calc(0.6696428571vw + 50.3571428571px);
  }
}
@media (min-width: 2560px) {
  .c-splitted-image .icv__circle {
    width: 67.5px;
  }
}
@media (min-width: 1440px) {
  .c-splitted-image .icv__circle {
    height: calc(0.6696428571vw + 50.3571428571px);
  }
}
@media (min-width: 2560px) {
  .c-splitted-image .icv__circle {
    height: 67.5px;
  }
}
.c-splitted-image .icv__arrow-wrapper {
  position: relative;
  overflow: visible;
}

.c-splitted-image .icv__arrow-wrapper:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.5em 0.6em 0.5em 0;
  border-color: transparent #fafafa transparent transparent;
}

.c-splitted-image .icv__arrow-wrapper:nth-child(2):after {
  -webkit-transform: translate(-50%, -50%) scaleX(-1);
          transform: translate(-50%, -50%) scaleX(-1);
}

.c-solutions__inner {
  padding-top: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(250, 250, 250, 0.2);
}

@media (min-width: 480px) {
  .c-solutions__inner {
    padding-top: calc(11.25vw + 10px);
  }
}
@media (min-width: 800px) {
  .c-solutions__inner {
    padding-top: 100px;
  }
}
@media (min-width: 1440px) {
  .c-solutions__inner {
    padding-top: 100px;
  }
}
@media (min-width: 2560px) {
  .c-solutions__inner {
    padding-top: calc(1.0080645161vw + 74.1935483871px);
  }
}
@media (min-width: 3800px) {
  .c-solutions__inner {
    padding-top: 112.5px;
  }
}
@media (min-width: 480px) {
  .c-solutions__inner {
    padding-bottom: calc(11.25vw + 10px);
  }
}
@media (min-width: 800px) {
  .c-solutions__inner {
    padding-bottom: 100px;
  }
}
@media (min-width: 1440px) {
  .c-solutions__inner {
    padding-bottom: 100px;
  }
}
@media (min-width: 2560px) {
  .c-solutions__inner {
    padding-bottom: calc(1.0080645161vw + 74.1935483871px);
  }
}
@media (min-width: 3800px) {
  .c-solutions__inner {
    padding-bottom: 112.5px;
  }
}
@media (max-width: 800px) {
  .c-solutions__inner {
    padding-bottom: 24px;
    border-bottom: 0;
  }
}
@media (max-width: 800px) and (min-width: 480px) {
  .c-solutions__inner {
    padding-bottom: calc(5vw + 0px);
  }
}
@media (max-width: 800px) and (min-width: 800px) {
  .c-solutions__inner {
    padding-bottom: 40px;
  }
}
@media (max-width: 800px) and (min-width: 1440px) {
  .c-solutions__inner {
    padding-bottom: 40px;
  }
}
@media (max-width: 800px) and (min-width: 2560px) {
  .c-solutions__inner {
    padding-bottom: calc(0.4032258065vw + 29.6774193548px);
  }
}
@media (max-width: 800px) and (min-width: 3800px) {
  .c-solutions__inner {
    padding-bottom: 45px;
  }
}
.c-solutions__list {
  margin-left: -12px;
  margin-right: -12px;
  padding-top: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (min-width: 480px) {
  .c-solutions__list {
    margin-left: calc(-1.25vw - 6px);
  }
}
@media (min-width: 800px) {
  .c-solutions__list {
    margin-left: -16px;
  }
}
@media (min-width: 1440px) {
  .c-solutions__list {
    margin-left: -16px;
  }
}
@media (min-width: 2560px) {
  .c-solutions__list {
    margin-left: calc(-0.1612903226vw - 11.8709677419px);
  }
}
@media (min-width: 3800px) {
  .c-solutions__list {
    margin-left: -18px;
  }
}
@media (min-width: 480px) {
  .c-solutions__list {
    margin-right: calc(-1.25vw - 6px);
  }
}
@media (min-width: 800px) {
  .c-solutions__list {
    margin-right: -16px;
  }
}
@media (min-width: 1440px) {
  .c-solutions__list {
    margin-right: -16px;
  }
}
@media (min-width: 2560px) {
  .c-solutions__list {
    margin-right: calc(-0.1612903226vw - 11.8709677419px);
  }
}
@media (min-width: 3800px) {
  .c-solutions__list {
    margin-right: -18px;
  }
}
@media (min-width: 480px) {
  .c-solutions__list {
    padding-top: calc(17.5vw - 20px);
  }
}
@media (min-width: 800px) {
  .c-solutions__list {
    padding-top: 120px;
  }
}
@media (min-width: 1440px) {
  .c-solutions__list {
    padding-top: 120px;
  }
}
@media (min-width: 2560px) {
  .c-solutions__list {
    padding-top: calc(1.2096774194vw + 89.0322580645px);
  }
}
@media (min-width: 3800px) {
  .c-solutions__list {
    padding-top: 135px;
  }
}
@media (max-width: 800px) {
  .c-solutions__list {
    margin-left: 0;
    margin-right: 0;
  }
}
.c-solutions__list-item {
  padding-left: 12px;
  padding-right: 12px;
  width: 33.3333333333%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (min-width: 480px) {
  .c-solutions__list-item {
    padding-left: calc(1.25vw + 6px);
  }
}
@media (min-width: 800px) {
  .c-solutions__list-item {
    padding-left: 16px;
  }
}
@media (min-width: 1440px) {
  .c-solutions__list-item {
    padding-left: 16px;
  }
}
@media (min-width: 2560px) {
  .c-solutions__list-item {
    padding-left: calc(0.1612903226vw + 11.8709677419px);
  }
}
@media (min-width: 3800px) {
  .c-solutions__list-item {
    padding-left: 18px;
  }
}
@media (min-width: 480px) {
  .c-solutions__list-item {
    padding-right: calc(1.25vw + 6px);
  }
}
@media (min-width: 800px) {
  .c-solutions__list-item {
    padding-right: 16px;
  }
}
@media (min-width: 1440px) {
  .c-solutions__list-item {
    padding-right: 16px;
  }
}
@media (min-width: 2560px) {
  .c-solutions__list-item {
    padding-right: calc(0.1612903226vw + 11.8709677419px);
  }
}
@media (min-width: 3800px) {
  .c-solutions__list-item {
    padding-right: 18px;
  }
}
@media (max-width: 800px) {
  .c-solutions__list-item {
    padding-bottom: 12px;
    padding-top: 12px;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    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: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    border-right: 0;
    border-bottom: 1px solid rgba(22, 22, 23, 0.2);
  }
}
@media (max-width: 800px) and (min-width: 480px) {
  .c-solutions__list-item {
    padding-bottom: calc(2.5vw + 0px);
  }
}
@media (max-width: 800px) and (min-width: 800px) {
  .c-solutions__list-item {
    padding-bottom: 20px;
  }
}
@media (max-width: 800px) and (min-width: 1440px) {
  .c-solutions__list-item {
    padding-bottom: 20px;
  }
}
@media (max-width: 800px) and (min-width: 2560px) {
  .c-solutions__list-item {
    padding-bottom: calc(0.2016129032vw + 14.8387096774px);
  }
}
@media (max-width: 800px) and (min-width: 3800px) {
  .c-solutions__list-item {
    padding-bottom: 22.5px;
  }
}
@media (max-width: 800px) and (min-width: 480px) {
  .c-solutions__list-item {
    padding-top: calc(2.5vw + 0px);
  }
}
@media (max-width: 800px) and (min-width: 800px) {
  .c-solutions__list-item {
    padding-top: 20px;
  }
}
@media (max-width: 800px) and (min-width: 1440px) {
  .c-solutions__list-item {
    padding-top: 20px;
  }
}
@media (max-width: 800px) and (min-width: 2560px) {
  .c-solutions__list-item {
    padding-top: calc(0.2016129032vw + 14.8387096774px);
  }
}
@media (max-width: 800px) and (min-width: 3800px) {
  .c-solutions__list-item {
    padding-top: 22.5px;
  }
}
@media (max-width: 800px) {
  .c-solutions__list-item:last-child {
    padding-bottom: 0;
  }
}
@media (max-width: 480px) {
  .c-solutions__list-item {
    padding-bottom: 24px;
    padding-top: 24px;
  }
}
@media (max-width: 480px) and (min-width: 480px) {
  .c-solutions__list-item {
    padding-bottom: calc(5vw + 0px);
  }
}
@media (max-width: 480px) and (min-width: 800px) {
  .c-solutions__list-item {
    padding-bottom: 40px;
  }
}
@media (max-width: 480px) and (min-width: 1440px) {
  .c-solutions__list-item {
    padding-bottom: 40px;
  }
}
@media (max-width: 480px) and (min-width: 2560px) {
  .c-solutions__list-item {
    padding-bottom: calc(0.4032258065vw + 29.6774193548px);
  }
}
@media (max-width: 480px) and (min-width: 3800px) {
  .c-solutions__list-item {
    padding-bottom: 45px;
  }
}
@media (max-width: 480px) and (min-width: 480px) {
  .c-solutions__list-item {
    padding-top: calc(5vw + 0px);
  }
}
@media (max-width: 480px) and (min-width: 800px) {
  .c-solutions__list-item {
    padding-top: 40px;
  }
}
@media (max-width: 480px) and (min-width: 1440px) {
  .c-solutions__list-item {
    padding-top: 40px;
  }
}
@media (max-width: 480px) and (min-width: 2560px) {
  .c-solutions__list-item {
    padding-top: calc(0.4032258065vw + 29.6774193548px);
  }
}
@media (max-width: 480px) and (min-width: 3800px) {
  .c-solutions__list-item {
    padding-top: 45px;
  }
}
@media (max-width: 480px) {
  .c-solutions__list-item:last-child {
    padding-bottom: 0;
  }
}
.c-solutions__list-item h5 {
  padding-bottom: 24px;
}

@media (min-width: 480px) {
  .c-solutions__list-item h5 {
    padding-bottom: calc(5vw + 0px);
  }
}
@media (min-width: 800px) {
  .c-solutions__list-item h5 {
    padding-bottom: 40px;
  }
}
@media (min-width: 1440px) {
  .c-solutions__list-item h5 {
    padding-bottom: 40px;
  }
}
@media (min-width: 2560px) {
  .c-solutions__list-item h5 {
    padding-bottom: calc(0.4032258065vw + 29.6774193548px);
  }
}
@media (min-width: 3800px) {
  .c-solutions__list-item h5 {
    padding-bottom: 45px;
  }
}
@media (max-width: 480px) {
  .c-solutions__list-item h5 {
    padding-bottom: 16px;
  }
}
@media (max-width: 480px) and (min-width: 480px) {
  .c-solutions__list-item h5 {
    padding-bottom: calc(2.5vw + 4px);
  }
}
@media (max-width: 480px) and (min-width: 800px) {
  .c-solutions__list-item h5 {
    padding-bottom: 24px;
  }
}
@media (max-width: 480px) and (min-width: 1440px) {
  .c-solutions__list-item h5 {
    padding-bottom: 24px;
  }
}
@media (max-width: 480px) and (min-width: 2560px) {
  .c-solutions__list-item h5 {
    padding-bottom: calc(0.2419354839vw + 17.8064516129px);
  }
}
@media (max-width: 480px) and (min-width: 3800px) {
  .c-solutions__list-item h5 {
    padding-bottom: 27px;
  }
}
.c-solutions__list-item p {
  padding-bottom: 24px;
  opacity: 0.9;
}

@media (min-width: 480px) {
  .c-solutions__list-item p {
    padding-bottom: calc(5vw + 0px);
  }
}
@media (min-width: 800px) {
  .c-solutions__list-item p {
    padding-bottom: 40px;
  }
}
@media (min-width: 1440px) {
  .c-solutions__list-item p {
    padding-bottom: 40px;
  }
}
@media (min-width: 2560px) {
  .c-solutions__list-item p {
    padding-bottom: calc(0.4032258065vw + 29.6774193548px);
  }
}
@media (min-width: 3800px) {
  .c-solutions__list-item p {
    padding-bottom: 45px;
  }
}
@media (max-width: 480px) {
  .c-solutions__list-item p {
    padding-bottom: 16px;
  }
}
@media (max-width: 480px) and (min-width: 480px) {
  .c-solutions__list-item p {
    padding-bottom: calc(2.5vw + 4px);
  }
}
@media (max-width: 480px) and (min-width: 800px) {
  .c-solutions__list-item p {
    padding-bottom: 24px;
  }
}
@media (max-width: 480px) and (min-width: 1440px) {
  .c-solutions__list-item p {
    padding-bottom: 24px;
  }
}
@media (max-width: 480px) and (min-width: 2560px) {
  .c-solutions__list-item p {
    padding-bottom: calc(0.2419354839vw + 17.8064516129px);
  }
}
@media (max-width: 480px) and (min-width: 3800px) {
  .c-solutions__list-item p {
    padding-bottom: 27px;
  }
}
.c-solutions__list-item a {
  margin-bottom: 56px;
}

@media (min-width: 480px) {
  .c-solutions__list-item a {
    margin-bottom: calc(7.5vw + 20px);
  }
}
@media (min-width: 800px) {
  .c-solutions__list-item a {
    margin-bottom: 80px;
  }
}
@media (min-width: 1440px) {
  .c-solutions__list-item a {
    margin-bottom: 80px;
  }
}
@media (min-width: 2560px) {
  .c-solutions__list-item a {
    margin-bottom: calc(0.8064516129vw + 59.3548387097px);
  }
}
@media (min-width: 3800px) {
  .c-solutions__list-item a {
    margin-bottom: 90px;
  }
}
@media (max-width: 480px) {
  .c-solutions__list-item a {
    margin-bottom: 12px;
  }
}
@media (max-width: 480px) and (min-width: 480px) {
  .c-solutions__list-item a {
    margin-bottom: calc(2.5vw + 0px);
  }
}
@media (max-width: 480px) and (min-width: 800px) {
  .c-solutions__list-item a {
    margin-bottom: 20px;
  }
}
@media (max-width: 480px) and (min-width: 1440px) {
  .c-solutions__list-item a {
    margin-bottom: 20px;
  }
}
@media (max-width: 480px) and (min-width: 2560px) {
  .c-solutions__list-item a {
    margin-bottom: calc(0.2016129032vw + 14.8387096774px);
  }
}
@media (max-width: 480px) and (min-width: 3800px) {
  .c-solutions__list-item a {
    margin-bottom: 22.5px;
  }
}
.c-solutions__list-item .u-image-wrapper img {
  -o-object-fit: contain;
     object-fit: contain;
}

@media (max-width: 800px) {
  .c-solutions__list-item-content {
    width: 47%;
  }
}
@media (max-width: 480px) {
  .c-solutions__list-item-content {
    width: 100%;
  }
}
.c-solutions.is-dark .c-link:before, .is-dark .c-solutions .c-link:before {
  background-color: rgba(250, 250, 250, 0.5);
}

.c-solutions.is-dark .c-solutions__list-item, .is-dark .c-solutions .c-solutions__list-item {
  border-color: rgba(250, 250, 250, 0.2);
}

.c-solutions .u-image-wrapper {
  margin-top: auto;
  width: 100%;
}

@media (max-width: 800px) {
  .c-solutions .u-image-wrapper {
    width: 47%;
  }
}
@media (max-width: 480px) {
  .c-solutions .u-image-wrapper {
    width: 100%;
  }
}
.c-inline-link-list {
  padding-top: 32px;
  padding-bottom: 16px;
}

@media (min-width: 480px) {
  .c-inline-link-list {
    padding-top: calc(7.5vw - 4px);
  }
}
@media (min-width: 800px) {
  .c-inline-link-list {
    padding-top: 56px;
  }
}
@media (min-width: 1440px) {
  .c-inline-link-list {
    padding-top: 56px;
  }
}
@media (min-width: 2560px) {
  .c-inline-link-list {
    padding-top: calc(0.564516129vw + 41.5483870968px);
  }
}
@media (min-width: 3800px) {
  .c-inline-link-list {
    padding-top: 63px;
  }
}
@media (min-width: 480px) {
  .c-inline-link-list {
    padding-bottom: calc(2.5vw + 4px);
  }
}
@media (min-width: 800px) {
  .c-inline-link-list {
    padding-bottom: 24px;
  }
}
@media (min-width: 1440px) {
  .c-inline-link-list {
    padding-bottom: 24px;
  }
}
@media (min-width: 2560px) {
  .c-inline-link-list {
    padding-bottom: calc(0.2419354839vw + 17.8064516129px);
  }
}
@media (min-width: 3800px) {
  .c-inline-link-list {
    padding-bottom: 27px;
  }
}
.c-inline-link-list__inner {
  padding-left: 21.0526315789%;
}

@media (max-width: 1140px) {
  .c-inline-link-list__inner {
    padding-left: 5.2631578947%;
  }
}
@media (max-width: 800px) {
  .c-inline-link-list__inner {
    padding-left: 0;
  }
}
.c-inline-link-list__inner h4 {
  color: rgba(22, 22, 23, 0.5);
}

.c-inline-link-list__inner ul {
  padding-top: 12px;
  margin-left: -12px;
  margin-right: -12px;
}

@media (min-width: 480px) {
  .c-inline-link-list__inner ul {
    padding-top: calc(1.25vw + 6px);
  }
}
@media (min-width: 800px) {
  .c-inline-link-list__inner ul {
    padding-top: 16px;
  }
}
@media (min-width: 1440px) {
  .c-inline-link-list__inner ul {
    padding-top: 16px;
  }
}
@media (min-width: 2560px) {
  .c-inline-link-list__inner ul {
    padding-top: calc(0.1612903226vw + 11.8709677419px);
  }
}
@media (min-width: 3800px) {
  .c-inline-link-list__inner ul {
    padding-top: 18px;
  }
}
@media (min-width: 480px) {
  .c-inline-link-list__inner ul {
    margin-left: calc(-2.5vw + 0px);
  }
}
@media (min-width: 800px) {
  .c-inline-link-list__inner ul {
    margin-left: -20px;
  }
}
@media (min-width: 1440px) {
  .c-inline-link-list__inner ul {
    margin-left: -20px;
  }
}
@media (min-width: 2560px) {
  .c-inline-link-list__inner ul {
    margin-left: calc(-0.2016129032vw - 14.8387096774px);
  }
}
@media (min-width: 3800px) {
  .c-inline-link-list__inner ul {
    margin-left: -22.5px;
  }
}
@media (min-width: 480px) {
  .c-inline-link-list__inner ul {
    margin-right: calc(-2.5vw + 0px);
  }
}
@media (min-width: 800px) {
  .c-inline-link-list__inner ul {
    margin-right: -20px;
  }
}
@media (min-width: 1440px) {
  .c-inline-link-list__inner ul {
    margin-right: -20px;
  }
}
@media (min-width: 2560px) {
  .c-inline-link-list__inner ul {
    margin-right: calc(-0.2016129032vw - 14.8387096774px);
  }
}
@media (min-width: 3800px) {
  .c-inline-link-list__inner ul {
    margin-right: -22.5px;
  }
}
.c-inline-link-list__inner li {
  padding-left: 12px;
  padding-right: 12px;
  display: inline-block;
}

@media (min-width: 480px) {
  .c-inline-link-list__inner li {
    padding-left: calc(2.5vw + 0px);
  }
}
@media (min-width: 800px) {
  .c-inline-link-list__inner li {
    padding-left: 20px;
  }
}
@media (min-width: 1440px) {
  .c-inline-link-list__inner li {
    padding-left: 20px;
  }
}
@media (min-width: 2560px) {
  .c-inline-link-list__inner li {
    padding-left: calc(0.2016129032vw + 14.8387096774px);
  }
}
@media (min-width: 3800px) {
  .c-inline-link-list__inner li {
    padding-left: 22.5px;
  }
}
@media (min-width: 480px) {
  .c-inline-link-list__inner li {
    padding-right: calc(2.5vw + 0px);
  }
}
@media (min-width: 800px) {
  .c-inline-link-list__inner li {
    padding-right: 20px;
  }
}
@media (min-width: 1440px) {
  .c-inline-link-list__inner li {
    padding-right: 20px;
  }
}
@media (min-width: 2560px) {
  .c-inline-link-list__inner li {
    padding-right: calc(0.2016129032vw + 14.8387096774px);
  }
}
@media (min-width: 3800px) {
  .c-inline-link-list__inner li {
    padding-right: 22.5px;
  }
}
@media (max-width: 480px) {
  .c-inline-link-list__inner li {
    display: block;
  }
}
.c-inline-link-list.is-dark h4, .is-dark .c-inline-link-list h4 {
  color: rgba(250, 250, 250, 0.5);
}

.c-inline-link-list.is-dark .c-link:before, .is-dark .c-inline-link-list .c-link:before {
  background-color: rgba(250, 250, 250, 0.5);
}

.c-inline-link-list .c-link:before {
  background-color: rgba(22, 22, 23, 0.5);
}

.c-quote {
  max-width: 760px;
  width: 100%;
  margin: 0 auto;
}

@media (min-width: 1440px) {
  .c-quote {
    max-width: calc(8.4821428571vw + 637.8571428571px);
  }
}
@media (min-width: 2560px) {
  .c-quote {
    max-width: 855px;
  }
}
.c-quote__quote {
  padding-left: 12px;
  position: relative;
}

@media (min-width: 480px) {
  .c-quote__quote {
    padding-left: calc(1.25vw + 6px);
  }
}
@media (min-width: 800px) {
  .c-quote__quote {
    padding-left: 16px;
  }
}
@media (min-width: 1440px) {
  .c-quote__quote {
    padding-left: 16px;
  }
}
@media (min-width: 2560px) {
  .c-quote__quote {
    padding-left: calc(0.1612903226vw + 11.8709677419px);
  }
}
@media (min-width: 3800px) {
  .c-quote__quote {
    padding-left: 18px;
  }
}
@media (max-width: 600px) {
  .c-quote__quote {
    padding-left: 0;
  }
}
.c-quote__quote:before {
  content: "“";
  position: absolute;
  top: 0;
  right: 100%;
}

@media (max-width: 800px) {
  .c-quote__quote:before {
    right: auto;
    left: 0;
  }
}
@media (max-width: 600px) {
  .c-quote__quote:before {
    position: relative;
    display: block;
    padding-bottom: 10px;
    line-height: 0.5em;
    font-size: 40px;
  }
}
.c-quote__name {
  padding-top: 24px;
  padding-left: 12px;
}

@media (min-width: 480px) {
  .c-quote__name {
    padding-top: calc(5vw + 0px);
  }
}
@media (min-width: 800px) {
  .c-quote__name {
    padding-top: 40px;
  }
}
@media (min-width: 1440px) {
  .c-quote__name {
    padding-top: 40px;
  }
}
@media (min-width: 2560px) {
  .c-quote__name {
    padding-top: calc(0.4032258065vw + 29.6774193548px);
  }
}
@media (min-width: 3800px) {
  .c-quote__name {
    padding-top: 45px;
  }
}
@media (min-width: 480px) {
  .c-quote__name {
    padding-left: calc(1.25vw + 6px);
  }
}
@media (min-width: 800px) {
  .c-quote__name {
    padding-left: 16px;
  }
}
@media (min-width: 1440px) {
  .c-quote__name {
    padding-left: 16px;
  }
}
@media (min-width: 2560px) {
  .c-quote__name {
    padding-left: calc(0.1612903226vw + 11.8709677419px);
  }
}
@media (min-width: 3800px) {
  .c-quote__name {
    padding-left: 18px;
  }
}
@media (max-width: 600px) {
  .c-quote__name {
    padding-left: 0;
  }
}
.c-quote__company {
  padding-top: 4px;
  padding-left: 12px;
}

@media (min-width: 480px) {
  .c-quote__company {
    padding-top: calc(0.625vw + 1px);
  }
}
@media (min-width: 800px) {
  .c-quote__company {
    padding-top: 6px;
  }
}
@media (min-width: 1440px) {
  .c-quote__company {
    padding-top: 6px;
  }
}
@media (min-width: 2560px) {
  .c-quote__company {
    padding-top: calc(0.060483871vw + 4.4516129032px);
  }
}
@media (min-width: 3800px) {
  .c-quote__company {
    padding-top: 6.75px;
  }
}
@media (min-width: 480px) {
  .c-quote__company {
    padding-left: calc(1.25vw + 6px);
  }
}
@media (min-width: 800px) {
  .c-quote__company {
    padding-left: 16px;
  }
}
@media (min-width: 1440px) {
  .c-quote__company {
    padding-left: 16px;
  }
}
@media (min-width: 2560px) {
  .c-quote__company {
    padding-left: calc(0.1612903226vw + 11.8709677419px);
  }
}
@media (min-width: 3800px) {
  .c-quote__company {
    padding-left: 18px;
  }
}
@media (max-width: 600px) {
  .c-quote__company {
    padding-left: 0;
  }
}
.c-resource-text {
  padding-top: 64px;
  padding-bottom: 64px;
}

@media (min-width: 480px) {
  .c-resource-text {
    padding-top: calc(11.25vw + 10px);
  }
}
@media (min-width: 800px) {
  .c-resource-text {
    padding-top: 100px;
  }
}
@media (min-width: 1440px) {
  .c-resource-text {
    padding-top: 100px;
  }
}
@media (min-width: 2560px) {
  .c-resource-text {
    padding-top: calc(1.0080645161vw + 74.1935483871px);
  }
}
@media (min-width: 3800px) {
  .c-resource-text {
    padding-top: 112.5px;
  }
}
@media (min-width: 480px) {
  .c-resource-text {
    padding-bottom: calc(11.25vw + 10px);
  }
}
@media (min-width: 800px) {
  .c-resource-text {
    padding-bottom: 100px;
  }
}
@media (min-width: 1440px) {
  .c-resource-text {
    padding-bottom: 100px;
  }
}
@media (min-width: 2560px) {
  .c-resource-text {
    padding-bottom: calc(1.0080645161vw + 74.1935483871px);
  }
}
@media (min-width: 3800px) {
  .c-resource-text {
    padding-bottom: 112.5px;
  }
}
.c-resource-text p {
  max-width: 810px;
  width: 100%;
}

@media (min-width: 1440px) {
  .c-resource-text p {
    max-width: calc(9.0401785714vw + 679.8214285714px);
  }
}
@media (min-width: 2560px) {
  .c-resource-text p {
    max-width: 911.25px;
  }
}
.c-resources-highlight {
  padding-top: 64px;
  padding-bottom: 64px;
  position: relative;
}

@media (min-width: 480px) {
  .c-resources-highlight {
    padding-top: calc(11.25vw + 10px);
  }
}
@media (min-width: 800px) {
  .c-resources-highlight {
    padding-top: 100px;
  }
}
@media (min-width: 1440px) {
  .c-resources-highlight {
    padding-top: 100px;
  }
}
@media (min-width: 2560px) {
  .c-resources-highlight {
    padding-top: calc(1.0080645161vw + 74.1935483871px);
  }
}
@media (min-width: 3800px) {
  .c-resources-highlight {
    padding-top: 112.5px;
  }
}
@media (min-width: 480px) {
  .c-resources-highlight {
    padding-bottom: calc(11.25vw + 10px);
  }
}
@media (min-width: 800px) {
  .c-resources-highlight {
    padding-bottom: 100px;
  }
}
@media (min-width: 1440px) {
  .c-resources-highlight {
    padding-bottom: 100px;
  }
}
@media (min-width: 2560px) {
  .c-resources-highlight {
    padding-bottom: calc(1.0080645161vw + 74.1935483871px);
  }
}
@media (min-width: 3800px) {
  .c-resources-highlight {
    padding-bottom: 112.5px;
  }
}
.c-resources-highlight:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background-color: rgba(22, 22, 23, 0.2);
}

.c-resources-highlight__image {
  width: 100%;
  overflow: hidden;
}

.c-resources-highlight__image .u-image-wrapper {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transform-origin: top left;
          transform-origin: top left;
  -webkit-transition: -webkit-transform 0.35s ease-out;
  transition: -webkit-transform 0.35s ease-out;
  transition: transform 0.35s ease-out;
  transition: transform 0.35s ease-out, -webkit-transform 0.35s ease-out;
}

.c-resources-highlight__inner {
  margin-right: -12px;
  margin-left: -12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

@media (min-width: 480px) {
  .c-resources-highlight__inner {
    margin-right: calc(-2.5vw + 0px);
  }
}
@media (min-width: 800px) {
  .c-resources-highlight__inner {
    margin-right: -20px;
  }
}
@media (min-width: 1440px) {
  .c-resources-highlight__inner {
    margin-right: -20px;
  }
}
@media (min-width: 2560px) {
  .c-resources-highlight__inner {
    margin-right: calc(-0.2016129032vw - 14.8387096774px);
  }
}
@media (min-width: 3800px) {
  .c-resources-highlight__inner {
    margin-right: -22.5px;
  }
}
@media (min-width: 480px) {
  .c-resources-highlight__inner {
    margin-left: calc(-2.5vw + 0px);
  }
}
@media (min-width: 800px) {
  .c-resources-highlight__inner {
    margin-left: -20px;
  }
}
@media (min-width: 1440px) {
  .c-resources-highlight__inner {
    margin-left: -20px;
  }
}
@media (min-width: 2560px) {
  .c-resources-highlight__inner {
    margin-left: calc(-0.2016129032vw - 14.8387096774px);
  }
}
@media (min-width: 3800px) {
  .c-resources-highlight__inner {
    margin-left: -22.5px;
  }
}
@media (max-width: 800px) {
  .c-resources-highlight__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.c-resources-highlight__item {
  padding-right: 12px;
  padding-left: 12px;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 50%;
          flex: 1 0 50%;
}

@media (min-width: 480px) {
  .c-resources-highlight__item {
    padding-right: calc(2.5vw + 0px);
  }
}
@media (min-width: 800px) {
  .c-resources-highlight__item {
    padding-right: 20px;
  }
}
@media (min-width: 1440px) {
  .c-resources-highlight__item {
    padding-right: 20px;
  }
}
@media (min-width: 2560px) {
  .c-resources-highlight__item {
    padding-right: calc(0.2016129032vw + 14.8387096774px);
  }
}
@media (min-width: 3800px) {
  .c-resources-highlight__item {
    padding-right: 22.5px;
  }
}
@media (min-width: 480px) {
  .c-resources-highlight__item {
    padding-left: calc(2.5vw + 0px);
  }
}
@media (min-width: 800px) {
  .c-resources-highlight__item {
    padding-left: 20px;
  }
}
@media (min-width: 1440px) {
  .c-resources-highlight__item {
    padding-left: 20px;
  }
}
@media (min-width: 2560px) {
  .c-resources-highlight__item {
    padding-left: calc(0.2016129032vw + 14.8387096774px);
  }
}
@media (min-width: 3800px) {
  .c-resources-highlight__item {
    padding-left: 22.5px;
  }
}
.c-resources-highlight__item a {
  display: block;
}

@media (hover: hover) and (pointer: fine) {
  .c-resources-highlight__item a:hover .c-resources-highlight__link span {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
    opacity: 1;
  }

  .c-resources-highlight__item a:hover .c-resources-highlight__description {
    color: rgba(22, 22, 23, 0.5);
  }

  .c-resources-highlight__item a:hover .c-resources-highlight__image .u-image-wrapper {
    -webkit-transform: scale(1.025);
            transform: scale(1.025);
  }
}
.c-resources-highlight__title {
  color: #161617;
  max-width: 560px;
  padding-top: 12px;
}

@media (min-width: 1440px) {
  .c-resources-highlight__title {
    max-width: calc(6.25vw + 470px);
  }
}
@media (min-width: 2560px) {
  .c-resources-highlight__title {
    max-width: 630px;
  }
}
@media (min-width: 480px) {
  .c-resources-highlight__title {
    padding-top: calc(2.5vw + 0px);
  }
}
@media (min-width: 800px) {
  .c-resources-highlight__title {
    padding-top: 20px;
  }
}
@media (min-width: 1440px) {
  .c-resources-highlight__title {
    padding-top: 20px;
  }
}
@media (min-width: 2560px) {
  .c-resources-highlight__title {
    padding-top: calc(0.2016129032vw + 14.8387096774px);
  }
}
@media (min-width: 3800px) {
  .c-resources-highlight__title {
    padding-top: 22.5px;
  }
}
.c-resources-highlight__description {
  color: #161617;
  max-width: 560px;
  padding-top: 12px;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}

@media (min-width: 1440px) {
  .c-resources-highlight__description {
    max-width: calc(6.25vw + 470px);
  }
}
@media (min-width: 2560px) {
  .c-resources-highlight__description {
    max-width: 630px;
  }
}
@media (min-width: 480px) {
  .c-resources-highlight__description {
    padding-top: calc(1.25vw + 6px);
  }
}
@media (min-width: 800px) {
  .c-resources-highlight__description {
    padding-top: 16px;
  }
}
@media (min-width: 1440px) {
  .c-resources-highlight__description {
    padding-top: 16px;
  }
}
@media (min-width: 2560px) {
  .c-resources-highlight__description {
    padding-top: calc(0.1612903226vw + 11.8709677419px);
  }
}
@media (min-width: 3800px) {
  .c-resources-highlight__description {
    padding-top: 18px;
  }
}
.c-resources-highlight__link {
  color: #161617;
  overflow: hidden;
  position: relative;
  padding-top: 12px;
}

@media (min-width: 480px) {
  .c-resources-highlight__link {
    padding-top: calc(1.25vw + 6px);
  }
}
@media (min-width: 800px) {
  .c-resources-highlight__link {
    padding-top: 16px;
  }
}
@media (min-width: 1440px) {
  .c-resources-highlight__link {
    padding-top: 16px;
  }
}
@media (min-width: 2560px) {
  .c-resources-highlight__link {
    padding-top: calc(0.1612903226vw + 11.8709677419px);
  }
}
@media (min-width: 3800px) {
  .c-resources-highlight__link {
    padding-top: 18px;
  }
}
.c-resources-highlight__link span {
  display: block;
  position: relative;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-out, -webkit-transform 0.2s ease-out;
  transition: opacity 0.2s ease-out, -webkit-transform 0.2s ease-out;
  transition: transform 0.2s ease-out, opacity 0.2s ease-out;
  transition: transform 0.2s ease-out, opacity 0.2s ease-out, -webkit-transform 0.2s ease-out;
}

.c-resources-highlight__link span .u-icon--arrow-angled {
  font-size: 10px;
  margin-left: 8px;
}

@media (min-width: 1440px) {
  .c-resources-highlight__link span .u-icon--arrow-angled {
    font-size: calc(0.1116071429vw + 8.3928571429px);
  }
}
@media (min-width: 2560px) {
  .c-resources-highlight__link span .u-icon--arrow-angled {
    font-size: 11.25px;
  }
}
@media (min-width: 480px) {
  .c-resources-highlight__link span .u-icon--arrow-angled {
    margin-left: calc(1.25vw + 2px);
  }
}
@media (min-width: 800px) {
  .c-resources-highlight__link span .u-icon--arrow-angled {
    margin-left: 12px;
  }
}
@media (min-width: 1440px) {
  .c-resources-highlight__link span .u-icon--arrow-angled {
    margin-left: 12px;
  }
}
@media (min-width: 2560px) {
  .c-resources-highlight__link span .u-icon--arrow-angled {
    margin-left: calc(0.1209677419vw + 8.9032258065px);
  }
}
@media (min-width: 3800px) {
  .c-resources-highlight__link span .u-icon--arrow-angled {
    margin-left: 13.5px;
  }
}
.c-product-modal {
  width: 100%;
  height: 100%;
  background-color: #161617;
  overflow-y: scroll;
  padding-top: 24px;
  padding-bottom: 64px;
}

@media (min-width: 480px) {
  .c-product-modal {
    padding-top: calc(5vw + 0px);
  }
}
@media (min-width: 800px) {
  .c-product-modal {
    padding-top: 40px;
  }
}
@media (min-width: 1440px) {
  .c-product-modal {
    padding-top: 40px;
  }
}
@media (min-width: 2560px) {
  .c-product-modal {
    padding-top: calc(0.4032258065vw + 29.6774193548px);
  }
}
@media (min-width: 3800px) {
  .c-product-modal {
    padding-top: 45px;
  }
}
@media (min-width: 480px) {
  .c-product-modal {
    padding-bottom: calc(11.25vw + 10px);
  }
}
@media (min-width: 800px) {
  .c-product-modal {
    padding-bottom: 100px;
  }
}
@media (min-width: 1440px) {
  .c-product-modal {
    padding-bottom: 100px;
  }
}
@media (min-width: 2560px) {
  .c-product-modal {
    padding-bottom: calc(1.0080645161vw + 74.1935483871px);
  }
}
@media (min-width: 3800px) {
  .c-product-modal {
    padding-bottom: 112.5px;
  }
}
.c-product-modal__close {
  display: block;
  cursor: pointer;
  position: relative;
  background-color: transparent;
  border: none;
  margin-right: 32px;
  float: right;
  width: auto;
  -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-transform-origin: center center;
          transform-origin: center center;
  height: 32px;
  width: 32px;
}

@media (min-width: 480px) {
  .c-product-modal__close {
    margin-right: calc(7.5vw - 4px);
  }
}
@media (min-width: 800px) {
  .c-product-modal__close {
    margin-right: 56px;
  }
}
@media (min-width: 1440px) {
  .c-product-modal__close {
    margin-right: 56px;
  }
}
@media (min-width: 2560px) {
  .c-product-modal__close {
    margin-right: calc(0.564516129vw + 41.5483870968px);
  }
}
@media (min-width: 3800px) {
  .c-product-modal__close {
    margin-right: 63px;
  }
}
@media (min-width: 480px) {
  .c-product-modal__close {
    height: calc(7.5vw - 4px);
  }
}
@media (min-width: 800px) {
  .c-product-modal__close {
    height: 56px;
  }
}
@media (min-width: 1440px) {
  .c-product-modal__close {
    height: 56px;
  }
}
@media (min-width: 2560px) {
  .c-product-modal__close {
    height: calc(0.564516129vw + 41.5483870968px);
  }
}
@media (min-width: 3800px) {
  .c-product-modal__close {
    height: 63px;
  }
}
@media (min-width: 480px) {
  .c-product-modal__close {
    width: calc(7.5vw - 4px);
  }
}
@media (min-width: 800px) {
  .c-product-modal__close {
    width: 56px;
  }
}
@media (min-width: 1440px) {
  .c-product-modal__close {
    width: 56px;
  }
}
@media (min-width: 2560px) {
  .c-product-modal__close {
    width: calc(0.564516129vw + 41.5483870968px);
  }
}
@media (min-width: 3800px) {
  .c-product-modal__close {
    width: 63px;
  }
}
.c-product-modal__close:before, .c-product-modal__close:after {
  position: absolute;
  left: 50%;
  top: 0;
  content: " ";
  height: 32px;
  width: 2px;
  background-color: #fafafa;
}

@media (min-width: 480px) {
  .c-product-modal__close:before, .c-product-modal__close:after {
    height: calc(7.5vw - 4px);
  }
}
@media (min-width: 800px) {
  .c-product-modal__close:before, .c-product-modal__close:after {
    height: 56px;
  }
}
@media (min-width: 1440px) {
  .c-product-modal__close:before, .c-product-modal__close:after {
    height: 56px;
  }
}
@media (min-width: 2560px) {
  .c-product-modal__close:before, .c-product-modal__close:after {
    height: calc(0.564516129vw + 41.5483870968px);
  }
}
@media (min-width: 3800px) {
  .c-product-modal__close:before, .c-product-modal__close:after {
    height: 63px;
  }
}
.c-product-modal__close:before {
  -webkit-transform: rotate(45deg) translateX(-50%);
          transform: rotate(45deg) translateX(-50%);
}

.c-product-modal__close:after {
  -webkit-transform: rotate(-45deg) translateX(-50%);
          transform: rotate(-45deg) translateX(-50%);
}

@media (hover: hover) and (pointer: fine) {
  .c-product-modal__close:hover {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
}
.c-product-modal__title {
  color: #fafafa;
}

.c-product-modal__title span {
  display: block;
}

@media (max-width: 480px) {
  .c-product-modal__title {
    padding-top: 32px;
  }
}
@media (max-width: 480px) and (min-width: 480px) {
  .c-product-modal__title {
    padding-top: calc(7.5vw - 4px);
  }
}
@media (max-width: 480px) and (min-width: 800px) {
  .c-product-modal__title {
    padding-top: 56px;
  }
}
@media (max-width: 480px) and (min-width: 1440px) {
  .c-product-modal__title {
    padding-top: 56px;
  }
}
@media (max-width: 480px) and (min-width: 2560px) {
  .c-product-modal__title {
    padding-top: calc(0.564516129vw + 41.5483870968px);
  }
}
@media (max-width: 480px) and (min-width: 3800px) {
  .c-product-modal__title {
    padding-top: 63px;
  }
}
@media (max-width: 480px) {
  .c-product-modal__title span {
    font-size: 35px;
  }
}
@media (max-width: 480px) and (min-width: 1440px) {
  .c-product-modal__title span {
    font-size: calc(0.390625vw + 29.375px);
  }
}
@media (max-width: 480px) and (min-width: 2560px) {
  .c-product-modal__title span {
    font-size: 39.375px;
  }
}
.c-product-modal__info-wrap {
  padding-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -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 (min-width: 480px) {
  .c-product-modal__info-wrap {
    padding-top: calc(5vw + 0px);
  }
}
@media (min-width: 800px) {
  .c-product-modal__info-wrap {
    padding-top: 40px;
  }
}
@media (min-width: 1440px) {
  .c-product-modal__info-wrap {
    padding-top: 40px;
  }
}
@media (min-width: 2560px) {
  .c-product-modal__info-wrap {
    padding-top: calc(0.4032258065vw + 29.6774193548px);
  }
}
@media (min-width: 3800px) {
  .c-product-modal__info-wrap {
    padding-top: 45px;
  }
}
@media (max-width: 800px) {
  .c-product-modal__info-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.c-product-modal__image-wrap {
  position: relative;
  width: 36.3636363636%;
}

@media (max-width: 800px) {
  .c-product-modal__image-wrap {
    width: 100%;
  }
}
.c-product-modal__image-wrap-image {
  position: fixed;
  display: block;
  width: 33.3333333333%;
  padding-top: 64px;
}

@media (min-width: 480px) {
  .c-product-modal__image-wrap-image {
    padding-top: calc(11.25vw + 10px);
  }
}
@media (min-width: 800px) {
  .c-product-modal__image-wrap-image {
    padding-top: 100px;
  }
}
@media (min-width: 1440px) {
  .c-product-modal__image-wrap-image {
    padding-top: 100px;
  }
}
@media (min-width: 2560px) {
  .c-product-modal__image-wrap-image {
    padding-top: calc(1.0080645161vw + 74.1935483871px);
  }
}
@media (min-width: 3800px) {
  .c-product-modal__image-wrap-image {
    padding-top: 112.5px;
  }
}
@media (max-width: 800px) {
  .c-product-modal__image-wrap-image {
    position: relative;
    max-width: 400px;
    width: 100%;
  }
}
.c-product-modal__item {
  width: 59.0909090909%;
}

.c-product-modal__item:last-child {
  margin-bottom: 64px;
}

@media (min-width: 480px) {
  .c-product-modal__item:last-child {
    margin-bottom: calc(11.25vw + 10px);
  }
}
@media (min-width: 800px) {
  .c-product-modal__item:last-child {
    margin-bottom: 100px;
  }
}
@media (min-width: 1440px) {
  .c-product-modal__item:last-child {
    margin-bottom: 100px;
  }
}
@media (min-width: 2560px) {
  .c-product-modal__item:last-child {
    margin-bottom: calc(1.0080645161vw + 74.1935483871px);
  }
}
@media (min-width: 3800px) {
  .c-product-modal__item:last-child {
    margin-bottom: 112.5px;
  }
}
@media (max-width: 800px) {
  .c-product-modal__item {
    width: 100%;
  }
}
.c-product-info__type {
  padding-top: 32px;
  border-bottom: 1px solid rgba(250, 250, 250, 0.2);
}

@media (min-width: 480px) {
  .c-product-info__type {
    padding-top: calc(7.5vw - 4px);
  }
}
@media (min-width: 800px) {
  .c-product-info__type {
    padding-top: 56px;
  }
}
@media (min-width: 1440px) {
  .c-product-info__type {
    padding-top: 56px;
  }
}
@media (min-width: 2560px) {
  .c-product-info__type {
    padding-top: calc(0.564516129vw + 41.5483870968px);
  }
}
@media (min-width: 3800px) {
  .c-product-info__type {
    padding-top: 63px;
  }
}
.c-product-info__spec-title {
  padding-right: 16px;
}

@media (min-width: 480px) {
  .c-product-info__spec-title {
    padding-right: calc(2.5vw + 4px);
  }
}
@media (min-width: 800px) {
  .c-product-info__spec-title {
    padding-right: 24px;
  }
}
@media (min-width: 1440px) {
  .c-product-info__spec-title {
    padding-right: 24px;
  }
}
@media (min-width: 2560px) {
  .c-product-info__spec-title {
    padding-right: calc(0.2419354839vw + 17.8064516129px);
  }
}
@media (min-width: 3800px) {
  .c-product-info__spec-title {
    padding-right: 27px;
  }
}
@media (max-width: 800px) {
  .c-product-info__spec-title {
    width: 100%;
  }
}
.c-product-info__spec-title p {
  color: #fafafa;
}

@media (max-width: 480px) {
  .c-product-info__spec-title {
    width: 100%;
  }
}
.c-product-info__spec-desc {
  width: 46.1538461538%;
  text-align: right;
}

@media (max-width: 800px) {
  .c-product-info__spec-desc {
    width: 100%;
    text-align: left;
  }
}
.c-product-info__spec-desc p {
  color: rgba(250, 250, 250, 0.5);
}

@media (max-width: 800px) {
  .c-product-info__spec-desc {
    padding-top: 12px;
    width: 100%;
  }
}
@media (max-width: 800px) and (min-width: 480px) {
  .c-product-info__spec-desc {
    padding-top: calc(1.25vw + 6px);
  }
}
@media (max-width: 800px) and (min-width: 800px) {
  .c-product-info__spec-desc {
    padding-top: 16px;
  }
}
@media (max-width: 800px) and (min-width: 1440px) {
  .c-product-info__spec-desc {
    padding-top: 16px;
  }
}
@media (max-width: 800px) and (min-width: 2560px) {
  .c-product-info__spec-desc {
    padding-top: calc(0.1612903226vw + 11.8709677419px);
  }
}
@media (max-width: 800px) and (min-width: 3800px) {
  .c-product-info__spec-desc {
    padding-top: 18px;
  }
}
.c-product-info__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -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;
  border-bottom: 1px solid rgba(250, 250, 250, 0.2);
  padding-bottom: 12px;
  padding-top: 16px;
}

@media (min-width: 480px) {
  .c-product-info__row {
    padding-bottom: calc(1.25vw + 6px);
  }
}
@media (min-width: 800px) {
  .c-product-info__row {
    padding-bottom: 16px;
  }
}
@media (min-width: 1440px) {
  .c-product-info__row {
    padding-bottom: 16px;
  }
}
@media (min-width: 2560px) {
  .c-product-info__row {
    padding-bottom: calc(0.1612903226vw + 11.8709677419px);
  }
}
@media (min-width: 3800px) {
  .c-product-info__row {
    padding-bottom: 18px;
  }
}
@media (min-width: 480px) {
  .c-product-info__row {
    padding-top: calc(2.5vw + 4px);
  }
}
@media (min-width: 800px) {
  .c-product-info__row {
    padding-top: 24px;
  }
}
@media (min-width: 1440px) {
  .c-product-info__row {
    padding-top: 24px;
  }
}
@media (min-width: 2560px) {
  .c-product-info__row {
    padding-top: calc(0.2419354839vw + 17.8064516129px);
  }
}
@media (min-width: 3800px) {
  .c-product-info__row {
    padding-top: 27px;
  }
}
.c-product-info__row:first-child {
  border: none;
}

.c-product-info__row:last-child {
  border: none;
}

.c-product-info__info p {
  color: rgba(250, 250, 250, 0.5);
}

@media (max-width: 480px) {
  .c-product-info__info {
    width: 50%;
  }
}
.c-product-faq__wrapper {
  padding-top: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(250, 250, 250, 0.2);
  border-top: 1px solid rgba(250, 250, 250, 0.2);
}

@media (min-width: 480px) {
  .c-product-faq__wrapper {
    padding-top: calc(11.25vw + 10px);
  }
}
@media (min-width: 800px) {
  .c-product-faq__wrapper {
    padding-top: 100px;
  }
}
@media (min-width: 1440px) {
  .c-product-faq__wrapper {
    padding-top: 100px;
  }
}
@media (min-width: 2560px) {
  .c-product-faq__wrapper {
    padding-top: calc(1.0080645161vw + 74.1935483871px);
  }
}
@media (min-width: 3800px) {
  .c-product-faq__wrapper {
    padding-top: 112.5px;
  }
}
@media (min-width: 480px) {
  .c-product-faq__wrapper {
    padding-bottom: calc(11.25vw + 10px);
  }
}
@media (min-width: 800px) {
  .c-product-faq__wrapper {
    padding-bottom: 100px;
  }
}
@media (min-width: 1440px) {
  .c-product-faq__wrapper {
    padding-bottom: 100px;
  }
}
@media (min-width: 2560px) {
  .c-product-faq__wrapper {
    padding-bottom: calc(1.0080645161vw + 74.1935483871px);
  }
}
@media (min-width: 3800px) {
  .c-product-faq__wrapper {
    padding-bottom: 112.5px;
  }
}
.c-product-faq__title {
  padding-bottom: 24px;
}

@media (min-width: 480px) {
  .c-product-faq__title {
    padding-bottom: calc(5vw + 0px);
  }
}
@media (min-width: 800px) {
  .c-product-faq__title {
    padding-bottom: 40px;
  }
}
@media (min-width: 1440px) {
  .c-product-faq__title {
    padding-bottom: 40px;
  }
}
@media (min-width: 2560px) {
  .c-product-faq__title {
    padding-bottom: calc(0.4032258065vw + 29.6774193548px);
  }
}
@media (min-width: 3800px) {
  .c-product-faq__title {
    padding-bottom: 45px;
  }
}
.c-product-faq__title span {
  display: block;
}

.c-product-faq__content {
  max-width: 65.7894736842%;
  width: 100%;
  margin-left: auto;
  padding-top: 56px;
}

@media (min-width: 480px) {
  .c-product-faq__content {
    padding-top: calc(7.5vw + 20px);
  }
}
@media (min-width: 800px) {
  .c-product-faq__content {
    padding-top: 80px;
  }
}
@media (min-width: 1440px) {
  .c-product-faq__content {
    padding-top: 80px;
  }
}
@media (min-width: 2560px) {
  .c-product-faq__content {
    padding-top: calc(0.8064516129vw + 59.3548387097px);
  }
}
@media (min-width: 3800px) {
  .c-product-faq__content {
    padding-top: 90px;
  }
}
@media (max-width: 800px) {
  .c-product-faq__content {
    max-width: 72.7272727273%;
  }
}
@media (max-width: 480px) {
  .c-product-faq__content {
    max-width: 100%;
  }
}
:root {
  --app-height: 100%;
}

.c-sticky-cta {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
  pointer-events: none;
}

.c-sticky-cta__button-wrapper {
  padding-bottom: 24px;
  padding-right: 4.1666666667%;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media (min-width: 480px) {
  .c-sticky-cta__button-wrapper {
    padding-bottom: calc(5vw + 0px);
  }
}
@media (min-width: 800px) {
  .c-sticky-cta__button-wrapper {
    padding-bottom: 40px;
  }
}
@media (min-width: 1440px) {
  .c-sticky-cta__button-wrapper {
    padding-bottom: 40px;
  }
}
@media (min-width: 2560px) {
  .c-sticky-cta__button-wrapper {
    padding-bottom: calc(0.4032258065vw + 29.6774193548px);
  }
}
@media (min-width: 3800px) {
  .c-sticky-cta__button-wrapper {
    padding-bottom: 45px;
  }
}
@media not all and (hover: hover) {
  .c-sticky-cta__button-wrapper {
    height: var(--app-height);
  }
}
@media (max-width: 480px) {
  .c-sticky-cta__button-wrapper {
    padding-right: 0;
    padding-bottom: 0;
  }
}
.c-sticky-cta__button {
  height: 40px;
  max-width: 40px;
  padding-left: 20px;
  padding-right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fafafa;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  background: -webkit-gradient(linear, left top, right top, from(#4aa6dd), color-stop(21.85%, #e7f1ff), color-stop(45.1%, #4aa6dd), color-stop(70%, #1d4f91), to(#4aa6dd));
  background: linear-gradient(90deg, #4aa6dd 0%, #e7f1ff 21.85%, #4aa6dd 45.1%, #1d4f91 70%, #4aa6dd 100%);
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
  border-radius: 100px;
  white-space: nowrap;
  pointer-events: all;
  overflow: hidden;
}

@media (min-width: 1440px) {
  .c-sticky-cta__button {
    height: calc(0.4464285714vw + 33.5714285714px);
  }
}
@media (min-width: 2560px) {
  .c-sticky-cta__button {
    height: 45px;
  }
}
@media (min-width: 1440px) {
  .c-sticky-cta__button {
    max-width: calc(0.4464285714vw + 33.5714285714px);
  }
}
@media (min-width: 2560px) {
  .c-sticky-cta__button {
    max-width: 45px;
  }
}
@media (min-width: 1440px) {
  .c-sticky-cta__button {
    padding-left: calc(0.2232142857vw + 16.7857142857px);
  }
}
@media (min-width: 2560px) {
  .c-sticky-cta__button {
    padding-left: 22.5px;
  }
}
@media (min-width: 1440px) {
  .c-sticky-cta__button {
    padding-right: calc(0.2232142857vw + 16.7857142857px);
  }
}
@media (min-width: 2560px) {
  .c-sticky-cta__button {
    padding-right: 22.5px;
  }
}
@media (max-width: 800px) {
  .c-sticky-cta__button {
    max-width: 100%;
  }
}
@media (max-width: 480px) {
  .c-sticky-cta__button {
    width: 100%;
    border-radius: 0;
  }
}
@media (hover: hover) and (pointer: fine) {
  .c-sticky-cta__button:hover {
    max-width: 250px;
    -webkit-transition-delay: 0s;
            transition-delay: 0s;
  }
}
@media (hover: hover) and (pointer: fine) and (min-width: 1440px) {
  .c-sticky-cta__button:hover {
    max-width: calc(2.7901785714vw + 209.8214285714px);
  }
}
@media (hover: hover) and (pointer: fine) and (min-width: 2560px) {
  .c-sticky-cta__button:hover {
    max-width: 281.25px;
  }
}
@media (hover: hover) and (pointer: fine) and (max-width: 800px) {
  .c-sticky-cta__button:hover {
    max-width: 100%;
  }
}
@media (hover: hover) and (pointer: fine) {
  .c-sticky-cta__button:hover p {
    opacity: 1;
    visibility: visible;
    -webkit-transition-delay: 0.1s;
            transition-delay: 0.1s;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}
@media (hover: hover) and (pointer: fine) {
  .c-sticky-cta__button:hover span {
    opacity: 0;
    visibility: hidden;
    -webkit-transition-delay: 0.1s;
            transition-delay: 0.1s;
    -webkit-transform: translate(-50%, -100%);
            transform: translate(-50%, -100%);
  }
}
.c-sticky-cta p {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
}

@media (max-width: 800px) {
  .c-sticky-cta p {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}
.c-sticky-cta span {
  opacity: 1;
  visibility: visible;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media (max-width: 800px) {
  .c-sticky-cta span {
    display: none;
  }
}
/**
 * Image sequence
 */
.c-image-sequence {
  position: relative;
}

.c-image-sequence__background-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.c-image-sequence__background {
  position: -webkit-sticky;
  position: sticky;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

@media (max-width: 800px) {
  .c-image-sequence--new .c-image-sequence__background {
    -webkit-clip-path: none !important;
            clip-path: none !important;
  }
}
.c-image-sequence__canvas {
  position: absolute;
  height: 100vh;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.c-image-sequence__canvas canvas {
  height: 85vh;
}

@media (max-width: 800px) {
  .c-image-sequence__canvas canvas {
    height: 65vh;
  }
}
.c-image-sequence--new .c-image-sequence__canvas canvas {
  height: 100vh;
}

@media (max-width: 800px) {
  .c-image-sequence--new .c-image-sequence__canvas canvas {
    height: 100vh;
  }
}
.c-image-sequence--bg-gray {
  background-color: #f1f1f1;
}

/**
 * Image sequence section
 */
.c-image-sequence-section {
  z-index: 1;
  position: relative;
}

.c-image-sequence-section__inner {
  padding-top: 64px;
  padding-bottom: 64px;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  color: #161617;
}

@media (min-width: 480px) {
  .c-image-sequence-section__inner {
    padding-top: calc(11.25vw + 10px);
  }
}
@media (min-width: 800px) {
  .c-image-sequence-section__inner {
    padding-top: 100px;
  }
}
@media (min-width: 1440px) {
  .c-image-sequence-section__inner {
    padding-top: 100px;
  }
}
@media (min-width: 2560px) {
  .c-image-sequence-section__inner {
    padding-top: calc(1.0080645161vw + 74.1935483871px);
  }
}
@media (min-width: 3800px) {
  .c-image-sequence-section__inner {
    padding-top: 112.5px;
  }
}
@media (min-width: 480px) {
  .c-image-sequence-section__inner {
    padding-bottom: calc(11.25vw + 10px);
  }
}
@media (min-width: 800px) {
  .c-image-sequence-section__inner {
    padding-bottom: 100px;
  }
}
@media (min-width: 1440px) {
  .c-image-sequence-section__inner {
    padding-bottom: 100px;
  }
}
@media (min-width: 2560px) {
  .c-image-sequence-section__inner {
    padding-bottom: calc(1.0080645161vw + 74.1935483871px);
  }
}
@media (min-width: 3800px) {
  .c-image-sequence-section__inner {
    padding-bottom: 112.5px;
  }
}
.c-image-sequence-section--dark .c-image-sequence-section__inner {
  color: #161617;
}

.c-image-sequence-section--white .c-image-sequence-section__inner {
  color: #fafafa;
}

.c-image-sequence-section__content {
  padding-top: 40px;
  padding-bottom: 40px;
  padding-left: 4.1666666667%;
  padding-right: 4.1666666667%;
  width: 33.3333333333%;
  min-height: 33.33vh;
}

@media (min-width: 480px) {
  .c-image-sequence-section__content {
    padding-top: calc(7.5vw + 4px);
  }
}
@media (min-width: 800px) {
  .c-image-sequence-section__content {
    padding-top: 64px;
  }
}
@media (min-width: 1440px) {
  .c-image-sequence-section__content {
    padding-top: 64px;
  }
}
@media (min-width: 2560px) {
  .c-image-sequence-section__content {
    padding-top: calc(0.6451612903vw + 47.4838709677px);
  }
}
@media (min-width: 3800px) {
  .c-image-sequence-section__content {
    padding-top: 72px;
  }
}
@media (min-width: 480px) {
  .c-image-sequence-section__content {
    padding-bottom: calc(7.5vw + 4px);
  }
}
@media (min-width: 800px) {
  .c-image-sequence-section__content {
    padding-bottom: 64px;
  }
}
@media (min-width: 1440px) {
  .c-image-sequence-section__content {
    padding-bottom: 64px;
  }
}
@media (min-width: 2560px) {
  .c-image-sequence-section__content {
    padding-bottom: calc(0.6451612903vw + 47.4838709677px);
  }
}
@media (min-width: 3800px) {
  .c-image-sequence-section__content {
    padding-bottom: 72px;
  }
}
@media (max-width: 1140px) {
  .c-image-sequence-section__content {
    width: 50%;
  }
}
@media (max-width: 800px) {
  .c-image-sequence-section__content {
    width: 66.6666666667%;
  }
}
@media (max-width: 480px) {
  .c-image-sequence-section__content {
    width: 100%;
  }
}
.c-image-sequence-section__content .c-button {
  margin-top: 8px;
}

@media (min-width: 480px) {
  .c-image-sequence-section__content .c-button {
    margin-top: calc(1.25vw + 2px);
  }
}
@media (min-width: 800px) {
  .c-image-sequence-section__content .c-button {
    margin-top: 12px;
  }
}
@media (min-width: 1440px) {
  .c-image-sequence-section__content .c-button {
    margin-top: 12px;
  }
}
@media (min-width: 2560px) {
  .c-image-sequence-section__content .c-button {
    margin-top: calc(0.1209677419vw + 8.9032258065px);
  }
}
@media (min-width: 3800px) {
  .c-image-sequence-section__content .c-button {
    margin-top: 13.5px;
  }
}
.c-image-sequence-section__eyebrow {
  padding-bottom: 12px;
}

@media (min-width: 480px) {
  .c-image-sequence-section__eyebrow {
    padding-bottom: calc(1.25vw + 6px);
  }
}
@media (min-width: 800px) {
  .c-image-sequence-section__eyebrow {
    padding-bottom: 16px;
  }
}
@media (min-width: 1440px) {
  .c-image-sequence-section__eyebrow {
    padding-bottom: 16px;
  }
}
@media (min-width: 2560px) {
  .c-image-sequence-section__eyebrow {
    padding-bottom: calc(0.1612903226vw + 11.8709677419px);
  }
}
@media (min-width: 3800px) {
  .c-image-sequence-section__eyebrow {
    padding-bottom: 18px;
  }
}
.c-image-sequence-section__title {
  padding-bottom: 4px;
}

@media (min-width: 480px) {
  .c-image-sequence-section__title {
    padding-bottom: calc(0.625vw + 1px);
  }
}
@media (min-width: 800px) {
  .c-image-sequence-section__title {
    padding-bottom: 6px;
  }
}
@media (min-width: 1440px) {
  .c-image-sequence-section__title {
    padding-bottom: 6px;
  }
}
@media (min-width: 2560px) {
  .c-image-sequence-section__title {
    padding-bottom: calc(0.060483871vw + 4.4516129032px);
  }
}
@media (min-width: 3800px) {
  .c-image-sequence-section__title {
    padding-bottom: 6.75px;
  }
}
.c-image-sequence-section--1-1 .c-image-sequence-section__inner {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

@media (max-width: 480px) {
  .c-image-sequence-section--1-1 .c-image-sequence-section__inner {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.c-image-sequence-section--1-2 .c-image-sequence-section__inner {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 480px) {
  .c-image-sequence-section--1-2 .c-image-sequence-section__inner {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.c-image-sequence-section--1-3 .c-image-sequence-section__inner {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media (max-width: 480px) {
  .c-image-sequence-section--1-3 .c-image-sequence-section__inner {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.c-image-sequence-section--2-1 .c-image-sequence-section__inner {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

@media (max-width: 480px) {
  .c-image-sequence-section--2-1 .c-image-sequence-section__inner {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.c-image-sequence-section--2-2 .c-image-sequence-section__inner {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 480px) {
  .c-image-sequence-section--2-2 .c-image-sequence-section__inner {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.c-image-sequence-section--2-2 .c-image-sequence-section__content {
  width: 100%;
  max-width: 872px;
  text-align: center;
}

@media (min-width: 1440px) {
  .c-image-sequence-section--2-2 .c-image-sequence-section__content {
    max-width: calc(9.7321428571vw + 731.8571428571px);
  }
}
@media (min-width: 2560px) {
  .c-image-sequence-section--2-2 .c-image-sequence-section__content {
    max-width: 981px;
  }
}
.c-image-sequence-section--2-2 .c-image-sequence-section__title {
  padding-bottom: 20px;
}

@media (min-width: 480px) {
  .c-image-sequence-section--2-2 .c-image-sequence-section__title {
    padding-bottom: calc(3.75vw + 2px);
  }
}
@media (min-width: 800px) {
  .c-image-sequence-section--2-2 .c-image-sequence-section__title {
    padding-bottom: 32px;
  }
}
@media (min-width: 1440px) {
  .c-image-sequence-section--2-2 .c-image-sequence-section__title {
    padding-bottom: 32px;
  }
}
@media (min-width: 2560px) {
  .c-image-sequence-section--2-2 .c-image-sequence-section__title {
    padding-bottom: calc(0.3225806452vw + 23.7419354839px);
  }
}
@media (min-width: 3800px) {
  .c-image-sequence-section--2-2 .c-image-sequence-section__title {
    padding-bottom: 36px;
  }
}
.c-image-sequence-section--2-3 .c-image-sequence-section__inner {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media (max-width: 480px) {
  .c-image-sequence-section--2-3 .c-image-sequence-section__inner {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.c-image-sequence-section--3-1 .c-image-sequence-section__inner {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

@media (max-width: 480px) {
  .c-image-sequence-section--3-1 .c-image-sequence-section__inner {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.c-image-sequence-section--3-2 .c-image-sequence-section__inner {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 480px) {
  .c-image-sequence-section--3-2 .c-image-sequence-section__inner {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.c-image-sequence-section--3-3 .c-image-sequence-section__inner {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media (max-width: 480px) {
  .c-image-sequence-section--3-3 .c-image-sequence-section__inner {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.c-tabs__navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 24px;
}

@media (min-width: 480px) {
  .c-tabs__navigation {
    padding-bottom: calc(5vw + 0px);
  }
}
@media (min-width: 800px) {
  .c-tabs__navigation {
    padding-bottom: 40px;
  }
}
@media (min-width: 1440px) {
  .c-tabs__navigation {
    padding-bottom: 40px;
  }
}
@media (min-width: 2560px) {
  .c-tabs__navigation {
    padding-bottom: calc(0.4032258065vw + 29.6774193548px);
  }
}
@media (min-width: 3800px) {
  .c-tabs__navigation {
    padding-bottom: 45px;
  }
}
.c-tabs__content [hidden] {
  display: none;
}

.c-tab-link {
  margin-right: 24px;
}

@media (min-width: 480px) {
  .c-tab-link {
    margin-right: calc(5vw + 0px);
  }
}
@media (min-width: 800px) {
  .c-tab-link {
    margin-right: 40px;
  }
}
@media (min-width: 1440px) {
  .c-tab-link {
    margin-right: 40px;
  }
}
@media (min-width: 2560px) {
  .c-tab-link {
    margin-right: calc(0.4032258065vw + 29.6774193548px);
  }
}
@media (min-width: 3800px) {
  .c-tab-link {
    margin-right: 45px;
  }
}
.c-tab-link span {
  display: block;
  position: relative;
  overflow: hidden;
  padding-bottom: 0.125em;
  opacity: 0.5;
  -webkit-transition: all 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  transition: all 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

.c-tab-link span:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 0.0625em;
  width: 220%;
  background: -webkit-gradient(linear, left top, right top, from(#4aa6dd), color-stop(21.85%, #e7f1ff), color-stop(45.1%, #4aa6dd), color-stop(70%, #1d4f91), to(#4aa6dd));
  background: linear-gradient(90deg, #4aa6dd 0%, #e7f1ff 21.85%, #4aa6dd 45.1%, #1d4f91 70%, #4aa6dd 100%);
  -webkit-animation: 2s gradient linear infinite alternate;
          animation: 2s gradient linear infinite alternate;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
  opacity: 0;
  -webkit-transition: opacity 0.35s;
  transition: opacity 0.35s;
}

.c-tab-link a:hover span {
  opacity: 1;
}

.c-tab-link a[aria-selected=true] {
  opacity: 1;
}

.c-tab-link a[aria-selected=true] span {
  opacity: 1;
}

.c-tab-link a[aria-selected=true] span:before {
  opacity: 1;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}

.c-video-grid {
  padding-top: 64px;
  padding-bottom: 64px;
}

@media (min-width: 480px) {
  .c-video-grid {
    padding-top: calc(11.25vw + 10px);
  }
}
@media (min-width: 800px) {
  .c-video-grid {
    padding-top: 100px;
  }
}
@media (min-width: 1440px) {
  .c-video-grid {
    padding-top: 100px;
  }
}
@media (min-width: 2560px) {
  .c-video-grid {
    padding-top: calc(1.0080645161vw + 74.1935483871px);
  }
}
@media (min-width: 3800px) {
  .c-video-grid {
    padding-top: 112.5px;
  }
}
@media (min-width: 480px) {
  .c-video-grid {
    padding-bottom: calc(11.25vw + 10px);
  }
}
@media (min-width: 800px) {
  .c-video-grid {
    padding-bottom: 100px;
  }
}
@media (min-width: 1440px) {
  .c-video-grid {
    padding-bottom: 100px;
  }
}
@media (min-width: 2560px) {
  .c-video-grid {
    padding-bottom: calc(1.0080645161vw + 74.1935483871px);
  }
}
@media (min-width: 3800px) {
  .c-video-grid {
    padding-bottom: 112.5px;
  }
}
.c-video-grid__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: -12px;
  margin-left: -12px;
}

@media (min-width: 480px) {
  .c-video-grid__inner {
    margin-right: calc(-1.25vw - 6px);
  }
}
@media (min-width: 800px) {
  .c-video-grid__inner {
    margin-right: -16px;
  }
}
@media (min-width: 1440px) {
  .c-video-grid__inner {
    margin-right: -16px;
  }
}
@media (min-width: 2560px) {
  .c-video-grid__inner {
    margin-right: calc(-0.1612903226vw - 11.8709677419px);
  }
}
@media (min-width: 3800px) {
  .c-video-grid__inner {
    margin-right: -18px;
  }
}
@media (min-width: 480px) {
  .c-video-grid__inner {
    margin-left: calc(-1.25vw - 6px);
  }
}
@media (min-width: 800px) {
  .c-video-grid__inner {
    margin-left: -16px;
  }
}
@media (min-width: 1440px) {
  .c-video-grid__inner {
    margin-left: -16px;
  }
}
@media (min-width: 2560px) {
  .c-video-grid__inner {
    margin-left: calc(-0.1612903226vw - 11.8709677419px);
  }
}
@media (min-width: 3800px) {
  .c-video-grid__inner {
    margin-left: -18px;
  }
}
.c-video-grid__item {
  width: 31.5789473684%;
  margin-bottom: 64px;
  padding-right: 12px;
  padding-left: 12px;
  cursor: pointer;
}

@media (min-width: 480px) {
  .c-video-grid__item {
    margin-bottom: calc(17.5vw - 20px);
  }
}
@media (min-width: 800px) {
  .c-video-grid__item {
    margin-bottom: 120px;
  }
}
@media (min-width: 1440px) {
  .c-video-grid__item {
    margin-bottom: 120px;
  }
}
@media (min-width: 2560px) {
  .c-video-grid__item {
    margin-bottom: calc(1.2096774194vw + 89.0322580645px);
  }
}
@media (min-width: 3800px) {
  .c-video-grid__item {
    margin-bottom: 135px;
  }
}
@media (min-width: 480px) {
  .c-video-grid__item {
    padding-right: calc(1.25vw + 6px);
  }
}
@media (min-width: 800px) {
  .c-video-grid__item {
    padding-right: 16px;
  }
}
@media (min-width: 1440px) {
  .c-video-grid__item {
    padding-right: 16px;
  }
}
@media (min-width: 2560px) {
  .c-video-grid__item {
    padding-right: calc(0.1612903226vw + 11.8709677419px);
  }
}
@media (min-width: 3800px) {
  .c-video-grid__item {
    padding-right: 18px;
  }
}
@media (min-width: 480px) {
  .c-video-grid__item {
    padding-left: calc(1.25vw + 6px);
  }
}
@media (min-width: 800px) {
  .c-video-grid__item {
    padding-left: 16px;
  }
}
@media (min-width: 1440px) {
  .c-video-grid__item {
    padding-left: 16px;
  }
}
@media (min-width: 2560px) {
  .c-video-grid__item {
    padding-left: calc(0.1612903226vw + 11.8709677419px);
  }
}
@media (min-width: 3800px) {
  .c-video-grid__item {
    padding-left: 18px;
  }
}
@media (max-width: 800px) {
  .c-video-grid__item {
    width: 47.3684210526%;
  }
}
@media (max-width: 480px) {
  .c-video-grid__item {
    width: 100%;
  }
}
@media (hover: hover) and (pointer: fine) {
  .c-video-grid__item:hover .c-video-grid__link span {
    background-size: 0 1px;
  }

  .c-video-grid__item:hover .u-image-wrapper__inner {
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
  }
}
.c-video-grid__item .u-image-wrapper__inner {
  -webkit-transform: scale(1);
          transform: scale(1);
  -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-video-grid__item-image {
  padding-bottom: 12px;
}

@media (min-width: 480px) {
  .c-video-grid__item-image {
    padding-bottom: calc(1.25vw + 6px);
  }
}
@media (min-width: 800px) {
  .c-video-grid__item-image {
    padding-bottom: 16px;
  }
}
@media (min-width: 1440px) {
  .c-video-grid__item-image {
    padding-bottom: 16px;
  }
}
@media (min-width: 2560px) {
  .c-video-grid__item-image {
    padding-bottom: calc(0.1612903226vw + 11.8709677419px);
  }
}
@media (min-width: 3800px) {
  .c-video-grid__item-image {
    padding-bottom: 18px;
  }
}
.c-video-grid__link {
  padding-left: 40px;
  position: relative;
}

@media (min-width: 1440px) {
  .c-video-grid__link {
    padding-left: calc(0.4464285714vw + 33.5714285714px);
  }
}
@media (min-width: 2560px) {
  .c-video-grid__link {
    padding-left: 45px;
  }
}
.c-video-grid__link svg {
  font-size: 25px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media (min-width: 1440px) {
  .c-video-grid__link svg {
    font-size: calc(0.2790178571vw + 20.9821428571px);
  }
}
@media (min-width: 2560px) {
  .c-video-grid__link svg {
    font-size: 28.125px;
  }
}
.c-video-grid__link span {
  position: relative;
  display: inline;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#161617), to(#161617));
  background-image: linear-gradient(#161617, #161617);
  background-position: 0 90%;
  background-repeat: no-repeat;
  background-size: 100% 1px;
  -webkit-transition: background-size 0.3s ease-out;
  transition: background-size 0.3s ease-out;
}

.c-video-grid__link .u-icon--play {
  margin-right: 12px;
  width: 100%;
  /* Make the SVG width 100% of its container */
  height: auto;
  /* Maintain the SVG aspect ratio */
  max-width: 31px;
}

@media (min-width: 480px) {
  .c-video-grid__link .u-icon--play {
    margin-right: calc(1.25vw + 6px);
  }
}
@media (min-width: 800px) {
  .c-video-grid__link .u-icon--play {
    margin-right: 16px;
  }
}
@media (min-width: 1440px) {
  .c-video-grid__link .u-icon--play {
    margin-right: 16px;
  }
}
@media (min-width: 2560px) {
  .c-video-grid__link .u-icon--play {
    margin-right: calc(0.1612903226vw + 11.8709677419px);
  }
}
@media (min-width: 3800px) {
  .c-video-grid__link .u-icon--play {
    margin-right: 18px;
  }
}
@media (min-width: 1440px) {
  .c-video-grid__link .u-icon--play {
    max-width: calc(0.3459821429vw + 26.0178571429px);
  }
}
@media (min-width: 2560px) {
  .c-video-grid__link .u-icon--play {
    max-width: 34.875px;
  }
}
.c-video-grid.is-dark .c-video-grid__link span {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fafafa), to(#fafafa));
  background-image: linear-gradient(#fafafa, #fafafa);
}

.c-video-content-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 12;
  background-color: #161617;
  color: #fafafa;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  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;
  overflow: scroll;
}

.c-video-content-popup.is-opened {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.c-video-content-popup__close {
  display: block;
  cursor: pointer;
  position: absolute;
  background-color: transparent;
  border: none;
  top: 24px;
  right: 24px;
  width: auto;
  -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-transform-origin: center center;
          transform-origin: center center;
  height: 32px;
  width: 32px;
}

@media (min-width: 480px) {
  .c-video-content-popup__close {
    top: calc(5vw + 0px);
  }
}
@media (min-width: 800px) {
  .c-video-content-popup__close {
    top: 40px;
  }
}
@media (min-width: 1440px) {
  .c-video-content-popup__close {
    top: 40px;
  }
}
@media (min-width: 2560px) {
  .c-video-content-popup__close {
    top: calc(0.4032258065vw + 29.6774193548px);
  }
}
@media (min-width: 3800px) {
  .c-video-content-popup__close {
    top: 45px;
  }
}
@media (min-width: 480px) {
  .c-video-content-popup__close {
    right: calc(5vw + 0px);
  }
}
@media (min-width: 800px) {
  .c-video-content-popup__close {
    right: 40px;
  }
}
@media (min-width: 1440px) {
  .c-video-content-popup__close {
    right: 40px;
  }
}
@media (min-width: 2560px) {
  .c-video-content-popup__close {
    right: calc(0.4032258065vw + 29.6774193548px);
  }
}
@media (min-width: 3800px) {
  .c-video-content-popup__close {
    right: 45px;
  }
}
@media (min-width: 480px) {
  .c-video-content-popup__close {
    height: calc(7.5vw - 4px);
  }
}
@media (min-width: 800px) {
  .c-video-content-popup__close {
    height: 56px;
  }
}
@media (min-width: 1440px) {
  .c-video-content-popup__close {
    height: 56px;
  }
}
@media (min-width: 2560px) {
  .c-video-content-popup__close {
    height: calc(0.564516129vw + 41.5483870968px);
  }
}
@media (min-width: 3800px) {
  .c-video-content-popup__close {
    height: 63px;
  }
}
@media (min-width: 480px) {
  .c-video-content-popup__close {
    width: calc(7.5vw - 4px);
  }
}
@media (min-width: 800px) {
  .c-video-content-popup__close {
    width: 56px;
  }
}
@media (min-width: 1440px) {
  .c-video-content-popup__close {
    width: 56px;
  }
}
@media (min-width: 2560px) {
  .c-video-content-popup__close {
    width: calc(0.564516129vw + 41.5483870968px);
  }
}
@media (min-width: 3800px) {
  .c-video-content-popup__close {
    width: 63px;
  }
}
.c-video-content-popup__close:before, .c-video-content-popup__close:after {
  position: absolute;
  left: 50%;
  top: 0;
  content: " ";
  height: 32px;
  width: 2px;
  background-color: #fafafa;
}

@media (min-width: 480px) {
  .c-video-content-popup__close:before, .c-video-content-popup__close:after {
    height: calc(7.5vw - 4px);
  }
}
@media (min-width: 800px) {
  .c-video-content-popup__close:before, .c-video-content-popup__close:after {
    height: 56px;
  }
}
@media (min-width: 1440px) {
  .c-video-content-popup__close:before, .c-video-content-popup__close:after {
    height: 56px;
  }
}
@media (min-width: 2560px) {
  .c-video-content-popup__close:before, .c-video-content-popup__close:after {
    height: calc(0.564516129vw + 41.5483870968px);
  }
}
@media (min-width: 3800px) {
  .c-video-content-popup__close:before, .c-video-content-popup__close:after {
    height: 63px;
  }
}
.c-video-content-popup__close:before {
  -webkit-transform: rotate(45deg) translateX(-50%);
          transform: rotate(45deg) translateX(-50%);
}

.c-video-content-popup__close:after {
  -webkit-transform: rotate(-45deg) translateX(-50%);
          transform: rotate(-45deg) translateX(-50%);
  top: -1px;
}

@media (hover: hover) and (pointer: fine) {
  .c-video-content-popup__close:hover {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
}
.c-video-content-popup__inner {
  padding-top: 12px;
  padding-bottom: 32px;
  width: 87.5%;
  margin: auto;
}

@media (min-width: 480px) {
  .c-video-content-popup__inner {
    padding-top: calc(1.25vw + 6px);
  }
}
@media (min-width: 800px) {
  .c-video-content-popup__inner {
    padding-top: 16px;
  }
}
@media (min-width: 1440px) {
  .c-video-content-popup__inner {
    padding-top: 16px;
  }
}
@media (min-width: 2560px) {
  .c-video-content-popup__inner {
    padding-top: calc(0.1612903226vw + 11.8709677419px);
  }
}
@media (min-width: 3800px) {
  .c-video-content-popup__inner {
    padding-top: 18px;
  }
}
@media (min-width: 480px) {
  .c-video-content-popup__inner {
    padding-bottom: calc(7.5vw - 4px);
  }
}
@media (min-width: 800px) {
  .c-video-content-popup__inner {
    padding-bottom: 56px;
  }
}
@media (min-width: 1440px) {
  .c-video-content-popup__inner {
    padding-bottom: 56px;
  }
}
@media (min-width: 2560px) {
  .c-video-content-popup__inner {
    padding-bottom: calc(0.564516129vw + 41.5483870968px);
  }
}
@media (min-width: 3800px) {
  .c-video-content-popup__inner {
    padding-bottom: 63px;
  }
}
@media (max-width: 800px) {
  .c-video-content-popup__inner {
    width: 100%;
    padding-top: 64px;
  }
}
@media (max-width: 800px) and (min-width: 480px) {
  .c-video-content-popup__inner {
    padding-top: calc(10vw + 16px);
  }
}
@media (max-width: 800px) and (min-width: 800px) {
  .c-video-content-popup__inner {
    padding-top: 96px;
  }
}
@media (max-width: 800px) and (min-width: 1440px) {
  .c-video-content-popup__inner {
    padding-top: 96px;
  }
}
@media (max-width: 800px) and (min-width: 2560px) {
  .c-video-content-popup__inner {
    padding-top: calc(0.9677419355vw + 71.2258064516px);
  }
}
@media (max-width: 800px) and (min-width: 3800px) {
  .c-video-content-popup__inner {
    padding-top: 108px;
  }
}
.c-video-content-popup__video-wrapper {
  height: auto;
  position: relative;
  opacity: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.is-opened .c-video-content-popup__video-wrapper {
  opacity: 1;
  -webkit-transition: 0.4s 1s;
  transition: 0.4s 1s;
}

.c-video-content-popup__content-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

@media (max-width: 480px) {
  .c-video-content-popup__content-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.c-video-content-popup__content-item {
  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: 12px;
  padding-right: 24px;
  max-width: 255px;
}

@media (min-width: 480px) {
  .c-video-content-popup__content-item {
    padding-top: calc(1.25vw + 6px);
  }
}
@media (min-width: 800px) {
  .c-video-content-popup__content-item {
    padding-top: 16px;
  }
}
@media (min-width: 1440px) {
  .c-video-content-popup__content-item {
    padding-top: 16px;
  }
}
@media (min-width: 2560px) {
  .c-video-content-popup__content-item {
    padding-top: calc(0.1612903226vw + 11.8709677419px);
  }
}
@media (min-width: 3800px) {
  .c-video-content-popup__content-item {
    padding-top: 18px;
  }
}
@media (min-width: 480px) {
  .c-video-content-popup__content-item {
    padding-right: calc(5vw + 0px);
  }
}
@media (min-width: 800px) {
  .c-video-content-popup__content-item {
    padding-right: 40px;
  }
}
@media (min-width: 1440px) {
  .c-video-content-popup__content-item {
    padding-right: 40px;
  }
}
@media (min-width: 2560px) {
  .c-video-content-popup__content-item {
    padding-right: calc(0.4032258065vw + 29.6774193548px);
  }
}
@media (min-width: 3800px) {
  .c-video-content-popup__content-item {
    padding-right: 45px;
  }
}
@media (min-width: 1440px) {
  .c-video-content-popup__content-item {
    max-width: calc(2.8459821429vw + 214.0178571429px);
  }
}
@media (min-width: 2560px) {
  .c-video-content-popup__content-item {
    max-width: 286.875px;
  }
}
@media (max-width: 480px) {
  .c-video-content-popup__content-item {
    max-width: 100%;
  }
}
.c-video-content-popup__txt {
  color: rgba(250, 250, 250, 0.5);
  width: 100%;
}

.c-video-content-popup__txt--white {
  color: #fafafa;
}

.c-video-content-popup .o-container {
  width: 100%;
}

.c-full-video {
  padding-top: 64px;
  padding-bottom: 64px;
}

@media (min-width: 480px) {
  .c-full-video {
    padding-top: calc(11.25vw + 10px);
  }
}
@media (min-width: 800px) {
  .c-full-video {
    padding-top: 100px;
  }
}
@media (min-width: 1440px) {
  .c-full-video {
    padding-top: 100px;
  }
}
@media (min-width: 2560px) {
  .c-full-video {
    padding-top: calc(1.0080645161vw + 74.1935483871px);
  }
}
@media (min-width: 3800px) {
  .c-full-video {
    padding-top: 112.5px;
  }
}
@media (min-width: 480px) {
  .c-full-video {
    padding-bottom: calc(11.25vw + 10px);
  }
}
@media (min-width: 800px) {
  .c-full-video {
    padding-bottom: 100px;
  }
}
@media (min-width: 1440px) {
  .c-full-video {
    padding-bottom: 100px;
  }
}
@media (min-width: 2560px) {
  .c-full-video {
    padding-bottom: calc(1.0080645161vw + 74.1935483871px);
  }
}
@media (min-width: 3800px) {
  .c-full-video {
    padding-bottom: 112.5px;
  }
}
.c-full-video__inner {
  width: 100%;
  height: auto;
  position: relative;
  cursor: none;
}

@media (max-width: 480px) {
  .c-full-video__inner {
    cursor: pointer;
  }
}
.c-full-video__cursor {
  width: 64px;
  height: 64px;
  border-radius: 1000px;
  color: #fafafa;
  border-color: #fafafa;
  background-color: rgba(250, 250, 250, 0.2);
  border: 1px solid;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  pointer-events: none;
  -webkit-transform: translate(300px, 50px);
          transform: translate(300px, 50px);
  font-style: normal;
  mix-blend-mode: difference;
  opacity: 0;
}

@media (min-width: 480px) {
  .c-full-video__cursor {
    width: calc(10vw + 16px);
  }
}
@media (min-width: 800px) {
  .c-full-video__cursor {
    width: 96px;
  }
}
@media (min-width: 1440px) {
  .c-full-video__cursor {
    width: 96px;
  }
}
@media (min-width: 2560px) {
  .c-full-video__cursor {
    width: calc(0.9677419355vw + 71.2258064516px);
  }
}
@media (min-width: 3800px) {
  .c-full-video__cursor {
    width: 108px;
  }
}
@media (min-width: 480px) {
  .c-full-video__cursor {
    height: calc(10vw + 16px);
  }
}
@media (min-width: 800px) {
  .c-full-video__cursor {
    height: 96px;
  }
}
@media (min-width: 1440px) {
  .c-full-video__cursor {
    height: 96px;
  }
}
@media (min-width: 2560px) {
  .c-full-video__cursor {
    height: calc(0.9677419355vw + 71.2258064516px);
  }
}
@media (min-width: 3800px) {
  .c-full-video__cursor {
    height: 108px;
  }
}
@media (min-width: 2560px) {
  .c-full-video__cursor {
    border: 2px solid;
  }
}
@media (max-width: 480px) {
  .c-full-video__cursor {
    display: none;
  }
}
.c-full-video__cursor .u-icon {
  font-size: 95px;
}

@media (min-width: 1440px) {
  .c-full-video__cursor .u-icon {
    font-size: calc(1.0602678571vw + 79.7321428571px);
  }
}
@media (min-width: 2560px) {
  .c-full-video__cursor .u-icon {
    font-size: 106.875px;
  }
}
.c-full-video__cursor .u-icon--pause {
  display: none;
}

.c-full-video__name {
  padding-top: 4px;
}

@media (min-width: 480px) {
  .c-full-video__name {
    padding-top: 4px;
  }
}
@media (min-width: 800px) {
  .c-full-video__name {
    padding-top: 4px;
  }
}
@media (min-width: 1440px) {
  .c-full-video__name {
    padding-top: 4px;
  }
}
@media (min-width: 2560px) {
  .c-full-video__name {
    padding-top: calc(0.0403225806vw + 2.9677419355px);
  }
}
@media (min-width: 3800px) {
  .c-full-video__name {
    padding-top: 4.5px;
  }
}
.c-full-video .plyr__controls {
  opacity: 0;
  cursor: none !important;
}

.c-full-video .plyr__control {
  display: none !important;
}

@media (max-width: 480px) {
  .c-full-video .plyr__control {
    display: block !important;
  }
}
.c-full-video .plyr__progress {
  cursor: none !important;
}

.c-full-video .plyr__progress input {
  cursor: none !important;
}

@media (max-width: 480px) {
  .c-full-video .plyr__progress {
    cursor: pointer !important;
  }

  .c-full-video .plyr__progress input {
    cursor: pointer !important;
  }
}
.c-full-video .plyr iframe {
  pointer-events: none;
}

.c-full-video .plyr--playing .plyr__controls {
  opacity: 1;
}

.c-full-video .plyr--playing .u-icon--pause {
  display: block;
}

.c-full-video .plyr--playing .u-icon--play {
  display: none;
}

.c-article-modal {
  width: 100%;
  height: 100%;
  background-color: #161617;
  overflow-y: scroll;
  padding-top: 24px;
  padding-bottom: 64px;
}

@media (min-width: 480px) {
  .c-article-modal {
    padding-top: calc(5vw + 0px);
  }
}
@media (min-width: 800px) {
  .c-article-modal {
    padding-top: 40px;
  }
}
@media (min-width: 1440px) {
  .c-article-modal {
    padding-top: 40px;
  }
}
@media (min-width: 2560px) {
  .c-article-modal {
    padding-top: calc(0.4032258065vw + 29.6774193548px);
  }
}
@media (min-width: 3800px) {
  .c-article-modal {
    padding-top: 45px;
  }
}
@media (min-width: 480px) {
  .c-article-modal {
    padding-bottom: calc(11.25vw + 10px);
  }
}
@media (min-width: 800px) {
  .c-article-modal {
    padding-bottom: 100px;
  }
}
@media (min-width: 1440px) {
  .c-article-modal {
    padding-bottom: 100px;
  }
}
@media (min-width: 2560px) {
  .c-article-modal {
    padding-bottom: calc(1.0080645161vw + 74.1935483871px);
  }
}
@media (min-width: 3800px) {
  .c-article-modal {
    padding-bottom: 112.5px;
  }
}
.c-article-modal__close {
  display: block;
  cursor: pointer;
  position: relative;
  background-color: transparent;
  border: none;
  margin-right: 4.5454545455%;
  float: right;
  width: auto;
  -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-transform-origin: center center;
          transform-origin: center center;
  height: 32px;
  width: 32px;
}

@media (min-width: 480px) {
  .c-article-modal__close {
    height: calc(7.5vw - 4px);
  }
}
@media (min-width: 800px) {
  .c-article-modal__close {
    height: 56px;
  }
}
@media (min-width: 1440px) {
  .c-article-modal__close {
    height: 56px;
  }
}
@media (min-width: 2560px) {
  .c-article-modal__close {
    height: calc(0.564516129vw + 41.5483870968px);
  }
}
@media (min-width: 3800px) {
  .c-article-modal__close {
    height: 63px;
  }
}
@media (min-width: 480px) {
  .c-article-modal__close {
    width: calc(7.5vw - 4px);
  }
}
@media (min-width: 800px) {
  .c-article-modal__close {
    width: 56px;
  }
}
@media (min-width: 1440px) {
  .c-article-modal__close {
    width: 56px;
  }
}
@media (min-width: 2560px) {
  .c-article-modal__close {
    width: calc(0.564516129vw + 41.5483870968px);
  }
}
@media (min-width: 3800px) {
  .c-article-modal__close {
    width: 63px;
  }
}
.c-article-modal__close:before, .c-article-modal__close:after {
  position: absolute;
  left: 50%;
  top: 0;
  content: " ";
  height: 32px;
  width: 2px;
  background-color: #fafafa;
}

@media (min-width: 480px) {
  .c-article-modal__close:before, .c-article-modal__close:after {
    height: calc(7.5vw - 4px);
  }
}
@media (min-width: 800px) {
  .c-article-modal__close:before, .c-article-modal__close:after {
    height: 56px;
  }
}
@media (min-width: 1440px) {
  .c-article-modal__close:before, .c-article-modal__close:after {
    height: 56px;
  }
}
@media (min-width: 2560px) {
  .c-article-modal__close:before, .c-article-modal__close:after {
    height: calc(0.564516129vw + 41.5483870968px);
  }
}
@media (min-width: 3800px) {
  .c-article-modal__close:before, .c-article-modal__close:after {
    height: 63px;
  }
}
.c-article-modal__close:before {
  -webkit-transform: rotate(45deg) translateX(-50%);
          transform: rotate(45deg) translateX(-50%);
}

.c-article-modal__close:after {
  -webkit-transform: rotate(-45deg) translateX(-50%);
          transform: rotate(-45deg) translateX(-50%);
}

@media (hover: hover) and (pointer: fine) {
  .c-article-modal__close:hover {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
}
.c-article-modal__header-wrapper {
  width: 86.3636363636%;
  border-bottom: 1px solid rgba(250, 250, 250, 0.2);
  padding-bottom: 24px;
}

@media (min-width: 480px) {
  .c-article-modal__header-wrapper {
    padding-bottom: calc(5vw + 0px);
  }
}
@media (min-width: 800px) {
  .c-article-modal__header-wrapper {
    padding-bottom: 40px;
  }
}
@media (min-width: 1440px) {
  .c-article-modal__header-wrapper {
    padding-bottom: 40px;
  }
}
@media (min-width: 2560px) {
  .c-article-modal__header-wrapper {
    padding-bottom: calc(0.4032258065vw + 29.6774193548px);
  }
}
@media (min-width: 3800px) {
  .c-article-modal__header-wrapper {
    padding-bottom: 45px;
  }
}
@media (max-width: 800px) {
  .c-article-modal__header-wrapper {
    width: 100%;
    padding-top: 64px;
  }
}
@media (max-width: 800px) and (min-width: 480px) {
  .c-article-modal__header-wrapper {
    padding-top: calc(10vw + 16px);
  }
}
@media (max-width: 800px) and (min-width: 800px) {
  .c-article-modal__header-wrapper {
    padding-top: 96px;
  }
}
@media (max-width: 800px) and (min-width: 1440px) {
  .c-article-modal__header-wrapper {
    padding-top: 96px;
  }
}
@media (max-width: 800px) and (min-width: 2560px) {
  .c-article-modal__header-wrapper {
    padding-top: calc(0.9677419355vw + 71.2258064516px);
  }
}
@media (max-width: 800px) and (min-width: 3800px) {
  .c-article-modal__header-wrapper {
    padding-top: 108px;
  }
}
.c-article-modal__info-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

@media (max-width: 480px) {
  .c-article-modal__info-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.c-article-modal__info-item {
  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: 12px;
  padding-right: 24px;
  max-width: 255px;
}

@media (min-width: 480px) {
  .c-article-modal__info-item {
    padding-top: calc(1.25vw + 6px);
  }
}
@media (min-width: 800px) {
  .c-article-modal__info-item {
    padding-top: 16px;
  }
}
@media (min-width: 1440px) {
  .c-article-modal__info-item {
    padding-top: 16px;
  }
}
@media (min-width: 2560px) {
  .c-article-modal__info-item {
    padding-top: calc(0.1612903226vw + 11.8709677419px);
  }
}
@media (min-width: 3800px) {
  .c-article-modal__info-item {
    padding-top: 18px;
  }
}
@media (min-width: 480px) {
  .c-article-modal__info-item {
    padding-right: calc(5vw + 0px);
  }
}
@media (min-width: 800px) {
  .c-article-modal__info-item {
    padding-right: 40px;
  }
}
@media (min-width: 1440px) {
  .c-article-modal__info-item {
    padding-right: 40px;
  }
}
@media (min-width: 2560px) {
  .c-article-modal__info-item {
    padding-right: calc(0.4032258065vw + 29.6774193548px);
  }
}
@media (min-width: 3800px) {
  .c-article-modal__info-item {
    padding-right: 45px;
  }
}
@media (min-width: 1440px) {
  .c-article-modal__info-item {
    max-width: calc(2.8459821429vw + 214.0178571429px);
  }
}
@media (min-width: 2560px) {
  .c-article-modal__info-item {
    max-width: 286.875px;
  }
}
@media (max-width: 480px) {
  .c-article-modal__info-item {
    max-width: 100%;
  }
}
.c-article-modal__txt {
  color: rgba(250, 250, 250, 0.5);
  width: 100%;
}

.c-article-modal__txt--white {
  color: #fafafa;
}

.c-article-modal__content-wrap {
  color: #fafafa;
  padding-top: 40px;
}

@media (min-width: 480px) {
  .c-article-modal__content-wrap {
    padding-top: calc(7.5vw + 4px);
  }
}
@media (min-width: 800px) {
  .c-article-modal__content-wrap {
    padding-top: 64px;
  }
}
@media (min-width: 1440px) {
  .c-article-modal__content-wrap {
    padding-top: 64px;
  }
}
@media (min-width: 2560px) {
  .c-article-modal__content-wrap {
    padding-top: calc(0.6451612903vw + 47.4838709677px);
  }
}
@media (min-width: 3800px) {
  .c-article-modal__content-wrap {
    padding-top: 72px;
  }
}
.c-article-modal__tag-wrap {
  padding-top: 56px;
  padding-left: 25%;
  padding-right: 25%;
}

@media (min-width: 480px) {
  .c-article-modal__tag-wrap {
    padding-top: calc(7.5vw + 20px);
  }
}
@media (min-width: 800px) {
  .c-article-modal__tag-wrap {
    padding-top: 80px;
  }
}
@media (min-width: 1440px) {
  .c-article-modal__tag-wrap {
    padding-top: 80px;
  }
}
@media (min-width: 2560px) {
  .c-article-modal__tag-wrap {
    padding-top: calc(0.8064516129vw + 59.3548387097px);
  }
}
@media (min-width: 3800px) {
  .c-article-modal__tag-wrap {
    padding-top: 90px;
  }
}
@media (max-width: 1140px) {
  .c-article-modal__tag-wrap {
    padding-left: 12.5%;
  }
}
@media (max-width: 800px) {
  .c-article-modal__tag-wrap {
    padding-left: 4.1666666667%;
    padding-right: 16.6666666667%;
  }
}
@media (max-width: 480px) {
  .c-article-modal__tag-wrap {
    padding-left: 0;
    padding-right: 0;
  }
}
.c-article-modal__title {
  color: rgba(250, 250, 250, 0.5);
  padding-bottom: 12px;
}

@media (min-width: 480px) {
  .c-article-modal__title {
    padding-bottom: calc(1.25vw + 6px);
  }
}
@media (min-width: 800px) {
  .c-article-modal__title {
    padding-bottom: 16px;
  }
}
@media (min-width: 1440px) {
  .c-article-modal__title {
    padding-bottom: 16px;
  }
}
@media (min-width: 2560px) {
  .c-article-modal__title {
    padding-bottom: calc(0.1612903226vw + 11.8709677419px);
  }
}
@media (min-width: 3800px) {
  .c-article-modal__title {
    padding-bottom: 18px;
  }
}
.c-article-modal__tag-list .c-button {
  -webkit-transition: color 0.25s;
  transition: color 0.25s;
  background-color: #fafafa;
}

.c-article-modal__tag-list .c-button:before {
  border: 1px solid #fafafa;
}

@media (hover: hover) and (pointer: fine) {
  .c-article-modal__tag-list .c-button:hover {
    color: #161617;
  }
}
.c-gallery-modal {
  width: 100%;
  height: 100%;
  background-color: #161617;
  overflow-y: scroll;
  position: relative;
  padding-top: 24px;
  padding-bottom: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (min-width: 480px) {
  .c-gallery-modal {
    padding-top: calc(5vw + 0px);
  }
}
@media (min-width: 800px) {
  .c-gallery-modal {
    padding-top: 40px;
  }
}
@media (min-width: 1440px) {
  .c-gallery-modal {
    padding-top: 40px;
  }
}
@media (min-width: 2560px) {
  .c-gallery-modal {
    padding-top: calc(0.4032258065vw + 29.6774193548px);
  }
}
@media (min-width: 3800px) {
  .c-gallery-modal {
    padding-top: 45px;
  }
}
@media (min-width: 480px) {
  .c-gallery-modal {
    padding-bottom: calc(5vw + 0px);
  }
}
@media (min-width: 800px) {
  .c-gallery-modal {
    padding-bottom: 40px;
  }
}
@media (min-width: 1440px) {
  .c-gallery-modal {
    padding-bottom: 40px;
  }
}
@media (min-width: 2560px) {
  .c-gallery-modal {
    padding-bottom: calc(0.4032258065vw + 29.6774193548px);
  }
}
@media (min-width: 3800px) {
  .c-gallery-modal {
    padding-bottom: 45px;
  }
}
@media (max-width: 480px) {
  .c-gallery-modal {
    padding-top: 56px;
  }
}
@media (max-width: 480px) and (min-width: 480px) {
  .c-gallery-modal {
    padding-top: calc(7.5vw + 20px);
  }
}
@media (max-width: 480px) and (min-width: 800px) {
  .c-gallery-modal {
    padding-top: 80px;
  }
}
@media (max-width: 480px) and (min-width: 1440px) {
  .c-gallery-modal {
    padding-top: 80px;
  }
}
@media (max-width: 480px) and (min-width: 2560px) {
  .c-gallery-modal {
    padding-top: calc(0.8064516129vw + 59.3548387097px);
  }
}
@media (max-width: 480px) and (min-width: 3800px) {
  .c-gallery-modal {
    padding-top: 90px;
  }
}
.c-gallery-modal__close {
  display: block;
  position: absolute;
  background-color: transparent;
  border: none;
  top: 24px;
  right: 24px;
  width: auto;
  -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-transform-origin: center center;
          transform-origin: center center;
  height: 32px;
  width: 32px;
  z-index: 10;
}

@media (min-width: 480px) {
  .c-gallery-modal__close {
    top: calc(5vw + 0px);
  }
}
@media (min-width: 800px) {
  .c-gallery-modal__close {
    top: 40px;
  }
}
@media (min-width: 1440px) {
  .c-gallery-modal__close {
    top: 40px;
  }
}
@media (min-width: 2560px) {
  .c-gallery-modal__close {
    top: calc(0.4032258065vw + 29.6774193548px);
  }
}
@media (min-width: 3800px) {
  .c-gallery-modal__close {
    top: 45px;
  }
}
@media (min-width: 480px) {
  .c-gallery-modal__close {
    right: calc(5vw + 0px);
  }
}
@media (min-width: 800px) {
  .c-gallery-modal__close {
    right: 40px;
  }
}
@media (min-width: 1440px) {
  .c-gallery-modal__close {
    right: 40px;
  }
}
@media (min-width: 2560px) {
  .c-gallery-modal__close {
    right: calc(0.4032258065vw + 29.6774193548px);
  }
}
@media (min-width: 3800px) {
  .c-gallery-modal__close {
    right: 45px;
  }
}
@media (min-width: 480px) {
  .c-gallery-modal__close {
    height: calc(7.5vw - 4px);
  }
}
@media (min-width: 800px) {
  .c-gallery-modal__close {
    height: 56px;
  }
}
@media (min-width: 1440px) {
  .c-gallery-modal__close {
    height: 56px;
  }
}
@media (min-width: 2560px) {
  .c-gallery-modal__close {
    height: calc(0.564516129vw + 41.5483870968px);
  }
}
@media (min-width: 3800px) {
  .c-gallery-modal__close {
    height: 63px;
  }
}
@media (min-width: 480px) {
  .c-gallery-modal__close {
    width: calc(7.5vw - 4px);
  }
}
@media (min-width: 800px) {
  .c-gallery-modal__close {
    width: 56px;
  }
}
@media (min-width: 1440px) {
  .c-gallery-modal__close {
    width: 56px;
  }
}
@media (min-width: 2560px) {
  .c-gallery-modal__close {
    width: calc(0.564516129vw + 41.5483870968px);
  }
}
@media (min-width: 3800px) {
  .c-gallery-modal__close {
    width: 63px;
  }
}
.c-gallery-modal__close:before, .c-gallery-modal__close:after {
  position: absolute;
  left: 50%;
  top: 0;
  content: " ";
  height: 32px;
  width: 2px;
  background-color: #fafafa;
}

@media (min-width: 480px) {
  .c-gallery-modal__close:before, .c-gallery-modal__close:after {
    height: calc(7.5vw - 4px);
  }
}
@media (min-width: 800px) {
  .c-gallery-modal__close:before, .c-gallery-modal__close:after {
    height: 56px;
  }
}
@media (min-width: 1440px) {
  .c-gallery-modal__close:before, .c-gallery-modal__close:after {
    height: 56px;
  }
}
@media (min-width: 2560px) {
  .c-gallery-modal__close:before, .c-gallery-modal__close:after {
    height: calc(0.564516129vw + 41.5483870968px);
  }
}
@media (min-width: 3800px) {
  .c-gallery-modal__close:before, .c-gallery-modal__close:after {
    height: 63px;
  }
}
.c-gallery-modal__close:before {
  -webkit-transform: rotate(45deg) translateX(-50%);
          transform: rotate(45deg) translateX(-50%);
}

.c-gallery-modal__close:after {
  -webkit-transform: rotate(-45deg) translateX(-50%);
          transform: rotate(-45deg) translateX(-50%);
}

@media (hover: hover) and (pointer: fine) {
  .c-gallery-modal__close:hover {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
}
@media (max-width: 480px) {
  .c-gallery-modal__close {
    right: 4px;
    top: 4px;
  }
}
@media (max-width: 480px) and (min-width: 480px) {
  .c-gallery-modal__close {
    right: 4px;
  }
}
@media (max-width: 480px) and (min-width: 800px) {
  .c-gallery-modal__close {
    right: 4px;
  }
}
@media (max-width: 480px) and (min-width: 1440px) {
  .c-gallery-modal__close {
    right: 4px;
  }
}
@media (max-width: 480px) and (min-width: 2560px) {
  .c-gallery-modal__close {
    right: calc(0.0403225806vw + 2.9677419355px);
  }
}
@media (max-width: 480px) and (min-width: 3800px) {
  .c-gallery-modal__close {
    right: 4.5px;
  }
}
@media (max-width: 480px) and (min-width: 480px) {
  .c-gallery-modal__close {
    top: 4px;
  }
}
@media (max-width: 480px) and (min-width: 800px) {
  .c-gallery-modal__close {
    top: 4px;
  }
}
@media (max-width: 480px) and (min-width: 1440px) {
  .c-gallery-modal__close {
    top: 4px;
  }
}
@media (max-width: 480px) and (min-width: 2560px) {
  .c-gallery-modal__close {
    top: calc(0.0403225806vw + 2.9677419355px);
  }
}
@media (max-width: 480px) and (min-width: 3800px) {
  .c-gallery-modal__close {
    top: 4.5px;
  }
}
.c-gallery-modal__slider {
  cursor: none;
}

.c-gallery-modal__slider.swiper-container {
  overflow: visible;
}

.c-gallery-modal__cursor {
  width: 64px;
  height: 64px;
  border-radius: 1000px;
  color: #fafafa;
  border-color: #fafafa;
  background-color: rgba(250, 250, 250, 0.2);
  border: 1px solid;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  -webkit-transform: translate(300px, 50px);
          transform: translate(300px, 50px);
  font-style: normal;
  mix-blend-mode: difference;
}

@media (min-width: 480px) {
  .c-gallery-modal__cursor {
    width: calc(10vw + 16px);
  }
}
@media (min-width: 800px) {
  .c-gallery-modal__cursor {
    width: 96px;
  }
}
@media (min-width: 1440px) {
  .c-gallery-modal__cursor {
    width: 96px;
  }
}
@media (min-width: 2560px) {
  .c-gallery-modal__cursor {
    width: calc(0.9677419355vw + 71.2258064516px);
  }
}
@media (min-width: 3800px) {
  .c-gallery-modal__cursor {
    width: 108px;
  }
}
@media (min-width: 480px) {
  .c-gallery-modal__cursor {
    height: calc(10vw + 16px);
  }
}
@media (min-width: 800px) {
  .c-gallery-modal__cursor {
    height: 96px;
  }
}
@media (min-width: 1440px) {
  .c-gallery-modal__cursor {
    height: 96px;
  }
}
@media (min-width: 2560px) {
  .c-gallery-modal__cursor {
    height: calc(0.9677419355vw + 71.2258064516px);
  }
}
@media (min-width: 3800px) {
  .c-gallery-modal__cursor {
    height: 108px;
  }
}
@media (min-width: 2560px) {
  .c-gallery-modal__cursor {
    border: 2px solid;
  }
}
.c-gallery-modal__cursor span {
  display: inline-block;
  position: relative;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
}

.c-gallery-modal__cursor .u-icon {
  font-size: 7px;
}

@media (min-width: 1440px) {
  .c-gallery-modal__cursor .u-icon {
    font-size: calc(0.078125vw + 5.875px);
  }
}
@media (min-width: 2560px) {
  .c-gallery-modal__cursor .u-icon {
    font-size: 7.875px;
  }
}
.c-gallery-modal__cursor .u-icon--chevron-left {
  margin-right: 8px;
}

@media (min-width: 480px) {
  .c-gallery-modal__cursor .u-icon--chevron-left {
    margin-right: calc(1.25vw + 2px);
  }
}
@media (min-width: 800px) {
  .c-gallery-modal__cursor .u-icon--chevron-left {
    margin-right: 12px;
  }
}
@media (min-width: 1440px) {
  .c-gallery-modal__cursor .u-icon--chevron-left {
    margin-right: 12px;
  }
}
@media (min-width: 2560px) {
  .c-gallery-modal__cursor .u-icon--chevron-left {
    margin-right: calc(0.1209677419vw + 8.9032258065px);
  }
}
@media (min-width: 3800px) {
  .c-gallery-modal__cursor .u-icon--chevron-left {
    margin-right: 13.5px;
  }
}
.c-gallery-modal__cursor .u-icon--chevron-right {
  margin-left: 8px;
}

@media (min-width: 480px) {
  .c-gallery-modal__cursor .u-icon--chevron-right {
    margin-left: calc(1.25vw + 2px);
  }
}
@media (min-width: 800px) {
  .c-gallery-modal__cursor .u-icon--chevron-right {
    margin-left: 12px;
  }
}
@media (min-width: 1440px) {
  .c-gallery-modal__cursor .u-icon--chevron-right {
    margin-left: 12px;
  }
}
@media (min-width: 2560px) {
  .c-gallery-modal__cursor .u-icon--chevron-right {
    margin-left: calc(0.1209677419vw + 8.9032258065px);
  }
}
@media (min-width: 3800px) {
  .c-gallery-modal__cursor .u-icon--chevron-right {
    margin-left: 13.5px;
  }
}
.c-gallery-modal__cursor.is-visible span {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.c-gallery-modal__info-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

@media (max-width: 480px) {
  .c-gallery-modal__info-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.c-gallery-modal__info-item {
  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: 12px;
  padding-right: 24px;
  max-width: 255px;
}

@media (min-width: 480px) {
  .c-gallery-modal__info-item {
    padding-top: calc(1.25vw + 6px);
  }
}
@media (min-width: 800px) {
  .c-gallery-modal__info-item {
    padding-top: 16px;
  }
}
@media (min-width: 1440px) {
  .c-gallery-modal__info-item {
    padding-top: 16px;
  }
}
@media (min-width: 2560px) {
  .c-gallery-modal__info-item {
    padding-top: calc(0.1612903226vw + 11.8709677419px);
  }
}
@media (min-width: 3800px) {
  .c-gallery-modal__info-item {
    padding-top: 18px;
  }
}
@media (min-width: 480px) {
  .c-gallery-modal__info-item {
    padding-right: calc(5vw + 0px);
  }
}
@media (min-width: 800px) {
  .c-gallery-modal__info-item {
    padding-right: 40px;
  }
}
@media (min-width: 1440px) {
  .c-gallery-modal__info-item {
    padding-right: 40px;
  }
}
@media (min-width: 2560px) {
  .c-gallery-modal__info-item {
    padding-right: calc(0.4032258065vw + 29.6774193548px);
  }
}
@media (min-width: 3800px) {
  .c-gallery-modal__info-item {
    padding-right: 45px;
  }
}
@media (min-width: 1440px) {
  .c-gallery-modal__info-item {
    max-width: calc(2.8459821429vw + 214.0178571429px);
  }
}
@media (min-width: 2560px) {
  .c-gallery-modal__info-item {
    max-width: 286.875px;
  }
}
@media (max-width: 480px) {
  .c-gallery-modal__info-item {
    max-width: 100%;
  }
}
.c-gallery-modal__txt {
  color: rgba(250, 250, 250, 0.5);
  width: 100%;
}

.c-gallery-modal__txt--white {
  color: #fafafa;
}

.c-gallery-modal__content-wrapper {
  color: #fafafa;
}

.c-gallery-modal .swiper-slide {
  background-color: #161617;
}

.c-gallery-modal .swiper-slide:last-of-type .c-gallery-modal__slide {
  padding-right: 0;
}

.c-work-post-grid__no-items {
  padding-top: 56px;
}

@media (min-width: 480px) {
  .c-work-post-grid__no-items {
    padding-top: calc(7.5vw + 20px);
  }
}
@media (min-width: 800px) {
  .c-work-post-grid__no-items {
    padding-top: 80px;
  }
}
@media (min-width: 1440px) {
  .c-work-post-grid__no-items {
    padding-top: 80px;
  }
}
@media (min-width: 2560px) {
  .c-work-post-grid__no-items {
    padding-top: calc(0.8064516129vw + 59.3548387097px);
  }
}
@media (min-width: 3800px) {
  .c-work-post-grid__no-items {
    padding-top: 90px;
  }
}
.c-work-post-grid__no-items.is-hidden {
  display: none;
}

.c-work-post-grid__inner {
  border-bottom: 1px solid rgba(250, 250, 250, 0.2);
  padding-bottom: 56px;
}

@media (min-width: 480px) {
  .c-work-post-grid__inner {
    padding-bottom: calc(7.5vw + 20px);
  }
}
@media (min-width: 800px) {
  .c-work-post-grid__inner {
    padding-bottom: 80px;
  }
}
@media (min-width: 1440px) {
  .c-work-post-grid__inner {
    padding-bottom: 80px;
  }
}
@media (min-width: 2560px) {
  .c-work-post-grid__inner {
    padding-bottom: calc(0.8064516129vw + 59.3548387097px);
  }
}
@media (min-width: 3800px) {
  .c-work-post-grid__inner {
    padding-bottom: 90px;
  }
}
.c-work-post-grid__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: -12px;
  margin-left: -12px;
}

@media (min-width: 480px) {
  .c-work-post-grid__wrapper {
    margin-right: calc(-1.25vw - 6px);
  }
}
@media (min-width: 800px) {
  .c-work-post-grid__wrapper {
    margin-right: -16px;
  }
}
@media (min-width: 1440px) {
  .c-work-post-grid__wrapper {
    margin-right: -16px;
  }
}
@media (min-width: 2560px) {
  .c-work-post-grid__wrapper {
    margin-right: calc(-0.1612903226vw - 11.8709677419px);
  }
}
@media (min-width: 3800px) {
  .c-work-post-grid__wrapper {
    margin-right: -18px;
  }
}
@media (min-width: 480px) {
  .c-work-post-grid__wrapper {
    margin-left: calc(-1.25vw - 6px);
  }
}
@media (min-width: 800px) {
  .c-work-post-grid__wrapper {
    margin-left: -16px;
  }
}
@media (min-width: 1440px) {
  .c-work-post-grid__wrapper {
    margin-left: -16px;
  }
}
@media (min-width: 2560px) {
  .c-work-post-grid__wrapper {
    margin-left: calc(-0.1612903226vw - 11.8709677419px);
  }
}
@media (min-width: 3800px) {
  .c-work-post-grid__wrapper {
    margin-left: -18px;
  }
}
.c-work-post-card {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 25%;
  width: 100%;
  padding-right: 12px;
  padding-left: 12px;
  padding-top: 56px;
}

@media (min-width: 480px) {
  .c-work-post-card {
    padding-right: calc(1.25vw + 6px);
  }
}
@media (min-width: 800px) {
  .c-work-post-card {
    padding-right: 16px;
  }
}
@media (min-width: 1440px) {
  .c-work-post-card {
    padding-right: 16px;
  }
}
@media (min-width: 2560px) {
  .c-work-post-card {
    padding-right: calc(0.1612903226vw + 11.8709677419px);
  }
}
@media (min-width: 3800px) {
  .c-work-post-card {
    padding-right: 18px;
  }
}
@media (min-width: 480px) {
  .c-work-post-card {
    padding-left: calc(1.25vw + 6px);
  }
}
@media (min-width: 800px) {
  .c-work-post-card {
    padding-left: 16px;
  }
}
@media (min-width: 1440px) {
  .c-work-post-card {
    padding-left: 16px;
  }
}
@media (min-width: 2560px) {
  .c-work-post-card {
    padding-left: calc(0.1612903226vw + 11.8709677419px);
  }
}
@media (min-width: 3800px) {
  .c-work-post-card {
    padding-left: 18px;
  }
}
@media (min-width: 480px) {
  .c-work-post-card {
    padding-top: calc(7.5vw + 20px);
  }
}
@media (min-width: 800px) {
  .c-work-post-card {
    padding-top: 80px;
  }
}
@media (min-width: 1440px) {
  .c-work-post-card {
    padding-top: 80px;
  }
}
@media (min-width: 2560px) {
  .c-work-post-card {
    padding-top: calc(0.8064516129vw + 59.3548387097px);
  }
}
@media (min-width: 3800px) {
  .c-work-post-card {
    padding-top: 90px;
  }
}
@media (max-width: 800px) {
  .c-work-post-card {
    max-width: 50%;
  }
}
@media (max-width: 480px) {
  .c-work-post-card {
    max-width: 100%;
  }
}
.c-work-post-card a {
  width: 100%;
}

@media (hover: hover) and (pointer: fine) {
  .c-work-post-card a:hover .c-work-post-card__image .u-image-wrapper {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }

  .c-work-post-card a:hover .c-work-post-card__image .c-button span {
    -webkit-animation-name: textAnim;
            animation-name: textAnim;
    -webkit-animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
            animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
    -webkit-animation-duration: 0.5s;
            animation-duration: 0.5s;
  }

  .c-work-post-card a:hover .c-work-post-card__image .c-button:after {
    opacity: 1;
    -webkit-animation-play-state: running;
            animation-play-state: running;
  }

  .c-work-post-card a:hover .c-work-post-card__image .c-button:before {
    opacity: 0;
  }

  .c-work-post-card a:hover .c-work-post-card__description {
    opacity: 0.5;
  }
}
.c-work-post-card__description {
  padding-top: 12px;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

@media (min-width: 480px) {
  .c-work-post-card__description {
    padding-top: calc(1.25vw + 6px);
  }
}
@media (min-width: 800px) {
  .c-work-post-card__description {
    padding-top: 16px;
  }
}
@media (min-width: 1440px) {
  .c-work-post-card__description {
    padding-top: 16px;
  }
}
@media (min-width: 2560px) {
  .c-work-post-card__description {
    padding-top: calc(0.1612903226vw + 11.8709677419px);
  }
}
@media (min-width: 3800px) {
  .c-work-post-card__description {
    padding-top: 18px;
  }
}
.c-work-post-card__image {
  position: relative;
  overflow: hidden;
}

.c-work-post-card__image .u-image-wrapper {
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
  -webkit-transform-origin: top right;
          transform-origin: top right;
}

.c-work-post-card__image .c-button {
  background-color: #fafafa;
  color: #161617;
  position: absolute;
  bottom: 12px;
  left: 12px;
}

@media (min-width: 480px) {
  .c-work-post-card__image .c-button {
    bottom: calc(1.25vw + 6px);
  }
}
@media (min-width: 800px) {
  .c-work-post-card__image .c-button {
    bottom: 16px;
  }
}
@media (min-width: 1440px) {
  .c-work-post-card__image .c-button {
    bottom: 16px;
  }
}
@media (min-width: 2560px) {
  .c-work-post-card__image .c-button {
    bottom: calc(0.1612903226vw + 11.8709677419px);
  }
}
@media (min-width: 3800px) {
  .c-work-post-card__image .c-button {
    bottom: 18px;
  }
}
@media (min-width: 480px) {
  .c-work-post-card__image .c-button {
    left: calc(1.25vw + 6px);
  }
}
@media (min-width: 800px) {
  .c-work-post-card__image .c-button {
    left: 16px;
  }
}
@media (min-width: 1440px) {
  .c-work-post-card__image .c-button {
    left: 16px;
  }
}
@media (min-width: 2560px) {
  .c-work-post-card__image .c-button {
    left: calc(0.1612903226vw + 11.8709677419px);
  }
}
@media (min-width: 3800px) {
  .c-work-post-card__image .c-button {
    left: 18px;
  }
}
.c-work-post-card__image .c-button:before {
  border: none;
}

.c-work-post-card__image .c-button span {
  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;
}

.c-work-post-card__image .c-button span i {
  margin-right: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 480px) {
  .c-work-post-card__image .c-button span i {
    margin-right: 4px;
  }
}
@media (min-width: 800px) {
  .c-work-post-card__image .c-button span i {
    margin-right: 4px;
  }
}
@media (min-width: 1440px) {
  .c-work-post-card__image .c-button span i {
    margin-right: 4px;
  }
}
@media (min-width: 2560px) {
  .c-work-post-card__image .c-button span i {
    margin-right: calc(0.0403225806vw + 2.9677419355px);
  }
}
@media (min-width: 3800px) {
  .c-work-post-card__image .c-button span i {
    margin-right: 4.5px;
  }
}
.c-work-post-card__image .c-button span i .u-icon--article {
  font-size: 9px;
}

@media (min-width: 1440px) {
  .c-work-post-card__image .c-button span i .u-icon--article {
    font-size: calc(0.1004464286vw + 7.5535714286px);
  }
}
@media (min-width: 2560px) {
  .c-work-post-card__image .c-button span i .u-icon--article {
    font-size: 10.125px;
  }
}
@media (max-width: 1140px) {
  .c-work-post-card {
    width: 50%;
  }
}
@media (max-width: 600px) {
  .c-work-post-card {
    width: 100%;
  }
}
.c-about-slider__title {
  padding-bottom: 64px;
}

@media (min-width: 480px) {
  .c-about-slider__title {
    padding-bottom: calc(17.5vw - 20px);
  }
}
@media (min-width: 800px) {
  .c-about-slider__title {
    padding-bottom: 120px;
  }
}
@media (min-width: 1440px) {
  .c-about-slider__title {
    padding-bottom: 120px;
  }
}
@media (min-width: 2560px) {
  .c-about-slider__title {
    padding-bottom: calc(1.2096774194vw + 89.0322580645px);
  }
}
@media (min-width: 3800px) {
  .c-about-slider__title {
    padding-bottom: 135px;
  }
}
.c-about-slider__title span {
  display: block;
}

.c-about-slider__slider.swiper-container {
  overflow: visible;
  cursor: none;
}

.c-about-slider__cursor {
  width: 64px;
  height: 64px;
  border-radius: 1000px;
  color: #fafafa;
  border-color: #fafafa;
  background-color: rgba(250, 250, 250, 0.2);
  border: 1px solid;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  -webkit-transform: translate(300px, 50px);
          transform: translate(300px, 50px);
  font-style: normal;
  mix-blend-mode: difference;
}

@media (min-width: 480px) {
  .c-about-slider__cursor {
    width: calc(10vw + 16px);
  }
}
@media (min-width: 800px) {
  .c-about-slider__cursor {
    width: 96px;
  }
}
@media (min-width: 1440px) {
  .c-about-slider__cursor {
    width: 96px;
  }
}
@media (min-width: 2560px) {
  .c-about-slider__cursor {
    width: calc(0.9677419355vw + 71.2258064516px);
  }
}
@media (min-width: 3800px) {
  .c-about-slider__cursor {
    width: 108px;
  }
}
@media (min-width: 480px) {
  .c-about-slider__cursor {
    height: calc(10vw + 16px);
  }
}
@media (min-width: 800px) {
  .c-about-slider__cursor {
    height: 96px;
  }
}
@media (min-width: 1440px) {
  .c-about-slider__cursor {
    height: 96px;
  }
}
@media (min-width: 2560px) {
  .c-about-slider__cursor {
    height: calc(0.9677419355vw + 71.2258064516px);
  }
}
@media (min-width: 3800px) {
  .c-about-slider__cursor {
    height: 108px;
  }
}
@media (min-width: 2560px) {
  .c-about-slider__cursor {
    border: 2px solid;
  }
}
.c-about-slider__cursor span {
  display: inline-block;
  position: relative;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
}

.c-about-slider__cursor .u-icon {
  font-size: 7px;
}

@media (min-width: 1440px) {
  .c-about-slider__cursor .u-icon {
    font-size: calc(0.078125vw + 5.875px);
  }
}
@media (min-width: 2560px) {
  .c-about-slider__cursor .u-icon {
    font-size: 7.875px;
  }
}
.c-about-slider__cursor .u-icon--chevron-left {
  margin-right: 8px;
}

@media (min-width: 480px) {
  .c-about-slider__cursor .u-icon--chevron-left {
    margin-right: calc(1.25vw + 2px);
  }
}
@media (min-width: 800px) {
  .c-about-slider__cursor .u-icon--chevron-left {
    margin-right: 12px;
  }
}
@media (min-width: 1440px) {
  .c-about-slider__cursor .u-icon--chevron-left {
    margin-right: 12px;
  }
}
@media (min-width: 2560px) {
  .c-about-slider__cursor .u-icon--chevron-left {
    margin-right: calc(0.1209677419vw + 8.9032258065px);
  }
}
@media (min-width: 3800px) {
  .c-about-slider__cursor .u-icon--chevron-left {
    margin-right: 13.5px;
  }
}
.c-about-slider__cursor .u-icon--chevron-right {
  margin-left: 8px;
}

@media (min-width: 480px) {
  .c-about-slider__cursor .u-icon--chevron-right {
    margin-left: calc(1.25vw + 2px);
  }
}
@media (min-width: 800px) {
  .c-about-slider__cursor .u-icon--chevron-right {
    margin-left: 12px;
  }
}
@media (min-width: 1440px) {
  .c-about-slider__cursor .u-icon--chevron-right {
    margin-left: 12px;
  }
}
@media (min-width: 2560px) {
  .c-about-slider__cursor .u-icon--chevron-right {
    margin-left: calc(0.1209677419vw + 8.9032258065px);
  }
}
@media (min-width: 3800px) {
  .c-about-slider__cursor .u-icon--chevron-right {
    margin-left: 13.5px;
  }
}
.c-about-slider__cursor.is-visible span {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.c-about-slider .swiper-slide {
  background-color: #161617;
}

.c-about-slider .swiper-slide:last-of-type .c-gallery-modal__slide {
  padding-right: 0;
}

.c-about-slider__description {
  padding-top: 24px;
}

@media (min-width: 480px) {
  .c-about-slider__description {
    padding-top: calc(5vw + 0px);
  }
}
@media (min-width: 800px) {
  .c-about-slider__description {
    padding-top: 40px;
  }
}
@media (min-width: 1440px) {
  .c-about-slider__description {
    padding-top: 40px;
  }
}
@media (min-width: 2560px) {
  .c-about-slider__description {
    padding-top: calc(0.4032258065vw + 29.6774193548px);
  }
}
@media (min-width: 3800px) {
  .c-about-slider__description {
    padding-top: 45px;
  }
}
@media (max-width: 600px) {
  .c-about-slider__description {
    padding-right: 12px;
  }
}
@media (max-width: 600px) and (min-width: 480px) {
  .c-about-slider__description {
    padding-right: calc(1.25vw + 6px);
  }
}
@media (max-width: 600px) and (min-width: 800px) {
  .c-about-slider__description {
    padding-right: 16px;
  }
}
@media (max-width: 600px) and (min-width: 1440px) {
  .c-about-slider__description {
    padding-right: 16px;
  }
}
@media (max-width: 600px) and (min-width: 2560px) {
  .c-about-slider__description {
    padding-right: calc(0.1612903226vw + 11.8709677419px);
  }
}
@media (max-width: 600px) and (min-width: 3800px) {
  .c-about-slider__description {
    padding-right: 18px;
  }
}
.c-about-slider__number {
  display: inline-block;
  float: left;
}

@media (max-width: 600px) {
  .c-about-slider__number {
    float: none;
    display: block;
  }
}
.c-about-slider__txt {
  max-width: 440px;
  width: 100%;
  display: block;
  margin: 0 auto;
}

@media (min-width: 1440px) {
  .c-about-slider__txt {
    max-width: calc(4.9107142857vw + 369.2857142857px);
  }
}
@media (min-width: 2560px) {
  .c-about-slider__txt {
    max-width: 495px;
  }
}
@media (max-width: 600px) {
  .c-about-slider__txt {
    margin: 0;
    padding-top: 12px;
  }
}
@media (max-width: 600px) and (min-width: 480px) {
  .c-about-slider__txt {
    padding-top: calc(2.5vw + 0px);
  }
}
@media (max-width: 600px) and (min-width: 800px) {
  .c-about-slider__txt {
    padding-top: 20px;
  }
}
@media (max-width: 600px) and (min-width: 1440px) {
  .c-about-slider__txt {
    padding-top: 20px;
  }
}
@media (max-width: 600px) and (min-width: 2560px) {
  .c-about-slider__txt {
    padding-top: calc(0.2016129032vw + 14.8387096774px);
  }
}
@media (max-width: 600px) and (min-width: 3800px) {
  .c-about-slider__txt {
    padding-top: 22.5px;
  }
}
.c-media-filter__title span {
  display: block;
}

.c-media-filter__inner {
  padding-top: 64px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(250, 250, 250, 0.2);
}

@media (min-width: 480px) {
  .c-media-filter__inner {
    padding-top: calc(11.25vw + 10px);
  }
}
@media (min-width: 800px) {
  .c-media-filter__inner {
    padding-top: 100px;
  }
}
@media (min-width: 1440px) {
  .c-media-filter__inner {
    padding-top: 100px;
  }
}
@media (min-width: 2560px) {
  .c-media-filter__inner {
    padding-top: calc(1.0080645161vw + 74.1935483871px);
  }
}
@media (min-width: 3800px) {
  .c-media-filter__inner {
    padding-top: 112.5px;
  }
}
@media (min-width: 480px) {
  .c-media-filter__inner {
    padding-bottom: calc(5vw + 0px);
  }
}
@media (min-width: 800px) {
  .c-media-filter__inner {
    padding-bottom: 40px;
  }
}
@media (min-width: 1440px) {
  .c-media-filter__inner {
    padding-bottom: 40px;
  }
}
@media (min-width: 2560px) {
  .c-media-filter__inner {
    padding-bottom: calc(0.4032258065vw + 29.6774193548px);
  }
}
@media (min-width: 3800px) {
  .c-media-filter__inner {
    padding-bottom: 45px;
  }
}
.c-media-filter__wrapper {
  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;
  padding-bottom: 12px;
}

@media (min-width: 480px) {
  .c-media-filter__wrapper {
    padding-bottom: calc(2.5vw + 0px);
  }
}
@media (min-width: 800px) {
  .c-media-filter__wrapper {
    padding-bottom: 20px;
  }
}
@media (min-width: 1440px) {
  .c-media-filter__wrapper {
    padding-bottom: 20px;
  }
}
@media (min-width: 2560px) {
  .c-media-filter__wrapper {
    padding-bottom: calc(0.2016129032vw + 14.8387096774px);
  }
}
@media (min-width: 3800px) {
  .c-media-filter__wrapper {
    padding-bottom: 22.5px;
  }
}
@media (max-width: 600px) {
  .c-media-filter__wrapper {
    -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;
  }
}
.c-media-filter__more-filters {
  height: 0;
  white-space: nowrap;
  overflow: hidden;
}

.c-media-filter__more-filters .c-media-filter__wrapper {
  white-space: normal;
  opacity: 0;
  -webkit-transform: translateY(200%);
          transform: translateY(200%);
  position: relative;
}

.c-media-filter__more-filters.is-opened .c-media-filter__wrapper {
  opacity: 1;
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
  -webkit-transition: opacity 0.7s ease-in-out, -webkit-transform 0.5s ease-in-out;
  transition: opacity 0.7s ease-in-out, -webkit-transform 0.5s ease-in-out;
  transition: opacity 0.7s ease-in-out, transform 0.5s ease-in-out;
  transition: opacity 0.7s ease-in-out, transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
}

.c-media-filter__category {
  min-width: 130px;
  padding-right: 12px;
  white-space: nowrap;
}

@media (min-width: 480px) {
  .c-media-filter__category {
    padding-right: calc(1.25vw + 6px);
  }
}
@media (min-width: 800px) {
  .c-media-filter__category {
    padding-right: 16px;
  }
}
@media (min-width: 1440px) {
  .c-media-filter__category {
    padding-right: 16px;
  }
}
@media (min-width: 2560px) {
  .c-media-filter__category {
    padding-right: calc(0.1612903226vw + 11.8709677419px);
  }
}
@media (min-width: 3800px) {
  .c-media-filter__category {
    padding-right: 18px;
  }
}
@media (max-width: 600px) {
  .c-media-filter__category {
    padding-bottom: 12px;
  }
}
@media (max-width: 600px) and (min-width: 480px) {
  .c-media-filter__category {
    padding-bottom: calc(1.25vw + 6px);
  }
}
@media (max-width: 600px) and (min-width: 800px) {
  .c-media-filter__category {
    padding-bottom: 16px;
  }
}
@media (max-width: 600px) and (min-width: 1440px) {
  .c-media-filter__category {
    padding-bottom: 16px;
  }
}
@media (max-width: 600px) and (min-width: 2560px) {
  .c-media-filter__category {
    padding-bottom: calc(0.1612903226vw + 11.8709677419px);
  }
}
@media (max-width: 600px) and (min-width: 3800px) {
  .c-media-filter__category {
    padding-bottom: 18px;
  }
}
.c-media-filter__cta-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.c-media-filter__tags label {
  margin-bottom: 8px;
}

@media (min-width: 480px) {
  .c-media-filter__tags label {
    margin-bottom: calc(0.625vw + 5px);
  }
}
@media (min-width: 800px) {
  .c-media-filter__tags label {
    margin-bottom: 10px;
  }
}
@media (min-width: 1440px) {
  .c-media-filter__tags label {
    margin-bottom: 10px;
  }
}
@media (min-width: 2560px) {
  .c-media-filter__tags label {
    margin-bottom: calc(0.1008064516vw + 7.4193548387px);
  }
}
@media (min-width: 3800px) {
  .c-media-filter__tags label {
    margin-bottom: 11.25px;
  }
}
.c-media-filter__tags input {
  display: none;
}

.c-media-filter input[type=checkbox]:checked + label {
  background-color: #4aa6dd;
}

.c-media-filter input[type=checkbox]:checked + label span {
  color: #fafafa;
}

.c-media-filter .c-button {
  cursor: pointer;
}

@media (hover: hover) and (pointer: fine) {
  .c-media-filter .c-button:hover {
    color: #161617;
  }
}
.c-media-filter .c-link:before {
  background-color: #fafafa !important;
}

.c-form-wrapper {
  width: 100%;
}

body .gform_wrapper {
  font-size: 16px;
  font-family: "Avenir Next Regular", sans-serif;
}

@media (min-width: 480px) {
  body .gform_wrapper {
    font-size: 16px;
  }
}
@media (min-width: 1440px) {
  body .gform_wrapper {
    font-size: 16px;
  }
}
@media (min-width: 2560px) {
  body .gform_wrapper {
    font-size: 16px;
  }
}
body .gform_wrapper .gform_validation_errors {
  display: none;
}

body .gform_wrapper .gform_heading .gform_title {
  font-size: 28px;
  font-family: "Avenir Next Bold", sans-serif;
  line-height: 1.01;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  font-weight: 400;
  padding-bottom: 12px;
}

@media (min-width: 480px) {
  body .gform_wrapper .gform_heading .gform_title {
    font-size: calc(3.75vw + 10px);
  }
}
@media (min-width: 800px) {
  body .gform_wrapper .gform_heading .gform_title {
    font-size: 40px;
  }
}
@media (min-width: 1140px) {
  body .gform_wrapper .gform_heading .gform_title {
    font-size: 40px;
  }
}
@media (min-width: 1440px) {
  body .gform_wrapper .gform_heading .gform_title {
    font-size: 40px;
  }
}
@media (min-width: 2560px) {
  body .gform_wrapper .gform_heading .gform_title {
    font-size: 40px;
  }
}
@media (min-width: 3800px) {
  body .gform_wrapper .gform_heading .gform_title {
    font-size: 40px;
  }
}
@media (min-width: 480px) {
  body .gform_wrapper .gform_heading .gform_title {
    padding-bottom: calc(1.25vw + 6px);
  }
}
@media (min-width: 800px) {
  body .gform_wrapper .gform_heading .gform_title {
    padding-bottom: 16px;
  }
}
@media (min-width: 1440px) {
  body .gform_wrapper .gform_heading .gform_title {
    padding-bottom: 16px;
  }
}
@media (min-width: 2560px) {
  body .gform_wrapper .gform_heading .gform_title {
    padding-bottom: calc(0.1612903226vw + 11.8709677419px);
  }
}
@media (min-width: 3800px) {
  body .gform_wrapper .gform_heading .gform_title {
    padding-bottom: 18px;
  }
}
body .gform_wrapper .gform_body {
  /*max-width: 780px;

  @include mq(null, xl) {
      max-width: get-vw(780px);
  }*/
  max-width: 65.7894736842%;
  width: 100%;
  margin-left: auto;
}

@media (max-width: 800px) {
  body .gform_wrapper .gform_body {
    max-width: 72.7272727273%;
  }
}
@media (max-width: 480px) {
  body .gform_wrapper .gform_body {
    max-width: 100%;
  }
}
body .gform_wrapper .gform_required_legend {
  font-size: 14px;
  font-family: "Avenir Next Regular", sans-serif;
  color: rgba(22, 22, 23, 0.5);
  padding-bottom: 24px;
}

@media (min-width: 480px) {
  body .gform_wrapper .gform_required_legend {
    font-size: 14px;
  }
}
@media (min-width: 1440px) {
  body .gform_wrapper .gform_required_legend {
    font-size: 14px;
  }
}
@media (min-width: 2560px) {
  body .gform_wrapper .gform_required_legend {
    font-size: 14px;
  }
}
@media (min-width: 480px) {
  body .gform_wrapper .gform_required_legend {
    padding-bottom: calc(5vw + 0px);
  }
}
@media (min-width: 800px) {
  body .gform_wrapper .gform_required_legend {
    padding-bottom: 40px;
  }
}
@media (min-width: 1440px) {
  body .gform_wrapper .gform_required_legend {
    padding-bottom: 40px;
  }
}
@media (min-width: 2560px) {
  body .gform_wrapper .gform_required_legend {
    padding-bottom: calc(0.4032258065vw + 29.6774193548px);
  }
}
@media (min-width: 3800px) {
  body .gform_wrapper .gform_required_legend {
    padding-bottom: 45px;
  }
}
body .gform_wrapper .gform_required_legend span {
  font-size: 1.4em;
  color: #fc2e2e;
}

body .gform_wrapper .gfield {
  position: relative;
}

body .gform_wrapper .gfield .gfield_validation_message {
  font-size: 14px;
  font-family: "Avenir Next Regular", sans-serif;
  color: #fc2e2e;
  border: none;
  padding: 0;
  background-color: transparent;
  margin-top: 5px;
  position: absolute;
  top: 100%;
  right: 0;
  text-align: right;
  display: inline-block;
}

@media (min-width: 480px) {
  body .gform_wrapper .gfield .gfield_validation_message {
    font-size: 14px;
  }
}
@media (min-width: 1440px) {
  body .gform_wrapper .gfield .gfield_validation_message {
    font-size: 14px;
  }
}
@media (min-width: 2560px) {
  body .gform_wrapper .gfield .gfield_validation_message {
    font-size: 14px;
  }
}
body .gform_wrapper .gfield_error label,
body .gform_wrapper .gfield_error legend {
  color: #fc2e2e;
}

body .gform_wrapper .gfield_error [aria-invalid=true] {
  border: none;
}

body .gform_wrapper .ginput_container_select {
  position: relative;
}

body .gform_wrapper .ginput_container_select:after {
  position: absolute;
  right: 1em;
  top: 50%;
  margin-top: -0.25em;
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border-bottom: 2px solid #000000;
  border-left: 2px solid #000000;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

body .gform_wrapper.gravity-theme .gf_page_steps {
  border-bottom: 1px solid rgba(22, 22, 23, 0.2);
  padding-bottom: 24px;
}

@media (min-width: 480px) {
  body .gform_wrapper.gravity-theme .gf_page_steps {
    padding-bottom: calc(5vw + 0px);
  }
}
@media (min-width: 800px) {
  body .gform_wrapper.gravity-theme .gf_page_steps {
    padding-bottom: 40px;
  }
}
@media (min-width: 1440px) {
  body .gform_wrapper.gravity-theme .gf_page_steps {
    padding-bottom: 40px;
  }
}
@media (min-width: 2560px) {
  body .gform_wrapper.gravity-theme .gf_page_steps {
    padding-bottom: calc(0.4032258065vw + 29.6774193548px);
  }
}
@media (min-width: 3800px) {
  body .gform_wrapper.gravity-theme .gf_page_steps {
    padding-bottom: 45px;
  }
}
body .gform_wrapper.gravity-theme .gf_step {
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 24px;
}

@media (min-width: 480px) {
  body .gform_wrapper.gravity-theme .gf_step {
    margin-right: calc(5vw + 0px);
  }
}
@media (min-width: 800px) {
  body .gform_wrapper.gravity-theme .gf_step {
    margin-right: 40px;
  }
}
@media (min-width: 1440px) {
  body .gform_wrapper.gravity-theme .gf_step {
    margin-right: 40px;
  }
}
@media (min-width: 2560px) {
  body .gform_wrapper.gravity-theme .gf_step {
    margin-right: calc(0.4032258065vw + 29.6774193548px);
  }
}
@media (min-width: 3800px) {
  body .gform_wrapper.gravity-theme .gf_step {
    margin-right: 45px;
  }
}
body .gform_wrapper.gravity-theme .gf_step_number {
  border: 1px solid rgba(203, 209, 219, 0.3);
  background-color: transparent;
  color: #000000;
  font-size: 16px;
}

@media (min-width: 480px) {
  body .gform_wrapper.gravity-theme .gf_step_number {
    font-size: 16px;
  }
}
@media (min-width: 1440px) {
  body .gform_wrapper.gravity-theme .gf_step_number {
    font-size: 16px;
  }
}
@media (min-width: 2560px) {
  body .gform_wrapper.gravity-theme .gf_step_number {
    font-size: 16px;
  }
}
body .gform_wrapper.gravity-theme .gf_step_label {
  font-size: 16px;
  font-weight: 400;
}

@media (min-width: 480px) {
  body .gform_wrapper.gravity-theme .gf_step_label {
    font-size: 16px;
  }
}
@media (min-width: 1440px) {
  body .gform_wrapper.gravity-theme .gf_step_label {
    font-size: 16px;
  }
}
@media (min-width: 2560px) {
  body .gform_wrapper.gravity-theme .gf_step_label {
    font-size: 16px;
  }
}
body .gform_wrapper.gravity-theme .gf_step_active .gf_step_number {
  color: #000000;
  background-color: rgba(203, 209, 219, 0.3);
}

body .gform_wrapper.gravity-theme .gform_page_footer,
body .gform_wrapper.gravity-theme .gform_footer {
  padding-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 480px) {
  body .gform_wrapper.gravity-theme .gform_page_footer,
body .gform_wrapper.gravity-theme .gform_footer {
    padding-top: calc(5vw + 0px);
  }
}
@media (min-width: 800px) {
  body .gform_wrapper.gravity-theme .gform_page_footer,
body .gform_wrapper.gravity-theme .gform_footer {
    padding-top: 40px;
  }
}
@media (min-width: 1440px) {
  body .gform_wrapper.gravity-theme .gform_page_footer,
body .gform_wrapper.gravity-theme .gform_footer {
    padding-top: 40px;
  }
}
@media (min-width: 2560px) {
  body .gform_wrapper.gravity-theme .gform_page_footer,
body .gform_wrapper.gravity-theme .gform_footer {
    padding-top: calc(0.4032258065vw + 29.6774193548px);
  }
}
@media (min-width: 3800px) {
  body .gform_wrapper.gravity-theme .gform_page_footer,
body .gform_wrapper.gravity-theme .gform_footer {
    padding-top: 45px;
  }
}
body .gform_wrapper.gravity-theme .gform_page_footer input[type=submit],
body .gform_wrapper.gravity-theme .gform_page_footer input[type=button],
body .gform_wrapper.gravity-theme .gform_footer input[type=submit],
body .gform_wrapper.gravity-theme .gform_footer input[type=button] {
  margin-bottom: 0;
  line-height: 1.3em;
}

body .gform_wrapper.gravity-theme .gform_page_footer .gform_ajax_spinner,
body .gform_wrapper.gravity-theme .gform_footer .gform_ajax_spinner {
  width: 24px;
  height: 24px;
  margin-left: 15px;
}

body .gform_wrapper.gravity-theme .gform_footer {
  max-width: 65.7894736842%;
  width: 100%;
  margin-left: auto;
}

@media (max-width: 800px) {
  body .gform_wrapper.gravity-theme .gform_footer {
    max-width: 72.7272727273%;
  }
}
@media (max-width: 480px) {
  body .gform_wrapper.gravity-theme .gform_footer {
    max-width: 100%;
  }
}
body .gform_wrapper.gravity-theme .gfield_label {
  font-weight: 400;
}

body .gform_wrapper.gravity-theme .ginput_complex label,
body .gform_wrapper.gravity-theme .ginput_complex legend {
  color: rgba(22, 22, 23, 0.5);
  font-size: 14px;
  font-family: "Avenir Next Regular", sans-serif;
}

@media (min-width: 480px) {
  body .gform_wrapper.gravity-theme .ginput_complex label,
body .gform_wrapper.gravity-theme .ginput_complex legend {
    font-size: 14px;
  }
}
@media (min-width: 1440px) {
  body .gform_wrapper.gravity-theme .ginput_complex label,
body .gform_wrapper.gravity-theme .ginput_complex legend {
    font-size: 14px;
  }
}
@media (min-width: 2560px) {
  body .gform_wrapper.gravity-theme .ginput_complex label,
body .gform_wrapper.gravity-theme .ginput_complex legend {
    font-size: 14px;
  }
}
body .gform_wrapper.gravity-theme .gfield textarea {
  resize: vertical;
}

body .gform_wrapper.gravity-theme .gform_fields {
  grid-column-gap: 12px;
  grid-row-gap: 24px;
}

@media (min-width: 480px) {
  body .gform_wrapper.gravity-theme .gform_fields {
    grid-column-gap: calc(1.25vw + 6px);
  }
}
@media (min-width: 800px) {
  body .gform_wrapper.gravity-theme .gform_fields {
    grid-column-gap: 16px;
  }
}
@media (min-width: 1440px) {
  body .gform_wrapper.gravity-theme .gform_fields {
    grid-column-gap: 16px;
  }
}
@media (min-width: 2560px) {
  body .gform_wrapper.gravity-theme .gform_fields {
    grid-column-gap: calc(0.1612903226vw + 11.8709677419px);
  }
}
@media (min-width: 3800px) {
  body .gform_wrapper.gravity-theme .gform_fields {
    grid-column-gap: 18px;
  }
}
@media (min-width: 480px) {
  body .gform_wrapper.gravity-theme .gform_fields {
    grid-row-gap: calc(5vw + 0px);
  }
}
@media (min-width: 800px) {
  body .gform_wrapper.gravity-theme .gform_fields {
    grid-row-gap: 40px;
  }
}
@media (min-width: 1440px) {
  body .gform_wrapper.gravity-theme .gform_fields {
    grid-row-gap: 40px;
  }
}
@media (min-width: 2560px) {
  body .gform_wrapper.gravity-theme .gform_fields {
    grid-row-gap: calc(0.4032258065vw + 29.6774193548px);
  }
}
@media (min-width: 3800px) {
  body .gform_wrapper.gravity-theme .gform_fields {
    grid-row-gap: 45px;
  }
}
body .gform_wrapper.gravity-theme .chosen-container-multi {
  font-size: 16px;
}

@media (min-width: 480px) {
  body .gform_wrapper.gravity-theme .chosen-container-multi {
    font-size: 16px;
  }
}
@media (min-width: 1440px) {
  body .gform_wrapper.gravity-theme .chosen-container-multi {
    font-size: 16px;
  }
}
@media (min-width: 2560px) {
  body .gform_wrapper.gravity-theme .chosen-container-multi {
    font-size: 16px;
  }
}
body .gform_wrapper.gravity-theme .chosen-container-multi .chosen-choices,
body .gform_wrapper.gravity-theme select,
body .gform_wrapper.gravity-theme textarea,
body .gform_wrapper.gravity-theme input {
  border: 1px solid rgba(0, 0, 0, 0.1);
  outline: none;
  font-size: 16px;
  color: #000000;
}

@media (min-width: 480px) {
  body .gform_wrapper.gravity-theme .chosen-container-multi .chosen-choices,
body .gform_wrapper.gravity-theme select,
body .gform_wrapper.gravity-theme textarea,
body .gform_wrapper.gravity-theme input {
    font-size: 16px;
  }
}
@media (min-width: 1440px) {
  body .gform_wrapper.gravity-theme .chosen-container-multi .chosen-choices,
body .gform_wrapper.gravity-theme select,
body .gform_wrapper.gravity-theme textarea,
body .gform_wrapper.gravity-theme input {
    font-size: 16px;
  }
}
@media (min-width: 2560px) {
  body .gform_wrapper.gravity-theme .chosen-container-multi .chosen-choices,
body .gform_wrapper.gravity-theme select,
body .gform_wrapper.gravity-theme textarea,
body .gform_wrapper.gravity-theme input {
    font-size: 16px;
  }
}
body .gform_wrapper.gravity-theme .chosen-container-multi .chosen-choices,
body .gform_wrapper.gravity-theme input[type=email],
body .gform_wrapper.gravity-theme input[type=text],
body .gform_wrapper.gravity-theme input[type=tel],
body .gform_wrapper.gravity-theme textarea,
body .gform_wrapper.gravity-theme select {
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 12px;
  padding-right: 12px;
  font-size: 16px;
  line-height: 1.3em;
  background-color: white;
}

@media (min-width: 480px) {
  body .gform_wrapper.gravity-theme .chosen-container-multi .chosen-choices,
body .gform_wrapper.gravity-theme input[type=email],
body .gform_wrapper.gravity-theme input[type=text],
body .gform_wrapper.gravity-theme input[type=tel],
body .gform_wrapper.gravity-theme textarea,
body .gform_wrapper.gravity-theme select {
    padding-top: calc(1.25vw + 2px);
  }
}
@media (min-width: 800px) {
  body .gform_wrapper.gravity-theme .chosen-container-multi .chosen-choices,
body .gform_wrapper.gravity-theme input[type=email],
body .gform_wrapper.gravity-theme input[type=text],
body .gform_wrapper.gravity-theme input[type=tel],
body .gform_wrapper.gravity-theme textarea,
body .gform_wrapper.gravity-theme select {
    padding-top: 12px;
  }
}
@media (min-width: 1440px) {
  body .gform_wrapper.gravity-theme .chosen-container-multi .chosen-choices,
body .gform_wrapper.gravity-theme input[type=email],
body .gform_wrapper.gravity-theme input[type=text],
body .gform_wrapper.gravity-theme input[type=tel],
body .gform_wrapper.gravity-theme textarea,
body .gform_wrapper.gravity-theme select {
    padding-top: 12px;
  }
}
@media (min-width: 2560px) {
  body .gform_wrapper.gravity-theme .chosen-container-multi .chosen-choices,
body .gform_wrapper.gravity-theme input[type=email],
body .gform_wrapper.gravity-theme input[type=text],
body .gform_wrapper.gravity-theme input[type=tel],
body .gform_wrapper.gravity-theme textarea,
body .gform_wrapper.gravity-theme select {
    padding-top: calc(0.1209677419vw + 8.9032258065px);
  }
}
@media (min-width: 3800px) {
  body .gform_wrapper.gravity-theme .chosen-container-multi .chosen-choices,
body .gform_wrapper.gravity-theme input[type=email],
body .gform_wrapper.gravity-theme input[type=text],
body .gform_wrapper.gravity-theme input[type=tel],
body .gform_wrapper.gravity-theme textarea,
body .gform_wrapper.gravity-theme select {
    padding-top: 13.5px;
  }
}
@media (min-width: 480px) {
  body .gform_wrapper.gravity-theme .chosen-container-multi .chosen-choices,
body .gform_wrapper.gravity-theme input[type=email],
body .gform_wrapper.gravity-theme input[type=text],
body .gform_wrapper.gravity-theme input[type=tel],
body .gform_wrapper.gravity-theme textarea,
body .gform_wrapper.gravity-theme select {
    padding-bottom: calc(1.25vw + 2px);
  }
}
@media (min-width: 800px) {
  body .gform_wrapper.gravity-theme .chosen-container-multi .chosen-choices,
body .gform_wrapper.gravity-theme input[type=email],
body .gform_wrapper.gravity-theme input[type=text],
body .gform_wrapper.gravity-theme input[type=tel],
body .gform_wrapper.gravity-theme textarea,
body .gform_wrapper.gravity-theme select {
    padding-bottom: 12px;
  }
}
@media (min-width: 1440px) {
  body .gform_wrapper.gravity-theme .chosen-container-multi .chosen-choices,
body .gform_wrapper.gravity-theme input[type=email],
body .gform_wrapper.gravity-theme input[type=text],
body .gform_wrapper.gravity-theme input[type=tel],
body .gform_wrapper.gravity-theme textarea,
body .gform_wrapper.gravity-theme select {
    padding-bottom: 12px;
  }
}
@media (min-width: 2560px) {
  body .gform_wrapper.gravity-theme .chosen-container-multi .chosen-choices,
body .gform_wrapper.gravity-theme input[type=email],
body .gform_wrapper.gravity-theme input[type=text],
body .gform_wrapper.gravity-theme input[type=tel],
body .gform_wrapper.gravity-theme textarea,
body .gform_wrapper.gravity-theme select {
    padding-bottom: calc(0.1209677419vw + 8.9032258065px);
  }
}
@media (min-width: 3800px) {
  body .gform_wrapper.gravity-theme .chosen-container-multi .chosen-choices,
body .gform_wrapper.gravity-theme input[type=email],
body .gform_wrapper.gravity-theme input[type=text],
body .gform_wrapper.gravity-theme input[type=tel],
body .gform_wrapper.gravity-theme textarea,
body .gform_wrapper.gravity-theme select {
    padding-bottom: 13.5px;
  }
}
@media (min-width: 480px) {
  body .gform_wrapper.gravity-theme .chosen-container-multi .chosen-choices,
body .gform_wrapper.gravity-theme input[type=email],
body .gform_wrapper.gravity-theme input[type=text],
body .gform_wrapper.gravity-theme input[type=tel],
body .gform_wrapper.gravity-theme textarea,
body .gform_wrapper.gravity-theme select {
    padding-left: calc(1.25vw + 6px);
  }
}
@media (min-width: 800px) {
  body .gform_wrapper.gravity-theme .chosen-container-multi .chosen-choices,
body .gform_wrapper.gravity-theme input[type=email],
body .gform_wrapper.gravity-theme input[type=text],
body .gform_wrapper.gravity-theme input[type=tel],
body .gform_wrapper.gravity-theme textarea,
body .gform_wrapper.gravity-theme select {
    padding-left: 16px;
  }
}
@media (min-width: 1440px) {
  body .gform_wrapper.gravity-theme .chosen-container-multi .chosen-choices,
body .gform_wrapper.gravity-theme input[type=email],
body .gform_wrapper.gravity-theme input[type=text],
body .gform_wrapper.gravity-theme input[type=tel],
body .gform_wrapper.gravity-theme textarea,
body .gform_wrapper.gravity-theme select {
    padding-left: 16px;
  }
}
@media (min-width: 2560px) {
  body .gform_wrapper.gravity-theme .chosen-container-multi .chosen-choices,
body .gform_wrapper.gravity-theme input[type=email],
body .gform_wrapper.gravity-theme input[type=text],
body .gform_wrapper.gravity-theme input[type=tel],
body .gform_wrapper.gravity-theme textarea,
body .gform_wrapper.gravity-theme select {
    padding-left: calc(0.1612903226vw + 11.8709677419px);
  }
}
@media (min-width: 3800px) {
  body .gform_wrapper.gravity-theme .chosen-container-multi .chosen-choices,
body .gform_wrapper.gravity-theme input[type=email],
body .gform_wrapper.gravity-theme input[type=text],
body .gform_wrapper.gravity-theme input[type=tel],
body .gform_wrapper.gravity-theme textarea,
body .gform_wrapper.gravity-theme select {
    padding-left: 18px;
  }
}
@media (min-width: 480px) {
  body .gform_wrapper.gravity-theme .chosen-container-multi .chosen-choices,
body .gform_wrapper.gravity-theme input[type=email],
body .gform_wrapper.gravity-theme input[type=text],
body .gform_wrapper.gravity-theme input[type=tel],
body .gform_wrapper.gravity-theme textarea,
body .gform_wrapper.gravity-theme select {
    padding-right: calc(1.25vw + 6px);
  }
}
@media (min-width: 800px) {
  body .gform_wrapper.gravity-theme .chosen-container-multi .chosen-choices,
body .gform_wrapper.gravity-theme input[type=email],
body .gform_wrapper.gravity-theme input[type=text],
body .gform_wrapper.gravity-theme input[type=tel],
body .gform_wrapper.gravity-theme textarea,
body .gform_wrapper.gravity-theme select {
    padding-right: 16px;
  }
}
@media (min-width: 1440px) {
  body .gform_wrapper.gravity-theme .chosen-container-multi .chosen-choices,
body .gform_wrapper.gravity-theme input[type=email],
body .gform_wrapper.gravity-theme input[type=text],
body .gform_wrapper.gravity-theme input[type=tel],
body .gform_wrapper.gravity-theme textarea,
body .gform_wrapper.gravity-theme select {
    padding-right: 16px;
  }
}
@media (min-width: 2560px) {
  body .gform_wrapper.gravity-theme .chosen-container-multi .chosen-choices,
body .gform_wrapper.gravity-theme input[type=email],
body .gform_wrapper.gravity-theme input[type=text],
body .gform_wrapper.gravity-theme input[type=tel],
body .gform_wrapper.gravity-theme textarea,
body .gform_wrapper.gravity-theme select {
    padding-right: calc(0.1612903226vw + 11.8709677419px);
  }
}
@media (min-width: 3800px) {
  body .gform_wrapper.gravity-theme .chosen-container-multi .chosen-choices,
body .gform_wrapper.gravity-theme input[type=email],
body .gform_wrapper.gravity-theme input[type=text],
body .gform_wrapper.gravity-theme input[type=tel],
body .gform_wrapper.gravity-theme textarea,
body .gform_wrapper.gravity-theme select {
    padding-right: 18px;
  }
}
@media (min-width: 480px) {
  body .gform_wrapper.gravity-theme .chosen-container-multi .chosen-choices,
body .gform_wrapper.gravity-theme input[type=email],
body .gform_wrapper.gravity-theme input[type=text],
body .gform_wrapper.gravity-theme input[type=tel],
body .gform_wrapper.gravity-theme textarea,
body .gform_wrapper.gravity-theme select {
    font-size: 16px;
  }
}
@media (min-width: 1440px) {
  body .gform_wrapper.gravity-theme .chosen-container-multi .chosen-choices,
body .gform_wrapper.gravity-theme input[type=email],
body .gform_wrapper.gravity-theme input[type=text],
body .gform_wrapper.gravity-theme input[type=tel],
body .gform_wrapper.gravity-theme textarea,
body .gform_wrapper.gravity-theme select {
    font-size: 16px;
  }
}
@media (min-width: 2560px) {
  body .gform_wrapper.gravity-theme .chosen-container-multi .chosen-choices,
body .gform_wrapper.gravity-theme input[type=email],
body .gform_wrapper.gravity-theme input[type=text],
body .gform_wrapper.gravity-theme input[type=tel],
body .gform_wrapper.gravity-theme textarea,
body .gform_wrapper.gravity-theme select {
    font-size: 16px;
  }
}
@media only screen and (max-width: 641px) {
  body .gform_wrapper.gravity-theme .chosen-container-multi .chosen-choices,
body .gform_wrapper.gravity-theme input[type=email],
body .gform_wrapper.gravity-theme input[type=text],
body .gform_wrapper.gravity-theme input[type=tel],
body .gform_wrapper.gravity-theme textarea,
body .gform_wrapper.gravity-theme select {
    line-height: 1.3em !important;
    min-height: 45px !important;
  }
}
body .gform_wrapper.gravity-theme .chosen-container-multi .chosen-choices {
  padding-top: 4px;
  padding-bottom: 4px;
}

@media (min-width: 480px) {
  body .gform_wrapper.gravity-theme .chosen-container-multi .chosen-choices {
    padding-top: calc(0.625vw + 1px);
  }
}
@media (min-width: 800px) {
  body .gform_wrapper.gravity-theme .chosen-container-multi .chosen-choices {
    padding-top: 6px;
  }
}
@media (min-width: 1440px) {
  body .gform_wrapper.gravity-theme .chosen-container-multi .chosen-choices {
    padding-top: 6px;
  }
}
@media (min-width: 2560px) {
  body .gform_wrapper.gravity-theme .chosen-container-multi .chosen-choices {
    padding-top: calc(0.060483871vw + 4.4516129032px);
  }
}
@media (min-width: 3800px) {
  body .gform_wrapper.gravity-theme .chosen-container-multi .chosen-choices {
    padding-top: 6.75px;
  }
}
@media (min-width: 480px) {
  body .gform_wrapper.gravity-theme .chosen-container-multi .chosen-choices {
    padding-bottom: calc(0.625vw + 1px);
  }
}
@media (min-width: 800px) {
  body .gform_wrapper.gravity-theme .chosen-container-multi .chosen-choices {
    padding-bottom: 6px;
  }
}
@media (min-width: 1440px) {
  body .gform_wrapper.gravity-theme .chosen-container-multi .chosen-choices {
    padding-bottom: 6px;
  }
}
@media (min-width: 2560px) {
  body .gform_wrapper.gravity-theme .chosen-container-multi .chosen-choices {
    padding-bottom: calc(0.060483871vw + 4.4516129032px);
  }
}
@media (min-width: 3800px) {
  body .gform_wrapper.gravity-theme .chosen-container-multi .chosen-choices {
    padding-bottom: 6.75px;
  }
}
body .gform_wrapper.gravity-theme .chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
  top: 50%;
  margin-top: -5px;
}

body .gform_wrapper.gravity-theme .chosen-container-multi .chosen-choices li.search-field input[type=text] {
  height: auto;
  font-size: 16px;
  line-height: 1.3em;
  padding-top: 4px;
  padding-bottom: 4px;
  margin: 0;
}

@media (min-width: 480px) {
  body .gform_wrapper.gravity-theme .chosen-container-multi .chosen-choices li.search-field input[type=text] {
    font-size: 16px;
  }
}
@media (min-width: 1440px) {
  body .gform_wrapper.gravity-theme .chosen-container-multi .chosen-choices li.search-field input[type=text] {
    font-size: 16px;
  }
}
@media (min-width: 2560px) {
  body .gform_wrapper.gravity-theme .chosen-container-multi .chosen-choices li.search-field input[type=text] {
    font-size: 16px;
  }
}
@media (min-width: 480px) {
  body .gform_wrapper.gravity-theme .chosen-container-multi .chosen-choices li.search-field input[type=text] {
    padding-top: 4px;
  }
}
@media (min-width: 800px) {
  body .gform_wrapper.gravity-theme .chosen-container-multi .chosen-choices li.search-field input[type=text] {
    padding-top: 4px;
  }
}
@media (min-width: 1440px) {
  body .gform_wrapper.gravity-theme .chosen-container-multi .chosen-choices li.search-field input[type=text] {
    padding-top: 4px;
  }
}
@media (min-width: 2560px) {
  body .gform_wrapper.gravity-theme .chosen-container-multi .chosen-choices li.search-field input[type=text] {
    padding-top: calc(0.0403225806vw + 2.9677419355px);
  }
}
@media (min-width: 3800px) {
  body .gform_wrapper.gravity-theme .chosen-container-multi .chosen-choices li.search-field input[type=text] {
    padding-top: 4.5px;
  }
}
@media (min-width: 480px) {
  body .gform_wrapper.gravity-theme .chosen-container-multi .chosen-choices li.search-field input[type=text] {
    padding-bottom: 4px;
  }
}
@media (min-width: 800px) {
  body .gform_wrapper.gravity-theme .chosen-container-multi .chosen-choices li.search-field input[type=text] {
    padding-bottom: 4px;
  }
}
@media (min-width: 1440px) {
  body .gform_wrapper.gravity-theme .chosen-container-multi .chosen-choices li.search-field input[type=text] {
    padding-bottom: 4px;
  }
}
@media (min-width: 2560px) {
  body .gform_wrapper.gravity-theme .chosen-container-multi .chosen-choices li.search-field input[type=text] {
    padding-bottom: calc(0.0403225806vw + 2.9677419355px);
  }
}
@media (min-width: 3800px) {
  body .gform_wrapper.gravity-theme .chosen-container-multi .chosen-choices li.search-field input[type=text] {
    padding-bottom: 4.5px;
  }
}
body .gform_wrapper.gravity-theme .chosen-container .chosen-drop {
  border: none;
  -webkit-box-shadow: 0 4px 35px rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 35px rgba(0, 0, 0, 0.05);
}

body .gform_wrapper.gravity-theme .chosen-container .chosen-results {
  max-height: 260px;
}

body .gform_wrapper.gravity-theme .chosen-container .chosen-results li {
  line-height: 1.3em;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 12px;
  padding-right: 12px;
}

@media (min-width: 480px) {
  body .gform_wrapper.gravity-theme .chosen-container .chosen-results li {
    padding-top: 8px;
  }
}
@media (min-width: 800px) {
  body .gform_wrapper.gravity-theme .chosen-container .chosen-results li {
    padding-top: 8px;
  }
}
@media (min-width: 1440px) {
  body .gform_wrapper.gravity-theme .chosen-container .chosen-results li {
    padding-top: 8px;
  }
}
@media (min-width: 2560px) {
  body .gform_wrapper.gravity-theme .chosen-container .chosen-results li {
    padding-top: calc(0.0806451613vw + 5.935483871px);
  }
}
@media (min-width: 3800px) {
  body .gform_wrapper.gravity-theme .chosen-container .chosen-results li {
    padding-top: 9px;
  }
}
@media (min-width: 480px) {
  body .gform_wrapper.gravity-theme .chosen-container .chosen-results li {
    padding-bottom: 8px;
  }
}
@media (min-width: 800px) {
  body .gform_wrapper.gravity-theme .chosen-container .chosen-results li {
    padding-bottom: 8px;
  }
}
@media (min-width: 1440px) {
  body .gform_wrapper.gravity-theme .chosen-container .chosen-results li {
    padding-bottom: 8px;
  }
}
@media (min-width: 2560px) {
  body .gform_wrapper.gravity-theme .chosen-container .chosen-results li {
    padding-bottom: calc(0.0806451613vw + 5.935483871px);
  }
}
@media (min-width: 3800px) {
  body .gform_wrapper.gravity-theme .chosen-container .chosen-results li {
    padding-bottom: 9px;
  }
}
@media (min-width: 480px) {
  body .gform_wrapper.gravity-theme .chosen-container .chosen-results li {
    padding-left: calc(1.25vw + 6px);
  }
}
@media (min-width: 800px) {
  body .gform_wrapper.gravity-theme .chosen-container .chosen-results li {
    padding-left: 16px;
  }
}
@media (min-width: 1440px) {
  body .gform_wrapper.gravity-theme .chosen-container .chosen-results li {
    padding-left: 16px;
  }
}
@media (min-width: 2560px) {
  body .gform_wrapper.gravity-theme .chosen-container .chosen-results li {
    padding-left: calc(0.1612903226vw + 11.8709677419px);
  }
}
@media (min-width: 3800px) {
  body .gform_wrapper.gravity-theme .chosen-container .chosen-results li {
    padding-left: 18px;
  }
}
@media (min-width: 480px) {
  body .gform_wrapper.gravity-theme .chosen-container .chosen-results li {
    padding-right: calc(1.25vw + 6px);
  }
}
@media (min-width: 800px) {
  body .gform_wrapper.gravity-theme .chosen-container .chosen-results li {
    padding-right: 16px;
  }
}
@media (min-width: 1440px) {
  body .gform_wrapper.gravity-theme .chosen-container .chosen-results li {
    padding-right: 16px;
  }
}
@media (min-width: 2560px) {
  body .gform_wrapper.gravity-theme .chosen-container .chosen-results li {
    padding-right: calc(0.1612903226vw + 11.8709677419px);
  }
}
@media (min-width: 3800px) {
  body .gform_wrapper.gravity-theme .chosen-container .chosen-results li {
    padding-right: 18px;
  }
}
body .gform_wrapper.gravity-theme .chosen-container-multi .chosen-choices li.search-choice {
  border: 1px solid #000000;
  padding-top: 2px;
  padding-bottom: 2px;
  padding-left: 8px;
  padding-right: 20px;
  background-color: white;
  position: relative;
  border-radius: 10000px;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #000000;
  background-image: none;
  line-height: 1.3em;
}

@media (min-width: 480px) {
  body .gform_wrapper.gravity-theme .chosen-container-multi .chosen-choices li.search-choice {
    padding-left: 8px;
  }
}
@media (min-width: 800px) {
  body .gform_wrapper.gravity-theme .chosen-container-multi .chosen-choices li.search-choice {
    padding-left: 8px;
  }
}
@media (min-width: 1440px) {
  body .gform_wrapper.gravity-theme .chosen-container-multi .chosen-choices li.search-choice {
    padding-left: 8px;
  }
}
@media (min-width: 2560px) {
  body .gform_wrapper.gravity-theme .chosen-container-multi .chosen-choices li.search-choice {
    padding-left: calc(0.0806451613vw + 5.935483871px);
  }
}
@media (min-width: 3800px) {
  body .gform_wrapper.gravity-theme .chosen-container-multi .chosen-choices li.search-choice {
    padding-left: 9px;
  }
}
@media only screen and (max-width: 641px) {
  body .gform_wrapper.gravity-theme .chosen-container-multi .chosen-choices li.search-choice {
    float: left !important;
    width: auto !important;
  }
}
body .gform_wrapper.gravity-theme .chosen-container .chosen-results li.highlighted {
  background: -webkit-gradient(linear, left top, right top, from(#4aa6dd), color-stop(21.85%, #acc9f5ff), color-stop(45.1%, #4aa6dd), color-stop(70%, #acc9f5ff), to(#acc9f5ff));
  background: linear-gradient(90deg, #4aa6dd 0%, #acc9f5ff 21.85%, #4aa6dd 45.1%, #acc9f5ff 70%, #acc9f5ff 100%);
}

body .gform_wrapper.gravity-theme select {
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: "";
  cursor: pointer;
}

body .gform_wrapper.gravity-theme input[type=submit],
body .gform_wrapper.gravity-theme input[type=button] {
  border: 1px solid #000000;
  padding-top: 4px;
  padding-bottom: 4px;
  padding-left: 12px;
  padding-right: 12px;
  position: relative;
  border-radius: 10000px;
  display: inline-block;
  background-color: transparent;
  -webkit-transition: all 0.25s ease-in;
  transition: all 0.25s ease-in;
  cursor: pointer;
}

@media (min-width: 480px) {
  body .gform_wrapper.gravity-theme input[type=submit],
body .gform_wrapper.gravity-theme input[type=button] {
    padding-top: 4px;
  }
}
@media (min-width: 800px) {
  body .gform_wrapper.gravity-theme input[type=submit],
body .gform_wrapper.gravity-theme input[type=button] {
    padding-top: 4px;
  }
}
@media (min-width: 1440px) {
  body .gform_wrapper.gravity-theme input[type=submit],
body .gform_wrapper.gravity-theme input[type=button] {
    padding-top: 4px;
  }
}
@media (min-width: 2560px) {
  body .gform_wrapper.gravity-theme input[type=submit],
body .gform_wrapper.gravity-theme input[type=button] {
    padding-top: calc(0.0403225806vw + 2.9677419355px);
  }
}
@media (min-width: 3800px) {
  body .gform_wrapper.gravity-theme input[type=submit],
body .gform_wrapper.gravity-theme input[type=button] {
    padding-top: 4.5px;
  }
}
@media (min-width: 480px) {
  body .gform_wrapper.gravity-theme input[type=submit],
body .gform_wrapper.gravity-theme input[type=button] {
    padding-bottom: 4px;
  }
}
@media (min-width: 800px) {
  body .gform_wrapper.gravity-theme input[type=submit],
body .gform_wrapper.gravity-theme input[type=button] {
    padding-bottom: 4px;
  }
}
@media (min-width: 1440px) {
  body .gform_wrapper.gravity-theme input[type=submit],
body .gform_wrapper.gravity-theme input[type=button] {
    padding-bottom: 4px;
  }
}
@media (min-width: 2560px) {
  body .gform_wrapper.gravity-theme input[type=submit],
body .gform_wrapper.gravity-theme input[type=button] {
    padding-bottom: calc(0.0403225806vw + 2.9677419355px);
  }
}
@media (min-width: 3800px) {
  body .gform_wrapper.gravity-theme input[type=submit],
body .gform_wrapper.gravity-theme input[type=button] {
    padding-bottom: 4.5px;
  }
}
@media (min-width: 480px) {
  body .gform_wrapper.gravity-theme input[type=submit],
body .gform_wrapper.gravity-theme input[type=button] {
    padding-left: calc(1.25vw + 6px);
  }
}
@media (min-width: 800px) {
  body .gform_wrapper.gravity-theme input[type=submit],
body .gform_wrapper.gravity-theme input[type=button] {
    padding-left: 16px;
  }
}
@media (min-width: 1440px) {
  body .gform_wrapper.gravity-theme input[type=submit],
body .gform_wrapper.gravity-theme input[type=button] {
    padding-left: 16px;
  }
}
@media (min-width: 2560px) {
  body .gform_wrapper.gravity-theme input[type=submit],
body .gform_wrapper.gravity-theme input[type=button] {
    padding-left: calc(0.1612903226vw + 11.8709677419px);
  }
}
@media (min-width: 3800px) {
  body .gform_wrapper.gravity-theme input[type=submit],
body .gform_wrapper.gravity-theme input[type=button] {
    padding-left: 18px;
  }
}
@media (min-width: 480px) {
  body .gform_wrapper.gravity-theme input[type=submit],
body .gform_wrapper.gravity-theme input[type=button] {
    padding-right: calc(1.25vw + 6px);
  }
}
@media (min-width: 800px) {
  body .gform_wrapper.gravity-theme input[type=submit],
body .gform_wrapper.gravity-theme input[type=button] {
    padding-right: 16px;
  }
}
@media (min-width: 1440px) {
  body .gform_wrapper.gravity-theme input[type=submit],
body .gform_wrapper.gravity-theme input[type=button] {
    padding-right: 16px;
  }
}
@media (min-width: 2560px) {
  body .gform_wrapper.gravity-theme input[type=submit],
body .gform_wrapper.gravity-theme input[type=button] {
    padding-right: calc(0.1612903226vw + 11.8709677419px);
  }
}
@media (min-width: 3800px) {
  body .gform_wrapper.gravity-theme input[type=submit],
body .gform_wrapper.gravity-theme input[type=button] {
    padding-right: 18px;
  }
}
@media (hover: hover) and (pointer: fine) {
  body .gform_wrapper.gravity-theme input[type=submit]:hover,
body .gform_wrapper.gravity-theme input[type=button]:hover {
    color: #fafafa;
    background-color: #000000;
  }
}
body .gform_wrapper.gravity-theme .ginput_address_country {
  position: relative;
}

body .gform_wrapper.gravity-theme .ginput_address_country > label {
  display: none;
}

body .gform_wrapper.gravity-theme .ginput_address_country:after {
  position: absolute;
  right: 1em;
  top: 50%;
  margin-top: -0.25em;
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border-bottom: 2px solid #000000;
  border-left: 2px solid #000000;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

body .gform_wrapper.gravity-theme .ginput_full:not(:last-of-type) {
  margin-bottom: 12px;
}

@media (min-width: 480px) {
  body .gform_wrapper.gravity-theme .ginput_full:not(:last-of-type) {
    margin-bottom: calc(2.5vw + 0px);
  }
}
@media (min-width: 800px) {
  body .gform_wrapper.gravity-theme .ginput_full:not(:last-of-type) {
    margin-bottom: 20px;
  }
}
@media (min-width: 1440px) {
  body .gform_wrapper.gravity-theme .ginput_full:not(:last-of-type) {
    margin-bottom: 20px;
  }
}
@media (min-width: 2560px) {
  body .gform_wrapper.gravity-theme .ginput_full:not(:last-of-type) {
    margin-bottom: calc(0.2016129032vw + 14.8387096774px);
  }
}
@media (min-width: 3800px) {
  body .gform_wrapper.gravity-theme .ginput_full:not(:last-of-type) {
    margin-bottom: 22.5px;
  }
}
body .gform_wrapper.gravity-theme .ginput_container_address span:not(.ginput_full):not(:last-of-type):not(:nth-last-of-type(2)),
body .gform_wrapper.gravity-theme .gform_wrapper.gravity-theme .ginput_full:not(:last-of-type) {
  margin-bottom: 12px;
}

@media (min-width: 480px) {
  body .gform_wrapper.gravity-theme .ginput_container_address span:not(.ginput_full):not(:last-of-type):not(:nth-last-of-type(2)),
body .gform_wrapper.gravity-theme .gform_wrapper.gravity-theme .ginput_full:not(:last-of-type) {
    margin-bottom: calc(2.5vw + 0px);
  }
}
@media (min-width: 800px) {
  body .gform_wrapper.gravity-theme .ginput_container_address span:not(.ginput_full):not(:last-of-type):not(:nth-last-of-type(2)),
body .gform_wrapper.gravity-theme .gform_wrapper.gravity-theme .ginput_full:not(:last-of-type) {
    margin-bottom: 20px;
  }
}
@media (min-width: 1440px) {
  body .gform_wrapper.gravity-theme .ginput_container_address span:not(.ginput_full):not(:last-of-type):not(:nth-last-of-type(2)),
body .gform_wrapper.gravity-theme .gform_wrapper.gravity-theme .ginput_full:not(:last-of-type) {
    margin-bottom: 20px;
  }
}
@media (min-width: 2560px) {
  body .gform_wrapper.gravity-theme .ginput_container_address span:not(.ginput_full):not(:last-of-type):not(:nth-last-of-type(2)),
body .gform_wrapper.gravity-theme .gform_wrapper.gravity-theme .ginput_full:not(:last-of-type) {
    margin-bottom: calc(0.2016129032vw + 14.8387096774px);
  }
}
@media (min-width: 3800px) {
  body .gform_wrapper.gravity-theme .ginput_container_address span:not(.ginput_full):not(:last-of-type):not(:nth-last-of-type(2)),
body .gform_wrapper.gravity-theme .gform_wrapper.gravity-theme .ginput_full:not(:last-of-type) {
    margin-bottom: 22.5px;
  }
}
body .gform_wrapper.gravity-theme .ginput_container_consent input[type=checkbox] {
  display: none;
}

body .gform_wrapper.gravity-theme .ginput_container_consent input[type=checkbox]:checked ~ label:after {
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
  opacity: 1;
  visibility: visible;
}

body .gform_wrapper.gravity-theme .gfield_consent_label {
  padding-left: 30px;
  position: relative;
  cursor: pointer;
  display: block;
}

body .gform_wrapper.gravity-theme .gfield_consent_label:before, body .gform_wrapper.gravity-theme .gfield_consent_label:after {
  content: "";
  display: block;
  position: absolute;
  width: 16px;
  height: 16px;
  left: 0;
  top: 0.5em;
  margin-top: -4px;
}

body .gform_wrapper.gravity-theme .gfield_consent_label:before {
  border: 1px solid #000000;
}

body .gform_wrapper.gravity-theme .gfield_consent_label:after {
  background-color: #000000;
  -webkit-transform: scale(0);
          transform: scale(0);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

body .gform_wrapper.gravity-theme .gfield_consent_label a {
  text-decoration: underline;
}

@media (hover: hover) and (pointer: fine) {
  body .gform_wrapper.gravity-theme .gfield_consent_label a:hover {
    text-decoration: none;
  }
}
body .gform_wrapper.gravity-theme .gfield_required {
  color: #fc2e2e;
}

body .gform_wrapper .ginput_container.ginput_container_select select.medium.gfield_select {
  width: 100%;
}

body .gform_wrapper .is-hidden {
  display: none;
}

.c-cta-wrapper {
  padding-top: 64px;
  padding-bottom: 64px;
  position: relative;
  z-index: 2;
}

@media (min-width: 480px) {
  .c-cta-wrapper {
    padding-top: calc(11.25vw + 10px);
  }
}
@media (min-width: 800px) {
  .c-cta-wrapper {
    padding-top: 100px;
  }
}
@media (min-width: 1440px) {
  .c-cta-wrapper {
    padding-top: 100px;
  }
}
@media (min-width: 2560px) {
  .c-cta-wrapper {
    padding-top: calc(1.0080645161vw + 74.1935483871px);
  }
}
@media (min-width: 3800px) {
  .c-cta-wrapper {
    padding-top: 112.5px;
  }
}
@media (min-width: 480px) {
  .c-cta-wrapper {
    padding-bottom: calc(11.25vw + 10px);
  }
}
@media (min-width: 800px) {
  .c-cta-wrapper {
    padding-bottom: 100px;
  }
}
@media (min-width: 1440px) {
  .c-cta-wrapper {
    padding-bottom: 100px;
  }
}
@media (min-width: 2560px) {
  .c-cta-wrapper {
    padding-bottom: calc(1.0080645161vw + 74.1935483871px);
  }
}
@media (min-width: 3800px) {
  .c-cta-wrapper {
    padding-bottom: 112.5px;
  }
}
.c-cta {
  position: relative;
}

.c-cta__top {
  width: 68.4210526316%;
}

@media (max-width: 800px) {
  .c-cta__top {
    width: 100%;
  }
}
.c-cta__top .u-a4 {
  padding-bottom: 24px;
}

@media (min-width: 480px) {
  .c-cta__top .u-a4 {
    padding-bottom: calc(5vw + 0px);
  }
}
@media (min-width: 800px) {
  .c-cta__top .u-a4 {
    padding-bottom: 40px;
  }
}
@media (min-width: 1440px) {
  .c-cta__top .u-a4 {
    padding-bottom: 40px;
  }
}
@media (min-width: 2560px) {
  .c-cta__top .u-a4 {
    padding-bottom: calc(0.4032258065vw + 29.6774193548px);
  }
}
@media (min-width: 3800px) {
  .c-cta__top .u-a4 {
    padding-bottom: 45px;
  }
}
.c-cta__center {
  position: absolute;
  top: 0;
  right: 0;
  width: 31.5789473684%;
}

@media (max-width: 800px) {
  .c-cta__center {
    width: 100%;
    position: relative;
    padding-bottom: 24px;
  }
}
@media (max-width: 800px) and (min-width: 480px) {
  .c-cta__center {
    padding-bottom: calc(5vw + 0px);
  }
}
@media (max-width: 800px) and (min-width: 800px) {
  .c-cta__center {
    padding-bottom: 40px;
  }
}
@media (max-width: 800px) and (min-width: 1440px) {
  .c-cta__center {
    padding-bottom: 40px;
  }
}
@media (max-width: 800px) and (min-width: 2560px) {
  .c-cta__center {
    padding-bottom: calc(0.4032258065vw + 29.6774193548px);
  }
}
@media (max-width: 800px) and (min-width: 3800px) {
  .c-cta__center {
    padding-bottom: 45px;
  }
}
.c-looping-text {
  width: 100%;
  padding-top: 30px !important;
  padding-bottom: 30px !important;
  position: relative;
  -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(black));
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), black);
          mask-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(black));
          mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), black);
}

.c-looping-text-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: right;
}

@media (max-width: 800px) {
  .c-looping-text-item {
    text-align: left;
  }
}
.c-dash {
  display: inline-block;
  vertical-align: middle;
  margin: 0 15px;
  overflow: hidden;
  position: relative;
  /*&:after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 200%;
      height: 100%;
      background: inherit;
      animation: 2s gradient linear infinite alternate;
  }*/
}

@media (max-width: 800px) {
  .c-dash {
    margin: 0 10px;
    width: 24px;
  }
}
.c-full-image {
  padding-top: 64px;
  padding-bottom: 64px;
}

@media (min-width: 480px) {
  .c-full-image {
    padding-top: calc(11.25vw + 10px);
  }
}
@media (min-width: 800px) {
  .c-full-image {
    padding-top: 100px;
  }
}
@media (min-width: 1440px) {
  .c-full-image {
    padding-top: 100px;
  }
}
@media (min-width: 2560px) {
  .c-full-image {
    padding-top: calc(1.0080645161vw + 74.1935483871px);
  }
}
@media (min-width: 3800px) {
  .c-full-image {
    padding-top: 112.5px;
  }
}
@media (min-width: 480px) {
  .c-full-image {
    padding-bottom: calc(11.25vw + 10px);
  }
}
@media (min-width: 800px) {
  .c-full-image {
    padding-bottom: 100px;
  }
}
@media (min-width: 1440px) {
  .c-full-image {
    padding-bottom: 100px;
  }
}
@media (min-width: 2560px) {
  .c-full-image {
    padding-bottom: calc(1.0080645161vw + 74.1935483871px);
  }
}
@media (min-width: 3800px) {
  .c-full-image {
    padding-bottom: 112.5px;
  }
}
.c-full-image__inner {
  width: 100%;
  height: auto;
  position: relative;
  cursor: none;
}

@media (max-width: 480px) {
  .c-full-image__inner {
    cursor: pointer;
  }
}
.c-background-image-content__inner {
  position: relative;
  z-index: 3;
}

.c-background-image-content__image {
  padding-bottom: 56.25%;
  position: relative;
}

@media (max-width: 800px) {
  .c-background-image-content__image {
    padding-bottom: 100%;
  }
}
.c-background-image-content__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 480px) {
  .c-background-image-content__image img {
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: bottom right;
       object-position: bottom right;
  }
}
.c-background-image-content__content {
  padding: 40px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (min-width: 480px) {
  .c-background-image-content__content {
    padding: calc(7.5vw + 4px);
  }
}
@media (min-width: 800px) {
  .c-background-image-content__content {
    padding: 64px;
  }
}
@media (min-width: 1440px) {
  .c-background-image-content__content {
    padding: 64px;
  }
}
@media (min-width: 2560px) {
  .c-background-image-content__content {
    padding: calc(0.6451612903vw + 47.4838709677px);
  }
}
@media (min-width: 3800px) {
  .c-background-image-content__content {
    padding: 72px;
  }
}
.c-background-image-content__eyebrow {
  padding-bottom: 8px;
}

@media (min-width: 480px) {
  .c-background-image-content__eyebrow {
    padding-bottom: calc(1.25vw + 2px);
  }
}
@media (min-width: 800px) {
  .c-background-image-content__eyebrow {
    padding-bottom: 12px;
  }
}
@media (min-width: 1440px) {
  .c-background-image-content__eyebrow {
    padding-bottom: 12px;
  }
}
@media (min-width: 2560px) {
  .c-background-image-content__eyebrow {
    padding-bottom: calc(0.1209677419vw + 8.9032258065px);
  }
}
@media (min-width: 3800px) {
  .c-background-image-content__eyebrow {
    padding-bottom: 13.5px;
  }
}
.c-background-image-content__title {
  padding-bottom: 12px;
  max-width: 450px;
}

@media (min-width: 480px) {
  .c-background-image-content__title {
    padding-bottom: calc(2.5vw + 0px);
  }
}
@media (min-width: 800px) {
  .c-background-image-content__title {
    padding-bottom: 20px;
  }
}
@media (min-width: 1440px) {
  .c-background-image-content__title {
    padding-bottom: 20px;
  }
}
@media (min-width: 2560px) {
  .c-background-image-content__title {
    padding-bottom: calc(0.2016129032vw + 14.8387096774px);
  }
}
@media (min-width: 3800px) {
  .c-background-image-content__title {
    padding-bottom: 22.5px;
  }
}
@media (min-width: 1440px) {
  .c-background-image-content__title {
    max-width: calc(5.0223214286vw + 377.6785714286px);
  }
}
@media (min-width: 2560px) {
  .c-background-image-content__title {
    max-width: 506.25px;
  }
}
.c-background-image-content__description {
  max-width: 400px;
  padding-bottom: 12px;
}

@media (min-width: 1440px) {
  .c-background-image-content__description {
    max-width: calc(4.4642857143vw + 335.7142857143px);
  }
}
@media (min-width: 2560px) {
  .c-background-image-content__description {
    max-width: 450px;
  }
}
@media (min-width: 480px) {
  .c-background-image-content__description {
    padding-bottom: calc(2.5vw + 0px);
  }
}
@media (min-width: 800px) {
  .c-background-image-content__description {
    padding-bottom: 20px;
  }
}
@media (min-width: 1440px) {
  .c-background-image-content__description {
    padding-bottom: 20px;
  }
}
@media (min-width: 2560px) {
  .c-background-image-content__description {
    padding-bottom: calc(0.2016129032vw + 14.8387096774px);
  }
}
@media (min-width: 3800px) {
  .c-background-image-content__description {
    padding-bottom: 22.5px;
  }
}
.c-background-image-content--center {
  text-align: center;
}

.c-background-image-content--center .c-background-image-content__content {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-background-image-content--top-right .c-background-image-content__content {
  left: unset;
  right: 0;
  top: 0;
  width: auto;
  height: auto;
}

.c-background-image-content--top-right .c-background-image-content__description {
  margin-left: 0;
  margin-right: auto;
}

.c-background-image-content--top-left .c-background-image-content__content {
  left: 0;
  right: unset;
  top: 0;
  width: auto;
  height: auto;
}

.c-background-image-content--bottom-left .c-background-image-content__content {
  top: unset;
  right: unset;
  left: 0;
  bottom: 0;
  width: auto;
  height: auto;
}

.c-background-image-content--bottom-right .c-background-image-content__content {
  top: unset;
  right: 0;
  left: unset;
  bottom: 0;
  width: auto;
  height: auto;
}

.c-background-image-content--theme-dark {
  color: #fafafa;
}

.c-image-content__inner {
  padding-top: 56px;
  padding-bottom: 56px;
  position: relative;
  z-index: 3;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (min-width: 480px) {
  .c-image-content__inner {
    padding-top: calc(7.5vw + 20px);
  }
}
@media (min-width: 800px) {
  .c-image-content__inner {
    padding-top: 80px;
  }
}
@media (min-width: 1440px) {
  .c-image-content__inner {
    padding-top: 80px;
  }
}
@media (min-width: 2560px) {
  .c-image-content__inner {
    padding-top: calc(0.8064516129vw + 59.3548387097px);
  }
}
@media (min-width: 3800px) {
  .c-image-content__inner {
    padding-top: 90px;
  }
}
@media (min-width: 480px) {
  .c-image-content__inner {
    padding-bottom: calc(7.5vw + 20px);
  }
}
@media (min-width: 800px) {
  .c-image-content__inner {
    padding-bottom: 80px;
  }
}
@media (min-width: 1440px) {
  .c-image-content__inner {
    padding-bottom: 80px;
  }
}
@media (min-width: 2560px) {
  .c-image-content__inner {
    padding-bottom: calc(0.8064516129vw + 59.3548387097px);
  }
}
@media (min-width: 3800px) {
  .c-image-content__inner {
    padding-bottom: 90px;
  }
}
.c-image-content__image {
  margin-left: 4.5454545455%;
  width: 50%;
}

@media (max-width: 800px) {
  .c-image-content__image {
    width: 31.8181818182%;
  }
}
@media (max-width: 480px) {
  .c-image-content__image {
    width: 100%;
    margin-left: 0;
  }
}
.c-image-content__image-inner {
  position: relative;
  height: 0;
  width: 100%;
  padding-bottom: 75%;
}

.c-image-content__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.c-image-content__content {
  padding-left: 40px;
  padding-right: 40px;
  width: 45.4545454545%;
  position: relative;
  z-index: 2;
  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;
}

@media (min-width: 480px) {
  .c-image-content__content {
    padding-left: calc(7.5vw + 4px);
  }
}
@media (min-width: 800px) {
  .c-image-content__content {
    padding-left: 64px;
  }
}
@media (min-width: 1440px) {
  .c-image-content__content {
    padding-left: 64px;
  }
}
@media (min-width: 2560px) {
  .c-image-content__content {
    padding-left: calc(0.6451612903vw + 47.4838709677px);
  }
}
@media (min-width: 3800px) {
  .c-image-content__content {
    padding-left: 72px;
  }
}
@media (min-width: 480px) {
  .c-image-content__content {
    padding-right: calc(7.5vw + 4px);
  }
}
@media (min-width: 800px) {
  .c-image-content__content {
    padding-right: 64px;
  }
}
@media (min-width: 1440px) {
  .c-image-content__content {
    padding-right: 64px;
  }
}
@media (min-width: 2560px) {
  .c-image-content__content {
    padding-right: calc(0.6451612903vw + 47.4838709677px);
  }
}
@media (min-width: 3800px) {
  .c-image-content__content {
    padding-right: 72px;
  }
}
@media (max-width: 800px) {
  .c-image-content__content {
    padding-left: 4.1666666667%;
    padding-right: 4.1666666667%;
    width: 63.6363636364%;
  }
}
@media (max-width: 480px) {
  .c-image-content__content {
    width: 100%;
  }
}
.c-image-content__eyebrow {
  padding-bottom: 8px;
}

@media (min-width: 480px) {
  .c-image-content__eyebrow {
    padding-bottom: calc(1.25vw + 2px);
  }
}
@media (min-width: 800px) {
  .c-image-content__eyebrow {
    padding-bottom: 12px;
  }
}
@media (min-width: 1440px) {
  .c-image-content__eyebrow {
    padding-bottom: 12px;
  }
}
@media (min-width: 2560px) {
  .c-image-content__eyebrow {
    padding-bottom: calc(0.1209677419vw + 8.9032258065px);
  }
}
@media (min-width: 3800px) {
  .c-image-content__eyebrow {
    padding-bottom: 13.5px;
  }
}
.c-image-content__title {
  padding-bottom: 12px;
}

@media (min-width: 480px) {
  .c-image-content__title {
    padding-bottom: calc(2.5vw + 0px);
  }
}
@media (min-width: 800px) {
  .c-image-content__title {
    padding-bottom: 20px;
  }
}
@media (min-width: 1440px) {
  .c-image-content__title {
    padding-bottom: 20px;
  }
}
@media (min-width: 2560px) {
  .c-image-content__title {
    padding-bottom: calc(0.2016129032vw + 14.8387096774px);
  }
}
@media (min-width: 3800px) {
  .c-image-content__title {
    padding-bottom: 22.5px;
  }
}
.c-image-content__description {
  max-width: 640px;
  padding-bottom: 12px;
}

@media (min-width: 1440px) {
  .c-image-content__description {
    max-width: calc(7.1428571429vw + 537.1428571429px);
  }
}
@media (min-width: 2560px) {
  .c-image-content__description {
    max-width: 720px;
  }
}
@media (min-width: 480px) {
  .c-image-content__description {
    padding-bottom: calc(2.5vw + 0px);
  }
}
@media (min-width: 800px) {
  .c-image-content__description {
    padding-bottom: 20px;
  }
}
@media (min-width: 1440px) {
  .c-image-content__description {
    padding-bottom: 20px;
  }
}
@media (min-width: 2560px) {
  .c-image-content__description {
    padding-bottom: calc(0.2016129032vw + 14.8387096774px);
  }
}
@media (min-width: 3800px) {
  .c-image-content__description {
    padding-bottom: 22.5px;
  }
}
.c-image-content__description img {
  max-height: 150px;
  max-width: 50%;
}

@media (min-width: 1440px) {
  .c-image-content__description img {
    max-height: calc(1.6741071429vw + 125.8928571429px);
  }
}
@media (min-width: 2560px) {
  .c-image-content__description img {
    max-height: 168.75px;
  }
}
.c-image-content__description h1,
.c-image-content__description h2,
.c-image-content__description h3,
.c-image-content__description h4,
.c-image-content__description h5,
.c-image-content__description h6,
.c-image-content__description p {
  margin-bottom: 1em;
}

.c-image-content__description h1:last-child,
.c-image-content__description h2:last-child,
.c-image-content__description h3:last-child,
.c-image-content__description h4:last-child,
.c-image-content__description h5:last-child,
.c-image-content__description h6:last-child,
.c-image-content__description p:last-child {
  margin-bottom: 0;
}

.c-image-content--center-left .c-image-content__image {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.c-image-content--center-left .c-image-content__content {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  -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-image-content--center-left .c-image-content__deskription {
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 480px) {
  .c-image-content--center-left .c-image-content__image-inner {
    margin-top: 40px;
  }
}
.c-image-content--center-right .c-image-content__image {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.c-image-content--center-right .c-image-content__content {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  -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-image-content--center-right .c-image-content__deskription {
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 480px) {
  .c-image-content--center-right .c-image-content__image-inner {
    margin-bottom: 40px;
  }
}
.c-image-content--top-left .c-image-content__image {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.c-image-content--top-left .c-image-content__content {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.c-image-content--top-left .c-image-content__deskription {
  margin-right: auto;
}

@media (max-width: 480px) {
  .c-image-content--top-left .c-image-content__image-inner {
    margin-top: 40px;
  }
}
.c-image-content--bottom-left .c-image-content__image {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.c-image-content--bottom-left .c-image-content__content {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  -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;
}

.c-image-content--bottom-left .c-image-content__deskription {
  margin-right: auto;
}

@media (max-width: 480px) {
  .c-image-content--bottom-left .c-image-content__image-inner {
    margin-top: 40px;
  }
}
.c-image-content--top-right .c-image-content__image {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.c-image-content--top-right .c-image-content__content {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.c-image-content--top-right .c-image-content__description {
  margin-left: auto;
}

@media (max-width: 480px) {
  .c-image-content--top-right .c-image-content__image-inner {
    margin-bottom: 40px;
  }
}
.c-image-content--bottom-right .c-image-content__image {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.c-image-content--bottom-right .c-image-content__content {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  -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;
}

.c-image-content--bottom-right .c-image-content__deskription {
  margin-left: auto;
}

@media (max-width: 480px) {
  .c-image-content--bottom-right .c-image-content__image-inner {
    margin-bottom: 40px;
  }
}
.c-image-content--theme-dark {
  background-color: #161617;
  color: #fafafa;
}

.c-video-header__background {
  position: relative;
  width: 100%;
  display: block;
  height: 100svh;
}

@media (max-width: 480px) {
  .c-video-header__background {
    height: 100svh;
  }
}
.c-video-header__container {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.c-video-header__video {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  opacity: 1;
  width: 100%;
}

.c-video-header--bottom-right .c-video-header__image {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.c-video-header--bottom-right .c-video-header__content {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  -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;
}

.c-video-header--bottom-right .c-video-header__deskription {
  margin-left: auto;
}

@media (max-width: 480px) {
  .c-video-header--bottom-right .c-video-header__image-inner {
    margin-bottom: 40px;
  }
}
/**
 * Modules
 */
.c-zoom-out-module {
  padding-bottom: 64px;
}

@media (min-width: 480px) {
  .c-zoom-out-module {
    padding-bottom: calc(11.25vw + 10px);
  }
}
@media (min-width: 800px) {
  .c-zoom-out-module {
    padding-bottom: 100px;
  }
}
@media (min-width: 1440px) {
  .c-zoom-out-module {
    padding-bottom: 100px;
  }
}
@media (min-width: 2560px) {
  .c-zoom-out-module {
    padding-bottom: calc(1.0080645161vw + 74.1935483871px);
  }
}
@media (min-width: 3800px) {
  .c-zoom-out-module {
    padding-bottom: 112.5px;
  }
}
.c-zoom-out-module__inner {
  position: relative;
  overflow: hidden;
}

.c-zoom-out-module__pin {
  position: relative;
}

.c-zoom-out-module__image {
  width: 100%;
  height: 100vh;
  position: relative;
}

.c-zoom-out-module__title {
  padding-top: 80px;
  padding-left: 5%;
  padding-right: 5%;
  position: absolute;
  top: 0;
  left: 0;
  color: #fafafa;
  text-align: center;
  width: 100%;
}

@media (min-width: 480px) {
  .c-zoom-out-module__title {
    padding-top: calc(25vw - 40px);
  }
}
@media (min-width: 800px) {
  .c-zoom-out-module__title {
    padding-top: 160px;
  }
}
@media (min-width: 1440px) {
  .c-zoom-out-module__title {
    padding-top: 160px;
  }
}
@media (min-width: 2560px) {
  .c-zoom-out-module__title {
    padding-top: calc(1.6129032258vw + 118.7096774194px);
  }
}
@media (min-width: 3800px) {
  .c-zoom-out-module__title {
    padding-top: 180px;
  }
}
.c-zoom-out-module__bottom-shadow {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 50vh;
  background: -webkit-gradient(linear, left bottom, left top, from(white), color-stop(15%, white), to(transparent));
  background: linear-gradient(0deg, white, white 15%, transparent);
}

.c-image-content-module {
  display: grid;
  grid-template-columns: 3fr 5fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4.1666666667vw;
}

@media (max-width: 1140px) {
  .c-image-content-module {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 800px) {
  .c-image-content-module {
    grid-template-columns: 1fr;
  }
}
.c-image-content-module__media {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  overflow: hidden;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

@media (max-width: 800px) {
  .c-image-content-module__media {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
}
.c-image-content-module__title {
  padding-bottom: 12px;
}

@media (min-width: 480px) {
  .c-image-content-module__title {
    padding-bottom: calc(2.5vw + 0px);
  }
}
@media (min-width: 800px) {
  .c-image-content-module__title {
    padding-bottom: 20px;
  }
}
@media (min-width: 1440px) {
  .c-image-content-module__title {
    padding-bottom: 20px;
  }
}
@media (min-width: 2560px) {
  .c-image-content-module__title {
    padding-bottom: calc(0.2016129032vw + 14.8387096774px);
  }
}
@media (min-width: 3800px) {
  .c-image-content-module__title {
    padding-bottom: 22.5px;
  }
}
.c-image-content-module--flipped {
  grid-template-columns: 5fr 3fr;
}

@media (max-width: 1140px) {
  .c-image-content-module--flipped {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 800px) {
  .c-image-content-module--flipped {
    grid-template-columns: 1fr;
  }
}
.c-image-content-module--flipped .c-image-content-module__media {
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
}

.c-image-content-module--flipped .c-image-content-module__content {
  padding-right: 0;
}

.c-image-content-module__video {
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-image-content-module__replay-button {
  all: unset;
  right: 12px;
  bottom: 12px;
  width: 40px;
  height: 40px;
  position: absolute;
  z-index: 2;
  color: #fafafa;
  border: 1px solid #fafafa;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
}

@media (min-width: 480px) {
  .c-image-content-module__replay-button {
    right: calc(2.5vw + 0px);
  }
}
@media (min-width: 800px) {
  .c-image-content-module__replay-button {
    right: 20px;
  }
}
@media (min-width: 1440px) {
  .c-image-content-module__replay-button {
    right: 20px;
  }
}
@media (min-width: 2560px) {
  .c-image-content-module__replay-button {
    right: calc(0.2016129032vw + 14.8387096774px);
  }
}
@media (min-width: 3800px) {
  .c-image-content-module__replay-button {
    right: 22.5px;
  }
}
@media (min-width: 480px) {
  .c-image-content-module__replay-button {
    bottom: calc(2.5vw + 0px);
  }
}
@media (min-width: 800px) {
  .c-image-content-module__replay-button {
    bottom: 20px;
  }
}
@media (min-width: 1440px) {
  .c-image-content-module__replay-button {
    bottom: 20px;
  }
}
@media (min-width: 2560px) {
  .c-image-content-module__replay-button {
    bottom: calc(0.2016129032vw + 14.8387096774px);
  }
}
@media (min-width: 3800px) {
  .c-image-content-module__replay-button {
    bottom: 22.5px;
  }
}
@media (min-width: 1440px) {
  .c-image-content-module__replay-button {
    width: calc(0.4464285714vw + 33.5714285714px);
  }
}
@media (min-width: 2560px) {
  .c-image-content-module__replay-button {
    width: 45px;
  }
}
@media (min-width: 1440px) {
  .c-image-content-module__replay-button {
    height: calc(0.4464285714vw + 33.5714285714px);
  }
}
@media (min-width: 2560px) {
  .c-image-content-module__replay-button {
    height: 45px;
  }
}
.is-ended .c-image-content-module__replay-button {
  opacity: 1;
  visibility: visible;
}

/**
 * Image sequence section
 */
.c-image-sequence-section-new {
  z-index: 1;
  position: relative;
}

.c-image-sequence-section-new__inner {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 480px) {
  .c-image-sequence-section-new__inner {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.c-image-sequence-section-new__content {
  padding-top: 40px;
  padding-bottom: 40px;
  padding-left: 4.1666666667%;
  padding-right: 4.1666666667%;
  width: 33.3333333333%;
  min-height: 33.33vh;
  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;
}

@media (min-width: 480px) {
  .c-image-sequence-section-new__content {
    padding-top: calc(7.5vw + 4px);
  }
}
@media (min-width: 800px) {
  .c-image-sequence-section-new__content {
    padding-top: 64px;
  }
}
@media (min-width: 1440px) {
  .c-image-sequence-section-new__content {
    padding-top: 64px;
  }
}
@media (min-width: 2560px) {
  .c-image-sequence-section-new__content {
    padding-top: calc(0.6451612903vw + 47.4838709677px);
  }
}
@media (min-width: 3800px) {
  .c-image-sequence-section-new__content {
    padding-top: 72px;
  }
}
@media (min-width: 480px) {
  .c-image-sequence-section-new__content {
    padding-bottom: calc(7.5vw + 4px);
  }
}
@media (min-width: 800px) {
  .c-image-sequence-section-new__content {
    padding-bottom: 64px;
  }
}
@media (min-width: 1440px) {
  .c-image-sequence-section-new__content {
    padding-bottom: 64px;
  }
}
@media (min-width: 2560px) {
  .c-image-sequence-section-new__content {
    padding-bottom: calc(0.6451612903vw + 47.4838709677px);
  }
}
@media (min-width: 3800px) {
  .c-image-sequence-section-new__content {
    padding-bottom: 72px;
  }
}
@media (max-width: 1140px) {
  .c-image-sequence-section-new__content {
    width: 50%;
  }
}
@media (max-width: 800px) {
  .c-image-sequence-section-new__content {
    width: 66.6666666667%;
  }
}
@media (max-width: 480px) {
  .c-image-sequence-section-new__content {
    width: 100%;
    min-height: 1px;
    background-color: white;
  }
}
.c-image-sequence-section-new__content .c-button {
  margin-top: 8px;
}

@media (min-width: 480px) {
  .c-image-sequence-section-new__content .c-button {
    margin-top: calc(1.25vw + 2px);
  }
}
@media (min-width: 800px) {
  .c-image-sequence-section-new__content .c-button {
    margin-top: 12px;
  }
}
@media (min-width: 1440px) {
  .c-image-sequence-section-new__content .c-button {
    margin-top: 12px;
  }
}
@media (min-width: 2560px) {
  .c-image-sequence-section-new__content .c-button {
    margin-top: calc(0.1209677419vw + 8.9032258065px);
  }
}
@media (min-width: 3800px) {
  .c-image-sequence-section-new__content .c-button {
    margin-top: 13.5px;
  }
}
.c-image-sequence-section-new__content--big {
  width: 100%;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-image-sequence-section-new__description {
  margin-top: 16px;
}

@media (min-width: 480px) {
  .c-image-sequence-section-new__description {
    margin-top: calc(2.5vw + 4px);
  }
}
@media (min-width: 800px) {
  .c-image-sequence-section-new__description {
    margin-top: 24px;
  }
}
@media (min-width: 1440px) {
  .c-image-sequence-section-new__description {
    margin-top: 24px;
  }
}
@media (min-width: 2560px) {
  .c-image-sequence-section-new__description {
    margin-top: calc(0.2419354839vw + 17.8064516129px);
  }
}
@media (min-width: 3800px) {
  .c-image-sequence-section-new__description {
    margin-top: 27px;
  }
}
.c-image-sequence-section-new__description span {
  color: #4aa6dd;
}

.c-image-sequence-section-new__title--big {
  max-width: 10.9090909091em;
}

/**
 * Pages
 */
/**
 * Pages
 */
.is-dark {
  background-color: #161617;
  color: #fafafa;
}

/**
 * Utilities
 */
/**
 * Utilities
 */
.u-icon {
  display: inline-block;
  width: 1em;
  height: 100%;
  stroke-width: 0;
  stroke: currentColor;
  fill: currentColor;
}

.u-a4 {
  font-size: 42px;
  font-family: "Avenir Next Bold", sans-serif;
  line-height: 1.01;
  letter-spacing: -0.03em;
}

@media (min-width: 480px) {
  .u-a4 {
    font-size: calc(4.7916666667vw + 19px);
  }
}
@media (min-width: 1440px) {
  .u-a4 {
    font-size: 88px;
  }
}
@media (min-width: 2560px) {
  .u-a4 {
    font-size: 88px;
  }
}
@media (min-width: 3800px) {
  .u-a4 {
    font-size: 88px;
  }
}
.u-a3, .c-image-sequence-section--2-2 .c-image-sequence-section__title {
  font-size: 28px;
  font-family: "Avenir Next Bold", sans-serif;
  line-height: 1.2;
  letter-spacing: normal;
}

@media (min-width: 480px) {
  .u-a3, .c-image-sequence-section--2-2 .c-image-sequence-section__title {
    font-size: calc(3.75vw + 10px);
  }
}
@media (min-width: 800px) {
  .u-a3, .c-image-sequence-section--2-2 .c-image-sequence-section__title {
    font-size: 40px;
  }
}
@media (min-width: 1140px) {
  .u-a3, .c-image-sequence-section--2-2 .c-image-sequence-section__title {
    font-size: 40px;
  }
}
@media (min-width: 1440px) {
  .u-a3, .c-image-sequence-section--2-2 .c-image-sequence-section__title {
    font-size: 40px;
  }
}
@media (min-width: 2560px) {
  .u-a3, .c-image-sequence-section--2-2 .c-image-sequence-section__title {
    font-size: 40px;
  }
}
@media (min-width: 3800px) {
  .u-a3, .c-image-sequence-section--2-2 .c-image-sequence-section__title {
    font-size: 40px;
  }
}
.u-a3--1 {
  font-size: 32px;
}

@media (min-width: 480px) {
  .u-a3--1 {
    font-size: calc(2.5vw + 20px);
  }
}
@media (min-width: 800px) {
  .u-a3--1 {
    font-size: calc(2.3529411765vw + 21.1764705882px);
  }
}
@media (min-width: 1140px) {
  .u-a3--1 {
    font-size: calc(2.6666666667vw + 17.6px);
  }
}
@media (min-width: 1440px) {
  .u-a3--1 {
    font-size: 56px;
  }
}
@media (min-width: 2560px) {
  .u-a3--1 {
    font-size: 56px;
  }
}
@media (min-width: 3800px) {
  .u-a3--1 {
    font-size: 56px;
  }
}
.u-a2 {
  font-size: 26px;
  font-family: "Avenir Next Bold", sans-serif;
  line-height: 1.2;
  letter-spacing: normal;
}

@media (min-width: 480px) {
  .u-a2 {
    font-size: calc(0.4166666667vw + 24px);
  }
}
@media (min-width: 1440px) {
  .u-a2 {
    font-size: 30px;
  }
}
@media (min-width: 2560px) {
  .u-a2 {
    font-size: 30px;
  }
}
.u-a1 {
  font-size: 22px;
  font-family: "Avenir Next Regular", sans-serif;
  line-height: 1.3;
  letter-spacing: normal;
}

@media (min-width: 480px) {
  .u-a1 {
    font-size: 22px;
  }
}
@media (min-width: 1440px) {
  .u-a1 {
    font-size: 22px;
  }
}
@media (min-width: 2560px) {
  .u-a1 {
    font-size: 22px;
  }
}
.u-a1--1 {
  font-size: 19px;
}

@media (min-width: 480px) {
  .u-a1--1 {
    font-size: 19px;
  }
}
@media (min-width: 800px) {
  .u-a1--1 {
    font-size: calc(0.3125vw + 16.5px);
  }
}
@media (min-width: 1440px) {
  .u-a1--1 {
    font-size: 21px;
  }
}
@media (min-width: 2560px) {
  .u-a1--1 {
    font-size: 21px;
  }
}
.u-a1--2 {
  font-size: 19px;
}

@media (min-width: 480px) {
  .u-a1--2 {
    font-size: 19px;
  }
}
@media (min-width: 800px) {
  .u-a1--2 {
    font-size: calc(0.8823529412vw + 11.9411764706px);
  }
}
@media (min-width: 1140px) {
  .u-a1--2 {
    font-size: calc(2vw - 0.8px);
  }
}
@media (min-width: 1440px) {
  .u-a1--2 {
    font-size: 28px;
  }
}
@media (min-width: 2560px) {
  .u-a1--2 {
    font-size: 28px;
  }
}
.u-b0, html,
body {
  font-size: 16px;
  font-family: "Avenir Next Regular", sans-serif;
  line-height: 1.2;
  letter-spacing: normal;
}

@media (min-width: 480px) {
  .u-b0, html,
body {
    font-size: 16px;
  }
}
@media (min-width: 1440px) {
  .u-b0, html,
body {
    font-size: 16px;
  }
}
@media (min-width: 2560px) {
  .u-b0, html,
body {
    font-size: 16px;
  }
}
.u-b0--alt, .c-menu-link {
  font-family: "Avenir Next Bold", sans-serif;
}

.u-b0--nav, .c-button {
  font-size: 14px;
}

@media (min-width: 480px) {
  .u-b0--nav, .c-button {
    font-size: 14px;
  }
}
@media (min-width: 1440px) {
  .u-b0--nav, .c-button {
    font-size: 14px;
  }
}
@media (min-width: 2560px) {
  .u-b0--nav, .c-button {
    font-size: 14px;
  }
}
.u-b1 {
  font-size: 14px;
  font-family: "Avenir Next Regular", sans-serif;
  line-height: 1.25;
  letter-spacing: normal;
}

@media (min-width: 480px) {
  .u-b1 {
    font-size: 14px;
  }
}
@media (min-width: 1440px) {
  .u-b1 {
    font-size: 14px;
  }
}
@media (min-width: 2560px) {
  .u-b1 {
    font-size: 14px;
  }
}
.u-b2, .c-secondary-navigation .c-menu-link {
  font-size: 14px;
  font-family: "Avenir Next Regular", sans-serif;
  line-height: 1.1;
  letter-spacing: normal;
}

@media (min-width: 480px) {
  .u-b2, .c-secondary-navigation .c-menu-link {
    font-size: 14px;
  }
}
@media (min-width: 1440px) {
  .u-b2, .c-secondary-navigation .c-menu-link {
    font-size: 14px;
  }
}
@media (min-width: 2560px) {
  .u-b2, .c-secondary-navigation .c-menu-link {
    font-size: 14px;
  }
}
.u-font-primary {
  font-family: "Avenir Next Regular", sans-serif;
}

.u-font-secondary {
  font-family: "Avenir Next Bold", sans-serif;
}

.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 {
  font-weight: 700;
}

.u-fw-extra-bold,
.u-fw-800 {
  font-weight: 800;
}

.u-fw-black,
.u-fw-900 {
  font-weight: 900;
}

.u-image-wrapper {
  position: relative;
  overflow: hidden;
}

.u-image-wrapper.js-image-wrapper i {
  display: block;
}

.u-image-wrapper i {
  position: absolute;
  top: -5%;
  left: -5%;
  width: 110%;
  height: 110%;
  background-color: #161617;
  z-index: 1;
  display: none;
}

.u-image-wrapper__inner {
  height: 0;
  width: 100%;
  padding-top: 100%;
  overflow: hidden;
}

.u-image-wrapper img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.u-image-wrapper--auto .u-image-wrapper__inner {
  padding-top: 0;
  height: auto;
}

.u-image-wrapper--auto .u-image-wrapper__inner img {
  position: relative;
}

.u-image-wrapper--1-1 .u-image-wrapper__inner {
  padding-top: 100%;
}

.u-image-wrapper--2-1 .u-image-wrapper__inner {
  padding-top: 50%;
}

.u-image-wrapper--1-2 .u-image-wrapper__inner {
  padding-top: 200%;
}

.u-image-wrapper--16-9 .u-image-wrapper__inner {
  padding-top: 56.25%;
}

.u-image-wrapper--9-16 .u-image-wrapper__inner {
  padding-top: 177.7777777778%;
}

.u-image-wrapper--4-3 .u-image-wrapper__inner {
  padding-top: 75%;
}

.u-image-wrapper--3-4 .u-image-wrapper__inner {
  padding-top: 133.3333333333%;
}

.u-image-wrapper--7-6 .u-image-wrapper__inner {
  padding-top: 85.7142857143%;
}

.u-image-wrapper--full {
  width: 100%;
  height: 100%;
}

.u-image-wrapper--full .u-image-wrapper__inner {
  padding-top: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.u-rte > h3 {
  padding-top: 64px;
}

@media (min-width: 480px) {
  .u-rte > h3 {
    padding-top: calc(11.25vw + 10px);
  }
}
@media (min-width: 800px) {
  .u-rte > h3 {
    padding-top: 100px;
  }
}
@media (min-width: 1440px) {
  .u-rte > h3 {
    padding-top: 100px;
  }
}
@media (min-width: 2560px) {
  .u-rte > h3 {
    padding-top: calc(1.0080645161vw + 74.1935483871px);
  }
}
@media (min-width: 3800px) {
  .u-rte > h3 {
    padding-top: 112.5px;
  }
}
.u-rte > h4 {
  padding-top: 24px;
}

@media (min-width: 480px) {
  .u-rte > h4 {
    padding-top: calc(5vw + 0px);
  }
}
@media (min-width: 800px) {
  .u-rte > h4 {
    padding-top: 40px;
  }
}
@media (min-width: 1440px) {
  .u-rte > h4 {
    padding-top: 40px;
  }
}
@media (min-width: 2560px) {
  .u-rte > h4 {
    padding-top: calc(0.4032258065vw + 29.6774193548px);
  }
}
@media (min-width: 3800px) {
  .u-rte > h4 {
    padding-top: 45px;
  }
}
.u-rte > h1,
.u-rte > h2,
.u-rte > h3,
.u-rte > h4 {
  margin-left: 33.3333333333%;
  max-width: 780px;
  width: 100%;
}

@media (min-width: 1440px) {
  .u-rte > h1,
.u-rte > h2,
.u-rte > h3,
.u-rte > h4 {
    max-width: calc(8.7053571429vw + 654.6428571429px);
  }
}
@media (min-width: 2560px) {
  .u-rte > h1,
.u-rte > h2,
.u-rte > h3,
.u-rte > h4 {
    max-width: 877.5px;
  }
}
@media (max-width: 1140px) {
  .u-rte > h1,
.u-rte > h2,
.u-rte > h3,
.u-rte > h4 {
    margin-left: 12.5%;
    max-width: 85%;
  }
}
@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 {
    margin-left: 0;
    padding-left: 4.1666666667%;
    padding-right: 4.1666666667%;
  }
}
.u-rte > h1 a,
.u-rte > h2 a,
.u-rte > h3 a,
.u-rte > h4 a {
  text-decoration: underline;
}

.u-rte > h5,
.u-rte > h6,
.u-rte > p,
.u-rte > cite,
.u-rte > ul,
.u-rte > ol {
  margin-left: 33.3333333333%;
  max-width: 660px;
  width: 100%;
}

@media (min-width: 1440px) {
  .u-rte > h5,
.u-rte > h6,
.u-rte > p,
.u-rte > cite,
.u-rte > ul,
.u-rte > ol {
    max-width: calc(7.3660714286vw + 553.9285714286px);
  }
}
@media (min-width: 2560px) {
  .u-rte > h5,
.u-rte > h6,
.u-rte > p,
.u-rte > cite,
.u-rte > ul,
.u-rte > ol {
    max-width: 742.5px;
  }
}
@media (max-width: 1140px) {
  .u-rte > h5,
.u-rte > h6,
.u-rte > p,
.u-rte > cite,
.u-rte > ul,
.u-rte > ol {
    margin-left: 12.5%;
  }
}
@media (max-width: 800px) {
  .u-rte > h5,
.u-rte > h6,
.u-rte > p,
.u-rte > cite,
.u-rte > ul,
.u-rte > ol {
    margin-left: 0;
    padding-left: 4.1666666667%;
    padding-right: 4.1666666667%;
  }
}
.u-rte > h5 a,
.u-rte > h6 a,
.u-rte > p a,
.u-rte > cite a,
.u-rte > ul a,
.u-rte > ol a {
  text-decoration: underline;
}

.u-rte > h1,
.u-rte > h2,
.u-rte > h3,
.u-rte > h4,
.u-rte > h5 {
  font-weight: normal;
}

.u-rte > h1 {
  font-size: 28px;
  font-family: "Avenir Next Bold", sans-serif;
  line-height: 1.01;
  letter-spacing: -0.03em;
  font-weight: 400;
  margin-bottom: 1.3em;
}

@media (min-width: 480px) {
  .u-rte > h1 {
    font-size: calc(3.75vw + 10px);
  }
}
@media (min-width: 800px) {
  .u-rte > h1 {
    font-size: 40px;
  }
}
@media (min-width: 1140px) {
  .u-rte > h1 {
    font-size: 40px;
  }
}
@media (min-width: 1440px) {
  .u-rte > h1 {
    font-size: 40px;
  }
}
@media (min-width: 2560px) {
  .u-rte > h1 {
    font-size: 40px;
  }
}
@media (min-width: 3800px) {
  .u-rte > h1 {
    font-size: 40px;
  }
}
.u-rte > h2 {
  font-size: 26px;
  font-family: "Avenir Next Regular", sans-serif;
  line-height: 1.2;
  letter-spacing: normal;
  font-weight: 400;
  margin-bottom: 1.3em;
}

@media (min-width: 480px) {
  .u-rte > h2 {
    font-size: calc(0.4166666667vw + 24px);
  }
}
@media (min-width: 1440px) {
  .u-rte > h2 {
    font-size: 30px;
  }
}
@media (min-width: 2560px) {
  .u-rte > h2 {
    font-size: 30px;
  }
}
.u-rte > h3 {
  font-size: 22px;
  font-family: "Avenir Next Bold", sans-serif;
  line-height: 1.2;
  letter-spacing: normal;
  font-weight: 400;
  margin-bottom: 1.3em;
}

@media (min-width: 480px) {
  .u-rte > h3 {
    font-size: 22px;
  }
}
@media (min-width: 1440px) {
  .u-rte > h3 {
    font-size: 22px;
  }
}
@media (min-width: 2560px) {
  .u-rte > h3 {
    font-size: 22px;
  }
}
.u-rte > h4 {
  font-size: 22px;
  font-family: "Avenir Next Regular", sans-serif;
  line-height: 1.3;
  letter-spacing: normal;
  margin-bottom: 1.7em;
  font-weight: 400;
}

@media (min-width: 480px) {
  .u-rte > h4 {
    font-size: 22px;
  }
}
@media (min-width: 1440px) {
  .u-rte > h4 {
    font-size: 22px;
  }
}
@media (min-width: 2560px) {
  .u-rte > h4 {
    font-size: 22px;
  }
}
.u-rte > h5 {
  font-size: 22px;
  font-family: "Avenir Next Regular", sans-serif;
  line-height: 1.3;
  letter-spacing: normal;
  font-weight: 400;
  margin-bottom: 1.6em;
}

@media (min-width: 480px) {
  .u-rte > h5 {
    font-size: 22px;
  }
}
@media (min-width: 1440px) {
  .u-rte > h5 {
    font-size: 22px;
  }
}
@media (min-width: 2560px) {
  .u-rte > h5 {
    font-size: 22px;
  }
}
.u-rte > h6 {
  font-size: 22px;
  font-family: "Avenir Next Regular", sans-serif;
  line-height: 1.3;
  letter-spacing: normal;
  font-weight: 400;
  margin-bottom: 1.5em;
}

@media (min-width: 480px) {
  .u-rte > h6 {
    font-size: 22px;
  }
}
@media (min-width: 1440px) {
  .u-rte > h6 {
    font-size: 22px;
  }
}
@media (min-width: 2560px) {
  .u-rte > h6 {
    font-size: 22px;
  }
}
.u-rte > p,
.u-rte > ul,
.u-rte > ol,
.u-rte > .wp-block-image figcaption,
.u-rte > cite {
  color: currentColor;
}

.u-rte > p {
  font-size: 16px;
  font-family: "Avenir Next Bold", sans-serif;
  line-height: 1.2;
  letter-spacing: normal;
  font-weight: 400;
  margin-bottom: 1.764em;
}

@media (min-width: 480px) {
  .u-rte > p {
    font-size: 16px;
  }
}
@media (min-width: 1440px) {
  .u-rte > p {
    font-size: 16px;
  }
}
@media (min-width: 2560px) {
  .u-rte > p {
    font-size: 16px;
  }
}
.u-rte > p:last-child {
  margin-bottom: 0;
}

.u-rte > p img {
  width: 100% !important;
  height: auto !important;
}

.u-rte > p + .wp-block-image.size-large {
  padding-top: 16px;
}

@media (min-width: 480px) {
  .u-rte > p + .wp-block-image.size-large {
    padding-top: calc(2.5vw + 4px);
  }
}
@media (min-width: 800px) {
  .u-rte > p + .wp-block-image.size-large {
    padding-top: 24px;
  }
}
@media (min-width: 1440px) {
  .u-rte > p + .wp-block-image.size-large {
    padding-top: 24px;
  }
}
@media (min-width: 2560px) {
  .u-rte > p + .wp-block-image.size-large {
    padding-top: calc(0.2419354839vw + 17.8064516129px);
  }
}
@media (min-width: 3800px) {
  .u-rte > p + .wp-block-image.size-large {
    padding-top: 27px;
  }
}
.u-rte > p.has-small-font-size {
  font-size: 0.8em;
}

.u-rte > .wp-block-image figcaption {
  padding-top: 4px;
  font-size: 14px;
  font-family: "Avenir Next Bold", sans-serif;
  line-height: 1.1;
  letter-spacing: normal;
  font-weight: 400;
  margin: 0 auto;
  opacity: 0.5;
  width: 100%;
}

@media (min-width: 480px) {
  .u-rte > .wp-block-image figcaption {
    padding-top: 4px;
  }
}
@media (min-width: 800px) {
  .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: 2560px) {
  .u-rte > .wp-block-image figcaption {
    padding-top: calc(0.0403225806vw + 2.9677419355px);
  }
}
@media (min-width: 3800px) {
  .u-rte > .wp-block-image figcaption {
    padding-top: 4.5px;
  }
}
@media (min-width: 480px) {
  .u-rte > .wp-block-image figcaption {
    font-size: 14px;
  }
}
@media (min-width: 1440px) {
  .u-rte > .wp-block-image figcaption {
    font-size: 14px;
  }
}
@media (min-width: 2560px) {
  .u-rte > .wp-block-image figcaption {
    font-size: 14px;
  }
}
.u-rte > ul,
.u-rte > ol {
  list-style: none;
  list-style-position: inside;
  padding-bottom: 16px;
}

@media (min-width: 480px) {
  .u-rte > ul,
.u-rte > ol {
    padding-bottom: calc(2.5vw + 4px);
  }
}
@media (min-width: 800px) {
  .u-rte > ul,
.u-rte > ol {
    padding-bottom: 24px;
  }
}
@media (min-width: 1440px) {
  .u-rte > ul,
.u-rte > ol {
    padding-bottom: 24px;
  }
}
@media (min-width: 2560px) {
  .u-rte > ul,
.u-rte > ol {
    padding-bottom: calc(0.2419354839vw + 17.8064516129px);
  }
}
@media (min-width: 3800px) {
  .u-rte > ul,
.u-rte > ol {
    padding-bottom: 27px;
  }
}
.u-rte > ul li,
.u-rte > ol li {
  font-size: 16px;
  font-family: "Avenir Next Bold", sans-serif;
  line-height: 1.2;
  letter-spacing: normal;
  font-weight: 400;
  margin-bottom: 0.6em;
  position: relative;
}

@media (min-width: 480px) {
  .u-rte > ul li,
.u-rte > ol li {
    font-size: 16px;
  }
}
@media (min-width: 1440px) {
  .u-rte > ul li,
.u-rte > ol li {
    font-size: 16px;
  }
}
@media (min-width: 2560px) {
  .u-rte > ul li,
.u-rte > ol li {
    font-size: 16px;
  }
}
@media (max-width: 800px) {
  .u-rte > ul li,
.u-rte > ol li {
    padding-left: 20px;
  }
}
@media (max-width: 800px) and (min-width: 480px) {
  .u-rte > ul li,
.u-rte > ol li {
    padding-left: calc(3.75vw + 2px);
  }
}
@media (max-width: 800px) and (min-width: 800px) {
  .u-rte > ul li,
.u-rte > ol li {
    padding-left: 32px;
  }
}
@media (max-width: 800px) and (min-width: 1440px) {
  .u-rte > ul li,
.u-rte > ol li {
    padding-left: 32px;
  }
}
@media (max-width: 800px) and (min-width: 2560px) {
  .u-rte > ul li,
.u-rte > ol li {
    padding-left: calc(0.3225806452vw + 23.7419354839px);
  }
}
@media (max-width: 800px) and (min-width: 3800px) {
  .u-rte > ul li,
.u-rte > ol li {
    padding-left: 36px;
  }
}
.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: 8px;
  margin-top: 0.6em;
  margin-left: 0;
  width: 100%;
}

@media (min-width: 480px) {
  .u-rte > ul ul,
.u-rte > ul ol,
.u-rte > ol ul,
.u-rte > ol ol {
    padding-bottom: 8px;
  }
}
@media (min-width: 800px) {
  .u-rte > ul ul,
.u-rte > ul ol,
.u-rte > ol ul,
.u-rte > ol ol {
    padding-bottom: 8px;
  }
}
@media (min-width: 1440px) {
  .u-rte > ul ul,
.u-rte > ul ol,
.u-rte > ol ul,
.u-rte > ol ol {
    padding-bottom: 8px;
  }
}
@media (min-width: 2560px) {
  .u-rte > ul ul,
.u-rte > ul ol,
.u-rte > ol ul,
.u-rte > ol ol {
    padding-bottom: calc(0.0806451613vw + 5.935483871px);
  }
}
@media (min-width: 3800px) {
  .u-rte > ul ul,
.u-rte > ul ol,
.u-rte > ol ul,
.u-rte > ol ol {
    padding-bottom: 9px;
  }
}
.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 #1a191f;
}

@media (max-width: 800px) {
  .u-rte > ul {
    padding-left: 16px;
  }
}
@media (max-width: 800px) and (min-width: 480px) {
  .u-rte > ul {
    padding-left: calc(2.5vw + 4px);
  }
}
@media (max-width: 800px) and (min-width: 800px) {
  .u-rte > ul {
    padding-left: 24px;
  }
}
@media (max-width: 800px) and (min-width: 1440px) {
  .u-rte > ul {
    padding-left: 24px;
  }
}
@media (max-width: 800px) and (min-width: 2560px) {
  .u-rte > ul {
    padding-left: calc(0.2419354839vw + 17.8064516129px);
  }
}
@media (max-width: 800px) and (min-width: 3800px) {
  .u-rte > ul {
    padding-left: 27px;
  }
}
.u-rte > ul li:before {
  content: "";
  display: block;
  position: absolute;
  right: 100%;
  margin-right: 0.7em;
  top: 0.55em;
  width: 5px;
  height: 5px;
  background-color: rgba(22, 22, 23, 0.5);
  font-size: 0.8em;
  border-radius: 50%;
}

@media (min-width: 1440px) {
  .u-rte > ul li:before {
    width: calc(0.0558035714vw + 4.1964285714px);
  }
}
@media (min-width: 2560px) {
  .u-rte > ul li:before {
    width: 5.625px;
  }
}
@media (min-width: 1440px) {
  .u-rte > ul li:before {
    height: calc(0.0558035714vw + 4.1964285714px);
  }
}
@media (min-width: 2560px) {
  .u-rte > ul li:before {
    height: 5.625px;
  }
}
@media (max-width: 800px) {
  .u-rte > ul li:before {
    right: auto;
    left: 0.5em;
  }
}
.u-rte > ol {
  counter-reset: li;
  width: 100%;
  min-width: unset;
}

.u-rte > ol li {
  width: 100%;
}

@media (max-width: 800px) {
  .u-rte > ol li {
    padding-left: 24px;
  }
}
@media (max-width: 800px) and (min-width: 480px) {
  .u-rte > ol li {
    padding-left: calc(5vw + 0px);
  }
}
@media (max-width: 800px) and (min-width: 800px) {
  .u-rte > ol li {
    padding-left: 40px;
  }
}
@media (max-width: 800px) and (min-width: 1440px) {
  .u-rte > ol li {
    padding-left: 40px;
  }
}
@media (max-width: 800px) and (min-width: 2560px) {
  .u-rte > ol li {
    padding-left: calc(0.4032258065vw + 29.6774193548px);
  }
}
@media (max-width: 800px) and (min-width: 3800px) {
  .u-rte > ol li {
    padding-left: 45px;
  }
}
.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: rgba(22, 22, 23, 0.5);
  font-size: 1em;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
}

@media (max-width: 800px) {
  .u-rte > ol li:before {
    right: auto;
    left: 0;
  }
}
.u-rte > ol li ol {
  counter-reset: li;
  padding-left: 7.1428571429%;
}

@media (max-width: 800px) {
  .u-rte > ol li ol {
    padding-left: 0;
  }
}
.u-rte > ol li ol li:before {
  margin-right: 0.3em;
  top: 0;
  -webkit-transform: scale(0.7);
          transform: scale(0.7);
}

@media (max-width: 800px) {
  .u-rte > ol li ol li:before {
    right: auto;
    left: 0;
  }
}
.u-rte > li {
  position: relative;
}

.u-rte > a {
  color: #1a191f;
  -webkit-transition: color 0.25s;
  transition: color 0.25s;
}

.u-rte > a:hover {
  color: #161617;
}

.u-rte > .wp-block-image {
  margin-left: auto;
  margin-right: auto;
  padding-left: 16.6666666667%;
  padding-right: 4.1666666667%;
  margin-bottom: 16px;
  width: 100%;
  float: none !important;
}

@media (min-width: 480px) {
  .u-rte > .wp-block-image {
    margin-bottom: calc(2.5vw + 4px);
  }
}
@media (min-width: 800px) {
  .u-rte > .wp-block-image {
    margin-bottom: 24px;
  }
}
@media (min-width: 1440px) {
  .u-rte > .wp-block-image {
    margin-bottom: 24px;
  }
}
@media (min-width: 2560px) {
  .u-rte > .wp-block-image {
    margin-bottom: calc(0.2419354839vw + 17.8064516129px);
  }
}
@media (min-width: 3800px) {
  .u-rte > .wp-block-image {
    margin-bottom: 27px;
  }
}
@media (max-width: 1140px) {
  .u-rte > .wp-block-image {
    padding-left: 4.1666666667%;
  }
}
.u-rte > .wp-block-image img {
  width: 100%;
}

.u-rte > .wp-block-image.alignwide {
  padding-left: 4.1666666667%;
  padding-right: 4.1666666667%;
  max-width: 840px;
  width: 100%;
}

@media (min-width: 1440px) {
  .u-rte > .wp-block-image.alignwide {
    max-width: calc(9.375vw + 705px);
  }
}
@media (min-width: 2560px) {
  .u-rte > .wp-block-image.alignwide {
    max-width: 945px;
  }
}
@media (max-width: 800px) {
  .u-rte > .wp-block-image.alignwide {
    max-width: 660px;
    min-width: auto;
  }
}
@media (max-width: 800px) and (min-width: 1440px) {
  .u-rte > .wp-block-image.alignwide {
    max-width: calc(7.3660714286vw + 553.9285714286px);
  }
}
@media (max-width: 800px) and (min-width: 2560px) {
  .u-rte > .wp-block-image.alignwide {
    max-width: 742.5px;
  }
}
.u-rte > .wp-block-image.alignwide figcaption {
  max-width: 840px;
  padding-top: 4px;
  opacity: 0.5;
  width: 100%;
}

@media (min-width: 1440px) {
  .u-rte > .wp-block-image.alignwide figcaption {
    max-width: calc(9.375vw + 705px);
  }
}
@media (min-width: 2560px) {
  .u-rte > .wp-block-image.alignwide figcaption {
    max-width: 945px;
  }
}
@media (min-width: 480px) {
  .u-rte > .wp-block-image.alignwide figcaption {
    padding-top: 4px;
  }
}
@media (min-width: 800px) {
  .u-rte > .wp-block-image.alignwide figcaption {
    padding-top: 4px;
  }
}
@media (min-width: 1440px) {
  .u-rte > .wp-block-image.alignwide figcaption {
    padding-top: 4px;
  }
}
@media (min-width: 2560px) {
  .u-rte > .wp-block-image.alignwide figcaption {
    padding-top: calc(0.0403225806vw + 2.9677419355px);
  }
}
@media (min-width: 3800px) {
  .u-rte > .wp-block-image.alignwide figcaption {
    padding-top: 4.5px;
  }
}
@media (max-width: 800px) {
  .u-rte > .wp-block-image.alignwide figcaption {
    max-width: 660px;
  }
}
@media (max-width: 800px) and (min-width: 1440px) {
  .u-rte > .wp-block-image.alignwide figcaption {
    max-width: calc(7.3660714286vw + 553.9285714286px);
  }
}
@media (max-width: 800px) and (min-width: 2560px) {
  .u-rte > .wp-block-image.alignwide figcaption {
    max-width: 742.5px;
  }
}
.u-rte > .wp-block-image.alignfull {
  max-width: 100%;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.u-rte > .wp-block-image.alignfull figcaption {
  max-width: 100%;
  padding-left: 4.1666666667%;
  padding-right: 4.1666666667%;
}

.u-rte > .wp-block-image--inline img {
  width: auto;
  max-width: 100%;
  height: auto;
}

.u-rte > .wp-block-quote {
  margin-left: auto;
  margin-right: auto;
  padding-left: 4.1666666667%;
  padding-right: 4.1666666667%;
  margin-bottom: 16px;
  max-width: 840px;
  width: 100%;
}

@media (min-width: 480px) {
  .u-rte > .wp-block-quote {
    margin-bottom: calc(2.5vw + 4px);
  }
}
@media (min-width: 800px) {
  .u-rte > .wp-block-quote {
    margin-bottom: 24px;
  }
}
@media (min-width: 1440px) {
  .u-rte > .wp-block-quote {
    margin-bottom: 24px;
  }
}
@media (min-width: 2560px) {
  .u-rte > .wp-block-quote {
    margin-bottom: calc(0.2419354839vw + 17.8064516129px);
  }
}
@media (min-width: 3800px) {
  .u-rte > .wp-block-quote {
    margin-bottom: 27px;
  }
}
@media (min-width: 1440px) {
  .u-rte > .wp-block-quote {
    max-width: calc(9.375vw + 705px);
  }
}
@media (min-width: 2560px) {
  .u-rte > .wp-block-quote {
    max-width: 945px;
  }
}
@media (max-width: 800px) {
  .u-rte > .wp-block-quote {
    max-width: 100%;
    padding-left: 50px;
  }
}
.u-rte > .wp-block-quote.is-style-large {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 16px;
  max-width: 840px;
  width: 100%;
}

@media (min-width: 480px) {
  .u-rte > .wp-block-quote.is-style-large {
    margin-bottom: calc(2.5vw + 4px);
  }
}
@media (min-width: 800px) {
  .u-rte > .wp-block-quote.is-style-large {
    margin-bottom: 24px;
  }
}
@media (min-width: 1440px) {
  .u-rte > .wp-block-quote.is-style-large {
    margin-bottom: 24px;
  }
}
@media (min-width: 2560px) {
  .u-rte > .wp-block-quote.is-style-large {
    margin-bottom: calc(0.2419354839vw + 17.8064516129px);
  }
}
@media (min-width: 3800px) {
  .u-rte > .wp-block-quote.is-style-large {
    margin-bottom: 27px;
  }
}
@media (min-width: 1440px) {
  .u-rte > .wp-block-quote.is-style-large {
    max-width: calc(9.375vw + 705px);
  }
}
@media (min-width: 2560px) {
  .u-rte > .wp-block-quote.is-style-large {
    max-width: 945px;
  }
}
@media (max-width: 800px) {
  .u-rte > .wp-block-quote.is-style-large {
    max-width: 660px;
  }
}
@media (max-width: 800px) and (min-width: 1440px) {
  .u-rte > .wp-block-quote.is-style-large {
    max-width: calc(7.3660714286vw + 553.9285714286px);
  }
}
@media (max-width: 800px) and (min-width: 2560px) {
  .u-rte > .wp-block-quote.is-style-large {
    max-width: 742.5px;
  }
}
@media (max-width: 480px) {
  .u-rte > .wp-block-quote.is-style-large {
    max-width: calc(100% - 30px);
    margin-left: 30px;
  }
}
.u-rte > .wp-block-quote.is-style-large p,
.u-rte > .wp-block-quote.is-style-large cite {
  font-style: normal;
  width: 100%;
  max-width: 100%;
}

.u-rte > .wp-block-quote.is-style-large p {
  font-size: 28px;
  font-family: "Avenir Next Regular", sans-serif;
  line-height: 1.2;
  letter-spacing: normal;
  font-weight: 400;
  margin-bottom: 0.52em;
}

@media (min-width: 480px) {
  .u-rte > .wp-block-quote.is-style-large p {
    font-size: calc(3.75vw + 10px);
  }
}
@media (min-width: 800px) {
  .u-rte > .wp-block-quote.is-style-large p {
    font-size: 40px;
  }
}
@media (min-width: 1140px) {
  .u-rte > .wp-block-quote.is-style-large p {
    font-size: 40px;
  }
}
@media (min-width: 1440px) {
  .u-rte > .wp-block-quote.is-style-large p {
    font-size: 40px;
  }
}
@media (min-width: 2560px) {
  .u-rte > .wp-block-quote.is-style-large p {
    font-size: 40px;
  }
}
@media (min-width: 3800px) {
  .u-rte > .wp-block-quote.is-style-large p {
    font-size: 40px;
  }
}
.u-rte > .wp-block-quote.is-style-large cite {
  font-size: 14px;
  font-family: "Avenir Next Regular", sans-serif;
  line-height: 1.25;
  letter-spacing: normal;
  font-weight: 400;
}

@media (min-width: 480px) {
  .u-rte > .wp-block-quote.is-style-large cite {
    font-size: 14px;
  }
}
@media (min-width: 1440px) {
  .u-rte > .wp-block-quote.is-style-large cite {
    font-size: 14px;
  }
}
@media (min-width: 2560px) {
  .u-rte > .wp-block-quote.is-style-large cite {
    font-size: 14px;
  }
}
@media (max-width: 800px) {
  .u-rte > .wp-block-quote.is-style-large cite {
    padding-right: 40px;
  }
}
.u-rte > .wp-block-quote p {
  font-size: 22px;
  color: #161617;
  margin-bottom: 1.2em;
  padding-left: 0;
  padding-right: 0;
  position: relative;
  width: 100%;
  font-family: "Avenir Next Regular", sans-serif;
  line-height: 1.3;
  letter-spacing: normal;
  font-weight: 400;
}

@media (min-width: 480px) {
  .u-rte > .wp-block-quote p {
    font-size: 22px;
  }
}
@media (min-width: 1440px) {
  .u-rte > .wp-block-quote p {
    font-size: 22px;
  }
}
@media (min-width: 2560px) {
  .u-rte > .wp-block-quote p {
    font-size: 22px;
  }
}
.u-rte > .wp-block-quote p:before {
  content: "";
  position: absolute;
  top: 0;
  left: -30px;
  height: 100%;
  border-left: 1px solid #1a191f;
}

@media (min-width: 1440px) {
  .u-rte > .wp-block-quote p:before {
    left: calc(-0.3348214286vw - 25.1785714286px);
  }
}
@media (min-width: 2560px) {
  .u-rte > .wp-block-quote p:before {
    left: -33.75px;
  }
}
.u-rte > .wp-block-quote cite {
  font-size: 14px;
  font-family: "Avenir Next Regular", sans-serif;
  line-height: 1.25;
  letter-spacing: normal;
  font-weight: 400;
  padding-left: 0;
  padding-right: 0;
}

@media (min-width: 480px) {
  .u-rte > .wp-block-quote cite {
    font-size: 14px;
  }
}
@media (min-width: 1440px) {
  .u-rte > .wp-block-quote cite {
    font-size: 14px;
  }
}
@media (min-width: 2560px) {
  .u-rte > .wp-block-quote cite {
    font-size: 14px;
  }
}
@media (max-width: 800px) {
  .u-rte > .wp-block-quote cite {
    padding-right: 40px;
  }
}
.u-rte > .wp-block-video {
  margin-left: auto;
  margin-right: auto;
  padding-left: 4.1666666667%;
  padding-right: 4.1666666667%;
  margin-bottom: 16px;
  max-width: 840px;
  width: 100%;
}

@media (min-width: 480px) {
  .u-rte > .wp-block-video {
    margin-bottom: calc(2.5vw + 4px);
  }
}
@media (min-width: 800px) {
  .u-rte > .wp-block-video {
    margin-bottom: 24px;
  }
}
@media (min-width: 1440px) {
  .u-rte > .wp-block-video {
    margin-bottom: 24px;
  }
}
@media (min-width: 2560px) {
  .u-rte > .wp-block-video {
    margin-bottom: calc(0.2419354839vw + 17.8064516129px);
  }
}
@media (min-width: 3800px) {
  .u-rte > .wp-block-video {
    margin-bottom: 27px;
  }
}
@media (min-width: 1440px) {
  .u-rte > .wp-block-video {
    max-width: calc(9.375vw + 705px);
  }
}
@media (min-width: 2560px) {
  .u-rte > .wp-block-video {
    max-width: 945px;
  }
}
@media (max-width: 800px) {
  .u-rte > .wp-block-video {
    max-width: 100%;
  }
}
.u-rte > .wp-block-video video {
  width: 100%;
}

.u-rte > .wp-block-video.alignwide {
  padding-left: 4.1666666667%;
  padding-right: 4.1666666667%;
  max-width: 840px;
  width: 100%;
}

@media (min-width: 1440px) {
  .u-rte > .wp-block-video.alignwide {
    max-width: calc(9.375vw + 705px);
  }
}
@media (min-width: 2560px) {
  .u-rte > .wp-block-video.alignwide {
    max-width: 945px;
  }
}
@media (max-width: 800px) {
  .u-rte > .wp-block-video.alignwide {
    max-width: 660px;
  }
}
@media (max-width: 800px) and (min-width: 1440px) {
  .u-rte > .wp-block-video.alignwide {
    max-width: calc(7.3660714286vw + 553.9285714286px);
  }
}
@media (max-width: 800px) and (min-width: 2560px) {
  .u-rte > .wp-block-video.alignwide {
    max-width: 742.5px;
  }
}
.u-rte > .wp-block-video.alignwide figcaption {
  max-width: 840px;
  width: 100%;
}

@media (min-width: 1440px) {
  .u-rte > .wp-block-video.alignwide figcaption {
    max-width: calc(9.375vw + 705px);
  }
}
@media (min-width: 2560px) {
  .u-rte > .wp-block-video.alignwide figcaption {
    max-width: 945px;
  }
}
@media (max-width: 800px) {
  .u-rte > .wp-block-video.alignwide figcaption {
    max-width: 660px;
  }
}
@media (max-width: 800px) and (min-width: 1440px) {
  .u-rte > .wp-block-video.alignwide figcaption {
    max-width: calc(7.3660714286vw + 553.9285714286px);
  }
}
@media (max-width: 800px) and (min-width: 2560px) {
  .u-rte > .wp-block-video.alignwide figcaption {
    max-width: 742.5px;
  }
}
.u-rte > .wp-block-video.alignfull {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.u-rte > .wp-block-video.alignfull figcaption {
  max-width: 100%;
  padding-left: 4.1666666667%;
  padding-right: 4.1666666667%;
}

.u-rte > .wp-block-embed-youtube {
  margin: 0 auto;
  min-width: 540px;
  max-width: 840px;
  margin-bottom: 24px;
  margin-top: 16px;
  width: 100%;
}

@media (min-width: 1440px) {
  .u-rte > .wp-block-embed-youtube {
    max-width: calc(9.375vw + 705px);
  }
}
@media (min-width: 2560px) {
  .u-rte > .wp-block-embed-youtube {
    max-width: 945px;
  }
}
@media (min-width: 480px) {
  .u-rte > .wp-block-embed-youtube {
    margin-bottom: calc(5vw + 0px);
  }
}
@media (min-width: 800px) {
  .u-rte > .wp-block-embed-youtube {
    margin-bottom: 40px;
  }
}
@media (min-width: 1440px) {
  .u-rte > .wp-block-embed-youtube {
    margin-bottom: 40px;
  }
}
@media (min-width: 2560px) {
  .u-rte > .wp-block-embed-youtube {
    margin-bottom: calc(0.4032258065vw + 29.6774193548px);
  }
}
@media (min-width: 3800px) {
  .u-rte > .wp-block-embed-youtube {
    margin-bottom: 45px;
  }
}
@media (min-width: 480px) {
  .u-rte > .wp-block-embed-youtube {
    margin-top: calc(2.5vw + 4px);
  }
}
@media (min-width: 800px) {
  .u-rte > .wp-block-embed-youtube {
    margin-top: 24px;
  }
}
@media (min-width: 1440px) {
  .u-rte > .wp-block-embed-youtube {
    margin-top: 24px;
  }
}
@media (min-width: 2560px) {
  .u-rte > .wp-block-embed-youtube {
    margin-top: calc(0.2419354839vw + 17.8064516129px);
  }
}
@media (min-width: 3800px) {
  .u-rte > .wp-block-embed-youtube {
    margin-top: 27px;
  }
}
@media (max-width: 800px) {
  .u-rte > .wp-block-embed-youtube {
    max-width: 660px;
    min-width: auto;
  }
}
@media (max-width: 800px) and (min-width: 1440px) {
  .u-rte > .wp-block-embed-youtube {
    max-width: calc(7.3660714286vw + 553.9285714286px);
  }
}
@media (max-width: 800px) and (min-width: 2560px) {
  .u-rte > .wp-block-embed-youtube {
    max-width: 742.5px;
  }
}
.u-rte > .wp-block-embed-youtube .wp-block-embed__wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  height: 0;
}

.u-rte > .wp-block-embed-youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.u-rte > h1 + section.is-dark,
.u-rte > h2 + section.is-dark,
.u-rte > h3 + section.is-dark,
.u-rte > h4 + section.is-dark,
.u-rte > h5 + section.is-dark,
.u-rte > h6 + section.is-dark,
.u-rte > p + section.is-dark {
  margin-top: 64px;
}

@media (min-width: 480px) {
  .u-rte > h1 + section.is-dark,
.u-rte > h2 + section.is-dark,
.u-rte > h3 + section.is-dark,
.u-rte > h4 + section.is-dark,
.u-rte > h5 + section.is-dark,
.u-rte > h6 + section.is-dark,
.u-rte > p + section.is-dark {
    margin-top: calc(11.25vw + 10px);
  }
}
@media (min-width: 800px) {
  .u-rte > h1 + section.is-dark,
.u-rte > h2 + section.is-dark,
.u-rte > h3 + section.is-dark,
.u-rte > h4 + section.is-dark,
.u-rte > h5 + section.is-dark,
.u-rte > h6 + section.is-dark,
.u-rte > p + section.is-dark {
    margin-top: 100px;
  }
}
@media (min-width: 1440px) {
  .u-rte > h1 + section.is-dark,
.u-rte > h2 + section.is-dark,
.u-rte > h3 + section.is-dark,
.u-rte > h4 + section.is-dark,
.u-rte > h5 + section.is-dark,
.u-rte > h6 + section.is-dark,
.u-rte > p + section.is-dark {
    margin-top: 100px;
  }
}
@media (min-width: 2560px) {
  .u-rte > h1 + section.is-dark,
.u-rte > h2 + section.is-dark,
.u-rte > h3 + section.is-dark,
.u-rte > h4 + section.is-dark,
.u-rte > h5 + section.is-dark,
.u-rte > h6 + section.is-dark,
.u-rte > p + section.is-dark {
    margin-top: calc(1.0080645161vw + 74.1935483871px);
  }
}
@media (min-width: 3800px) {
  .u-rte > h1 + section.is-dark,
.u-rte > h2 + section.is-dark,
.u-rte > h3 + section.is-dark,
.u-rte > h4 + section.is-dark,
.u-rte > h5 + section.is-dark,
.u-rte > h6 + section.is-dark,
.u-rte > p + section.is-dark {
    margin-top: 112.5px;
  }
}
.u-rte--modal > h1,
.u-rte--modal > h2,
.u-rte--modal > h3,
.u-rte--modal > h4 {
  margin-left: 25%;
}

@media (max-width: 1140px) {
  .u-rte--modal > h1,
.u-rte--modal > h2,
.u-rte--modal > h3,
.u-rte--modal > h4 {
    margin-left: 12.5%;
  }
}
@media (max-width: 800px) {
  .u-rte--modal > h1,
.u-rte--modal > h2,
.u-rte--modal > h3,
.u-rte--modal > h4 {
    margin-left: 0;
    padding-left: 4.1666666667%;
    padding-right: 4.1666666667%;
  }
}
@media (max-width: 480px) {
  .u-rte--modal > h1,
.u-rte--modal > h2,
.u-rte--modal > h3,
.u-rte--modal > h4 {
    margin-left: 0;
    padding-left: 0;
    padding-right: 0;
  }
}
.u-rte--modal > h5,
.u-rte--modal > h6,
.u-rte--modal > p,
.u-rte--modal > cite,
.u-rte--modal > ul,
.u-rte--modal > ol {
  margin-left: 25%;
}

@media (max-width: 1140px) {
  .u-rte--modal > h5,
.u-rte--modal > h6,
.u-rte--modal > p,
.u-rte--modal > cite,
.u-rte--modal > ul,
.u-rte--modal > ol {
    margin-left: 12.5%;
  }
}
@media (max-width: 800px) {
  .u-rte--modal > h5,
.u-rte--modal > h6,
.u-rte--modal > p,
.u-rte--modal > cite,
.u-rte--modal > ul,
.u-rte--modal > ol {
    margin-left: 0;
    padding-left: 4.1666666667%;
    padding-right: 4.1666666667%;
  }
}
@media (max-width: 480px) {
  .u-rte--modal > h5,
.u-rte--modal > h6,
.u-rte--modal > p,
.u-rte--modal > cite,
.u-rte--modal > ul,
.u-rte--modal > ol {
    margin-left: 0;
    padding-left: 0;
    padding-right: 0;
  }
}
.u-rte--modal > .wp-block-image {
  padding-left: 25%;
  padding-right: 25%;
}

@media (max-width: 1140px) {
  .u-rte--modal > .wp-block-image {
    padding-left: 12.5%;
  }
}
@media (max-width: 800px) {
  .u-rte--modal > .wp-block-image {
    padding-left: 4.1666666667%;
    padding-right: 16.6666666667%;
  }
}
@media (max-width: 480px) {
  .u-rte--modal > .wp-block-image {
    padding-left: 0;
    padding-right: 0;
  }
}
.u-rte--simplified {
  padding-top: 40px;
  padding-bottom: 40px;
  padding-left: 25%;
  padding-right: 8.3333333333%;
}

@media (min-width: 480px) {
  .u-rte--simplified {
    padding-top: calc(7.5vw + 4px);
  }
}
@media (min-width: 800px) {
  .u-rte--simplified {
    padding-top: 64px;
  }
}
@media (min-width: 1440px) {
  .u-rte--simplified {
    padding-top: 64px;
  }
}
@media (min-width: 2560px) {
  .u-rte--simplified {
    padding-top: calc(0.6451612903vw + 47.4838709677px);
  }
}
@media (min-width: 3800px) {
  .u-rte--simplified {
    padding-top: 72px;
  }
}
@media (min-width: 480px) {
  .u-rte--simplified {
    padding-bottom: calc(7.5vw + 4px);
  }
}
@media (min-width: 800px) {
  .u-rte--simplified {
    padding-bottom: 64px;
  }
}
@media (min-width: 1440px) {
  .u-rte--simplified {
    padding-bottom: 64px;
  }
}
@media (min-width: 2560px) {
  .u-rte--simplified {
    padding-bottom: calc(0.6451612903vw + 47.4838709677px);
  }
}
@media (min-width: 3800px) {
  .u-rte--simplified {
    padding-bottom: 72px;
  }
}
@media (max-width: 1140px) {
  .u-rte--simplified {
    padding-left: 16.6666666667%;
    padding-right: 8.3333333333%;
  }
}
@media (max-width: 800px) {
  .u-rte--simplified {
    padding-left: 8.3333333333%;
    padding-right: 8.3333333333%;
  }
}
@media (max-width: 480px) {
  .u-rte--simplified {
    padding-left: 0;
    padding-right: 0;
  }
}
.u-rte--simplified > h1,
.u-rte--simplified > h2,
.u-rte--simplified > h3,
.u-rte--simplified > h4 {
  padding-top: 0;
  margin-right: 0;
  margin-left: 0;
  padding-left: 0;
  padding-right: 0;
  margin-bottom: 1em;
}

.u-rte--simplified > h5,
.u-rte--simplified > h6,
.u-rte--simplified > p,
.u-rte--simplified > cite,
.u-rte--simplified > ul,
.u-rte--simplified > ol {
  margin-left: 0;
  padding-left: 0;
  padding-right: 0;
}

.u-rte--simplified > img {
  margin-top: 20px;
  margin-bottom: 20px;
  max-width: 100%;
  border-radius: 3px;
  overflow: hidden;
}

@media (min-width: 480px) {
  .u-rte--simplified > img {
    margin-top: calc(3.75vw + 2px);
  }
}
@media (min-width: 800px) {
  .u-rte--simplified > img {
    margin-top: 32px;
  }
}
@media (min-width: 1440px) {
  .u-rte--simplified > img {
    margin-top: 32px;
  }
}
@media (min-width: 2560px) {
  .u-rte--simplified > img {
    margin-top: calc(0.3225806452vw + 23.7419354839px);
  }
}
@media (min-width: 3800px) {
  .u-rte--simplified > img {
    margin-top: 36px;
  }
}
@media (min-width: 480px) {
  .u-rte--simplified > img {
    margin-bottom: calc(3.75vw + 2px);
  }
}
@media (min-width: 800px) {
  .u-rte--simplified > img {
    margin-bottom: 32px;
  }
}
@media (min-width: 1440px) {
  .u-rte--simplified > img {
    margin-bottom: 32px;
  }
}
@media (min-width: 2560px) {
  .u-rte--simplified > img {
    margin-bottom: calc(0.3225806452vw + 23.7419354839px);
  }
}
@media (min-width: 3800px) {
  .u-rte--simplified > img {
    margin-bottom: 36px;
  }
}
.u-pt-0 {
  padding-top: 0;
}

.u-pt-nav {
  padding-top: 38px;
}

@media (min-width: 480px) {
  .u-pt-nav {
    padding-top: calc(1.875vw + 29px);
  }
}
@media (min-width: 800px) {
  .u-pt-nav {
    padding-top: 44px;
  }
}
@media (min-width: 1440px) {
  .u-pt-nav {
    padding-top: 44px;
  }
}
@media (min-width: 2560px) {
  .u-pt-nav {
    padding-top: calc(0.4435483871vw + 32.6451612903px);
  }
}
@media (min-width: 3800px) {
  .u-pt-nav {
    padding-top: 49.5px;
  }
}
.u-pt-60 {
  padding-top: 40px;
}

@media (min-width: 480px) {
  .u-pt-60 {
    padding-top: calc(6.25vw + 10px);
  }
}
@media (min-width: 800px) {
  .u-pt-60 {
    padding-top: 60px;
  }
}
@media (min-width: 1440px) {
  .u-pt-60 {
    padding-top: 60px;
  }
}
@media (min-width: 2560px) {
  .u-pt-60 {
    padding-top: calc(0.6048387097vw + 44.5161290323px);
  }
}
@media (min-width: 3800px) {
  .u-pt-60 {
    padding-top: 67.5px;
  }
}
.u-pt-80 {
  padding-top: 56px;
}

@media (min-width: 480px) {
  .u-pt-80 {
    padding-top: calc(7.5vw + 20px);
  }
}
@media (min-width: 800px) {
  .u-pt-80 {
    padding-top: 80px;
  }
}
@media (min-width: 1440px) {
  .u-pt-80 {
    padding-top: 80px;
  }
}
@media (min-width: 2560px) {
  .u-pt-80 {
    padding-top: calc(0.8064516129vw + 59.3548387097px);
  }
}
@media (min-width: 3800px) {
  .u-pt-80 {
    padding-top: 90px;
  }
}
.u-pt-100 {
  padding-top: 64px;
}

@media (min-width: 480px) {
  .u-pt-100 {
    padding-top: calc(11.25vw + 10px);
  }
}
@media (min-width: 800px) {
  .u-pt-100 {
    padding-top: 100px;
  }
}
@media (min-width: 1440px) {
  .u-pt-100 {
    padding-top: 100px;
  }
}
@media (min-width: 2560px) {
  .u-pt-100 {
    padding-top: calc(1.0080645161vw + 74.1935483871px);
  }
}
@media (min-width: 3800px) {
  .u-pt-100 {
    padding-top: 112.5px;
  }
}
.u-pt-120 {
  padding-top: 64px;
}

@media (min-width: 480px) {
  .u-pt-120 {
    padding-top: calc(17.5vw - 20px);
  }
}
@media (min-width: 800px) {
  .u-pt-120 {
    padding-top: 120px;
  }
}
@media (min-width: 1440px) {
  .u-pt-120 {
    padding-top: 120px;
  }
}
@media (min-width: 2560px) {
  .u-pt-120 {
    padding-top: calc(1.2096774194vw + 89.0322580645px);
  }
}
@media (min-width: 3800px) {
  .u-pt-120 {
    padding-top: 135px;
  }
}
.u-pt-160 {
  padding-top: 80px;
}

@media (min-width: 480px) {
  .u-pt-160 {
    padding-top: calc(25vw - 40px);
  }
}
@media (min-width: 800px) {
  .u-pt-160 {
    padding-top: 160px;
  }
}
@media (min-width: 1440px) {
  .u-pt-160 {
    padding-top: 160px;
  }
}
@media (min-width: 2560px) {
  .u-pt-160 {
    padding-top: calc(1.6129032258vw + 118.7096774194px);
  }
}
@media (min-width: 3800px) {
  .u-pt-160 {
    padding-top: 180px;
  }
}
.u-pb-0 {
  padding-bottom: 0;
}

.u-pb-60 {
  padding-bottom: 40px;
}

@media (min-width: 480px) {
  .u-pb-60 {
    padding-bottom: calc(6.25vw + 10px);
  }
}
@media (min-width: 800px) {
  .u-pb-60 {
    padding-bottom: 60px;
  }
}
@media (min-width: 1440px) {
  .u-pb-60 {
    padding-bottom: 60px;
  }
}
@media (min-width: 2560px) {
  .u-pb-60 {
    padding-bottom: calc(0.6048387097vw + 44.5161290323px);
  }
}
@media (min-width: 3800px) {
  .u-pb-60 {
    padding-bottom: 67.5px;
  }
}
.u-pb-80 {
  padding-bottom: 56px;
}

@media (min-width: 480px) {
  .u-pb-80 {
    padding-bottom: calc(7.5vw + 20px);
  }
}
@media (min-width: 800px) {
  .u-pb-80 {
    padding-bottom: 80px;
  }
}
@media (min-width: 1440px) {
  .u-pb-80 {
    padding-bottom: 80px;
  }
}
@media (min-width: 2560px) {
  .u-pb-80 {
    padding-bottom: calc(0.8064516129vw + 59.3548387097px);
  }
}
@media (min-width: 3800px) {
  .u-pb-80 {
    padding-bottom: 90px;
  }
}
.u-pb-100 {
  padding-bottom: 64px;
}

@media (min-width: 480px) {
  .u-pb-100 {
    padding-bottom: calc(11.25vw + 10px);
  }
}
@media (min-width: 800px) {
  .u-pb-100 {
    padding-bottom: 100px;
  }
}
@media (min-width: 1440px) {
  .u-pb-100 {
    padding-bottom: 100px;
  }
}
@media (min-width: 2560px) {
  .u-pb-100 {
    padding-bottom: calc(1.0080645161vw + 74.1935483871px);
  }
}
@media (min-width: 3800px) {
  .u-pb-100 {
    padding-bottom: 112.5px;
  }
}
.u-pb-120 {
  padding-bottom: 64px;
}

@media (min-width: 480px) {
  .u-pb-120 {
    padding-bottom: calc(17.5vw - 20px);
  }
}
@media (min-width: 800px) {
  .u-pb-120 {
    padding-bottom: 120px;
  }
}
@media (min-width: 1440px) {
  .u-pb-120 {
    padding-bottom: 120px;
  }
}
@media (min-width: 2560px) {
  .u-pb-120 {
    padding-bottom: calc(1.2096774194vw + 89.0322580645px);
  }
}
@media (min-width: 3800px) {
  .u-pb-120 {
    padding-bottom: 135px;
  }
}
.u-pb-160 {
  padding-bottom: 80px;
}

@media (min-width: 480px) {
  .u-pb-160 {
    padding-bottom: calc(25vw - 40px);
  }
}
@media (min-width: 800px) {
  .u-pb-160 {
    padding-bottom: 160px;
  }
}
@media (min-width: 1440px) {
  .u-pb-160 {
    padding-bottom: 160px;
  }
}
@media (min-width: 2560px) {
  .u-pb-160 {
    padding-bottom: calc(1.6129032258vw + 118.7096774194px);
  }
}
@media (min-width: 3800px) {
  .u-pb-160 {
    padding-bottom: 180px;
  }
}
/**
 * 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;
}

@-webkit-keyframes plyr-progress {
  to {
    background-position: var(--plyr-progress-loading-size, 25px) 0;
  }
}

@keyframes plyr-progress {
  to {
    background-position: var(--plyr-progress-loading-size, 25px) 0;
  }
}
@-webkit-keyframes plyr-popup {
  0% {
    opacity: 0.5;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes plyr-popup {
  0% {
    opacity: 0.5;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes plyr-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes plyr-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.plyr {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  direction: ltr;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-family: var(--plyr-font-family, inherit);
  font-variant-numeric: tabular-nums;
  font-weight: var(--plyr-font-weight-regular, 400);
  line-height: var(--plyr-line-height, 1.7);
  max-width: 100%;
  min-width: 200px;
  position: relative;
  text-shadow: none;
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
  z-index: 0;
}

.plyr video,
.plyr audio,
.plyr iframe {
  display: block;
  height: 100%;
  width: 100%;
}

.plyr button {
  font: inherit;
  line-height: inherit;
  width: auto;
}

.plyr:focus {
  outline: 0;
}

.plyr--full-ui {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.plyr--full-ui *,
.plyr--full-ui *::after,
.plyr--full-ui *::before {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

.plyr--full-ui a,
.plyr--full-ui button,
.plyr--full-ui input,
.plyr--full-ui label {
  -ms-touch-action: manipulation;
      touch-action: manipulation;
}

.plyr__badge {
  background: var(--plyr-badge-background, #4a5464);
  border-radius: var(--plyr-badge-border-radius, 2px);
  color: var(--plyr-badge-text-color, #fff);
  font-size: var(--plyr-font-size-badge, 9px);
  line-height: 1;
  padding: 3px 4px;
}

.plyr--full-ui ::-webkit-media-text-track-container {
  display: none;
}

.plyr__captions {
  -webkit-animation: plyr-fade-in 0.3s ease;
          animation: plyr-fade-in 0.3s ease;
  bottom: 0;
  display: none;
  font-size: var(--plyr-font-size-small, 13px);
  left: 0;
  padding: var(--plyr-control-spacing, 10px);
  position: absolute;
  text-align: center;
  -webkit-transition: -webkit-transform 0.4s ease-in-out;
  transition: -webkit-transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
  width: 100%;
}

.plyr__captions span:empty {
  display: none;
}

@media (min-width: 480px) {
  .plyr__captions {
    font-size: var(--plyr-font-size-base, 15px);
    padding: calc(var(--plyr-control-spacing, 10px) * 2);
  }
}
@media (min-width: 768px) {
  .plyr__captions {
    font-size: var(--plyr-font-size-large, 18px);
  }
}
.plyr--captions-active .plyr__captions {
  display: block;
}

.plyr:not(.plyr--hide-controls) .plyr__controls:not(:empty) ~ .plyr__captions {
  -webkit-transform: translateY(calc(var(--plyr-control-spacing, 10px) * -4));
          transform: translateY(calc(var(--plyr-control-spacing, 10px) * -4));
}

.plyr__caption {
  background: var(--plyr-captions-background, rgba(0, 0, 0, 0.8));
  border-radius: 2px;
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
  color: var(--plyr-captions-text-color, #fff);
  line-height: 185%;
  padding: 0.2em 0.5em;
  white-space: pre-wrap;
}

.plyr__caption div {
  display: inline;
}

.plyr__control {
  background: transparent;
  border: 0;
  border-radius: var(--plyr-control-radius, 3px);
  color: inherit;
  cursor: pointer;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  overflow: visible;
  padding: calc(var(--plyr-control-spacing, 10px) * 0.7);
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.plyr__control svg {
  display: block;
  fill: currentColor;
  height: var(--plyr-control-icon-size, 18px);
  pointer-events: none;
  width: var(--plyr-control-icon-size, 18px);
}

.plyr__control:focus {
  outline: 0;
}

.plyr__control.plyr__tab-focus {
  outline: var(--plyr-tab-focus-color, var(--plyr-color-main, var(--plyr-color-main, #00b3ff))) dotted 3px;
  outline-offset: 2px;
}

a.plyr__control {
  text-decoration: none;
}

a.plyr__control::after, a.plyr__control::before {
  display: none;
}

.plyr__control:not(.plyr__control--pressed) .icon--pressed,
.plyr__control.plyr__control--pressed .icon--not-pressed,
.plyr__control:not(.plyr__control--pressed) .label--pressed,
.plyr__control.plyr__control--pressed .label--not-pressed {
  display: none;
}

.plyr--full-ui ::-webkit-media-controls {
  display: none;
}

.plyr__controls {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  text-align: center;
}

.plyr__controls .plyr__progress__container {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}

.plyr__controls .plyr__controls__item {
  margin-left: calc(var(--plyr-control-spacing, 10px) / 4);
}

.plyr__controls .plyr__controls__item:first-child {
  margin-left: 0;
  margin-right: auto;
}

.plyr__controls .plyr__controls__item.plyr__progress__container {
  padding-left: calc(var(--plyr-control-spacing, 10px) / 4);
}

.plyr__controls .plyr__controls__item.plyr__time {
  padding: 0 calc(var(--plyr-control-spacing, 10px) / 2);
}

.plyr__controls .plyr__controls__item.plyr__progress__container:first-child, .plyr__controls .plyr__controls__item.plyr__time:first-child, .plyr__controls .plyr__controls__item.plyr__time + .plyr__time {
  padding-left: 0;
}

.plyr__controls:empty {
  display: none;
}

.plyr [data-plyr=captions],
.plyr [data-plyr=pip],
.plyr [data-plyr=airplay],
.plyr [data-plyr=fullscreen] {
  display: none;
}

.plyr--captions-enabled [data-plyr=captions],
.plyr--pip-supported [data-plyr=pip],
.plyr--airplay-supported [data-plyr=airplay],
.plyr--fullscreen-enabled [data-plyr=fullscreen] {
  display: inline-block;
}

.plyr__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.plyr__menu .plyr__control svg {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.plyr__menu .plyr__control[aria-expanded=true] svg {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.plyr__menu .plyr__control[aria-expanded=true] .plyr__tooltip {
  display: none;
}

.plyr__menu__container {
  -webkit-animation: plyr-popup 0.2s ease;
          animation: plyr-popup 0.2s ease;
  background: var(--plyr-menu-background, rgba(255, 255, 255, 0.9));
  border-radius: 4px;
  bottom: 100%;
  -webkit-box-shadow: var(--plyr-menu-shadow, 0 1px 2px rgba(0, 0, 0, 0.15));
          box-shadow: var(--plyr-menu-shadow, 0 1px 2px rgba(0, 0, 0, 0.15));
  color: var(--plyr-menu-color, #4a5464);
  font-size: var(--plyr-font-size-base, 15px);
  margin-bottom: 10px;
  position: absolute;
  right: -3px;
  text-align: left;
  white-space: nowrap;
  z-index: 3;
}

.plyr__menu__container > div {
  overflow: hidden;
  -webkit-transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1), width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1), width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.plyr__menu__container::after {
  border: var(--plyr-menu-arrow-size, 4px) solid transparent;
  border-top-color: var(--plyr-menu-background, rgba(255, 255, 255, 0.9));
  content: "";
  height: 0;
  position: absolute;
  right: calc(var(--plyr-control-icon-size, 18px) / 2 + var(--plyr-control-spacing, 10px) * 0.7 - var(--plyr-menu-arrow-size, 4px) / 2);
  top: 100%;
  width: 0;
}

.plyr__menu__container [role=menu] {
  padding: calc(var(--plyr-control-spacing, 10px) * 0.7);
}

.plyr__menu__container [role=menuitem],
.plyr__menu__container [role=menuitemradio] {
  margin-top: 2px;
}

.plyr__menu__container [role=menuitem]:first-child,
.plyr__menu__container [role=menuitemradio]:first-child {
  margin-top: 0;
}

.plyr__menu__container .plyr__control {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--plyr-menu-color, #4a5464);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: var(--plyr-font-size-menu, var(--plyr-font-size-small, 13px));
  padding: calc(var(--plyr-control-spacing, 10px) * 0.7 / 1.5) calc(var(--plyr-control-spacing, 10px) * 0.7 * 1.5);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  width: 100%;
}

.plyr__menu__container .plyr__control > span {
  -webkit-box-align: inherit;
      -ms-flex-align: inherit;
          align-items: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.plyr__menu__container .plyr__control::after {
  border: var(--plyr-menu-item-arrow-size, 4px) solid transparent;
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.plyr__menu__container .plyr__control--forward {
  padding-right: calc(var(--plyr-control-spacing, 10px) * 0.7 * 4);
}

.plyr__menu__container .plyr__control--forward::after {
  border-left-color: var(--plyr-menu-arrow-color, #728197);
  right: calc(var(--plyr-control-spacing, 10px) * 0.7 * 1.5 - var(--plyr-menu-item-arrow-size, 4px));
}

.plyr__menu__container .plyr__control--forward.plyr__tab-focus::after, .plyr__menu__container .plyr__control--forward:hover::after {
  border-left-color: currentColor;
}

.plyr__menu__container .plyr__control--back {
  font-weight: var(--plyr-font-weight-regular, 400);
  margin: calc(var(--plyr-control-spacing, 10px) * 0.7);
  margin-bottom: calc(var(--plyr-control-spacing, 10px) * 0.7 / 2);
  padding-left: calc(var(--plyr-control-spacing, 10px) * 0.7 * 4);
  position: relative;
  width: calc(100% - var(--plyr-control-spacing, 10px) * 0.7 * 2);
}

.plyr__menu__container .plyr__control--back::after {
  border-right-color: var(--plyr-menu-arrow-color, #728197);
  left: calc(var(--plyr-control-spacing, 10px) * 0.7 * 1.5 - var(--plyr-menu-item-arrow-size, 4px));
}

.plyr__menu__container .plyr__control--back::before {
  background: var(--plyr-menu-back-border-color, #dcdfe5);
  -webkit-box-shadow: 0 1px 0 var(--plyr-menu-back-border-shadow-color, #fff);
          box-shadow: 0 1px 0 var(--plyr-menu-back-border-shadow-color, #fff);
  content: "";
  height: 1px;
  left: 0;
  margin-top: calc(var(--plyr-control-spacing, 10px) * 0.7 / 2);
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 100%;
}

.plyr__menu__container .plyr__control--back.plyr__tab-focus::after, .plyr__menu__container .plyr__control--back:hover::after {
  border-right-color: currentColor;
}

.plyr__menu__container .plyr__control[role=menuitemradio] {
  padding-left: calc(var(--plyr-control-spacing, 10px) * 0.7);
}

.plyr__menu__container .plyr__control[role=menuitemradio]::before, .plyr__menu__container .plyr__control[role=menuitemradio]::after {
  border-radius: 100%;
}

.plyr__menu__container .plyr__control[role=menuitemradio]::before {
  background: rgba(0, 0, 0, 0.1);
  content: "";
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 16px;
  margin-right: var(--plyr-control-spacing, 10px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 16px;
}

.plyr__menu__container .plyr__control[role=menuitemradio]::after {
  background: #fff;
  border: 0;
  height: 6px;
  left: 12px;
  opacity: 0;
  top: 50%;
  -webkit-transform: translateY(-50%) scale(0);
          transform: translateY(-50%) scale(0);
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
  width: 6px;
}

.plyr__menu__container .plyr__control[role=menuitemradio][aria-checked=true]::before {
  background: var(--plyr-control-toggle-checked-background, var(--plyr-color-main, var(--plyr-color-main, #00b3ff)));
}

.plyr__menu__container .plyr__control[role=menuitemradio][aria-checked=true]::after {
  opacity: 1;
  -webkit-transform: translateY(-50%) scale(1);
          transform: translateY(-50%) scale(1);
}

.plyr__menu__container .plyr__control[role=menuitemradio].plyr__tab-focus::before, .plyr__menu__container .plyr__control[role=menuitemradio]:hover::before {
  background: rgba(35, 40, 47, 0.1);
}

.plyr__menu__container .plyr__menu__value {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  margin-right: calc((var(--plyr-control-spacing, 10px) * 0.7 - 2) * -1);
  overflow: hidden;
  padding-left: calc(var(--plyr-control-spacing, 10px) * 0.7 * 3.5);
  pointer-events: none;
}

.plyr--full-ui input[type=range] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  border: 0;
  border-radius: calc(var(--plyr-range-thumb-height, 13px) * 2);
  color: var(--plyr-range-fill-background, var(--plyr-color-main, var(--plyr-color-main, #00b3ff)));
  display: block;
  height: calc(var(--plyr-range-thumb-active-shadow-width, 3px) * 2 + var(--plyr-range-thumb-height, 13px));
  margin: 0;
  min-width: 0;
  padding: 0;
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
  width: 100%;
}

.plyr--full-ui input[type=range]::-webkit-slider-runnable-track {
  background: transparent;
  border: 0;
  border-radius: calc(var(--plyr-range-track-height, 5px) / 2);
  height: var(--plyr-range-track-height, 5px);
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
  -webkit-user-select: none;
          user-select: none;
  background-image: -webkit-gradient(linear, left top, right top, from(currentColor), to(transparent));
  background-image: linear-gradient(to right, currentColor var(--value, 0%), transparent var(--value, 0%));
}

.plyr--full-ui input[type=range]::-webkit-slider-thumb {
  background: var(--plyr-range-thumb-background, #fff);
  border: 0;
  border-radius: 100%;
  -webkit-box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2));
          box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2));
  height: var(--plyr-range-thumb-height, 13px);
  position: relative;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  width: var(--plyr-range-thumb-height, 13px);
  -webkit-appearance: none;
          appearance: none;
  margin-top: calc((var(--plyr-range-thumb-height, 13px) - var(--plyr-range-track-height, 5px)) / 2 * -1);
}

.plyr--full-ui input[type=range]::-moz-range-track {
  background: transparent;
  border: 0;
  border-radius: calc(var(--plyr-range-track-height, 5px) / 2);
  height: var(--plyr-range-track-height, 5px);
  -moz-transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  -moz-user-select: none;
       user-select: none;
}

.plyr--full-ui input[type=range]::-moz-range-thumb {
  background: var(--plyr-range-thumb-background, #fff);
  border: 0;
  border-radius: 100%;
  box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2));
  height: var(--plyr-range-thumb-height, 13px);
  position: relative;
  -moz-transition: all 0.2s ease;
  transition: all 0.2s ease;
  width: var(--plyr-range-thumb-height, 13px);
}

.plyr--full-ui input[type=range]::-moz-range-progress {
  background: currentColor;
  border-radius: calc(var(--plyr-range-track-height, 5px) / 2);
  height: var(--plyr-range-track-height, 5px);
}

.plyr--full-ui input[type=range]::-ms-track {
  background: transparent;
  border: 0;
  border-radius: calc(var(--plyr-range-track-height, 5px) / 2);
  height: var(--plyr-range-track-height, 5px);
  -ms-transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  -ms-user-select: none;
      user-select: none;
  color: transparent;
}

.plyr--full-ui input[type=range]::-ms-fill-upper {
  background: transparent;
  border: 0;
  border-radius: calc(var(--plyr-range-track-height, 5px) / 2);
  height: var(--plyr-range-track-height, 5px);
  -ms-transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  -ms-user-select: none;
      user-select: none;
}

.plyr--full-ui input[type=range]::-ms-fill-lower {
  background: transparent;
  border: 0;
  border-radius: calc(var(--plyr-range-track-height, 5px) / 2);
  height: var(--plyr-range-track-height, 5px);
  -ms-transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  -ms-user-select: none;
      user-select: none;
  background: currentColor;
}

.plyr--full-ui input[type=range]::-ms-thumb {
  background: var(--plyr-range-thumb-background, #fff);
  border: 0;
  border-radius: 100%;
  box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2));
  height: var(--plyr-range-thumb-height, 13px);
  position: relative;
  -ms-transition: all 0.2s ease;
  transition: all 0.2s ease;
  width: var(--plyr-range-thumb-height, 13px);
  margin-top: 0;
}

.plyr--full-ui input[type=range]::-ms-tooltip {
  display: none;
}

.plyr--full-ui input[type=range]::-moz-focus-outer {
  border: 0;
}

.plyr--full-ui input[type=range]:focus {
  outline: 0;
}

.plyr--full-ui input[type=range].plyr__tab-focus::-webkit-slider-runnable-track {
  outline: var(--plyr-tab-focus-color, var(--plyr-color-main, var(--plyr-color-main, #00b3ff))) dotted 3px;
  outline-offset: 2px;
}

.plyr--full-ui input[type=range].plyr__tab-focus::-moz-range-track {
  outline: var(--plyr-tab-focus-color, var(--plyr-color-main, var(--plyr-color-main, #00b3ff))) dotted 3px;
  outline-offset: 2px;
}

.plyr--full-ui input[type=range].plyr__tab-focus::-ms-track {
  outline: var(--plyr-tab-focus-color, var(--plyr-color-main, var(--plyr-color-main, #00b3ff))) dotted 3px;
  outline-offset: 2px;
}

.plyr__poster {
  background-color: var(--plyr-video-background, var(--plyr-video-background, black));
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  width: 100%;
  z-index: 1;
}

.plyr--stopped.plyr__poster-enabled .plyr__poster {
  opacity: 1;
}

.plyr--youtube.plyr--paused.plyr__poster-enabled:not(.plyr--stopped) .plyr__poster {
  display: none;
}

.plyr__time {
  font-size: var(--plyr-font-size-time, var(--plyr-font-size-small, 13px));
}

.plyr__time + .plyr__time::before {
  content: "⁄";
  margin-right: var(--plyr-control-spacing, 10px);
}

@media (max-width: 767px) {
  .plyr__time + .plyr__time {
    display: none;
  }
}
/* stylelint-disable selector-max-compound-selectors */
.plyr__tooltip {
  background: var(--plyr-tooltip-background, rgba(255, 255, 255, 0.9));
  border-radius: var(--plyr-tooltip-radius, 3px);
  bottom: 100%;
  -webkit-box-shadow: var(--plyr-tooltip-shadow, 0 1px 2px rgba(0, 0, 0, 0.15));
          box-shadow: var(--plyr-tooltip-shadow, 0 1px 2px rgba(0, 0, 0, 0.15));
  color: var(--plyr-tooltip-color, #4a5464);
  font-size: var(--plyr-font-size-small, 13px);
  font-weight: var(--plyr-font-weight-regular, 400);
  left: 50%;
  line-height: 1.3;
  margin-bottom: calc(var(--plyr-control-spacing, 10px) / 2 * 2);
  opacity: 0;
  padding: calc(var(--plyr-control-spacing, 10px) / 2) calc(var(--plyr-control-spacing, 10px) / 2 * 1.5);
  pointer-events: none;
  position: absolute;
  -webkit-transform: translate(-50%, 10px) scale(0.8);
          transform: translate(-50%, 10px) scale(0.8);
  -webkit-transform-origin: 50% 100%;
          transform-origin: 50% 100%;
  -webkit-transition: opacity 0.2s 0.1s ease, -webkit-transform 0.2s 0.1s ease;
  transition: opacity 0.2s 0.1s ease, -webkit-transform 0.2s 0.1s ease;
  transition: transform 0.2s 0.1s ease, opacity 0.2s 0.1s ease;
  transition: transform 0.2s 0.1s ease, opacity 0.2s 0.1s ease, -webkit-transform 0.2s 0.1s ease;
  white-space: nowrap;
  z-index: 2;
}

.plyr__tooltip::before {
  border-left: var(--plyr-tooltip-arrow-size, 4px) solid transparent;
  border-right: var(--plyr-tooltip-arrow-size, 4px) solid transparent;
  border-top: var(--plyr-tooltip-arrow-size, 4px) solid var(--plyr-tooltip-background, rgba(255, 255, 255, 0.9));
  bottom: calc(var(--plyr-tooltip-arrow-size, 4px) * -1);
  content: "";
  height: 0;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  z-index: 2;
}

.plyr .plyr__control:hover .plyr__tooltip,
.plyr .plyr__control.plyr__tab-focus .plyr__tooltip,
.plyr__tooltip--visible {
  opacity: 1;
  -webkit-transform: translate(-50%, 0) scale(1);
          transform: translate(-50%, 0) scale(1);
}

.plyr .plyr__control:hover .plyr__tooltip {
  z-index: 3;
}

.plyr__controls > .plyr__control:first-child .plyr__tooltip,
.plyr__controls > .plyr__control:first-child + .plyr__control .plyr__tooltip {
  left: 0;
  -webkit-transform: translate(0, 10px) scale(0.8);
          transform: translate(0, 10px) scale(0.8);
  -webkit-transform-origin: 0 100%;
          transform-origin: 0 100%;
}

.plyr__controls > .plyr__control:first-child .plyr__tooltip::before,
.plyr__controls > .plyr__control:first-child + .plyr__control .plyr__tooltip::before {
  left: calc(var(--plyr-control-icon-size, 18px) / 2 + var(--plyr-control-spacing, 10px) * 0.7);
}

.plyr__controls > .plyr__control:last-child .plyr__tooltip {
  left: auto;
  right: 0;
  -webkit-transform: translate(0, 10px) scale(0.8);
          transform: translate(0, 10px) scale(0.8);
  -webkit-transform-origin: 100% 100%;
          transform-origin: 100% 100%;
}

.plyr__controls > .plyr__control:last-child .plyr__tooltip::before {
  left: auto;
  right: calc(var(--plyr-control-icon-size, 18px) / 2 + var(--plyr-control-spacing, 10px) * 0.7);
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}

.plyr__controls > .plyr__control:first-child:hover .plyr__tooltip, .plyr__controls > .plyr__control:first-child.plyr__tab-focus .plyr__tooltip,
.plyr__controls > .plyr__control:first-child .plyr__tooltip--visible,
.plyr__controls > .plyr__control:first-child + .plyr__control:hover .plyr__tooltip,
.plyr__controls > .plyr__control:first-child + .plyr__control.plyr__tab-focus .plyr__tooltip,
.plyr__controls > .plyr__control:first-child + .plyr__control .plyr__tooltip--visible,
.plyr__controls > .plyr__control:last-child:hover .plyr__tooltip,
.plyr__controls > .plyr__control:last-child.plyr__tab-focus .plyr__tooltip,
.plyr__controls > .plyr__control:last-child .plyr__tooltip--visible {
  -webkit-transform: translate(0, 0) scale(1);
          transform: translate(0, 0) scale(1);
}

.plyr__progress {
  left: calc(var(--plyr-range-thumb-height, 13px) * 0.5);
  margin-right: var(--plyr-range-thumb-height, 13px);
  position: relative;
}

.plyr__progress input[type=range], .plyr__progress__buffer {
  margin-left: calc(var(--plyr-range-thumb-height, 13px) * -0.5);
  margin-right: calc(var(--plyr-range-thumb-height, 13px) * -0.5);
  width: calc(100% + var(--plyr-range-thumb-height, 13px));
}

.plyr__progress input[type=range] {
  position: relative;
  z-index: 2;
}

.plyr__progress .plyr__tooltip {
  font-size: var(--plyr-font-size-time, var(--plyr-font-size-small, 13px));
  left: 0;
}

.plyr__progress__buffer {
  -webkit-appearance: none;
  /* stylelint-disable-line */
  background: transparent;
  border: 0;
  border-radius: 100px;
  height: var(--plyr-range-track-height, 5px);
  left: 0;
  margin-top: calc(var(--plyr-range-track-height, 5px) / 2 * -1);
  padding: 0;
  position: absolute;
  top: 50%;
}

.plyr__progress__buffer::-webkit-progress-bar {
  background: transparent;
}

.plyr__progress__buffer::-webkit-progress-value {
  background: currentColor;
  border-radius: 100px;
  min-width: var(--plyr-range-track-height, 5px);
  -webkit-transition: width 0.2s ease;
  transition: width 0.2s ease;
}

.plyr__progress__buffer::-moz-progress-bar {
  background: currentColor;
  border-radius: 100px;
  min-width: var(--plyr-range-track-height, 5px);
  -moz-transition: width 0.2s ease;
  transition: width 0.2s ease;
}

.plyr__progress__buffer::-ms-fill {
  border-radius: 100px;
  -ms-transition: width 0.2s ease;
  transition: width 0.2s ease;
}

.plyr--loading .plyr__progress__buffer {
  -webkit-animation: plyr-progress 1s linear infinite;
          animation: plyr-progress 1s linear infinite;
  background-image: linear-gradient(-45deg, var(--plyr-progress-loading-background, rgba(35, 40, 47, 0.6)) 25%, transparent 25%, transparent 50%, var(--plyr-progress-loading-background, rgba(35, 40, 47, 0.6)) 50%, var(--plyr-progress-loading-background, rgba(35, 40, 47, 0.6)) 75%, transparent 75%, transparent);
  background-repeat: repeat-x;
  background-size: var(--plyr-progress-loading-size, 25px) var(--plyr-progress-loading-size, 25px);
  color: transparent;
}

.plyr--video.plyr--loading .plyr__progress__buffer {
  background-color: var(--plyr-video-progress-buffered-background, rgba(255, 255, 255, 0.25));
}

.plyr--audio.plyr--loading .plyr__progress__buffer {
  background-color: var(--plyr-audio-progress-buffered-background, rgba(193, 200, 209, 0.6));
}

.plyr__volume {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 110px;
  min-width: 80px;
  position: relative;
  width: 20%;
}

.plyr__volume input[type=range] {
  margin-left: calc(var(--plyr-control-spacing, 10px) / 2);
  margin-right: calc(var(--plyr-control-spacing, 10px) / 2);
  position: relative;
  z-index: 2;
}

.plyr--is-ios .plyr__volume {
  min-width: 0;
  width: auto;
}

.plyr--audio {
  display: block;
}

.plyr--audio .plyr__controls {
  background: var(--plyr-audio-controls-background, #fff);
  border-radius: inherit;
  color: var(--plyr-audio-control-color, #4a5464);
  padding: var(--plyr-control-spacing, 10px);
}

.plyr--audio .plyr__control.plyr__tab-focus, .plyr--audio .plyr__control:hover, .plyr--audio .plyr__control[aria-expanded=true] {
  background: var(--plyr-audio-control-background-hover, var(--plyr-color-main, var(--plyr-color-main, #00b3ff)));
  color: var(--plyr-audio-control-color-hover, #fff);
}

.plyr--full-ui.plyr--audio input[type=range]::-webkit-slider-runnable-track {
  background-color: var(--plyr-audio-range-track-background, var(--plyr-audio-progress-buffered-background, rgba(193, 200, 209, 0.6)));
}

.plyr--full-ui.plyr--audio input[type=range]::-moz-range-track {
  background-color: var(--plyr-audio-range-track-background, var(--plyr-audio-progress-buffered-background, rgba(193, 200, 209, 0.6)));
}

.plyr--full-ui.plyr--audio input[type=range]::-ms-track {
  background-color: var(--plyr-audio-range-track-background, var(--plyr-audio-progress-buffered-background, rgba(193, 200, 209, 0.6)));
}

.plyr--full-ui.plyr--audio input[type=range]:active::-webkit-slider-thumb {
  -webkit-box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2)), 0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px) var(--plyr-audio-range-thumb-active-shadow-color, rgba(35, 40, 47, 0.1));
          box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2)), 0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px) var(--plyr-audio-range-thumb-active-shadow-color, rgba(35, 40, 47, 0.1));
}

.plyr--full-ui.plyr--audio input[type=range]:active::-moz-range-thumb {
  box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2)), 0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px) var(--plyr-audio-range-thumb-active-shadow-color, rgba(35, 40, 47, 0.1));
}

.plyr--full-ui.plyr--audio input[type=range]:active::-ms-thumb {
  box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2)), 0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px) var(--plyr-audio-range-thumb-active-shadow-color, rgba(35, 40, 47, 0.1));
}

.plyr--audio .plyr__progress__buffer {
  color: var(--plyr-audio-progress-buffered-background, rgba(193, 200, 209, 0.6));
}

.plyr--video {
  background: var(--plyr-video-background, var(--plyr-video-background, black));
  overflow: hidden;
}

.plyr--video.plyr--menu-open {
  overflow: visible;
}

.plyr__video-wrapper {
  background: var(--plyr-video-background, var(--plyr-video-background, black));
  height: 100%;
  margin: auto;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.plyr__video-embed,
.plyr__video-wrapper--fixed-ratio {
  aspect-ratio: 16/9;
}

@supports not (aspect-ratio: 16/9) {
  .plyr__video-embed,
.plyr__video-wrapper--fixed-ratio {
    height: 0;
    padding-bottom: 56.25%;
    position: relative;
  }
}
.plyr__video-embed iframe,
.plyr__video-wrapper--fixed-ratio video {
  border: 0;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.plyr--full-ui .plyr__video-embed > .plyr__video-embed__container {
  padding-bottom: 240%;
  position: relative;
  -webkit-transform: translateY(-38.28125%);
          transform: translateY(-38.28125%);
}

.plyr--video .plyr__controls {
  background: var(--plyr-video-controls-background, linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75)));
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;
  bottom: 0;
  color: var(--plyr-video-control-color, #fff);
  left: 0;
  padding: calc(var(--plyr-control-spacing, 10px) / 2);
  padding-top: calc(var(--plyr-control-spacing, 10px) * 2);
  position: absolute;
  right: 0;
  -webkit-transition: opacity 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
  z-index: 3;
}

@media (min-width: 480px) {
  .plyr--video .plyr__controls {
    padding: var(--plyr-control-spacing, 10px);
    padding-top: calc(var(--plyr-control-spacing, 10px) * 3.5);
  }
}
.plyr--video.plyr--hide-controls .plyr__controls {
  opacity: 0;
  pointer-events: none;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}

.plyr--video .plyr__control.plyr__tab-focus, .plyr--video .plyr__control:hover, .plyr--video .plyr__control[aria-expanded=true] {
  background: var(--plyr-video-control-background-hover, var(--plyr-color-main, var(--plyr-color-main, #00b3ff)));
  color: var(--plyr-video-control-color-hover, #fff);
}

.plyr__control--overlaid {
  background: var(--plyr-video-control-background-hover, var(--plyr-color-main, var(--plyr-color-main, #00b3ff)));
  border: 0;
  border-radius: 100%;
  color: var(--plyr-video-control-color, #fff);
  display: none;
  left: 50%;
  opacity: 0.9;
  padding: calc(var(--plyr-control-spacing, 10px) * 1.5);
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 2;
}

.plyr__control--overlaid svg {
  left: 2px;
  position: relative;
}

.plyr__control--overlaid:hover, .plyr__control--overlaid:focus {
  opacity: 1;
}

.plyr--playing .plyr__control--overlaid {
  opacity: 0;
  visibility: hidden;
}

.plyr--full-ui.plyr--video .plyr__control--overlaid {
  display: block;
}

.plyr--full-ui.plyr--video input[type=range]::-webkit-slider-runnable-track {
  background-color: var(--plyr-video-range-track-background, var(--plyr-video-progress-buffered-background, rgba(255, 255, 255, 0.25)));
}

.plyr--full-ui.plyr--video input[type=range]::-moz-range-track {
  background-color: var(--plyr-video-range-track-background, var(--plyr-video-progress-buffered-background, rgba(255, 255, 255, 0.25)));
}

.plyr--full-ui.plyr--video input[type=range]::-ms-track {
  background-color: var(--plyr-video-range-track-background, var(--plyr-video-progress-buffered-background, rgba(255, 255, 255, 0.25)));
}

.plyr--full-ui.plyr--video input[type=range]:active::-webkit-slider-thumb {
  -webkit-box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2)), 0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px) var(--plyr-audio-range-thumb-active-shadow-color, rgba(255, 255, 255, 0.5));
          box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2)), 0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px) var(--plyr-audio-range-thumb-active-shadow-color, rgba(255, 255, 255, 0.5));
}

.plyr--full-ui.plyr--video input[type=range]:active::-moz-range-thumb {
  box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2)), 0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px) var(--plyr-audio-range-thumb-active-shadow-color, rgba(255, 255, 255, 0.5));
}

.plyr--full-ui.plyr--video input[type=range]:active::-ms-thumb {
  box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2)), 0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px) var(--plyr-audio-range-thumb-active-shadow-color, rgba(255, 255, 255, 0.5));
}

.plyr--video .plyr__progress__buffer {
  color: var(--plyr-video-progress-buffered-background, rgba(255, 255, 255, 0.25));
}

.plyr:-webkit-full-screen {
  background: #000;
  border-radius: 0 !important;
  height: 100%;
  margin: 0;
  width: 100%;
}

.plyr:-ms-fullscreen {
  background: #000;
  border-radius: 0 !important;
  height: 100%;
  margin: 0;
  width: 100%;
}

.plyr:fullscreen {
  background: #000;
  border-radius: 0 !important;
  height: 100%;
  margin: 0;
  width: 100%;
}

.plyr:-webkit-full-screen video {
  height: 100%;
}

.plyr:-ms-fullscreen video {
  height: 100%;
}

.plyr:fullscreen video {
  height: 100%;
}

.plyr:-webkit-full-screen .plyr__control .icon--exit-fullscreen {
  display: block;
}

.plyr:-ms-fullscreen .plyr__control .icon--exit-fullscreen {
  display: block;
}

.plyr:fullscreen .plyr__control .icon--exit-fullscreen {
  display: block;
}

.plyr:-webkit-full-screen .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}

.plyr:-ms-fullscreen .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}

.plyr:fullscreen .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}

.plyr:-webkit-full-screen.plyr--hide-controls {
  cursor: none;
}

.plyr:-ms-fullscreen.plyr--hide-controls {
  cursor: none;
}

.plyr:fullscreen.plyr--hide-controls {
  cursor: none;
}

@media (min-width: 1024px) {
  .plyr:-webkit-full-screen .plyr__captions {
    font-size: var(--plyr-font-size-xlarge, 21px);
  }
  .plyr:-ms-fullscreen .plyr__captions {
    font-size: var(--plyr-font-size-xlarge, 21px);
  }
  .plyr:fullscreen .plyr__captions {
    font-size: var(--plyr-font-size-xlarge, 21px);
  }
}
.plyr--fullscreen-fallback {
  background: #000;
  border-radius: 0 !important;
  height: 100%;
  margin: 0;
  width: 100%;
  bottom: 0;
  display: block;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 10000000;
}

.plyr--fullscreen-fallback video {
  height: 100%;
}

.plyr--fullscreen-fallback .plyr__control .icon--exit-fullscreen {
  display: block;
}

.plyr--fullscreen-fallback .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}

.plyr--fullscreen-fallback.plyr--hide-controls {
  cursor: none;
}

@media (min-width: 1024px) {
  .plyr--fullscreen-fallback .plyr__captions {
    font-size: var(--plyr-font-size-xlarge, 21px);
  }
}
.plyr__ads {
  border-radius: inherit;
  bottom: 0;
  cursor: pointer;
  left: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

.plyr__ads > div,
.plyr__ads > div iframe {
  height: 100%;
  position: absolute;
  width: 100%;
}

.plyr__ads::after {
  background: #23282f;
  border-radius: 2px;
  bottom: var(--plyr-control-spacing, 10px);
  color: #fff;
  content: attr(data-badge-text);
  font-size: 11px;
  padding: 2px 6px;
  pointer-events: none;
  position: absolute;
  right: var(--plyr-control-spacing, 10px);
  z-index: 3;
}

.plyr__ads:empty::after {
  display: none;
}

.plyr__cues {
  background: currentColor;
  display: block;
  height: var(--plyr-range-track-height, 5px);
  left: 0;
  opacity: 0.8;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 3px;
  z-index: 3;
}

.plyr__preview-thumb {
  background-color: var(--plyr-tooltip-background, rgba(255, 255, 255, 0.9));
  border-radius: 3px;
  bottom: 100%;
  -webkit-box-shadow: var(--plyr-tooltip-shadow, 0 1px 2px rgba(0, 0, 0, 0.15));
          box-shadow: var(--plyr-tooltip-shadow, 0 1px 2px rgba(0, 0, 0, 0.15));
  margin-bottom: calc(var(--plyr-control-spacing, 10px) / 2 * 2);
  opacity: 0;
  padding: var(--plyr-tooltip-radius, 3px);
  pointer-events: none;
  position: absolute;
  -webkit-transform: translate(0, 10px) scale(0.8);
          transform: translate(0, 10px) scale(0.8);
  -webkit-transform-origin: 50% 100%;
          transform-origin: 50% 100%;
  -webkit-transition: opacity 0.2s 0.1s ease, -webkit-transform 0.2s 0.1s ease;
  transition: opacity 0.2s 0.1s ease, -webkit-transform 0.2s 0.1s ease;
  transition: transform 0.2s 0.1s ease, opacity 0.2s 0.1s ease;
  transition: transform 0.2s 0.1s ease, opacity 0.2s 0.1s ease, -webkit-transform 0.2s 0.1s ease;
  z-index: 2;
}

.plyr__preview-thumb--is-shown {
  opacity: 1;
  -webkit-transform: translate(0, 0) scale(1);
          transform: translate(0, 0) scale(1);
}

.plyr__preview-thumb::before {
  border-left: var(--plyr-tooltip-arrow-size, 4px) solid transparent;
  border-right: var(--plyr-tooltip-arrow-size, 4px) solid transparent;
  border-top: var(--plyr-tooltip-arrow-size, 4px) solid var(--plyr-tooltip-background, rgba(255, 255, 255, 0.9));
  bottom: calc(var(--plyr-tooltip-arrow-size, 4px) * -1);
  content: "";
  height: 0;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  z-index: 2;
}

.plyr__preview-thumb__image-container {
  background: #c1c8d1;
  border-radius: calc(var(--plyr-tooltip-radius, 3px) - 1px);
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.plyr__preview-thumb__image-container img {
  height: 100%;
  left: 0;
  max-height: none;
  max-width: none;
  position: absolute;
  top: 0;
  width: 100%;
}

.plyr__preview-thumb__time-container {
  bottom: 6px;
  left: 0;
  position: absolute;
  right: 0;
  white-space: nowrap;
  z-index: 3;
}

.plyr__preview-thumb__time-container span {
  background-color: rgba(0, 0, 0, 0.55);
  border-radius: calc(var(--plyr-tooltip-radius, 3px) - 1px);
  color: #fff;
  font-size: var(--plyr-font-size-time, var(--plyr-font-size-small, 13px));
  padding: 3px 6px;
}

.plyr__preview-scrubbing {
  bottom: 0;
  -webkit-filter: blur(1px);
          filter: blur(1px);
  height: 100%;
  left: 0;
  margin: auto;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  width: 100%;
  z-index: 1;
}

.plyr__preview-scrubbing--is-shown {
  opacity: 1;
}

.plyr__preview-scrubbing img {
  height: 100%;
  left: 0;
  max-height: none;
  max-width: none;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  top: 0;
  width: 100%;
}

.plyr--no-transition {
  -webkit-transition: none !important;
  transition: none !important;
}

.plyr__sr-only {
  clip: rect(1px, 1px, 1px, 1px);
  overflow: hidden;
  border: 0 !important;
  height: 1px !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
}

.plyr [hidden] {
  display: none !important;
}

.js-accordion-panel {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  overflow: hidden;
  height: 0;
}

.icv {
  position: relative;
  overflow: hidden;
  cursor: row-resize;
}

.icv__icv--vertical {
  cursor: row-resize;
}

.icv__icv--horizontal {
  cursor: col-resize;
}

.icv__img {
  pointer-events: none;
  -o-user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
      user-select: none;
  max-width: none;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  top: 0;
  display: block;
}

.icv__is--fluid .icv__img {
  display: none;
}

.icv__img-a {
  height: auto;
  position: static;
  z-index: 1;
  left: 0px;
}

.icv__img-b {
  height: 100%;
  position: absolute;
  z-index: 2;
  left: auto;
  right: 0px;
  width: auto;
}

.icv__icv--vertical .icv__img-b {
  width: 100%;
  height: auto;
}

.icv__imposter {
  z-index: 4;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}

.icv__wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  right: 0px;
  top: 0px;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
  z-index: 3;
}

.icv__is--fluid .icv__wrapper, .icv__icv--vertical .icv__wrapper {
  width: 100% !important;
}

.icv__is--fluid .icv__wrapper, .icv__icv--horizontal .icv__wrapper {
  height: 100% !important;
}

.icv__fluidwrapper {
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.icv__control {
  position: absolute;
  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;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 100%;
  top: 0px;
  z-index: 5;
}

.icv__icv--vertical .icv__control {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  left: 0;
  width: 100%;
}

.icv__control-line {
  height: 50%;
  width: 2px;
  z-index: 6;
}

.icv__icv--vertical .icv__control-line {
  width: 50%;
}

.icv__theme-wrapper {
  width: 100%;
  height: 100%;
  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;
  position: absolute;
  -webkit-transition: all 0.1s ease-out 0s;
  transition: all 0.1s ease-out 0s;
  z-index: 5;
}

.icv__icv--vertical .icv__theme-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.icv__arrow-wrapper {
  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;
  -webkit-transition: all 0.1s ease-out 0s;
  transition: all 0.1s ease-out 0s;
}

.icv__arrow-a {
  -webkit-transform: scale(1.5) rotateZ(180deg);
          transform: scale(1.5) rotateZ(180deg);
  height: 20px;
  width: 20px;
  -webkit-filter: drop-shadow(0px 3px 5px rgba(0, 0, 0, 0.33));
  filter: drop-shadow(0px -3px 5px rgba(0, 0, 0, 0.33));
}

.icv__arrow-b {
  -webkit-transform: scale(1.5) rotateZ(0deg);
          transform: scale(1.5) rotateZ(0deg);
  height: 20px;
  width: 20px;
  -webkit-filter: drop-shadow(0px 3px 5px rgba(0, 0, 0, 0.33));
  filter: drop-shadow(0px 3px 5px rgba(0, 0, 0, 0.33));
}

.icv__circle {
  width: 50px;
  height: 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 999px;
}

.icv__label {
  position: absolute;
  bottom: 1rem;
  z-index: 12;
  background: rgba(0, 0, 0, 0.33);
  color: white;
  border-radius: 3px;
  padding: 0.5rem 0.75rem;
  font-size: 0.85rem;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.icv__label.vertical {
  bottom: auto;
  left: 1rem;
}

.icv__label.on-hover {
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: 0.25s cubic-bezier(0.68, 0.26, 0.58, 1.22);
  transition: 0.25s cubic-bezier(0.68, 0.26, 0.58, 1.22);
}

.icv:hover .icv__label.on-hover {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.icv__label-before {
  left: 1rem;
}

.icv__label-after {
  right: 1rem;
}

.icv__label-before.vertical {
  top: 1rem;
}

.icv__label-after.vertical {
  bottom: 1rem;
  right: auto;
}

.icv__body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/**
 * Vendors
 */
.ss-main {
  position: relative;
  display: block;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.ss-main .ss-single-selected {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  width: calc(100% + 30px);
  padding-bottom: 16px;
  margin-top: -16px;
  border: none;
  background-color: transparent;
  outline: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  z-index: 10;
}

@media (min-width: 480px) {
  .ss-main .ss-single-selected {
    padding-bottom: calc(2.5vw + 4px);
  }
}
@media (min-width: 800px) {
  .ss-main .ss-single-selected {
    padding-bottom: 24px;
  }
}
@media (min-width: 1440px) {
  .ss-main .ss-single-selected {
    padding-bottom: 24px;
  }
}
@media (min-width: 2560px) {
  .ss-main .ss-single-selected {
    padding-bottom: calc(0.2419354839vw + 17.8064516129px);
  }
}
@media (min-width: 3800px) {
  .ss-main .ss-single-selected {
    padding-bottom: 27px;
  }
}
@media (min-width: 480px) {
  .ss-main .ss-single-selected {
    margin-top: calc(-2.5vw - 4px);
  }
}
@media (min-width: 800px) {
  .ss-main .ss-single-selected {
    margin-top: -24px;
  }
}
@media (min-width: 1440px) {
  .ss-main .ss-single-selected {
    margin-top: -24px;
  }
}
@media (min-width: 2560px) {
  .ss-main .ss-single-selected {
    margin-top: calc(4.1129032258vw - 129.2903225806px);
  }
}
@media (min-width: 3800px) {
  .ss-main .ss-single-selected {
    margin-top: 27px;
  }
}
.ss-main .ss-single-selected.ss-disabled {
  background-color: transparent;
  cursor: not-allowed;
}

.ss-main .ss-single-selected.ss-open-above {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.ss-main .ss-single-selected.ss-open-below {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.ss-main .ss-single-selected .placeholder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: left;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: #161617;
  opacity: 0.5;
  position: absolute;
  top: 16px;
}

@media (min-width: 480px) {
  .ss-main .ss-single-selected .placeholder {
    top: calc(2.5vw + 4px);
  }
}
@media (min-width: 800px) {
  .ss-main .ss-single-selected .placeholder {
    top: 24px;
  }
}
@media (min-width: 1440px) {
  .ss-main .ss-single-selected .placeholder {
    top: 24px;
  }
}
@media (min-width: 2560px) {
  .ss-main .ss-single-selected .placeholder {
    top: calc(0.2419354839vw + 17.8064516129px);
  }
}
@media (min-width: 3800px) {
  .ss-main .ss-single-selected .placeholder {
    top: 27px;
  }
}
.ss-main .ss-single-selected .placeholder * {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: auto;
}

.ss-main .ss-single-selected .ss-deselect.ss-hide {
  position: absolute;
  top: 16px;
  right: 0;
}

@media (min-width: 480px) {
  .ss-main .ss-single-selected .ss-deselect.ss-hide {
    top: calc(2.5vw + 4px);
  }
}
@media (min-width: 800px) {
  .ss-main .ss-single-selected .ss-deselect.ss-hide {
    top: 24px;
  }
}
@media (min-width: 1440px) {
  .ss-main .ss-single-selected .ss-deselect.ss-hide {
    top: 24px;
  }
}
@media (min-width: 2560px) {
  .ss-main .ss-single-selected .ss-deselect.ss-hide {
    top: calc(0.2419354839vw + 17.8064516129px);
  }
}
@media (min-width: 3800px) {
  .ss-main .ss-single-selected .ss-deselect.ss-hide {
    top: 27px;
  }
}
.ss-main .ss-single-selected .ss-disabled {
  display: none;
}

.ss-main .ss-single-selected .ss-arrow {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(calc(-50% - 6px));
          transform: translateY(calc(-50% - 6px));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.ss-main .ss-single-selected .ss-arrow span {
  -webkit-transition: margin 0.2s, -webkit-transform 0.2s;
  transition: margin 0.2s, -webkit-transform 0.2s;
  transition: transform 0.2s, margin 0.2s;
  transition: transform 0.2s, margin 0.2s, -webkit-transform 0.2s;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  border: solid #161617;
  border-width: 0 1px 1px 0;
  display: inline-block;
  padding: 4px;
}

@media (min-width: 480px) {
  .ss-main .ss-single-selected .ss-arrow span {
    padding: 4px;
  }
}
@media (min-width: 800px) {
  .ss-main .ss-single-selected .ss-arrow span {
    padding: 4px;
  }
}
@media (min-width: 1440px) {
  .ss-main .ss-single-selected .ss-arrow span {
    padding: 4px;
  }
}
@media (min-width: 2560px) {
  .ss-main .ss-single-selected .ss-arrow span {
    padding: calc(0.0403225806vw + 2.9677419355px);
  }
}
@media (min-width: 3800px) {
  .ss-main .ss-single-selected .ss-arrow span {
    padding: 4.5px;
  }
}
.ss-main .ss-single-selected .ss-arrow span.arrow-up {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}

.ss-main .ss-single-selected .ss-arrow span.arrow-down {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.ss-main .ss-multi-selected {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  cursor: pointer;
  width: 100%;
  padding: 0 0 0 3px;
  background-color: transparent;
  outline: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}

.ss-content {
  position: absolute;
  width: 360px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-bottom: solid #161617 1px;
  z-index: 1010;
  background-color: rgba(203, 209, 219, 0.3);
  -webkit-transform-origin: center top;
          transform-origin: center top;
  -webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
  transition: opacity 0.2s, -webkit-transform 0.2s;
  transition: transform 0.2s, opacity 0.2s;
  transition: transform 0.2s, opacity 0.2s, -webkit-transform 0.2s;
  opacity: 0;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  overflow: hidden;
  top: 16px;
}

@media (min-width: 480px) {
  .ss-content {
    top: calc(2.5vw + 4px);
  }
}
@media (min-width: 800px) {
  .ss-content {
    top: 24px;
  }
}
@media (min-width: 1440px) {
  .ss-content {
    top: 24px;
  }
}
@media (min-width: 2560px) {
  .ss-content {
    top: calc(0.2419354839vw + 17.8064516129px);
  }
}
@media (min-width: 3800px) {
  .ss-content {
    top: 27px;
  }
}
@media (max-width: 800px) {
  .ss-content {
    width: 100%;
  }
}
.ss-content.ss-open {
  display: block;
  opacity: 1;
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}

.ss-content .ss-search.ss-hide {
  height: 0px;
  opacity: 0;
  padding: 0px 0px 0px 0px;
  margin: 0px 0px 0px 0px;
}

.ss-content .ss-search.ss-hide input {
  height: 0px;
  opacity: 0;
  padding: 0px 0px 0px 0px;
  margin: 0px 0px 0px 0px;
}

.ss-content .ss-list {
  overflow-x: hidden;
  overflow-y: auto;
  text-align: left;
}

.ss-content .ss-list .ss-option {
  padding: 12px 20px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  color: #161617;
  opacity: 0.5;
  -webkit-transition: all 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: all 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  font-size: 16px;
}

@media (min-width: 480px) {
  .ss-content .ss-list .ss-option {
    font-size: 16px;
  }
}
@media (min-width: 1440px) {
  .ss-content .ss-list .ss-option {
    font-size: 16px;
  }
}
@media (min-width: 2560px) {
  .ss-content .ss-list .ss-option {
    font-size: 16px;
  }
}
.ss-content .ss-list .ss-option:hover {
  opacity: 1;
}

@media (max-width: 800px) {
  .ss-content .ss-list .ss-option {
    padding: 20px 20px;
    font-size: 22px;
  }
}
@media (max-width: 800px) and (min-width: 480px) {
  .ss-content .ss-list .ss-option {
    font-size: 22px;
  }
}
@media (max-width: 800px) and (min-width: 1440px) {
  .ss-content .ss-list .ss-option {
    font-size: 22px;
  }
}
@media (max-width: 800px) and (min-width: 2560px) {
  .ss-content .ss-list .ss-option {
    font-size: 22px;
  }
}
.ss-content .ss-list .ss-option * {
  display: inline-block;
}

.ss-content .ss-list .ss-option.ss-disabled {
  cursor: not-allowed;
}

.ss-content .ss-list .ss-option.ss-hide {
  display: none;
}
/*# sourceMappingURL=style.css.map */
