@charset "UTF-8";
/**
 * 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:
 * @include mq(md){};
 */
/**
 * 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");
 * @include font-face(
 *  "Hanken-Grotesk",
 *  "HankenGrotesk-SemiBold",
 *  $font-weight: 600,
 *  $font-style: italic
 * );
 */
/**
 * Mixin for setting default font size and line height
 */
/**
 * Mixin for setting default font family and font weight
 */
/**
 * 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);
 */
/**
 * 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);
 */
/**
 * 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: todo
 */
/**
 Hover styling for all devices and browsers
 */
/**
 * Third party tools
 */
/**
 * Settings
 */
/**
 * Breakpoints
 */
/**
 * Breakpoints - map
 */
/**
 * Colors
 */
/**
 * Colors - re-assigning
 */
/**
 * Colors - components
 */
/**
 * Font variables
 */
/**
 * Transition easing map
 */
/**
 * Transitions map
 */
/**
 * Z-index map
 */
/**
 * B-forms settings
 */
/*
 * Fieldset
 */
/*
 * Label and legend
 */
/*
 * Input
 * 1. Hover
 * 2. Focus
 * 3. Disabled
 * 4. Placeholder
 * 5. Placeholder disabled
 */
/* 1 */
/* 2 */
/* 3 */
/* 4 */
/* 5 */
/*
 * Textarea
 */
/*
 * Range
 * 1. Hover
 * 2. Focus
 * 3. Disabled
 */
/* 1 */
/* 2 */
/* 3 */
/*
 * Checkbox
 * 1. Color of checked icon that will be injected in the SVG fill, hex only
 * 2. Slice # from hex
 * 3. SVG code without double marks, color without hex is injected in SVG fill where %23 is UTF8 "#"
 * 4. Left space of label from the fake checkbox ($form-checkbox-width + $form-checkbox-label-left-position)
 * 5. Fine tune the top space of both holder and checked indicator, because of line height on label
 * 6. Hover
 * 7. Focus
 * 8. Checked
 * 9. Disabled
 * 10. IE11 support with base64 SVG - needs two
 */
/* 1 */
/* 2 */
/* 3 */
/* 4 */
/* 5 */
/* 6 */
/* 7 */
/* 8 */
/* 9 */
/* 10 */
/*
 * Radio
 * 1. Color of checked icon
 * 2. Left space of label from the fake checkbox ($form-radio-width + $form-radio-label-left-position)
 * 3. Fine tune the top space of both holder and checked indicator, because of line height on label
 * 6. Hover
 * 7. Focus
 * 8. Checked
 * 9. Disabled
 * 10. IE11 support with base64 SVG - needs two
 */
/* 1 */
/* 2 */
/* 3 */
/* 4 */
/* 5 */
/* 6 */
/* 7 */
/**
 * Generic
 */
/**
 * 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 {
  display: block;
  max-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,
input[autocomplete=off]:focus::-webkit-textfield-decoration-container {
  /* 1, 2, 3 */
}

/**
 * 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
 */
html,
body {
  width: 100%;
  height: 100%;
  -webkit-font-smoothing: antialiased;
}

html.is-locked {
  top: 0;
  left: 0;
  right: 0;
  position: fixed;
}

body {
  font-family: "Montserrat", sans-serif;
  font-weight: normal;
  font-size: 18px;
  line-height: 1.4444444444em;
  color: rgb(56, 56, 56);
  background-color: #ffffff;
  margin-top: calc(3rem + 33px);
}

@media (max-width: 800px) {
  body {
    margin-top: 0;
  }
}
.is-purple {
  color: #8153a8;
}

a {
  color: inherit;
  text-decoration: none;
}

/**
 * Objects
 */
.o-container {
  padding-left: 4.8076923077%;
  padding-right: 4.8076923077%;
  width: 100%;
  max-width: 100vw;
  margin: 0 auto;
}

@media (max-width: 480px) {
  .o-container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.o-container--narrow {
  padding-left: 11.5384615385%;
  padding-right: 11.5384615385%;
}

@media (max-width: 480px) {
  .c-navigation .o-container {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 480px) {
  .o-container .o-container {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 800px) {
  .o-page {
    overflow: hidden;
  }
}
.o-page__aside--left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 14.8936170213%;
  padding-top: 42.3076923077vw;
}

@media (max-width: 800px) {
  .o-page__aside--left {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    padding-top: 0;
  }
}
.o-page__aside--right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 40.4255319149%;
}

@media (max-width: 800px) {
  .o-page__aside--right {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 100%;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
.o-page__aside .c-link {
  margin-top: auto;
  color: rgb(10, 214, 123);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.o-page__aside .c-link span {
  margin-right: 1.3269230769vw;
}

.o-page__aside .c-link i {
  width: 1.3269230769vw;
  height: 1.3269230769vw;
  background-image: url("../ui/RasterizedImage-47164b7e-1299-48d8-b94d-d6ef782f2fba.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-animation-name: animation_32_1;
          animation-name: animation_32_1;
  -webkit-animation-duration: 1.2s;
          animation-duration: 1.2s;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
  -webkit-animation-fill-mode: none;
          animation-fill-mode: none;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}

@media (max-width: 800px) {
  .o-page__aside .c-link i {
    width: 20.7px;
    height: 20.7px;
  }
}
.o-page__main {
  position: relative;
  z-index: 1;
  max-width: 100%;
  width: 44.5744680851%;
  padding-bottom: 4.1806020067vw;
}

@media (max-width: 800px) {
  .o-page__main {
    width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media (max-width: 800px) {
  .o-page--single {
    padding-top: calc(6rem + 33px);
  }
}
/**
 * Components
 */
.navbar-nav--lang {
  display: none !important;
}

.footer__logo-img {
  display: initial;
}

.footer__waves {
  position: absolute;
}

.navbar-aqm .navbar-logo img {
  display: inline-block;
  max-width: initial;
  vertical-align: top;
}

.cmplz-cookiebanner .cmplz-functional .cmplz-icon, .cmplz-manage-consent-container .cmplz-functional .cmplz-icon, .cmplz-cookiebanner .cmplz-functional .cmplz-description, .cmplz-manage-consent-container .cmplz-functional .cmplz-description {
  display: none;
}

.cmplz-cookiebanner .cmplz-preferences, .cmplz-manage-consent-container .cmplz-preferences {
  display: none;
}

.cmplz-cookiebanner .cmplz-statistics .cmplz-icon, .cmplz-manage-consent-container .cmplz-statistics .cmplz-icon, .cmplz-cookiebanner .cmplz-statistics .cmplz-description, .cmplz-manage-consent-container .cmplz-statistics .cmplz-description {
  display: none;
}

.cmplz-cookiebanner .cmplz-marketing .cmplz-icon, .cmplz-manage-consent-container .cmplz-marketing .cmplz-icon, .cmplz-cookiebanner .cmplz-marketing .cmplz-description, .cmplz-manage-consent-container .cmplz-marketing .cmplz-description {
  display: none;
}

.cmplz-deny {
  display: none;
}

.cmplz-cookiebanner .cmplz-title {
  display: none;
}

#cmplz-manage-consent .cmplz-manage-consent {
  display: none;
}

.cmplz-logo {
  display: none !important;
}

.cmplz-cookiebanner .cmplz-close {
  display: none;
}

.cmplz-cookiebanner .cmplz-categories .cmplz-category .cmplz-banner-checkbox {
  position: relative;
}

.cmplz-cookiebanner .cmplz-categories .cmplz-category .cmplz-banner-checkbox input.cmplz-consent-checkbox {
  opacity: 0;
  margin: 0;
  margin-top: -10px;
  cursor: pointer;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  position: absolute;
  z-index: 1;
  top: 0px;
  left: 0px;
  width: 40px;
  height: 20px;
}

.cmplz-cookiebanner .cmplz-categories .cmplz-category .cmplz-banner-checkbox input.cmplz-consent-checkbox:focus + .cmplz-label:before {
  -webkit-box-shadow: 0 0 0 2px #245fcc;
          box-shadow: 0 0 0 2px #245fcc;
}

.cmplz-cookiebanner .cmplz-categories .cmplz-category .cmplz-banner-checkbox input.cmplz-consent-checkbox:checked + .cmplz-label::before {
  display: block;
  background-color: var(--cmplz_slider_active_color);
  content: "";
  padding-left: 6px;
}

.cmplz-cookiebanner .cmplz-categories .cmplz-category .cmplz-banner-checkbox input.cmplz-consent-checkbox:checked + .cmplz-label:after {
  left: 14px;
}

.cmplz-cookiebanner .cmplz-categories .cmplz-category .cmplz-banner-checkbox .cmplz-label {
  position: relative;
  padding-left: 30px;
  margin: 0;
}

.cmplz-cookiebanner .cmplz-categories .cmplz-category .cmplz-banner-checkbox .cmplz-label:before, .cmplz-cookiebanner .cmplz-categories .cmplz-category .cmplz-banner-checkbox .cmplz-label:after {
  position: absolute;
  border-radius: 10px;
  -webkit-transition: background-color 0.3s, left 0.3s;
  transition: background-color 0.3s, left 0.3s;
}

.cmplz-cookiebanner .cmplz-categories .cmplz-category .cmplz-banner-checkbox .cmplz-label:before {
  display: block;
  content: "";
  color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "FontAwesome", sans-serif;
  padding-left: 23px;
  font-size: 12px;
  line-height: 20px;
  background-color: var(--cmplz_slider_inactive_color);
  left: 0px;
  top: -7px;
  height: 15px;
  width: 28px;
  border-radius: 10px;
}

.cmplz-cookiebanner .cmplz-categories .cmplz-category .cmplz-banner-checkbox .cmplz-label:after {
  display: block;
  content: "";
  letter-spacing: 20px;
  background: var(--cmplz_slider_bullet_color);
  left: 4px;
  top: -5px;
  height: 11px;
  width: 11px;
}

.cmplz-cookiebanner .cmplz-links .cmplz-link {
  display: none;
}

.cmplz-soft-cookiewall {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999;
}

.cmplz-soft-cookiewall.cmplz-dismissed {
  position: initial;
  display: none;
}

.cmplz-optout .cmplz-soft-cookiewall {
  position: initial;
}

.cmplz-document .cmplz-soft-cookiewall {
  position: initial;
}

#cmplz-manage-consent .cmplz-manage-consent {
  -webkit-box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
          box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

.cmplz-cookiebanner.cmplz-show {
  -webkit-box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
          box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

.cmplz-cookiebanner.cmplz-show:hover {
  -webkit-transition-duration: 1s;
          transition-duration: 1s;
  -webkit-box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
          box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}

.cmplz-cookiebanner .cmplz-divider.cmplz-divider-header {
  height: 0;
}

.cmplz-categories .cmplz-category .cmplz-description-statistics-anonymous {
  display: block;
}

.cmplz-categories .cmplz-category .cmplz-description-statistics {
  display: none;
}

.cc-message {
  font-family: Montserrat, sans-serif;
}

.cc-dismiss {
  font-family: Montserrat, sans-serif;
}

.cc-btn {
  font-family: Montserrat, sans-serif;
}

.cc-allow {
  font-family: Montserrat, sans-serif;
}

.cc-accept-all {
  font-family: Montserrat, sans-serif;
}

.cc-window {
  font-family: Montserrat, sans-serif;
}

.cc-window .cc-category {
  font-family: Montserrat, sans-serif;
}

.cc-window .cc-check {
  font-family: Montserrat, sans-serif;
}

.cc-revoke {
  font-family: Montserrat, sans-serif;
}

.cmplz-slider-checkbox {
  font-family: Montserrat, sans-serif;
}

.cmplz-soft-cookiewall {
  font-family: Montserrat, sans-serif;
}

.c-footer {
  overflow: hidden;
}

.c-footer__top {
  width: 100%;
  position: relative;
  background: linear-gradient(60deg, #0C0955 50%, #FF1A69 100%);
  -webkit-animation: hue-rotate1 6s linear infinite;
          animation: hue-rotate1 6s linear infinite;
}

.c-footer__top:before {
  display: block;
  content: "";
  width: 100%;
  padding-bottom: 34.8076923077%;
}

@media (max-width: 800px) {
  .c-footer__top:before {
    padding-bottom: 75%;
  }
}
.c-footer__dots {
  position: absolute;
  top: 5.7692307692vw;
  left: 16.7307692308%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 800px) {
  .c-footer__dots {
    top: 60px;
  }
}
.c-footer__dot {
  width: 1.9230769231vw;
  height: 1.9230769231vw;
  background-image: url("../ui/dot.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
  -webkit-animation-fill-mode: none;
          animation-fill-mode: none;
  -webkit-animation-play-state: running;
          animation-play-state: running;
  margin-right: 50px;
}

@media (max-width: 800px) {
  .c-footer__dot {
    width: 20px;
    height: 20px;
  }
}
.c-footer__dot:nth-child(1) {
  -webkit-animation-name: animation_14_1;
          animation-name: animation_14_1;
}

.c-footer__dot:nth-child(2) {
  -webkit-animation-name: animation_15_1;
          animation-name: animation_15_1;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.c-footer__dot:nth-child(3) {
  -webkit-animation-name: animation_16_1;
          animation-name: animation_16_1;
  -webkit-animation-duration: 4.5s;
          animation-duration: 4.5s;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.c-footer__small-x, .c-footer__big-x {
  position: absolute;
  top: 3.8461538462vw;
}

@media (max-width: 800px) {
  .c-footer__small-x, .c-footer__big-x {
    top: 40px;
  }
}
.c-footer__small-x img, .c-footer__big-x img {
  width: 100%;
  height: auto;
}

.c-footer__small-x {
  left: 4.8076923077%;
  width: 3.9423076923vw;
  height: 3.9423076923vw;
}

@media (max-width: 800px) {
  .c-footer__small-x {
    width: 41px;
    height: 41px;
  }
}
.c-footer__small-x img {
  -webkit-animation-name: animation_11_1, animation_11_2;
          animation-name: animation_11_1, animation_11_2;
  -webkit-animation-duration: 5s, 5s;
          animation-duration: 5s, 5s;
  -webkit-animation-delay: 0s, 5s;
          animation-delay: 0s, 5s;
  -webkit-animation-iteration-count: 1, infinite;
          animation-iteration-count: 1, infinite;
  -webkit-animation-direction: alternate, alternate;
          animation-direction: alternate, alternate;
  -webkit-animation-fill-mode: none, none;
          animation-fill-mode: none, none;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}

.c-footer__big-x {
  right: 10.9615384615%;
  width: 5.7692307692vw;
  height: 5.7692307692vw;
}

@media (max-width: 800px) {
  .c-footer__big-x {
    width: 60px;
    height: 60px;
  }
}
.c-footer__big-x img {
  -webkit-animation-name: animation_12_1, animation_12_2;
          animation-name: animation_12_1, animation_12_2;
  -webkit-animation-duration: 3s, 5s;
          animation-duration: 3s, 5s;
  -webkit-animation-delay: 0s, 3s;
          animation-delay: 0s, 3s;
  -webkit-animation-iteration-count: 1, infinite;
          animation-iteration-count: 1, infinite;
  -webkit-animation-direction: alternate, alternate;
          animation-direction: alternate, alternate;
  -webkit-animation-fill-mode: none, none;
          animation-fill-mode: none, none;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}

.c-footer__bottom {
  position: relative;
}

.c-footer__title {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  left: 0;
  color: #ffffff;
}

.c-footer__title span {
  min-width: 100%;
  display: inline-block;
}

.c-footer__xlab-title {
  position: absolute;
  top: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  z-index: 1;
}

@media (max-width: 800px) {
  .c-footer__xlab-title {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    left: 50%;
  }
  .page-template-home .c-footer__xlab-title {
    display: none;
  }
}
.c-footer__cta {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}

.page-template-home .c-footer__cta {
  display: none;
}

@media (max-width: 800px) {
  .c-footer__cta {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    left: 50%;
  }
  .page-template-home .c-footer__cta {
    display: none;
  }
}
.c-footer__xlab-title-x {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 700;
  letter-spacing: -1.6442307692vw;
  font-size: 15.3846153846vw;
  color: rgba(37, 26, 255, 0.5);
}

.c-footer__xlab-title-lab {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 9.6153846154vw;
  color: rgb(255, 26, 105);
}

.c-footer__xlab-title-bg {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.c-footer__xlab-title-bg-x {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 700;
  letter-spacing: -17.1px;
  color: rgba(240, 240, 240, 0.5);
  font-size: 38.4615384615vw;
  line-height: 0.7em;
  position: relative;
}

@media (max-width: 800px) {
  .c-footer__xlab-title-bg-x {
    font-size: 250px;
    position: initial;
  }
}
.c-footer__xlab-title-bg-x ul {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 800px) {
  body.single .c-footer__xlab-title-bg-x ul {
    top: auto;
    bottom: 20px;
    left: 0;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.c-footer__xlab-title-bg-x li {
  width: 2.8846153846vw;
  height: 2.8846153846vw;
  margin: 0 0.9615384615vw;
}

@media (max-width: 800px) {
  .c-footer__xlab-title-bg-x li {
    width: 30px;
    height: 30px;
    margin: 0 10px;
  }
}
.c-footer__xlab-title-bg-x li a {
  display: block;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

.c-footer__xlab-title-bg-x li a:hover {
  opacity: 0.8;
}

.c-footer__xlab-title-bg-lab {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 700;
  color: rgb(240, 240, 240);
  font-size: 15.3846153846vw;
  line-height: 1em;
}

@media (max-width: 800px) {
  .c-footer__xlab-title-bg-lab {
    font-size: 100px;
  }
}
@-webkit-keyframes animation_36_1 {
  0% {
    -webkit-transform: matrix(1, 0, 0, 1, 0, 0);
            transform: matrix(1, 0, 0, 1, 0, 0);
    opacity: 1;
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
  }
  100% {
    -webkit-transform: matrix(1, 0, 0, 1, -1331, 0);
            transform: matrix(1, 0, 0, 1, -1331, 0);
    opacity: 1;
  }
}
@keyframes animation_36_1 {
  0% {
    -webkit-transform: matrix(1, 0, 0, 1, 0, 0);
            transform: matrix(1, 0, 0, 1, 0, 0);
    opacity: 1;
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
  }
  100% {
    -webkit-transform: matrix(1, 0, 0, 1, -1331, 0);
            transform: matrix(1, 0, 0, 1, -1331, 0);
    opacity: 1;
  }
}
@-webkit-keyframes hue-rotate1 {
  0% {
    -webkit-filter: hue-rotate(0);
    -moz-filter: hue-rotate(0);
    -ms-filter: hue-rotate(0);
    filter: hue-rotate(0);
  }
  50% {
    -webkit-filter: hue-rotate(-20deg);
    -moz-filter: hue-rotate(-20deg);
    -ms-filter: hue-rotate(-20deg);
    filter: hue-rotate(-20deg);
  }
  100% {
    -webkit-filter: hue-rotate(0);
    -moz-filter: hue-rotate(0);
    -ms-filter: hue-rotate(0);
    filter: hue-rotate(0);
  }
}
@keyframes hue-rotate1 {
  0% {
    -webkit-filter: hue-rotate(0);
    -moz-filter: hue-rotate(0);
    -ms-filter: hue-rotate(0);
    filter: hue-rotate(0);
  }
  50% {
    -webkit-filter: hue-rotate(-20deg);
    -moz-filter: hue-rotate(-20deg);
    -ms-filter: hue-rotate(-20deg);
    filter: hue-rotate(-20deg);
  }
  100% {
    -webkit-filter: hue-rotate(0);
    -moz-filter: hue-rotate(0);
    -ms-filter: hue-rotate(0);
    filter: hue-rotate(0);
  }
}
@-webkit-keyframes animation_12_1 {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg) scale(1);
            transform: translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(90deg) scale(1);
            transform: translate(0px, 0px) rotate(90deg) scale(1);
    opacity: 1;
  }
}
@keyframes animation_12_1 {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg) scale(1);
            transform: translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(90deg) scale(1);
            transform: translate(0px, 0px) rotate(90deg) scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes animation_12_2 {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(90deg) scale(1);
            transform: translate(0px, 0px) rotate(90deg) scale(1);
    opacity: 1;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(-90deg) scale(1);
            transform: translate(0px, 0px) rotate(-90deg) scale(1);
    opacity: 1;
  }
}
@keyframes animation_12_2 {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(90deg) scale(1);
            transform: translate(0px, 0px) rotate(90deg) scale(1);
    opacity: 1;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(-90deg) scale(1);
            transform: translate(0px, 0px) rotate(-90deg) scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes animation_11_1 {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg) scale(1);
            transform: translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(90deg) scale(1);
            transform: translate(0px, 0px) rotate(90deg) scale(1);
    opacity: 1;
  }
}
@keyframes animation_11_1 {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg) scale(1);
            transform: translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(90deg) scale(1);
            transform: translate(0px, 0px) rotate(90deg) scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes animation_11_2 {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(90deg) scale(1);
            transform: translate(0px, 0px) rotate(90deg) scale(1);
    opacity: 1;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(-90deg) scale(1);
            transform: translate(0px, 0px) rotate(-90deg) scale(1);
    opacity: 1;
  }
}
@keyframes animation_11_2 {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(90deg) scale(1);
            transform: translate(0px, 0px) rotate(90deg) scale(1);
    opacity: 1;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(-90deg) scale(1);
            transform: translate(0px, 0px) rotate(-90deg) scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes animation_14_1 {
  0% {
    -webkit-transform: matrix(1, 0, 0, 1, 0, 0);
            transform: matrix(1, 0, 0, 1, 0, 0);
    opacity: 0.5;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  100% {
    -webkit-transform: matrix(1, 0, 0, 1, 50, 0);
            transform: matrix(1, 0, 0, 1, 50, 0);
    opacity: 1;
  }
}
@keyframes animation_14_1 {
  0% {
    -webkit-transform: matrix(1, 0, 0, 1, 0, 0);
            transform: matrix(1, 0, 0, 1, 0, 0);
    opacity: 0.5;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  100% {
    -webkit-transform: matrix(1, 0, 0, 1, 50, 0);
            transform: matrix(1, 0, 0, 1, 50, 0);
    opacity: 1;
  }
}
@-webkit-keyframes animation_15_1 {
  0%, 50% {
    -webkit-transform: matrix(1, 0, 0, 1, 0, 0);
            transform: matrix(1, 0, 0, 1, 0, 0);
    opacity: 0.5;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  100% {
    -webkit-transform: matrix(1, 0, 0, 1, 50, 0);
            transform: matrix(1, 0, 0, 1, 50, 0);
    opacity: 1;
  }
}
@keyframes animation_15_1 {
  0%, 50% {
    -webkit-transform: matrix(1, 0, 0, 1, 0, 0);
            transform: matrix(1, 0, 0, 1, 0, 0);
    opacity: 0.5;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  100% {
    -webkit-transform: matrix(1, 0, 0, 1, 50, 0);
            transform: matrix(1, 0, 0, 1, 50, 0);
    opacity: 1;
  }
}
@-webkit-keyframes animation_16_1 {
  0%, 66.66666666666666% {
    -webkit-transform: matrix(1, 0, 0, 1, 0, 0);
            transform: matrix(1, 0, 0, 1, 0, 0);
    opacity: 0.5;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  100% {
    -webkit-transform: matrix(1, 0, 0, 1, 50, 0);
            transform: matrix(1, 0, 0, 1, 50, 0);
    opacity: 1;
  }
}
@keyframes animation_16_1 {
  0%, 66.66666666666666% {
    -webkit-transform: matrix(1, 0, 0, 1, 0, 0);
            transform: matrix(1, 0, 0, 1, 0, 0);
    opacity: 0.5;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  100% {
    -webkit-transform: matrix(1, 0, 0, 1, 50, 0);
            transform: matrix(1, 0, 0, 1, 50, 0);
    opacity: 1;
  }
}
.c-header {
  position: relative;
  left: 78.7234042553%;
  width: 100vw;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media (max-width: 800px) {
  .c-header {
    width: 100%;
    left: 0;
    -webkit-transform: none;
            transform: none;
  }
}
.c-header--article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.c-header--landing {
  left: 0;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.c-header__small-x {
  position: absolute;
  bottom: 3.8461538462vw;
  left: 4.8076923077%;
  width: 3.9423076923vw;
  height: 3.9423076923vw;
}

@media (max-width: 800px) {
  .c-header__small-x {
    left: auto;
    right: 4.8076923077%;
    bottom: calc(100% + 20px);
    width: 41px;
    height: 41px;
    z-index: 1;
  }
}
.c-header__small-x img {
  width: 100%;
  height: auto;
  -webkit-animation-name: animation_43_1, animation_43_2;
          animation-name: animation_43_1, animation_43_2;
  -webkit-animation-duration: 5s, 5s;
          animation-duration: 5s, 5s;
  -webkit-animation-delay: 0s, 5s;
          animation-delay: 0s, 5s;
  -webkit-animation-iteration-count: 1, infinite;
          animation-iteration-count: 1, infinite;
  -webkit-animation-direction: alternate, alternate;
          animation-direction: alternate, alternate;
  -webkit-animation-fill-mode: none, none;
          animation-fill-mode: none, none;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}

.c-header__bg {
  position: relative;
  width: 100%;
  padding-bottom: 39.5833333333%;
  background-color: white;
  background-size: cover;
  background-position: center;
  display: block;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.c-header__bg--desktop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 39.5833333333%;
}

@media (max-width: 800px) {
  .c-header__bg--desktop {
    display: none;
  }
}
.c-header__bg--mobile {
  display: none;
  padding-bottom: 56.5055762082%;
}

@media (max-width: 800px) {
  .c-header__bg--mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.c-header__article {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}

.c-header--article .c-header__article {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

@media (max-width: 800px) {
  .c-header__article {
    position: relative;
  }
}
.o-page--type-3 .c-header__article {
  position: relative;
  bottom: auto;
  left: auto;
}

.c-header__article-inner {
  position: relative;
  margin-left: 14.8936170213%;
  margin-right: 40.4255319149%;
  padding: 1.9903846154vw 2.6538461538vw 0;
  padding-right: 5.9665871122%;
  background-color: #ffffff;
}

@media (max-width: 800px) {
  .c-header__article-inner {
    padding: 20.7px 27.6px 0;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }
}
.c-header__eyebrow {
  position: absolute;
  bottom: 100%;
  left: 2.6538461538vw;
  padding: 0 1.9230769231vw;
  min-height: 2.8846153846vw;
  background-color: rgb(37, 26, 255);
  color: #ffffff;
}

.o-page--type-3 .c-header__eyebrow {
  background-color: rgb(10, 214, 123);
}

@media (max-width: 800px) {
  .c-header__eyebrow {
    left: 0;
    display: none !important;
    padding: 0 20px;
    min-height: 30px;
  }
}
.c-header__article-subtitle {
  position: absolute;
  top: 2.8846153846vw;
  left: 0;
  width: 100%;
  color: #ff1a69;
  line-height: 0.71em !important;
  z-index: 1;
}

@media (max-width: 800px) {
  .c-header__article-subtitle {
    top: auto;
    bottom: 30px;
  }
}
@media (max-width: 800px) {
  .o-page--single .c-header__article-subtitle {
    position: relative;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    top: auto;
    bottom: 30px;
  }
}
.o-page--type-3 .c-header__article-subtitle {
  color: rgb(10, 214, 123);
}

.c-header__article-subtitle-inner {
  position: relative;
}

.c-header--landing .c-header__article-subtitle-inner span, .c-header--article .c-header__article-subtitle-inner span {
  line-height: 0.71em !important;
  color: rgba(255, 255, 255, 0.5);
  -webkit-animation-name: animation_158_1;
          animation-name: animation_158_1;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
  -webkit-animation-fill-mode: none;
          animation-fill-mode: none;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}

.o-page--single .c-header--landing .c-header__article-subtitle-inner span, .o-page--single .c-header--article .c-header__article-subtitle-inner span {
  color: rgba(255, 26, 105, 0.6);
}

.o-page--type-3 .c-header--landing .c-header__article-subtitle-inner span, .o-page--type-3 .c-header--article .c-header__article-subtitle-inner span {
  color: rgba(37, 26, 255, 0.5);
}

.c-header--landing .c-header__article-subtitle-inner {
  display: inline-block;
  padding: 1.9903846154vw 0;
  padding-left: 3.8461538462%;
}

@media (max-width: 800px) {
  .c-header--landing .c-header__article-subtitle-inner {
    padding: 20.7px 0;
  }
}
.c-header__article-subtitle-inner-text {
  width: 100%;
  color: #ffffff;
  text-align: center;
}

.c-header__article-title {
  margin-bottom: 1em;
}

.c-header__dots {
  position: absolute;
  top: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-header--landing .c-header__dots {
  position: relative;
  margin-bottom: 20px;
}

.c-header__dot {
  width: 1.9230769231vw;
  height: 1.9230769231vw;
  background-image: url("../ui/dot-blue.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
  -webkit-animation-fill-mode: none;
          animation-fill-mode: none;
  -webkit-animation-play-state: running;
          animation-play-state: running;
  margin-right: 50px;
}

@media (max-width: 800px) {
  .c-header__dot {
    width: 20px;
    height: 20px;
  }
}
.c-header--landing .c-header__dot {
  background-image: url("../ui/dot-landing.svg");
}

.c-header__dot:nth-child(1) {
  -webkit-animation-name: animation_14_1;
          animation-name: animation_14_1;
}

.c-header__dot:nth-child(2) {
  -webkit-animation-name: animation_15_1;
          animation-name: animation_15_1;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.c-header__dot:nth-child(3) {
  -webkit-animation-name: animation_16_1;
          animation-name: animation_16_1;
  -webkit-animation-duration: 4.5s;
          animation-duration: 4.5s;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.c-header__video .video-background {
  position: relative;
  width: 100%;
  display: block;
  padding-bottom: 56.25%;
}

@media (max-width: 800px) {
  .c-header__video .video-background {
    padding-bottom: 0;
    height: 100vh;
  }
}
.c-header__video .video-container {
  position: absolute;
  left: 0;
  top: calc(-3rem - 33px);
  width: 100%;
  height: 100%;
}

@media (max-width: 800px) {
  .c-header__video .video-container {
    top: 0;
  }
}
.c-header__video video {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 1;
  width: 100%;
}

.c-header__articles {
  padding: 1.9903846154vw 0;
}

@media (max-width: 800px) {
  .c-header__articles {
    padding: 20.7px 0;
  }
}
@media (max-width: 800px) {
  .c-header__articles .swiper-container {
    padding-bottom: 27.6px;
  }
}
.c-header__articles .swiper-pagination {
  bottom: 0 !important;
}

.c-header__articles .swiper-pagination-bullet {
  background-color: #ffffff;
}

.c-header__articles-item {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 1.3269230769vw;
  color: #ffffff;
  height: auto !important;
}

.c-header__articles-item:hover {
  color: #ffffff;
}

@media (max-width: 800px) {
  .c-header__articles-item {
    padding: 13.8px;
  }
}
.c-header__articles-item h3, .c-header__articles-item p {
  line-height: 1em !important;
}

.c-header__articles-item p {
  margin-bottom: 1em;
}

.c-header__articles-item:nth-child(1n) {
  background: linear-gradient(60deg, #251AFF 20%, #FF1A69 100%);
  -webkit-animation: hue-rotate1 6s linear infinite;
          animation: hue-rotate1 6s linear infinite;
}

.c-header__articles-item:nth-child(2n) {
  background: linear-gradient(60deg, #FF1A69 0%, #251AFF 80%);
  -webkit-animation: hue-rotate1 6s linear infinite;
          animation: hue-rotate1 6s linear infinite;
}

.c-header__articles-item:nth-child(3n) {
  background: linear-gradient(60deg, #251AFF 20%, #FF1A69 100%);
  -webkit-animation: hue-rotate1 6s linear infinite;
          animation: hue-rotate1 6s linear infinite;
}

.c-header__articles-item:nth-child(4n) {
  background: linear-gradient(60deg, #FF1A69 0%, #251AFF 80%);
  -webkit-animation: hue-rotate1 6s linear infinite;
          animation: hue-rotate1 6s linear infinite;
}

.c-header__articles-item:nth-child(5n) {
  background: linear-gradient(60deg, #251AFF 20%, #FF1A69 100%);
  -webkit-animation: hue-rotate3 6s linear infinite;
          animation: hue-rotate3 6s linear infinite;
}

.c-header__articles-item-footer {
  margin-top: auto;
}

.c-header__articles-item-footer i {
  width: 2.4038461538vw;
  height: 2.4038461538vw;
  background-image: url("../ui/RasterizedImage-82d4371a-d3e7-4f40-a04b-7bced2cf5ba6.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 800px) {
  .c-header__articles-item-footer i {
    width: 25px;
    height: 25px;
  }
}
@-webkit-keyframes animation_43_1 {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg) scale(1);
            transform: translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(90deg) scale(1);
            transform: translate(0px, 0px) rotate(90deg) scale(1);
    opacity: 1;
  }
}
@keyframes animation_43_1 {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg) scale(1);
            transform: translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(90deg) scale(1);
            transform: translate(0px, 0px) rotate(90deg) scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes animation_43_2 {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(90deg) scale(1);
            transform: translate(0px, 0px) rotate(90deg) scale(1);
    opacity: 1;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(-90deg) scale(1);
            transform: translate(0px, 0px) rotate(-90deg) scale(1);
    opacity: 1;
  }
}
@keyframes animation_43_2 {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(90deg) scale(1);
            transform: translate(0px, 0px) rotate(90deg) scale(1);
    opacity: 1;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(-90deg) scale(1);
            transform: translate(0px, 0px) rotate(-90deg) scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes animation_158_1 {
  0% {
    -webkit-transform: matrix(1, 0, 0, 1, 0, 0);
            transform: matrix(1, 0, 0, 1, 0, 0);
    opacity: 0.2;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  100% {
    -webkit-transform: matrix(1, 0, 0, 1, 0, 0);
            transform: matrix(1, 0, 0, 1, 0, 0);
    opacity: 1;
  }
}
@keyframes animation_158_1 {
  0% {
    -webkit-transform: matrix(1, 0, 0, 1, 0, 0);
            transform: matrix(1, 0, 0, 1, 0, 0);
    opacity: 0.2;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  100% {
    -webkit-transform: matrix(1, 0, 0, 1, 0, 0);
            transform: matrix(1, 0, 0, 1, 0, 0);
    opacity: 1;
  }
}
.c-btn {
  display: inline-block;
  min-width: 9.1346153846vw;
  height: 2.8846153846vw;
  line-height: 2.8846153846vw !important;
  border-radius: 4.8076923077vw;
  padding: 0 1.9230769231vw;
  text-align: center;
  background-color: rgb(37, 26, 255);
  border-width: 0;
  border-color: rgb(0, 0, 0);
  font-weight: 700;
  font-style: normal;
  text-decoration: none !important;
  color: #ffffff;
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}

@media (max-width: 800px) {
  .c-btn {
    min-width: 95px;
    height: 40px;
    line-height: 40px !important;
    border-radius: 50px;
    padding: 0 20px;
  }
}
.c-btn:hover {
  background-color: rgba(37, 26, 255, 0.8);
  color: #ffffff;
}

.o-expertize-article-wrapper {
  position: relative;
  left: 78.7234042553%;
  width: 100vw;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media (max-width: 800px) {
  .o-expertize-article-wrapper {
    width: 100%;
    left: 0;
    -webkit-transform: none;
            transform: none;
  }
}
.c-expertize-article__inner {
  padding: 1.9230769231vw 11.5384615385vw;
  background: linear-gradient(60deg, #0C0955 50%, #FF1A69 100%);
  -webkit-animation: hue-rotate1 6s linear infinite;
          animation: hue-rotate1 6s linear infinite;
}

@media (max-width: 800px) {
  .c-expertize-article__inner {
    padding: 20px 20px;
  }
}
.c-expertize-article__title {
  position: absolute;
  top: 0;
  left: 0;
  padding: 1.9230769231vw 0;
  height: 100%;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  -webkit-transform: rotate(180deg) translateX(-50%);
          transform: rotate(180deg) translateX(-50%);
  color: rgba(37, 26, 255, 0.6);
  text-align: right;
  letter-spacing: 0;
  font-weight: 800;
}

@media (max-width: 800px) {
  .c-expertize-article__title {
    position: relative;
    top: auto;
    right: auto;
    height: auto;
    -webkit-writing-mode: initial;
        -ms-writing-mode: initial;
            writing-mode: initial;
    -webkit-transform: rotate(0deg) translateX(0);
            transform: rotate(0deg) translateX(0);
  }
}
.c-expertize-article__title-inner {
  position: absolute;
  top: 0;
  right: 50%;
  height: 100%;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  -webkit-transform: rotate(180deg) translateX(-50%);
          transform: rotate(180deg) translateX(-50%);
  color: rgba(37, 26, 255, 0.6);
  text-align: right;
  letter-spacing: 0;
  font-weight: 800;
  /*@include mq(md) {
      position: relative;
      top: auto;
      right: auto;
      height: auto;
      writing-mode: initial;
      transform: rotate(0deg) translateX(0);
  }*/
}

@media (max-width: 800px) {
  .c-expertize-article__title-inner {
    display: block;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    -webkit-writing-mode: initial;
        -ms-writing-mode: initial;
            writing-mode: initial;
    text-align: left;
    color: #ffffff;
    margin-bottom: 1em;
  }
}
.o-expertize-wrapper {
  background: linear-gradient(60deg, #0C0955 40%, #FF1A69 100%);
  -webkit-animation: hue-rotate1 6s linear infinite;
          animation: hue-rotate1 6s linear infinite;
  padding: 6.6346153846vw 0 2.6538461538vw 0;
}

@media (max-width: 800px) {
  .o-expertize-wrapper {
    padding: 69px 0;
  }
}
.c-expertize-article .c-link, .c-expertize .c-link {
  margin-top: auto;
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.o-page__aside .c-expertize-article .c-link, .o-page__aside .c-expertize .c-link {
  color: rgb(10, 214, 123);
}

.c-expertize-article .c-link span, .c-expertize .c-link span {
  margin-right: 1.3269230769vw;
}

@media (max-width: 800px) {
  .c-expertize-article .c-link span, .c-expertize .c-link span {
    margin-right: 13.8px;
  }
}
.c-expertize-article .c-link i, .c-expertize .c-link i {
  width: 1.3269230769vw;
  height: 1.3269230769vw;
  background-image: url("../ui/RasterizedImage-47164b7e-1299-48d8-b94d-d6ef782f2fba.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-animation-name: animation_32_1;
          animation-name: animation_32_1;
  -webkit-animation-duration: 1.2s;
          animation-duration: 1.2s;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
  -webkit-animation-fill-mode: none;
          animation-fill-mode: none;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}

@media (max-width: 800px) {
  .c-expertize-article .c-link i, .c-expertize .c-link i {
    width: 13.8px;
    height: 13.8px;
  }
}
.c-expertize__title {
  position: relative;
  width: calc((100% - 60px) / 10 * 1);
}

@media (max-width: 800px) {
  .c-expertize__title {
    width: 100%;
    margin-bottom: 27.6px;
  }
}
.c-expertize__main {
  width: calc((100% - 60px) / 10 * 6);
}

@media (max-width: 800px) {
  .c-expertize__main {
    width: 100%;
  }
}
.c-expertize__aside {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: calc((100% - 60px) / 10 * 3);
  padding-left: calc((100% - 60px) / 8);
}

@media (max-width: 800px) {
  .c-expertize__aside {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 100%;
    padding-left: 0;
  }
}
.c-expertize__title-inner {
  position: absolute;
  top: 0;
  right: 50%;
  height: 100%;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  -webkit-transform: rotate(180deg) translateX(-50%);
          transform: rotate(180deg) translateX(-50%);
  color: rgba(37, 26, 255, 0.6);
  text-align: right;
  letter-spacing: 0;
  font-weight: 800;
  /*@include mq(md) {
      position: relative;
      top: auto;
      right: auto;
      height: auto;
      writing-mode: initial;
      transform: rotate(0deg) translateX(0);
  }*/
}

@media (max-width: 800px) {
  .c-expertize__title-inner {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    -webkit-writing-mode: initial;
        -ms-writing-mode: initial;
            writing-mode: initial;
    text-align: left;
    color: #ffffff;
    margin-bottom: 1em;
  }
}
.c-expertize__header {
  margin-bottom: 2.6538461538vw;
}

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

@media (max-width: 800px) {
  .c-expertize__featured {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 30px;
  }
}
.c-expertize__featured-bg-vizual {
  position: absolute;
  width: 80%;
  top: 0;
  right: 0;
  background: linear-gradient(60deg, #251AFF 20%, #FF1A69 100%);
  -webkit-animation: hue-rotate1 6s linear infinite;
          animation: hue-rotate1 6s linear infinite;
  -webkit-transform: translateX(5.3846153846vw);
          transform: translateX(5.3846153846vw);
}

@media (max-width: 800px) {
  .c-expertize__featured-bg-vizual {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    width: 80%;
  }
}
.c-expertize__featured-bg-vizual:before {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  display: block;
  content: "";
}

.c-expertize__featured-x {
  position: absolute;
  top: 40%;
  left: 0;
  width: 15.3846153846vw;
  height: 15.3846153846vw;
  margin-top: -7.6923076923vw;
  -webkit-animation-name: animation_43_1, animation_43_2;
          animation-name: animation_43_1, animation_43_2;
  -webkit-animation-duration: 5s, 5s;
          animation-duration: 5s, 5s;
  -webkit-animation-delay: 0s, 5s;
          animation-delay: 0s, 5s;
  -webkit-animation-iteration-count: 1, infinite;
          animation-iteration-count: 1, infinite;
  -webkit-animation-direction: alternate, alternate;
          animation-direction: alternate, alternate;
  -webkit-animation-fill-mode: none, none;
          animation-fill-mode: none, none;
  -webkit-animation-play-state: running;
          animation-play-state: running;
  background-image: url("../ui/RasterizedImage-e00bbc0f-6f3c-40d6-89b1-2053da30d4c3.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 800px) {
  .c-expertize__featured-x {
    width: 160px;
    height: 160px;
    margin-top: -80px;
  }
}
.c-expertize__featured-vizual {
  text-align: right;
  position: relative;
  width: calc((100% - 20px) / 2);
}

.c-expertize__featured-vizual img {
  width: 80%;
  margin-left: 15%;
  position: relative;
  margin-top: 3.9807692308vw;
  -webkit-transform: translateX(1.5384615385vw);
          transform: translateX(1.5384615385vw);
}

@media (max-width: 800px) {
  .c-expertize__featured-vizual img {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 27.6px;
    margin-bottom: 0;
    -webkit-transform: translateX(16px);
            transform: translateX(16px);
  }
}
@media (max-width: 800px) {
  .c-expertize__featured-vizual {
    width: 100%;
    margin-top: 40px;
  }
}
.c-expertize__featured-content {
  width: calc((100% - 20px) / 2);
  position: relative;
  color: #ffffff;
}

@media (max-width: 800px) {
  .c-expertize__featured-content {
    width: 100%;
  }
}
.c-expertize__featured-title {
  margin-top: 3.9807692308vw;
  margin-bottom: 5.3076923077vw;
}

@media (max-width: 800px) {
  .c-expertize__featured-title {
    margin-bottom: 27.6px;
  }
}
.c-expertize__featured-author {
  margin-bottom: 2.6538461538vw;
}

@media (max-width: 800px) {
  .c-expertize__featured-author {
    margin-bottom: 27.6px;
  }
}
.c-expertize__aside-post {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  margin-bottom: 2.6538461538vw;
}

@media (max-width: 800px) {
  .c-expertize__aside-post {
    margin-bottom: 27.6px;
    width: 50%;
    padding-right: 10px;
  }
}
.c-expertize__aside-post-category {
  color: rgb(10, 214, 123);
}

.c-expertize__aside-post-title {
  color: #ffffff;
  margin-bottom: 1.3269230769vw;
}

@media (max-width: 800px) {
  .c-expertize__aside-post-title {
    margin-bottom: 13.8px;
  }
}
.o-page__aside .c-expertize__aside-post-title {
  color: rgb(56, 56, 56);
}

.c-expertize__dots {
  position: absolute;
  top: 0.9615384615vw;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-expertize__dot {
  width: 1.9230769231vw;
  height: 1.9230769231vw;
  background-image: url("../ui/dot-landing.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
  -webkit-animation-fill-mode: none;
          animation-fill-mode: none;
  -webkit-animation-play-state: running;
          animation-play-state: running;
  margin-right: 50px;
}

@media (max-width: 800px) {
  .c-expertize__dot {
    width: 20px;
    height: 20px;
  }
}
.c-expertize__dot:nth-child(1) {
  -webkit-animation-name: animation_14_1;
          animation-name: animation_14_1;
}

.c-expertize__dot:nth-child(2) {
  -webkit-animation-name: animation_15_1;
          animation-name: animation_15_1;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.c-expertize__dot:nth-child(3) {
  -webkit-animation-name: animation_158_2;
          animation-name: animation_158_2;
  -webkit-animation-duration: 4.5s;
          animation-duration: 4.5s;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.c-expertize__cat {
  position: absolute;
  left: 100%;
  bottom: 100%;
  height: 2.6538461538vw;
  padding: 0 1.3269230769vw;
  background-color: #ffffff;
  color: rgb(37, 26, 255);
  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;
  min-width: 21.1538461538vw;
}

@media (max-width: 800px) {
  .c-expertize__cat {
    left: -24%;
    height: 40px;
    padding: 0 13.8px;
    min-width: 220px;
  }
}
.c-others .c-link i {
  width: 1.9903846154vw;
  height: 1.9903846154vw;
}

@media (max-width: 800px) {
  .c-others .c-link i {
    width: 20.7px;
    height: 20.7px;
  }
}
@keyframes animation_43_1 {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg) scale(1);
            transform: translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(90deg) scale(1);
            transform: translate(0px, 0px) rotate(90deg) scale(1);
    opacity: 1;
  }
}
@keyframes animation_43_2 {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(90deg) scale(1);
            transform: translate(0px, 0px) rotate(90deg) scale(1);
    opacity: 1;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(-90deg) scale(1);
            transform: translate(0px, 0px) rotate(-90deg) scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes animation_158_2 {
  0%, 66.6667% {
    -webkit-transform: matrix(1, 0, 0, 1, 0, 0);
            transform: matrix(1, 0, 0, 1, 0, 0);
    opacity: 0.5;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  100% {
    -webkit-transform: matrix(1, 0, 0, 1, 50, 0);
            transform: matrix(1, 0, 0, 1, 50, 0);
    opacity: 1;
  }
}
@keyframes animation_158_2 {
  0%, 66.6667% {
    -webkit-transform: matrix(1, 0, 0, 1, 0, 0);
            transform: matrix(1, 0, 0, 1, 0, 0);
    opacity: 0.5;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  100% {
    -webkit-transform: matrix(1, 0, 0, 1, 50, 0);
            transform: matrix(1, 0, 0, 1, 50, 0);
    opacity: 1;
  }
}
.c-post-item {
  background-color: transparent;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 40px) / 3);
          flex: 0 0 calc((100% - 40px) / 3);
  width: calc((100% - 40px) / 3);
  margin-bottom: 10.2564102564vh;
  text-align: left;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-right: 20px;
}

.c-post-item:nth-child(3n) {
  margin-right: 0;
}

@media (max-width: 800px) {
  .c-post-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    width: 100%;
    margin-right: 0;
  }
  .c-post-item:nth-child(3n) {
    margin-right: 0;
  }
}
@media (max-width: 480px) {
  .c-post-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    width: 100%;
  }
}
.c-expertize-article .c-post-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 60px) / 4);
          flex: 0 0 calc((100% - 60px) / 4);
  width: calc((100% - 60px) / 4);
  margin-bottom: 0;
  height: auto;
}

@media (max-width: 800px) {
  .c-expertize-article .c-post-item {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: auto;
  }
}
.c-post-item a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}

.c-post-item__figure {
  position: relative;
  margin-bottom: 2.6538461538vw;
}

@media (max-width: 800px) {
  .c-post-item__figure {
    margin-bottom: 27.6px;
  }
}
.c-post-item__figure img {
  width: 100%;
  height: auto;
  vertical-align: top;
}

.c-post-item__figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
  height: 2.6538461538vw;
  padding: 0 1.3269230769vw;
  background-color: #ffffff;
  color: rgb(37, 26, 255);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 800px) {
  .c-post-item__figcaption {
    height: 40px;
    padding: 0 13.8px;
  }
}
.c-post-item__title-wrapper {
  margin-bottom: 2.6538461538vw;
}

@media (max-width: 800px) {
  .c-post-item__title-wrapper {
    margin-bottom: 27.6px;
  }
}
.c-post-item__title {
  color: rgb(10, 214, 123);
}

.c-post-item__subtitle {
  color: #ffffff;
}

.c-post-item__author {
  color: #ffffff;
  margin-bottom: 2.6538461538vw;
}

@media (max-width: 800px) {
  .c-post-item__author {
    margin-bottom: 27.6px;
  }
}
@-webkit-keyframes animation_32_1 {
  0% {
    -webkit-transform: matrix(1, 0, 0, 1, 0, 0);
            transform: matrix(1, 0, 0, 1, 0, 0);
    opacity: 1;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  100% {
    -webkit-transform: matrix(0.9, 0, 0, 0.9, 0, 0);
            transform: matrix(0.9, 0, 0, 0.9, 0, 0);
    opacity: 1;
  }
}
@keyframes animation_32_1 {
  0% {
    -webkit-transform: matrix(1, 0, 0, 1, 0, 0);
            transform: matrix(1, 0, 0, 1, 0, 0);
    opacity: 1;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  100% {
    -webkit-transform: matrix(0.9, 0, 0, 0.9, 0, 0);
            transform: matrix(0.9, 0, 0, 0.9, 0, 0);
    opacity: 1;
  }
}
.c-article {
  width: 100%;
  position: relative;
}

.c-article__wrapper {
  width: 100%;
  margin: 0 auto;
  padding: 2.6538461538vw;
}

@media (max-width: 800px) {
  .c-article__wrapper {
    padding: 27.6px 0;
  }
}
.c-article__wrapper .animation-container {
  margin-bottom: 1em;
  -webkit-animation-name: animation_article-footer;
          animation-name: animation_article-footer;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
  -webkit-animation-fill-mode: none;
          animation-fill-mode: none;
}

.c-article__wrapper .animation-container img {
  width: 100%;
  max-width: 10.5769230769vw;
  height: auto;
}

@media (max-width: 800px) {
  .c-article__wrapper .animation-container img {
    max-width: 110px;
  }
}
.c-article__wrapper h2 {
  font-weight: 800;
  margin-bottom: 1em;
}

.c-article__wrapper h2 em {
  font-style: normal;
  color: rgb(37, 26, 255);
}

.c-article__wrapper p em {
  font-style: normal;
  color: rgb(37, 26, 255);
}

.c-article__wrapper p, .c-article__wrapper ul {
  margin-bottom: 1em;
}

.c-article__wrapper ul {
  list-style: none;
}

.c-article__wrapper ul li:before {
  font-family: "Montserrat", sans-serif;
  content: "•"; /* Add content: \2022 is the CSS Code/unicode for a bullet */
  color: rgb(37, 26, 255); /* Change the color */
  font-weight: 900; /* If you want it to be bold */
  display: inline-block; /* Needed to add space between the bullet and the text */
  width: 1.5em; /* Also needed for space (tweak if needed) */
}

.c-article__wrapper a {
  text-decoration: underline;
}

@-webkit-keyframes animation_article-footer {
  0% {
    -webkit-transform: matrix(1, 0, 0, 1, 0, 0);
            transform: matrix(1, 0, 0, 1, 0, 0);
    opacity: 1;
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
  }
  100% {
    -webkit-transform: matrix(1, 0, 0, 1, 50, 0);
            transform: matrix(1, 0, 0, 1, 50, 0);
    opacity: 1;
  }
}

@keyframes animation_article-footer {
  0% {
    -webkit-transform: matrix(1, 0, 0, 1, 0, 0);
            transform: matrix(1, 0, 0, 1, 0, 0);
    opacity: 1;
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
  }
  100% {
    -webkit-transform: matrix(1, 0, 0, 1, 50, 0);
            transform: matrix(1, 0, 0, 1, 50, 0);
    opacity: 1;
  }
}
.c-infographic__banner {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 0 2.6538461538vw;
  margin-bottom: 2.5em;
  overflow: hidden;
}

.c-infographic__banner img {
  border-radius: 3.9807692308vw;
  width: 100%;
  height: auto;
  display: inline-block;
  vertical-align: top;
}

.c-text__title {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 0 2.6538461538vw;
}

.c-text__title--dotted {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 800px) {
  .c-text__title {
    padding: 0;
  }
}
.c-text__title-icon {
  position: absolute;
  right: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media (max-width: 800px) {
  .c-text__title-icon {
    position: relative;
    right: auto;
    top: auto;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    margin-right: 13.8px;
  }
}
.c-text__title-icon:before {
  content: "";
  display: block;
  width: 5.3076923077vw;
  height: 5.3076923077vw;
  background-image: url("../ui/title.svg");
  background-size: cover;
  -webkit-transform: matrix(1, 0, 0, 1, 0, 0);
          transform: matrix(1, 0, 0, 1, 0, 0);
  opacity: 1;
  -webkit-animation-name: animation_85_1;
          animation-name: animation_85_1;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
  -webkit-animation-fill-mode: none;
          animation-fill-mode: none;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}

@media (max-width: 800px) {
  .c-text__title-icon:before {
    width: 55.2px;
    height: 55.2px;
  }
}
.c-text__title-icon:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -1.3269230769vw;
  margin-left: -1.3269230769vw;
  background-image: url("../ui/title-2.svg");
  background-size: cover;
  width: 2.6538461538vw;
  height: 2.6538461538vw;
  -webkit-transform: matrix(1, 0, 0, 1, 0, 0);
          transform: matrix(1, 0, 0, 1, 0, 0);
  opacity: 1;
  -webkit-animation-name: animation_86_1;
          animation-name: animation_86_1;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
  -webkit-animation-fill-mode: none;
          animation-fill-mode: none;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}

@media (max-width: 800px) {
  .c-text__title-icon:after {
    width: 27.6px;
    height: 27.6px;
    margin-top: -13.8px;
    margin-left: -13.8px;
  }
}
.c-text__text {
  width: 100%;
  margin: 0 auto;
  padding: 2.6538461538vw;
}

@media (max-width: 800px) {
  .c-text__text {
    padding: 27.6px 0;
  }
}
.c-text__text ol, .c-text__text ul {
  list-style-position: inside;
}

.c-text__text ul {
  list-style: none;
}

.c-text__text ul li:before {
  font-family: "Montserrat", sans-serif;
  content: "•"; /* Add content: \2022 is the CSS Code/unicode for a bullet */
  color: rgb(37, 26, 255); /* Change the color */
  font-weight: 900; /* If you want it to be bold */
  display: inline-block; /* Needed to add space between the bullet and the text */
  width: 1.5em; /* Also needed for space (tweak if needed) */
}

.c-text__text ul, .c-text__text ol, .c-text__text p, .c-text__text .wp-caption {
  margin-bottom: 1em;
}

.c-text__text ul:last-child, .c-text__text ol:last-child, .c-text__text p:last-child, .c-text__text .wp-caption:last-child {
  margin-bottom: 0;
}

.c-text__text a {
  text-decoration: underline;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

.c-text__text a:hover {
  opacity: 0.8;
}

.c-text__box {
  position: relative;
  border-radius: 3.9807692308vw;
  border-style: solid;
  border-width: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: linear-gradient(60deg, #0C0955 50%, #FF1A69 100%);
  -webkit-animation: hue-rotate1 6s linear infinite;
          animation: hue-rotate1 6s linear infinite;
  width: 100%;
  margin: 0 auto;
  padding: 5.3076923077vw 2.6538461538vw;
  color: #ffffff;
}

@media (max-width: 800px) {
  .c-text__box {
    border-radius: 41.4px;
    padding: 55.2px 27.6px;
  }
}
.c-text__box ol, .c-text__box ul {
  list-style-position: inside;
}

.c-text__box li {
  padding-bottom: 0.6634615385vw;
}

@media (max-width: 800px) {
  .c-text__box li {
    padding-bottom: 6.9px;
  }
}
.c-text__box li:last-child {
  padding-bottom: 0;
}

.c-text__box ul {
  list-style: none;
}

.c-text__box ul li:before {
  font-family: "Montserrat", sans-serif;
  content: "•"; /* Add content: \2022 is the CSS Code/unicode for a bullet */
  color: #ffffff; /* Change the color */
  font-weight: 900; /* If you want it to be bold */
  display: inline-block; /* Needed to add space between the bullet and the text */
  width: 1.5em; /* Also needed for space (tweak if needed) */
}

.c-text__box ul, .c-text__box ol, .c-text__box p, .c-text__box .wp-caption {
  margin-bottom: 1em;
}

.c-text__box ul:last-child, .c-text__box ol:last-child, .c-text__box p:last-child, .c-text__box .wp-caption:last-child {
  margin-bottom: 0;
}

.c-text__box-title {
  margin-bottom: 1em;
}

.c-text__box-text .wp-caption {
  max-width: 100%;
}

.c-text__box-text .wp-caption, .c-text__box-text img {
  width: 100%;
  height: auto;
}

.c-text__box-icon {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 3.8461538462vw;
  height: 3.8461538462vw;
}

@media (max-width: 800px) {
  .c-text__box-icon {
    width: 40px;
    height: 40px;
  }
}
.c-text__box-icon img {
  width: 100%;
  height: auto;
  -webkit-animation-name: animation_16_1, animation_16_2;
          animation-name: animation_16_1, animation_16_2;
  -webkit-animation-duration: 5s, 5s;
          animation-duration: 5s, 5s;
  -webkit-animation-delay: 0s, 5s;
          animation-delay: 0s, 5s;
  -webkit-animation-iteration-count: 1, infinite;
          animation-iteration-count: 1, infinite;
  -webkit-animation-direction: alternate, alternate;
          animation-direction: alternate, alternate;
  -webkit-animation-fill-mode: none, none;
          animation-fill-mode: none, none;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}

.c-text__box-outside-title {
  position: absolute;
  top: 0;
  right: calc(100% + 27.6px);
  height: 100%;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: mixed;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  color: rgb(37, 26, 255);
  text-align: right;
}

@media (max-width: 800px) {
  .c-text__box-outside-title {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    -webkit-writing-mode: initial;
        -ms-writing-mode: initial;
            writing-mode: initial;
    text-align: left;
    color: #ffffff;
    margin-bottom: 1em;
  }
}
@keyframes hue-rotate1 {
  0% {
    -webkit-filter: hue-rotate(0);
    -moz-filter: hue-rotate(0);
    -ms-filter: hue-rotate(0);
    filter: hue-rotate(0);
  }
  50% {
    -webkit-filter: hue-rotate(-20deg);
    -moz-filter: hue-rotate(-20deg);
    -ms-filter: hue-rotate(-20deg);
    filter: hue-rotate(-20deg);
  }
  100% {
    -webkit-filter: hue-rotate(0);
    -moz-filter: hue-rotate(0);
    -ms-filter: hue-rotate(0);
    filter: hue-rotate(0);
  }
}
@keyframes animation_16_1 {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg) scale(1);
            transform: translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(90deg) scale(1);
            transform: translate(0px, 0px) rotate(90deg) scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes animation_16_2 {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(90deg) scale(1);
            transform: translate(0px, 0px) rotate(90deg) scale(1);
    opacity: 1;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(-90deg) scale(1);
            transform: translate(0px, 0px) rotate(-90deg) scale(1);
    opacity: 1;
  }
}
@keyframes animation_16_2 {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(90deg) scale(1);
            transform: translate(0px, 0px) rotate(90deg) scale(1);
    opacity: 1;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(-90deg) scale(1);
            transform: translate(0px, 0px) rotate(-90deg) scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes animation_86_1 {
  0% {
    -webkit-transform: matrix(1, 0, 0, 1, 0, 0);
            transform: matrix(1, 0, 0, 1, 0, 0);
    opacity: 1;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  100% {
    -webkit-transform: matrix(0.5, 0, 0, 0.5, 0, 0);
            transform: matrix(0.5, 0, 0, 0.5, 0, 0);
    opacity: 0;
  }
}
@keyframes animation_86_1 {
  0% {
    -webkit-transform: matrix(1, 0, 0, 1, 0, 0);
            transform: matrix(1, 0, 0, 1, 0, 0);
    opacity: 1;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  100% {
    -webkit-transform: matrix(0.5, 0, 0, 0.5, 0, 0);
            transform: matrix(0.5, 0, 0, 0.5, 0, 0);
    opacity: 0;
  }
}
@-webkit-keyframes animation_85_1 {
  0% {
    -webkit-transform: matrix(1, 0, 0, 1, 0, 0);
            transform: matrix(1, 0, 0, 1, 0, 0);
    opacity: 1;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  100% {
    -webkit-transform: matrix(1.2, 0, 0, 1.2, 0, 0);
            transform: matrix(1.2, 0, 0, 1.2, 0, 0);
    opacity: 0.6;
  }
}
@keyframes animation_85_1 {
  0% {
    -webkit-transform: matrix(1, 0, 0, 1, 0, 0);
            transform: matrix(1, 0, 0, 1, 0, 0);
    opacity: 1;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  100% {
    -webkit-transform: matrix(1.2, 0, 0, 1.2, 0, 0);
            transform: matrix(1.2, 0, 0, 1.2, 0, 0);
    opacity: 0.6;
  }
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  100% {
    -webkit-transform: scale(2);
            transform: scale(2);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  100% {
    -webkit-transform: scale(2);
            transform: scale(2);
  }
}
.c-article-question__title {
  color: rgb(56, 56, 56);
  margin-bottom: 1.5em;
}

.c-article-question__main {
  width: 100%;
  margin: 0 auto;
  padding: 2.6538461538vw;
}

.c-article-question__main p, .c-article-question__main ul {
  margin-bottom: 1em;
}

.c-article-question__main p:last-child, .c-article-question__main ul:last-child {
  margin-bottom: 0;
}

.c-article-question__main ul {
  list-style: none;
}

.c-article-question__main ul li:before {
  font-family: "Montserrat", sans-serif;
  content: "•"; /* Add content: \2022 is the CSS Code/unicode for a bullet */
  color: rgb(37, 26, 255); /* Change the color */
  font-weight: 900; /* If you want it to be bold */
  display: inline-block; /* Needed to add space between the bullet and the text */
  width: 1.5em; /* Also needed for space (tweak if needed) */
}

.c-article-question__main a {
  text-decoration: underline;
}

.c-article-question__article {
  margin-bottom: 2.5em;
}

.c-article-question__article:last-child {
  margin-bottom: 0;
}

.c-article-question__article-header {
  margin-bottom: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.c-article-question__article-header h2 {
  margin-top: auto;
  margin-bottom: 0;
}

.c-article-question__nbr {
  padding-right: 2.6538461538vw;
  text-align: left;
  color: rgb(37, 26, 255);
}

.c-article-question__text img {
  width: 100%;
  height: auto;
  vertical-align: top;
}

.c-article-question__text p {
  margin-bottom: 1em;
}

.c-aside {
  overflow: hidden;
}

.c-aside__box {
  display: block;
  position: sticky;
  top: 2.6538461538vw;
  right: 0;
  left: auto;
  margin-left: auto;
  margin-right: 0;
  margin-top: 42.3076923077vw;
  margin-bottom: 2.6538461538vw;
  width: 78.9473684211%;
}

@media (max-width: 800px) {
  .c-aside__box {
    margin-top: 0;
    width: 100%;
    top: auto;
    position: static;
  }
}
.c-aside__box-inner {
  position: relative;
  border-radius: 3.9807692308vw;
  border-style: solid;
  border-width: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: linear-gradient(60deg, #251AFF 20%, #FF1A69 100%);
  -webkit-animation: hue-rotate1 6s linear infinite;
          animation: hue-rotate1 6s linear infinite;
  width: 100%;
  margin: 0 auto;
  padding: 1.9903846154vw 2.6538461538vw;
  color: #ffffff;
  padding-right: 50%;
}

.c-aside__box-image {
  width: 64%;
  position: absolute;
  top: 10%;
  right: -5%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.c-aside__box-image:before {
  position: relative;
  display: block;
  width: 100%;
  padding-bottom: 100%;
  content: "";
}

.c-aside__box-text ol, .c-aside__box-text ul {
  list-style-position: inside;
}

.c-aside__box-text li {
  padding-top: 2.3884615385vw;
}

.c-aside__box-text p {
  margin-bottom: 1em;
}

.c-aside__box-text a {
  text-decoration: underline;
}

.c-aside__box-text > *:last-child {
  margin-bottom: 0;
}

.o-statistics-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  background-color: #f0f0f0;
}

.o-statistics-wrapper__bg {
  position: absolute;
  left: 40%;
  top: -15%;
  width: 57.6923076923vw;
  height: 57.6923076923vw;
  background-size: cover;
  background-position: center;
  opacity: 0.5;
  -webkit-animation-name: animation_102_1;
          animation-name: animation_102_1;
  -webkit-animation-duration: 5s;
          animation-duration: 5s;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: none;
          animation-fill-mode: none;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}

.c-marquee {
  --gap: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  gap: var(--gap);
}

.c-marquee__content {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  min-width: 100%;
  gap: var(--gap);
  -webkit-animation: scroll 20s linear infinite;
          animation: scroll 20s linear infinite;
}

@-webkit-keyframes scroll {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(calc(-100% - var(--gap)));
            transform: translateX(calc(-100% - var(--gap)));
  }
}

@keyframes scroll {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(calc(-100% - var(--gap)));
            transform: translateX(calc(-100% - var(--gap)));
  }
}
@-webkit-keyframes animation_102_1 {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg) scale(1);
            transform: translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 0.5;
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(180deg) scale(1);
            transform: translate(0px, 0px) rotate(180deg) scale(1);
    opacity: 1;
  }
}
@keyframes animation_102_1 {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg) scale(1);
            transform: translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 0.5;
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(180deg) scale(1);
            transform: translate(0px, 0px) rotate(180deg) scale(1);
    opacity: 1;
  }
}
.c-statistics {
  position: relative;
}

.c-statistics--type-1 {
  background-color: #ffffff;
  padding: 6.6346153846vw 0;
}

@media (max-width: 800px) {
  .c-statistics--type-1 {
    padding: 69px 0;
  }
}
.c-statistics--type-2 {
  padding: 6.6346153846vw 0;
}

@media (max-width: 800px) {
  .c-statistics--type-2 {
    padding: 69px 0;
  }
}
.c-statistics--type-3 {
  padding: 6.6346153846vw 0;
}

@media (max-width: 800px) {
  .c-statistics--type-3 {
    padding: 69px 0;
  }
}
.c-statistics__article {
  width: 100%;
}

.c-statistics__track {
  border: 2px solid rgb(37, 26, 255);
  border-radius: 3.9807692308vw;
  overflow: hidden;
  margin-bottom: 2.6538461538vw;
}

@media (max-width: 800px) {
  .c-statistics__track {
    border-radius: 41.4px;
    margin-bottom: 27.6px;
  }
}
.c-statistics__track-number {
  width: 23.0769230769%;
  color: rgb(37, 26, 255);
  text-align: right;
  padding: 1.3269230769vw 2.6538461538vw;
  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;
}

@media (max-width: 800px) {
  .c-statistics__track-number {
    padding: 13.8px 13.8px;
    width: 40%;
  }
}
.c-statistics__track-title {
  background-color: rgb(37, 26, 255);
  color: #ffffff;
  padding: 1.3269230769vw 2.6538461538vw;
  min-width: 76.9230769231%;
  width: auto;
  white-space: nowrap;
}

@media (max-width: 800px) {
  .c-statistics__track-title {
    padding: 13.8px 27.6px;
    min-width: 1px;
    width: 60%;
  }
}
.c-statistics__single-vizual {
  margin-bottom: 5.3076923077vw;
}

@media (max-width: 800px) {
  .c-statistics__single-vizual {
    margin-bottom: 55.2px;
  }
}
.c-statistics__single-vizual-inner img {
  width: 17.3076923077vw;
  height: 17.3076923077vw;
  display: inline-block;
  vertical-align: top;
}

@media (max-width: 800px) {
  .c-statistics__single-vizual-inner img {
    width: 180px;
    height: 180px;
  }
}
.c-statistics__single-text {
  width: 100%;
}

.c-statistics__single-text-inner {
  width: 100%;
  max-width: 61.3154960981vw;
  margin: 0 auto;
  margin-bottom: 2.6538461538vw;
}

@media (max-width: 800px) {
  .c-statistics__single-text-inner {
    max-width: 637.6811594203px;
    margin-bottom: 27.6px;
  }
}
@media (max-width: 800px) {
  .c-statistics--type-1 .c-statistics__single-text-inner {
    margin-bottom: 0;
  }
}
.c-statistics__single-text-inner p {
  font-weight: 500;
  color: rgb(56, 56, 56);
  margin-bottom: 2.6538461538vw;
}

@media (max-width: 800px) {
  .c-statistics__single-text-inner p {
    margin-bottom: 27.6px;
  }
}
.c-statistics__single-text-inner p:last-child {
  margin-bottom: 0;
}

.c-statistics__single-text-inner a {
  color: rgb(37, 26, 255);
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  font-weight: 700;
}

.c-statistics__single-text-inner a:hover {
  opacity: 0.8;
}

.c-statistics__box-with-vizual {
  background: linear-gradient(60deg, #251AFF 20%, #FF1A69 100%);
  -webkit-animation: hue-rotate1 6s linear infinite;
          animation: hue-rotate1 6s linear infinite;
  border-radius: 3.9807692308vw;
  width: 79.5744680851%;
  padding: 2.6538461538vw 5.3076923077vw 2.6538461538vw 3.9807692308vw;
}

@media (max-width: 800px) {
  .c-statistics__box-with-vizual {
    border-radius: 41.4px;
    width: 100%;
    padding: 27.6px;
    margin-bottom: 27.6px;
  }
}
.c-statistics__box-with-vizual-text {
  width: 53.4759358289%;
  color: #ffffff;
}

@media (max-width: 800px) {
  .c-statistics__box-with-vizual-text {
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.c-statistics__box-with-vizual-text h3 {
  margin-bottom: 0.2em;
}

.c-statistics__box-with-vizual-vizual {
  width: 29.4117647059%;
}

@media (max-width: 800px) {
  .c-statistics__box-with-vizual-vizual {
    width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-bottom: 27.6px;
  }
}
.c-statistics__box-with-vizual-vizual img {
  border-radius: 50%;
}

.c-statistics__small-box {
  padding: 2.6538461538vw 1.9903846154vw;
  width: 18.2978723404%;
  background-color: rgb(37, 26, 255);
  border-radius: 3.9807692308vw;
  color: #ffffff;
}

.c-statistics__small-box a {
  color: #ffffff;
  text-decoration: underline;
}

.c-statistics__small-box a:hover {
  text-decoration: underline;
}

@media (max-width: 800px) {
  .c-statistics__small-box {
    width: 100%;
    border-radius: 41.4px;
    padding: 27.6px 20.7px;
    margin-bottom: 27.6px;
  }
}
@media (max-width: 800px) {
  .c-statistics--type-2 .c-statistics__small-box {
    width: 100%;
    margin: 0;
    margin-bottom: 0;
  }
}
.c-statistics--type-3 .c-statistics__small-box {
  width: 23.4042553191%;
  margin: 0 1.3269230769vw;
  margin-left: auto;
}

@media (max-width: 800px) {
  .c-statistics--type-3 .c-statistics__small-box {
    width: 100%;
    margin: 0;
    margin-bottom: 27.6px;
  }
}
.c-statistics__small-box a {
  font-weight: 700;
}

.c-statistics__boxes {
  margin-bottom: 5.3076923077vw;
}

@media (max-width: 800px) {
  .c-statistics__boxes {
    margin-bottom: 55.2px;
  }
}
.c-statistics__track-without-number {
  overflow: hidden;
  margin-bottom: 2.6538461538vw;
}

@media (max-width: 800px) {
  .c-statistics__track-without-number {
    margin-bottom: 27.6px;
  }
}
@media (max-width: 800px) {
  .c-statistics__track-without-number--footer .c-statistics__track-without-number {
    margin-bottom: 0;
  }
}
.c-statistics__track-without-number-inner {
  margin-bottom: 2.6538461538vw;
}

@media (max-width: 800px) {
  .c-statistics__track-without-number-inner {
    margin-bottom: 27.6px;
  }
}
.c-statistics__track-image {
  padding: 0 2.6538461538vw;
}

@media (max-width: 800px) {
  .c-statistics__track-image {
    padding: 0 27.6px;
  }
}
.c-statistics__track-image img {
  width: 220.8px;
  display: block;
}

@media (max-width: 800px) {
  .c-statistics__track-image img {
    width: 160px;
  }
}
.c-statistics--type-1 .c-statistics__track-title {
  white-space: initial;
}

.c-statistics--type-2 .c-statistics__track-title {
  padding-right: 13.2692307692vw;
  white-space: initial;
}

@media (max-width: 800px) {
  .c-statistics--type-2 .c-statistics__track-title {
    padding-right: 2.6538461538vw;
  }
}
.c-statistics--type-3 .c-statistics__track-title {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: auto;
  border: 2px solid rgb(37, 26, 255);
  border-radius: 3.9807692308vw;
  background-color: rgb(37, 26, 255);
  color: #ffffff;
  padding: 1.9903846154vw 2.6538461538vw;
}

@media (max-width: 800px) {
  .c-statistics--type-3 .c-statistics__track-title {
    border-radius: 41.4px;
    padding: 13.8px 27.6px;
  }
}
.c-statistics__small-box-with-numbers {
  width: 23.4042553191%;
  margin: 0 1.3269230769vw;
}

@media (max-width: 800px) {
  .c-statistics__small-box-with-numbers {
    width: 100%;
    margin: 0;
    margin-bottom: 27.6px;
  }
}
.c-statistics__small-box-with-numbers-inner {
  width: 100%;
  padding: 1.3269230769vw 1.9903846154vw;
  background-color: rgb(37, 26, 255);
  border-radius: 3.9807692308vw;
  color: #ffffff;
}

@media (max-width: 800px) {
  .c-statistics__small-box-with-numbers-inner {
    padding: 20.7px 20.7px;
    border-radius: 41.4px;
    margin-bottom: 27.6px;
  }
  .c-statistics__small-box-with-numbers-inner:last-child {
    margin-bottom: 0;
  }
}
.c-statistics__small-box-with-image {
  border-radius: 3.9807692308vw;
  border-style: solid;
  border-width: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  background: linear-gradient(60deg, #251AFF 20%, #FF1A69 100%);
  -webkit-animation: hue-rotate1 6s linear infinite;
          animation: hue-rotate1 6s linear infinite;
  padding: 1.9903846154vw 2.6538461538vw;
  color: #ffffff;
  padding-right: 16%;
  width: 38.7234042553%;
  margin: 0 1.3269230769vw;
  margin-right: auto;
}

@media (max-width: 800px) {
  .c-statistics__small-box-with-image {
    width: 100%;
    border-radius: 41.4px;
    padding: 20.7px 27.6px;
    margin: 0;
  }
}
.c-statistics__small-box-with-image-image {
  width: 64%;
  position: absolute;
  top: 10%;
  right: -5%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

@media (max-width: 800px) {
  .c-statistics__small-box-with-image-image {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
  }
}
.c-statistics__small-box-with-image-image:before {
  position: relative;
  display: block;
  width: 100%;
  padding-bottom: 100%;
  content: "";
}

.c-statistics__small-box-with-image-text ol, .c-statistics__small-box-with-image-text ul {
  list-style-position: inside;
}

.c-statistics__small-box-with-image-text li {
  padding-top: 2.3884615385vw;
}

@media (max-width: 800px) {
  .c-statistics__small-box-with-image-text li {
    padding-top: 24.84px;
  }
}
.c-statistics__small-box-with-image-text p {
  margin-bottom: 1em;
}

.c-statistics__small-box-with-image-text a {
  text-decoration: underline;
}

.c-statistics__small-box-with-image-text > *:last-child {
  margin-bottom: 0;
}

.c-statistics__testimonials-header {
  position: relative;
  padding-left: 138px;
  min-height: 110.4px;
  margin-bottom: 27.6px;
}

.c-statistics__testimonials-image {
  position: absolute;
  top: 50%;
  left: 0;
  width: 110.4px;
  height: 110.4px;
  border-radius: 50%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.c-statistics__testimonials-title {
  color: #ff1a69;
}

.c-statistics__testimonials-text {
  position: relative;
  line-height: 1.66em !important;
}

@media (max-width: 800px) {
  .c-statistics__testimonials-text {
    padding-left: 89.7px;
  }
}
.c-statistics__testimonials-text i {
  position: absolute;
  right: calc(100% + 27.6px);
  top: 6.9px;
  width: 62.1px;
  height: 41.4px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("../ui/RasterizedImage-1e787821-31f1-41be-9f8c-cdd9c6268e24.png");
}

@media (max-width: 800px) {
  .c-statistics__testimonials-text i {
    right: auto;
    left: 0;
  }
}
.c-statistics .swiper-container {
  overflow: visible;
}

@-webkit-keyframes animation_58_1 {
  0% {
    -webkit-transform: matrix(1, 0, 0, 1, 0, 0);
            transform: matrix(1, 0, 0, 1, 0, 0);
    opacity: 1;
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
  }
  100% {
    -webkit-transform: matrix(1, 0, 0, 1, -1770, 0);
            transform: matrix(1, 0, 0, 1, -1770, 0);
    opacity: 1;
  }
}

@keyframes animation_58_1 {
  0% {
    -webkit-transform: matrix(1, 0, 0, 1, 0, 0);
            transform: matrix(1, 0, 0, 1, 0, 0);
    opacity: 1;
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
  }
  100% {
    -webkit-transform: matrix(1, 0, 0, 1, -1770, 0);
            transform: matrix(1, 0, 0, 1, -1770, 0);
    opacity: 1;
  }
}
.c-video__background {
  position: relative;
  width: 100%;
  display: block;
  padding-bottom: 56.25%;
}

@media (max-width: 800px) {
  .c-video__background {
    padding-bottom: 177.7777777778%;
  }
}
.c-video__container {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

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

.c-video__overlay {
  position: absolute;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 1;
  width: 100%;
  pointer-events: none;
  background-color: rgba(37, 26, 255, 0.6);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  mix-blend-mode: multiply;
}

.c-video__overlay-text {
  position: absolute;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 1;
  width: 100%;
  pointer-events: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-video__article {
  width: 38.4615384615vw;
  height: auto;
  max-width: 100%;
  color: #ffffff;
  mix-blend-mode: initial;
}

.c-video__article strong {
  color: rgb(37, 26, 255);
}

@media (max-width: 800px) {
  .c-video__article {
    width: 100%;
  }
}
.c-video__x {
  position: absolute;
  -webkit-transform: matrix(1, 0, 0, 1, 0, 0);
          transform: matrix(1, 0, 0, 1, 0, 0);
  opacity: 1;
  width: 55.2px;
  height: 55.2px;
  z-index: 305;
  -webkit-animation-name: animation_1_1, animation_1_2;
          animation-name: animation_1_1, animation_1_2;
  -webkit-animation-duration: 3s, 5s;
          animation-duration: 3s, 5s;
  -webkit-animation-delay: 0s, 3s;
          animation-delay: 0s, 3s;
  -webkit-animation-iteration-count: 1, infinite;
          animation-iteration-count: 1, infinite;
  -webkit-animation-direction: alternate, alternate;
          animation-direction: alternate, alternate;
  -webkit-animation-fill-mode: none, none;
          animation-fill-mode: none, none;
  -webkit-animation-play-state: running;
          animation-play-state: running;
  background-size: cover;
}

.c-video__x--1 {
  top: 10%;
  left: 20%;
}

.c-video__x--2 {
  bottom: 20%;
  left: 10%;
}

.c-video__x--3 {
  top: 15%;
  right: 20%;
  width: 110.4px;
  height: 110.4px;
}

@-webkit-keyframes animation_1_1 {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg) scale(1);
            transform: translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(90deg) scale(1);
            transform: translate(0px, 0px) rotate(90deg) scale(1);
    opacity: 1;
  }
}

@keyframes animation_1_1 {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg) scale(1);
            transform: translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(90deg) scale(1);
            transform: translate(0px, 0px) rotate(90deg) scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes animation_1_2 {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(90deg) scale(1);
            transform: translate(0px, 0px) rotate(90deg) scale(1);
    opacity: 1;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(-90deg) scale(1);
            transform: translate(0px, 0px) rotate(-90deg) scale(1);
    opacity: 1;
  }
}
@keyframes animation_1_2 {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(90deg) scale(1);
            transform: translate(0px, 0px) rotate(90deg) scale(1);
    opacity: 1;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(-90deg) scale(1);
            transform: translate(0px, 0px) rotate(-90deg) scale(1);
    opacity: 1;
  }
}
.c-boxes {
  width: 100%;
  overflow: hidden;
  padding: 6.6346153846vw 0;
}

@media (max-width: 800px) {
  .c-boxes {
    padding: 69px 0;
  }
}
.c-boxes .swiper-container {
  overflow: visible;
}

.c-boxes__title {
  color: rgb(37, 26, 255);
}

@media (max-width: 800px) {
  .c-boxes__title {
    width: 100%;
  }
}
.c-boxes__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: auto !important;
}

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

.c-boxes__header img {
  max-width: 70%;
}

.c-boxes__number {
  color: rgb(37, 26, 255);
}

.c-boxes__small-box {
  border-radius: 3.9807692308vw;
  border-style: solid;
  border-width: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  background: linear-gradient(60deg, #251AFF 20%, #FF1A69 100%);
  -webkit-animation: hue-rotate1 6s linear infinite;
          animation: hue-rotate1 6s linear infinite;
  padding: 2.6538461538vw 2.6538461538vw;
  color: #ffffff;
  width: 100%;
  margin-right: auto;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
}

@media (max-width: 800px) {
  .c-boxes__small-box {
    width: 100%;
    border-radius: 41.4px;
    padding: 27.6px 27.6px;
    margin: 0;
    margin-bottom: 27.6px;
  }
}
.c-boxes__small-box h4 {
  margin-bottom: 2.6538461538vw;
}

.c-boxes .swiper-pagination {
  bottom: -55.2px !important;
}

@media (max-width: 800px) {
  .c-boxes .swiper-pagination {
    bottom: -27.6px !important;
  }
}
.c-boxes .swiper-pagination-bullet {
  background-color: rgb(37, 26, 255);
  cursor: pointer;
}

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

.u-fs-180 {
  font-family: "Poppins", sans-serif;
  font-size: 100px;
  line-height: 100px;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: normal;
}

@media (min-width: 480px) {
  .u-fs-180 {
    font-size: calc(16.1304347826vw + 22.5739130435px);
  }
}
@media (min-width: 1400px) {
  .u-fs-180 {
    font-size: calc(17.388vw + 4.968px);
  }
}
@media (min-width: 1600px) {
  .u-fs-180 {
    font-size: calc(18.009vw - 4.968px);
  }
}
@media (min-width: 2000px) {
  .u-fs-180 {
    font-size: calc(17.7428571429vw + 0.3548571429px);
  }
}
@media (min-width: 2560px) {
  .u-fs-180 {
    font-size: calc(17.6596875vw + 2.484px);
  }
}
@media (min-width: 3840px) {
  .u-fs-180 {
    font-size: 680.616px;
  }
}
@media (min-width: 480px) {
  .u-fs-180 {
    line-height: calc(16.1304347826vw + 22.5739130435px);
  }
}
@media (min-width: 1400px) {
  .u-fs-180 {
    line-height: calc(17.388vw + 4.968px);
  }
}
@media (min-width: 1600px) {
  .u-fs-180 {
    line-height: calc(18.009vw - 4.968px);
  }
}
@media (min-width: 2000px) {
  .u-fs-180 {
    line-height: calc(17.7428571429vw + 0.3548571429px);
  }
}
@media (min-width: 2560px) {
  .u-fs-180 {
    line-height: calc(17.6596875vw + 2.484px);
  }
}
@media (min-width: 3840px) {
  .u-fs-180 {
    line-height: 680.616px;
  }
}
.u-fs-180.u-fs-primary, .c-article__wrapper p.u-fs-180, .c-article__wrapper ul li.u-fs-180, .c-text__text p.u-fs-180, .c-text__text ul li.u-fs-180, .c-article-question__main p.u-fs-180, .c-article-question__main ul li.u-fs-180 {
  font-family: "Merriweather", serif;
}

.u-fs-180.u-fs-secondary, .c-article__wrapper h2.u-fs-180 {
  font-family: "Montserrat", sans-serif;
}

.u-fs-180.u-fs-tertiary {
  font-family: "Poppins", sans-serif;
}

.u-fs-160, .c-header--landing .c-header__article-subtitle-inner span, .c-header--article .c-header__article-subtitle-inner span {
  font-family: "Poppins", sans-serif;
  font-size: 160px;
  line-height: 160px;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: normal;
}

@media (min-width: 480px) {
  .u-fs-160, .c-header--landing .c-header__article-subtitle-inner span, .c-header--article .c-header__article-subtitle-inner span {
    font-size: calc(6.6086956522vw + 128.2782608696px);
  }
}
@media (min-width: 1400px) {
  .u-fs-160, .c-header--landing .c-header__article-subtitle-inner span, .c-header--article .c-header__article-subtitle-inner span {
    font-size: calc(15.456vw + 4.416px);
  }
}
@media (min-width: 1600px) {
  .u-fs-160, .c-header--landing .c-header__article-subtitle-inner span, .c-header--article .c-header__article-subtitle-inner span {
    font-size: calc(16.008vw - 4.416px);
  }
}
@media (min-width: 2000px) {
  .u-fs-160, .c-header--landing .c-header__article-subtitle-inner span, .c-header--article .c-header__article-subtitle-inner span {
    font-size: calc(15.7714285714vw + 0.3154285714px);
  }
}
@media (min-width: 2560px) {
  .u-fs-160, .c-header--landing .c-header__article-subtitle-inner span, .c-header--article .c-header__article-subtitle-inner span {
    font-size: calc(15.6975vw + 2.208px);
  }
}
@media (min-width: 3840px) {
  .u-fs-160, .c-header--landing .c-header__article-subtitle-inner span, .c-header--article .c-header__article-subtitle-inner span {
    font-size: 604.992px;
  }
}
@media (min-width: 480px) {
  .u-fs-160, .c-header--landing .c-header__article-subtitle-inner span, .c-header--article .c-header__article-subtitle-inner span {
    line-height: calc(9.6086956522vw + 113.8782608696px);
  }
}
@media (min-width: 1400px) {
  .u-fs-160, .c-header--landing .c-header__article-subtitle-inner span, .c-header--article .c-header__article-subtitle-inner span {
    line-height: calc(17.388vw + 4.968px);
  }
}
@media (min-width: 1600px) {
  .u-fs-160, .c-header--landing .c-header__article-subtitle-inner span, .c-header--article .c-header__article-subtitle-inner span {
    line-height: calc(18.009vw - 4.968px);
  }
}
@media (min-width: 2000px) {
  .u-fs-160, .c-header--landing .c-header__article-subtitle-inner span, .c-header--article .c-header__article-subtitle-inner span {
    line-height: calc(17.7428571429vw + 0.3548571429px);
  }
}
@media (min-width: 2560px) {
  .u-fs-160, .c-header--landing .c-header__article-subtitle-inner span, .c-header--article .c-header__article-subtitle-inner span {
    line-height: calc(17.6596875vw + 2.484px);
  }
}
@media (min-width: 3840px) {
  .u-fs-160, .c-header--landing .c-header__article-subtitle-inner span, .c-header--article .c-header__article-subtitle-inner span {
    line-height: 680.616px;
  }
}
.u-fs-160.u-fs-primary, .c-header--landing .c-header__article-subtitle-inner span.u-fs-primary, .c-header--article .c-header__article-subtitle-inner span.u-fs-primary, .c-article__wrapper p.u-fs-160, .c-article__wrapper ul li.u-fs-160, .c-text__text p.u-fs-160, .c-text__text ul li.u-fs-160, .c-article-question__main p.u-fs-160, .c-article-question__main ul li.u-fs-160 {
  font-family: "Merriweather", serif;
}

.u-fs-160.u-fs-secondary, .c-header--landing .c-header__article-subtitle-inner span.u-fs-secondary, .c-header--article .c-header__article-subtitle-inner span.u-fs-secondary, .c-article__wrapper h2.u-fs-160 {
  font-family: "Montserrat", sans-serif;
}

.u-fs-160.u-fs-tertiary, .c-header--landing .c-header__article-subtitle-inner span.u-fs-tertiary, .c-header--article .c-header__article-subtitle-inner span.u-fs-tertiary {
  font-family: "Poppins", sans-serif;
}

.u-fs-100 {
  font-family: "Poppins", sans-serif;
  font-size: 100px;
  line-height: 120px;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: normal;
}

@media (min-width: 480px) {
  .u-fs-100 {
    font-size: calc(4.1304347826vw + 80.1739130435px);
  }
}
@media (min-width: 1400px) {
  .u-fs-100 {
    font-size: calc(9.66vw + 2.76px);
  }
}
@media (min-width: 1600px) {
  .u-fs-100 {
    font-size: calc(10.005vw - 2.76px);
  }
}
@media (min-width: 2000px) {
  .u-fs-100 {
    font-size: calc(9.8571428571vw + 0.1971428571px);
  }
}
@media (min-width: 2560px) {
  .u-fs-100 {
    font-size: calc(9.8109375vw + 1.38px);
  }
}
@media (min-width: 3840px) {
  .u-fs-100 {
    font-size: 378.12px;
  }
}
@media (min-width: 480px) {
  .u-fs-100 {
    line-height: calc(4.9565217391vw + 96.2086956522px);
  }
}
@media (min-width: 1400px) {
  .u-fs-100 {
    line-height: calc(11.592vw + 3.312px);
  }
}
@media (min-width: 1600px) {
  .u-fs-100 {
    line-height: calc(2.139vw + 154.56px);
  }
}
@media (min-width: 2000px) {
  .u-fs-100 {
    line-height: calc(9.8571428571vw + 0.1971428571px);
  }
}
@media (min-width: 2560px) {
  .u-fs-100 {
    line-height: calc(9.8109375vw + 1.38px);
  }
}
@media (min-width: 3840px) {
  .u-fs-100 {
    line-height: 378.12px;
  }
}
.u-fs-100.u-fs-primary, .c-article__wrapper p.u-fs-100, .c-article__wrapper ul li.u-fs-100, .c-text__text p.u-fs-100, .c-text__text ul li.u-fs-100, .c-article-question__main p.u-fs-100, .c-article-question__main ul li.u-fs-100 {
  font-family: "Merriweather", serif;
}

.u-fs-100.u-fs-secondary, .c-article__wrapper h2.u-fs-100 {
  font-family: "Montserrat", sans-serif;
}

.u-fs-100.u-fs-tertiary {
  font-family: "Poppins", sans-serif;
}

.u-fs-50 {
  font-family: "Montserrat", sans-serif;
  font-size: 50px;
  line-height: 45px;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: normal;
}

@media (min-width: 480px) {
  .u-fs-50 {
    font-size: calc(2.0652173913vw + 40.0869565217px);
  }
}
@media (min-width: 1400px) {
  .u-fs-50 {
    font-size: calc(4.83vw + 1.38px);
  }
}
@media (min-width: 1600px) {
  .u-fs-50 {
    font-size: calc(5.0025vw - 1.38px);
  }
}
@media (min-width: 2000px) {
  .u-fs-50 {
    font-size: calc(4.9285714286vw + 0.0985714286px);
  }
}
@media (min-width: 2560px) {
  .u-fs-50 {
    font-size: calc(4.90546875vw + 0.69px);
  }
}
@media (min-width: 3840px) {
  .u-fs-50 {
    font-size: 189.06px;
  }
}
@media (min-width: 480px) {
  .u-fs-50 {
    line-height: calc(1.8586956522vw + 36.0782608696px);
  }
}
@media (min-width: 1400px) {
  .u-fs-50 {
    line-height: calc(4.347vw + 1.242px);
  }
}
@media (min-width: 1600px) {
  .u-fs-50 {
    line-height: calc(4.50225vw - 1.242px);
  }
}
@media (min-width: 2000px) {
  .u-fs-50 {
    line-height: calc(4.4357142857vw + 0.0887142857px);
  }
}
@media (min-width: 2560px) {
  .u-fs-50 {
    line-height: calc(4.414921875vw + 0.621px);
  }
}
@media (min-width: 3840px) {
  .u-fs-50 {
    line-height: 170.154px;
  }
}
.u-fs-50.u-fs-primary, .c-article__wrapper p.u-fs-50, .c-article__wrapper ul li.u-fs-50, .c-text__text p.u-fs-50, .c-text__text ul li.u-fs-50, .c-article-question__main p.u-fs-50, .c-article-question__main ul li.u-fs-50 {
  font-family: "Merriweather", serif;
}

.u-fs-50.u-fs-secondary, .c-article__wrapper h2.u-fs-50 {
  font-family: "Montserrat", sans-serif;
}

.u-fs-50.u-fs-tertiary {
  font-family: "Poppins", sans-serif;
}

.u-fs-40 {
  font-family: "Montserrat", sans-serif;
  font-size: 40px;
  line-height: 50px;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: normal;
}

@media (min-width: 480px) {
  .u-fs-40 {
    font-size: calc(1.652173913vw + 32.0695652174px);
  }
}
@media (min-width: 1400px) {
  .u-fs-40 {
    font-size: calc(3.864vw + 1.104px);
  }
}
@media (min-width: 1600px) {
  .u-fs-40 {
    font-size: calc(4.002vw - 1.104px);
  }
}
@media (min-width: 2000px) {
  .u-fs-40 {
    font-size: calc(3.9428571429vw + 0.0788571429px);
  }
}
@media (min-width: 2560px) {
  .u-fs-40 {
    font-size: calc(3.924375vw + 0.552px);
  }
}
@media (min-width: 3840px) {
  .u-fs-40 {
    font-size: 151.248px;
  }
}
@media (min-width: 480px) {
  .u-fs-40 {
    line-height: calc(2.0652173913vw + 40.0869565217px);
  }
}
@media (min-width: 1400px) {
  .u-fs-40 {
    line-height: calc(4.83vw + 1.38px);
  }
}
@media (min-width: 1600px) {
  .u-fs-40 {
    line-height: calc(5.0025vw - 1.38px);
  }
}
@media (min-width: 2000px) {
  .u-fs-40 {
    line-height: calc(4.9285714286vw + 0.0985714286px);
  }
}
@media (min-width: 2560px) {
  .u-fs-40 {
    line-height: calc(4.90546875vw + 0.69px);
  }
}
@media (min-width: 3840px) {
  .u-fs-40 {
    line-height: 189.06px;
  }
}
.u-fs-40.u-fs-primary, .c-article__wrapper p.u-fs-40, .c-article__wrapper ul li.u-fs-40, .c-text__text p.u-fs-40, .c-text__text ul li.u-fs-40, .c-article-question__main p.u-fs-40, .c-article-question__main ul li.u-fs-40 {
  font-family: "Merriweather", serif;
}

.u-fs-40.u-fs-secondary, .c-article__wrapper h2.u-fs-40 {
  font-family: "Montserrat", sans-serif;
}

.u-fs-40.u-fs-tertiary {
  font-family: "Poppins", sans-serif;
}

.u-fs-30 {
  font-family: "Montserrat", sans-serif;
  font-size: 30px;
  line-height: 40px;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: normal;
}

@media (min-width: 480px) {
  .u-fs-30 {
    font-size: calc(1.2391304348vw + 24.052173913px);
  }
}
@media (min-width: 1400px) {
  .u-fs-30 {
    font-size: calc(2.898vw + 0.828px);
  }
}
@media (min-width: 1600px) {
  .u-fs-30 {
    font-size: calc(3.0015vw - 0.828px);
  }
}
@media (min-width: 2000px) {
  .u-fs-30 {
    font-size: calc(2.9571428571vw + 0.0591428571px);
  }
}
@media (min-width: 2560px) {
  .u-fs-30 {
    font-size: calc(2.94328125vw + 0.414px);
  }
}
@media (min-width: 3840px) {
  .u-fs-30 {
    font-size: 113.436px;
  }
}
@media (min-width: 480px) {
  .u-fs-30 {
    line-height: calc(1.652173913vw + 32.0695652174px);
  }
}
@media (min-width: 1400px) {
  .u-fs-30 {
    line-height: calc(3.864vw + 1.104px);
  }
}
@media (min-width: 1600px) {
  .u-fs-30 {
    line-height: calc(4.002vw - 1.104px);
  }
}
@media (min-width: 2000px) {
  .u-fs-30 {
    line-height: calc(3.9428571429vw + 0.0788571429px);
  }
}
@media (min-width: 2560px) {
  .u-fs-30 {
    line-height: calc(3.924375vw + 0.552px);
  }
}
@media (min-width: 3840px) {
  .u-fs-30 {
    line-height: 151.248px;
  }
}
.u-fs-30.u-fs-primary, .c-article__wrapper p.u-fs-30, .c-article__wrapper ul li.u-fs-30, .c-text__text p.u-fs-30, .c-text__text ul li.u-fs-30, .c-article-question__main p.u-fs-30, .c-article-question__main ul li.u-fs-30 {
  font-family: "Merriweather", serif;
}

.u-fs-30.u-fs-secondary, .c-article__wrapper h2.u-fs-30 {
  font-family: "Montserrat", sans-serif;
}

.u-fs-30.u-fs-tertiary {
  font-family: "Poppins", sans-serif;
}

.u-fs-24 {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  line-height: 24px;
  font-stretch: normal;
  font-style: normal;
}

@media (min-width: 480px) {
  .u-fs-24 {
    font-size: calc(0.9913043478vw + 19.2417391304px);
  }
}
@media (min-width: 1400px) {
  .u-fs-24 {
    font-size: calc(2.3184vw + 0.6624px);
  }
}
@media (min-width: 1600px) {
  .u-fs-24 {
    font-size: calc(2.4012vw - 0.6624px);
  }
}
@media (min-width: 2000px) {
  .u-fs-24 {
    font-size: calc(2.3657142857vw + 0.0473142857px);
  }
}
@media (min-width: 2560px) {
  .u-fs-24 {
    font-size: calc(2.354625vw + 0.3312px);
  }
}
@media (min-width: 3840px) {
  .u-fs-24 {
    font-size: 90.7488px;
  }
}
@media (min-width: 480px) {
  .u-fs-24 {
    line-height: calc(0.9913043478vw + 19.2417391304px);
  }
}
@media (min-width: 1400px) {
  .u-fs-24 {
    line-height: calc(2.3184vw + 0.6624px);
  }
}
@media (min-width: 1600px) {
  .u-fs-24 {
    line-height: calc(2.4012vw - 0.6624px);
  }
}
@media (min-width: 2000px) {
  .u-fs-24 {
    line-height: calc(2.3657142857vw + 0.0473142857px);
  }
}
@media (min-width: 2560px) {
  .u-fs-24 {
    line-height: calc(2.354625vw + 0.3312px);
  }
}
@media (min-width: 3840px) {
  .u-fs-24 {
    line-height: 90.7488px;
  }
}
.u-fs-24.u-fs-primary, .c-article__wrapper p.u-fs-24, .c-article__wrapper ul li.u-fs-24, .c-text__text p.u-fs-24, .c-text__text ul li.u-fs-24, .c-article-question__main p.u-fs-24, .c-article-question__main ul li.u-fs-24 {
  font-family: "Merriweather", serif;
}

.u-fs-24.u-fs-secondary, .c-article__wrapper h2.u-fs-24 {
  font-family: "Montserrat", sans-serif;
}

.u-fs-24.u-fs-tertiary {
  font-family: "Poppins", sans-serif;
}

.u-fs-20, .c-article__wrapper h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  line-height: 30px;
  font-stretch: normal;
  font-style: normal;
}

@media (min-width: 480px) {
  .u-fs-20, .c-article__wrapper h2 {
    font-size: calc(0.8260869565vw + 16.0347826087px);
  }
}
@media (min-width: 1400px) {
  .u-fs-20, .c-article__wrapper h2 {
    font-size: calc(1.932vw + 0.552px);
  }
}
@media (min-width: 1600px) {
  .u-fs-20, .c-article__wrapper h2 {
    font-size: calc(2.001vw - 0.552px);
  }
}
@media (min-width: 2000px) {
  .u-fs-20, .c-article__wrapper h2 {
    font-size: calc(1.9714285714vw + 0.0394285714px);
  }
}
@media (min-width: 2560px) {
  .u-fs-20, .c-article__wrapper h2 {
    font-size: calc(1.9621875vw + 0.276px);
  }
}
@media (min-width: 3840px) {
  .u-fs-20, .c-article__wrapper h2 {
    font-size: 75.624px;
  }
}
@media (min-width: 480px) {
  .u-fs-20, .c-article__wrapper h2 {
    line-height: calc(1.2391304348vw + 24.052173913px);
  }
}
@media (min-width: 1400px) {
  .u-fs-20, .c-article__wrapper h2 {
    line-height: calc(2.898vw + 0.828px);
  }
}
@media (min-width: 1600px) {
  .u-fs-20, .c-article__wrapper h2 {
    line-height: calc(3.0015vw - 0.828px);
  }
}
@media (min-width: 2000px) {
  .u-fs-20, .c-article__wrapper h2 {
    line-height: calc(2.9571428571vw + 0.0591428571px);
  }
}
@media (min-width: 2560px) {
  .u-fs-20, .c-article__wrapper h2 {
    line-height: calc(2.94328125vw + 0.414px);
  }
}
@media (min-width: 3840px) {
  .u-fs-20, .c-article__wrapper h2 {
    line-height: 113.436px;
  }
}
.u-fs-20.u-fs-primary, .c-article__wrapper h2.u-fs-primary, .c-article__wrapper p.u-fs-20, .c-article__wrapper ul li.u-fs-20, .c-text__text p.u-fs-20, .c-text__text ul li.u-fs-20, .c-article-question__main p.u-fs-20, .c-article-question__main ul li.u-fs-20 {
  font-family: "Merriweather", serif;
}

.u-fs-20.u-fs-secondary, .c-article__wrapper h2 {
  font-family: "Montserrat", sans-serif;
}

.u-fs-20.u-fs-tertiary, .c-article__wrapper h2.u-fs-tertiary {
  font-family: "Poppins", sans-serif;
}

.u-fs-20--1 {
  line-height: 25px;
}

@media (min-width: 480px) {
  .u-fs-20--1 {
    line-height: calc(1.0326086957vw + 20.0434782609px);
  }
}
@media (min-width: 1400px) {
  .u-fs-20--1 {
    line-height: calc(2.415vw + 0.69px);
  }
}
@media (min-width: 1600px) {
  .u-fs-20--1 {
    line-height: calc(2.50125vw - 0.69px);
  }
}
@media (min-width: 2000px) {
  .u-fs-20--1 {
    line-height: calc(2.4642857143vw + 0.0492857143px);
  }
}
@media (min-width: 2560px) {
  .u-fs-20--1 {
    line-height: calc(2.452734375vw + 0.345px);
  }
}
@media (min-width: 3840px) {
  .u-fs-20--1 {
    line-height: 94.53px;
  }
}
.u-fs-18 {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  line-height: 18px;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: -0.0625rem;
}

@media (min-width: 480px) {
  .u-fs-18 {
    font-size: calc(0.7434782609vw + 14.4313043478px);
  }
}
@media (min-width: 1400px) {
  .u-fs-18 {
    font-size: calc(1.7388vw + 0.4968px);
  }
}
@media (min-width: 1600px) {
  .u-fs-18 {
    font-size: calc(1.8009vw - 0.4968px);
  }
}
@media (min-width: 2000px) {
  .u-fs-18 {
    font-size: calc(1.7742857143vw + 0.0354857143px);
  }
}
@media (min-width: 2560px) {
  .u-fs-18 {
    font-size: calc(1.76596875vw + 0.2484px);
  }
}
@media (min-width: 3840px) {
  .u-fs-18 {
    font-size: 68.0616px;
  }
}
@media (min-width: 480px) {
  .u-fs-18 {
    line-height: calc(0.7434782609vw + 14.4313043478px);
  }
}
@media (min-width: 1400px) {
  .u-fs-18 {
    line-height: calc(1.7388vw + 0.4968px);
  }
}
@media (min-width: 1600px) {
  .u-fs-18 {
    line-height: calc(1.8009vw - 0.4968px);
  }
}
@media (min-width: 2000px) {
  .u-fs-18 {
    line-height: calc(1.7742857143vw + 0.0354857143px);
  }
}
@media (min-width: 2560px) {
  .u-fs-18 {
    line-height: calc(1.76596875vw + 0.2484px);
  }
}
@media (min-width: 3840px) {
  .u-fs-18 {
    line-height: 68.0616px;
  }
}
.u-fs-18.u-fs-primary, .c-article__wrapper p.u-fs-18, .c-article__wrapper ul li.u-fs-18, .c-text__text p.u-fs-18, .c-text__text ul li.u-fs-18, .c-article-question__main p.u-fs-18, .c-article-question__main ul li.u-fs-18 {
  font-family: "Merriweather", serif;
}

.u-fs-18.u-fs-secondary, .c-article__wrapper h2.u-fs-18 {
  font-family: "Montserrat", sans-serif;
}

.u-fs-18.u-fs-tertiary {
  font-family: "Poppins", sans-serif;
}

.u-fs-15 {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  line-height: 20px;
  font-stretch: normal;
  font-style: normal;
}

@media (min-width: 480px) {
  .u-fs-15 {
    font-size: calc(0.6195652174vw + 12.0260869565px);
  }
}
@media (min-width: 1400px) {
  .u-fs-15 {
    font-size: calc(1.449vw + 0.414px);
  }
}
@media (min-width: 1600px) {
  .u-fs-15 {
    font-size: calc(1.50075vw - 0.414px);
  }
}
@media (min-width: 2000px) {
  .u-fs-15 {
    font-size: calc(1.4785714286vw + 0.0295714286px);
  }
}
@media (min-width: 2560px) {
  .u-fs-15 {
    font-size: calc(1.471640625vw + 0.207px);
  }
}
@media (min-width: 3840px) {
  .u-fs-15 {
    font-size: 56.718px;
  }
}
@media (min-width: 480px) {
  .u-fs-15 {
    line-height: calc(0.8260869565vw + 16.0347826087px);
  }
}
@media (min-width: 1400px) {
  .u-fs-15 {
    line-height: calc(1.932vw + 0.552px);
  }
}
@media (min-width: 1600px) {
  .u-fs-15 {
    line-height: calc(2.001vw - 0.552px);
  }
}
@media (min-width: 2000px) {
  .u-fs-15 {
    line-height: calc(1.9714285714vw + 0.0394285714px);
  }
}
@media (min-width: 2560px) {
  .u-fs-15 {
    line-height: calc(1.9621875vw + 0.276px);
  }
}
@media (min-width: 3840px) {
  .u-fs-15 {
    line-height: 75.624px;
  }
}
.u-fs-15.u-fs-primary, .c-article__wrapper p.u-fs-15, .c-article__wrapper ul li.u-fs-15, .c-text__text p.u-fs-15, .c-text__text ul li.u-fs-15, .c-article-question__main p.u-fs-15, .c-article-question__main ul li.u-fs-15 {
  font-family: "Merriweather", serif;
}

.u-fs-15.u-fs-secondary, .c-article__wrapper h2.u-fs-15 {
  font-family: "Montserrat", sans-serif;
}

.u-fs-15.u-fs-tertiary {
  font-family: "Poppins", sans-serif;
}

.u-fs-12 {
  font-family: "Merriweather", serif;
  font-size: 13.68px;
  line-height: 17.1px;
  font-stretch: normal;
  font-style: normal;
}

@media (min-width: 480px) {
  .u-fs-12 {
    font-size: calc(0.3130434783vw + 12.1773913043px);
  }
}
@media (min-width: 1400px) {
  .u-fs-12 {
    font-size: calc(1.1592vw + 0.3312px);
  }
}
@media (min-width: 1600px) {
  .u-fs-12 {
    font-size: calc(1.2006vw - 0.3312px);
  }
}
@media (min-width: 2000px) {
  .u-fs-12 {
    font-size: calc(1.1828571429vw + 0.0236571429px);
  }
}
@media (min-width: 2560px) {
  .u-fs-12 {
    font-size: calc(1.1773125vw + 0.1656px);
  }
}
@media (min-width: 3840px) {
  .u-fs-12 {
    font-size: 45.3744px;
  }
}
@media (min-width: 480px) {
  .u-fs-12 {
    line-height: calc(0.3913043478vw + 15.2217391304px);
  }
}
@media (min-width: 1400px) {
  .u-fs-12 {
    line-height: calc(1.449vw + 0.414px);
  }
}
@media (min-width: 1600px) {
  .u-fs-12 {
    line-height: calc(1.50075vw - 0.414px);
  }
}
@media (min-width: 2000px) {
  .u-fs-12 {
    line-height: calc(1.4785714286vw + 0.0295714286px);
  }
}
@media (min-width: 2560px) {
  .u-fs-12 {
    line-height: calc(1.471640625vw + 0.207px);
  }
}
@media (min-width: 3840px) {
  .u-fs-12 {
    line-height: 56.718px;
  }
}
.u-fs-12.u-fs-primary, .c-article__wrapper p.u-fs-12, .c-article__wrapper ul li.u-fs-12, .c-text__text p.u-fs-12, .c-text__text ul li.u-fs-12, .c-article-question__main p.u-fs-12, .c-article-question__main ul li.u-fs-12 {
  font-family: "Merriweather", serif;
}

.u-fs-12.u-fs-secondary, .c-article__wrapper h2.u-fs-12 {
  font-family: "Montserrat", sans-serif;
}

.u-fs-12.u-fs-tertiary {
  font-family: "Poppins", sans-serif;
}

.u-fs-12--1 {
  font-size: 18.8784px;
  line-height: 23.598px;
}

@media (min-width: 480px) {
  .u-fs-12--1 {
    font-size: 18.8784px;
  }
}
@media (min-width: 1400px) {
  .u-fs-12--1 {
    font-size: 18.8784px;
  }
}
@media (min-width: 1600px) {
  .u-fs-12--1 {
    font-size: calc(1.2006vw - 0.3312px);
  }
}
@media (min-width: 2000px) {
  .u-fs-12--1 {
    font-size: calc(1.1828571429vw + 0.0236571429px);
  }
}
@media (min-width: 2560px) {
  .u-fs-12--1 {
    font-size: calc(1.1773125vw + 0.1656px);
  }
}
@media (min-width: 3840px) {
  .u-fs-12--1 {
    font-size: 45.3744px;
  }
}
@media (min-width: 480px) {
  .u-fs-12--1 {
    line-height: 23.598px;
  }
}
@media (min-width: 1400px) {
  .u-fs-12--1 {
    line-height: 23.598px;
  }
}
@media (min-width: 1600px) {
  .u-fs-12--1 {
    line-height: calc(1.50075vw - 0.414px);
  }
}
@media (min-width: 2000px) {
  .u-fs-12--1 {
    line-height: calc(1.4785714286vw + 0.0295714286px);
  }
}
@media (min-width: 2560px) {
  .u-fs-12--1 {
    line-height: calc(1.471640625vw + 0.207px);
  }
}
@media (min-width: 3840px) {
  .u-fs-12--1 {
    line-height: 56.718px;
  }
}
.u-fs-11, .c-article__wrapper p, .c-article__wrapper ul li, .c-text__text p, .c-text__text ul li, .c-article-question__main p, .c-article-question__main ul li {
  font-family: "Merriweather", serif;
  font-size: 12.54px;
  line-height: 22.572px;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: normal;
}

@media (min-width: 480px) {
  .u-fs-11, .c-article__wrapper p, .c-article__wrapper ul li, .c-text__text p, .c-text__text ul li, .c-article-question__main p, .c-article-question__main ul li {
    font-size: calc(0.2869565217vw + 11.1626086957px);
  }
}
@media (min-width: 1400px) {
  .u-fs-11, .c-article__wrapper p, .c-article__wrapper ul li, .c-text__text p, .c-text__text ul li, .c-article-question__main p, .c-article-question__main ul li {
    font-size: calc(1.0626vw + 0.3036px);
  }
}
@media (min-width: 1600px) {
  .u-fs-11, .c-article__wrapper p, .c-article__wrapper ul li, .c-text__text p, .c-text__text ul li, .c-article-question__main p, .c-article-question__main ul li {
    font-size: calc(1.10055vw - 0.3036px);
  }
}
@media (min-width: 2000px) {
  .u-fs-11, .c-article__wrapper p, .c-article__wrapper ul li, .c-text__text p, .c-text__text ul li, .c-article-question__main p, .c-article-question__main ul li {
    font-size: calc(1.0842857143vw + 0.0216857143px);
  }
}
@media (min-width: 2560px) {
  .u-fs-11, .c-article__wrapper p, .c-article__wrapper ul li, .c-text__text p, .c-text__text ul li, .c-article-question__main p, .c-article-question__main ul li {
    font-size: calc(1.079203125vw + 0.1518px);
  }
}
@media (min-width: 3840px) {
  .u-fs-11, .c-article__wrapper p, .c-article__wrapper ul li, .c-text__text p, .c-text__text ul li, .c-article-question__main p, .c-article-question__main ul li {
    font-size: 41.5932px;
  }
}
@media (min-width: 480px) {
  .u-fs-11, .c-article__wrapper p, .c-article__wrapper ul li, .c-text__text p, .c-text__text ul li, .c-article-question__main p, .c-article-question__main ul li {
    line-height: calc(0.5165217391vw + 20.0926956522px);
  }
}
@media (min-width: 1400px) {
  .u-fs-11, .c-article__wrapper p, .c-article__wrapper ul li, .c-text__text p, .c-text__text ul li, .c-article-question__main p, .c-article-question__main ul li {
    line-height: calc(1.91268vw + 0.54648px);
  }
}
@media (min-width: 1600px) {
  .u-fs-11, .c-article__wrapper p, .c-article__wrapper ul li, .c-text__text p, .c-text__text ul li, .c-article-question__main p, .c-article-question__main ul li {
    line-height: calc(1.98099vw - 0.54648px);
  }
}
@media (min-width: 2000px) {
  .u-fs-11, .c-article__wrapper p, .c-article__wrapper ul li, .c-text__text p, .c-text__text ul li, .c-article-question__main p, .c-article-question__main ul li {
    line-height: calc(1.9517142857vw + 0.0390342857px);
  }
}
@media (min-width: 2560px) {
  .u-fs-11, .c-article__wrapper p, .c-article__wrapper ul li, .c-text__text p, .c-text__text ul li, .c-article-question__main p, .c-article-question__main ul li {
    line-height: calc(1.942565625vw + 0.27324px);
  }
}
@media (min-width: 3840px) {
  .u-fs-11, .c-article__wrapper p, .c-article__wrapper ul li, .c-text__text p, .c-text__text ul li, .c-article-question__main p, .c-article-question__main ul li {
    line-height: 74.86776px;
  }
}
.u-fs-11.u-fs-primary, .c-article__wrapper p, .c-article__wrapper ul li, .c-text__text p, .c-text__text ul li, .c-article-question__main p, .c-article-question__main ul li {
  font-family: "Merriweather", serif;
}

.u-fs-11.u-fs-secondary, .c-article__wrapper p.u-fs-secondary, .c-article__wrapper ul li.u-fs-secondary, .c-text__text p.u-fs-secondary, .c-text__text ul li.u-fs-secondary, .c-article-question__main p.u-fs-secondary, .c-article-question__main ul li.u-fs-secondary, .c-article__wrapper h2.u-fs-11 {
  font-family: "Montserrat", sans-serif;
}

.u-fs-11.u-fs-tertiary, .c-article__wrapper p.u-fs-tertiary, .c-article__wrapper ul li.u-fs-tertiary, .c-text__text p.u-fs-tertiary, .c-text__text ul li.u-fs-tertiary, .c-article-question__main p.u-fs-tertiary, .c-article-question__main ul li.u-fs-tertiary {
  font-family: "Poppins", sans-serif;
}

.u-fs-10 {
  font-family: "Merriweather", serif;
  font-size: 13.68px;
  line-height: 21.888px;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: normal;
}

@media (min-width: 480px) {
  .u-fs-10 {
    font-size: calc(0.0130434783vw + 13.6173913043px);
  }
}
@media (min-width: 1400px) {
  .u-fs-10 {
    font-size: calc(0.966vw + 0.276px);
  }
}
@media (min-width: 1600px) {
  .u-fs-10 {
    font-size: calc(1.0005vw - 0.276px);
  }
}
@media (min-width: 2000px) {
  .u-fs-10 {
    font-size: calc(0.9857142857vw + 0.0197142857px);
  }
}
@media (min-width: 2560px) {
  .u-fs-10 {
    font-size: calc(0.98109375vw + 0.138px);
  }
}
@media (min-width: 3840px) {
  .u-fs-10 {
    font-size: 37.812px;
  }
}
@media (min-width: 480px) {
  .u-fs-10 {
    line-height: calc(0.0208695652vw + 21.787826087px);
  }
}
@media (min-width: 1400px) {
  .u-fs-10 {
    line-height: calc(1.5456vw + 0.4416px);
  }
}
@media (min-width: 1600px) {
  .u-fs-10 {
    line-height: calc(1.6008vw - 0.4416px);
  }
}
@media (min-width: 2000px) {
  .u-fs-10 {
    line-height: calc(1.5771428571vw + 0.0315428571px);
  }
}
@media (min-width: 2560px) {
  .u-fs-10 {
    line-height: calc(1.56975vw + 0.2208px);
  }
}
@media (min-width: 3840px) {
  .u-fs-10 {
    line-height: 60.4992px;
  }
}
.u-fs-10.u-fs-primary, .c-article__wrapper p.u-fs-10, .c-article__wrapper ul li.u-fs-10, .c-text__text p.u-fs-10, .c-text__text ul li.u-fs-10, .c-article-question__main p.u-fs-10, .c-article-question__main ul li.u-fs-10 {
  font-family: "Merriweather", serif;
}

.u-fs-10.u-fs-secondary, .c-article__wrapper h2.u-fs-10 {
  font-family: "Montserrat", sans-serif;
}

.u-fs-10.u-fs-tertiary {
  font-family: "Poppins", sans-serif;
}

.u-fs-8, .c-text__box-text em {
  font-family: "Merriweather", serif;
  font-size: 12px;
  line-height: 19.2px;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: normal;
}

@media (min-width: 480px) {
  .u-fs-8, .c-text__box-text em {
    font-size: calc(-0.1043478261vw + 12.5008695652px);
  }
}
@media (min-width: 1400px) {
  .u-fs-8, .c-text__box-text em {
    font-size: calc(0.7728vw + 0.2208px);
  }
}
@media (min-width: 1600px) {
  .u-fs-8, .c-text__box-text em {
    font-size: calc(0.8004vw - 0.2208px);
  }
}
@media (min-width: 2000px) {
  .u-fs-8, .c-text__box-text em {
    font-size: calc(0.7885714286vw + 0.0157714286px);
  }
}
@media (min-width: 2560px) {
  .u-fs-8, .c-text__box-text em {
    font-size: calc(0.784875vw + 0.1104px);
  }
}
@media (min-width: 3840px) {
  .u-fs-8, .c-text__box-text em {
    font-size: 30.2496px;
  }
}
@media (min-width: 480px) {
  .u-fs-8, .c-text__box-text em {
    line-height: calc(-0.1669565217vw + 20.0013913043px);
  }
}
@media (min-width: 1400px) {
  .u-fs-8, .c-text__box-text em {
    line-height: calc(1.23648vw + 0.35328px);
  }
}
@media (min-width: 1600px) {
  .u-fs-8, .c-text__box-text em {
    line-height: calc(1.28064vw - 0.35328px);
  }
}
@media (min-width: 2000px) {
  .u-fs-8, .c-text__box-text em {
    line-height: calc(1.2617142857vw + 0.0252342857px);
  }
}
@media (min-width: 2560px) {
  .u-fs-8, .c-text__box-text em {
    line-height: calc(1.2558vw + 0.17664px);
  }
}
@media (min-width: 3840px) {
  .u-fs-8, .c-text__box-text em {
    line-height: 48.39936px;
  }
}
.u-fs-8.u-fs-primary, .c-text__box-text em.u-fs-primary, .c-article__wrapper p.u-fs-8, .c-article__wrapper ul li.u-fs-8, .c-text__text p.u-fs-8, .c-text__text ul li.u-fs-8, .c-article-question__main p.u-fs-8, .c-article-question__main ul li.u-fs-8 {
  font-family: "Merriweather", serif;
}

.u-fs-8.u-fs-secondary, .c-text__box-text em.u-fs-secondary, .c-article__wrapper h2.u-fs-8 {
  font-family: "Montserrat", sans-serif;
}

.u-fs-8.u-fs-tertiary, .c-text__box-text em.u-fs-tertiary {
  font-family: "Poppins", sans-serif;
}

.u-uppercase {
  text-transform: uppercase;
}

.u-text-center {
  text-align: center;
}

.u-underline {
  text-decoration: underline;
}

.u-capitalize {
  text-transform: capitalize;
}

.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;
}

.is-light-green-blue {
  color: #55ff89;
}

.u-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.u-flex-row {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: row !important;
          flex-direction: row !important;
}

.u-flex-column {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: column !important;
          flex-direction: column !important;
}

.u-flex-row-reverse {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: reverse !important;
      -ms-flex-direction: row-reverse !important;
          flex-direction: row-reverse !important;
}

.u-flex-column-reverse {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: reverse !important;
      -ms-flex-direction: column-reverse !important;
          flex-direction: column-reverse !important;
}

.u-flex-wrap {
  -ms-flex-wrap: wrap !important;
      flex-wrap: wrap !important;
}

.u-flex-nowrap {
  -ms-flex-wrap: nowrap !important;
      flex-wrap: nowrap !important;
}

.u-flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
      flex-wrap: wrap-reverse !important;
}

.u-flex-fill {
  -webkit-box-flex: 1 !important;
      -ms-flex: 1 1 auto !important;
          flex: 1 1 auto !important;
}

.u-flex-grow-0 {
  -webkit-box-flex: 0 !important;
      -ms-flex-positive: 0 !important;
          flex-grow: 0 !important;
}

.u-flex-grow-1 {
  -webkit-box-flex: 1 !important;
      -ms-flex-positive: 1 !important;
          flex-grow: 1 !important;
}

.u-flex-shrink-0 {
  -ms-flex-negative: 0 !important;
      flex-shrink: 0 !important;
}

.u-flex-shrink-1 {
  -ms-flex-negative: 1 !important;
      flex-shrink: 1 !important;
}

.u-justify-content-start {
  -webkit-box-pack: start !important;
      -ms-flex-pack: start !important;
          justify-content: flex-start !important;
}

.u-justify-content-end {
  -webkit-box-pack: end !important;
      -ms-flex-pack: end !important;
          justify-content: flex-end !important;
}

.u-justify-content-center {
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
}

.u-justify-content-between {
  -webkit-box-pack: justify !important;
      -ms-flex-pack: justify !important;
          justify-content: space-between !important;
}

.u-justify-content-around {
  -ms-flex-pack: distribute !important;
      justify-content: space-around !important;
}

.u-align-items-start {
  -webkit-box-align: start !important;
      -ms-flex-align: start !important;
          align-items: flex-start !important;
}

.u-align-items-end {
  -webkit-box-align: end !important;
      -ms-flex-align: end !important;
          align-items: flex-end !important;
}

.u-align-items-center {
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
}

.u-align-items-baseline {
  -webkit-box-align: baseline !important;
      -ms-flex-align: baseline !important;
          align-items: baseline !important;
}

.u-align-items-stretch {
  -webkit-box-align: stretch !important;
      -ms-flex-align: stretch !important;
          align-items: stretch !important;
}

.u-align-content-start {
  -ms-flex-line-pack: start !important;
      align-content: flex-start !important;
}

.u-align-content-end {
  -ms-flex-line-pack: end !important;
      align-content: flex-end !important;
}

.u-align-content-center {
  -ms-flex-line-pack: center !important;
      align-content: center !important;
}

.u-align-content-between {
  -ms-flex-line-pack: justify !important;
      align-content: space-between !important;
}

.u-align-content-around {
  -ms-flex-line-pack: distribute !important;
      align-content: space-around !important;
}

.u-align-content-stretch {
  -ms-flex-line-pack: stretch !important;
      align-content: stretch !important;
}

.u-align-self-auto {
  -ms-flex-item-align: auto !important;
      align-self: auto !important;
}

.u-align-self-start {
  -ms-flex-item-align: start !important;
      align-self: flex-start !important;
  margin-right: auto;
}

.u-align-self-end {
  -ms-flex-item-align: end !important;
      align-self: flex-end !important;
  margin-left: auto;
}

.u-align-self-center {
  -ms-flex-item-align: center !important;
      align-self: center !important;
  margin: auto;
}

.u-align-self-baseline {
  -ms-flex-item-align: baseline !important;
      align-self: baseline !important;
}

.u-align-self-stretch {
  -ms-flex-item-align: stretch !important;
      align-self: stretch !important;
}

@media (max-width: 480px) {
  .u-flex-sm-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .u-flex-sm-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .u-flex-sm-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .u-flex-sm-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .u-flex-sm-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
  .u-flex-sm-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }
  .u-flex-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }
  .u-flex-sm-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }
  .u-flex-sm-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }
  .u-flex-sm-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }
  .u-flex-sm-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }
  .u-flex-sm-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }
  .u-justify-content-sm-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .u-justify-content-sm-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .u-justify-content-sm-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .u-justify-content-sm-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .u-justify-content-sm-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }
  .u-align-items-sm-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .u-align-items-sm-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .u-align-items-sm-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .u-align-items-sm-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .u-align-items-sm-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .u-align-content-sm-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }
  .u-align-content-sm-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }
  .u-align-content-sm-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }
  .u-align-content-sm-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }
  .u-align-content-sm-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }
  .u-align-content-sm-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }
  .u-align-self-sm-auto {
    -ms-flex-item-align: auto !important;
        align-self: auto !important;
  }
  .u-align-self-sm-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
    margin-right: auto;
  }
  .u-align-self-sm-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
    margin-left: auto;
  }
  .u-align-self-sm-center {
    -ms-flex-item-align: center !important;
        align-self: center !important;
    margin: auto;
  }
  .u-align-self-sm-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }
  .u-align-self-sm-stretch {
    -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
  }
}
@media (max-width: 800px) {
  .u-flex-md-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .u-flex-md-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .u-flex-md-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .u-flex-md-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .u-flex-md-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
  .u-flex-md-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }
  .u-flex-md-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }
  .u-flex-md-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }
  .u-flex-md-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }
  .u-flex-md-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }
  .u-flex-md-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }
  .u-flex-md-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }
  .u-justify-content-md-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .u-justify-content-md-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .u-justify-content-md-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .u-justify-content-md-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .u-justify-content-md-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }
  .u-align-items-md-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .u-align-items-md-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .u-align-items-md-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .u-align-items-md-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .u-align-items-md-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .u-align-content-md-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }
  .u-align-content-md-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }
  .u-align-content-md-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }
  .u-align-content-md-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }
  .u-align-content-md-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }
  .u-align-content-md-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }
  .u-align-self-md-auto {
    -ms-flex-item-align: auto !important;
        align-self: auto !important;
  }
  .u-align-self-md-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
    margin-right: auto;
  }
  .u-align-self-md-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
    margin-left: auto;
  }
  .u-align-self-md-center {
    -ms-flex-item-align: center !important;
        align-self: center !important;
    margin: auto;
  }
  .u-align-self-md-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }
  .u-align-self-md-stretch {
    -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
  }
}
@media (max-width: 1140px) {
  .u-flex-lg-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .u-flex-lg-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .u-flex-lg-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .u-flex-lg-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .u-flex-lg-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
  .u-flex-lg-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }
  .u-flex-lg-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }
  .u-flex-lg-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }
  .u-flex-lg-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }
  .u-flex-lg-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }
  .u-flex-lg-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }
  .u-flex-lg-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }
  .u-justify-content-lg-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .u-justify-content-lg-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .u-justify-content-lg-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .u-justify-content-lg-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .u-justify-content-lg-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }
  .u-align-items-lg-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .u-align-items-lg-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .u-align-items-lg-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .u-align-items-lg-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .u-align-items-lg-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .u-align-content-lg-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }
  .u-align-content-lg-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }
  .u-align-content-lg-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }
  .u-align-content-lg-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }
  .u-align-content-lg-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }
  .u-align-content-lg-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }
  .u-align-self-lg-auto {
    -ms-flex-item-align: auto !important;
        align-self: auto !important;
  }
  .u-align-self-lg-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
    margin-right: auto;
  }
  .u-align-self-lg-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
    margin-left: auto;
  }
  .u-align-self-lg-center {
    -ms-flex-item-align: center !important;
        align-self: center !important;
    margin: auto;
  }
  .u-align-self-lg-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }
  .u-align-self-lg-stretch {
    -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
  }
}
@media (max-width: 1400px) {
  .u-flex-xl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .u-flex-xl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .u-flex-xl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .u-flex-xl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .u-flex-xl-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
  .u-flex-xl-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }
  .u-flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }
  .u-flex-xl-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }
  .u-flex-xl-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }
  .u-flex-xl-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }
  .u-flex-xl-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }
  .u-flex-xl-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }
  .u-justify-content-xl-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .u-justify-content-xl-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .u-justify-content-xl-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .u-justify-content-xl-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .u-justify-content-xl-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }
  .u-align-items-xl-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .u-align-items-xl-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .u-align-items-xl-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .u-align-items-xl-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .u-align-items-xl-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .u-align-content-xl-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }
  .u-align-content-xl-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }
  .u-align-content-xl-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }
  .u-align-content-xl-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }
  .u-align-content-xl-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }
  .u-align-content-xl-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }
  .u-align-self-xl-auto {
    -ms-flex-item-align: auto !important;
        align-self: auto !important;
  }
  .u-align-self-xl-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
    margin-right: auto;
  }
  .u-align-self-xl-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
    margin-left: auto;
  }
  .u-align-self-xl-center {
    -ms-flex-item-align: center !important;
        align-self: center !important;
    margin: auto;
  }
  .u-align-self-xl-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }
  .u-align-self-xl-stretch {
    -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
  }
}
@media (max-width: 1600px) {
  .u-flex-xxl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .u-flex-xxl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .u-flex-xxl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .u-flex-xxl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .u-flex-xxl-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
  .u-flex-xxl-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }
  .u-flex-xxl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }
  .u-flex-xxl-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }
  .u-flex-xxl-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }
  .u-flex-xxl-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }
  .u-flex-xxl-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }
  .u-flex-xxl-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }
  .u-justify-content-xxl-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .u-justify-content-xxl-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .u-justify-content-xxl-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .u-justify-content-xxl-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .u-justify-content-xxl-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }
  .u-align-items-xxl-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .u-align-items-xxl-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .u-align-items-xxl-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .u-align-items-xxl-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .u-align-items-xxl-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .u-align-content-xxl-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }
  .u-align-content-xxl-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }
  .u-align-content-xxl-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }
  .u-align-content-xxl-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }
  .u-align-content-xxl-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }
  .u-align-content-xxl-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }
  .u-align-self-xxl-auto {
    -ms-flex-item-align: auto !important;
        align-self: auto !important;
  }
  .u-align-self-xxl-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
    margin-right: auto;
  }
  .u-align-self-xxl-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
    margin-left: auto;
  }
  .u-align-self-xxl-center {
    -ms-flex-item-align: center !important;
        align-self: center !important;
    margin: auto;
  }
  .u-align-self-xxl-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }
  .u-align-self-xxl-stretch {
    -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
  }
}
@media (max-width: 2000px) {
  .u-flex-xxxl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .u-flex-xxxl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .u-flex-xxxl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .u-flex-xxxl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .u-flex-xxxl-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
  .u-flex-xxxl-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }
  .u-flex-xxxl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }
  .u-flex-xxxl-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }
  .u-flex-xxxl-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }
  .u-flex-xxxl-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }
  .u-flex-xxxl-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }
  .u-flex-xxxl-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }
  .u-justify-content-xxxl-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .u-justify-content-xxxl-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .u-justify-content-xxxl-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .u-justify-content-xxxl-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .u-justify-content-xxxl-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }
  .u-align-items-xxxl-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .u-align-items-xxxl-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .u-align-items-xxxl-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .u-align-items-xxxl-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .u-align-items-xxxl-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .u-align-content-xxxl-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }
  .u-align-content-xxxl-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }
  .u-align-content-xxxl-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }
  .u-align-content-xxxl-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }
  .u-align-content-xxxl-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }
  .u-align-content-xxxl-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }
  .u-align-self-xxxl-auto {
    -ms-flex-item-align: auto !important;
        align-self: auto !important;
  }
  .u-align-self-xxxl-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
    margin-right: auto;
  }
  .u-align-self-xxxl-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
    margin-left: auto;
  }
  .u-align-self-xxxl-center {
    -ms-flex-item-align: center !important;
        align-self: center !important;
    margin: auto;
  }
  .u-align-self-xxxl-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }
  .u-align-self-xxxl-stretch {
    -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
  }
}
@media (max-width: 2560px) {
  .u-flex-2k-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .u-flex-2k-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .u-flex-2k-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .u-flex-2k-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .u-flex-2k-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
  .u-flex-2k-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }
  .u-flex-2k-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }
  .u-flex-2k-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }
  .u-flex-2k-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }
  .u-flex-2k-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }
  .u-flex-2k-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }
  .u-flex-2k-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }
  .u-justify-content-2k-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .u-justify-content-2k-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .u-justify-content-2k-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .u-justify-content-2k-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .u-justify-content-2k-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }
  .u-align-items-2k-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .u-align-items-2k-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .u-align-items-2k-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .u-align-items-2k-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .u-align-items-2k-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .u-align-content-2k-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }
  .u-align-content-2k-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }
  .u-align-content-2k-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }
  .u-align-content-2k-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }
  .u-align-content-2k-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }
  .u-align-content-2k-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }
  .u-align-self-2k-auto {
    -ms-flex-item-align: auto !important;
        align-self: auto !important;
  }
  .u-align-self-2k-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
    margin-right: auto;
  }
  .u-align-self-2k-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
    margin-left: auto;
  }
  .u-align-self-2k-center {
    -ms-flex-item-align: center !important;
        align-self: center !important;
    margin: auto;
  }
  .u-align-self-2k-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }
  .u-align-self-2k-stretch {
    -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
  }
}
@media (max-width: 3840px) {
  .u-flex-4k-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .u-flex-4k-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .u-flex-4k-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .u-flex-4k-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .u-flex-4k-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
  .u-flex-4k-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }
  .u-flex-4k-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }
  .u-flex-4k-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }
  .u-flex-4k-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }
  .u-flex-4k-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }
  .u-flex-4k-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }
  .u-flex-4k-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }
  .u-justify-content-4k-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .u-justify-content-4k-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .u-justify-content-4k-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .u-justify-content-4k-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .u-justify-content-4k-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }
  .u-align-items-4k-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .u-align-items-4k-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .u-align-items-4k-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .u-align-items-4k-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .u-align-items-4k-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .u-align-content-4k-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }
  .u-align-content-4k-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }
  .u-align-content-4k-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }
  .u-align-content-4k-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }
  .u-align-content-4k-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }
  .u-align-content-4k-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }
  .u-align-self-4k-auto {
    -ms-flex-item-align: auto !important;
        align-self: auto !important;
  }
  .u-align-self-4k-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
    margin-right: auto;
  }
  .u-align-self-4k-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
    margin-left: auto;
  }
  .u-align-self-4k-center {
    -ms-flex-item-align: center !important;
        align-self: center !important;
    margin: auto;
  }
  .u-align-self-4k-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }
  .u-align-self-4k-stretch {
    -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
  }
}
.u-no-padding {
  padding: 0;
}

.is-desktop {
  display: block;
}

@media (max-width: 800px) {
  .is-desktop {
    display: none;
  }
}
.is-mobile {
  display: none;
}

@media (max-width: 800px) {
  .is-mobile {
    display: block;
  }
}
/**
 * Vendor
 */
@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;
}

:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  */
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms opacity;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
          transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
          transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 50%;
  background: #000;
  opacity: 0.2;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
          transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8px;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top, 200ms -webkit-transform;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left, 200ms -webkit-transform;
}

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right, 200ms -webkit-transform;
}

/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
          transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progressbar, .swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-container-vertical > .swiper-pagination-progressbar, .swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-white {
  --swiper-pagination-color: #ffffff;
}

.swiper-pagination-black {
  --swiper-pagination-color: #000000;
}

.swiper-pagination-lock {
  display: none;
}
/*# sourceMappingURL=style.css.map */
