/* shared */
@-webkit-keyframes bounce {
  50% {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%); }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0); } }
@keyframes bounce {
  50% {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%); }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0); } }

@-webkit-keyframes slideRight {
  0% {
    right: 12%; }
  100% {
    right: 8%; } }

@keyframes slideRight {
  0% {
    right: 12%; }
  100% {
    right: 8%; } }

@-webkit-keyframes accordionIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.9) rotateX(-60deg);
            transform: scale(0.9) rotateX(-60deg);
    -webkit-transform-origin: 50% 0;
            transform-origin: 50% 0; }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1); } }

@keyframes accordionIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.9) rotateX(-60deg);
            transform: scale(0.9) rotateX(-60deg);
    -webkit-transform-origin: 50% 0;
            transform-origin: 50% 0; }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1); } }

@-webkit-keyframes accordionOut {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1); }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.9) rotateX(-60deg);
            transform: scale(0.9) rotateX(-60deg); } }

@keyframes accordionOut {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1); }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.9) rotateX(-60deg);
            transform: scale(0.9) rotateX(-60deg); } }

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0; }

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block; }

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */ }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent; }

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */ }

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

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

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

/**
 * 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; }

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none; }

/* Forms
   ========================================================================== */
/**
 * 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 */ }

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible; }

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

/**
 * 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; }

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em; }

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */ }

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

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto; }

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[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 */ }

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block; }

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item; }

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none; }

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none; }

/* ==========================================================================
   Webfonts
   ========================================================================== */
@font-face {
  font-family: "InterstatePl";
  src: url("../fonts/InterstatePl-Regular.eot");
  src: url("../fonts/InterstatePl-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/InterstatePl-Regular.woff2") format("woff2"), url("../fonts/InterstatePl-Regular.woff") format("woff"), url("../fonts/InterstatePl-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal; }

@font-face {
  font-family: "InterstatePl";
  src: url("../fonts/InterstatePl-Bold.eot");
  src: url("../fonts/InterstatePl-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/InterstatePl-Bold.woff2") format("woff2"), url("../fonts/InterstatePl-Bold.woff") format("woff"), url("../fonts/InterstatePl-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal; }

@font-face {
  font-family: "MinionPro";
  src: url("../fonts/MinionPro-Regular.eot");
  src: url("../fonts/MinionPro-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/MinionPro-Regular.woff2") format("woff2"), url("../fonts/MinionPro-Regular.woff") format("woff"), url("../fonts/MinionPro-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal; }

/* ==========================================================================
   Variables
   ========================================================================== */
/* Maps
========================================================================== */
/*
    The names and values of variables in maps are just suggestions/random values.
    Feel free to add new values, modify both the values and/or keys of the items depending on the project and your prefferences.
    For each map, a functions is defined (in base/_functions.scss).
    By default, function names are single a singular form of the map's variable name.
    Eg. To use the "main" color, a getter function "color" is defined.
    To use it, simply call: color(main).
*/
/* z-index */
/* gradients*/
/* borders */
/* ==========================================================================
   Media config
   ========================================================================== */
/* ==========================================================================
   Mixins
   ========================================================================== */
/* 1. Font smoothing
========================================================================== */
/* Better font-rendering on OSX
   https://maximilianhoffmann.com/posts/better-font-rendering-on-osx
*/
/* 2. Button reset
========================================================================== */
/* 3. Others mixins
========================================================================== */
/* 4. Headline mixins
========================================================================== */
/* 5. Body mixins
========================================================================== */
/* 6. Subtitle mixins
========================================================================== */
/* 7. Button mixins
========================================================================== */
*,
*::after,
*::before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

html,
body {
  height: 100%;
  min-height: 100%; }

body {
  width: 100%;
  background-color: #030303;
  overflow-x: hidden; }

main {
  display: block;
  width: 100%; }

figure {
  margin: 0; }

.no-wrap {
  white-space: nowrap; }

/* ==========================================================================
   Typography
   ========================================================================== */
/* Global texts
========================================================================== */
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 62.5%;
  /* 1rem = 10px */ }

body {
  font-family: "InterstatePl", "Arial", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #ffffff; }

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0; }

h1:not([class]) + h1:not([class]),
h2:not([class]) + h1:not([class]),
h3:not([class]) + h1:not([class]),
h4:not([class]) + h1:not([class]),
h5:not([class]) + h1:not([class]),
h6:not([class]) + h1:not([class]),
p:not([class]) + h1:not([class]),
ul:not([class]) + h1:not([class]),
ol:not([class]) + h1:not([class]), h1:not([class]) +
h2:not([class]),
h2:not([class]) +
h2:not([class]),
h3:not([class]) +
h2:not([class]),
h4:not([class]) +
h2:not([class]),
h5:not([class]) +
h2:not([class]),
h6:not([class]) +
h2:not([class]),
p:not([class]) +
h2:not([class]),
ul:not([class]) +
h2:not([class]),
ol:not([class]) +
h2:not([class]), h1:not([class]) +
h3:not([class]),
h2:not([class]) +
h3:not([class]),
h3:not([class]) +
h3:not([class]),
h4:not([class]) +
h3:not([class]),
h5:not([class]) +
h3:not([class]),
h6:not([class]) +
h3:not([class]),
p:not([class]) +
h3:not([class]),
ul:not([class]) +
h3:not([class]),
ol:not([class]) +
h3:not([class]), h1:not([class]) +
h4:not([class]),
h2:not([class]) +
h4:not([class]),
h3:not([class]) +
h4:not([class]),
h4:not([class]) +
h4:not([class]),
h5:not([class]) +
h4:not([class]),
h6:not([class]) +
h4:not([class]),
p:not([class]) +
h4:not([class]),
ul:not([class]) +
h4:not([class]),
ol:not([class]) +
h4:not([class]), h1:not([class]) +
h5:not([class]),
h2:not([class]) +
h5:not([class]),
h3:not([class]) +
h5:not([class]),
h4:not([class]) +
h5:not([class]),
h5:not([class]) +
h5:not([class]),
h6:not([class]) +
h5:not([class]),
p:not([class]) +
h5:not([class]),
ul:not([class]) +
h5:not([class]),
ol:not([class]) +
h5:not([class]), h1:not([class]) +
h6:not([class]),
h2:not([class]) +
h6:not([class]),
h3:not([class]) +
h6:not([class]),
h4:not([class]) +
h6:not([class]),
h5:not([class]) +
h6:not([class]),
h6:not([class]) +
h6:not([class]),
p:not([class]) +
h6:not([class]),
ul:not([class]) +
h6:not([class]),
ol:not([class]) +
h6:not([class]), h1:not([class]) +
p:not([class]),
h2:not([class]) +
p:not([class]),
h3:not([class]) +
p:not([class]),
h4:not([class]) +
p:not([class]),
h5:not([class]) +
p:not([class]),
h6:not([class]) +
p:not([class]),
p:not([class]) +
p:not([class]),
ul:not([class]) +
p:not([class]),
ol:not([class]) +
p:not([class]), h1:not([class]) +
ul:not([class]),
h2:not([class]) +
ul:not([class]),
h3:not([class]) +
ul:not([class]),
h4:not([class]) +
ul:not([class]),
h5:not([class]) +
ul:not([class]),
h6:not([class]) +
ul:not([class]),
p:not([class]) +
ul:not([class]),
ul:not([class]) +
ul:not([class]),
ol:not([class]) +
ul:not([class]), h1:not([class]) +
ol:not([class]),
h2:not([class]) +
ol:not([class]),
h3:not([class]) +
ol:not([class]),
h4:not([class]) +
ol:not([class]),
h5:not([class]) +
ol:not([class]),
h6:not([class]) +
ol:not([class]),
p:not([class]) +
ol:not([class]),
ul:not([class]) +
ol:not([class]),
ol:not([class]) +
ol:not([class]) {
  margin-top: 48px; }

a {
  -webkit-transition-timing-function: linear;
       -o-transition-timing-function: linear;
          transition-timing-function: linear;
  -webkit-transition-duration: 200ms;
       -o-transition-duration: 200ms;
          transition-duration: 200ms;
  cursor: pointer;
  text-decoration: none;
  color: currentColor; }
  a:hover {
    text-decoration: none; }
  a:not([class]) {
    color: #ffffff; }
    a:not([class]):hover {
      color: #69b9ef; }

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
  padding-left: 10px; }
  ul:not([class]),
  ol:not([class]) {
    padding-left: 10px; }
    ul:not([class]) li + li,
    ol:not([class]) li + li {
      margin-top: 5px; }

ul:not([class]) {
  list-style-type: disc; }

ol:not([class]) {
  list-style-type: decimal; }

.accent-color {
  color: #d90011; }

.accent-color-alt {
  color: #69b9ef; }

.validation-message-danger,
.message {
  color: #d90011; }

.l-inner {
  width: 100%;
  margin: 0 auto;
  padding-right: 16px;
  padding-left: 16px; }
  @media (min-width: 768px) {
    .l-inner {
      padding-right: 30px;
      padding-left: 30px; } }
  @media (min-width: 1200px) {
    .l-inner {
      max-width: 1366px;
      padding-right: 40px;
      padding-left: 40px; } }

.l-section {
  position: relative; }
  .l-section--fullHight {
    min-height: 95vh; }
    @media (min-width: 768px) {
      .l-section--fullHight {
        min-height: auto; } }

/* position */
.is--lockedPosition {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden; }

.is--sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 500; }

.main-padding-top {
  padding-top: 110px; }
  @media (min-width: 768px) {
    .main-padding-top {
      padding-top: 220px; } }
  @media (min-width: 1200px) {
    .main-padding-top {
      padding-top: 165px; } }

/* autoprefixer grid: autoplace */
.c-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr auto;
  grid-template-columns: 1fr auto;
  -ms-grid-rows: 1fr auto 1fr auto 1fr auto 1fr;
  grid-template-rows: 1fr auto 1fr auto 1fr auto 1fr;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
      grid-template-areas: "a1 a2" "a3 a4" "b1 b2" "b3 b4" "c1 c2" "c3 c4" "d1 d2";
  margin: 70px 0 0; }
  @media (min-width: 360px) {
    .c-grid {
      margin: 80px 30px 0; } }
  @media (min-width: 640px) {
    .c-grid {
      margin: 80px 140px 0; } }
  @media (min-width: 768px) {
    .c-grid {
      margin: 80px 100px 0; } }
  @media (min-width: 1024px) {
    .c-grid {
      margin: 80px 220px 0; } }
  @media (min-width: 1200px) {
    .c-grid {
      -ms-grid-columns: (1fr)[7];
      grid-template-columns: repeat(7, 1fr);
      -ms-grid-rows: minmax(100px, 1fr) auto;
      grid-template-rows: minmax(100px, 1fr) auto;
          grid-template-areas: "a1 a3 b1 b3 c1 c3 d1" "a2 a4 b2 b4 c2 c4 d2"; } }
  .c-grid__item--a1 {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    grid-area: a1; }
  .c-grid__item--a2 {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
    grid-area: a2; }
  .c-grid__item--a3 {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    grid-area: a3; }
  .c-grid__item--a4 {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
    grid-area: a4; }
  .c-grid__item--b1 {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    grid-area: b1; }
  .c-grid__item--b2 {
    -ms-grid-row: 3;
    -ms-grid-column: 2;
    grid-area: b2; }
  .c-grid__item--b3 {
    -ms-grid-row: 4;
    -ms-grid-column: 1;
    grid-area: b3; }
  .c-grid__item--b4 {
    -ms-grid-row: 4;
    -ms-grid-column: 2;
    grid-area: b4; }
  .c-grid__item--c1 {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
    grid-area: c1; }
  .c-grid__item--c2 {
    -ms-grid-row: 5;
    -ms-grid-column: 2;
    grid-area: c2; }
  .c-grid__item--c3 {
    -ms-grid-row: 6;
    -ms-grid-column: 1;
    grid-area: c3; }
  .c-grid__item--c4 {
    -ms-grid-row: 6;
    -ms-grid-column: 2;
    grid-area: c4; }
  .c-grid__item--d1 {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
    grid-area: d1; }
  .c-grid__item--d2 {
    -ms-grid-row: 7;
    -ms-grid-column: 2;
    grid-area: d2; }
  @media (min-width: 1200px) {
    .c-grid__item--a1 {
    -ms-grid-row: 1;
    -ms-grid-column: 1; }
    .c-grid__item--a2 {
    -ms-grid-row: 2;
    -ms-grid-column: 1; }
    .c-grid__item--a3 {
    -ms-grid-row: 1;
    -ms-grid-column: 2; }
    .c-grid__item--a4 {
    -ms-grid-row: 2;
    -ms-grid-column: 2; }
    .c-grid__item--b1 {
    -ms-grid-row: 1;
    -ms-grid-column: 3; }
    .c-grid__item--b2 {
    -ms-grid-row: 2;
    -ms-grid-column: 3; }
    .c-grid__item--b3 {
    -ms-grid-row: 1;
    -ms-grid-column: 4; }
    .c-grid__item--b4 {
    -ms-grid-row: 2;
    -ms-grid-column: 4; }
    .c-grid__item--c1 {
    -ms-grid-row: 1;
    -ms-grid-column: 5; }
    .c-grid__item--c2 {
    -ms-grid-row: 2;
    -ms-grid-column: 5; }
    .c-grid__item--c3 {
    -ms-grid-row: 1;
    -ms-grid-column: 6; }
    .c-grid__item--c4 {
    -ms-grid-row: 2;
    -ms-grid-column: 6; }
    .c-grid__item--d1 {
    -ms-grid-row: 1;
    -ms-grid-column: 7; }
    .c-grid__item--d2 {
    -ms-grid-row: 2;
    -ms-grid-column: 7; } }
  .c-grid__item--badge-wrap {
    -webkit-align-self: end;
        -ms-flex-item-align: end;
                -ms-grid-row-align: end;
            align-self: end; }
    @media (min-width: 1200px) {
      .c-grid__item--badge-wrap {
        -webkit-align-self: start;
            -ms-flex-item-align: start;
                    -ms-grid-row-align: start;
                align-self: start;
        -ms-grid-column-align: end;
            justify-self: end;
        margin-right: 15px; } }
    @media (min-width: 1600px) {
      .c-grid__item--badge-wrap {
        margin-right: 30px; } }
  .c-grid__item--img-wrap img {
    max-width: 7rem;
    height: auto; }
    @media (min-width: 768px) {
      .c-grid__item--img-wrap img {
        max-width: 14rem; } }
    @media (min-width: 1200px) {
      .c-grid__item--img-wrap img {
        max-width: 16rem;
        width: 100%; } }
  .c-grid__item--decor-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center; }
    .c-grid__item--decor-wrap img {
      max-height: 6rem;
      width: auto; }
      @media (min-width: 768px) {
        .c-grid__item--decor-wrap img {
          max-height: 8rem; } }
      @media (min-width: 1200px) {
        .c-grid__item--decor-wrap img {
          -webkit-transform: rotate(-90deg);
              -ms-transform: rotate(-90deg);
                  transform: rotate(-90deg);
          max-height: unset;
          min-height: 10rem;
          width: auto; } }
  .c-grid__item--text-wrap {
    -webkit-align-self: center;
        -ms-flex-item-align: center;
                -ms-grid-row-align: center;
            align-self: center; }
    @media (min-width: 1200px) {
      .c-grid__item--text-wrap {
        -webkit-align-self: start;
            -ms-flex-item-align: start;
                    -ms-grid-row-align: start;
                align-self: start; } }
    .c-grid__item--text-wrap p {
      font-size: 15px;
      font-weight: 400;
      line-height: 1.33333;
      letter-spacing: -0.02em;
      padding-top: 1rem; }
      @media (min-width: 768px) {
        .c-grid__item--text-wrap p {
          font-size: 24px;
          line-height: 1.08333; } }
      @media (min-width: 1200px) {
        .c-grid__item--text-wrap p {
          font-size: 21px;
          line-height: 1.14286; } }
      @media (min-width: 768px) {
        .c-grid__item--text-wrap p {
          width: 90%; } }
      @media (min-width: 1200px) {
        .c-grid__item--text-wrap p {
          position: absolute;
          width: 14%;
          padding: 0 20px 0 0; } }
      @media (min-width: 1600px) {
        .c-grid__item--text-wrap p {
          margin-left: -20px;
          width: 11%; } }
      @media (min-width: 2560px) {
        .c-grid__item--text-wrap p {
          margin-left: -20px;
          width: 8%; } }

/* components */
.c-list {
  padding: 0 16px 0 16px; }
  @media (min-width: 640px) {
    .c-list {
      padding: 0 64px; } }
  .c-list--topbar {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 4px 0 4px; }
    .c-list--topbar .c-list__item:not(:last-of-type) {
      margin-right: 4px; }
      @media (min-width: 360px) {
        .c-list--topbar .c-list__item:not(:last-of-type) {
          margin-right: 8px; } }
      @media (min-width: 768px) {
        .c-list--topbar .c-list__item:not(:last-of-type) {
          margin-right: 24px; } }
    .c-list--topbar .c-list__item:last-of-type {
      margin-left: auto; }
    .c-list--topbar .c-list__link {
      font-size: 13px;
      font-weight: 400;
      line-height: 2.46154;
      letter-spacing: -0.04em; }
      @media (min-width: 1200px) {
        .c-list--topbar .c-list__link:hover {
          color: #69b9ef; } }
  .c-list--main-nav .c-list__item {
    -webkit-transition-timing-function: linear;
         -o-transition-timing-function: linear;
            transition-timing-function: linear;
    -webkit-transition-duration: 200ms;
         -o-transition-duration: 200ms;
            transition-duration: 200ms;
    margin: 24px 0; }
    .c-list--main-nav .c-list__item .c-list__link {
      display: inline-block;
      padding: 0 16px; }
      @media (min-width: 640px) {
        .c-list--main-nav .c-list__item .c-list__link {
          padding: 0 12px; } }
    .c-list--main-nav .c-list__item:focus .c-list__link, .c-list--main-nav .c-list__item:active .c-list__link {
      border-radius: 10px;
      background-color: transparent;
      -webkit-box-shadow: inset 0px 0px 1px 2px #69b9ef;
              box-shadow: inset 0px 0px 1px 2px #69b9ef; }
    @media (min-width: 360px) and (max-width: 767px) and (orientation: landscape) {
      .c-list--main-nav .c-list__item {
        margin: 0; } }
  .c-list--main-nav .c-list__link {
    font-size: 22px;
    line-height: 1.59091; }
    @media (min-width: 360px) {
      .c-list--main-nav .c-list__link {
        font-size: 30px;
        line-height: 1.73333; } }
    @media (min-width: 1200px) {
      .c-list--main-nav .c-list__link {
        font-size: 16px;
        line-height: 2; } }
    .c-list--main-nav .c-list__link--accent {
      color: #69b9ef; }
  .c-list--desktop {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    .c-list--desktop .c-list__item {
      -webkit-transition-timing-function: linear;
           -o-transition-timing-function: linear;
              transition-timing-function: linear;
      -webkit-transition-duration: 200ms;
           -o-transition-duration: 200ms;
              transition-duration: 200ms;
      margin: 20px 0; }
      .c-list--desktop .c-list__item:hover {
        border-radius: 10px;
        background-color: transparent;
        -webkit-box-shadow: inset 0px 0px 1px 2px #69b9ef;
                box-shadow: inset 0px 0px 1px 2px #69b9ef; }
    .c-list--desktop .c-list__link {
      padding: 10px; }
  .c-list--footer-top {
    margin-bottom: 20px; }
    @media (min-width: 1200px) {
      .c-list--footer-top {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: start;
        -webkit-justify-content: flex-start;
            -ms-flex-pack: start;
                justify-content: flex-start;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
        margin-bottom: 0; } }
    .c-list--footer-top .c-list__item {
      font-size: 14px;
      font-weight: 400;
      padding: 12px 0;
      border-bottom: 1px solid #ffffff; }
      @media (min-width: 768px) {
        .c-list--footer-top .c-list__item {
          font-size: 16px; } }
      @media (min-width: 1200px) {
        .c-list--footer-top .c-list__item {
          padding: 20px 0;
          border-bottom: none; } }
      @media (min-width: 1200px) {
        .c-list--footer-top .c-list__item:last-child::after {
          content: ""; } }
      .c-list--footer-top .c-list__item span {
        font-size: 1rem;
        float: right; }
        @media (min-width: 1200px) {
          .c-list--footer-top .c-list__item span {
            display: none; } }
      @media (min-width: 1200px) {
        .c-list--footer-top .c-list__item::after {
          content: "|";
          font-size: 1.5rem;
          margin: 0 6px; } }
      @media (min-width: 1600px) {
        .c-list--footer-top .c-list__item::after {
          margin: 0 12px; } }
    .c-list--footer-top .c-list__link {
      cursor: pointer;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center; }
      @media (min-width: 1200px) {
        .c-list--footer-top .c-list__link {
          display: inline; } }
  .c-list--footer-bottom {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0; }
    @media (min-width: 768px) {
      .c-list--footer-bottom {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
            -ms-flex-direction: row;
                flex-direction: row; } }
    .c-list--footer-bottom .c-list__item {
      font-size: 1.1rem;
      line-height: 1.5;
      text-decoration: underline; }
      @media (min-width: 768px) {
        .c-list--footer-bottom .c-list__item {
          font-size: 1.4rem; } }
      .c-list--footer-bottom .c-list__item:hover {
        text-decoration: none; }
      @media (min-width: 768px) {
        .c-list--footer-bottom .c-list__item:last-child::after {
          content: ""; } }
      @media (min-width: 768px) {
        .c-list--footer-bottom .c-list__item::after {
          content: "|";
          font-size: 1.5rem;
          margin: 0 8px; } }
      @media (min-width: 1200px) {
        .c-list--footer-bottom .c-list__item::after {
          margin: 0 16px; } }
    .c-list--footer-bottom .c-list__link {
      cursor: pointer; }
  .c-list--info .c-list__item {
    position: relative;
    padding: 0 0 10px 20px;
    font-size: 14px; }
    @media (min-width: 768px) {
      .c-list--info .c-list__item {
        font-size: 16px; } }
    @media (min-width: 1200px) {
      .c-list--info .c-list__item {
        font-size: 22px; } }
    .c-list--info .c-list__item::before {
      display: inline-block;
      position: absolute;
      top: 0.5rem;
      left: 0;
      content: "";
      width: 0.6rem;
      height: 0.6rem;
      border-radius: 50%;
      background-color: #69b9ef; }
      @media (min-width: 1200px) {
        .c-list--info .c-list__item::before {
          top: 0.8rem; } }
  .c-list--steps-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column; }
    .c-list--steps-list .c-list__item {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      font-size: 14px; }
      @media (min-width: 768px) {
        .c-list--steps-list .c-list__item {
          font-size: 24px; } }
      @media (min-width: 1200px) {
        .c-list--steps-list .c-list__item {
          font-size: 22px; } }
      .c-list--steps-list .c-list__item:not(:first-child) {
        margin-top: 30px; }
    .c-list--steps-list .c-list__con {
      margin-right: 20px; }
    @media (min-width: 768px) {
      .c-list--steps-list .c-list__text {
        width: 70%; } }
    @media (min-width: 1200px) {
      .c-list--steps-list .c-list__text {
        width: 100%; } }
  .c-list--table {
    /* autoprefixer grid: autoplace */
    margin-top: 16px; }
    @media (min-width: 768px) {
      .c-list--table {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: (1fr)[10];
        grid-template-columns: repeat(10, 1fr);
        -ms-grid-rows: (auto)[2];
        grid-template-rows: repeat(2, auto); }
      .c-list--table > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1; }
      .c-list--table > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2; }
      .c-list--table > *:nth-child(3) {
    -ms-grid-row: 1;
    -ms-grid-column: 3; }
      .c-list--table > *:nth-child(4) {
    -ms-grid-row: 1;
    -ms-grid-column: 4; }
      .c-list--table > *:nth-child(5) {
    -ms-grid-row: 1;
    -ms-grid-column: 5; }
      .c-list--table > *:nth-child(6) {
    -ms-grid-row: 1;
    -ms-grid-column: 6; }
      .c-list--table > *:nth-child(7) {
    -ms-grid-row: 1;
    -ms-grid-column: 7; }
      .c-list--table > *:nth-child(8) {
    -ms-grid-row: 1;
    -ms-grid-column: 8; }
      .c-list--table > *:nth-child(9) {
    -ms-grid-row: 1;
    -ms-grid-column: 9; }
      .c-list--table > *:nth-child(10) {
    -ms-grid-row: 1;
    -ms-grid-column: 10; }
      .c-list--table > *:nth-child(11) {
    -ms-grid-row: 2;
    -ms-grid-column: 1; }
      .c-list--table > *:nth-child(12) {
    -ms-grid-row: 2;
    -ms-grid-column: 2; }
      .c-list--table > *:nth-child(13) {
    -ms-grid-row: 2;
    -ms-grid-column: 3; }
      .c-list--table > *:nth-child(14) {
    -ms-grid-row: 2;
    -ms-grid-column: 4; }
      .c-list--table > *:nth-child(15) {
    -ms-grid-row: 2;
    -ms-grid-column: 5; }
      .c-list--table > *:nth-child(16) {
    -ms-grid-row: 2;
    -ms-grid-column: 6; }
      .c-list--table > *:nth-child(17) {
    -ms-grid-row: 2;
    -ms-grid-column: 7; }
      .c-list--table > *:nth-child(18) {
    -ms-grid-row: 2;
    -ms-grid-column: 8; }
      .c-list--table > *:nth-child(19) {
    -ms-grid-row: 2;
    -ms-grid-column: 9; }
      .c-list--table > *:nth-child(20) {
    -ms-grid-row: 2;
    -ms-grid-column: 10; } }
    .c-list--table::after {
      content: "";
      clear: both;
      display: table; }
    .c-list--table .c-list__item {
      min-width: 4rem;
      padding: 4px;
      float: left;
      text-align: center;
      -webkit-box-shadow: 0px 0px 1px 1px #333333;
              box-shadow: 0px 0px 1px 1px #333333; }
      @media (min-width: 768px) {
        .c-list--table .c-list__item {
          float: none; } }

.c-logobar {
  width: 100%;
  height: calc(9rem / 2);
  background-image: -o-linear-gradient(#00bdf2 0px, #00b3f0 20%, #0066b3 80%, #004785 100%);
  background-image: linear-gradient(#00bdf2 0px, #00b3f0 20%, #0066b3 80%, #004785 100%); }
  @media (min-width: 768px) {
    .c-logobar {
      height: 9rem; } }
  @media (min-width: 1200px) {
    .c-logobar {
      height: 5.2rem; } }
  .c-logobar__wrapper {
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start; }
  .c-logobar__figure {
    height: calc(9rem / 2);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center; }
    @media (min-width: 768px) {
      .c-logobar__figure {
        height: 9rem; } }
    @media (min-width: 1200px) {
      .c-logobar__figure {
        height: 5.2rem; } }
    .c-logobar__figure--ml-auto {
      margin-left: auto; }
  .c-logobar__link {
    -webkit-flex-shrink: 1;
        -ms-flex-negative: 1;
            flex-shrink: 1; }
  .c-logobar__img {
    display: block;
    max-height: 40%;
    width: auto; }
    @media (min-width: 360px) {
      .c-logobar__img {
        max-height: 50%; } }
    @media (min-width: 768px) {
      .c-logobar__img {
        max-height: 40%; } }
    @media (min-width: 1200px) {
      .c-logobar__img {
        max-height: 50%; } }
    .c-logobar__img--smaller {
      max-height: 30%;
      margin-top: 4px; }
      @media (min-width: 360px) {
        .c-logobar__img--smaller {
          max-height: 36%; } }
      @media (min-width: 768px) {
        .c-logobar__img--smaller {
          max-height: 24%;
          margin-top: 8px; } }
      @media (min-width: 1200px) {
        .c-logobar__img--smaller {
          margin-top: 4px;
          max-height: 35%; } }
    .c-logobar__img--smaller-alt {
      max-height: 45%; }
      @media (min-width: 360px) {
        .c-logobar__img--smaller-alt {
          max-height: 50%; } }
      @media (min-width: 768px) {
        .c-logobar__img--smaller-alt {
          max-height: 40%; } }
      @media (min-width: 1200px) {
        .c-logobar__img--smaller-alt {
          max-height: 50%; } }
  .c-logobar__decor {
    background-color: #ffffff;
    width: 0.1rem;
    height: 1.8rem;
    margin: auto 8px; }
    @media (min-width: 360px) {
      .c-logobar__decor {
        width: 0.15rem;
        height: 1.8rem;
        margin: auto 10px; } }
    @media (min-width: 768px) {
      .c-logobar__decor {
        width: 0.25rem;
        height: 2.2rem;
        margin: auto 20px; } }

.c-topbar {
  background-color: #030303;
  display: none; }
  @media (min-width: 1200px) {
    .c-topbar {
      display: block; } }

.c-hamburger {
  padding: 0;
  font-size: inherit;
  cursor: pointer;
  color: inherit;
  border: none;
  background-color: transparent;
  display: block;
  position: absolute;
  right: 2rem;
  top: calc(4.5rem + 2.5rem);
  width: 3rem; }
  @media (min-width: 768px) {
    .c-hamburger {
      width: 3.4rem;
      top: calc(9rem + 4rem + 2rem);
      right: 3rem; } }
  @media (min-width: 1200px) {
    .c-hamburger {
      display: none; } }
  .c-hamburger:focus {
    outline: none; }

.c-hamburger:before,
.c-hamburger:after {
  -webkit-transition-timing-function: ease-in-out;
       -o-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
  -webkit-transition-duration: 200ms;
       -o-transition-duration: 200ms;
          transition-duration: 200ms;
  height: 0.4rem;
  display: block;
  content: "";
  background-color: #ffffff; }

.c-hamburger:before {
  -webkit-box-shadow: 0 1rem 0 #ffffff;
          box-shadow: 0 1rem 0 #ffffff;
  margin-bottom: 16px; }

.c-hamburger.is--active:before {
  -webkit-box-shadow: 0 0 0 #ffffff;
          box-shadow: 0 0 0 #ffffff;
  -webkit-transform: translateY(1rem) rotate(45deg);
      -ms-transform: translateY(1rem) rotate(45deg);
          transform: translateY(1rem) rotate(45deg);
  visibility: hidden; }

.c-hamburger.is--active:after {
  -webkit-transform: translateY(-1rem) rotate(-45deg);
      -ms-transform: translateY(-1rem) rotate(-45deg);
          transform: translateY(-1rem) rotate(-45deg);
  visibility: hidden; }

@media (min-width: 1200px) {
  .c-main-nav {
    background-color: rgba(3, 3, 3, 0.8); } }

.c-main-nav--desktop {
  display: none; }
  @media (min-width: 1200px) {
    .c-main-nav--desktop {
      display: block; } }

.c-cta-icon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  bottom: 2.5rem;
  left: calc(50% - 1.5rem);
  -webkit-animation: bounce 1.3s ease infinite;
          animation: bounce 1.3s ease infinite; }
  @media (min-width: 360px) and (max-width: 767px) and (orientation: landscape) {
    .c-cta-icon {
      bottom: -0.5rem; } }
  @media (min-width: 768px) {
    .c-cta-icon {
      bottom: 2.2rem;
      left: calc(50% - 3rem); } }
  @media (min-width: 1024px) {
    .c-cta-icon {
      bottom: 4rem; } }
  @media (min-width: 768px) {
    .c-cta-icon {
      display: none; } }
  .c-cta-icon__img {
    display: block;
    max-width: 3rem;
    height: auto; }
    @media (min-width: 768px) {
      .c-cta-icon__img {
        max-width: 4rem; } }
  .c-cta-icon--up {
    position: static; }

@media (min-width: 1200px) {
  .c-footer-top {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    border-bottom: 1px solid #ffffff; } }

.c-footer-top__social {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin: auto 0;
  padding-right: 20px; }
  @media (min-width: 1200px) {
    .c-footer-top__social {
      padding: 4px 10px 0 0; } }

.c-footer-top__text {
  font-size: 1.6rem; }

.c-footer-top__link {
  cursor: pointer; }

.c-footer-top__icon {
  display: inline-block;
  margin-left: 20px; }

.c-footer-bottom {
  margin-top: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex; }
  .c-footer-bottom__text {
    margin-bottom: 8px;
    font-size: 1.1rem;
    line-height: 1.5; }
    @media (min-width: 768px) {
      .c-footer-bottom__text {
        font-size: 1.4rem; } }
  .c-footer-bottom__col:first-child {
    margin-right: 10px; }

/* modules */
.m-overlay {
  -webkit-transition-timing-function: linear;
       -o-transition-timing-function: linear;
          transition-timing-function: linear;
  -webkit-transition-duration: 400ms;
       -o-transition-duration: 400ms;
          transition-duration: 400ms;
  height: 100vh;
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  -webkit-transform: translate3d(-100%, 0, 0);
          transform: translate3d(-100%, 0, 0);
  z-index: 100;
  overflow-y: hidden;
  background-color: #030303; }
  .m-overlay__close-btn {
    padding: 0;
    font-size: inherit;
    cursor: pointer;
    color: inherit;
    border: none;
    background-color: transparent;
    -webkit-transition-timing-function: linear;
         -o-transition-timing-function: linear;
            transition-timing-function: linear;
    -webkit-transition-duration: 200ms;
         -o-transition-duration: 200ms;
            transition-duration: 200ms;
    position: absolute;
    top: 5rem;
    right: 2.8rem;
    font-size: 2em; }
  .m-overlay__content {
    position: absolute;
    top: 18%;
    width: 100%;
    margin-top: 10px; }
  .m-overlay .c-lang-switch {
    position: absolute;
    top: 5.8rem;
    left: 4.8rem;
    font-size: 1.8rem; }
    @media (min-width: 640px) {
      .m-overlay .c-lang-switch {
        left: 9.2rem; } }
    @media (min-width: 768px) {
      .m-overlay .c-lang-switch {
        left: 10.7rem; } }

.m-overlay.is--open {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0); }

.m-hero__wrapper {
  background-image: url(../images/hero-bg-mobile.jpg);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% auto; }
  @media (min-width: 768px) {
    .m-hero__wrapper {
      background: none;
      margin-bottom: 10rem;
      margin-left: auto;
      margin-right: auto;
      max-width: 1100px;
      height: 100%; } }

.m-hero .videoWrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0; }

.m-hero .videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.m-footer {
  padding-top: 20px;
  padding-bottom: 20px; }
  @media (min-width: 1200px) {
    .m-footer {
      padding-top: 70px;
      padding-bottom: 70px; } }

.m-info {
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto; }
  .m-info__desktop-bg {
    width: 100%;
    display: none; }
    @media (min-width: 768px) {
      .m-info__desktop-bg {
        display: block; } }
  .m-info__cont {
    padding-top: 20vw; }
    @media (min-width: 768px) {
      .m-info__cont {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        gap: 2rem;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
        padding-top: 0; } }
    .m-info__cont--paddingTopXL {
      padding-top: 55vw;
      margin-top: -30vw; }
      @media (min-width: 640px) {
        .m-info__cont--paddingTopXL {
          margin-top: -15vw; } }
      @media (min-width: 768px) {
        .m-info__cont--paddingTopXL {
          padding-top: 0;
          margin-top: 0; } }
  .m-info__copy {
    line-height: 1.5;
    position: relative;
    z-index: 5; }
    @media (min-width: 360px) {
      .m-info__copy {
        font-size: 20px; } }
    @media (min-width: 768px) {
      .m-info__copy {
        display: inline-block;
        width: 50%;
        font-size: 16px;
        padding-left: 4rem; } }
    @media (min-width: 1200px) {
      .m-info__copy {
        font-size: 24px; } }
    @media (min-width: 1600px) {
      .m-info__copy {
        padding-left: 8rem; } }
  @media (min-width: 768px) {
    .m-info--reverse .m-info__cont {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: reverse;
      -webkit-flex-direction: row-reverse;
          -ms-flex-direction: row-reverse;
              flex-direction: row-reverse; } }
  @media (min-width: 768px) {
    .m-info--reverse .m-info__copy {
      padding-left: 8rem; } }
  @media (min-width: 1600px) {
    .m-info--reverse .m-info__copy {
      padding-left: 0; } }
  .m-info--automation {
    background-image: url(../images/automation-bg-mobile.jpg); }
  .m-info--costs {
    background-image: url(../images/costs-bg-mobile.jpg); }
    @media (min-width: 768px) {
      .m-info--costs {
        margin-top: -3px; } }
  .m-info--business {
    background-image: url(../images/business-bg-mobile.jpg); }

.m-info-heading {
  text-align: center;
  margin-bottom: 30%; }
  @media (min-width: 640px) {
    .m-info-heading {
      margin-bottom: 50%; } }
  @media (min-width: 768px) {
    .m-info-heading {
      display: inline-block;
      width: 50%;
      margin-bottom: 0; } }
  .m-info-heading__text {
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 2rem; }
    @media (min-width: 360px) {
      .m-info-heading__text {
        font-size: 30px; } }
    @media (min-width: 768px) {
      .m-info-heading__text {
        font-size: 18px; } }
    @media (min-width: 1200px) {
      .m-info-heading__text {
        font-size: 36px; } }
  .m-info-heading__icon {
    min-width: 80px;
    width: 20vw;
    max-width: 170px; }
    @media (min-width: 768px) {
      .m-info-heading__icon {
        width: 10vw; } }

.m-contact {
  position: relative; }
  .m-contact__con {
    margin: 60px 30px;
    padding: 40px 20px 60px;
    max-width: 1020px;
    position: relative;
    border-radius: 8px;
    border: 1px solid #ffffff; }
    @media (min-width: 768px) {
      .m-contact__con {
        padding: 30px 20px 20px;
        margin: 0;
        margin-top: 10px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: space-evenly;
        -webkit-justify-content: space-evenly;
            -ms-flex-pack: space-evenly;
                justify-content: space-evenly;
        position: absolute;
        width: 80%;
        top: 0;
        left: 50%;
        -webkit-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
                transform: translateX(-50%); } }
    @media (min-width: 1200px) {
      .m-contact__con {
        padding: 50px 20px 35px; } }
    @media (min-width: 1600px) {
      .m-contact__con {
        padding: 80px 20px 50px;
        top: 10%; } }
    .m-contact__con::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      -webkit-box-shadow: 0 0 17px 3px #ffffff, 0 0 4px 2px #ffffff, inset 0 0 17px 3px #ffffff, 0 0 4px 2px #ffffff;
              box-shadow: 0 0 17px 3px #ffffff, 0 0 4px 2px #ffffff, inset 0 0 17px 3px #ffffff, 0 0 4px 2px #ffffff;
      z-index: -1;
      border-radius: 5px; }
  .m-contact__image {
    display: block;
    margin: 0 auto 0;
    width: 55%;
    max-width: 300px; }
    @media (min-width: 768px) {
      .m-contact__image {
        -webkit-align-self: center;
            -ms-flex-item-align: center;
                    -ms-grid-row-align: center;
                align-self: center;
        margin: 0;
        width: 35%; } }
  .m-contact__copy {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column; }
  .m-contact__row:first-of-type {
    padding: 0 10px 20px; }
    @media (min-width: 768px) {
      .m-contact__row:first-of-type {
        padding: 0 10px 10px; } }
  .m-contact__row:last-of-type {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 16px 0 0; }
  .m-contact__text {
    text-align: center; }
    .m-contact__text--first {
      margin-top: 5px;
      font-size: 16px; }
      @media (min-width: 640px) {
        .m-contact__text--first {
          font-size: 24px; } }
      @media (min-width: 768px) {
        .m-contact__text--first {
          font-size: 20px; } }
      @media (min-width: 1024px) {
        .m-contact__text--first {
          font-size: 28px; } }
    .m-contact__text--second {
      margin-top: 15px;
      font-size: 24px; }
      @media (min-width: 640px) {
        .m-contact__text--second {
          font-size: 36px; } }
      @media (min-width: 768px) {
        .m-contact__text--second {
          font-size: 32px; } }
      @media (min-width: 1024px) {
        .m-contact__text--second {
          font-size: 43px;
          line-height: 1.2; } }
  .m-contact__paragraph {
    text-align: center;
    margin-bottom: 6px; }
    .m-contact__paragraph--second {
      margin-top: 20px; }
  .m-contact__number {
    font-size: 18px; }
    @media (min-width: 640px) {
      .m-contact__number {
        font-size: 22px; } }
    .m-contact__number:active {
      color: #69b9ef; }
  .m-contact__desc {
    margin-top: 60px;
    font-size: 12px;
    text-align: center; }
    @media (min-width: 768px) {
      .m-contact__desc {
        font-size: 14px;
        text-align: right;
        margin-top: 30px; } }
    @media (min-width: 1024px) {
      .m-contact__desc {
        margin-top: 80px; } }


/*# sourceMappingURL=styles.21872a80.css.map */