/*
Reset / Utility classes
======
### _base2.0.scss
Reset based on html5 boilerplate and normalize.css

*/
/**
 ### 1. html
<code>
    html {
        font-family: sans-serif;
        -ms-text-size-adjust: 100%;
        -webkit-text-size-adjust: 100%;
        -webkit-overflow-scrolling: touch;
        -webkit-font-smoothing: antialiased;
        height: 100%;
    }
</code>

*/
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@600;700&display=swap");
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-overflow-scrolling: touch;
  -webkit-font-smoothing: antialiased;
  height: 100%;
}

/**
 ### 2. body
<code>
    body {
        margin: 0;
        height: 100%;
    }
</code>

*/
body {
  margin: 0;
  height: 100%;
}

/**
 ### 3. all elements
<code>
    "*" {
        margin: 0;
        padding: 0;
    }
</code>

*/
* {
  margin: 0;
  padding: 0;
}

/**
 ### 4. Reset global (based on eric mayer reset)
<code>
    html,
    body,
    div,
    span,
    object,
    iframe,
    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    p,
    blockquote,
    pre,
    a,
    abbr,
    acronym,
    address,
    code,
    del,
    dfn,
    em,
    img,
    q,
    dl,
    dt,
    dd,
    ol,
    ul,
    li,
    fieldset,
    form,
    label,
    legend,
    table,
    caption,
    tbody,
    tfoot,
    thead,
    tr,
    th,
    td {
        border: 0;
        font-family: inherit;
        font-size: 100%;
        font-weight: inherit;
        font-style: inherit;
        vertical-align: baseline;
        margin: 0;
        padding: 0;
        outline: 0;
    }
</code>

*/
a,
abbr,
acronym,
address,
blockquote,
body,
caption,
code,
dd,
del,
dfn,
div,
dl,
dt,
em,
fieldset,
form,
h1,
h2,
h3,
h4,
h5,
h6,
html,
iframe,
img,
label,
legend,
li,
object,
ol,
p,
pre,
q,
span,
table,
tbody,
td,
tfoot,
th,
thead,
tr,
ul {
  border: 0;
  font-family: inherit;
  font-size: 100%;
  font-weight: inherit;
  font-style: inherit;
  vertical-align: baseline;
  margin: 0;
  padding: 0;
  outline: 0;
}

/**
 ### 5. HTML5 display definitions
 Correct `block` display not defined for any HTML5 element in IE 8/9. <br>
 Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.<br>
 Correct `block` display not defined for `main` in IE 11.<br>

<code>
    article,
    aside,
    details,
    figcaption,
    figure,
    footer,
    header,
    hgroup,
    main,
    menu,
    nav,
    section,
    summary {
        display: block;
    }
</code>

*/
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
 ### 6. inline-block
 Correct `inline-block` display not defined in IE 8/9. <br>
 Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.<br>

<code>
    audio,
    canvas,
    progress,
    video {
        display: inline-block;
        vertical-align: baseline;
    }
</code>

*/
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

/**
 ### 7. audio element
 Prevent modern browsers from displaying `audio` without controls. <br>
 Remove excess height in iOS 5 devices.<br>

<code>
    audio:not([controls]) {
        display: none;
        height: 0;
    }
</code>

*/
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 ### 8. hidden
 Address `[hidden]` styling not present in IE 8/9/10. <br>
 Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.<br>

<code>
    [hidden],
    template {
        display: none;
    }
</code>

*/
[hidden],
template {
  display: none;
}

/**
 ### 9. links
 Remove the gray background color from active links in IE 10. <br>
 Improve readability when focused and also mouse hovered in all browsers.

<code>
    a {
        background: transparent;
    }
    a:active,
    a:hover {
        outline: 0;
    }
</code>

*/
a {
  background: transparent;
}

a:active,
a:hover {
  outline: 0;
}

/**
 ### 10. Text-level semantics
 - abbr[title] / Address styling not present in IE 8/9/10/11, Safari, and Chrome. <br>
 - b, strong / Address style set to `bolder` in Firefox 4+, Safari, and Chrome. <br>
 - dfn / Address styling not present in Safari and Chrome. <br>
 - mark / Address styling not present in IE 8/9. <br>
 - small / Address inconsistent and variable font size in all browsers. <br>
 - sub, sup / Prevent `sub` and `sup` affecting `line-height` in all browsers. <br>

<code>
    abbr[title] {
        border-bottom: 1px dotted;
    }
    b,
    strong {
        font-weight: bold;
    }
    dfn {
        font-style: italic;
    }
    mark {
        background: #ff0;
        color: #000;
    }
    small {
        font-size: 80%;
    }
    sub,
    sup {
        font-size: 75%;
        line-height: 0;
        position: relative;
        vertical-align: baseline;
    }
    sup {
        top: -0.5em;
    }
    sub {
        bottom: -0.25em;
    }
</code>
*/
/**
 ### 11. images
 Remove border when inside `a` element in IE 8/9/10.

<code>
    img {
        border: 0;
    }
</code>
*/
img {
  border: 0;
}

/**
 ### 12. svg
 Correct overflow not hidden in IE 9/10/11.

<code>
    svg:not(:root) {
        overflow: hidden;
    }
</code>
*/
svg:not(:root) {
  overflow: hidden;
}

/**
 ### 13. Grouping content
 - hr / Address differences between Firefox and other browsers. <br>
 - pre / Contain overflow in all browsers. <br>
 - code, kbd, pre, samp / Address odd `em`-unit font size rendering in all browsers. <br>


<code>
    hr {
        -moz-box-sizing: content-box;
        box-sizing: content-box;
        height: 0;
    }
    pre {
        overflow: auto;
    }
    code,
    kbd,
    pre,
    samp {
        font-family: monospace, monospace;
        font-size: 1em;
    }
</code>
*/
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/**
 ### 14. Forms
 Known limitation: by default, Chrome and Safari on OS X allow very limited
 styling of `select`, unless a `border` property is set.
<br><br>
1./ <br>
- Correct color not being inherited.
- Known issue: affects color of disabled elements.
- Correct font properties not being inherited.
- Address margins set differently in Firefox 4+, Safari, and Chrome.
<br>
2./ <br>
- buttons / Address `overflow` set to `hidden` in IE 8/9/10/11.
<br>
3./ <br>
- Address inconsistent `text-transform` inheritance for `button` and `select`.
- All other form control elements do not inherit `text-transform` values.
- Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
- Correct `select` style inheritance in Firefox.

<code>
    1./ button,
    input,
    optgroup,
    select,
    textarea {
        color: inherit;
        font: inherit;
        margin: 0;
    }
    2./ button {
        overflow: visible;
    }
    3./ button,
    select {
        text-transform: none;
    }
</code>
*/
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button, html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

.pointer,
a[href],
button,
input[type=image],
input[type=submit],
label[for],
select {
  cursor: pointer;
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
input[disabled],
input[readonly],
select[disabled],
select[readonly],
textarea[disabled],
textarea[readonly] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
  font-family: Arial, sans-serif;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type=checkbox],
input[type=radio] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */
input[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

/* Tables
     ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

/* Custom ENP declarations for links and images
========================================================================== */
a b {
  font-weight: bold;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  border-width: 0;
  vertical-align: middle;
  -ms-interpolation-mode: bicubic;
  /*IE better img render*/
}

.ie8 img {
  width: auto;
}

/**********************************************************************************************
 *
 * START Default classes
 *
***********************************************************************************************/
/*clearfix - classic*/
.clearfix {
  clear: both;
  overflow: hidden;
}

/*clearfix - without overflow hidden*/
.clearfix2:after,
.clearfix2:before {
  content: "";
  display: table;
  height: 0;
}

.clearfix2:after {
  clear: both;
}

.clearfix2 {
  *zoom: 1;
}

/**********************************************************************************************
 *
 * END Default classes
 *
***********************************************************************************************/
/*PRINT*/
@media print {
  * {
    /*background: transparent !important;
    color: black !important;*/
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important;
  }
  @page {
    margin: 0.5cm;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  a[href^="#"]:after,
a[href^="javascript:"]:after {
    content: "";
  }
  img,
tr {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  /*p, h2, h3 {orphans: 3; widows: 3}
  h2, h3 {page-break-after: avoid}*/
}
.icon-arrow {
  background-image: url(../images/sprite.png?1573380446305);
  background-position: -178px 0px;
  width: 60px;
  height: 60px;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .icon-arrow {
    background-image: url(../images/sprite-2x.png?1573380446305);
    background-size: 238px 171px;
  }
}

.icon-download {
  background-image: url(../images/sprite.png?1573380446305);
  background-position: 0px 0px;
  width: 79px;
  height: 106px;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .icon-download {
    background-image: url(../images/sprite-2x.png?1573380446305);
    background-size: 238px 171px;
  }
}

.icon-facebook {
  background-image: url(../images/sprite.png?1573380446305);
  background-position: -178px -70px;
  width: 16px;
  height: 16px;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .icon-facebook {
    background-image: url(../images/sprite-2x.png?1573380446305);
    background-size: 238px 171px;
  }
}

.icon-globe {
  background-image: url(../images/sprite.png?1573380446305);
  background-position: -70px -116px;
  width: 55px;
  height: 55px;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .icon-globe {
    background-image: url(../images/sprite-2x.png?1573380446305);
    background-size: 238px 171px;
  }
}

.icon-google {
  background-image: url(../images/sprite.png?1573380446305);
  background-position: -204px -70px;
  width: 16px;
  height: 16px;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .icon-google {
    background-image: url(../images/sprite-2x.png?1573380446305);
    background-size: 238px 171px;
  }
}

.icon-leaf {
  background-image: url(../images/sprite.png?1573380446305);
  background-position: 0px -116px;
  width: 60px;
  height: 55px;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .icon-leaf {
    background-image: url(../images/sprite-2x.png?1573380446305);
    background-size: 238px 171px;
  }
}

.icon-people {
  background-image: url(../images/sprite.png?1573380446305);
  background-position: -135px -116px;
  width: 64px;
  height: 42px;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .icon-people {
    background-image: url(../images/sprite-2x.png?1573380446305);
    background-size: 238px 171px;
  }
}

.icon-speedometer {
  background-image: url(../images/sprite.png?1573380446305);
  background-position: -89px 0px;
  width: 79px;
  height: 79px;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .icon-speedometer {
    background-image: url(../images/sprite-2x.png?1573380446305);
    background-size: 238px 171px;
  }
}

.icon-view {
  background-image: url(../images/sprite.png?1573380446305);
  background-position: -89px -89px;
  width: 16px;
  height: 16px;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .icon-view {
    background-image: url(../images/sprite-2x.png?1573380446305);
    background-size: 238px 171px;
  }
}

@font-face {
  font-family: "webfont";
  src: url("../fonts/webfont/webfont-106202a0b070a5f6b9bb7b4bf243ec4d.eot?106202a0b070a5f6b9bb7b4bf243ec4d");
  src: url("../fonts/webfont/webfont-106202a0b070a5f6b9bb7b4bf243ec4d.eot?106202a0b070a5f6b9bb7b4bf243ec4d#iefix") format("embedded-opentype"), url("../fonts/webfont/webfont-106202a0b070a5f6b9bb7b4bf243ec4d.woff?106202a0b070a5f6b9bb7b4bf243ec4d") format("woff"), url("../fonts/webfont/webfont-106202a0b070a5f6b9bb7b4bf243ec4d.ttf?106202a0b070a5f6b9bb7b4bf243ec4d") format("truetype");
  font-weight: normal;
  font-style: normal;
}
[class^=wf-]:before,
[class*=" wf-"]:before {
  font-family: "webfont";
  display: inline-block;
  line-height: 1;
  font-weight: normal;
  font-style: normal;
  speak: none;
  text-decoration: inherit;
  text-transform: none;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.wf-apsik:before {
  content: "\f101";
}

.wf-close:before {
  content: "\f102";
}

.wf-logo:before {
  content: "\f103";
}

.wf-menu:before {
  content: "\f104";
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background: #23a845;
  font-size: 14px;
  line-height: 18px;
}
body a {
  color: #fff;
  text-decoration: none;
}

#ap {
  margin: 0 auto;
  background: #23a845;
  font-family: "Open Sans", sans-serif;
}
#ap [class*=icon-],
#ap [class^=icon-] {
  display: inline-block;
  vertical-align: middle;
}
#ap b,
#ap strong {
  font-weight: 700;
}
#ap picture img {
  width: 100%;
}
@media screen and (min-width: 1600px) {
  #ap picture img {
    display: block;
    margin: 0 auto;
  }
}
#ap .ap-logoGreen {
  display: none;
}
#ap #menu {
  display: none;
}
#ap #menu:checked ~ .ap-wrapper {
  position: relative;
}
#ap #menu:checked ~ .ap-wrapper::before {
  position: fixed;
  background: rgba(0, 0, 0, 0.4);
  content: "";
  display: block;
  top: 0;
  bottom: 0;
  width: 100%;
  z-index: 1;
}
#ap #menu:checked ~ .ap-wrapper .ap-logoGreen {
  display: block;
}
#ap #menu:checked ~ .ap-wrapper .ap-logoWhite {
  display: none;
}
#ap #menu:checked ~ .ap-wrapper .ap-menu {
  display: flex;
  flex-direction: column;
  background: #fff;
  z-index: 2;
  position: absolute;
  left: 0;
  right: 0;
  align-items: center;
  top: 0;
  padding-top: 75px;
  padding-bottom: 20px;
  border-radius: 0 0 15px 15px;
}
#ap #menu:checked ~ .ap-wrapper .ap-menu a {
  color: #000;
  padding: 12px 20px;
  margin: 0 auto 10px;
  min-width: 120px;
  text-align: center;
}
#ap #menu:checked ~ .ap-wrapper .ap-menu a::after {
  display: none;
}
#ap #menu:checked ~ .ap-wrapper .ap-menu a:hover {
  background: #23a845;
  border-radius: 30px;
}
#ap #menu:checked ~ .ap-wrapper .ap-menu a:hover::after {
  display: none;
}
#ap #menu:checked ~ .ap-wrapper .ap-menuIcon {
  z-index: 3;
}
#ap #menu:checked ~ .ap-wrapper .ap-menuIcon i {
  color: #23a845;
}
#ap #menu:checked ~ .ap-wrapper .ap-menuIcon .ap-menuOpen {
  display: none;
}
#ap #menu:checked ~ .ap-wrapper .ap-menuIcon .ap-menuClose {
  display: block;
}
#ap #menu:checked ~ .ap-wrapper .ap-logo {
  z-index: 3;
}
#ap #menu:checked ~ .ap-wrapper .ap-logo svg {
  fill: #23a845;
}
#ap .ap-menuClose {
  display: none;
  font-size: 30px;
}
#ap .ap-wrapper {
  margin: 0 auto;
  padding-top: 0;
}
@media screen and (min-width: 640px) {
  #ap .ap-wrapper {
    padding-top: 15px;
  }
}
@media screen and (min-width: 1180px) {
  #ap .ap-wrapper {
    padding-top: 0;
  }
}
#ap .ap-section {
  position: relative;
  margin: 0 auto;
}
#ap .ap-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding-top: 10px;
  padding-left: 20px;
  padding-right: 20px;
  z-index: 2;
  transition: all 0.2s ease;
}
@media screen and (min-width: 1180px) {
  #ap .ap-header {
    left: 0;
    right: 0;
    padding-top: 20px;
  }
}
#ap .ap-header.is-fixed {
  box-shadow: rgba(0, 0, 0, 0.4) 0 0px 6px;
  background: #23a845;
}
@media screen and (min-width: 1024px) {
  #ap .ap-header.is-fixed .ap-logo svg {
    width: 90px;
  }
}
@media screen and (min-width: 1180px) {
  #ap .ap-header.is-fixed .ap-menu {
    padding-top: 8px;
  }
}
#ap .ap-header .ap-header_wrapper {
  max-width: 1140px;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
}
#ap .ap-header .ap-logo {
  max-width: 90px;
}
@media screen and (min-width: 1180px) {
  #ap .ap-header .ap-logo {
    max-width: none;
  }
}
#ap .ap-header .ap-logo svg {
  width: 70px;
  height: 60px;
  transition: all 0.2s ease;
}
@media screen and (min-width: 1024px) {
  #ap .ap-header .ap-logo svg {
    width: 130px;
    height: auto;
  }
}
#ap .ap-header .ap-menuIcon {
  position: absolute;
  right: 20px;
  top: 20px;
}
@media screen and (min-width: 1180px) {
  #ap .ap-header .ap-menuIcon {
    display: none;
  }
}
#ap .ap-header .ap-menuIcon .ap-menuOpen {
  color: #fff;
  font-size: 42px;
}
#ap .ap-header .ap-menuIcon .ap-menuClose {
  color: #23a845;
}
#ap .ap-header .ap-menu {
  display: none;
  font-size: 18px;
  padding-top: 25px;
}
@media screen and (min-width: 1180px) {
  #ap .ap-header .ap-menu {
    display: block;
    padding-top: 18px;
    font-size: 16px;
  }
}
#ap .ap-header .ap-menu a {
  padding: 10px 0;
  display: inline-block;
  margin-left: 26px;
  transition: color 0.2s ease-in-out;
  position: relative;
}
#ap .ap-header .ap-menu a::after {
  width: 0%;
  height: 2px;
  background: #000;
  bottom: 0;
  content: "";
  display: block;
  position: absolute;
  transition: width 0.2s ease-in-out;
}
#ap .ap-header .ap-menu a.is-active, #ap .ap-header .ap-menu a:hover {
  color: #000;
  text-decoration: none;
}
#ap .ap-header .ap-menu a.is-active::after, #ap .ap-header .ap-menu a:hover::after {
  width: 100%;
}
#ap .ap-content {
  position: absolute;
  width: 1140px;
  left: 0;
  right: 0;
  top: 100px;
  bottom: 0;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1180px) {
  #ap .ap-content {
    left: calc((100vw - 1140px) / 2);
    right: calc((100vw - 1140px) / 2);
  }
}
#ap .ap-headline {
  font-weight: 600;
  font-size: 5.3vw;
  line-height: 1.4;
}
@media screen and (min-width: 640px) {
  #ap .ap-headline {
    font-size: 2.5vw;
    line-height: 0.8;
    font-weight: 700;
  }
}
@media screen and (min-width: 1024px) {
  #ap .ap-headline {
    font-size: 3.1vw;
    line-height: 0.7;
  }
}
@media screen and (min-width: 1600px) {
  #ap .ap-headline {
    font-size: 50px;
  }
}
#ap .ap-subheadline {
  font-weight: 600;
  font-size: 5vw;
  line-height: 1.4;
}
@media screen and (min-width: 640px) {
  #ap .ap-subheadline {
    font-size: 1.8vw;
    line-height: 1;
    font-weight: 700;
  }
}
@media screen and (min-width: 1024px) {
  #ap .ap-subheadline {
    font-size: 1.9vw;
  }
}
@media screen and (min-width: 1600px) {
  #ap .ap-subheadline {
    font-size: 30px;
  }
}
#ap .is-first .ap-content {
  width: 100%;
  top: 0;
  margin-left: auto;
  margin-top: 100px;
  justify-content: flex-start;
}
@media screen and (min-width: 640px) {
  #ap .is-first .ap-content {
    width: 50%;
    margin-top: 50px;
    justify-content: center;
  }
}
@media screen and (min-width: 980px) {
  #ap .is-first .ap-content {
    width: 48%;
  }
}
@media screen and (min-width: 1024px) {
  #ap .is-first .ap-content {
    width: 46%;
    margin-top: 90px;
  }
}
@media screen and (min-width: 1280px) {
  #ap .is-first .ap-content {
    width: 40%;
  }
}
@media screen and (min-width: 1360px) {
  #ap .is-first .ap-content {
    width: 35%;
  }
}
@media screen and (min-width: 1600px) {
  #ap .is-first .ap-content {
    width: 50%;
    left: 0;
    right: 0;
  }
}
#ap .is-first .ap-content .ap-buttons {
  display: flex;
  padding: 0 20px;
  justify-content: center;
}
@media screen and (min-width: 640px) {
  #ap .is-first .ap-content .ap-buttons {
    padding: 0;
    justify-content: flex-start;
  }
}
#ap .is-first .ap-content .ap-buttons img {
  max-width: 120px;
}
@media screen and (min-width: 480px) {
  #ap .is-first .ap-content .ap-buttons img {
    max-width: none;
  }
}
@media screen and (min-width: 640px) {
  #ap .is-first .ap-content .ap-buttons img {
    max-width: 120px;
  }
}
@media screen and (min-width: 1024px) {
  #ap .is-first .ap-content .ap-buttons img {
    max-width: none;
  }
}
#ap .is-first .ap-content a {
  margin: 0 10px 0 0;
  display: inline-block;
  opacity: 1;
  transition: opacity 0.2 ease-in-out;
}
#ap .is-first .ap-content a:hover {
  opacity: 0.8;
}
@media screen and (min-width: 640px) {
  #ap .is-first .ap-content .ap-br_m {
    display: none;
  }
}
#ap .is-first .ap-content .ap-br {
  display: none;
}
@media screen and (min-width: 640px) {
  #ap .is-first .ap-content .ap-br {
    display: block;
  }
}
#ap .is-first .ap-subheadline {
  color: #000;
  margin-bottom: 15px;
}
@media screen and (min-width: 1024px) {
  #ap .is-first .ap-subheadline {
    margin-bottom: 25px;
  }
}
#ap .is-first .ap-headline {
  color: #fff;
  margin-bottom: 40px;
  padding: 0 20px;
}
@media screen and (min-width: 640px) {
  #ap .is-first .ap-headline {
    padding: 0;
  }
}
#ap .is-first .ap-text {
  position: absolute;
  text-align: center;
  left: 0;
  right: 0;
}
@media screen and (min-width: 640px) {
  #ap .is-first .ap-text {
    text-align: left;
    right: auto;
  }
}
@media screen and (min-width: 1360px) {
  #ap .is-first .ap-text {
    margin-top: -50px;
  }
}
#ap .is-second .ap-content {
  justify-content: flex-start;
  top: 0;
  margin-right: auto;
  width: auto;
}
@media screen and (min-width: 640px) {
  #ap .is-second .ap-content {
    width: 48%;
    justify-content: center;
  }
}
@media screen and (min-width: 980px) {
  #ap .is-second .ap-content {
    width: 48%;
  }
}
@media screen and (min-width: 1024px) {
  #ap .is-second .ap-content {
    width: 45%;
  }
}
@media screen and (min-width: 1360px) {
  #ap .is-second .ap-content {
    width: 34%;
  }
}
@media screen and (min-width: 1600px) {
  #ap .is-second .ap-content {
    width: 35%;
  }
}
@media screen and (min-width: 1600px) {
  #ap .is-second .ap-content {
    width: 50%;
    left: 0;
    right: 0;
  }
}
@media screen and (min-width: 640px) {
  #ap .is-second .ap-headline {
    line-height: 1.4;
  }
}
#ap .is-second .ap-text {
  text-align: center;
  padding-top: 90px;
}
@media screen and (min-width: 480px) {
  #ap .is-second .ap-text {
    padding-top: 80px;
  }
}
@media screen and (min-width: 640px) {
  #ap .is-second .ap-text {
    text-align: right;
    padding-top: 0;
  }
}
@media screen and (min-width: 640px) {
  #ap .is-third .ap-headline {
    line-height: 1.4;
  }
}
#ap .is-third .ap-content {
  justify-content: flex-start;
  top: 0;
  margin-left: auto;
  width: auto;
}
@media screen and (min-width: 640px) {
  #ap .is-third .ap-content {
    width: 48%;
    justify-content: center;
  }
}
@media screen and (min-width: 980px) {
  #ap .is-third .ap-content {
    width: 48%;
  }
}
@media screen and (min-width: 1024px) {
  #ap .is-third .ap-content {
    width: 42%;
  }
}
@media screen and (min-width: 1360px) {
  #ap .is-third .ap-content {
    width: 35%;
  }
}
@media screen and (min-width: 1600px) {
  #ap .is-third .ap-content {
    width: 50%;
    left: 0;
    right: 0;
  }
}
#ap .is-third .ap-text {
  color: #fff;
  text-align: center;
  padding-top: 100px;
}
@media screen and (min-width: 480px) {
  #ap .is-third .ap-text {
    padding-top: 100px;
  }
}
@media screen and (min-width: 640px) {
  #ap .is-third .ap-text {
    text-align: left;
    padding-top: 0;
  }
}
@media screen and (min-width: 640px) {
  #ap .is-fourth .ap-headline {
    line-height: 1.4;
  }
}
#ap .is-fourth .ap-content {
  justify-content: flex-start;
  top: 0;
  margin-right: auto;
  width: auto;
}
@media screen and (min-width: 640px) {
  #ap .is-fourth .ap-content {
    width: 48%;
    justify-content: center;
  }
}
@media screen and (min-width: 980px) {
  #ap .is-fourth .ap-content {
    width: 48%;
  }
}
@media screen and (min-width: 1024px) {
  #ap .is-fourth .ap-content {
    width: 45%;
  }
}
@media screen and (min-width: 1360px) {
  #ap .is-fourth .ap-content {
    width: 34%;
  }
}
@media screen and (min-width: 1600px) {
  #ap .is-fourth .ap-content {
    width: 35%;
  }
}
@media screen and (min-width: 1600px) {
  #ap .is-fourth .ap-content {
    width: 50%;
    left: 0;
    right: 0;
  }
}
#ap .is-fourth .ap-text {
  text-align: center;
  color: #000;
  margin-top: 80px;
}
@media screen and (min-width: 480px) {
  #ap .is-fourth .ap-text {
    padding-top: 40px;
  }
}
@media screen and (min-width: 640px) {
  #ap .is-fourth .ap-text {
    text-align: right;
    padding-top: 0;
    margin-top: -110px;
  }
}
@media screen and (min-width: 640px) {
  #ap .is-fifth .ap-headline {
    line-height: 1.4;
  }
}
#ap .is-fifth .ap-content {
  justify-content: flex-start;
  top: 0;
  margin-left: auto;
  width: auto;
}
@media screen and (min-width: 640px) {
  #ap .is-fifth .ap-content {
    width: 48%;
    justify-content: center;
  }
}
@media screen and (min-width: 980px) {
  #ap .is-fifth .ap-content {
    width: 48%;
  }
}
@media screen and (min-width: 1024px) {
  #ap .is-fifth .ap-content {
    width: 42%;
  }
}
@media screen and (min-width: 1360px) {
  #ap .is-fifth .ap-content {
    width: 35%;
  }
}
@media screen and (min-width: 1600px) {
  #ap .is-fifth .ap-content {
    width: 50%;
    left: 0;
    right: 0;
  }
}
#ap .is-fifth .ap-text {
  color: #fff;
  text-align: center;
  padding-top: 140px;
}
@media screen and (min-width: 480px) {
  #ap .is-fifth .ap-text {
    padding-top: 120px;
  }
}
@media screen and (min-width: 640px) {
  #ap .is-fifth .ap-text {
    text-align: left;
    padding-top: 0;
  }
}
@media screen and (min-width: 640px) {
  #ap .is-sixth .ap-headline {
    line-height: 1.4;
  }
}
#ap .is-sixth .ap-content {
  justify-content: flex-start;
  top: 0;
  margin-right: auto;
  width: auto;
}
@media screen and (min-width: 640px) {
  #ap .is-sixth .ap-content {
    width: 48%;
    justify-content: center;
  }
}
@media screen and (min-width: 980px) {
  #ap .is-sixth .ap-content {
    width: 48%;
  }
}
@media screen and (min-width: 1024px) {
  #ap .is-sixth .ap-content {
    width: 45%;
  }
}
@media screen and (min-width: 1360px) {
  #ap .is-sixth .ap-content {
    width: 34%;
  }
}
@media screen and (min-width: 1600px) {
  #ap .is-sixth .ap-content {
    width: 35%;
  }
}
@media screen and (min-width: 1600px) {
  #ap .is-sixth .ap-content {
    width: 50%;
    left: 0;
    right: 0;
  }
}
#ap .is-sixth .ap-text {
  text-align: center;
  color: #000;
  margin-top: 80px;
}
@media screen and (min-width: 480px) {
  #ap .is-sixth .ap-text {
    padding-top: 40px;
  }
}
@media screen and (min-width: 640px) {
  #ap .is-sixth .ap-text {
    text-align: right;
    padding-top: 0;
  }
}
@media screen and (min-width: 1600px) {
  #ap .is-sixth .ap-text {
    margin-top: 0;
  }
}
@media screen and (min-width: 640px) {
  #ap .is-seventh .ap-headline {
    line-height: 1.4;
  }
}
#ap .is-seventh .ap-content {
  justify-content: flex-start;
  top: 0;
  margin-left: auto;
  width: auto;
}
@media screen and (min-width: 640px) {
  #ap .is-seventh .ap-content {
    width: 48%;
    justify-content: center;
  }
}
@media screen and (min-width: 980px) {
  #ap .is-seventh .ap-content {
    width: 48%;
  }
}
@media screen and (min-width: 1024px) {
  #ap .is-seventh .ap-content {
    width: 42%;
  }
}
@media screen and (min-width: 1360px) {
  #ap .is-seventh .ap-content {
    width: 35%;
  }
}
@media screen and (min-width: 1600px) {
  #ap .is-seventh .ap-content {
    width: 50%;
    left: 0;
    right: 0;
  }
}
#ap .is-seventh .ap-text {
  color: #fff;
  text-align: center;
  padding-top: 120px;
}
@media screen and (min-width: 480px) {
  #ap .is-seventh .ap-text {
    padding-top: 120px;
  }
}
@media screen and (min-width: 640px) {
  #ap .is-seventh .ap-text {
    text-align: left;
    padding-top: 0;
  }
}
@media screen and (min-width: 640px) {
  #ap .is-eighth .ap-headline {
    line-height: 1.4;
  }
}
#ap .is-eighth .ap-content {
  justify-content: flex-start;
  top: 0;
  margin-right: auto;
  width: auto;
}
@media screen and (min-width: 640px) {
  #ap .is-eighth .ap-content {
    width: 48%;
    justify-content: center;
  }
}
@media screen and (min-width: 980px) {
  #ap .is-eighth .ap-content {
    width: 48%;
  }
}
@media screen and (min-width: 1024px) {
  #ap .is-eighth .ap-content {
    width: 45%;
  }
}
@media screen and (min-width: 1360px) {
  #ap .is-eighth .ap-content {
    width: 34%;
  }
}
@media screen and (min-width: 1600px) {
  #ap .is-eighth .ap-content {
    width: 35%;
  }
}
@media screen and (min-width: 1600px) {
  #ap .is-eighth .ap-content {
    width: 50%;
    left: 0;
    right: 0;
  }
}
#ap .is-eighth .ap-text {
  text-align: center;
  color: #000;
  margin-top: 80px;
}
@media screen and (min-width: 480px) {
  #ap .is-eighth .ap-text {
    padding-top: 40px;
  }
}
@media screen and (min-width: 640px) {
  #ap .is-eighth .ap-text {
    text-align: right;
    padding-top: 0;
    margin-top: 0;
  }
}
@media screen and (min-width: 1600px) {
  #ap .is-eighth .ap-text {
    margin-top: -112px;
  }
}
@media screen and (min-width: 640px) {
  #ap .is-ninth .ap-headline {
    line-height: 1.4;
  }
}
#ap .is-ninth .ap-content {
  justify-content: flex-start;
  top: 0;
  margin-left: auto;
  width: auto;
}
@media screen and (min-width: 640px) {
  #ap .is-ninth .ap-content {
    width: 48%;
    justify-content: center;
  }
}
@media screen and (min-width: 980px) {
  #ap .is-ninth .ap-content {
    width: 48%;
  }
}
@media screen and (min-width: 1024px) {
  #ap .is-ninth .ap-content {
    width: 42%;
  }
}
@media screen and (min-width: 1360px) {
  #ap .is-ninth .ap-content {
    width: 35%;
  }
}
@media screen and (min-width: 1600px) {
  #ap .is-ninth .ap-content {
    width: 50%;
    left: 0;
    right: 0;
  }
}
#ap .is-ninth .ap-text {
  color: #fff;
  text-align: center;
  padding-top: 80px;
}
@media screen and (min-width: 480px) {
  #ap .is-ninth .ap-text {
    padding-top: 110px;
  }
}
@media screen and (min-width: 640px) {
  #ap .is-ninth .ap-text {
    text-align: left;
    padding-top: 0;
  }
}
@media screen and (min-width: 1600px) {
  #ap .is-ninth .ap-text {
    padding-top: 60px;
  }
}
#ap .is-ninth .ap-headline {
  margin-bottom: 20px;
}
@media screen and (min-width: 640px) {
  #ap .is-ninth .ap-headline {
    margin-bottom: 40px;
  }
}
#ap .is-ninth .ap-download {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 640px) {
  #ap .is-ninth .ap-download {
    flex-direction: row;
  }
}
#ap .is-ninth .ap-download a {
  display: inline-block;
  opacity: 1;
  transition: opacity 0.2 ease-in-out;
  margin-bottom: 10px;
}
#ap .is-ninth .ap-download a:hover {
  opacity: 0.8;
  text-decoration: none;
}
@media screen and (min-width: 640px) {
  #ap .is-ninth .ap-download a {
    margin-right: 10px;
  }
}
@media screen and (min-width: 1024px) {
  #ap .is-ninth .ap-download a {
    margin-right: 20px;
  }
}
#ap .is-ninth .ap-download a img {
  max-width: 150px;
}
@media screen and (min-width: 640px) {
  #ap .is-ninth .ap-download a img {
    max-width: 150px;
  }
}
@media screen and (min-width: 768px) {
  #ap .is-ninth .ap-download a img {
    max-width: 160px;
  }
}
@media screen and (min-width: 1024px) {
  #ap .is-ninth .ap-download a img {
    max-width: none;
  }
}

.policy-content {
  position: relative;
  left: auto;
  right: auto;
  max-width: 1140px;
  width: auto !important;
  padding: 0 40px;
  margin-top: 100px;
}
.policy-content .policy-headline {
  font-size: 45px;
}
@media only screen and (max-width: 850px) {
  .policy-content .policy-headline {
    font-size: 32px;
  }
}
@media only screen and (max-width: 600px) {
  .policy-content .policy-headline {
    font-size: 22px;
  }
}
.policy-content ol li {
  list-style-position: inside;
}
.policy-content ul {
  padding-left: 20px;
}
.policy-content p,
.policy-content li,
.policy-content span,
.policy-content h3 {
  color: white;
  line-height: normal;
}
.policy-content h3 {
  font-size: 30px;
  margin-top: 30px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 850px) {
  .policy-content h3 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 600px) {
  .policy-content h3 {
    font-size: 16px;
  }
}
.policy-content li span {
  font-weight: 700;
}
.policy-content li,
.policy-content p {
  font-size: 16px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 850px) {
  .policy-content li,
.policy-content p {
    font-size: 14px;
  }
}
.policy-content .ap-headline {
  line-height: normal !important;
}
@media only screen and (max-width: 1024px) {
  .policy-content {
    margin-top: 1vw;
  }
}