/*! Flickity v2.2.0
https://flickity.metafizzy.co
---------------------------------------------- */
.flickity-enabled {
  position: relative;
}

.flickity-enabled:focus {
  outline: none;
}

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* draggable */
.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

/* ---- flickity-button ---- */
.flickity-button {
  position: absolute;
  background: rgba(255, 255, 255, 0.75);
  border: none;
  color: #333;
}

.flickity-button:hover {
  background: white;
  cursor: pointer;
}

.flickity-button:focus {
  outline: none;
  box-shadow: 0 0 0 5px #19F;
}

.flickity-button:active {
  opacity: 0.6;
}

.flickity-button:disabled {
  opacity: 0.3;
  cursor: auto;
  /* prevent disabled button from capturing pointer up event. #716 */
  pointer-events: none;
}

.flickity-button-icon {
  fill: currentColor;
}

/* ---- previous/next buttons ---- */
.flickity-prev-next-button {
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  /* vertically center */
  transform: translateY(-50%);
}

.flickity-prev-next-button.previous {
  left: 10px;
}

.flickity-prev-next-button.next {
  right: 10px;
}

/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}

.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px;
}

.flickity-prev-next-button .flickity-button-icon {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}

/* ---- page dots ---- */
.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
}

.flickity-rtl .flickity-page-dots {
  direction: rtl;
}

.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #333;
  border-radius: 50%;
  opacity: 0.25;
  cursor: pointer;
}

.flickity-page-dots .dot.is-selected {
  opacity: 1;
}
@charset "UTF-8";
/*
Project: 	 Intelinair
Version: 	 1.0
Author:      Milkinside
Description: Actionable Intelligence from Aerial Data
-------------------------------------------------------------------*/
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, dialog, figure, footer, header,
hgroup, menu, nav, section,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
  outline: 0;
}

article,
aside,
dialog,
figure,
footer,
header,
hgroup,
nav,
section,
main {
  display: block;
}

html {
  overflow-y: scroll;
  overflow: -moz-scrollbars-vertical;
  box-sizing: border-box;
  touch-action: manipulation;
}

body {
  line-height: 1;
}

blockquote,
q {
  quotes: none;
}

ul,
ol {
  list-style: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

*,
*::before,
*::after {
  box-sizing: inherit;
  touch-action: inherit;
}

.svg-sprite {
  position: absolute;
  z-index: -1;
  left: -1px;
  top: -1px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@-ms-viewport {
  width: device-width;
}
/*
  @function get-breakpoint-directions

  Sorts through breakpoints SASS map,
  generates a full SASS map containing all the breakpoint
  variations we'll require

  Parameters:
  none
*/
/*
  @mixin breakpoint

  Inserts a media query

  Parameters:
  $name - name of breakpoint, choose from:

  xsmall, small, medium, large, xlarge, xxlarge  - *just* that breakpoint
  small-, medium-, large-, xlarge-, xxlarge-  - that breakpoint *and* below
  xsmall+, small+, medium+, large+, xlarge+  - that breakpoint *and* up

  NB: the we're mobile up, so the minus values should be avoided..

  $option - ie11, hover - to make an IE11 CSS with a breakpoint or to target browsers with mouse cursors

  ```scss
  @include breakpoint('medium+') {
    // styles to be given to browsers at `medium` and above
  }
  @include breakpoint(null,'hover') {
    // styles to be given to devices with mouse pointers
  }
  @include breakpoint(null,'ie11') {
    // styles to be given to be given to IE11
  }
  @include breakpoint('medium+','hover') {
    // styles to be given to browsers at `medium` and above that have mouse pointers
  }
  @include breakpoint('medium+','ie11') {
    // styles to be given to ie11 at `medium` and above
  }
  ```
*/
/*
  @function get-media

  Returns start and stop points of a given media query

  Parameters:
  $bp - the breakpoint you want the stop and stop points of
*/
/*
  @mixin placeholder

  Style form placeholder text
*/
/*
  @mixin styled-select

  https://github.com/filamentgroup/select-css

  Parameters:
  - none
*/
/*
  @function colspan

  Returns a calc() that represents a column span

  Parameters:
  $number-of-columns - the number of columns you want to span
  $breakpoint - at which breakpoint
  $bump - if you want the colspan + an arbitrary number
  $inverse - if you want to return a negative number (to move things backwards)

  NB: only works with breakpoint names, not the +/- variants
*/
/*
  @mixin width

  Returns a width and a calc() to correctly span columns
  with breakpoint selection and optional bump value

  Parameters:
  $number-of-columns - the number of columns you want to span
  $breakpoint - at which breakpoint
  $bump - if you want the colspan + an arbitrary number

  NB: only works with breakpoint names, not the +/- variants
*/
/*
  @mixin width-multi

  A mix of @mixin width and @mixin column. Pass a map of the number
  of columns to span at each breakpoint. Use when you don't need to
  float on the grid.

  Parameters:
  $colspans - scss map detailing how many design columns this column
  needs to span on each breakpoint. Omitting a breakpoint from the
  map will not set a width at that breakpoint.
  $bump - if you want the colspan + an arbitrary number

  ```scss
  $column-spans__list-articles: (
    xsmall: 3,
    small: 3,
    medium: 4,
    large: 4,
    xlarge: 3,
    xxlarge: 3
  );

  .list-articles__item {
    @include width-multi($column-spans__list-articles);
  }
  ```

  NB: only works with breakpoint names, not the +/- variants
*/
/*
  @mixin push

  Returns a margin-left and a calc() to correctly push
  a block a number of columns with breakpoint selection
  and optional bump value

  Parameters:
  $number-of-columns - the number of columns you want to push
  $breakpoint - at which breakpoint
  $bump - if you want the colspan + an arbitrary number

  NB: only works with breakpoint names, not the +/- variants
*/
/*
  @mixin push-multi

  A mix of @mixin push and @mixin column. Pass a map of the number
  of columns to push at each breakpoint.

  Parameters:
  $colspans - scss map detailing how many design columns this column
  needs to push on each breakpoint. Omitting a breakpoint from the
  map will not set a width at that breakpoint.
  $bump - if you want the colspan + an arbitrary number

  ```scss
  $column-spans__list-articles: (
    xsmall: 3,
    small: 3,
    medium: 4,
    large: 4,
    xlarge: 3,
    xxlarge: 3
  );

  .list-articles__item {
    @include push-multi($column-spans__list-articles);
  }
  ```

  NB: only works with breakpoint names, not the +/- variants
*/
/*
  @mixin push-gutter

  Adds gutter margin to the sides passed to the set breakpoints.
  Defaults to left margin across all breakpoints.

  Parameters:
  $sides - the sides you'd like to apply margin to
  $bps - at which breakpoints

  NB: only works with breakpoint names, not the +/- variants
*/
/*
  @mixin columns-container

  Sets up columns container

  Parameters:
  none

  ```scss
    .list-articles {
    @include columns-container;
  }
  ```
*/
/*
  @mixin column

  Sets up single column

  Parameters:
  $colspans - scss map detailing how many design columns this column needs to span on each breakpoint

  ```scss
  $column-spans__list-articles: (
    xsmall: 3,
    small: 3,
    medium: 4,
    large: 4,
    xlarge: 3,
    xxlarge: 3
  );

  .list-articles__item {
    @include column($column-spans__list-articles);
  }
  ```

  NB: only works with breakpoint names, not the +/- variants
*/
/*
  @mixin columns-container-flex

  Sets up columns container - flex version

  Parameters:
  none

  ```scss
  .list-articles {
    @include columns-container-flex;
  }
  ```
*/
/*
  @mixin column-flex

  Sets up single column

  Parameters:
  $colspans - scss map detailing how many design columns this column needs to span on each breakpoint

  ```scss
  $column-spans__list-articles: (
    xsmall: 3,
    small: 3,
    medium: 4,
    large: 4,
    xlarge: 3,
    xxlarge: 3
  );

  .list-articles__item {
    @include column-flex($column-spans__list-articles);
  }
  ```

  NB: only works with breakpoint names, not the +/- variants
*/
/*
  @mixin font_smoothing

  Set font smoothing ON or OFF
*/
/*
  @mixin text-underline

  Does "medium" style underlines with "iOS" style descender shadows

  Parameters:
  $underline - color
  $background - color
  $pos - vertical position
*/
/*
  @mixin hide_text

  Hides text in an element
*/
/*
  @mixin tucked-margin-top

  Intelligently applies baseline to baseline spacing to a text block:

  ```
  @include tucked-margin-top($f-h1, ('xsmall': 40, 'medium+': 60));
  ```

  Uses the `$f-h1` object from setup/_typography.scss and loops through the breakpoints, adding new margin top if required by specified margin tops and font size/line-height changes.

  'xsmall' is the default for all breakpoints and the successively overridden as breakpoints get larger.

  Its intelligent in that if you specify just the `xsmall` value, but the font size and/or line-height for this font object changes at some breakpoint, the mixin will add a breakpoint rule to adjust to maintain the consistent baseline-to-baseline spacing.

  So:

  ```
  $f-body: generate-font-obj(
    (
      font-family: $sans-serif-font,
      font-family-loaded: $sans-serif-font--loaded,
      font-loaded-class: $sans-serif-font-loaded-class,
      settings: (
        'small+': ( font-size: 16, line-height: 20, font-weight: 300, push: 1),
       )
    )
  );
  @include tucked-margin-top($f-body, ('xsmall': 40, 'medium+': 60));
  ```

  Generates a margin-top as a default (xsmall+) and a breakpoint for `medium+`.

  ```
  $f-body: generate-font-obj(
    (
      font-family: $sans-serif-font,
      font-family-loaded: $sans-serif-font--loaded,
      font-loaded-class: $sans-serif-font-loaded-class,
      settings: (
        'small+': ( font-size: 16, line-height: 20, push: 1),
        'medium+': ( font-size: 18, line-height: 25, push: 0),
       )
    )
  );
  @include tucked-margin-top($f-body, ('xsmall': 40));
  ```

  Similarly, this will produce a margin-top as a default and a breakpoint for `medium+`.

  If you need some margin-top for a singular breakpoint margin:

  ```
  @include tucked-margin-top($f-h1, null, 'large');
  ```

  Will produce a margin-top within a breakpoint of 'large'.

*/
/*
  @mixin tucked-align-top

  Intelligently aligns an text element to the top of an element.

  ```
  @include tucked-align-top($f-h1);
  ```

  Uses the `$f-h1` object from setup/_typography.scss and loops through the breakpoints, adding new margin top if required by specified margin tops and font size/line-height changes.

  Sister mixin to '@mixin tucked-margin-top'

  tucked-align-top is useful for those situations where you want to horizontally align the top of an image and the top of some text.

  If you need some align top for a singular breakpoint margin:

  ```
  @include tucked-align-top($f-h1, 'large');
  ```

  Will produce a margin-top within a breakpoint of 'large'.

  It should be noted that this mixin is very dependent of the font itself. If the box the letters sit in, in the font, is weirdly spaced, then this mixin will struggle.

  There are 5 modes to try and you may want to add others for your particular font..

  ```
  @include tucked-align-top($f-h1, null, 2); // mode based on pull value
  @include tucked-align-top($f-h1, null, 3); // mode based on push value
  @include tucked-align-top($f-h1, null, 4); // mode based on baseline value
  @include tucked-align-top($f-h1, null, 5); // mode based on 0's
  ```
*/
/*
@font-face {
  font-family: Graphik;
  src: url('/app/themes/wyss-institute/assets/fonts/Graphik-Bold-Web.eot');
  src: url('/app/themes/wyss-institute/assets/fonts/Graphik-Bold-Web.eot?#iefix') format('embedded-opentype'),
       url('/app/themes/wyss-institute/assets/fonts/Graphik-Bold-Web.woff2') format('woff2'),
       url('/app/themes/wyss-institute/assets/fonts/Graphik-Bold-Web.woff') format('woff');
}
*/
@font-face {
  font-family: "AktivGrotesk";
  font-style: normal;
  font-weight: normal;
  src: url("/dist/fonts/AktivGrotesk-Regular.woff2") format("woff2"), url("/dist/fonts/AktivGrotesk-Regular.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "AktivGrotesk";
  font-style: normal;
  font-weight: 300;
  src: url("/dist/fonts/AktivGrotesk-Light.woff2") format("woff2"), url("/dist/fonts/AktivGrotesk-Light.woff") format("woff");
  font-display: block;
}
@font-face {
  font-family: "AktivGrotesk";
  font-style: normal;
  font-weight: 500;
  src: url("/dist/fonts/AktivGrotesk-Medium.woff2") format("woff2"), url("/dist/fonts/AktivGrotesk-Medium.woff") format("woff");
  font-display: block;
}
@font-face {
  font-family: "AktivGrotesk";
  font-style: normal;
  font-weight: 700;
  src: url("/dist/fonts/AktivGrotesk-Bold.woff2") format("woff2"), url("/dist/fonts/AktivGrotesk-Bold.woff") format("woff");
  font-display: block;
}
/***

f-XX

```
<p class="f-XX">The quick brown fox, <br>jumps over the lazy dog</p>
```

***/
.f-h2,
h2 {
  text-align: center;
  font-weight: 500;
  font-family: AktivGrotesk, system-ui, -apple-system, BlinkMacSystemFont, “Segoe UI”, “Roboto”, “Oxygen”, “Ubuntu”, “Cantarell”, “Fira Sans”, “Droid Sans”, “Helvetica Neue”, sans-serif;
  font-size: 35px;
  line-height: 40px;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-variant-ligatures: common-ligatures;
  font-variant-numeric: oldstyle-nums;
  font-kerning: normal;
}
.f-h2 b,
.f-h2 strong,
h2 b,
h2 strong {
  font-weight: 600;
}
.f-h2 i,
.f-h2 em,
h2 i,
h2 em {
  font-style: italic;
}
.f-h2::before,
.f-h2::after,
h2::before,
h2::after {
  content: "";
  display: block;
}
.f-h2::before,
h2::before {
  padding-top: 0px;
}
.f-h2::after,
h2::after {
  margin-bottom: 0px;
}
@media screen and (min-width: 650px) {
  .f-h2,
h2 {
    font-size: 50px;
    line-height: 60px;
  }
  .f-h2::before,
h2::before {
    padding-top: 0px;
  }
  .f-h2::after,
h2::after {
    margin-bottom: 0px;
  }
}
@media screen and (min-width: 1300px) {
  .f-h2,
h2 {
    font-size: 56px;
    line-height: 64px;
  }
  .f-h2::before,
h2::before {
    padding-top: 0px;
  }
  .f-h2::after,
h2::after {
    margin-bottom: 0px;
  }
}

.f-h3,
h3 {
  font-family: AktivGrotesk, system-ui, -apple-system, BlinkMacSystemFont, “Segoe UI”, “Roboto”, “Oxygen”, “Ubuntu”, “Cantarell”, “Fira Sans”, “Droid Sans”, “Helvetica Neue”, sans-serif;
  font-size: 30px;
  line-height: 40px;
  letter-spacing: -0.015em;
  font-variant-ligatures: common-ligatures;
  font-variant-numeric: oldstyle-nums;
  font-kerning: normal;
}
.f-h3 b,
.f-h3 strong,
h3 b,
h3 strong {
  font-weight: 600;
}
.f-h3 i,
.f-h3 em,
h3 i,
h3 em {
  font-style: italic;
}
.f-h3::before,
.f-h3::after,
h3::before,
h3::after {
  content: "";
  display: block;
}
.f-h3::before,
h3::before {
  padding-top: 0px;
}
.f-h3::after,
h3::after {
  margin-bottom: 0px;
}
@media screen and (min-width: 650px) {
  .f-h3,
h3 {
    font-size: 35px;
    line-height: 45px;
  }
  .f-h3::before,
h3::before {
    padding-top: 0px;
  }
  .f-h3::after,
h3::after {
    margin-bottom: 0px;
  }
}
@media screen and (min-width: 1300px) {
  .f-h3,
h3 {
    font-size: 48px;
    line-height: 64px;
  }
  .f-h3::before,
h3::before {
    padding-top: 0px;
  }
  .f-h3::after,
h3::after {
    margin-bottom: 0px;
  }
}

.f-h4,
h4 {
  font-family: AktivGrotesk, system-ui, -apple-system, BlinkMacSystemFont, “Segoe UI”, “Roboto”, “Oxygen”, “Ubuntu”, “Cantarell”, “Fira Sans”, “Droid Sans”, “Helvetica Neue”, sans-serif;
  font-size: 20px;
  line-height: 32px;
  font-weight: 300;
  letter-spacing: -0.015em;
  font-variant-ligatures: common-ligatures;
  font-variant-numeric: oldstyle-nums;
  font-kerning: normal;
}
.f-h4 b,
.f-h4 strong,
h4 b,
h4 strong {
  font-weight: 600;
}
.f-h4 i,
.f-h4 em,
h4 i,
h4 em {
  font-style: italic;
}
.f-h4::before,
.f-h4::after,
h4::before,
h4::after {
  content: "";
  display: block;
}
.f-h4::before,
h4::before {
  padding-top: 0px;
}
.f-h4::after,
h4::after {
  margin-bottom: 0px;
}
@media screen and (min-width: 650px) {
  .f-h4,
h4 {
    font-size: 20px;
    line-height: 32px;
  }
  .f-h4::before,
h4::before {
    padding-top: 0px;
  }
  .f-h4::after,
h4::after {
    margin-bottom: 0px;
  }
}
@media screen and (min-width: 1300px) {
  .f-h4,
h4 {
    font-size: 20px;
    line-height: 32px;
  }
  .f-h4::before,
h4::before {
    padding-top: 0px;
  }
  .f-h4::after,
h4::after {
    margin-bottom: 0px;
  }
}

.f-h5,
h5 {
  font-family: AktivGrotesk, system-ui, -apple-system, BlinkMacSystemFont, “Segoe UI”, “Roboto”, “Oxygen”, “Ubuntu”, “Cantarell”, “Fira Sans”, “Droid Sans”, “Helvetica Neue”, sans-serif;
  font-size: 20px;
  line-height: 25px;
  font-weight: 500;
  letter-spacing: -0.015em;
  font-variant-ligatures: common-ligatures;
  font-variant-numeric: oldstyle-nums;
  font-kerning: normal;
}
.f-h5 b,
.f-h5 strong,
h5 b,
h5 strong {
  font-weight: 600;
}
.f-h5 i,
.f-h5 em,
h5 i,
h5 em {
  font-style: italic;
}
.f-h5::before,
.f-h5::after,
h5::before,
h5::after {
  content: "";
  display: block;
}
.f-h5::before,
h5::before {
  padding-top: 0px;
}
.f-h5::after,
h5::after {
  margin-bottom: 0px;
}
@media screen and (min-width: 1300px) {
  .f-h5,
h5 {
    font-size: 25px;
    line-height: 30px;
  }
  .f-h5::before,
h5::before {
    padding-top: 0px;
  }
  .f-h5::after,
h5::after {
    margin-bottom: 0px;
  }
}

.f-h6,
h6 {
  font-family: AktivGrotesk, system-ui, -apple-system, BlinkMacSystemFont, “Segoe UI”, “Roboto”, “Oxygen”, “Ubuntu”, “Cantarell”, “Fira Sans”, “Droid Sans”, “Helvetica Neue”, sans-serif;
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  font-variant-ligatures: common-ligatures;
  font-variant-numeric: oldstyle-nums;
  font-kerning: normal;
}
.f-h6 b,
.f-h6 strong,
h6 b,
h6 strong {
  font-weight: 600;
}
.f-h6 i,
.f-h6 em,
h6 i,
h6 em {
  font-style: italic;
}
.f-h6::before,
.f-h6::after,
h6::before,
h6::after {
  content: "";
  display: block;
}
.f-h6::before,
h6::before {
  padding-top: 0px;
}
.f-h6::after,
h6::after {
  margin-bottom: 0px;
}

.f-p-body {
  font-family: AktivGrotesk, system-ui, -apple-system, BlinkMacSystemFont, “Segoe UI”, “Roboto”, “Oxygen”, “Ubuntu”, “Cantarell”, “Fira Sans”, “Droid Sans”, “Helvetica Neue”, sans-serif;
  font-size: 16px;
  line-height: 25px;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-variant-ligatures: common-ligatures;
  font-variant-numeric: oldstyle-nums;
  font-kerning: normal;
}
.f-p-body b,
.f-p-body strong {
  font-weight: 600;
}
.f-p-body i,
.f-p-body em {
  font-style: italic;
}
.f-p-body::before,
.f-p-body::after {
  content: "";
  display: block;
}
.f-p-body::before {
  padding-top: 0px;
}
.f-p-body::after {
  margin-bottom: 0px;
}

.f-p-body-small,
small {
  font-family: AktivGrotesk, system-ui, -apple-system, BlinkMacSystemFont, “Segoe UI”, “Roboto”, “Oxygen”, “Ubuntu”, “Cantarell”, “Fira Sans”, “Droid Sans”, “Helvetica Neue”, sans-serif;
  font-size: 14px;
  line-height: 20px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-variant-ligatures: common-ligatures;
  font-variant-numeric: oldstyle-nums;
  font-kerning: normal;
}
.f-p-body-small b,
.f-p-body-small strong,
small b,
small strong {
  font-weight: 600;
}
.f-p-body-small i,
.f-p-body-small em,
small i,
small em {
  font-style: italic;
}
.f-p-body-small::before,
.f-p-body-small::after,
small::before,
small::after {
  content: "";
  display: block;
}
.f-p-body-small::before,
small::before {
  padding-top: 0px;
}
.f-p-body-small::after,
small::after {
  margin-bottom: 0px;
}

.f-p-introduction {
  font-family: AktivGrotesk, system-ui, -apple-system, BlinkMacSystemFont, “Segoe UI”, “Roboto”, “Oxygen”, “Ubuntu”, “Cantarell”, “Fira Sans”, “Droid Sans”, “Helvetica Neue”, sans-serif;
  font-size: 18px;
  line-height: 26px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-variant-ligatures: common-ligatures;
  font-variant-numeric: oldstyle-nums;
  font-kerning: normal;
}
.f-p-introduction b,
.f-p-introduction strong {
  font-weight: 600;
}
.f-p-introduction i,
.f-p-introduction em {
  font-style: italic;
}
.f-p-introduction::before,
.f-p-introduction::after {
  content: "";
  display: block;
}
.f-p-introduction::before {
  padding-top: 0px;
}
.f-p-introduction::after {
  margin-bottom: 0px;
}
@media screen and (min-width: 990px) {
  .f-p-introduction {
    font-size: 24px;
    line-height: 32px;
  }
  .f-p-introduction::before {
    padding-top: 0px;
  }
  .f-p-introduction::after {
    margin-bottom: 0px;
  }
}

.f-p-small {
  font-family: AktivGrotesk, system-ui, -apple-system, BlinkMacSystemFont, “Segoe UI”, “Roboto”, “Oxygen”, “Ubuntu”, “Cantarell”, “Fira Sans”, “Droid Sans”, “Helvetica Neue”, sans-serif;
  font-size: 15px;
  line-height: 20px;
  letter-spacing: 0.015em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-variant-ligatures: common-ligatures;
  font-variant-numeric: oldstyle-nums;
  font-kerning: normal;
}
.f-p-small b,
.f-p-small strong {
  font-weight: 600;
}
.f-p-small i,
.f-p-small em {
  font-style: italic;
}
.f-p-small::before,
.f-p-small::after {
  content: "";
  display: block;
}
.f-p-small::before {
  padding-top: 0px;
}
.f-p-small::after {
  margin-bottom: 0px;
}

.f-keyword {
  font-family: AktivGrotesk, system-ui, -apple-system, BlinkMacSystemFont, “Segoe UI”, “Roboto”, “Oxygen”, “Ubuntu”, “Cantarell”, “Fira Sans”, “Droid Sans”, “Helvetica Neue”, sans-serif;
  font-size: 12px;
  line-height: 15px;
  font-weight: 500;
  letter-spacing: 0.15em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-transform: uppercase;
  font-variant-ligatures: common-ligatures;
  font-variant-numeric: oldstyle-nums;
  font-kerning: normal;
}
.f-keyword b,
.f-keyword strong {
  font-weight: 600;
}
.f-keyword i,
.f-keyword em {
  font-style: italic;
}
.f-keyword::before,
.f-keyword::after {
  content: "";
  display: block;
}
.f-keyword::before {
  padding-top: 0px;
}
.f-keyword::after {
  margin-bottom: 0px;
}
@media screen and (min-width: 990px) {
  .f-keyword {
    font-size: 13px;
    line-height: 15px;
  }
  .f-keyword::before {
    padding-top: 0px;
  }
  .f-keyword::after {
    margin-bottom: 0px;
  }
}

.f-link {
  font-family: AktivGrotesk, system-ui, -apple-system, BlinkMacSystemFont, “Segoe UI”, “Roboto”, “Oxygen”, “Ubuntu”, “Cantarell”, “Fira Sans”, “Droid Sans”, “Helvetica Neue”, sans-serif;
  font-size: 13px;
  line-height: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-transform: uppercase;
  font-variant-ligatures: common-ligatures;
  font-variant-numeric: oldstyle-nums;
  font-kerning: normal;
}
.f-link b,
.f-link strong {
  font-weight: 600;
}
.f-link i,
.f-link em {
  font-style: italic;
}
.f-link::before,
.f-link::after {
  content: "";
  display: block;
}
.f-link::before {
  padding-top: 0px;
}
.f-link::after {
  margin-bottom: 0px;
}

/*!
 * Bootstrap Grid v4.0.0 (https://getbootstrap.com)
 * Copyright 2011-2018 The Bootstrap Authors
 * Copyright 2011-2018 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
@-ms-viewport {
  width: device-width;
}
html {
  box-sizing: border-box;
  -ms-overflow-style: scrollbar;
}

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

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  .container {
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 100%;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 100%;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1570px;
  }
}
@media (max-width: 767.98px) {
  .container.fluid-sm {
    max-width: unset;
  }
}

.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.no-gutters > .col,
.no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

.col-xl,
.col-xl-auto, .col-xl-12, .col-xl-11, .col-xl-10, .col-xl-9, .col-xl-8, .col-xl-7, .col-xl-6, .col-xl-5, .col-xl-4, .col-xl-3, .col-xl-2, .col-xl-1, .col-lg,
.col-lg-auto, .col-lg-12, .col-lg-11, .col-lg-10, .col-lg-9, .col-lg-8, .col-lg-7, .col-lg-6, .col-lg-5, .col-lg-4, .col-lg-3, .col-lg-2, .col-lg-1, .col-md,
.col-md-auto, .col-md-12, .col-md-11, .col-md-10, .col-md-9, .col-md-8, .col-md-7, .col-md-6, .col-md-5, .col-md-4, .col-md-3, .col-md-2, .col-md-1, .col-sm,
.col-sm-auto, .col-sm-12, .col-sm-11, .col-sm-10, .col-sm-9, .col-sm-8, .col-sm-7, .col-sm-6, .col-sm-5, .col-sm-4, .col-sm-3, .col-sm-2, .col-sm-1, .col,
.col-auto, .col-12, .col-11, .col-10, .col-9, .col-8, .col-7, .col-6, .col-5, .col-4, .col-3, .col-2, .col-1 {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}

.col-1 {
  flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%;
}

.col-2 {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.col-5 {
  flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%;
}

.col-8 {
  flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
}

.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%;
}

.col-11 {
  flex: 0 0 91.6666666667%;
  max-width: 91.6666666667%;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.order-first {
  order: -1;
}

.order-last {
  order: 13;
}

.order-0 {
  order: 0;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.order-4 {
  order: 4;
}

.order-5 {
  order: 5;
}

.order-6 {
  order: 6;
}

.order-7 {
  order: 7;
}

.order-8 {
  order: 8;
}

.order-9 {
  order: 9;
}

.order-10 {
  order: 10;
}

.order-11 {
  order: 11;
}

.order-12 {
  order: 12;
}

.offset-1 {
  margin-left: 8.3333333333%;
}

.offset-2 {
  margin-left: 16.6666666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.3333333333%;
}

.offset-5 {
  margin-left: 41.6666666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.3333333333%;
}

.offset-8 {
  margin-left: 66.6666666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.3333333333%;
}

.offset-11 {
  margin-left: 91.6666666667%;
}

@media (min-width: 576px) {
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  .col-sm-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-sm-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-sm-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-sm-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-sm-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-sm-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-sm-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-sm-first {
    order: -1;
  }

  .order-sm-last {
    order: 13;
  }

  .order-sm-0 {
    order: 0;
  }

  .order-sm-1 {
    order: 1;
  }

  .order-sm-2 {
    order: 2;
  }

  .order-sm-3 {
    order: 3;
  }

  .order-sm-4 {
    order: 4;
  }

  .order-sm-5 {
    order: 5;
  }

  .order-sm-6 {
    order: 6;
  }

  .order-sm-7 {
    order: 7;
  }

  .order-sm-8 {
    order: 8;
  }

  .order-sm-9 {
    order: 9;
  }

  .order-sm-10 {
    order: 10;
  }

  .order-sm-11 {
    order: 11;
  }

  .order-sm-12 {
    order: 12;
  }

  .offset-sm-0 {
    margin-left: 0;
  }

  .offset-sm-1 {
    margin-left: 8.3333333333%;
  }

  .offset-sm-2 {
    margin-left: 16.6666666667%;
  }

  .offset-sm-3 {
    margin-left: 25%;
  }

  .offset-sm-4 {
    margin-left: 33.3333333333%;
  }

  .offset-sm-5 {
    margin-left: 41.6666666667%;
  }

  .offset-sm-6 {
    margin-left: 50%;
  }

  .offset-sm-7 {
    margin-left: 58.3333333333%;
  }

  .offset-sm-8 {
    margin-left: 66.6666666667%;
  }

  .offset-sm-9 {
    margin-left: 75%;
  }

  .offset-sm-10 {
    margin-left: 83.3333333333%;
  }

  .offset-sm-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  .col-md-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-md-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-md-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-md-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-md-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-md-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-md-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-md-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-md-first {
    order: -1;
  }

  .order-md-last {
    order: 13;
  }

  .order-md-0 {
    order: 0;
  }

  .order-md-1 {
    order: 1;
  }

  .order-md-2 {
    order: 2;
  }

  .order-md-3 {
    order: 3;
  }

  .order-md-4 {
    order: 4;
  }

  .order-md-5 {
    order: 5;
  }

  .order-md-6 {
    order: 6;
  }

  .order-md-7 {
    order: 7;
  }

  .order-md-8 {
    order: 8;
  }

  .order-md-9 {
    order: 9;
  }

  .order-md-10 {
    order: 10;
  }

  .order-md-11 {
    order: 11;
  }

  .order-md-12 {
    order: 12;
  }

  .offset-md-0 {
    margin-left: 0;
  }

  .offset-md-1 {
    margin-left: 8.3333333333%;
  }

  .offset-md-2 {
    margin-left: 16.6666666667%;
  }

  .offset-md-3 {
    margin-left: 25%;
  }

  .offset-md-4 {
    margin-left: 33.3333333333%;
  }

  .offset-md-5 {
    margin-left: 41.6666666667%;
  }

  .offset-md-6 {
    margin-left: 50%;
  }

  .offset-md-7 {
    margin-left: 58.3333333333%;
  }

  .offset-md-8 {
    margin-left: 66.6666666667%;
  }

  .offset-md-9 {
    margin-left: 75%;
  }

  .offset-md-10 {
    margin-left: 83.3333333333%;
  }

  .offset-md-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  .col-lg-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-lg-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-lg-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-lg-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-lg-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-lg-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-lg-first {
    order: -1;
  }

  .order-lg-last {
    order: 13;
  }

  .order-lg-0 {
    order: 0;
  }

  .order-lg-1 {
    order: 1;
  }

  .order-lg-2 {
    order: 2;
  }

  .order-lg-3 {
    order: 3;
  }

  .order-lg-4 {
    order: 4;
  }

  .order-lg-5 {
    order: 5;
  }

  .order-lg-6 {
    order: 6;
  }

  .order-lg-7 {
    order: 7;
  }

  .order-lg-8 {
    order: 8;
  }

  .order-lg-9 {
    order: 9;
  }

  .order-lg-10 {
    order: 10;
  }

  .order-lg-11 {
    order: 11;
  }

  .order-lg-12 {
    order: 12;
  }

  .offset-lg-0 {
    margin-left: 0;
  }

  .offset-lg-1 {
    margin-left: 8.3333333333%;
  }

  .offset-lg-2 {
    margin-left: 16.6666666667%;
  }

  .offset-lg-3 {
    margin-left: 25%;
  }

  .offset-lg-4 {
    margin-left: 33.3333333333%;
  }

  .offset-lg-5 {
    margin-left: 41.6666666667%;
  }

  .offset-lg-6 {
    margin-left: 50%;
  }

  .offset-lg-7 {
    margin-left: 58.3333333333%;
  }

  .offset-lg-8 {
    margin-left: 66.6666666667%;
  }

  .offset-lg-9 {
    margin-left: 75%;
  }

  .offset-lg-10 {
    margin-left: 83.3333333333%;
  }

  .offset-lg-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  .col-xl-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-xl-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-xl-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-xl-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-xl-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-xl-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-xl-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-xl-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-xl-first {
    order: -1;
  }

  .order-xl-last {
    order: 13;
  }

  .order-xl-0 {
    order: 0;
  }

  .order-xl-1 {
    order: 1;
  }

  .order-xl-2 {
    order: 2;
  }

  .order-xl-3 {
    order: 3;
  }

  .order-xl-4 {
    order: 4;
  }

  .order-xl-5 {
    order: 5;
  }

  .order-xl-6 {
    order: 6;
  }

  .order-xl-7 {
    order: 7;
  }

  .order-xl-8 {
    order: 8;
  }

  .order-xl-9 {
    order: 9;
  }

  .order-xl-10 {
    order: 10;
  }

  .order-xl-11 {
    order: 11;
  }

  .order-xl-12 {
    order: 12;
  }

  .offset-xl-0 {
    margin-left: 0;
  }

  .offset-xl-1 {
    margin-left: 8.3333333333%;
  }

  .offset-xl-2 {
    margin-left: 16.6666666667%;
  }

  .offset-xl-3 {
    margin-left: 25%;
  }

  .offset-xl-4 {
    margin-left: 33.3333333333%;
  }

  .offset-xl-5 {
    margin-left: 41.6666666667%;
  }

  .offset-xl-6 {
    margin-left: 50%;
  }

  .offset-xl-7 {
    margin-left: 58.3333333333%;
  }

  .offset-xl-8 {
    margin-left: 66.6666666667%;
  }

  .offset-xl-9 {
    margin-left: 75%;
  }

  .offset-xl-10 {
    margin-left: 83.3333333333%;
  }

  .offset-xl-11 {
    margin-left: 91.6666666667%;
  }
}
.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }

  .d-sm-inline {
    display: inline !important;
  }

  .d-sm-inline-block {
    display: inline-block !important;
  }

  .d-sm-block {
    display: block !important;
  }

  .d-sm-table {
    display: table !important;
  }

  .d-sm-table-row {
    display: table-row !important;
  }

  .d-sm-table-cell {
    display: table-cell !important;
  }

  .d-sm-flex {
    display: flex !important;
  }

  .d-sm-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }

  .d-md-inline {
    display: inline !important;
  }

  .d-md-inline-block {
    display: inline-block !important;
  }

  .d-md-block {
    display: block !important;
  }

  .d-md-table {
    display: table !important;
  }

  .d-md-table-row {
    display: table-row !important;
  }

  .d-md-table-cell {
    display: table-cell !important;
  }

  .d-md-flex {
    display: flex !important;
  }

  .d-md-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }

  .d-lg-inline {
    display: inline !important;
  }

  .d-lg-inline-block {
    display: inline-block !important;
  }

  .d-lg-block {
    display: block !important;
  }

  .d-lg-table {
    display: table !important;
  }

  .d-lg-table-row {
    display: table-row !important;
  }

  .d-lg-table-cell {
    display: table-cell !important;
  }

  .d-lg-flex {
    display: flex !important;
  }

  .d-lg-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }

  .d-xl-inline {
    display: inline !important;
  }

  .d-xl-inline-block {
    display: inline-block !important;
  }

  .d-xl-block {
    display: block !important;
  }

  .d-xl-table {
    display: table !important;
  }

  .d-xl-table-row {
    display: table-row !important;
  }

  .d-xl-table-cell {
    display: table-cell !important;
  }

  .d-xl-flex {
    display: flex !important;
  }

  .d-xl-inline-flex {
    display: inline-flex !important;
  }
}
@media print {
  .d-print-none {
    display: none !important;
  }

  .d-print-inline {
    display: inline !important;
  }

  .d-print-inline-block {
    display: inline-block !important;
  }

  .d-print-block {
    display: block !important;
  }

  .d-print-table {
    display: table !important;
  }

  .d-print-table-row {
    display: table-row !important;
  }

  .d-print-table-cell {
    display: table-cell !important;
  }

  .d-print-flex {
    display: flex !important;
  }

  .d-print-inline-flex {
    display: inline-flex !important;
  }
}
.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

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

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

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

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

@media (min-width: 576px) {
  .flex-sm-row {
    flex-direction: row !important;
  }

  .flex-sm-column {
    flex-direction: column !important;
  }

  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }

  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-sm-start {
    justify-content: flex-start !important;
  }

  .justify-content-sm-end {
    justify-content: flex-end !important;
  }

  .justify-content-sm-center {
    justify-content: center !important;
  }

  .justify-content-sm-between {
    justify-content: space-between !important;
  }

  .justify-content-sm-around {
    justify-content: space-around !important;
  }

  .align-items-sm-start {
    align-items: flex-start !important;
  }

  .align-items-sm-end {
    align-items: flex-end !important;
  }

  .align-items-sm-center {
    align-items: center !important;
  }

  .align-items-sm-baseline {
    align-items: baseline !important;
  }

  .align-items-sm-stretch {
    align-items: stretch !important;
  }

  .align-content-sm-start {
    align-content: flex-start !important;
  }

  .align-content-sm-end {
    align-content: flex-end !important;
  }

  .align-content-sm-center {
    align-content: center !important;
  }

  .align-content-sm-between {
    align-content: space-between !important;
  }

  .align-content-sm-around {
    align-content: space-around !important;
  }

  .align-content-sm-stretch {
    align-content: stretch !important;
  }

  .align-self-sm-auto {
    align-self: auto !important;
  }

  .align-self-sm-start {
    align-self: flex-start !important;
  }

  .align-self-sm-end {
    align-self: flex-end !important;
  }

  .align-self-sm-center {
    align-self: center !important;
  }

  .align-self-sm-baseline {
    align-self: baseline !important;
  }

  .align-self-sm-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 768px) {
  .flex-md-row {
    flex-direction: row !important;
  }

  .flex-md-column {
    flex-direction: column !important;
  }

  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-md-wrap {
    flex-wrap: wrap !important;
  }

  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-md-start {
    justify-content: flex-start !important;
  }

  .justify-content-md-end {
    justify-content: flex-end !important;
  }

  .justify-content-md-center {
    justify-content: center !important;
  }

  .justify-content-md-between {
    justify-content: space-between !important;
  }

  .justify-content-md-around {
    justify-content: space-around !important;
  }

  .align-items-md-start {
    align-items: flex-start !important;
  }

  .align-items-md-end {
    align-items: flex-end !important;
  }

  .align-items-md-center {
    align-items: center !important;
  }

  .align-items-md-baseline {
    align-items: baseline !important;
  }

  .align-items-md-stretch {
    align-items: stretch !important;
  }

  .align-content-md-start {
    align-content: flex-start !important;
  }

  .align-content-md-end {
    align-content: flex-end !important;
  }

  .align-content-md-center {
    align-content: center !important;
  }

  .align-content-md-between {
    align-content: space-between !important;
  }

  .align-content-md-around {
    align-content: space-around !important;
  }

  .align-content-md-stretch {
    align-content: stretch !important;
  }

  .align-self-md-auto {
    align-self: auto !important;
  }

  .align-self-md-start {
    align-self: flex-start !important;
  }

  .align-self-md-end {
    align-self: flex-end !important;
  }

  .align-self-md-center {
    align-self: center !important;
  }

  .align-self-md-baseline {
    align-self: baseline !important;
  }

  .align-self-md-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 992px) {
  .flex-lg-row {
    flex-direction: row !important;
  }

  .flex-lg-column {
    flex-direction: column !important;
  }

  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }

  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-lg-start {
    justify-content: flex-start !important;
  }

  .justify-content-lg-end {
    justify-content: flex-end !important;
  }

  .justify-content-lg-center {
    justify-content: center !important;
  }

  .justify-content-lg-between {
    justify-content: space-between !important;
  }

  .justify-content-lg-around {
    justify-content: space-around !important;
  }

  .align-items-lg-start {
    align-items: flex-start !important;
  }

  .align-items-lg-end {
    align-items: flex-end !important;
  }

  .align-items-lg-center {
    align-items: center !important;
  }

  .align-items-lg-baseline {
    align-items: baseline !important;
  }

  .align-items-lg-stretch {
    align-items: stretch !important;
  }

  .align-content-lg-start {
    align-content: flex-start !important;
  }

  .align-content-lg-end {
    align-content: flex-end !important;
  }

  .align-content-lg-center {
    align-content: center !important;
  }

  .align-content-lg-between {
    align-content: space-between !important;
  }

  .align-content-lg-around {
    align-content: space-around !important;
  }

  .align-content-lg-stretch {
    align-content: stretch !important;
  }

  .align-self-lg-auto {
    align-self: auto !important;
  }

  .align-self-lg-start {
    align-self: flex-start !important;
  }

  .align-self-lg-end {
    align-self: flex-end !important;
  }

  .align-self-lg-center {
    align-self: center !important;
  }

  .align-self-lg-baseline {
    align-self: baseline !important;
  }

  .align-self-lg-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 1200px) {
  .flex-xl-row {
    flex-direction: row !important;
  }

  .flex-xl-column {
    flex-direction: column !important;
  }

  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }

  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-xl-start {
    justify-content: flex-start !important;
  }

  .justify-content-xl-end {
    justify-content: flex-end !important;
  }

  .justify-content-xl-center {
    justify-content: center !important;
  }

  .justify-content-xl-between {
    justify-content: space-between !important;
  }

  .justify-content-xl-around {
    justify-content: space-around !important;
  }

  .align-items-xl-start {
    align-items: flex-start !important;
  }

  .align-items-xl-end {
    align-items: flex-end !important;
  }

  .align-items-xl-center {
    align-items: center !important;
  }

  .align-items-xl-baseline {
    align-items: baseline !important;
  }

  .align-items-xl-stretch {
    align-items: stretch !important;
  }

  .align-content-xl-start {
    align-content: flex-start !important;
  }

  .align-content-xl-end {
    align-content: flex-end !important;
  }

  .align-content-xl-center {
    align-content: center !important;
  }

  .align-content-xl-between {
    align-content: space-between !important;
  }

  .align-content-xl-around {
    align-content: space-around !important;
  }

  .align-content-xl-stretch {
    align-content: stretch !important;
  }

  .align-self-xl-auto {
    align-self: auto !important;
  }

  .align-self-xl-start {
    align-self: flex-start !important;
  }

  .align-self-xl-end {
    align-self: flex-end !important;
  }

  .align-self-xl-center {
    align-self: center !important;
  }

  .align-self-xl-baseline {
    align-self: baseline !important;
  }

  .align-self-xl-stretch {
    align-self: stretch !important;
  }
}
.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.mw-100 {
  max-width: 100% !important;
}

.mh-100 {
  max-height: 100% !important;
}

.m-0 {
  margin: 0 !important;
}

.mt-0,
.my-0 {
  margin-top: 0 !important;
}

.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.mt-1,
.my-1 {
  margin-top: 0.25rem !important;
}

.mr-1,
.mx-1 {
  margin-right: 0.25rem !important;
}

.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1,
.mx-1 {
  margin-left: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mt-2,
.my-2 {
  margin-top: 0.5rem !important;
}

.mr-2,
.mx-2 {
  margin-right: 0.5rem !important;
}

.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2,
.mx-2 {
  margin-left: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.mt-3,
.my-3 {
  margin-top: 1rem !important;
}

.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}

.mb-3,
.my-3 {
  margin-bottom: 1rem !important;
}

.ml-3,
.mx-3 {
  margin-left: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.mt-4,
.my-4 {
  margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
  margin-right: 1.5rem !important;
}

.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
  margin-left: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.mt-5,
.my-5 {
  margin-top: 3rem !important;
}

.mr-5,
.mx-5 {
  margin-right: 3rem !important;
}

.mb-5,
.my-5 {
  margin-bottom: 3rem !important;
}

.ml-5,
.mx-5 {
  margin-left: 3rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0,
.py-0 {
  padding-top: 0 !important;
}

.pr-0,
.px-0 {
  padding-right: 0 !important;
}

.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
  padding-left: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.pt-1,
.py-1 {
  padding-top: 0.25rem !important;
}

.pr-1,
.px-1 {
  padding-right: 0.25rem !important;
}

.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1,
.px-1 {
  padding-left: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-2,
.py-2 {
  padding-top: 0.5rem !important;
}

.pr-2,
.px-2 {
  padding-right: 0.5rem !important;
}

.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2,
.px-2 {
  padding-left: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.pt-3,
.py-3 {
  padding-top: 1rem !important;
}

.pr-3,
.px-3 {
  padding-right: 1rem !important;
}

.pb-3,
.py-3 {
  padding-bottom: 1rem !important;
}

.pl-3,
.px-3 {
  padding-left: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.pt-4,
.py-4 {
  padding-top: 1.5rem !important;
}

.pr-4,
.px-4 {
  padding-right: 1.5rem !important;
}

.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
  padding-left: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-5,
.py-5 {
  padding-top: 3rem !important;
}

.pr-5,
.px-5 {
  padding-right: 3rem !important;
}

.pb-5,
.py-5 {
  padding-bottom: 3rem !important;
}

.pl-5,
.px-5 {
  padding-left: 3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mt-auto,
.my-auto {
  margin-top: auto !important;
}

.mr-auto,
.mx-auto {
  margin-right: auto !important;
}

.mb-auto,
.my-auto {
  margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
  margin-left: auto !important;
}

@media (min-width: 576px) {
  .m-sm-0 {
    margin: 0 !important;
  }

  .mt-sm-0,
.my-sm-0 {
    margin-top: 0 !important;
  }

  .mr-sm-0,
.mx-sm-0 {
    margin-right: 0 !important;
  }

  .mb-sm-0,
.my-sm-0 {
    margin-bottom: 0 !important;
  }

  .ml-sm-0,
.mx-sm-0 {
    margin-left: 0 !important;
  }

  .m-sm-1 {
    margin: 0.25rem !important;
  }

  .mt-sm-1,
.my-sm-1 {
    margin-top: 0.25rem !important;
  }

  .mr-sm-1,
.mx-sm-1 {
    margin-right: 0.25rem !important;
  }

  .mb-sm-1,
.my-sm-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-sm-1,
.mx-sm-1 {
    margin-left: 0.25rem !important;
  }

  .m-sm-2 {
    margin: 0.5rem !important;
  }

  .mt-sm-2,
.my-sm-2 {
    margin-top: 0.5rem !important;
  }

  .mr-sm-2,
.mx-sm-2 {
    margin-right: 0.5rem !important;
  }

  .mb-sm-2,
.my-sm-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-sm-2,
.mx-sm-2 {
    margin-left: 0.5rem !important;
  }

  .m-sm-3 {
    margin: 1rem !important;
  }

  .mt-sm-3,
.my-sm-3 {
    margin-top: 1rem !important;
  }

  .mr-sm-3,
.mx-sm-3 {
    margin-right: 1rem !important;
  }

  .mb-sm-3,
.my-sm-3 {
    margin-bottom: 1rem !important;
  }

  .ml-sm-3,
.mx-sm-3 {
    margin-left: 1rem !important;
  }

  .m-sm-4 {
    margin: 1.5rem !important;
  }

  .mt-sm-4,
.my-sm-4 {
    margin-top: 1.5rem !important;
  }

  .mr-sm-4,
.mx-sm-4 {
    margin-right: 1.5rem !important;
  }

  .mb-sm-4,
.my-sm-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-sm-4,
.mx-sm-4 {
    margin-left: 1.5rem !important;
  }

  .m-sm-5 {
    margin: 3rem !important;
  }

  .mt-sm-5,
.my-sm-5 {
    margin-top: 3rem !important;
  }

  .mr-sm-5,
.mx-sm-5 {
    margin-right: 3rem !important;
  }

  .mb-sm-5,
.my-sm-5 {
    margin-bottom: 3rem !important;
  }

  .ml-sm-5,
.mx-sm-5 {
    margin-left: 3rem !important;
  }

  .p-sm-0 {
    padding: 0 !important;
  }

  .pt-sm-0,
.py-sm-0 {
    padding-top: 0 !important;
  }

  .pr-sm-0,
.px-sm-0 {
    padding-right: 0 !important;
  }

  .pb-sm-0,
.py-sm-0 {
    padding-bottom: 0 !important;
  }

  .pl-sm-0,
.px-sm-0 {
    padding-left: 0 !important;
  }

  .p-sm-1 {
    padding: 0.25rem !important;
  }

  .pt-sm-1,
.py-sm-1 {
    padding-top: 0.25rem !important;
  }

  .pr-sm-1,
.px-sm-1 {
    padding-right: 0.25rem !important;
  }

  .pb-sm-1,
.py-sm-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-sm-1,
.px-sm-1 {
    padding-left: 0.25rem !important;
  }

  .p-sm-2 {
    padding: 0.5rem !important;
  }

  .pt-sm-2,
.py-sm-2 {
    padding-top: 0.5rem !important;
  }

  .pr-sm-2,
.px-sm-2 {
    padding-right: 0.5rem !important;
  }

  .pb-sm-2,
.py-sm-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-sm-2,
.px-sm-2 {
    padding-left: 0.5rem !important;
  }

  .p-sm-3 {
    padding: 1rem !important;
  }

  .pt-sm-3,
.py-sm-3 {
    padding-top: 1rem !important;
  }

  .pr-sm-3,
.px-sm-3 {
    padding-right: 1rem !important;
  }

  .pb-sm-3,
.py-sm-3 {
    padding-bottom: 1rem !important;
  }

  .pl-sm-3,
.px-sm-3 {
    padding-left: 1rem !important;
  }

  .p-sm-4 {
    padding: 1.5rem !important;
  }

  .pt-sm-4,
.py-sm-4 {
    padding-top: 1.5rem !important;
  }

  .pr-sm-4,
.px-sm-4 {
    padding-right: 1.5rem !important;
  }

  .pb-sm-4,
.py-sm-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-sm-4,
.px-sm-4 {
    padding-left: 1.5rem !important;
  }

  .p-sm-5 {
    padding: 3rem !important;
  }

  .pt-sm-5,
.py-sm-5 {
    padding-top: 3rem !important;
  }

  .pr-sm-5,
.px-sm-5 {
    padding-right: 3rem !important;
  }

  .pb-sm-5,
.py-sm-5 {
    padding-bottom: 3rem !important;
  }

  .pl-sm-5,
.px-sm-5 {
    padding-left: 3rem !important;
  }

  .m-sm-auto {
    margin: auto !important;
  }

  .mt-sm-auto,
.my-sm-auto {
    margin-top: auto !important;
  }

  .mr-sm-auto,
.mx-sm-auto {
    margin-right: auto !important;
  }

  .mb-sm-auto,
.my-sm-auto {
    margin-bottom: auto !important;
  }

  .ml-sm-auto,
.mx-sm-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 768px) {
  .m-md-0 {
    margin: 0 !important;
  }

  .mt-md-0,
.my-md-0 {
    margin-top: 0 !important;
  }

  .mr-md-0,
.mx-md-0 {
    margin-right: 0 !important;
  }

  .mb-md-0,
.my-md-0 {
    margin-bottom: 0 !important;
  }

  .ml-md-0,
.mx-md-0 {
    margin-left: 0 !important;
  }

  .m-md-1 {
    margin: 0.25rem !important;
  }

  .mt-md-1,
.my-md-1 {
    margin-top: 0.25rem !important;
  }

  .mr-md-1,
.mx-md-1 {
    margin-right: 0.25rem !important;
  }

  .mb-md-1,
.my-md-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-md-1,
.mx-md-1 {
    margin-left: 0.25rem !important;
  }

  .m-md-2 {
    margin: 0.5rem !important;
  }

  .mt-md-2,
.my-md-2 {
    margin-top: 0.5rem !important;
  }

  .mr-md-2,
.mx-md-2 {
    margin-right: 0.5rem !important;
  }

  .mb-md-2,
.my-md-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-md-2,
.mx-md-2 {
    margin-left: 0.5rem !important;
  }

  .m-md-3 {
    margin: 1rem !important;
  }

  .mt-md-3,
.my-md-3 {
    margin-top: 1rem !important;
  }

  .mr-md-3,
.mx-md-3 {
    margin-right: 1rem !important;
  }

  .mb-md-3,
.my-md-3 {
    margin-bottom: 1rem !important;
  }

  .ml-md-3,
.mx-md-3 {
    margin-left: 1rem !important;
  }

  .m-md-4 {
    margin: 1.5rem !important;
  }

  .mt-md-4,
.my-md-4 {
    margin-top: 1.5rem !important;
  }

  .mr-md-4,
.mx-md-4 {
    margin-right: 1.5rem !important;
  }

  .mb-md-4,
.my-md-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-md-4,
.mx-md-4 {
    margin-left: 1.5rem !important;
  }

  .m-md-5 {
    margin: 3rem !important;
  }

  .mt-md-5,
.my-md-5 {
    margin-top: 3rem !important;
  }

  .mr-md-5,
.mx-md-5 {
    margin-right: 3rem !important;
  }

  .mb-md-5,
.my-md-5 {
    margin-bottom: 3rem !important;
  }

  .ml-md-5,
.mx-md-5 {
    margin-left: 3rem !important;
  }

  .p-md-0 {
    padding: 0 !important;
  }

  .pt-md-0,
.py-md-0 {
    padding-top: 0 !important;
  }

  .pr-md-0,
.px-md-0 {
    padding-right: 0 !important;
  }

  .pb-md-0,
.py-md-0 {
    padding-bottom: 0 !important;
  }

  .pl-md-0,
.px-md-0 {
    padding-left: 0 !important;
  }

  .p-md-1 {
    padding: 0.25rem !important;
  }

  .pt-md-1,
.py-md-1 {
    padding-top: 0.25rem !important;
  }

  .pr-md-1,
.px-md-1 {
    padding-right: 0.25rem !important;
  }

  .pb-md-1,
.py-md-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-md-1,
.px-md-1 {
    padding-left: 0.25rem !important;
  }

  .p-md-2 {
    padding: 0.5rem !important;
  }

  .pt-md-2,
.py-md-2 {
    padding-top: 0.5rem !important;
  }

  .pr-md-2,
.px-md-2 {
    padding-right: 0.5rem !important;
  }

  .pb-md-2,
.py-md-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-md-2,
.px-md-2 {
    padding-left: 0.5rem !important;
  }

  .p-md-3 {
    padding: 1rem !important;
  }

  .pt-md-3,
.py-md-3 {
    padding-top: 1rem !important;
  }

  .pr-md-3,
.px-md-3 {
    padding-right: 1rem !important;
  }

  .pb-md-3,
.py-md-3 {
    padding-bottom: 1rem !important;
  }

  .pl-md-3,
.px-md-3 {
    padding-left: 1rem !important;
  }

  .p-md-4 {
    padding: 1.5rem !important;
  }

  .pt-md-4,
.py-md-4 {
    padding-top: 1.5rem !important;
  }

  .pr-md-4,
.px-md-4 {
    padding-right: 1.5rem !important;
  }

  .pb-md-4,
.py-md-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-md-4,
.px-md-4 {
    padding-left: 1.5rem !important;
  }

  .p-md-5 {
    padding: 3rem !important;
  }

  .pt-md-5,
.py-md-5 {
    padding-top: 3rem !important;
  }

  .pr-md-5,
.px-md-5 {
    padding-right: 3rem !important;
  }

  .pb-md-5,
.py-md-5 {
    padding-bottom: 3rem !important;
  }

  .pl-md-5,
.px-md-5 {
    padding-left: 3rem !important;
  }

  .m-md-auto {
    margin: auto !important;
  }

  .mt-md-auto,
.my-md-auto {
    margin-top: auto !important;
  }

  .mr-md-auto,
.mx-md-auto {
    margin-right: auto !important;
  }

  .mb-md-auto,
.my-md-auto {
    margin-bottom: auto !important;
  }

  .ml-md-auto,
.mx-md-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 992px) {
  .m-lg-0 {
    margin: 0 !important;
  }

  .mt-lg-0,
.my-lg-0 {
    margin-top: 0 !important;
  }

  .mr-lg-0,
.mx-lg-0 {
    margin-right: 0 !important;
  }

  .mb-lg-0,
.my-lg-0 {
    margin-bottom: 0 !important;
  }

  .ml-lg-0,
.mx-lg-0 {
    margin-left: 0 !important;
  }

  .m-lg-1 {
    margin: 0.25rem !important;
  }

  .mt-lg-1,
.my-lg-1 {
    margin-top: 0.25rem !important;
  }

  .mr-lg-1,
.mx-lg-1 {
    margin-right: 0.25rem !important;
  }

  .mb-lg-1,
.my-lg-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-lg-1,
.mx-lg-1 {
    margin-left: 0.25rem !important;
  }

  .m-lg-2 {
    margin: 0.5rem !important;
  }

  .mt-lg-2,
.my-lg-2 {
    margin-top: 0.5rem !important;
  }

  .mr-lg-2,
.mx-lg-2 {
    margin-right: 0.5rem !important;
  }

  .mb-lg-2,
.my-lg-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-lg-2,
.mx-lg-2 {
    margin-left: 0.5rem !important;
  }

  .m-lg-3 {
    margin: 1rem !important;
  }

  .mt-lg-3,
.my-lg-3 {
    margin-top: 1rem !important;
  }

  .mr-lg-3,
.mx-lg-3 {
    margin-right: 1rem !important;
  }

  .mb-lg-3,
.my-lg-3 {
    margin-bottom: 1rem !important;
  }

  .ml-lg-3,
.mx-lg-3 {
    margin-left: 1rem !important;
  }

  .m-lg-4 {
    margin: 1.5rem !important;
  }

  .mt-lg-4,
.my-lg-4 {
    margin-top: 1.5rem !important;
  }

  .mr-lg-4,
.mx-lg-4 {
    margin-right: 1.5rem !important;
  }

  .mb-lg-4,
.my-lg-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-lg-4,
.mx-lg-4 {
    margin-left: 1.5rem !important;
  }

  .m-lg-5 {
    margin: 3rem !important;
  }

  .mt-lg-5,
.my-lg-5 {
    margin-top: 3rem !important;
  }

  .mr-lg-5,
.mx-lg-5 {
    margin-right: 3rem !important;
  }

  .mb-lg-5,
.my-lg-5 {
    margin-bottom: 3rem !important;
  }

  .ml-lg-5,
.mx-lg-5 {
    margin-left: 3rem !important;
  }

  .p-lg-0 {
    padding: 0 !important;
  }

  .pt-lg-0,
.py-lg-0 {
    padding-top: 0 !important;
  }

  .pr-lg-0,
.px-lg-0 {
    padding-right: 0 !important;
  }

  .pb-lg-0,
.py-lg-0 {
    padding-bottom: 0 !important;
  }

  .pl-lg-0,
.px-lg-0 {
    padding-left: 0 !important;
  }

  .p-lg-1 {
    padding: 0.25rem !important;
  }

  .pt-lg-1,
.py-lg-1 {
    padding-top: 0.25rem !important;
  }

  .pr-lg-1,
.px-lg-1 {
    padding-right: 0.25rem !important;
  }

  .pb-lg-1,
.py-lg-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-lg-1,
.px-lg-1 {
    padding-left: 0.25rem !important;
  }

  .p-lg-2 {
    padding: 0.5rem !important;
  }

  .pt-lg-2,
.py-lg-2 {
    padding-top: 0.5rem !important;
  }

  .pr-lg-2,
.px-lg-2 {
    padding-right: 0.5rem !important;
  }

  .pb-lg-2,
.py-lg-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-lg-2,
.px-lg-2 {
    padding-left: 0.5rem !important;
  }

  .p-lg-3 {
    padding: 1rem !important;
  }

  .pt-lg-3,
.py-lg-3 {
    padding-top: 1rem !important;
  }

  .pr-lg-3,
.px-lg-3 {
    padding-right: 1rem !important;
  }

  .pb-lg-3,
.py-lg-3 {
    padding-bottom: 1rem !important;
  }

  .pl-lg-3,
.px-lg-3 {
    padding-left: 1rem !important;
  }

  .p-lg-4 {
    padding: 1.5rem !important;
  }

  .pt-lg-4,
.py-lg-4 {
    padding-top: 1.5rem !important;
  }

  .pr-lg-4,
.px-lg-4 {
    padding-right: 1.5rem !important;
  }

  .pb-lg-4,
.py-lg-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-lg-4,
.px-lg-4 {
    padding-left: 1.5rem !important;
  }

  .p-lg-5 {
    padding: 3rem !important;
  }

  .pt-lg-5,
.py-lg-5 {
    padding-top: 3rem !important;
  }

  .pr-lg-5,
.px-lg-5 {
    padding-right: 3rem !important;
  }

  .pb-lg-5,
.py-lg-5 {
    padding-bottom: 3rem !important;
  }

  .pl-lg-5,
.px-lg-5 {
    padding-left: 3rem !important;
  }

  .m-lg-auto {
    margin: auto !important;
  }

  .mt-lg-auto,
.my-lg-auto {
    margin-top: auto !important;
  }

  .mr-lg-auto,
.mx-lg-auto {
    margin-right: auto !important;
  }

  .mb-lg-auto,
.my-lg-auto {
    margin-bottom: auto !important;
  }

  .ml-lg-auto,
.mx-lg-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1200px) {
  .m-xl-0 {
    margin: 0 !important;
  }

  .mt-xl-0,
.my-xl-0 {
    margin-top: 0 !important;
  }

  .mr-xl-0,
.mx-xl-0 {
    margin-right: 0 !important;
  }

  .mb-xl-0,
.my-xl-0 {
    margin-bottom: 0 !important;
  }

  .ml-xl-0,
.mx-xl-0 {
    margin-left: 0 !important;
  }

  .m-xl-1 {
    margin: 0.25rem !important;
  }

  .mt-xl-1,
.my-xl-1 {
    margin-top: 0.25rem !important;
  }

  .mr-xl-1,
.mx-xl-1 {
    margin-right: 0.25rem !important;
  }

  .mb-xl-1,
.my-xl-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-xl-1,
.mx-xl-1 {
    margin-left: 0.25rem !important;
  }

  .m-xl-2 {
    margin: 0.5rem !important;
  }

  .mt-xl-2,
.my-xl-2 {
    margin-top: 0.5rem !important;
  }

  .mr-xl-2,
.mx-xl-2 {
    margin-right: 0.5rem !important;
  }

  .mb-xl-2,
.my-xl-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-xl-2,
.mx-xl-2 {
    margin-left: 0.5rem !important;
  }

  .m-xl-3 {
    margin: 1rem !important;
  }

  .mt-xl-3,
.my-xl-3 {
    margin-top: 1rem !important;
  }

  .mr-xl-3,
.mx-xl-3 {
    margin-right: 1rem !important;
  }

  .mb-xl-3,
.my-xl-3 {
    margin-bottom: 1rem !important;
  }

  .ml-xl-3,
.mx-xl-3 {
    margin-left: 1rem !important;
  }

  .m-xl-4 {
    margin: 1.5rem !important;
  }

  .mt-xl-4,
.my-xl-4 {
    margin-top: 1.5rem !important;
  }

  .mr-xl-4,
.mx-xl-4 {
    margin-right: 1.5rem !important;
  }

  .mb-xl-4,
.my-xl-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-xl-4,
.mx-xl-4 {
    margin-left: 1.5rem !important;
  }

  .m-xl-5 {
    margin: 3rem !important;
  }

  .mt-xl-5,
.my-xl-5 {
    margin-top: 3rem !important;
  }

  .mr-xl-5,
.mx-xl-5 {
    margin-right: 3rem !important;
  }

  .mb-xl-5,
.my-xl-5 {
    margin-bottom: 3rem !important;
  }

  .ml-xl-5,
.mx-xl-5 {
    margin-left: 3rem !important;
  }

  .p-xl-0 {
    padding: 0 !important;
  }

  .pt-xl-0,
.py-xl-0 {
    padding-top: 0 !important;
  }

  .pr-xl-0,
.px-xl-0 {
    padding-right: 0 !important;
  }

  .pb-xl-0,
.py-xl-0 {
    padding-bottom: 0 !important;
  }

  .pl-xl-0,
.px-xl-0 {
    padding-left: 0 !important;
  }

  .p-xl-1 {
    padding: 0.25rem !important;
  }

  .pt-xl-1,
.py-xl-1 {
    padding-top: 0.25rem !important;
  }

  .pr-xl-1,
.px-xl-1 {
    padding-right: 0.25rem !important;
  }

  .pb-xl-1,
.py-xl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-xl-1,
.px-xl-1 {
    padding-left: 0.25rem !important;
  }

  .p-xl-2 {
    padding: 0.5rem !important;
  }

  .pt-xl-2,
.py-xl-2 {
    padding-top: 0.5rem !important;
  }

  .pr-xl-2,
.px-xl-2 {
    padding-right: 0.5rem !important;
  }

  .pb-xl-2,
.py-xl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-xl-2,
.px-xl-2 {
    padding-left: 0.5rem !important;
  }

  .p-xl-3 {
    padding: 1rem !important;
  }

  .pt-xl-3,
.py-xl-3 {
    padding-top: 1rem !important;
  }

  .pr-xl-3,
.px-xl-3 {
    padding-right: 1rem !important;
  }

  .pb-xl-3,
.py-xl-3 {
    padding-bottom: 1rem !important;
  }

  .pl-xl-3,
.px-xl-3 {
    padding-left: 1rem !important;
  }

  .p-xl-4 {
    padding: 1.5rem !important;
  }

  .pt-xl-4,
.py-xl-4 {
    padding-top: 1.5rem !important;
  }

  .pr-xl-4,
.px-xl-4 {
    padding-right: 1.5rem !important;
  }

  .pb-xl-4,
.py-xl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-xl-4,
.px-xl-4 {
    padding-left: 1.5rem !important;
  }

  .p-xl-5 {
    padding: 3rem !important;
  }

  .pt-xl-5,
.py-xl-5 {
    padding-top: 3rem !important;
  }

  .pr-xl-5,
.px-xl-5 {
    padding-right: 3rem !important;
  }

  .pb-xl-5,
.py-xl-5 {
    padding-bottom: 3rem !important;
  }

  .pl-xl-5,
.px-xl-5 {
    padding-left: 3rem !important;
  }

  .m-xl-auto {
    margin: auto !important;
  }

  .mt-xl-auto,
.my-xl-auto {
    margin-top: auto !important;
  }

  .mr-xl-auto,
.mx-xl-auto {
    margin-right: auto !important;
  }

  .mb-xl-auto,
.my-xl-auto {
    margin-bottom: auto !important;
  }

  .ml-xl-auto,
.mx-xl-auto {
    margin-left: auto !important;
  }
}
.text-justify {
  text-align: justify !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

@media (min-width: 576px) {
  .text-sm-left {
    text-align: left !important;
  }

  .text-sm-right {
    text-align: right !important;
  }

  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important;
  }

  .text-md-right {
    text-align: right !important;
  }

  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important;
  }

  .text-lg-right {
    text-align: right !important;
  }

  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .text-xl-left {
    text-align: left !important;
  }

  .text-xl-right {
    text-align: right !important;
  }

  .text-xl-center {
    text-align: center !important;
  }
}
.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

.icon--BNN_Bloomberg, .icon--BNN_Bloomberg svg {
  width: undefinedpx;
  height: undefinedpx;
}

.icon--airbnb, .icon--airbnb svg {
  width: 123px;
  height: 38px;
}

.icon--alarm-bell-ring, .icon--alarm-bell-ring svg {
  width: 25px;
  height: 25px;
}

.icon--apple_store, .icon--apple_store svg {
  width: 135px;
  height: 40px;
}

.icon--binocular, .icon--binocular svg {
  width: 24px;
  height: 23px;
}

.icon--cisco, .icon--cisco svg {
  width: 95px;
  height: 49px;
}

.icon--cnn, .icon--cnn svg {
  width: 80px;
  height: 38px;
}

.icon--cog-circle, .icon--cog-circle svg {
  width: 64px;
  height: 64px;
}

.icon--drainage, .icon--drainage svg {
  width: 64px;
  height: 64px;
}

.icon--ebay, .icon--ebay svg {
  width: 99px;
  height: 40px;
}

.icon--equipment, .icon--equipment svg {
  width: 78px;
  height: 64px;
}

.icon--facebook, .icon--facebook svg {
  width: 24px;
  height: 24px;
}

.icon--google, .icon--google svg {
  width: 110px;
  height: 35px;
}

.icon--google_play, .icon--google_play svg {
  width: 136px;
  height: 40px;
}

.icon--high-resolution, .icon--high-resolution svg {
  width: 18px;
  height: 18px;
}

.icon--historical-perspective, .icon--historical-perspective svg {
  width: 21px;
  height: 21px;
}

.icon--instagram, .icon--instagram svg {
  width: 24px;
  height: 24px;
}

.icon--intelinair_logotype, .icon--intelinair_logotype svg {
  width: 185px;
  height: 40px;
}

.icon--irrigation, .icon--irrigation svg {
  width: 64px;
  height: 64px;
}

.icon--john_deere, .icon--john_deere svg {
  width: 1823.665px;
  height: 1212.475px;
}

.icon--linkedin, .icon--linkedin svg {
  width: 26px;
  height: 26px;
}

.icon--management, .icon--management svg {
  width: 64px;
  height: 64px;
}

.icon--network, .icon--network svg {
  width: 24px;
  height: 24px;
}

.icon--performance-increase, .icon--performance-increase svg {
  width: 24px;
  height: 24px;
}

.icon--pest, .icon--pest svg {
  width: 64px;
  height: 64px;
}

.icon--pie-line-graph, .icon--pie-line-graph svg {
  width: 18px;
  height: 18px;
}

.icon--scouting, .icon--scouting svg {
  width: 64px;
  height: 64px;
}

.icon--shield-search, .icon--shield-search svg {
  width: 64px;
  height: 64px;
}

.icon--shield-warning, .icon--shield-warning svg {
  width: 64px;
  height: 64px;
}

.icon--twitter, .icon--twitter svg {
  width: 24px;
  height: 24px;
}

.icon--uber, .icon--uber svg {
  width: 159px;
  height: 22px;
}

p,
ul,
ol,
dl {
  margin-top: 0;
  font-family: AktivGrotesk, system-ui, -apple-system, BlinkMacSystemFont, “Segoe UI”, “Roboto”, “Oxygen”, “Ubuntu”, “Cantarell”, “Fira Sans”, “Droid Sans”, “Helvetica Neue”, sans-serif;
  font-size: 16px;
  line-height: 25px;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-variant-ligatures: common-ligatures;
  font-variant-numeric: oldstyle-nums;
  font-kerning: normal;
}
p b,
p strong,
ul b,
ul strong,
ol b,
ol strong,
dl b,
dl strong {
  font-weight: 600;
}
p i,
p em,
ul i,
ul em,
ol i,
ol em,
dl i,
dl em {
  font-style: italic;
}
p::before, p::after,
ul::before,
ul::after,
ol::before,
ol::after,
dl::before,
dl::after {
  content: "";
  display: block;
}
p::before,
ul::before,
ol::before,
dl::before {
  padding-top: 0px;
}
p::after,
ul::after,
ol::after,
dl::after {
  margin-bottom: 0px;
}

h1 {
  font-weight: 700;
}

h2,
h3,
h4 {
  font-weight: 500;
}

ul li {
  list-style-type: none;
}

img {
  border: 0 none;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}
a:active, a:hover {
  outline: 0;
}

hr {
  border: 0;
  height: 1px;
  background-color: #f2f2f2;
  margin: 0;
}

p b {
  font-weight: 500;
}

.bold {
  font-weight: 500;
}

.light {
  color: #828282;
}

.link {
  font-family: AktivGrotesk, system-ui, -apple-system, BlinkMacSystemFont, “Segoe UI”, “Roboto”, “Oxygen”, “Ubuntu”, “Cantarell”, “Fira Sans”, “Droid Sans”, “Helvetica Neue”, sans-serif;
  font-size: 13px;
  line-height: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-transform: uppercase;
  font-variant-ligatures: common-ligatures;
  font-variant-numeric: oldstyle-nums;
  font-kerning: normal;
  color: #000;
  position: relative;
}
.link b,
.link strong {
  font-weight: 600;
}
.link i,
.link em {
  font-style: italic;
}
.link::before, .link::after {
  content: "";
  display: block;
}
.link::before {
  padding-top: 0px;
}
.link::after {
  margin-bottom: 0px;
}
.link::after {
  position: absolute;
  width: 100%;
  content: "";
  height: 2px;
  bottom: -8px;
  background-color: #01BC66;
}
.link--dark {
  color: #000;
}

.keyword {
  font-family: AktivGrotesk, system-ui, -apple-system, BlinkMacSystemFont, “Segoe UI”, “Roboto”, “Oxygen”, “Ubuntu”, “Cantarell”, “Fira Sans”, “Droid Sans”, “Helvetica Neue”, sans-serif;
  font-size: 12px;
  line-height: 15px;
  font-weight: 500;
  letter-spacing: 0.15em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-transform: uppercase;
  font-variant-ligatures: common-ligatures;
  font-variant-numeric: oldstyle-nums;
  font-kerning: normal;
  color: #999;
}
.keyword b,
.keyword strong {
  font-weight: 600;
}
.keyword i,
.keyword em {
  font-style: italic;
}
.keyword::before, .keyword::after {
  content: "";
  display: block;
}
.keyword::before {
  padding-top: 0px;
}
.keyword::after {
  margin-bottom: 0px;
}
@media screen and (min-width: 990px) {
  .keyword {
    font-size: 13px;
    line-height: 15px;
  }
  .keyword::before {
    padding-top: 0px;
  }
  .keyword::after {
    margin-bottom: 0px;
  }
}

ul.feature li {
  list-style-type: initial;
  line-height: 30px;
  color: #828282;
}
ul.feature li:first-child {
  color: #18342C !important;
  list-style-type: none;
  font-weight: 500;
  margin-bottom: 0.5rem;
  padding-left: 0 !important;
}
ul.feature li:first-child:before {
  display: none;
}

ul.bullets {
  padding-left: 1rem;
}
ul.bullets li {
  list-style-type: initial;
}

.js-hide {
  display: none;
}

.js-show {
  display: block;
}

.btn {
  font-size: 18px;
  display: inline-block;
  min-width: 214px;
  width: auto;
  border: 1px solid #01BC66;
  border-radius: 8px;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  cursor: pointer;
  transition: all 0.1s ease-out;
  -webkit-appearance: none;
  height: 64px;
  line-height: 64px;
  padding: 0 20px;
  text-align: center;
  background-color: #01BC66;
  color: white;
  text-decoration: none;
  box-sizing: border-box;
  font-weight: 500;
}
.btn:hover {
  box-shadow: 0px 5px 20px 0 rgba(1, 188, 102, 0.15);
}
.btn--secondary {
  border: none;
  color: white;
  background: linear-gradient(45deg, #16bd5d 0%, #5ec240 100%);
  box-shadow: 0px 25px 50px rgba(54, 191, 79, 0.15);
}
.btn--secondary:hover {
  color: #fff;
  background: linear-gradient(45deg, #01BC66 0%, #01BC66 100%);
  box-shadow: 0px 25px 50px rgba(54, 191, 79, 0.15);
}
.btn--glow {
  box-shadow: 0px 10px 30px rgba(1, 188, 102, 0.5);
}
.btn--glow:hover {
  box-shadow: 0px 10px 30px rgba(1, 188, 102, 0.5);
}

button.scroll_down {
  height: 64px;
  width: 40px;
  background-color: transparent;
  border: 2px solid #fff;
  border-radius: 20px;
  cursor: pointer;
  outline: none;
  position: relative;
}
button.scroll_down:before {
  position: absolute;
  top: 10px;
  left: 50%;
  content: "";
  width: 4px;
  height: 12px;
  background-color: #fff;
  border-radius: 100%;
  margin-left: -2px;
  animation: scrollDown 2s infinite;
  box-sizing: border-box;
  border-radius: 2px;
}
button.scroll_down:after {
  width: 13px;
  height: 13px;
  background: transparent url("/dist/images/ArrowDown-white.svg") left top no-repeat;
  background-size: 13px;
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-top: 9px;
  transform: translate3d(-50%, 0, 0);
}
button.scroll_down--dark {
  border-color: #AFAFAF;
}
button.scroll_down--dark:before {
  background: #AFAFAF;
}
button.scroll_down--dark:after {
  background: transparent url("/dist/images/ArrowDown.svg") left top;
}

@keyframes scrollDown {
  0% {
    transform: translate3d(0, 0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    transform: translate3d(0, 20px, 0);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
/* fade image in after load */
.lazyload,
.lazyloading {
  opacity: 0;
}

.lazyloaded {
  opacity: 1;
  transition: opacity 300ms ease-out;
}

.a-image {
  position: relative;
  flex: 0 0 auto;
  width: 100%;
  padding-bottom: 75%;
  overflow: hidden;
  background-color: #f2f2f2;
  border-radius: 8px;
  transition: 300ms ease-out;
}
.a-image--illustration {
  background-color: transparent;
}
.a-image img {
  position: absolute;
  left: 0;
  top: 0;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  object-fit: cover;
  font-family: "object-fit: cover;";
  transition: opacity 0.6s cubic-bezier(0.23, 1, 0.32, 1), transform 1s cubic-bezier(0.23, 1, 0.32, 1);
}
.a-image img.lazyload {
  opacity: 0;
  transform: scale3d(1.1, 1.1, 1.1);
}
.a-image img.lazyloaded {
  opacity: 1;
  transform: scale3d(1, 1, 1);
}
.a-image__tag {
  position: absolute;
  bottom: 0;
  left: 0;
  text-transform: uppercase;
  padding: 0 15px;
  background-color: #0E2B23;
  color: #fff;
  border-radius: 0px 8px;
  font-weight: 700;
  font-size: 12px;
  padding-top: 3px;
  letter-spacing: 2px;
  line-height: 30px;
}
.a-image__bio {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  padding: 15px 20px 40px;
  background-color: rgba(0, 0, 0, 0.75);
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  z-index: 1000;
  cursor: pointer;
  opacity: 0;
  transition: 300ms ease-out;
  overflow-y: auto;
  color: #fff;
}
.a-image.portrait {
  padding-bottom: 140%;
}
.a-image:hover .a-image__bio {
  opacity: 1;
}

.linkedin-link {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 8px;
  z-index: 1010;
}
.linkedin-link img, .linkedin-link svg {
  width: 40px;
  height: 40px;
  display: block;
}

.a-form {
  display: flex;
  background: #f1f8f3;
  box-shadow: 0px 64px 64px rgba(35, 35, 35, 0.03);
  border-radius: 8px;
}
.a-form input[type=submit] {
  appearance: none;
  margin: 0;
  padding: 0;
  font-family: inherit;
  font-size: inherit;
  background-color: transparent;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  cursor: pointer;
  -webkit-appearance: none;
  -webkit-border-radius: 0px;
  background-color: #01BC66;
  font-size: 20px;
  color: #fff;
  font-weight: 500;
  padding-left: 53px;
  padding-right: 53px;
  border-radius: 0 8px 8px 0;
  box-shadow: 0px 10px 30px rgba(1, 188, 102, 0.5);
}
.a-form input[type=submit] svg {
  display: block;
}
@media only screen and (max-width: 1000px) {
  .a-form input[type=submit] {
    font-size: 16px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.a-form input[type=email] {
  margin: 0;
  border: 0;
  padding: 0 2rem;
  display: inline-block;
  vertical-align: middle;
  white-space: normal;
  background: none;
  line-height: 65px;
  font-size: 20px;
  width: 100%;
}
@media only screen and (max-width: 1000px) {
  .a-form input[type=email] {
    font-size: 16px;
  }
}
.a-form input[type=email]::placeholder {
  color: #bfbfbf;
}
.a-form input[type=email]:focus {
  outline: 0;
}

.contactus-form input, .contactus-form textarea, .contactus-form select {
  box-shadow: 0px 64px 64px rgba(35, 35, 35, 0.03), 0px 8px 8px rgba(42, 42, 42, 0.03), 0px 4px 4px rgba(49, 49, 49, 0.03), 0px 2px 2px rgba(45, 45, 45, 0.03);
  border-radius: 8px;
  margin: 0;
  margin-bottom: 32px;
  width: 100%;
}
.contactus-form input.btn {
  width: auto;
}
.contactus-form .row {
  margin-left: 0;
  margin-right: 0;
}
.contactus-form input[type=email] {
  border: 0;
  padding: 0 15px 0 24px;
  display: inline-block;
  vertical-align: middle;
  white-space: normal;
  background: none;
  line-height: 64px;
  font-size: 16px;
  width: 100% !important;
  background: #fff !important;
}
.contactus-form input[type=email]::placeholder {
  color: #575757;
}
.contactus-form input[type=email]:focus {
  outline: 0;
}
.contactus-form select {
  border: 0;
  padding: 0 15px 0 24px;
  display: inline-block;
  vertical-align: middle;
  white-space: normal;
  background: none;
  line-height: 64px;
  height: 64px;
  font-size: 16px;
  width: 100% !important;
  -webkit-appearance: none;
  appearance: none;
  color: #575757;
  background: #fff url("/dist/images/select.svg") no-repeat 100% 50% !important;
  background-size: 33px 14px;
}
.contactus-form select::placeholder {
  color: #575757;
}
.contactus-form select:focus {
  outline: 0;
}
.contactus-form select::-ms-expand {
  display: none;
}
.contactus-form input[type=text] {
  border: 0;
  padding: 0 15px 0 24px;
  display: inline-block;
  vertical-align: middle;
  white-space: normal;
  background: none;
  line-height: 64px;
  font-size: 16px;
  width: 100% !important;
  background: #fff !important;
}
.contactus-form input[type=text]::placeholder {
  color: #575757;
}
.contactus-form input[type=text]:focus {
  outline: 0;
}
.contactus-form .message {
  border: 0;
  padding: 15px 15px 10px 24px;
  display: inline-block;
  vertical-align: middle;
  white-space: normal;
  background: none;
  font-size: 16px;
  width: 100% !important;
  height: 240px;
  overflow: auto;
  resize: none;
  background: #fff !important;
}
.contactus-form .message::placeholder {
  color: #575757;
}
.contactus-form .message:focus {
  outline: 0;
}

.a-form--wrapper {
  margin: 0 auto -119px;
  max-width: 976px;
  background: #fff;
  border-radius: 26px;
  padding: 33px 9.5% 36px;
  filter: drop-shadow(0px 64px 64px rgba(35, 35, 35, 0.06));
}
.a-form--wrapper__transparent {
  margin-bottom: 0;
  padding: 90px 0 95px;
  max-width: 570px;
  filter: none;
  border-radius: 0;
  background: transparent;
}
.a-form--wrapper .a-form {
  background: #dff3ea;
}

.a-form--note {
  margin: 25px auto 0;
  max-width: 500px;
  font-size: 20px;
  font-weight: normal;
  line-height: 1.6;
  color: rgba(111, 119, 117, 0.5);
}
.a-form--note a {
  text-decoration: underline;
  color: rgba(111, 119, 117, 0.5);
}
.a-form--note a:hover {
  color: #333;
}

.investment--note {
  font-size: 32px;
  text-align: center;
  color: #6F7775;
  margin-bottom: 15px;
}
.investment--note a {
  color: #01BC66;
  text-decoration: underline;
}

.investment--image {
  max-width: 1247px;
  margin: 94px auto 30px;
}

.people__information {
  display: flex;
  justify-content: space-between;
}
.people__information h6 {
  font-size: 20px !important;
  font-weight: bold !important;
}
.people__information .icon {
  margin-top: 1rem;
  margin-left: 1rem;
}

.mobileNav {
  position: fixed;
  z-index: 100;
  transition: opacity 0.2s ease-in-out;
  pointer-events: inherit;
  visibility: visible;
}
.mobileNav.is-hidden {
  opacity: 0;
  pointer-events: none;
}
@media (min-width: 992px) {
  .mobileNav {
    display: none;
    visibility: hidden;
  }
}

.mobileNav.is-closed .mobileNav__page-overlay {
  background-color: rgba(0, 0, 0, 0);
  user-select: none;
  pointer-events: none;
}
.mobileNav.is-closed .mobileNav__panel {
  transform: translate3d(100%, 0, 0);
  transition-delay: 0s;
}
.mobileNav.is-closed .mobileNav__link-stack {
  opacity: 0;
}
.mobileNav.is-closed .mobileNav__link-stack li span {
  transform: translateX(30px);
  opacity: 0;
  transition-delay: 0s;
}
.mobileNav.is-closed .mobileNav__hamburger-box span {
  background-color: #0E2B23;
}

.mobileNav__nav-bar,
.mobileNav__nav-bar-inner {
  height: 70px;
  width: 100%;
  position: relative;
  z-index: 100;
  background-color: #fff;
  box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.02);
}
.mobileNav__nav-bar h1,
.mobileNav__nav-bar-inner h1 {
  margin-top: 0;
}
@media (min-width: 768px) {
  .mobileNav__nav-bar,
.mobileNav__nav-bar-inner {
    height: 80px;
  }
}

.mobileNav__nav-bar-inner {
  position: fixed;
  top: -1px;
  left: 0;
  right: 0;
  z-index: 9;
}

.mobileNav__nav-bar-layout {
  height: 100%;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
  padding-left: 20px;
  padding-right: 20px;
  transition: background-color 200ms ease-out;
}
.mobileNav__nav-bar-layout--not-top {
  background-color: #fff;
  box-shadow: 0 19px 38px rgba(0, 0, 0, 0.02), 0 15px 12px rgba(0, 0, 0, 0.01);
}

.mobileNav__nav-bar-logo {
  display: block;
  width: 120px;
  height: auto;
  transition: all 0.2s ease;
}

.mobileNav__page-overlay {
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  will-change: background-color;
  transition: background-color 0.6s ease-out;
}

.mobileNav__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
  background-color: #fff;
  padding-top: 5rem;
  transform: translate3d(0, 0, 0);
  will-change: transform;
  transition: transform 400ms cubic-bezier(0.32, 0.24, 0.1, 1);
  transition-delay: 0.1s;
  color: #fff;
}

.mobileNav__links {
  position: relative;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  padding-top: 0;
  padding-right: 20px;
  padding-left: 20px;
}

.mobileNav__link-stack {
  padding-top: 1px;
  opacity: 1;
  transition: transform 0.3s ease, opacity 400ms ease;
  transition-delay: 0.2s;
}
.mobileNav__link-stack li button,
.mobileNav__link-stack li a {
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  background-color: transparent;
  text-decoration: none;
  text-align: left;
  cursor: pointer;
  color: transparent;
  user-select: none;
  color: #0E2B23;
  line-height: 50px;
  transition: all 400ms ease-out;
  text-align: right;
  font-size: 25px;
}
@media (min-width: 576px) {
  .mobileNav__link-stack li button,
.mobileNav__link-stack li a {
    font-size: 30px;
    line-height: 55px;
  }
}
@media (min-width: 768px) {
  .mobileNav__link-stack li button,
.mobileNav__link-stack li a {
    font-size: 35px;
    line-height: 70px;
  }
}
.mobileNav__link-stack li button.isActive,
.mobileNav__link-stack li a.isActive {
  text-shadow: none;
  color: #01BC66;
}
html[data-whatinput=keyboard] .mobileNav__link-stack li button:focus,
html[data-whatinput=keyboard] .mobileNav__link-stack li a:focus {
  outline: 0;
}
.mobileNav__link-stack li span {
  display: inline-block;
  transform: translateX(0);
  opacity: 1;
  transition: transform 0.4s ease, opacity 0.4s ease;
  transition-delay: 200ms;
}
.mobileNav__link-stack li:nth-child(1) span {
  transition-delay: 225ms;
}
.mobileNav__link-stack li:nth-child(2) span {
  transition-delay: 250ms;
}
.mobileNav__link-stack li:nth-child(3) span {
  transition-delay: 275ms;
}
.mobileNav__link-stack li:nth-child(4) span {
  transition-delay: 300ms;
}
.mobileNav__link-stack li:nth-child(5) span {
  transition-delay: 325ms;
}
.mobileNav__link-stack li:nth-child(6) span {
  transition-delay: 350ms;
}
.mobileNav__link-stack li:nth-child(7) span {
  transition-delay: 375ms;
}
.mobileNav__link-stack--secondary {
  margin-bottom: 2rem;
}
.mobileNav__link-stack--secondary li a {
  color: rgba(0, 0, 0, 0.6);
  text-decoration: none;
  font-weight: bold;
}

.mobileNav__hamburger {
  padding: 10px 10px;
  display: block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
  position: relative;
  z-index: 99;
  outline: none;
  margin-right: -10px;
}
.mobileNav__hamburger-box {
  width: 27px;
  height: 16px;
  display: block;
  position: relative;
  transition: transform 0.12s ease-in-out;
}
.mobileNav__hamburger-box span {
  display: block;
  height: 2px;
  width: 27px;
  background-color: #0E2B23;
  transition: all 0.4s ease-in-out;
}

.mobileNav__hamburger-middle {
  margin-top: 5px;
  margin-bottom: 5px;
  right: 0;
}

.mobileNav__hamburger--squeeze.is-active .mobileNav__hamburger-top {
  transform: translateY(5px) rotateZ(45deg);
}
.mobileNav__hamburger--squeeze.is-active .mobileNav__hamburger-bottom {
  transform: translateY(-9px) rotateZ(-45deg);
}
.mobileNav__hamburger--squeeze.is-active .mobileNav__hamburger-middle {
  width: 0px;
}

.testimonials {
  padding-top: 69px;
  padding-bottom: 87px;
  background: #EAF6F0 url("/dist/images/background.png") no-repeat 50% 50%;
  background-size: cover;
  display: flex;
  align-items: center;
}
.testimonials .col-md-4 {
  padding-left: 15px;
  padding-right: 15px;
}
.testimonials .flickity-button {
  display: none !important;
}
.testimonials .flickity-page-dots .dot {
  margin: 0 12px;
  background-color: #1CBE5A;
  border: 2px solid #1CBE5A;
  vertical-align: middle;
}
.testimonials .flickity-page-dots .dot.is-selected {
  border: 2px solid #1CBE5A;
  background-color: transparent;
  width: 12px;
  height: 12px;
}
.testimonials .sectionCarousel .flickity-page-dots {
  bottom: 0px;
}
.testimonials__item {
  margin: 0 auto 110px;
  max-width: 423px;
  color: #000;
  position: relative;
  min-height: 247px;
  border-radius: 27px;
  box-shadow: 0px 50px 50px rgba(35, 35, 35, 0.06);
  background: #fff url("/dist/images/quote.svg") no-repeat 15px 13px;
  background-size: 40px;
}
@media (max-width: 767.98px) {
  .testimonials__item {
    margin-bottom: 90px;
  }
}
.testimonials__header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 65px 11% 10px;
}
.testimonials__name {
  font-weight: bold;
  font-size: 18px;
  color: #18342C;
}
.testimonials__company {
  font-weight: 500;
  font-size: 16px;
  color: #18342C;
}
.testimonials__content {
  color: #6F7775;
  font-size: 16px;
  line-height: 1.5;
  text-align: left;
  padding: 10px 8% 10px 11%;
}
.testimonials h3 {
  margin-bottom: 43px;
}
.testimonials__avatar {
  width: 98px;
  height: 98px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
  border: 4px solid #fff;
  top: -49px;
  position: absolute;
  left: 0;
  right: 0;
}
.testimonials .h3-underline {
  margin-left: auto;
  margin-right: auto;
  height: 4px;
  border-radius: 2px;
  width: 106px;
  margin-bottom: 74px;
}

.sectionCarousel {
  width: 100%;
}
.sectionCarousel .flickity-prev-next-button.previous {
  left: 0;
}
.sectionCarousel .flickity-prev-next-button.next {
  right: 0;
}
.sectionCarousel .flickity-page-dots {
  bottom: -2.5rem;
}
.sectionCarousel__cell {
  width: 100%;
  /* full width */
  min-height: 100%;
  /* height of carousel */
}

.hero--photo {
  position: relative;
  display: block;
  overflow: hidden;
  backface-visibility: hidden;
}
.hero--photo video {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 122%;
  height: 122%;
  transform: translate3d(-50%, -50%, 0);
  backface-visibility: hidden;
}
.hero--photo__video img {
  opacity: 0;
}

.hero__video--small {
  position: absolute;
  left: 50%;
  top: 50%;
  max-width: 50%;
  width: 100%;
  padding-top: 130%;
  height: 0;
  transform: translate3d(-50%, -50%, 0);
  backface-visibility: hidden;
}
.hero__video--small video {
  width: 100%;
  height: auto;
}

.hero--wrapper {
  overflow: hidden;
  position: relative;
}
.hero--wrapper button.scroll_down {
  cursor: default !important;
  position: absolute;
  bottom: 6%;
  left: 50%;
  margin-left: -20px;
  z-index: 3;
}

.hero--content {
  padding-top: 140px;
  padding-bottom: 190px;
  max-width: 860px;
  padding-right: 30px;
  position: relative;
  z-index: 2;
}
.hero--content h2 {
  text-align: left;
  margin-bottom: 35px;
}
.hero--content p {
  font-weight: normal;
  color: #6F7775;
  font-size: 24px;
  margin-bottom: 55px;
}

.main-carousel .flickity-page-dots {
  display: none !important;
}
.main-carousel .flickity-button {
  background: rgba(255, 255, 255, 0.5);
}
.main-carousel .flickity-button svg path {
  fill: #01bc66 !important;
}
.main-carousel .flickity-prev-next-button.previous {
  left: 20px !important;
}
.main-carousel .flickity-prev-next-button.next {
  right: 20px !important;
}

@media (max-width: 991.98px) {
  .hero--photo {
    max-width: 500px;
    margin: 0 auto;
  }

  .hero--content {
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
    padding-right: 5%;
    padding-left: 5%;
    margin-left: auto;
    margin-right: auto;
  }
  .hero--content h2 {
    text-align: center;
  }

  .scroll_down {
    display: none;
  }

  .hero--photo video,
.hero__video--small {
    display: none !important;
  }

  .hero--photo img {
    opacity: 1;
  }
}
.section--features__content {
  padding-top: 6rem;
  padding-bottom: 4rem;
}
.section--features__content .btn {
  margin-top: 118px;
}
@media (max-width: 767.98px) {
  .section--features__content .btn {
    margin-top: 30px;
  }
}
.section--features__header {
  padding-top: 52px;
  padding-bottom: 72px;
  padding-left: 15px;
  padding-right: 15px;
}
.section--features__header p {
  color: #6F7775;
  font-size: 24px;
  line-height: 1.2;
}
.section--features__header h3 + p {
  margin-top: -3.4rem !important;
}
@media (max-width: 991.98px) {
  .section--features__header {
    padding-top: 0;
    padding-bottom: 0;
  }
  .section--features__header p {
    font-size: 20px;
  }
  .section--features__header h3 + p {
    margin-top: -1.4rem !important;
  }
}
.section--features__item {
  padding-left: 170px;
  padding-right: 20px;
  min-height: 137px;
  margin-bottom: 88px;
  position: relative;
}
.section--features__item img {
  left: 20px;
  top: 0;
  position: absolute;
  width: 134px;
  height: auto;
}
.section--features__item h6 {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 500;
  color: #18342C;
  margin-bottom: 16px;
  max-width: 290px;
}
.section--features__item p {
  font-size: 20px;
  line-height: 1.6;
  color: #18342C;
  opacity: 0.6;
  max-width: 300px;
}
@media (max-width: 767.98px) {
  .section--features__item h6 {
    max-width: 100%;
  }
  .section--features__item p {
    font-size: 16px;
    max-width: 100%;
  }
}

.iconText {
  display: flex;
  flex-direction: row;
  width: 400px;
  margin-bottom: 50px;
}
.iconText .icon {
  height: 50px;
  width: 50px;
  margin-right: 27px;
}
.iconText .text {
  color: black;
  margin-top: 1px;
  text-align: left;
}
@media only screen and (max-width: 1550px) {
  .iconText .text {
    font-size: 15px;
  }
}
.iconText .text_investment {
  color: #6f7775;
  margin-top: 1px;
  text-align: left;
}
@media only screen and (max-width: 1550px) {
  .iconText .text_investment {
    font-size: 15px;
  }
}

@media only screen and (max-width: 1550px) {
  .none_mobile_banner {
    max-width: 1500px;
    margin: 0 auto;
  }
  .none_mobile_banner img {
    display: block;
    width: 100%;
    height: auto;
  }
}
.none_mobile_banner img {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (max-width: 1000px) {
  .none_mobile_banner {
    display: none;
  }
}

.farmerJohnContainer .mobile_banner {
  display: none;
}
@media only screen and (max-width: 1000px) {
  .farmerJohnContainer .mobile_banner {
    height: 300px;
    width: 300px;
    display: block;
  }
}
.farmerJohnContainer .mobile_banner_investment {
  display: none;
}
@media only screen and (max-width: 1000px) {
  .farmerJohnContainer .mobile_banner_investment {
    height: auto;
    width: auto;
    max-width: 340px;
    max-height: 226px;
    display: block;
  }
}
@media only screen and (max-width: 1000px) {
  .farmerJohnContainer .textList {
    visibility: hidden;
  }
}
@media only screen and (max-width: 1550px) {
  .farmerJohnContainer .iconText {
    max-width: 235px;
  }
}

.textListSmall {
  display: none;
  font-size: 12px;
  flex-direction: column;
}
@media only screen and (max-width: 1000px) {
  .textListSmall {
    display: flex;
  }
}
.textListSmall .iconText {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  max-width: 300px;
}

.partners {
  overflow: hidden;
  padding-top: 69px;
  padding-bottom: 64px;
  background: #EAF6F0 url("/dist/images/background.png") no-repeat 50% 50%;
  background-size: cover;
}
.partners__legend {
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 35px;
  color: #18342C;
  opacity: 0.6;
}
.partners__legend p {
  font-size: 100%;
}
.partners__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 0 -40px;
}
.partners__logos a svg, .partners__logos a img {
  margin: 1rem 40px;
  color: #ccc;
  transition: 300ms ease-out;
  width: 125px;
  height: auto;
  filter: grayscale(100%);
  opacity: 0.5;
}
.partners__logos a svg:hover, .partners__logos a img:hover {
  opacity: 1;
  filter: grayscale(0%);
}
@media (max-width: 767.98px) {
  .partners__logos a svg, .partners__logos a img {
    width: 80px;
  }
}
@media (max-width: 991.98px) {
  .partners__logos a svg, .partners__logos a img {
    width: 90px;
  }
}
.partners__line {
  display: block;
  width: 106px;
  height: 4px;
  background: #5AD29A;
  margin: 34px auto 0;
  opacity: 0.5;
  border-radius: 2px;
}

.section--introduction {
  display: flex;
  align-items: center;
  padding-top: 12rem;
  padding-bottom: 12rem;
  overflow: hidden;
}
.section--introduction__excerpt {
  font-family: AktivGrotesk, system-ui, -apple-system, BlinkMacSystemFont, “Segoe UI”, “Roboto”, “Oxygen”, “Ubuntu”, “Cantarell”, “Fira Sans”, “Droid Sans”, “Helvetica Neue”, sans-serif;
  font-size: 18px;
  line-height: 26px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-variant-ligatures: common-ligatures;
  font-variant-numeric: oldstyle-nums;
  font-kerning: normal;
}
.section--introduction__excerpt b,
.section--introduction__excerpt strong {
  font-weight: 600;
}
.section--introduction__excerpt i,
.section--introduction__excerpt em {
  font-style: italic;
}
.section--introduction__excerpt::before, .section--introduction__excerpt::after {
  content: "";
  display: block;
}
.section--introduction__excerpt::before {
  padding-top: 0px;
}
.section--introduction__excerpt::after {
  margin-bottom: 0px;
}
@media screen and (min-width: 990px) {
  .section--introduction__excerpt {
    font-size: 24px;
    line-height: 32px;
  }
  .section--introduction__excerpt::before {
    padding-top: 0px;
  }
  .section--introduction__excerpt::after {
    margin-bottom: 0px;
  }
}
.section--introduction p {
  color: #828282;
  font-size: 24px;
  line-height: 1.34;
  margin-bottom: 1rem;
}
.section--introduction p.p-small {
  font-size: 16px;
}
@media (min-width: 768px) {
  .section--introduction {
    height: 100vh;
    min-height: 600px;
  }
}
.section--introduction--image {
  position: relative;
  background-size: cover;
  background-position: center center;
}
.section--introduction--image h2 {
  color: #fff;
}
.section--introduction--image p {
  color: white;
}
.section--introduction--image p.p-small {
  color: rgba(255, 255, 255, 0.5);
}
.section--introduction--image .btn {
  margin-top: 35px;
}
.section--introduction--image::before {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(0, 0, 0, 0.85);
  top: 0;
  left: 0;
}
.section--introduction--image button.scroll_down {
  position: absolute;
  bottom: 6%;
  left: 50%;
  transform: translateX(-50%);
}
.section--introduction--image .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(1, 188, 102, 0.2);
  top: 0;
  left: 0;
}
.section--introduction--light {
  padding-top: 9rem;
  padding-bottom: 9rem;
}
.section--introduction--light h2 {
  color: #0E2B23;
}
.section--introduction--light .light {
  color: rgba(14, 43, 35, 0.6);
}
.section--content {
  padding-top: 9rem;
  padding-bottom: 9rem;
}
.section--content h3 {
  margin-bottom: 5rem;
  text-align: center;
}
.section--content h3 + p {
  margin-top: -4rem;
  color: #828282;
}
@media (max-width: 991.98px) {
  .section--content {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .section--content h3 {
    margin-bottom: 3rem;
  }
  .section--content h3 + p {
    margin-top: -2rem;
  }
}
.section--solutions {
  padding-top: 150px;
  padding-bottom: 150px;
}
.section--solutions .solutions--header {
  margin-bottom: 32px;
}
.section--solutions .solutions--header h3 {
  margin-bottom: 12px;
}
.section--solutions .solutions--header p {
  font-weight: normal;
  font-size: 24px;
}
.section--solutions .solutions--photo {
  max-width: 1500px;
  margin: 0 auto;
}
.section--solutions .solutions--photo img {
  display: block;
  width: 100%;
  height: auto;
}
.section--split {
  padding-top: 4rem;
  padding-bottom: 4rem;
  text-align: center;
  background-repeat: no-repeat;
  background-position: 50% 100%;
  background-size: cover;
}
.section--split ul.feature li {
  font-size: 20px;
  text-align: left;
  list-style: none;
  padding: 0 0 0 30px;
  color: #6F7775;
  position: relative;
}
.section--split ul.feature li:before {
  position: absolute;
  content: "";
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  background: #21BE58;
  border-radius: 50%;
}
.section--split h3 {
  margin-top: 2rem;
}
.section--split p {
  font-size: 20px;
}
@media (min-width: 768px) {
  .section--split {
    text-align: left;
    padding-top: 135px;
    padding-bottom: 6rem;
  }
  .section--split h3 {
    text-align: left;
    margin-top: 0;
  }
}
.section--insights h2 {
  margin-top: 2rem;
}
.section--investment {
  padding-top: 125px;
}
.section--list {
  position: relative;
  background-size: cover;
  background-position: center center;
}
.section--list h3 {
  color: #fff;
}
.section--list p {
  color: rgba(255, 255, 255, 0.6);
}
.section--list::before {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(0, 0, 0, 0.1);
  top: 0;
  left: 0;
}
.section--list__item {
  margin-top: 2rem;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  padding: 2rem;
  min-height: 100%;
  box-shadow: 0px 64px 64px rgba(35, 35, 35, 0.03), 0px 8px 8px rgba(42, 42, 42, 0.03), 0px 4px 4px rgba(49, 49, 49, 0.03), 0px 2px 2px rgba(45, 45, 45, 0.03);
}
.section--list__item > div {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.section--list__item > div:last-child {
  margin-bottom: 0;
}
.section--list__item .icon {
  min-width: 20px;
  min-height: 20px;
  margin-right: 30px;
}
.section--list__item p {
  color: #0E2B23;
  margin: 0;
}
@media (min-width: 992px) {
  .section--list__item {
    margin-top: 2rem;
    background-color: rgba(255, 255, 255, 0.8);
  }
  .section--list__item--right {
    text-align: right;
  }
  .section--list__item--right .icon {
    margin-right: 0;
    margin-left: 30px;
  }
}
.section--title {
  padding-top: 139px;
  padding-bottom: 119px;
  background: #EAF6F0 url("/dist/images/background.png") no-repeat 50% 50%;
  background-size: cover;
}
.section--title .h3-underline {
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
  width: 106px;
  height: 4px;
  border-radius: 2px;
}
.section--intelligence {
  padding-top: 90px;
  padding-bottom: 90px;
  background: url("/dist/images/crop-intelligence/bg-1.jpg") no-repeat 50% 0;
  background-size: cover;
}
.section--contact h3 {
  text-align: left;
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 43px;
}
.section--contact__text h4 {
  font-size: 32px;
}
.section--contact__text .h4-underline {
  margin-top: 2px;
  margin-bottom: 16px;
}
.section--contact__text p {
  font-size: 20px;
  line-height: 1.6;
}

.split--content {
  max-width: 580px;
  padding: 38px 20px 20px;
}
.split--content .btn {
  margin-top: 41px;
}
.split--content__max {
  max-width: 100%;
}

.ipad--video {
  max-width: 675px;
  margin: 0 auto;
  position: relative;
}

.h3-underline {
  height: 2px;
  border-radius: 1px;
  background: #21BE59;
  width: 119px;
  margin-bottom: 20px;
}

.h4-underline {
  height: 2px;
  background: #21BE59;
  width: 71px;
  margin-bottom: 6px;
  margin-top: -7px;
}

.intelligence--content {
  max-width: 500px;
  margin: 0 auto;
}

@media (max-width: 767.98px) {
  .h3-underline,
.split--content {
    margin-left: auto;
    margin-right: auto;
  }
}
.section--crop {
  background: url("/dist/images/crop-intelligence/bg-2.jpg") no-repeat 50% 50%;
  background-size: 100%;
}
.section--crop ul.feature li {
  font-size: 20px;
  text-align: left;
  list-style: none;
  padding: 0 0 0 30px;
  color: #6F7775;
  position: relative;
}
.section--crop ul.feature li:before {
  position: absolute;
  content: "";
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  background: #21BE58;
  border-radius: 50%;
}
.section--crop h3 {
  margin-top: 2rem;
  margin-bottom: 30px !important;
}
.section--crop p {
  font-size: 20px;
}
.section--carousel .flickity-viewport {
  min-height: 766px;
}
.section--carousel .flickity-page-dots .dot {
  margin: 0 12px;
  background-color: #1CBE5A;
  border: 2px solid #1CBE5A;
  vertical-align: middle;
}
.section--carousel .flickity-page-dots .dot.is-selected {
  border: 2px solid #1CBE5A;
  background-color: transparent;
  width: 12px;
  height: 12px;
}
.section--carousel p {
  font-size: 16px;
  line-height: 1.5;
  color: #6F7775;
}
.section--carousel ul.feature-no-st li {
  font-size: 16px;
  line-height: 1.5;
  text-align: left;
  list-style: none;
  padding: 0 0 0 30px;
  color: #6F7775;
  position: relative;
}
.section--carousel ul.feature-no-st li:before {
  position: absolute;
  content: "";
  left: 0;
  top: 6px;
  width: 8px;
  height: 8px;
  background: #6F7775;
  border-radius: 50%;
}
.section--carousel h4 {
  font-size: 32px;
  margin-bottom: 15px;
}
.section--carousel h5 {
  font-weight: 500 !important;
  font-size: 20px;
  margin-bottom: 10px;
}
.section--carousel h5 b, .section--carousel h5 strong {
  font-weight: 500 !important;
}
.section--carousel .h4-underline {
  margin-top: 0;
  margin-bottom: 20px;
}
.section--how {
  background: url("/dist/images/how-it-works/how-bg.jpg") no-repeat 50% 0;
  background-size: 100%;
}

.crop-photo {
  max-width: 523px;
  margin: 0 auto;
}

.how-col {
  max-width: 570px;
  margin: 0 auto;
}
.how-col h5 {
  text-align: left;
  font-size: 20px;
  font-weight: 500;
}

.section--how h4 {
  font-size: 32px;
}
.section--how .h4-underline {
  margin-top: 20px;
  margin-bottom: 30px;
}

.how-img-col div {
  margin: 0 auto;
}

.how-img-wrap {
  max-width: 511px;
  margin: 0 auto;
}

.inline-video-wrap {
  position: relative;
  height: 0;
  padding-top: 56.25%;
  background: #333;
}
.inline-video-wrap video {
  top: 0;
  left: 0;
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
}

@media only screen and (max-width: 1000px) {
  .our-company-home-img {
    display: none;
  }
}

.section-headline-text {
  line-height: 80px;
}
@media only screen and (max-width: 1500px) {
  .section-headline-text {
    line-height: 60px;
  }
}
@media only screen and (max-width: 1000px) {
  .section-headline-text {
    line-height: inherit;
  }
}

.section-description-text {
  line-height: 33px;
}

.privacy-policy ul li {
  list-style: disc;
}
.privacy-policy p {
  margin-top: 10px;
  margin-bottom: 10px;
  color: black !important;
}
.privacy-policy h2 + p {
  margin-top: 50px;
}
.privacy-policy p + h3 {
  margin-top: 50px;
}

.insights__pagination li {
  display: inline;
  list-style: none;
  margin-right: 2rem;
  color: #828282;
  font-weight: 500;
}
.insights__pagination li:last-child {
  margin-right: 0;
}
.insights__pagination li.isActive {
  color: #0E2B23;
}
.insights__navLink {
  appearance: none;
  margin: 0;
  padding: 0;
  font-family: inherit;
  font-size: inherit;
  background-color: transparent;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  display: inline-block;
  margin-right: 1rem;
  color: #828282;
  font-weight: 500;
  transition: 300ms ease-out;
}
.insights__navLink svg {
  display: block;
}
.insights__navLink::after {
  content: "";
  display: block;
  height: 2px;
  background-color: transparent;
  margin-top: 10px;
  transition: 300ms ease-out;
}
.insights__navLink:last-child {
  margin-right: 0;
}
.insights__navLink:hover {
  color: #0E2B23;
}
.insights__navLink:focus {
  outline: none;
}
.insights__navLink.is-active {
  color: #0E2B23;
}
.insights__navLink.is-active::after {
  background-color: #01BC66;
}
.insights__wrapper {
  position: relative;
  height: 330px;
  overflow: hidden;
  transition: 300ms ease-out;
}
.insights__single {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 35px 0 0;
  opacity: 0;
  transition: 300ms ease-out;
}
.insights__single.is-visible {
  opacity: 1;
}

.rebounds h6 {
  font-size: 20px;
}
.rebounds p {
  font-size: 20px;
  line-height: 1.6;
}
@media (max-width: 767.98px) {
  .rebounds .row > div {
    padding-top: 2rem;
    padding-bottom: 2rem;
    background-color: #e0f3ea;
  }
  .rebounds .row > div:last-child {
    background-color: #f0f7f4;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .rebounds .container {
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .rebounds {
    padding-top: 4rem;
    padding-bottom: 4rem;
    background: linear-gradient(to right, #e0f3ea 50%, #f0f7f4 0);
  }
}

.newsroom__date {
  font-family: AktivGrotesk, system-ui, -apple-system, BlinkMacSystemFont, “Segoe UI”, “Roboto”, “Oxygen”, “Ubuntu”, “Cantarell”, “Fira Sans”, “Droid Sans”, “Helvetica Neue”, sans-serif;
  font-size: 12px;
  line-height: 15px;
  font-weight: 500;
  letter-spacing: 0.15em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-transform: uppercase;
  font-variant-ligatures: common-ligatures;
  font-variant-numeric: oldstyle-nums;
  font-kerning: normal;
  opacity: 0.3;
  margin-bottom: 0.5rem;
}
.newsroom__date b,
.newsroom__date strong {
  font-weight: 600;
}
.newsroom__date i,
.newsroom__date em {
  font-style: italic;
}
.newsroom__date::before, .newsroom__date::after {
  content: "";
  display: block;
}
.newsroom__date::before {
  padding-top: 0px;
}
.newsroom__date::after {
  margin-bottom: 0px;
}
@media screen and (min-width: 990px) {
  .newsroom__date {
    font-size: 13px;
    line-height: 15px;
  }
  .newsroom__date::before {
    padding-top: 0px;
  }
  .newsroom__date::after {
    margin-bottom: 0px;
  }
}
.newsroom h6 {
  margin-bottom: 1rem;
}
.newsroom__featured .newsroom__content {
  padding: 30px;
  background-color: #fff;
  color: #000;
  border-radius: 0 0 8px 8px;
}
@media (min-width: 768px) {
  .newsroom__featured .newsroom__content {
    padding: 30px 40px;
  }
}
.newsroom__featured .a-image {
  border-radius: 8px 8px 0 0;
  padding-bottom: 56.25%;
}
.newsroom__featured:hover .a-image img {
  transform: scale3d(1.05, 1.05, 1.05);
}

html ::selection {
  color: #fff;
  background: #01BC66;
}

body {
  background: #FAFAFA;
  color: #0E2B23;
  font-family: AktivGrotesk, system-ui, -apple-system, BlinkMacSystemFont, “Segoe UI”, “Roboto”, “Oxygen”, “Ubuntu”, “Cantarell”, “Fira Sans”, “Droid Sans”, “Helvetica Neue”, sans-serif;
  font-size: 62.5%;
  font-feature-settings: "kern";
  font-kerning: normal;
  line-height: 1;
  text-rendering: optimizeLegibility;
  font-variant-ligatures: common-ligatures;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.header {
  padding: 30px 0;
  position: fixed;
  z-index: 10;
  width: 100%;
  transform: translate3d(0, 0, 0);
  transition: padding 200ms ease-out, background-color 200ms ease-out, transform 0.8s cubic-bezier(0.55, 0.085, 0, 0.99), opacity 0.2s ease-in-out;
}
@media (max-width: 1199.98px) {
  .header {
    padding-top: 25px;
    padding-bottom: 25px;
  }
}
.header .btn {
  min-width: 0;
  width: 210px;
  height: 64px;
  font-size: 20px;
  line-height: 64px;
  background: #01bc66;
  box-shadow: 0px 10px 30px rgba(1, 188, 102, 0.5);
}
@media (max-width: 1199.98px) {
  .header .btn {
    width: 170px;
    font-size: 18px;
  }
}
.header--top {
  transform: translate3d(0, 0, 0);
}
.header--top .btn-getstarted {
  display: none;
}
.header--pinned {
  transform: translate3d(0, 0, 0);
}
.header--unpinned {
  transform: translate3d(0, 0, 0);
}
.header--not-top {
  box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.025);
  border: 0;
  background-color: #fff;
}
.header--not-top a:not(.btn) {
  color: #0E2B23 !important;
}
.header--not-top a:not(.btn).isActive {
  color: #01BC66 !important;
}
.header.is-hidden {
  opacity: 0;
  pointer-events: none;
}
.header__logo {
  flex-grow: 1;
  display: block;
}
.header__logo .logo__dark {
  display: none;
}
.header__logo img {
  height: 64px;
  width: auto;
}
.header .container {
  display: flex;
  flex-flow: row wrap;
}
.header svg.icon {
  display: block;
  width: 103px;
  height: 48px;
}
.header__nav {
  text-align: right;
  height: 64px;
  padding: 0;
}
.header__nav li {
  display: inline-block;
  margin-left: 50px;
  font-size: 0;
  height: 64px;
  line-height: 64px;
  vertical-align: top;
}
@media (max-width: 1199.98px) {
  .header__nav li {
    margin-left: 30px;
  }
}
.header__nav a {
  text-decoration: none;
  display: inline-block;
  height: 64px;
  line-height: 64px;
  font-size: 19px;
  transition: all 400ms ease-out;
}
@media (max-width: 1199.98px) {
  .header__nav a {
    font-size: 16px;
  }
}
.header__nav a:not(.btn) {
  transition: opacity 0.3s ease;
  font-weight: 500;
  color: #fff;
}
.header__nav a:not(.btn):hover {
  opacity: 0.9;
}
.header__nav a.isActive {
  color: #01BC66;
}
@media (max-width: 991.98px) {
  .header {
    display: none;
    visibility: hidden;
  }
}

.is-light .header a:not(.btn) {
  color: #0E2B23 !important;
}
.is-light .header a:not(.btn).isActive {
  color: #01BC66 !important;
}

.footer {
  background: #2E2D2D;
  color: white;
}
.footer p {
  line-height: 25px;
}
.footer__navigation {
  padding: 2.6666666667rem 0 5rem 0;
}
.footer__navigation ul li {
  line-height: 40px;
  color: white;
  transition: 300ms ease-out;
}
.footer__navigation ul li:first-child {
  color: rgba(255, 255, 255, 0.5);
}
.footer__navigation ul li:first-child:hover {
  color: rgba(255, 255, 255, 0.8);
}
.footer__navigation ul li:hover {
  color: rgba(255, 255, 255, 0.8);
}
.footer__socials a svg {
  margin-right: 10px;
}
.footer__socials a:last-child svg {
  margin-right: 0;
}
.footer__bottom {
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer__bottom .icon {
  max-width: 90px;
}
.footer__bottom p {
  font-family: AktivGrotesk, system-ui, -apple-system, BlinkMacSystemFont, “Segoe UI”, “Roboto”, “Oxygen”, “Ubuntu”, “Cantarell”, “Fira Sans”, “Droid Sans”, “Helvetica Neue”, sans-serif;
  font-size: 15px;
  line-height: 20px;
  letter-spacing: 0.015em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-variant-ligatures: common-ligatures;
  font-variant-numeric: oldstyle-nums;
  font-kerning: normal;
  color: white;
}
.footer__bottom p b,
.footer__bottom p strong {
  font-weight: 600;
}
.footer__bottom p i,
.footer__bottom p em {
  font-style: italic;
}
.footer__bottom p::before, .footer__bottom p::after {
  content: "";
  display: block;
}
.footer__bottom p::before {
  padding-top: 0px;
}
.footer__bottom p::after {
  margin-bottom: 0px;
}
.footer__bottom ul li {
  display: inline-block;
  margin-left: 15px;
  font-family: AktivGrotesk, system-ui, -apple-system, BlinkMacSystemFont, “Segoe UI”, “Roboto”, “Oxygen”, “Ubuntu”, “Cantarell”, “Fira Sans”, “Droid Sans”, “Helvetica Neue”, sans-serif;
  font-size: 15px;
  line-height: 20px;
  letter-spacing: 0.015em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-variant-ligatures: common-ligatures;
  font-variant-numeric: oldstyle-nums;
  font-kerning: normal;
  transition: 300ms ease-out;
}
.footer__bottom ul li b,
.footer__bottom ul li strong {
  font-weight: 600;
}
.footer__bottom ul li i,
.footer__bottom ul li em {
  font-style: italic;
}
.footer__bottom ul li::before, .footer__bottom ul li::after {
  content: "";
  display: block;
}
.footer__bottom ul li::before {
  padding-top: 0px;
}
.footer__bottom ul li::after {
  margin-bottom: 0px;
}
.footer__bottom ul li:hover {
  color: #fff;
}
@media (max-width: 991.98px) {
  .footer__bottom ul {
    margin-top: 0.4rem;
  }
}
.footer__appsTitle {
  font-weight: 500;
  margin-bottom: 10px;
}
.footer__appsLogo img {
  margin-bottom: 5px;
}

.footer--logo {
  max-width: 154px;
}
.footer--logo img {
  display: block;
}

@media (max-width: 991.98px) {
  .footer--logo {
    margin-left: auto;
    margin-right: auto;
  }
}
.footer--copyright {
  color: white;
}
.footer--copyright p {
  color: white;
}

.footer--push {
  height: 203px;
  border-bottom: 1px solid #4d4c4c;
  background: #2E2D2D;
}

@media (max-width: 991.98px) {
  .main-carousel {
    margin-top: 70px;
  }
}

.carousel__cell {
  width: 100%;
  /* full width */
  min-height: 100vh;
  /* height of carousel */
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-position: center center;
  background-color: #fff;
}
.carousel__cell.isDark {
  position: relative;
}
.carousel__cell.isDark::before {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
}
.carousel__cell.isDark h2 {
  color: #fff;
}
.carousel__cell.isDark p {
  color: rgba(255, 255, 255, 0.5);
}
.carousel__cell .row {
  justify-content: center;
}

.carousel__cell--mask {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: 50% 100%;
  background-size: 100%;
  opacity: 0.5;
}

@media (max-width: 767.98px) {
  .flickity-button {
    display: none;
  }
}

.flickity-button,
.flickity-button:hover {
  background: transparent;
  color: #0E2B23;
}

.main-carousel .flickity-button,
.main-carousel .flickity-button:hover {
  color: #fff;
}
.main-carousel .flickity-page-dots .dot {
  background-color: #fff;
  border: 1px solid #fff;
}
.main-carousel .flickity-page-dots .dot.is-selected {
  border: 1px solid #fff;
}

.flickity-prev-next-button {
  width: 35px;
  height: 35px;
}

.flickity-page-dots {
  bottom: 3vh;
}
.flickity-page-dots .dot {
  width: 8px;
  height: 8px;
  margin: 0 5px;
  opacity: 1;
  background-color: #0E2B23;
  border: 1px solid #0E2B23;
}
.flickity-page-dots .dot.is-selected {
  border: 1px solid #0E2B23;
  background-color: transparent;
}
@media (min-width: 768px) {
  .flickity-page-dots {
    bottom: 5vh;
  }
}

.flickity-prev-next-button.previous {
  left: 3vw;
}

.flickity-prev-next-button.next {
  right: 3vw;
}

a.nostyle:link {
  text-decoration: inherit;
  color: inherit;
  cursor: auto;
}

a.nostyle:visited {
  text-decoration: inherit;
  color: inherit;
  cursor: auto;
}

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