:root {
  --body-bg: #fff;
  --body-bg-rgb: 255,255,255;
  --global-radius: 6px;
  --brand-primary: #1E6EE6;
  --brand-primary-rgb: 30,110,230;
  --brand-green: #229F6C;
  --brand-green-rgb: 34,159,108;
  --brand-red: #F02945;
  --brand-red-rgb: 240,42,69;
  --brand-orange: #F07929;
  --brand-orange-rgb: 240, 121, 41;
  --box-height: 424px;
  --font-family: "Basier Circle Mono", sans-serif;
  --text-color: #0B0E13;
  --text-color-rgb: 51,51,51;
  --font-regular: 300;
  --font-medium: 400;
  --font-semiBold: 500;
  --font-bold: 600;
  --font-xs: 12px;
  --font-s: 14px;
  --font-m: 16px;
  --font-l: 18px;
  --font-xl: 22px;
  --font-xxl: 24px;
  --nav-bg: white;
  --nav-shadow: 0 0 10px rgba(0,0,0,0.1);
  --nav-height: 54px;
  --watchlist-height: 24px;
  --nav-border-color: var(--gray-400);
  --nav-main-color: #545965;
  --nav-main-bg: var(--nav-bg);
  --nav-sub-color: rgba(var(--text-color-rgb), 0.5);
  --nav-sub-bg: var(--gray-400);
  --nav-hover-bg: var(--gray-400);
  --global-search-bg: var(--gray-400);
  --global-search-border-color: var(--form-field-border-color);
  --footer-main-bg: var(--gray-400);
  --footer-color: var(--text-color);
  --footer-sub-bg: var(--gray-500);
  --gray-400: #ECEFF6;
  --gray-400-rgb: 236,239,246;
  --gray-500: #DCDFE5;
  --gray-600: #BABCC2;
  --gray-700: #A6A8AD;
  --gradient-watchlist-rgb: 236,239,246;
  --gradient-live-news-rgb: 255,255,255;
  --gradient-nav-rgb: 255,255,255;
  --gradient-legal-rgb: 255,255,255;
  --form-field-bg: var(--body-bg);
  --form-field-color: var(--text-color);
  --form-field-border-color: #CCD5E0;
  --form-field-label-size: 12px;
  --form-field-label-color: #828187;
  --btn-height: 46px;
  --btn-radius: var(--global-radius);
  --btn-primary-bg: var(--brand-primary);
  --btn-primary-color: white;
  --btn-primary-outline-color: var(--brand-primary);
  --btn-primary-outline-bg: transparent;
  --box-bg: var(--gray-400);
  --line-color: var(--gray-400);
  --z-nav: 200;
  --z-burger-menu: 220;
  --z-overlay: 300;
  --z-drawer: 320;
  --section-margin-sm: 40px;
  --section-margin-md: 60px;
  --section-margin-lg: 80px;
  --chart-line-1: #7A94F0;
  --chart-line-2: #58DDE5;
  --chart-line-3: #1E6EE6;
  --chart-bg: var(--gray-400);
  --chart-yAxis-bg: white;
  --view-height: calc(100vh - var(--nav-height) - var(--watchlist-height));
}
:root .dark {
  --body-bg: var(--gray-900);
  --body-bg-rgb: 11,14,19;
  --brand-green: #00E593;
  --brand-green-rgb: 0,229,147;
  --brand-red: #FF525E;
  --text-color: #fff;
  --text-color-rgb: 255,255,255;
  --nav-bg: var(--gray-800);
  --nav-shadow: none;
  --nav-border-color: var(--gray-600);
  --nav-main-color: white;
  --nav-main-bg: var(--gray-700);
  --nav-sub-color: rgba(var(--text-color-rgb), 0.5);
  --nav-sub-bg: var(--gray-900);
  --nav-hover-bg: var(--gray-800);
  --global-search-bg: var(--gray-900);
  --global-search-border-color: var(--gray-600);
  --footer-main-bg: var(--gray-800);
  --footer-color: var(--text-color);
  --footer-sub-bg: var(--gray-900);
  --gray-400: #757A85;
  --gray-400-rgb: 177,122,133;
  --gray-500: #3B414D;
  --gray-600: #2B3038;
  --gray-700: #181E26;
  --gray-700-rgb: 24,30,38;
  --gray-800: #10141A;
  --gray-800-rgb: 16,20,26;
  --gray-900: #0A0C0F;
  --gray-900-rgb: 10, 12, 15;
  --gradient-watchlist-rgb: var(--gray-700-rgb);
  --gradient-live-news-rgb: var(--gray-900-rgb);
  --gradient-legal-rgb: 22,25,30;
  --gradient-nav-rgb: var(--gray-800-rgb);
  --form-field-bg: var(--gray-800);
  --form-field-color: var(--text-color);
  --form-field-border-color: #585f6a;
  --form-field-label-size: 12px;
  --form-field-label-color: #798391;
  --btn-primary-outline-bg: transparent;
  --box-bg: var(--gray-700);
  --line-color: var(--gray-700);
  --chart-bg: transparent;
  --chart-yAxis-bg: var(--gray-800);
}

body {
  margin: 0;
}

ul {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
  overflow-wrap: normal;
}

button {
  cursor: pointer;
}
button:focus {
  outline: none;
}

p,
.p {
  line-height: 1.7;
}
p a,
.p a {
  text-decoration: underline;
  color: var(--brand-primary);
}
p ul li,
.p ul li {
  margin: 0 0 10px 20px;
  list-style: disc;
}

* {
  box-sizing: border-box;
}

button {
  background-color: transparent;
  border: none;
}

figure {
  margin: 0;
  flex-shrink: 0;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

input,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  border: none;
}

input,
button,
select {
  font-family: var(--font-family);
}

@font-face {
  font-family: "Basier Circle Mono";
  font-style: normal;
  font-weight: 300;
  src: url("https://premiumtraders.ch/wp-content/themes/custom/font/basier-circle/basiercircle-regular.woff2") format("woff2"), url("https://premiumtraders.ch/wp-content/themes/custom/font/basier-circle/basiercircle-regular.woff") format("woff"), url("https://premiumtraders.ch/wp-content/themes/custom/font/basier-circle/basiercircle-regular.eot") format("eot"), url("https://premiumtraders.ch/wp-content/themes/custom/font/basier-circle/basiercircle-regular.ttf") format("truetype");
}
@font-face {
  font-family: "Basier Circle Mono";
  font-style: normal;
  font-weight: 400;
  src: url("https://premiumtraders.ch/wp-content/themes/custom/font/basier-circle/basiercircle-medium.woff2") format("woff2"), url("https://premiumtraders.ch/wp-content/themes/custom/font/basier-circle/basiercircle-medium.woff") format("woff"), url("https://premiumtraders.ch/wp-content/themes/custom/font/basier-circle/basiercircle-medium.eot") format("eot"), url("https://premiumtraders.ch/wp-content/themes/custom/font/basier-circle/basiercircle-medium.ttf") format("truetype");
}
@font-face {
  font-family: "Basier Circle Mono";
  font-style: normal;
  font-weight: 500;
  src: url("https://premiumtraders.ch/wp-content/themes/custom/font/basier-circle/basiercircle-semibold.woff2") format("woff2"), url("https://premiumtraders.ch/wp-content/themes/custom/font/basier-circle/basiercircle-semibold.woff") format("woff"), url("https://premiumtraders.ch/wp-content/themes/custom/font/basier-circle/basiercircle-semibold.eot") format("eot"), url("https://premiumtraders.ch/wp-content/themes/custom/font/basier-circle/basiercircle-semibold.ttf") format("truetype");
}
@font-face {
  font-family: "Basier Circle Mono";
  font-style: normal;
  font-weight: 600;
  src: url("https://premiumtraders.ch/wp-content/themes/custom/font/basier-circle/basiercircle-bold.woff2") format("woff2"), url("https://premiumtraders.ch/wp-content/themes/custom/font/basier-circle/basiercircle-bold.woff") format("woff"), url("https://premiumtraders.ch/wp-content/themes/custom/font/basier-circle/basiercircle-bold.eot") format("eot"), url("https://premiumtraders.ch/wp-content/themes/custom/font/basier-circle/basiercircle-bold.ttf") format("truetype");
}
:root {
  --body-bg: #fff;
  --body-bg-rgb: 255,255,255;
  --global-radius: 6px;
  --brand-primary: #1E6EE6;
  --brand-primary-rgb: 30,110,230;
  --brand-green: #229F6C;
  --brand-green-rgb: 34,159,108;
  --brand-red: #F02945;
  --brand-red-rgb: 240,42,69;
  --brand-orange: #F07929;
  --brand-orange-rgb: 240, 121, 41;
  --box-height: 424px;
  --font-family: "Basier Circle Mono", sans-serif;
  --text-color: #0B0E13;
  --text-color-rgb: 51,51,51;
  --font-regular: 300;
  --font-medium: 400;
  --font-semiBold: 500;
  --font-bold: 600;
  --font-xs: 12px;
  --font-s: 14px;
  --font-m: 16px;
  --font-l: 18px;
  --font-xl: 22px;
  --font-xxl: 24px;
  --nav-bg: white;
  --nav-shadow: 0 0 10px rgba(0,0,0,0.1);
  --nav-height: 54px;
  --watchlist-height: 24px;
  --nav-border-color: var(--gray-400);
  --nav-main-color: #545965;
  --nav-main-bg: var(--nav-bg);
  --nav-sub-color: rgba(var(--text-color-rgb), 0.5);
  --nav-sub-bg: var(--gray-400);
  --nav-hover-bg: var(--gray-400);
  --global-search-bg: var(--gray-400);
  --global-search-border-color: var(--form-field-border-color);
  --footer-main-bg: var(--gray-400);
  --footer-color: var(--text-color);
  --footer-sub-bg: var(--gray-500);
  --gray-400: #ECEFF6;
  --gray-400-rgb: 236,239,246;
  --gray-500: #DCDFE5;
  --gray-600: #BABCC2;
  --gray-700: #A6A8AD;
  --gradient-watchlist-rgb: 236,239,246;
  --gradient-live-news-rgb: 255,255,255;
  --gradient-nav-rgb: 255,255,255;
  --gradient-legal-rgb: 255,255,255;
  --form-field-bg: var(--body-bg);
  --form-field-color: var(--text-color);
  --form-field-border-color: #CCD5E0;
  --form-field-label-size: 12px;
  --form-field-label-color: #828187;
  --btn-height: 46px;
  --btn-radius: var(--global-radius);
  --btn-primary-bg: var(--brand-primary);
  --btn-primary-color: white;
  --btn-primary-outline-color: var(--brand-primary);
  --btn-primary-outline-bg: transparent;
  --box-bg: var(--gray-400);
  --line-color: var(--gray-400);
  --z-nav: 200;
  --z-burger-menu: 220;
  --z-overlay: 300;
  --z-drawer: 320;
  --section-margin-sm: 40px;
  --section-margin-md: 60px;
  --section-margin-lg: 80px;
  --chart-line-1: #7A94F0;
  --chart-line-2: #58DDE5;
  --chart-line-3: #1E6EE6;
  --chart-bg: var(--gray-400);
  --chart-yAxis-bg: white;
  --view-height: calc(100vh - var(--nav-height) - var(--watchlist-height));
}
:root .dark {
  --body-bg: var(--gray-900);
  --body-bg-rgb: 11,14,19;
  --brand-green: #00E593;
  --brand-green-rgb: 0,229,147;
  --brand-red: #FF525E;
  --text-color: #fff;
  --text-color-rgb: 255,255,255;
  --nav-bg: var(--gray-800);
  --nav-shadow: none;
  --nav-border-color: var(--gray-600);
  --nav-main-color: white;
  --nav-main-bg: var(--gray-700);
  --nav-sub-color: rgba(var(--text-color-rgb), 0.5);
  --nav-sub-bg: var(--gray-900);
  --nav-hover-bg: var(--gray-800);
  --global-search-bg: var(--gray-900);
  --global-search-border-color: var(--gray-600);
  --footer-main-bg: var(--gray-800);
  --footer-color: var(--text-color);
  --footer-sub-bg: var(--gray-900);
  --gray-400: #757A85;
  --gray-400-rgb: 177,122,133;
  --gray-500: #3B414D;
  --gray-600: #2B3038;
  --gray-700: #181E26;
  --gray-700-rgb: 24,30,38;
  --gray-800: #10141A;
  --gray-800-rgb: 16,20,26;
  --gray-900: #0A0C0F;
  --gray-900-rgb: 10, 12, 15;
  --gradient-watchlist-rgb: var(--gray-700-rgb);
  --gradient-live-news-rgb: var(--gray-900-rgb);
  --gradient-legal-rgb: 22,25,30;
  --gradient-nav-rgb: var(--gray-800-rgb);
  --form-field-bg: var(--gray-800);
  --form-field-color: var(--text-color);
  --form-field-border-color: #585f6a;
  --form-field-label-size: 12px;
  --form-field-label-color: #798391;
  --btn-primary-outline-bg: transparent;
  --box-bg: var(--gray-700);
  --line-color: var(--gray-700);
  --chart-bg: transparent;
  --chart-yAxis-bg: var(--gray-800);
}

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

.container {
  max-width: 1340px;
  margin: 0 auto;
  padding: 15px;
}
.container.no-padding-top-bottom {
  padding-top: 0;
  padding-bottom: 0;
}
@media screen and (min-width: 576px) {
  .container {
    padding-right: 20px;
    padding-left: 20px;
  }
}

.col-xxl,
.col-xxl-auto, .col-xxl-12, .col-xxl-11, .col-xxl-10, .col-xxl-9, .col-xxl-8, .col-xxl-7, .col-xxl-6, .col-xxl-5, .col-xxl-4, .col-xxl-3, .col-xxl-2, .col-xxl-1, .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 {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 10px;
  padding-left: 10px;
}

@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%;
  }
}
@media (min-width: 1360px) {
  .col-xxl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-xxl-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-xxl-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-xxl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-xxl-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-xxl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-xxl-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-xxl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-xxl-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-xxl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xxl-first {
    order: -1;
  }
  .order-xxl-last {
    order: 13;
  }
  .order-xxl-0 {
    order: 0;
  }
  .order-xxl-1 {
    order: 1;
  }
  .order-xxl-2 {
    order: 2;
  }
  .order-xxl-3 {
    order: 3;
  }
  .order-xxl-4 {
    order: 4;
  }
  .order-xxl-5 {
    order: 5;
  }
  .order-xxl-6 {
    order: 6;
  }
  .order-xxl-7 {
    order: 7;
  }
  .order-xxl-8 {
    order: 8;
  }
  .order-xxl-9 {
    order: 9;
  }
  .order-xxl-10 {
    order: 10;
  }
  .order-xxl-11 {
    order: 11;
  }
  .order-xxl-12 {
    order: 12;
  }
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.3333333333%;
  }
  .offset-xxl-2 {
    margin-left: 16.6666666667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.3333333333%;
  }
  .offset-xxl-5 {
    margin-left: 41.6666666667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.3333333333%;
  }
  .offset-xxl-8 {
    margin-left: 66.6666666667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.3333333333%;
  }
  .offset-xxl-11 {
    margin-left: 91.6666666667%;
  }
}
.burger-menu {
  position: relative;
  width: 30px;
  height: 18px;
  z-index: 10;
  cursor: pointer;
}

.burger-menu-piece {
  display: block;
  position: absolute;
  width: 30px;
  border-top: 3px solid var(--text-color);
  border-radius: 5px;
  transform-origin: 50% 50%;
  transition: all 0.3s ease-in-out;
}
.burger-menu-piece:nth-child(1) {
  top: 0;
}
.burger-menu-piece:nth-child(2) {
  top: 8px;
  opacity: 1;
}
.burger-menu-piece:nth-child(3) {
  top: 16px;
}
.active .burger-menu-piece:nth-child(1) {
  transform: translate3d(0, 8px, 0) rotate(45deg);
}
.active .burger-menu-piece:nth-child(2) {
  opacity: 0;
}
.active .burger-menu-piece:nth-child(3) {
  transform: translate3d(0, -8px, 0) rotate(-45deg);
}

@keyframes burger-open-top {
  50% {
    transform: translate3d(0, 8px, 0);
  }
}
@keyframes burger-open-bot {
  50% {
    transform: translate3d(0, -8px, 0);
  }
  100% {
    transform: translate3d(0, -8px, 0) rotate(-45deg);
  }
}
@keyframes burger-close-top {
  0% {
    transform: translate3d(0, 8px, 0) rotate(45deg);
  }
  50% {
    transform: translate3d(0, 8px, 0) rotate(0deg);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes burger-close-bot {
  0% {
    transform: translate3d(0, -8px, 0) rotate(-45deg);
  }
  50% {
    transform: translate3d(0, -8px, 0) rotate(0deg);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
.navbar-wrapper .nav-brand img {
  width: 100px;
  margin-right: -25px;
}
.navbar-wrapper #navbar {
  display: flex;
  align-items: center;
  margin-left: 10px;
}

.menu-main-navigation-container {
  display: none;
}

#mainNavigation {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--nav-main-bg);
  z-index: var(--z-nav);
  box-shadow: var(--nav-shadow);
}
#mainNavigation .back-to-platform {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
  user-select: none;
  position: relative;
  padding: 0 5px;
  width: 60px;
  height: 54px;
  background-color: var(--nav-main-bg);
  border-left: 1px solid var(--line-color);
}
#mainNavigation .back-to-platform img {
  width: 22px;
  height: 22px;
  margin-bottom: 5px;
}
#mainNavigation .back-to-platform .label {
  color: var(--nav-main-color);
  font-weight: var(--font-medium);
  font-size: 10px;
  max-width: 100%;
  padding-bottom: 2px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
#mainNavigation .nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--nav-height);
  padding: 0 0 0 15px;
}
#mainNavigation .nav-left {
  display: flex;
  align-items: center;
}
#mainNavigation .navbar-wrapper li.current-menu-item a::before, #mainNavigation .navbar-wrapper li.current-page-ancestor a::before {
  background-color: var(--brand-primary);
  height: 2px;
}
#mainNavigation .navbar-wrapper li.current-menu-item:hover a::before, #mainNavigation .navbar-wrapper li.current-page-ancestor:hover a::before {
  background-color: var(--brand-primary);
}
#mainNavigation .navbar-wrapper li.menu-item {
  position: relative;
}
#mainNavigation .navbar-wrapper li.menu-item a {
  padding: 20px 6px 21px;
  font-size: 13px;
}
#mainNavigation .navbar-wrapper li.menu-item.menu-item-has-children > a {
  display: inline-flex;
  align-items: center;
  padding-right: 20px;
}
#mainNavigation .navbar-wrapper li.menu-item.menu-item-has-children > a::after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg version='1.1' id='Ebene_1' xmlns='http://www.w3.org/2000/svg' fill='%23545965' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 11.6 11.6' style='enable-background:new 0 0 11.6 11.6;' xml:space='preserve'%3E%3Cg%3E%3Cpath d='M5.8,7.5c-0.1,0-0.2,0-0.3-0.1L2.9,4.8c-0.2-0.2-0.2-0.4,0-0.6c0.2-0.2,0.4-0.2,0.6,0l2.3,2.3l2.3-2.3 c0.2-0.2,0.4-0.2,0.6,0s0.2,0.4,0,0.6L6.1,7.4C6,7.5,5.9,7.5,5.8,7.5z'/%3E%3C/g%3E%3C/svg%3E%0A");
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  right: 3px;
  top: 50%;
  transform: translateY(-50%);
  margin: 1px 0 0 2px;
}
#mainNavigation .navbar-wrapper li.menu-item:hover .sub-menu {
  display: block;
}
#mainNavigation .navbar-wrapper li.menu-item .sub-menu {
  position: absolute;
  display: none;
  top: 100%;
  left: 0;
  border-radius: var(--global-radius);
  padding: 5px;
  background-color: white;
  width: 240px;
  box-shadow: var(--nav-shadow);
}
#mainNavigation .navbar-wrapper li.menu-item .sub-menu a {
  padding: 11px 10px;
  border-radius: var(--global-radius);
  white-space: nowrap;
  justify-content: space-between;
  display: flex;
  align-items: center;
}
#mainNavigation .navbar-wrapper li.menu-item .sub-menu a::before {
  display: none;
}
#mainNavigation .navbar-wrapper li.menu-item .sub-menu a:hover:not(.no-hover) {
  background-color: var(--nav-hover-bg);
}
#mainNavigation .navbar-wrapper li:hover > a::before {
  background-color: var(--gray-500);
  height: 2px;
}
#mainNavigation .navbar-wrapper li a {
  padding: 10px 5px;
  display: inline-block;
  color: var(--nav-main-color);
  font-size: 13px;
  font-weight: var(--font-medium);
  position: relative;
  transition: color 0.3s ease-in-out;
}
#mainNavigation .navbar-wrapper li a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  transition: height 0.15s linear;
}
#mainNavigation .mobile-nav-fade-bg {
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  z-index: 10;
  visibility: hidden;
  transition: all 0.3s linear;
}
#mainNavigation .mobile-nav-fade-bg .icon-close {
  position: absolute;
  top: 15px;
  right: 12px;
  fill: white;
  width: 26px;
  height: 26px;
  opacity: 0;
}
#mainNavigation .mobile-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
}
#mainNavigation .mobile-nav.open {
  opacity: 1;
  visibility: visible;
}
#mainNavigation .mobile-nav.open .mobile-overlay {
  transform: translateX(0);
}
#mainNavigation .mobile-nav.open .mobile-nav-fade-bg {
  opacity: 1;
  visibility: visible;
}
#mainNavigation .mobile-overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 50px;
  transform: translateX(-100%);
  overflow: auto;
  transition: transform 0.3s linear;
  background-color: var(--nav-main-bg);
  background: var(--body-bg);
  z-index: 20;
  align-items: center;
  justify-content: center;
  padding: 50px 15px;
}
#mainNavigation .mobile-overlay #mobileNav > li > a::after {
  content: "";
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3C!-- Generator: Adobe Illustrator 26.5.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --%3E%3Csvg version='1.1' id='Ebene_1' xmlns='http://www.w3.org/2000/svg' fill='%23545965' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 24 24' style='enable-background:new 0 0 24 24;' xml:space='preserve'%3E%3Cg%3E%3Cpath d='M9,19c-0.3,0-0.5-0.1-0.7-0.3c-0.4-0.4-0.4-1,0-1.4l5.3-5.3L8.3,6.7c-0.4-0.4-0.4-1,0-1.4s1-0.4,1.4,0l6,6 c0.4,0.4,0.4,1,0,1.4l-6,6C9.5,18.9,9.3,19,9,19z'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  display: block;
  width: 16px;
  height: 16px;
  margin: 1px 0 0 2px;
}
#mainNavigation .mobile-overlay li.menu-item > a {
  font-size: var(--font-s);
  color: var(--nav-main-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  font-weight: var(--font-semiBold);
  border-bottom: 1px solid var(--nav-border-color);
  text-decoration: none;
  position: relative;
}
#mainNavigation .mobile-overlay li.menu-item.menu-item-has-children a {
  border-bottom: none;
  padding-bottom: 5px;
}
#mainNavigation .mobile-overlay li.menu-item .sub-menu {
  position: relative;
  box-shadow: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
#mainNavigation .mobile-overlay li.menu-item .sub-menu li {
  margin-right: 5px;
}
#mainNavigation .mobile-overlay li.menu-item .sub-menu li:first-child a:before {
  display: none;
}
#mainNavigation .mobile-overlay li.menu-item .sub-menu li a {
  font-weight: var(--font-regular);
  color: rgba(var(--text-color-rgb), 0.6);
}
#mainNavigation .mobile-overlay li.menu-item .sub-menu li a::before {
  content: "";
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  margin: 0 8px 0 2px;
  background-color: rgba(var(--text-color-rgb), 0.6);
}

@media screen and (min-width: 768px) {
  .burger-menu {
    display: none;
  }
  .menu-main-navigation-container {
    display: block;
  }
  .navbar-wrapper .nav-brand img {
    width: 96px;
    margin: 0;
  }
}
html {
  overflow-x: hidden;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-m);
  background-color: var(--body-bg);
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
  font-weight: var(--font-regular);
  color: var(--text-color);
  overflow-x: hidden;
}
@media screen and (min-width: 768px) {
  body {
    overflow-x: unset;
  }
}

main {
  padding-top: var(--nav-height);
}
main.no-nav {
  padding-top: 70px;
}

.section-sidebar {
  margin-bottom: var(--section-margin-sm);
}
.section-sidebar.no-margin-sm {
  margin-bottom: 0;
}

.section {
  margin-bottom: var(--section-margin-sm);
}
.section.no-margin {
  margin-bottom: 0;
}
.section.gray, .section.night {
  background-color: var(--gray-400);
  padding: var(--section-margin-sm) 0;
}
.section.gray .sub-section, .section.night .sub-section {
  margin-bottom: 0;
}
.section.no-margin-sm {
  margin-bottom: 0;
}

.container {
  padding: 0 15px;
}

@media screen and (min-width: 768px) {
  .section,
  .section.no-margin-sm {
    margin-bottom: var(--section-margin-md);
  }
  .section.no-margin,
  .section.no-margin-sm.no-margin {
    margin-bottom: 0;
  }
  .section.gray, .section.night,
  .section.no-margin-sm.gray,
  .section.no-margin-sm.night {
    padding: var(--section-margin-md) 0;
  }
}
@media screen and (min-width: 992px) {
  .section,
  .section.no-margin-sm {
    margin-bottom: var(--section-margin-lg);
  }
  .section.no-margin,
  .section.no-margin-sm.no-margin {
    margin-bottom: 0;
  }
  .section.gray,
  .section.no-margin-sm.gray {
    padding: var(--section-margin-lg) 0;
  }
}
.section-sidebar,
.section-sidebar.no-margin-sm {
  padding-left: 40px;
}
.section-sidebar.left,
.section-sidebar.no-margin-sm.left {
  padding: 0 40px 0 0;
}

.img-responsive {
  max-width: 100%;
  height: auto;
}

.bold {
  font-weight: var(--font-semiBold);
}

h1 {
  font-size: var(--font-xxl);
  font-weight: var(--font-semiBold);
}

h2,
.h2 {
  font-size: var(--font-m);
  font-weight: var(--font-semiBold);
  line-height: 1.3;
}

h3 {
  font-size: var(--font-s);
  font-weight: var(--font-semiBold);
}

a {
  color: var(--text-color);
}

.show-md {
  display: none;
}

strong {
  font-weight: var(--font-semiBold);
}

.embed-container {
  position: relative;
  background-color: #fff;
  padding-bottom: 56.25%;
  overflow: hidden;
  width: 100%;
  height: auto;
  margin-bottom: 15px;
}

.embed-container iframe {
  border: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

footer {
  background-color: white;
  border-top: 1px solid var(--line-color);
}
footer .footer-inner {
  height: 120px;
  display: flex;
  align-items: center;
  flex-direction: column-reverse;
  justify-content: center;
  text-align: center;
  font-size: var(--font-s);
}
footer .footer-inner a {
  padding: 10px;
  display: block;
}
footer .footer-inner a:hover {
  text-decoration: underline;
}
footer .footer-inner .copyright {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  footer .footer-inner {
    height: 100px;
    flex-direction: row;
    justify-content: space-between;
  }
  footer .footer-inner .copyright {
    margin-top: 0;
  }
  footer .footer-inner ul {
    display: flex;
    align-items: center;
  }
}

.list li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 10px;
  line-height: 1.5;
}
.list li:last-child {
  margin-bottom: 0;
}
.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 3px;
  height: 17px;
  border-radius: 5px;
  background-color: var(--brand-primary);
}

.downloads-box {
  background-color: var(--box-bg);
  border-radius: var(--global-radius);
  padding: 20px;
  margin-top: 30px;
}
.downloads-box .m-arrow-link {
  border: none;
  display: inline-flex;
  padding: 0;
  font-size: var(--font-s);
  margin-bottom: 0;
  line-height: 1.4;
  margin-top: 0;
  text-decoration: underline;
  color: var(--text-color);
}
.downloads-box .m-arrow-link svg {
  fill: var(--text-color);
}
.downloads-box ul li {
  margin-bottom: 10px;
}
.downloads-box ul li:last-child {
  margin-bottom: 0;
}
.downloads-box h3 {
  margin-bottom: 15px;
}

@media screen and (min-width: 992px) {
  .downloads-box {
    padding: 30px;
  }
  .downloads-box ul li {
    margin-bottom: 20px;
  }
  .downloads-box ul li .m-arrow-link {
    font-size: var(--font-m);
  }
  .downloads-box h3 {
    font-size: var(--font-m);
  }
}
.button-list li {
  margin-bottom: 10px;
}
.button-list li:last-child {
  margin-bottom: 0;
}

.layout-basic h1 {
  margin-bottom: 20px;
  line-height: 1.2;
}
.layout-basic h2 {
  margin-bottom: 8px;
}
.layout-basic h3 {
  margin-bottom: 8px;
}
.layout-basic h4 {
  margin-bottom: 8px;
}
.layout-basic ul,
.layout-basic ol {
  padding-left: 15px;
  margin: 10px 0 20px;
}
.layout-basic ul li,
.layout-basic ol li {
  list-style: disc;
  margin-bottom: 10px;
  line-height: 1.5;
}
.layout-basic ol > li {
  list-style: decimal;
}
.layout-basic .block {
  margin-bottom: var(--section-margin-sm);
}
.layout-basic p {
  margin-bottom: 15px;
}
.layout-basic a {
  text-decoration: underline;
}

.app-plain {
  padding: 20px 0;
}

.page-template-app_plain header,
.page-template-app_plain footer {
  display: none !important;
}
.page-template-app_plain main {
  padding-top: 0;
}

.btn {
  background-color: var(--box-bg);
  color: var(--text-color);
  border-radius: var(--global-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: var(--btn-height);
  height: var(--btn-height);
  font-weight: var(--font-semiBold);
  font-size: var(--font-m);
  text-align: center;
  padding: 0 20px;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
}
.btn[disabled=true] {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn.btn-inline {
  display: inline-block;
}
.btn.btn-light {
  background-color: white;
  color: var(--brand-primary);
}
.btn.btn-sm {
  height: 32px;
  line-height: 32px;
  text-transform: none;
  letter-spacing: 0.01em;
  font-size: var(--font-xs);
  font-weight: var(--font-semiBold);
}
.btn.btn-nav {
  height: 32px;
  line-height: 32px;
  text-transform: none;
  font-size: 13px;
  letter-spacing: 0;
  min-width: auto;
  display: inline-flex;
  padding: 0 10px;
  border-radius: 3px;
  font-weight: var(--font-medium);
}
.btn.btn-danger {
  background-color: var(--brand-red);
  color: white;
}
.btn.btn-primary {
  color: var(--btn-primary-color);
  background-color: var(--btn-primary-bg);
  border-radius: var(--btn-radius);
}
.btn.btn-primary svg {
  margin-right: 5px;
  fill: var(--btn-primary-color);
}
.btn.btn-primary-outline {
  color: var(--btn-primary-outline-color);
  background-color: var(--btn-primary-outline-bg);
  border: 1px solid var(--btn-primary-outline-color);
  border-radius: var(--btn-radius);
}
.btn.btn-primary-outline svg {
  fill: var(--btn-primary-outline-color);
}
.btn.btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  width: 40px;
  height: 40px;
  line-height: 1;
}
.btn.btn-icon.btn-sm {
  width: 32px;
  height: 32px;
}
.btn.btn-multiline {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
}
.btn.btn-multiline .subline {
  text-transform: none;
  font-weight: var(--font-regular);
  letter-spacing: 0;
  font-size: 10px;
  margin-top: 3px;
}
.btn.btn-guidants {
  background-color: #FFB742;
  color: #1B1E22;
}
.btn.btn-gmt {
  background-color: #FFCC00;
  color: #333333;
}

.page-inner.flexible-content .section {
  margin-bottom: 0;
  padding: 10px 0;
  position: relative;
}
.page-inner.flexible-content .section.section-gray {
  background-color: var(--gray-400);
}
.page-inner.flexible-content .section.section-light {
  background-color: white;
}
.page-inner.flexible-content .section.section-dark {
  background-color: #0A0C0F;
  color: white;
}
.page-inner.flexible-content .main-header {
  margin-bottom: 0;
}
.page-inner .main-header {
  margin-top: 30px;
  margin-bottom: var(--section-margin-sm);
}
.page-inner .main-header .btn-wrapper {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.page-inner .main-header .btn-wrapper .btn {
  width: 100%;
  margin: 0 0 10px 0;
}
.page-inner .main-header .btn-wrapper .btn:last-child {
  margin: 0;
}
.page-inner .main-header.center {
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.page-inner .main-header h1 {
  font-size: 34px;
  line-height: 1.2;
  margin-top: 5px;
  font-weight: var(--font-semiBold);
}
.page-inner h2 {
  font-size: 24px;
  font-weight: var(--font-semiBold);
  line-height: 1.3;
  margin-bottom: 5px;
}
.page-inner h3 {
  font-size: 20px;
  font-weight: var(--font-semiBold);
  margin-bottom: 10px;
  line-height: 1.3;
}
.page-inner p,
.page-inner .p {
  font-size: var(--font-m);
}
.page-inner b {
  font-weight: var(--font-semiBold);
}
.page-inner .link-back {
  display: flex;
  align-items: center;
  padding-bottom: 10px;
  margin-bottom: 26px;
  font-size: 14px;
  border-bottom: 1px solid var(--gray-400);
}
.page-inner .link-back svg {
  margin-right: 5px;
}
.page-inner .subtitle-main {
  text-transform: uppercase;
  font-weight: var(--font-semiBold);
  font-size: var(--font-m);
  letter-spacing: 0.1em;
}
.page-inner .intro-header {
  margin-bottom: 30px;
}
.page-inner .intro-header.center {
  max-width: 670px;
  text-align: center;
  margin-right: auto;
  margin-left: auto;
}
.page-inner .intro-header p,
.page-inner .intro-header .p {
  max-width: 850px;
  font-size: var(--font-m);
}
.page-inner .layout-basic h1 {
  margin-bottom: 20px;
  line-height: 1.2;
}
.page-inner .layout-basic h2 {
  margin-bottom: 8px;
}
.page-inner .layout-basic h3 {
  margin-bottom: 8px;
}
.page-inner .layout-basic h4 {
  margin-bottom: 8px;
}
.page-inner .layout-basic ul,
.page-inner .layout-basic ol {
  padding-left: 20px;
  margin: 10px 0 20px;
}
.page-inner .layout-basic ul li,
.page-inner .layout-basic ol li {
  list-style: disc;
  margin-bottom: 10px;
  line-height: 1.5;
}
.page-inner .layout-basic ol > li {
  list-style: decimal;
}
.page-inner .layout-basic .block {
  margin-bottom: var(--section-margin-sm);
}
.page-inner .layout-basic p {
  margin-bottom: 15px;
}
.page-inner .layout-basic a {
  text-decoration: underline;
}
@media screen and (min-width: 576px) {
  .page-inner .main-header {
    margin-top: 60px;
    margin-bottom: 60px;
  }
  .page-inner .main-header h1 {
    font-size: 44px;
  }
  .page-inner .main-header .btn-wrapper {
    flex-direction: row;
  }
  .page-inner .main-header .btn-wrapper .btn {
    width: auto;
    margin: 0 10px 0 0;
  }
  .page-inner h2 {
    font-size: 28px;
  }
}
@media screen and (min-width: 768px) {
  .page-inner.no-overflow {
    overflow: unset;
  }
  .page-inner .main-header {
    margin-bottom: 80px;
  }
  .page-inner .main-header .btn-wrapper {
    margin-top: 20px;
  }
  .page-inner .main-header h1 {
    font-size: 54px;
    line-height: 1.1;
  }
  .page-inner h2 {
    font-size: 40px;
    margin-bottom: 10px;
  }
  .page-inner h3 {
    font-size: 22px;
  }
  .page-inner .intro-header {
    margin-bottom: 60px;
  }
  .page-inner .intro-header p,
  .page-inner .intro-header .p {
    font-size: var(--font-l);
  }
}
@media screen and (min-width: 992px) {
  .page-inner .main-header {
    margin-top: 80px;
  }
  .page-inner .main-header .btn-wrapper {
    margin-top: 40px;
  }
  .page-inner .main-header h1 {
    font-size: 70px;
  }
  .page-inner .main-header.center {
    max-width: 900px;
  }
}

.article {
  font-size: 16px;
}
.article .main-header {
  margin-bottom: 15px;
}
.article .main-header h1 {
  margin-bottom: 10px;
  line-height: 1.3;
  font-size: 32px;
}
.article .teaser {
  font-weight: var(--font-medium);
  margin-bottom: 30px;
}
.article .type {
  font-weight: var(--font-semiBold);
  margin-bottom: 10px;
}
.article p {
  margin-bottom: 10px;
}
.article .link-back {
  display: flex;
  align-items: center;
  padding-bottom: 10px;
  margin-bottom: 26px;
  font-size: 14px;
  border-bottom: 1px solid var(--gray-400);
}
.article .link-back svg {
  margin-right: 5px;
}
@media screen and (min-width: 768px) {
  .article {
    padding: 30px 0;
  }
}

.ir section {
  margin-bottom: var(--section-margin-sm);
}
.ir section.contact {
  margin-bottom: 0;
}
.ir .box {
  border-radius: var(--global-radius);
}
.ir .box.has-bg {
  background-color: var(--gray-400);
  padding: 15px;
}
.ir .box.box-light {
  background-color: var(--body-bg);
}
.ir .hero {
  padding-bottom: 0;
  text-align: center;
}
.ir .hero .background-element {
  background: url("../img/ir-home-bg.svg") top right no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  right: 0;
  width: 700px;
  padding-bottom: 55%;
  opacity: 0.2;
}
.ir .hero .btn-wrapper {
  margin-top: 40px;
  z-index: 1;
}
.ir .hero .btn-wrapper .btn {
  margin-bottom: 10px;
}
.ir .hero .subtitle {
  color: rgba(var(--text-color-rgb), 0.8);
  font-size: 18px;
  margin-top: 5px;
  line-height: 1.5;
}
.ir .homebase .box-list .box-list-item {
  background-color: var(--gray-400);
  display: flex;
  align-items: center;
  border-radius: var(--global-radius);
  font-size: var(--font-s);
  margin-bottom: 15px;
  line-height: 1.5;
  padding: 20px;
}
.ir .homebase .box-list .num {
  font-size: 26px;
  font-weight: var(--font-semiBold);
  padding-right: 20px;
  color: var(--brand-primary);
}
.ir .cycle-wrapper {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px 20px;
  position: relative;
}
.ir .cycle-wrapper .cycle-item {
  width: calc(50% - 30px);
  margin: 0 15px;
}
.ir .cycle-wrapper .cycle-item .cycle-item-inner {
  height: 150px;
  display: flex;
  padding: 20px;
  font-size: var(--font-s);
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.5;
  background-color: var(--body-bg);
  border: 1px solid transparent;
  border-radius: var(--global-radius);
}
.ir .cycle-wrapper .cycle-item:first-child {
  width: 100%;
}
.ir .cycle-wrapper .cycle-item:first-child .cycle-item-inner {
  color: var(--brand-primary);
  border-color: var(--brand-primary);
}
.ir .cycle-wrapper .arrow-wrap .arrow {
  width: 32px;
  height: 32px;
  margin: 0 auto;
  background-color: var(--body-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ir .cycle-wrapper .arrow-wrap .arrow svg {
  fill: var(--brand-primary);
}
.ir .cycle-wrapper .arrow-wrap.arrow-wrap-bottom {
  position: absolute;
  left: 50%;
  bottom: 75px;
  transform: translate(-50%, 50%);
}
.ir .cycle h3 {
  margin-bottom: 15px;
}
.ir .cycle .copy {
  padding: 0 5px 5px;
}
.ir .equity .story-item {
  background-color: var(--gray-400);
  padding: 25px 20px;
  border-radius: var(--global-radius);
  margin-bottom: 15px;
}
.ir .equity img {
  margin-bottom: 20px;
  width: 40px;
  height: auto;
}
.ir .equity .title {
  font-size: 20px;
  font-weight: var(--font-semiBold);
  line-height: 1.3;
  margin-bottom: 5px;
}
.ir .equity .descr {
  color: rgba(var(--text-color-rgb), 0.8);
  line-height: 1.5;
}
.ir .numbers .btn-wrapper {
  margin-top: 10px;
}
.ir .data-card {
  background-color: var(--gray-400);
  padding: 20px;
  border-radius: var(--global-radius);
  font-weight: var(--font-semiBold);
  margin-bottom: 15px;
  position: relative;
}
.ir .data-card.sm .data-list {
  margin-bottom: 5px;
}
.ir .data-card.sm .data-list .value {
  font-size: 28px;
}
.ir .data-card.sm .data-list li {
  margin: 0 0 20px 0;
}
.ir .data-card.sm .data-list:last-child {
  margin: 0;
}
.ir .data-card p {
  font-size: 12px;
  font-weight: var(--font-regular);
}
.ir .data-card .data-list {
  font-size: var(--font-m);
  margin-bottom: 20px;
}
.ir .data-card .data-list li {
  margin-bottom: 20px;
}
.ir .data-card .data-list li .label {
  color: var(--brand-primary);
  margin-bottom: 5px;
  font-size: 14px;
}
.ir .data-card .data-list li .value {
  font-size: 40px;
  font-weight: var(--font-semiBold);
}
.ir .data-card .data-list li:last-child {
  margin-bottom: 0;
}
.ir .data-card .small {
  font-size: 8px;
  margin-top: 5px;
}
.ir .data-card .graph-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 40px -10px 20px;
}
.ir .data-card .bar-wrapper {
  flex: 1;
  margin: 0 10px;
  text-align: center;
}
.ir .data-card .bar-wrapper .bar {
  margin: 10px 0;
  height: 200px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.ir .data-card .bar-wrapper .value {
  margin-bottom: 10px;
}
.ir .data-card .bar-wrapper .bar-inner {
  width: 100%;
  border-top-right-radius: var(--global-radius);
  border-top-left-radius: var(--global-radius);
  background-color: var(--brand-primary);
}
.ir .data-card .graph-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-xs);
}
.ir .data-card .graph-footer .square {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background-color: var(--brand-primary);
  display: block;
  margin-right: 5px;
}
.ir .numbers-list {
  margin-top: 10px;
}
.ir .numbers-list .num {
  font-size: 30px;
  font-weight: var(--font-semiBold);
  margin-bottom: 5px;
}
.ir .numbers-list li {
  margin-bottom: 15px;
}
.ir .numbers-list li:last-child {
  margin-bottom: 0;
}
.ir .stock-info {
  background-color: var(--gray-400);
  border-radius: var(--global-radius);
  margin-bottom: 15px;
}
.ir .stock-info .values {
  padding: 15px;
  position: relative;
}
.ir .stock-info .values .value {
  font-weight: var(--font-semiBold);
  font-size: 24px;
  margin-bottom: 8px;
}
.ir .stock-info .values .top-right {
  max-width: 100px;
  position: absolute;
  right: 15px;
  top: 15px;
  color: rgba(var(--text-color-rgb), 0.8);
}
.ir .stock-info .values .progress {
  font-size: 14px;
  font-weight: var(--font-semiBold);
  color: var(--brand-green);
}
.ir .info-list li {
  font-weight: var(--font-regular);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  height: 40px;
  font-size: var(--font-xs);
  border-top: 1px solid var(--gray-500);
}
.ir .info-list li .value {
  font-weight: var(--font-semiBold);
  text-align: right;
}
.ir .user-wrapper {
  display: flex;
  margin: 0 -10px;
  overflow: auto;
}
.ir .user-card {
  width: 25%;
  margin: 10px;
  min-width: 300px;
  padding: 20px;
  background-color: var(--gray-400);
  border-radius: var(--global-radius);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.ir .user-card img {
  border-radius: var(--global-radius);
  margin-bottom: 15px;
}
.ir .user-card .name {
  font-weight: var(--font-semiBold);
  font-size: var(--font-m);
  margin-bottom: 5px;
}
.ir .user-card .descr {
  line-height: 1.2;
  font-size: var(--font-s);
}
.ir .user-card .areas {
  font-size: var(--font-xs);
  color: rgba(var(--text-color-rgb), 0.8);
  margin-top: 30px;
  line-height: 1.4;
}
.ir .super-vis-wrapper {
  margin-top: 20px;
}
.ir .super-vis-wrapper h3 {
  margin-bottom: 15px;
}
.ir .super-vis-inner {
  background-color: var(--gray-400);
  border-radius: var(--global-radius);
}
.ir .super-vis-inner .super-vis-item {
  padding: 20px;
  border-bottom: 1px solid var(--gray-500);
}
.ir .super-vis-inner .super-vis-item .name {
  font-weight: var(--font-semiBold);
  font-size: var(--font-m);
  margin-bottom: 10px;
}
.ir .super-vis-inner .super-vis-item .descr {
  line-height: 1.2;
  font-size: var(--font-s);
}
.ir .super-vis-inner .super-vis-item:last-child {
  border-bottom: none;
}
.ir .news .a-section-header {
  margin-bottom: 40px;
}
.ir .calendar-list .m-arrow-link,
.ir .downloads .m-arrow-link {
  border: none;
  display: inline-flex;
  padding: 0;
  font-size: var(--font-s);
  margin-bottom: 0;
  line-height: 1.4;
  margin-top: 0;
  text-decoration: underline;
  color: var(--text-color);
}
.ir .calendar-list .m-arrow-link svg,
.ir .downloads .m-arrow-link svg {
  fill: var(--text-color);
}
.ir .calendar-list {
  margin-bottom: 20px;
}
.ir .calendar-list h3 {
  font-size: var(--font-l);
  margin-bottom: 10px;
}
.ir .calendar-list .calendar-item:first-of-type {
  border-top: 1px solid var(--gray-400);
}
.ir .calendar-item {
  border-bottom: 1px solid var(--gray-400);
  display: flex;
  align-items: center;
  min-height: 50px;
  padding: 15px 0;
  line-height: 1.4;
}
.ir .calendar-item a[href] {
  text-decoration: underline;
}
.ir .calendar-item .date {
  min-width: 80px;
  white-space: nowrap;
  padding-right: 15px;
  flex-shrink: 0;
}
.ir .downloads {
  background-color: var(--gray-400);
  border-radius: var(--global-radius);
  padding: 20px;
}
.ir .downloads ul li {
  margin-bottom: 10px;
}
.ir .downloads ul li:last-child {
  margin-bottom: 0;
}
.ir .downloads h3 {
  margin-bottom: 15px;
}
.ir .hv-box {
  background-color: var(--box-bg);
  padding: 20px;
  margin-top: 20px;
  border-radius: var(--global-radius);
}
.ir .hv-box a {
  color: var(--brand-primary);
  text-decoration: underline;
}
.ir .hv-box .a-section-header {
  margin: 0;
}
.ir .contact .contact-inner {
  border-top: 1px solid var(--gray-400);
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  flex-direction: column;
  padding: 10px 0;
}
.ir .contact .contact-inner > div,
.ir .contact .contact-inner > a {
  flex: 1;
}
.ir .contact .contact-inner .item {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 20px;
}
.ir .contact .contact-inner .item img {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
}
.ir .contact .contact-inner .item .title {
  margin-bottom: 10px;
  font-weight: var(--font-semiBold);
}
.ir .contact .contact-inner .item .link {
  text-decoration: underline;
}
.ir .contact .contact-inner .contact-header {
  display: flex;
  align-items: center;
  padding: 20px;
}
.ir .contact .contact-inner .contact-header img {
  width: 80px;
  height: 80px;
  margin-right: 15px;
  border-radius: 50%;
}
.ir .contact .contact-inner .contact-header .name {
  font-size: 20px;
  font-weight: var(--font-semiBold);
  margin-bottom: 5px;
}
.ir .contact .contact-inner ul {
  margin-top: 30px;
}
.ir .contact .contact-inner ul li {
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
}
.ir .contact .contact-inner ul li a {
  text-decoration: underline;
  color: white;
}
@media screen and (min-width: 576px) {
  .ir .hv-box {
    margin-top: 0;
  }
  .ir .hero .btn-wrapper {
    display: flex;
    align-items: center;
  }
  .ir .hero .btn-wrapper .btn {
    margin: 0 10px 0 0;
  }
}
@media screen and (min-width: 768px) {
  .ir .hv-box {
    padding: 50px;
  }
  .ir section {
    margin-bottom: var(--section-margin-md);
  }
  .ir .box {
    border: 1px solid var(--line-color);
    border-radius: var(--global-radius);
    padding: 30px;
  }
  .ir .box.has-bg {
    padding: 30px;
  }
  .ir .contact .contact-inner {
    flex-direction: row;
  }
  .ir .numbers .btn-wrapper {
    margin-top: 20px;
  }
  .ir .homebase .box-list {
    height: 240px;
    flex-direction: column;
  }
  .ir .homebase .box-list .box-list-item {
    height: 100px;
  }
  .ir .cycle-wrapper {
    margin-bottom: 0;
  }
  .ir .equity .story-wrapper {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    height: 900px;
    margin: 0 -10px;
  }
  .ir .equity img {
    margin-bottom: 0;
  }
  .ir .equity .story-item {
    width: calc(33.33333% - 20px);
    height: 280px;
    margin: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .ir .equity .story-item.story-item-lg {
    height: 580px;
  }
  .ir .super-vis-inner {
    display: flex;
  }
  .ir .super-vis-inner .super-vis-item {
    padding: 20px;
    border-right: 1px solid var(--gray-500);
    border-bottom: none;
    flex: 1;
  }
  .ir .super-vis-inner .super-vis-item:last-child {
    border-right: none;
  }
  .ir .super-vis-wrapper h3 {
    font-size: var(--font-m);
  }
  .ir .news-item {
    padding-bottom: 32px;
    margin-bottom: 32px;
  }
  .ir .news-item:last-child {
    margin-bottom: 0;
  }
  .ir .news-item.news-item-lg {
    padding-bottom: 30px;
    margin-bottom: 30px;
    margin-right: 60px;
  }
  .ir .news-item.news-item-lg:last-child {
    margin-bottom: 0;
  }
  .ir .news-item.news-item-lg h3 {
    font-size: 24px;
  }
}
@media screen and (min-width: 992px) {
  .ir .box {
    padding: 45px;
  }
  .ir .box .has-bg {
    padding: 45px;
  }
  .ir .hero .background-element {
    width: 400px;
  }
  .ir .contact {
    font-size: var(--font-m);
    padding: 0;
    overflow: hidden;
  }
  .ir .contact .item {
    padding: 30px;
    transition: all 0.1s linear;
  }
  .ir .contact .item:hover {
    background-color: var(--gray-500);
  }
  .ir .contact .contact-header {
    padding: 26px;
  }
  .ir .contact .contact-header img {
    width: 100px;
    height: 100px;
  }
  .ir .data-card {
    padding: 30px;
    min-height: 310px;
  }
  .ir .data-card.sm {
    margin-bottom: 20px;
  }
  .ir .data-card.sm .data-list {
    display: flex;
    align-items: flex-start;
  }
  .ir .data-card.sm .data-list li {
    margin: 0 40px 0 0;
  }
  .ir .data-card.sm .data-list li .value {
    font-size: 26px;
  }
  .ir .data-card.sm .data-list li .label {
    font-size: 14px;
  }
  .ir .data-card .data-list li {
    margin-bottom: 35px;
  }
  .ir .data-card .data-list li .value {
    font-size: 58px;
  }
  .ir section {
    margin-bottom: var(--section-margin-lg);
  }
  .ir .user-wrapper {
    display: flex;
    margin: 0 -10px;
    overflow: unset;
  }
  .ir .user-card {
    width: calc(25% - 20px);
    min-width: auto;
  }
  .ir .calendar-list {
    margin-right: 100px;
    margin-bottom: 40px;
  }
  .ir .calendar-list h3 {
    font-size: 30px;
  }
  .ir .calendar-item {
    font-size: var(--font-m);
    height: 80px;
  }
  .ir .calendar-item .date {
    min-width: 160px;
  }
  .ir .calendar-item .m-arrow-link {
    font-size: var(--font-m);
  }
  .ir .downloads {
    padding: 30px;
  }
  .ir .downloads ul li {
    margin-bottom: 20px;
  }
  .ir .downloads ul li .m-arrow-link {
    font-size: var(--font-m);
  }
  .ir .downloads h3 {
    font-size: var(--font-m);
  }
}
@media screen and (min-width: 1200px) {
  .ir .data-card.sm:last-child {
    margin-bottom: 0;
  }
  .ir .data-card.sm .data-list li .value {
    font-size: 38px;
  }
  .ir .data-card.sm .data-list li .label {
    font-size: 14px;
  }
  .ir .data-card .data-list li {
    margin-bottom: 35px;
  }
  .ir .data-card .data-list li .label {
    font-size: 18px;
  }
  .ir .data-card .data-list li .value {
    font-size: 56px;
  }
  .ir .hero .background-element {
    opacity: 1;
  }
  .ir .hero .main-header {
    max-width: 900px;
    margin-bottom: 120px;
  }
  .ir .hero .subtitle {
    margin-top: 10px;
    font-size: 26px;
  }
  .ir .homebase .box-list {
    height: 300px;
    flex-direction: column;
  }
  .ir .homebase .box-list .box-list-item {
    height: 130px;
    font-size: var(--font-m);
    padding: 40px;
  }
  .ir .homebase .box-list .box-list-item .num {
    font-size: 38px;
    padding-right: 40px;
  }
  .ir .cycle-wrapper .cycle-item .cycle-item-inner {
    font-size: var(--font-m);
  }
  .ir .cycle-wrapper .arrow-wrap .arrow svg {
    width: 20px;
    height: 20px;
  }
  .ir .equity .a-section-header h2 {
    max-width: 75%;
  }
  .ir .equity .story-wrapper {
    height: 810px;
  }
  .ir .equity .story-item {
    padding: 30px;
    height: 250px;
  }
  .ir .equity .story-item.story-item-lg {
    height: 520px;
  }
  .ir .equity img {
    width: 60px;
  }
  .ir .equity .title {
    font-size: 24px;
  }
  .ir .numbers-list {
    padding-left: 20px;
  }
  .ir .numbers-list .num {
    font-size: 38px;
  }
  .ir .numbers-list li {
    margin-bottom: 30px;
  }
}

.page-inner.sg {
  padding-top: 46px;
}
.page-inner.sg .styleguide-nav {
  background-color: var(--gray-400);
  overflow: auto;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  z-index: 100;
}
.page-inner.sg .styleguide-nav ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.page-inner.sg .styleguide-nav ul a {
  opacity: 0.6;
  padding: 10px;
  display: block;
  font-weight: var(--font-medium);
  transition: opacity 0.1s linear;
}
.page-inner.sg .styleguide-nav ul li {
  text-align: center;
  flex: 1;
  font-size: var(--font-s);
  margin: 6px 0;
  border-radius: var(--global-radius);
}
.page-inner.sg .styleguide-nav ul li.current-menu-item {
  background-color: var(--brand-primary);
}
.page-inner.sg .styleguide-nav ul li.current-menu-item a {
  opacity: 1;
  color: white;
}
.page-inner.sg .styleguide-nav ul li:hover a {
  opacity: 1;
}
.page-inner.sg.brand .hero {
  background-color: var(--brand-primary);
  color: white;
}
.page-inner.sg.brand .page-nav a {
  color: white;
}
.page-inner.sg .hero {
  padding: 50px 0;
  margin-bottom: 40px;
}
.page-inner.sg .hero .bg-img {
  position: absolute;
  top: 80px;
  right: 0;
  max-width: 60%;
  z-index: -1;
}
.page-inner.sg .hero .word {
  display: inline-block;
  margin-left: -5px;
}
.page-inner.sg .hero .logo {
  max-width: 200px;
}
.page-inner.sg .hero .subtitle {
  text-transform: uppercase;
  font-weight: var(--font-semiBold);
  font-size: var(--font-m);
  letter-spacing: 0.1em;
}
.page-inner.sg .hero h1 {
  font-size: 70px;
  margin: 10px 0 20px;
  line-height: 0.9;
  font-weight: var(--font-semiBold);
}
.page-inner.sg .page-nav li {
  margin-bottom: 15px;
}
.page-inner.sg .page-nav li:last-child {
  margin-bottom: 0;
}
.page-inner.sg .page-nav a {
  text-decoration: underline;
  font-size: var(--font-m);
}
.page-inner.sg .page-nav a span {
  min-width: 30px;
  font-weight: var(--font-medium);
  display: inline-block;
}
.page-inner.sg .downloads .intro-header {
  margin-bottom: 20px;
}
.page-inner.sg .sub-section {
  margin-bottom: 30px;
}
.page-inner.sg .img-wrapper {
  margin-bottom: 15px;
  position: relative;
}
.page-inner.sg .img-wrapper img {
  max-width: 100%;
  height: auto;
  border: 1px solid var(--gray-400);
  border-radius: var(--global-radius);
}
.page-inner.sg .img-wrapper .img-caption {
  position: absolute;
  left: 15px;
  bottom: 15px;
  line-height: 1.4;
  font-size: var(--font-xs);
  font-weight: var(--font-regular);
}
.page-inner.sg .img-wrapper .img-caption b {
  font-weight: var(--font-semiBold);
}
.page-inner.sg .download-list li {
  margin-bottom: 10px;
}
.page-inner.sg .download-list li:last-child {
  margin-bottom: 0;
}
.page-inner.sg .download-list li a {
  background-color: white;
  font-size: var(--font-m);
  font-weight: var(--font-semiBold);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 100px;
  border-radius: var(--global-radius);
  transition: box-shadow 0.2s ease-in-out;
}
.page-inner.sg .download-list li a:hover {
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
}
.page-inner.sg .page-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--font-l);
  height: 100px;
}
.page-inner.sg .page-link.has-border {
  border-top: 1px solid var(--gray-400);
}
.page-inner.sg .page-link .icon {
  width: 24px;
  height: 24px;
}
.page-inner.sg .page-link .title {
  font-weight: var(--font-semiBold);
}
.page-inner.sg .page-link .title span {
  font-size: var(--font-l);
  display: block;
  text-transform: uppercase;
  font-weight: var(--font-regular);
  margin-bottom: 8px;
}
.page-inner.sg .img-logo-row {
  margin: 20px 0;
}
.page-inner.sg .img-descr {
  font-size: var(--font-m);
  font-weight: var(--font-semiBold);
  margin-top: 10px;
  line-height: 1.3;
  display: flex;
  align-items: flex-start;
}
.page-inner.sg .img-descr .icon {
  width: 24px;
  height: 24px;
  margin-right: 5px;
}
.page-inner.sg .img-descr.green {
  color: var(--brand-green);
}
.page-inner.sg .img-descr.red {
  color: var(--brand-red);
}
.page-inner.sg .color-block {
  margin-bottom: 20px;
}
.page-inner.sg .color-block .color-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.page-inner.sg .color-block .color-item {
  width: 100%;
  height: 140px;
  background-color: var(--gray-400);
  position: relative;
  font-size: var(--font-xs);
  color: var(--text-color);
  margin: 0 0 15px 0;
}
.page-inner.sg .color-block .color-item .name {
  position: absolute;
  top: 15px;
  left: 15px;
}
.page-inner.sg .color-block .color-item .info {
  position: absolute;
  left: 15px;
  bottom: 15px;
  font-weight: var(--font-semiBold);
  line-height: 1.5;
  text-transform: uppercase;
}
.page-inner.sg .night {
  background-color: #0A0C0F;
  color: white;
}
.page-inner.sg .typo-row {
  font-size: 18px;
  margin: 20px 0;
  padding-top: 20px;
  line-height: 1.5;
  border-top: 1px solid var(--gray-400);
}
.page-inner.sg .typo-row .right {
  max-width: 700px;
}
.page-inner.sg .typo-row .left {
  margin-bottom: 15px;
}
.page-inner.sg .typo-row:nth-child(1) {
  font-weight: var(--font-regular);
}
.page-inner.sg .typo-row:nth-child(2) {
  font-weight: var(--font-medium);
}
.page-inner.sg .typo-row:nth-child(3) {
  font-weight: var(--font-semiBold);
}
.page-inner.sg .typo-row:nth-child(4) {
  font-weight: var(--font-bold);
}
.page-inner.sg .type-scale .text {
  margin-bottom: 5px;
}
.page-inner.sg .type-scale .text.lg {
  font-size: 18px;
  line-height: 30px;
}
.page-inner.sg .type-scale .text.md {
  font-size: 16px;
  line-height: 28px;
}
.page-inner.sg .type-scale .text.sm {
  font-size: 14px;
  line-height: 26px;
}
.page-inner.sg .type-scale .text.xs {
  font-size: 12px;
  line-height: 24px;
}
.page-inner.sg .type-scale .headline {
  margin-bottom: 5px;
  font-weight: var(--font-semiBold);
}
.page-inner.sg .type-scale .headline.xxl {
  font-size: 72px;
  line-height: 80px;
}
.page-inner.sg .type-scale .headline.xl {
  font-size: 62px;
  line-height: 70px;
}
.page-inner.sg .type-scale .headline.lg {
  font-size: 40px;
  line-height: 48px;
}
.page-inner.sg .type-scale .headline.md {
  font-size: 24px;
  line-height: 28px;
}
.page-inner.sg .type-scale .headline.sm {
  font-size: 18px;
  line-height: 24px;
}
.page-inner.sg .type-scale .headline.xs {
  font-size: 14px;
  line-height: 20px;
}
.page-inner.sg .type-scale .descr {
  font-size: var(--font-s);
}
.page-inner.sg .type-scale .scale-item {
  margin-bottom: 30px;
}
.page-inner.sg .type-scale .scale-block {
  margin-bottom: 50px;
}
.page-inner.sg .type-scale .scale-block:last-of-type {
  margin-bottom: 0;
}
.page-inner.sg .type-scale .example-block .example-item {
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .page-inner.sg .type-scale .scale-block.is-horizontal .scale-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
  }
  .page-inner.sg .type-scale .scale-block.is-horizontal .scale-item .text {
    margin: 0 10px 0 0;
  }
  .page-inner.sg .example-block {
    margin-top: 50px;
  }
  .page-inner.sg .hero {
    padding: 80px 0;
    margin-bottom: var(--section-margin-md);
  }
  .page-inner.sg .hero .logo {
    max-width: 350px;
  }
  .page-inner.sg .hero h1 {
    font-size: 120px;
  }
  .page-inner.sg .page-nav {
    margin-top: 40px;
  }
  .page-inner.sg .page-link {
    height: 140px;
    font-size: var(--font-xl);
  }
  .page-inner.sg .sub-section {
    margin-bottom: 0;
  }
  .page-inner.sg .download-list li {
    margin-bottom: 15px;
  }
  .page-inner.sg .download-list li a {
    font-size: var(--font-l);
    height: 140px;
    padding: 0 40px;
  }
  .page-inner.sg .download-list li a .icon {
    width: 24px;
    height: 24px;
  }
  .page-inner.sg .center-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .page-inner.sg .mono .sub-section {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .page-inner.sg .color-block .color-item {
    width: 200px;
    height: 200px;
    margin: 0 18px 20px 0;
  }
}
@media screen and (min-width: 992px) {
  .page-inner.sg .typo-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin: 40px 0;
    font-size: 26px;
  }
  .page-inner.sg .typo-row .left {
    margin-bottom: 0;
  }
  .page-inner.sg .hero .bg-img {
    max-width: 820px;
  }
  .page-inner.sg .img-descr {
    align-items: center;
  }
}

.platform {
  position: relative;
}
.platform .section {
  margin: 0 -15px;
}
.platform .section .intro-header.center {
  margin-bottom: 20px;
}
.platform .section.no-margin-sm {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .platform .section {
    margin: 0 0 20px;
  }
  .platform .section.no-margin-sm {
    margin-bottom: 20px;
  }
}
.platform .section-intro .row > div:last-child .box {
  margin-bottom: 0;
}
.platform .bg-graphic-container {
  opacity: 0.7;
}
.platform .bg-graphic {
  position: absolute;
  z-index: -1;
}
.platform .bg-graphic img {
  height: auto;
}
.platform .bg-graphic.left, .platform .bg-graphic.right-bottom {
  top: 170px;
}
.platform .bg-graphic.left img, .platform .bg-graphic.right-bottom img {
  width: 120px;
}
.platform .bg-graphic.left, .platform .bg-graphic.left-bottom {
  left: -50px;
}
.platform .bg-graphic.right, .platform .bg-graphic.right-bottom {
  right: -50px;
}
.platform .bg-graphic.left-bottom img, .platform .bg-graphic.right img {
  width: 200px;
}
.platform .bg-graphic.left-bottom {
  top: 280px;
}
.platform .bg-graphic.right {
  top: 30px;
}
.platform .hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 440px;
  position: relative;
  z-index: 1;
}
.platform .hero .btn {
  margin-top: 10px;
  transform: translateX(20%);
  opacity: 0;
  padding: 0 25px;
  transition: all 0.6s ease 0.4s;
}
.platform .hero .hero-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.platform .hero .subline {
  margin: 7px 0 2px;
  font-size: var(--font-m);
  text-align: center;
  transform: translateY(20%);
  opacity: 0;
  transition: all 0.6s ease 0.2s;
}
.platform .hero .logo {
  width: 200px;
  margin-right: -24px;
  transform: translateY(20%);
  opacity: 0;
  transition: all 0.6s ease;
}
.platform .quote {
  padding: 40px 20px;
  font-weight: var(--font-medium);
  text-align: center;
}
.platform .quote .expert {
  font-style: italic;
  font-weight: var(--font-regular);
  margin-top: 10px;
  font-size: var(--font-s);
}
.platform .quote.lg {
  background-color: var(--brand-primary);
  color: white;
}
.platform .quote.lg .expert-img {
  background-color: white;
}
.platform .quote .p {
  line-height: 1.5;
  font-weight: var(--font-medium);
}
.platform .quote .expert-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 15px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  background-color: var(--gray-400);
}
.platform .quote .expert-img img {
  max-width: 120%;
}
.platform .box .list {
  margin-top: 15px;
}
.platform .box h2 {
  font-size: 30px;
  line-height: 1.2;
}
.platform .box .icon {
  max-width: 138px;
  margin: 0 auto 10px;
}
.platform .box p,
.platform .box .p {
  line-height: 1.5;
}
.platform .box .quote {
  width: 100%;
  border-top: 1px solid var(--line-color);
  border-radius: 0;
}
.platform .box .copy {
  padding: 40px 20px;
}
.platform .box .subtitle {
  color: var(--brand-primary);
  font-weight: var(--font-semiBold);
  margin: 5px 0;
  line-height: 1.2;
}
.platform .box.box-intro {
  border-top: 1px solid var(--line-color);
}
.platform .box.box-intro .list {
  margin-top: 10px;
  font-size: var(--font-m);
}
.platform .box.box-lg > .copy {
  padding: 40px 20px 0;
}
.platform .box.box-dark {
  background-color: #0A0C0F;
}
.platform .box.box-dark .quote {
  border-color: white;
}
.platform .box.box-dark .copy {
  color: white;
}
.platform .box.box-primary {
  background-color: var(--brand-primary);
}
.platform .box.box-primary a {
  color: white;
}
.platform .box.box-primary .quote {
  border-color: white;
}
.platform .box.box-primary .copy {
  color: white;
}
.platform .box.box-light {
  background-color: var(--body-bg);
  border-color: var(--line-color);
}
.platform .box.box-grey {
  background-color: var(--box-bg);
}
.platform .box.box-grey .quote {
  border-color: var(--gray-500);
}
.platform .box.box-grey .quote .expert-img {
  background-color: var(--gray-500);
}
.platform .box.box-center {
  text-align: center;
}
.platform .box.box-center > .img {
  width: 80%;
  display: flex;
  align-items: center;
  margin: 0 auto;
}
.platform .box.box-center.box-lg > .copy {
  padding: 40px 25px 10px;
}
.platform .section-updates {
  background-color: var(--box-bg);
}
.platform .updates {
  margin-top: 50px;
  padding: 40px 0;
  border-radius: 0;
  text-align: center;
}
.platform .updates .small {
  font-size: var(--font-xs);
  margin-top: 20px;
}
.platform .updates h2 {
  font-size: 30px;
}
.platform .updates .copy {
  margin-bottom: 15px;
}
.platform .updates .subtitle {
  color: var(--brand-primary);
  font-weight: var(--font-semiBold);
  margin: 5px 0;
  line-height: 1.2;
}
.platform .updates .btn-wrapper .btn {
  margin-bottom: 8px;
}
.platform .updates .btn-wrapper .btn:last-child {
  margin: 0;
}
.platform .bg-graphic {
  opacity: 0;
}
.platform .bg-graphic.left {
  transform: translateX(-50%);
  transition: all 0.8s ease 0.6s;
}
.platform .bg-graphic.left-bottom {
  transform: translateX(-50%);
  transition: all 0.8s ease 0.9s;
}
.platform .bg-graphic.right {
  transform: translateX(50%);
  transition: all 0.8s ease 0.4s;
}
.platform .bg-graphic.right-bottom {
  transform: translateX(50%);
  transition: all 0.8s ease 0.7s;
}
.platform #platformHero.animation .bg-graphic {
  opacity: 1;
}
.platform #platformHero.animation .bg-graphic.left {
  transform: translateX(0%);
}
.platform #platformHero.animation .bg-graphic.left-bottom {
  transform: translateX(0%);
}
.platform #platformHero.animation .bg-graphic.right {
  transform: translateX(0%);
}
.platform #platformHero.animation .bg-graphic.right-bottom {
  transform: translateX(0%);
}
.platform #platformHero.animation .hero .logo {
  opacity: 1;
  transform: translateY(0%);
}
.platform #platformHero.animation .hero .btn {
  opacity: 1;
  transform: translateX(0%);
}
.platform #platformHero.animation .hero .subline {
  opacity: 1;
  transform: translateY(0%);
}
@media screen and (min-width: 768px) {
  .platform .quote {
    display: flex;
    align-items: center;
    text-align: left;
    padding: 30px;
    border-radius: var(--global-radius);
  }
  .platform .quote .expert-img {
    flex-shrink: 0;
    margin: 0 20px 0 0;
  }
  .platform .box {
    height: 430px;
    border-radius: var(--global-radius);
    border: 1px solid transparent;
  }
  .platform .box .icon {
    margin: 40px auto 10px;
  }
  .platform .box .copy {
    padding: 30px;
  }
  .platform .box.box-intro {
    height: auto;
    margin-bottom: 20px;
  }
  .platform .box.box-intro .copy {
    padding: 30px;
  }
  .platform .box.box-lg {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    height: auto;
  }
  .platform .box.box-lg > .copy {
    padding: 30px 10px 30px 30px;
    width: 50%;
  }
  .platform .box.box-lg > .img {
    width: 50%;
  }
  .platform .box.box-center {
    flex-direction: column;
  }
  .platform .box.box-center.box-lg > .copy {
    padding: 30px 30px 5px;
    width: 80%;
  }
  .platform .updates {
    max-width: 800px;
    padding: 30px;
    margin: 50px auto 0;
  }
  .platform .updates .btn-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .platform .updates .btn-wrapper .btn {
    margin: 0 10px 0 0;
  }
  .platform .hero {
    min-height: 440px;
  }
  .platform .hero .btn {
    margin-top: 15px;
  }
  .platform .hero .subline {
    margin-top: 5px;
    font-size: var(--font-xl);
  }
  .platform .hero .logo {
    width: 300px;
  }
  .platform .bg-graphic.left, .platform .bg-graphic.right-bottom {
    top: 200px;
  }
  .platform .bg-graphic.left img, .platform .bg-graphic.right-bottom img {
    width: 170px;
  }
  .platform .bg-graphic.left-bottom img, .platform .bg-graphic.right img {
    width: 250px;
  }
  .platform .bg-graphic.left-bottom {
    top: 345px;
  }
}
@media screen and (min-width: 992px) {
  .platform .section .intro-header.center {
    margin-bottom: 40px;
  }
  .platform .quote {
    padding-right: 100px;
  }
  .platform .quote p,
  .platform .quote .p {
    font-size: var(--font-l);
  }
  .platform .quote .expert-img {
    flex-shrink: 0;
    margin: 0 40px 0 0;
  }
  .platform .list {
    font-size: var(--font-l);
  }
  .platform .box {
    height: 500px;
  }
  .platform .box .copy {
    padding: 45px;
  }
  .platform .box.box-intro {
    margin-bottom: 0;
    height: 420px;
  }
  .platform .box.box-intro h2 {
    font-size: var(--font-xxl);
    line-height: 1.3;
  }
  .platform .box h2 {
    font-size: 40px;
  }
  .platform .box .p,
  .platform .box p {
    font-size: var(--font-l);
  }
  .platform .box .subtitle {
    font-size: 20px;
  }
  .platform .box.box-lg .quote {
    padding-left: 70px;
  }
  .platform .box.box-lg > .copy {
    padding: 50px 20px 50px 50px;
  }
  .platform .box.box-center > .img {
    max-width: 750px;
  }
  .platform .box.box-center.box-lg > .copy {
    max-width: 700px;
    margin: 0 auto;
    padding: 50px 50px 5px;
  }
  .platform .updates {
    padding: 70px;
  }
  .platform .updates h2 {
    font-size: 40px;
  }
  .platform .updates .subtitle {
    font-size: 20px;
  }
  .platform .bg-graphic.left, .platform .bg-graphic.right-bottom {
    top: 170px;
  }
  .platform .bg-graphic.left img, .platform .bg-graphic.right-bottom img {
    width: 220px;
  }
  .platform .bg-graphic.left-bottom img, .platform .bg-graphic.right img {
    width: 300px;
  }
  .platform .bg-graphic.left-bottom {
    top: 355px;
  }
  .platform .bg-graphic.right {
    top: -30px;
  }
}
@media screen and (min-width: 1200px) {
  .platform .bg-graphic.left, .platform .bg-graphic.right-bottom {
    top: 225px;
  }
  .platform .bg-graphic.left img, .platform .bg-graphic.right-bottom img {
    width: 270px;
  }
  .platform .bg-graphic.left, .platform .bg-graphic.left-bottom {
    left: 0;
  }
  .platform .bg-graphic.right, .platform .bg-graphic.right-bottom {
    right: 0;
  }
  .platform .bg-graphic.left-bottom img, .platform .bg-graphic.right img {
    width: 380px;
  }
  .platform .bg-graphic.left-bottom {
    top: 450px;
  }
  .platform .hero {
    min-height: 85vh;
  }
  .platform .hero .subline {
    margin-top: 15px;
    font-size: 30px;
  }
  .platform .hero .btn {
    margin-top: 20px;
  }
  .platform .hero .logo {
    width: 430px;
  }
  .platform .box .copy {
    padding: 70px;
  }
  .platform .box.box-intro .copy {
    padding: 45px;
  }
  .platform .box.box-lg > .copy {
    padding: 50px 20px 50px 70px;
  }
  .platform .box.box-center.box-lg > .copy {
    padding: 70px 50px 5px;
  }
}
@media screen and (min-width: 1360px) {
  .platform .bg-graphic-container {
    opacity: 1;
  }
  .platform .box.box-intro {
    height: 350px;
  }
  .platform .box .icon {
    margin: 30px auto 10px;
  }
  .platform .bg-graphic.left, .platform .bg-graphic.right-bottom {
    top: 310px;
  }
  .platform .bg-graphic.left img, .platform .bg-graphic.right-bottom img {
    width: 390px;
  }
  .platform .bg-graphic.left {
    left: -50px;
  }
  .platform .bg-graphic.right-bottom {
    right: -50px;
  }
  .platform .bg-graphic.left-bottom img, .platform .bg-graphic.right img {
    width: 500px;
  }
  .platform .bg-graphic.left-bottom {
    top: 635px;
  }
}

.career {
  padding-bottom: 50px;
}
.career .background-element {
  background: url("../img/visuals/visual-career-right.svg") top right no-repeat;
  background-size: contain;
  position: absolute;
  top: 600px;
  right: 0;
  width: 140px;
  padding-bottom: 55%;
  opacity: 0.2;
  z-index: -1;
}
.career .background-element.left {
  background: url("../img/visuals/visual-left-top.svg") top left no-repeat;
  top: 80px;
  left: 0;
  right: auto;
  width: 220px;
}
.career .initiative-bottom {
  text-align: center;
  font-weight: var(--font-medium);
  margin-top: 30px;
}
.career .job-list h3 {
  font-size: var(--font-m);
  margin-bottom: 0;
}
.career .job-list p {
  color: rgba(var(--text-color-rgb), 0.8);
}
.career .job-list li a {
  padding: 17px 0 15px;
  border-bottom: 1px solid var(--line-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.career .job-list li a img {
  opacity: 0.5;
  transition: opacity 0.1s linear;
}
.career .job-list li a:hover h3 {
  text-decoration: underline;
}
.career .job-list li a:hover img {
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .career .background-element {
    width: 300px;
  }
  .career .background-element.left {
    width: 400px;
  }
}
@media screen and (min-width: 1200px) {
  .career .background-element {
    opacity: 1;
  }
  .career .background-element.left {
    top: 220px;
  }
}

.ir-report .sig-item {
  text-align: center;
  margin-bottom: 20px;
  font-size: var(--font-s);
}
.ir-report .sig-item img.profile {
  border-radius: 50%;
  max-width: 80px;
  margin: 0 auto;
  display: block;
}
.ir-report .sig-item img.sig {
  height: 50px;
}
@media screen and (min-width: 768px) {
  .ir-report .sig-item {
    margin-bottom: 0;
  }
}

.page-inner.error {
  text-align: center;
  padding-bottom: 50px;
}
.page-inner.error h1 {
  margin-bottom: 8px;
  line-height: 1.3;
}
.page-inner.error .subtitle {
  font-weight: var(--font-semiBold);
  font-size: var(--font-xxl);
  margin-bottom: 5px;
  color: var(--gray-500);
}
.page-inner.error p {
  margin-bottom: 15px;
}
.page-inner.error img {
  max-width: 100%;
  height: auto;
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .page-inner.error {
    margin-top: 50px;
    text-align: left;
  }
  .page-inner.error .btn {
    display: inline-flex;
  }
  .page-inner.error h1,
  .page-inner.error .subtitle {
    font-size: 30px;
  }
  .page-inner.error img {
    margin-top: 0;
  }
  .page-inner.error .copy {
    padding-right: 20px;
  }
  .page-inner.error .align-self-center {
    align-self: center;
  }
  .page-inner.error p {
    font-size: var(--font-m);
    line-height: 28px;
  }
}
@media screen and (min-width: 992px) {
  .page-inner.error {
    margin-top: 100px;
  }
  .page-inner.error h1 {
    font-size: 40px;
    line-height: 48px;
  }
  .page-inner.error .subtitle {
    font-size: 40px;
  }
  .page-inner.error .copy {
    padding-right: 80px;
  }
  .page-inner.error p {
    font-size: var(--font-l);
    line-height: 30px;
    margin-bottom: 25px;
  }
}

.general-meeting .downloads-box {
  margin: 30px 0;
}

.thementag .hero {
  background: transparent center center no-repeat;
  background-size: cover;
}
.thementag .hero .hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 30px 15px;
}
.thementag .hero .date {
  font-size: var(--font-l);
  font-weight: var(--font-semiBold);
  margin: 10px 0 0px;
}
.thementag .hero .main-header-acf.center {
  max-width: 920px;
  margin-top: 0;
}
.thementag .hero .main-header-acf.center h1 {
  color: inherit;
}
.thementag .hero .box-wrapper {
  background-color: var(--box-bg);
  max-width: 620px;
  border-radius: var(--global-radius);
  padding: 25px;
  margin: 20px auto 20px;
  width: 100%;
}
.thementag .hero .box-wrapper .partner-logo {
  max-height: 20px;
  width: auto;
}
.thementag .hero .checklist li {
  margin-bottom: 10px;
  line-height: 1.7;
  position: relative;
  padding-left: 20px;
}
.thementag .hero .checklist li:last-child {
  margin-bottom: 0;
}
.thementag .hero .checklist li svg {
  position: absolute;
  top: 8px;
  left: 0;
}
.thementag .hero .powered-by {
  margin-top: 20px;
  font-size: var(--font-s);
}
.thementag .btn-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.thementag .overview {
  margin-bottom: 60px;
}
.thementag .overview .h2.center {
  text-align: center;
  margin-bottom: 15px;
}
.thementag .schedule {
  max-width: 1000px;
  margin: 0 auto 30px;
  background-color: var(--box-bg);
  border-radius: var(--global-radius);
  overflow: auto;
}
.thementag .schedule li {
  padding: 15px 15px 15px 0;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--gray-500);
  position: relative;
}
.thementag .schedule li.has-record {
  padding-right: 60px;
}
.thementag .schedule li:last-child {
  border-bottom: none;
}
.thementag .schedule li .time {
  min-width: 100px;
  padding-left: 15px;
  background-color: var(--box-bg);
  font-weight: var(--font-semiBold);
  display: flex;
  align-items: center;
  flex-shrink: 0;
  flex-direction: column;
  margin: 0 15px 0 0;
  font-size: var(--font-s);
}
.thementag .schedule li .time .img-wrapper {
  position: relative;
}
.thementag .schedule li .time .img-wrapper .moderator-logo {
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translate(50%, -50%);
  width: 20px;
  height: 20px;
}
.thementag .schedule li .time img {
  width: 46px;
  height: 46px;
  margin-top: 5px;
  border-radius: 50%;
}
.thementag .schedule li h3 {
  font-size: var(--font-s);
  margin-bottom: 0;
  line-height: 1.2;
}
.thementag .schedule li p {
  font-size: var(--font-xs);
  line-height: 1.4;
  margin-top: 3px;
}
.thementag .schedule li .icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.thementag .schedule li .icon svg {
  width: 20px;
  height: 20px;
}
@media screen and (min-width: 768px) {
  .thementag .hero .hero-inner {
    padding: 60px 15px;
  }
  .thementag .hero .date {
    font-size: var(--font-xl);
    margin: 10px 0 5px;
  }
  .thementag .schedule li h3 {
    font-size: var(--font-m);
  }
  .thementag .schedule li p {
    font-size: var(--font-s);
    margin-top: 1px;
  }
  .thementag .schedule li .time {
    font-size: var(--font-m);
    flex-direction: row;
    margin: 0 20px 0 0;
  }
  .thementag .schedule li .time img {
    width: 60px;
    height: 60px;
    margin: 0 0 0 15px;
  }
}

.page-template-black-friday {
  background-color: #0A0C0F;
  color: white;
}
.page-template-black-friday footer {
  background-color: #0A0C0F;
  border-top: none;
}
.page-template-black-friday footer a {
  color: white;
}

.black-friday section.section {
  margin-bottom: 25px;
}
.black-friday .locked-screen {
  max-width: 530px;
  margin: 40px auto 0;
  min-height: 70vh;
}
.black-friday .locked-screen img {
  max-width: 100%;
  height: auto;
}
.black-friday .locked-screen .btn-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.black-friday .hero {
  padding: 40px 15px;
  margin: 0;
}
.black-friday .hero .btn-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.black-friday .hero .hero-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.black-friday .hero .descr {
  margin-top: 10px;
}
.black-friday .hero .descr p {
  font-size: 18px;
  line-height: 1.5;
}
.black-friday .hero .descr p strong {
  color: var(--brand-primary);
}
.black-friday .hero .top-wrapper {
  max-width: 600px;
  margin: 0 auto;
}
.black-friday #countdown ul {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}
.black-friday #countdown ul li {
  display: flex;
  align-items: center;
}
.black-friday #countdown ul .seperator {
  font-size: 22px;
  margin: 0 3px;
  font-weight: var(--font-semiBold);
}
.black-friday #countdown ul span {
  margin: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 40px;
  background-color: #181E26;
  border-radius: var(--global-radius);
  font-size: 24px;
  font-weight: var(--font-semiBold);
}
.black-friday .card {
  position: relative;
  border-radius: var(--global-radius);
  background-color: #181E26;
  padding: 30px 20px;
  text-align: center;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.black-friday .card .expert-img {
  height: 76px;
  width: auto;
}
.black-friday .card h3 {
  margin-top: 10px;
  margin-bottom: 0;
}
.black-friday .card .btn-wrapper {
  margin-top: 10px;
}
.black-friday .card .btn-wrapper .btn {
  margin-bottom: 8px;
  font-size: var(--font-s);
  cursor: pointer;
}
.black-friday .card .btn-wrapper .btn.btn-more {
  background-color: #535E6D;
  color: white;
}
.black-friday .card .btn-wrapper .btn:last-child {
  margin-bottom: 0;
}
.black-friday .text-image-row h3 {
  font-size: 38px;
  line-height: 1.1;
}
.black-friday .text-image-row .row-image {
  margin-top: 20px;
}
.black-friday .text-image-row p {
  font-size: var(--font-l);
  font-weight: var(--font-medium);
  line-height: 1.5;
}
.black-friday .text-image-row a {
  color: white;
  font-size: var(--font-s);
  font-weight: var(--font-regular);
}
.black-friday .section-title {
  font-size: 26px;
}
.black-friday .paragraph p {
  font-size: var(--font-xs);
}
@media screen and (min-width: 768px) {
  .black-friday section.section {
    margin-bottom: 40px;
  }
  .black-friday .locked-screen {
    margin: 80px auto 0;
  }
  .black-friday .hero {
    padding: 80px 0;
  }
  .black-friday .hero .descr {
    margin-top: 20px;
  }
  .black-friday .hero .descr p {
    font-size: 24px;
  }
  .black-friday .text-image-row h3 {
    font-size: 52px;
  }
  .black-friday .text-image-row p {
    font-size: var(--font-xl);
  }
  .black-friday .text-image-row .row-image {
    margin: 0;
  }
  .black-friday #countdown ul span {
    width: 50px;
    font-size: 54px;
    margin: 4px;
    height: 80px;
  }
  .black-friday #countdown ul .seperator {
    font-size: 30px;
    margin: 0 6px;
  }
  .black-friday .card {
    padding: 30px;
  }
  .black-friday .card .btn-wrapper {
    margin-top: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(24, 30, 38, 0.6);
    z-index: 1;
    border-radius: var(--global-radius);
    display: flex;
    padding: 30px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: all 0.1s linear;
  }
  .black-friday .card .btn-wrapper .btn {
    width: 100%;
  }
  .black-friday .card:hover .btn-wrapper {
    opacity: 1;
    visibility: visible;
    backdrop-filter: blur(2px);
  }
}

:root {
  --main-header-color: var(--text-color);
}

.section-dark {
  --main-header-color: white;
}

.main-header-acf {
  margin-top: 30px;
  position: relative;
  z-index: 1;
}
.main-header-acf .subtitle-main {
  text-transform: uppercase;
  font-weight: var(--font-semiBold);
  font-size: var(--font-m);
  letter-spacing: 0.1em;
}
.main-header-acf .btn-wrapper {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.main-header-acf .btn-wrapper .btn {
  width: 100%;
  margin: 0 0 10px 0;
}
.main-header-acf .btn-wrapper .btn:last-child {
  margin: 0;
}
.main-header-acf.center {
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.main-header-acf h1 {
  font-size: 34px;
  line-height: 1.2;
  margin-top: 5px;
  color: var(--main-header-color);
  font-weight: var(--font-semiBold);
}
@media screen and (min-width: 576px) {
  .main-header-acf {
    margin-top: 60px;
  }
  .main-header-acf h1 {
    font-size: 44px;
  }
  .main-header-acf .btn-wrapper {
    flex-direction: row;
  }
  .main-header-acf .btn-wrapper .btn {
    width: auto;
    margin: 0 10px 0 0;
  }
}
@media screen and (min-width: 768px) {
  .main-header-acf .btn-wrapper {
    margin-top: 20px;
  }
  .main-header-acf h1 {
    font-size: 54px;
    line-height: 1.1;
  }
}
@media screen and (min-width: 992px) {
  .main-header-acf {
    margin-top: 80px;
  }
  .main-header-acf .btn-wrapper {
    margin-top: 40px;
  }
  .main-header-acf h1 {
    font-size: 70px;
  }
  .main-header-acf.center {
    max-width: 900px;
  }
}

:root {
  --box-plus-padding: 20px;
  --box-plus-font-size: 16px;
  --box-plus-title-size: 30px;
  --box-plus-sm-height: 340px;
  --box-plus-md-height: 440px;
  --box-plus-lg-height: auto;
  --box-plus-bg: var(--gray-400);
  --box-plus-color: var(--text-color);
  --box-plus-border-color: var(--box-plus-bg);
  --box-plus-btn-stroke: white;
  --box-plus-btn-bg: var(--brand-primary);
  --box-plus-link-color: var(--brand-primary);
}

.box-plus-button {
  border-radius: var(--global-radius);
  background-color: var(--box-plus-bg);
  border: 1px solid var(--box-plus-border-color);
  color: var(--box-plus-color);
  position: relative;
  overflow: hidden;
}
.box-plus-button.open .on-plus-content {
  opacity: 1;
  visibility: visible;
}
.box-plus-button.open .plus-button {
  transform: rotate(45deg);
  background-color: #181E26;
}
.box-plus-button.open .plus-button svg {
  stroke: white;
}
.box-plus-button.box-plus-button-light {
  --box-plus-bg: white;
  --box-plus-color: var(--text-color);
  --box-plus-border-color: var(--line-color);
}
.box-plus-button.box-plus-button-dark {
  --box-plus-bg: #0A0C0F;
  --box-plus-color: white;
  --box-plus-border-color: #181E26;
}
.box-plus-button.box-plus-button-gray-dark {
  --box-plus-bg: #181E26;
  --box-plus-color: white;
  --box-plus-border-color: #181E26;
}
.box-plus-button.box-plus-button-primary {
  --box-plus-bg: var(--brand-primary);
  --box-plus-color: white;
  --box-plus-border-color: var(--brand-primary);
  --box-plus-btn-stroke: var(--brand-primary);
  --box-plus-btn-bg: white;
  --box-plus-link-color: white;
}
.box-plus-button .initial-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.box-plus-button .initial-content h2,
.box-plus-button .initial-content h3 {
  font-size: var(--box-plus-title-size);
  line-height: 1.1;
}
.box-plus-button .initial-content .copy {
  padding: var(--box-plus-padding);
}
.box-plus-button .initial-content .copy .p a {
  color: var(--box-plus-link-color);
}
.box-plus-button .initial-content .copy .p,
.box-plus-button .initial-content .copy p {
  font-size: var(--box-plus-font-size);
}
.box-plus-button .initial-content .btn {
  margin-top: 10px;
  display: inline-block;
}
.box-plus-button .img-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-left: var(--box-plus-padding);
}
.box-plus-button .on-plus-content {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: 0;
  padding: var(--box-plus-padding);
  border-radius: var(--global-radius);
  visibility: hidden;
  z-index: 5;
  background-color: #000;
  color: white;
  transition: all 0.2s ease-in-out;
}
.box-plus-button .on-plus-content .scroll-container {
  overflow: auto;
  height: 100%;
  padding-bottom: 50px;
}
.box-plus-button .on-plus-content .bottom-gradient {
  position: absolute;
  height: 120px;
  width: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, #000000, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}
.box-plus-button.box-plus-button-sm .initial-content h2,
.box-plus-button.box-plus-button-sm .initial-content h3, .box-plus-button.box-plus-button-md .initial-content h2,
.box-plus-button.box-plus-button-md .initial-content h3 {
  font-size: 28px;
}
.box-plus-button.box-plus-button-sm .initial-content {
  height: var(--box-plus-sm-height);
}
.box-plus-button.box-plus-button-md .initial-content {
  height: var(--box-plus-md-height);
}
.box-plus-button.box-plus-button-lg .initial-content {
  height: var(--box-plus-lg-height);
}
.box-plus-button .plus-button {
  background-color: var(--box-plus-btn-bg);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: var(--box-plus-padding);
  left: var(--box-plus-padding);
  z-index: 10;
  transition: all 0.2s ease-in-out;
}
.box-plus-button .plus-button svg {
  width: 30px;
  height: 30px;
  stroke: var(--box-plus-btn-stroke);
  transition: all 0.2s ease-in-out;
}
@media screen and (min-width: 768px) {
  .box-plus-button {
    --box-plus-padding: 30px;
    --box-plus-sm-height: 380px;
    --box-plus-md-height: 380px;
    --box-plus-lg-height: 380px;
  }
  .box-plus-button.box-plus-button-lg .initial-content {
    flex-direction: row;
    align-items: stretch;
  }
  .box-plus-button.box-plus-button-lg .initial-content .copy {
    width: 45%;
  }
  .box-plus-button.box-plus-button-lg .initial-content .img-wrapper {
    width: 55%;
  }
  .box-plus-button .initial-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .box-plus-button .initial-content .copy {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: flex-start;
  }
  .box-plus-button .initial-content .btn {
    margin-top: 15px;
  }
  .box-plus-button .initial-content .img-wrapper.bottom {
    align-items: flex-end;
  }
  .box-plus-button .initial-content .img-wrapper.bottom img {
    border-top-left-radius: var(--global-radius);
    border-bottom-right-radius: var(--global-radius);
  }
  .box-plus-button .initial-content .img-wrapper.center {
    align-items: center;
  }
  .box-plus-button .initial-content .img-wrapper.center img {
    max-height: 360px;
  }
  .box-plus-button .initial-content .img-wrapper.top {
    align-items: flex-start;
  }
}
@media screen and (min-width: 992px) {
  .box-plus-button {
    --box-plus-padding: 40px;
    --box-plus-title-size: 52px;
    --box-plus-font-size: 16px;
    --box-plus-lg-height: 500px;
  }
}
@media screen and (min-width: 1200px) {
  .box-plus-button {
    --box-plus-md-height: 480px;
  }
}

:root {
  --link-box-padding: 20px;
  --link-box-margin-bottom: 15px;
  --link-box-border-color: var(--line-color);
  --link-box-color: var(--text-color);
}

.section-dark {
  --link-box-border-color: #181E26;
  --link-box-bg: #0A0C0F;
  --link-box-color: white;
}

.link-boxes .link-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--link-box-bg);
  padding: var(--link-box-padding);
  border: 1px solid var(--link-box-border-color);
  border-radius: var(--global-radius);
  height: 120px;
  margin-bottom: var(--link-box-margin-bottom);
  transition: all 0.1s linear;
  color: var(--link-box-color);
}
.link-boxes .link-box:hover {
  border-color: var(--brand-primary);
  background-color: rgba(var(--brand-primary-rgb), 0.1);
}
.link-boxes .link-box .subtitle {
  display: block;
  font-size: 16px;
  color: var(--brand-primary);
  font-weight: var(--font-semiBold);
  margin-bottom: 5px;
}
.link-boxes .link-box .title {
  display: block;
  font-size: 22px;
  font-weight: var(--font-semiBold);
}
.link-boxes .link-box svg {
  width: 24px;
  height: 24px;
}
@media screen and (min-width: 768px) {
  .link-boxes {
    --link-box-padding: 30px;
    --link-box-margin-bottom: 20px;
  }
  .link-boxes .link-box .subtitle {
    font-size: 18px;
  }
  .link-boxes .link-box .title {
    font-size: 32px;
  }
}

.section-headline {
  padding: 20px 0 0;
}
.section-headline.section-dark {
  color: white;
}
.section-headline h2,
.section-headline h3 {
  margin-bottom: 0;
}

.headline-h2 h2 {
  font-size: 32px;
  line-height: 1.1;
}

.headline-h3 h3 {
  font-size: 22px;
}

@media screen and (min-width: 992px) {
  .headline-h2 h2 {
    font-size: 40px;
    line-height: 1.3;
  }
  .headline-h3 h3 {
    font-size: 22px;
  }
}
:root {
  --box-newslist-padding: 0;
  --box-newslist-border-color: transparent;
}

.box-newslist {
  border-radius: var(--global-radius);
  border: 1px solid var(--box-newslist-border-color);
  padding: var(--box-newslist-padding);
}
.box-newslist .newslist-item {
  display: block;
  border-bottom: 1px solid var(--gray-400);
  padding-bottom: 26px;
  margin-bottom: 26px;
}
.box-newslist .newslist-item:hover h3 {
  text-decoration: underline;
}
.box-newslist .newslist-item .type {
  font-weight: var(--font-medium);
  margin-bottom: 10px;
  font-size: var(--font-s);
  color: rgba(var(--text-color-rgb), 0.8);
}
.box-newslist .newslist-item h3 {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  line-height: 1.3;
  font-size: var(--font-l);
  font-weight: var(--font-semiBold);
  margin-bottom: 5px;
}
.box-newslist .newslist-item p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.box-newslist .newslist-item.is-lg {
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.box-newslist .newslist.no-margin li:last-child .newslist-item {
  margin-bottom: 0;
  border-bottom: 0;
  padding-bottom: 0;
}
.box-newslist .arrow-link {
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
  border: 1px solid var(--brand-primary);
  border-radius: var(--global-radius);
  padding: 15px 10px;
  font-size: var(--font-m);
  margin-bottom: 40px;
}
.box-newslist .arrow-link svg {
  display: inline-flex;
  margin: 0 0 -1px 2px;
  stroke: var(--brand-primary);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .box-newslist {
    --box-newslist-border-color: var(--line-color);
    --box-newslist-padding: 40px;
  }
  .box-newslist .newslist li:last-child .newslist-item {
    margin-bottom: 0;
    border-bottom: 0;
    padding-bottom: 0;
  }
  .box-newslist .newslist-item {
    padding-bottom: 32px;
    margin-bottom: 32px;
  }
  .box-newslist .newslist-item.is-lg {
    padding-bottom: 30px;
    margin-bottom: 30px;
    margin-right: 60px;
  }
  .box-newslist .newslist-item.is-lg h3 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 24px;
  }
  .box-newslist .newslist-item.is-lg p {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .box-newslist .arrow-link {
    border: none;
    display: inline-flex;
    padding: 0;
    margin: 40px 0 0;
  }
}

.box-plus-button-row-sm .box-plus-button {
  margin-bottom: 15px;
}

.box-plus-button-row-md .box-plus-button {
  margin-bottom: 15px;
}

@media screen and (min-width: 768px) {
  .box-plus-button-row-sm .box-plus-button {
    margin-bottom: 20px;
  }
  .box-plus-button-row-md .box-plus-button {
    margin-bottom: 20px;
  }
}
:root {
  --box-contact-padding: 20px;
  --box-contact-font-size: 16px;
  --box-contact-title-size: 40px;
  --box-contact-border-color: var(--line-color);
  --box-contact-bg: white;
  --box-contact-height: auto;
}

.box-contact {
  border-radius: var(--global-radius);
  background-color: var(--box-contact-bg);
  border: 1px solid var(--box-contact-border-color);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: var(--box-contact-height);
}
.box-contact h2,
.box-contact h3 {
  font-size: var(--box-contact-title-size);
  margin-bottom: 10px;
  line-height: 1.1;
}
.box-contact .copy {
  font-size: var(--box-contact-font-size);
  padding: var(--box-contact-padding);
  flex: 1;
}
.box-contact .copy .p {
  margin-bottom: 20px;
}
.box-contact .btn {
  margin-top: 10px;
  display: inline-block;
}
.box-contact .img-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  padding-left: var(--box-plus-padding);
}
.box-contact .img-wrapper img {
  max-width: 180px;
}
.box-contact .img-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.box-contact .name-box {
  padding: 20px;
  background-color: var(--box-bg);
  position: absolute;
  bottom: 30px;
  left: 0;
  border-radius: var(--global-radius);
  transform: translateX(-80%);
  font-size: var(--box-contact-font-size);
  width: 220px;
}
.box-contact .name-box .name {
  display: block;
  font-weight: var(--font-semiBold);
}
.box-contact .name-box .profession {
  display: block;
  font-size: 14px;
  margin-top: 5px;
  color: rgba(var(--text-color-rgb), 0.8);
  line-height: 1.2;
}
.box-contact .icon-link {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  text-decoration: underline;
}
.box-contact .icon-link svg {
  width: 18px;
  height: 18px;
  margin-right: 10px;
}
.box-contact .icon-link:last-of-type {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .box-contact {
    --box-contact-padding: 30px;
    --box-contact-height: 400px;
    --box-contact-font-size: 18px;
    flex-direction: row;
    align-items: stretch;
  }
  .box-contact .copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }
  .box-contact .img-wrapper.bottom {
    align-items: flex-end;
  }
  .box-contact .img-wrapper.center {
    align-items: center;
  }
  .box-contact .img-wrapper.top {
    align-items: flex-start;
  }
  .box-contact .link-wrapper {
    margin-top: 40px;
  }
  .box-contact .name-box {
    bottom: 50px;
    transform: translateX(-50%);
  }
  .box-contact .name-box .profession {
    font-size: 16px;
  }
  .box-contact .img-wrapper img {
    max-width: 360px;
  }
}
@media screen and (min-width: 992px) {
  .box-contact {
    --box-contact-padding: 40px;
    --box-contact-title-size: 58px;
  }
  .box-contact .name-box {
    width: 280px;
  }
  .box-contact .copy .p {
    margin-bottom: 40px;
  }
}

.section-dark .platform-section-header .left h2 {
  color: white;
}

.platform-section-header {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.platform-section-header .left {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.platform-section-header .left h2 {
  font-size: 20px;
}
.platform-section-header .left .subtitle {
  font-size: 16px;
  font-weight: var(--font-semiBold);
  color: var(--brand-primary);
}
.platform-section-header .left img {
  margin-right: 15px;
}
.platform-section-header .buttons .btn {
  margin-bottom: 10px;
}
.platform-section-header .buttons .btn:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 576px) {
  .platform-section-header {
    align-items: center;
    flex-direction: row;
  }
  .platform-section-header .buttons {
    display: flex;
  }
  .platform-section-header .buttons .btn {
    margin-bottom: 0;
    margin-right: 10px;
  }
  .platform-section-header .buttons .btn:last-child {
    margin-right: 0;
  }
  .platform-section-header .left {
    margin-bottom: 0;
  }
  .platform-section-header .left .subtitle {
    font-size: 18px;
  }
  .platform-section-header .left h2 {
    font-size: 24px;
  }
}

:root {
  --icon-with-paragraph-title-size: 28px;
}

.section-dark .icon-with-paragraph .icon {
  border-color: #181E26;
}
.section-dark .icon-with-paragraph .collapse-show-more span {
  color: rgba(255, 255, 255, 0.8);
}
.section-dark .icon-with-paragraph .collapse-show-more svg {
  stroke: rgba(255, 255, 255, 0.8);
}

.icon-with-paragraph {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.icon-with-paragraph .icon {
  width: 114px;
  height: 114px;
  margin: 0 auto 30px;
  border: 1px solid var(--line-color);
  border-radius: var(--global-radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-with-paragraph .subtitle {
  font-size: 16px;
  font-weight: var(--font-semiBold);
  color: var(--brand-primary);
}
.icon-with-paragraph h2 {
  font-size: var(--icon-with-paragraph-title-size);
}
.icon-with-paragraph .collapse-wrapper .p {
  max-height: 80px;
  overflow: hidden;
}
.icon-with-paragraph .collapse-wrapper .close {
  display: none;
}
.icon-with-paragraph .collapse-wrapper.open .p {
  max-height: 800px;
}
.icon-with-paragraph .collapse-wrapper.open .open {
  display: none;
}
.icon-with-paragraph .collapse-wrapper.open .close {
  display: flex;
}
.icon-with-paragraph .collapse-show-more span {
  color: rgba(var(--text-color-rgb), 0.8);
  display: flex;
  align-items: center;
  margin: 10px auto;
  font-size: 16px;
}
.icon-with-paragraph .collapse-show-more svg {
  margin-left: 5px;
  width: 18px;
  height: 18px;
  stroke: rgba(var(--text-color-rgb), 0.8);
}
@media screen and (min-width: 768px) {
  .icon-with-paragraph {
    --icon-with-paragraph-title-size: 40px;
  }
  .icon-with-paragraph .collapse-wrapper .p {
    max-height: 106px;
    font-size: 18px;
  }
  .icon-with-paragraph .subtitle {
    font-size: 18px;
  }
}

:root {
  --more-icon-links-link-width: 50%;
  --more-icon-links-link-border-color: var(--line-color);
  --more-icon-links-link-color: var(--text-color);
  --more-icon-links-link-bg: white;
}

.section-dark {
  --more-icon-links-link-border-color: #181E26;
  --more-icon-links-link-color: white;
  --more-icon-links-link-bg: #0A0C0F;
}

.more-icon-links {
  display: flex;
  align-items: center;
  font-weight: var(--font-semiBold);
  flex-wrap: wrap;
  margin: 0 -10px;
}
.more-icon-links .link-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 180px;
  background-color: var(--more-icon-links-link-bg);
  color: var(--more-icon-links-link-color);
  border: 1px solid var(--more-icon-links-link-border-color);
  width: calc(var(--more-icon-links-link-width) - 20px);
  margin: 10px;
  border-radius: var(--global-radius);
  transition: all 0.1s linear;
  text-align: center;
  line-height: 1.3;
}
.more-icon-links .link-item:hover {
  border-color: var(--brand-primary);
  background-color: rgba(var(--brand-primary-rgb), 0.1);
}
.more-icon-links .icon {
  width: 140px;
}
@media screen and (min-width: 768px) {
  .more-icon-links {
    --more-icon-links-link-width: 33.333333%;
  }
}
@media screen and (min-width: 992px) {
  .more-icon-links {
    --more-icon-links-link-width: 16.666667%;
  }
}

:root {
  --pro-matrix-padding: 20px;
  --pro-matrix-price-size: 46px;
  --pro-matrix-col-height: auto;
}

.pro-matrix .toggle-timeframe {
  width: 220px;
  margin: 0 auto 20px;
  background-color: var(--gray-400);
  height: 32px;
  display: flex;
  align-items: center;
  border-radius: 200px;
  color: rgba(var(--text-color-rgb), 0.8);
}
.pro-matrix .toggle-timeframe .item {
  position: relative;
  flex: 1;
  text-align: center;
}
.pro-matrix .toggle-timeframe .item > div {
  border-radius: 200px;
  height: 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--font-medium);
  white-space: nowrap;
  font-size: 14px;
}
.pro-matrix .toggle-timeframe .item > div.active {
  background-color: var(--brand-primary);
  color: white;
}
.pro-matrix .toggle-timeframe .item .badge-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(40%, calc(-100% - 15px));
  display: flex;
  align-items: center;
}
.pro-matrix .toggle-timeframe .item .badge-wrapper svg {
  margin-bottom: -18px;
  margin-right: 3px;
}
.pro-matrix .toggle-timeframe .item .discount-badge {
  background-color: rgba(var(--brand-primary-rgb), 0.2);
  color: var(--brand-primary);
  font-size: 12px;
  border-radius: 3px;
  padding: 5px;
  height: auto;
}
.pro-matrix .pro-matrix-col {
  border-radius: var(--global-radius);
  border: 1px solid var(--line-color);
  height: var(--pro-matrix-col-height);
  position: relative;
  padding-bottom: 50px;
  transition: border-color 0.1s linear;
  margin-bottom: 15px;
}
.pro-matrix .pro-matrix-col:hover {
  border-color: var(--brand-primary);
}
.pro-matrix .pro-matrix-col.highlight {
  background-color: rgba(var(--brand-primary-rgb), 0.1);
  border-color: var(--brand-primary);
}
.pro-matrix .pro-matrix-col.highlight .header {
  border-color: rgba(var(--brand-primary-rgb), 0.1);
}
.pro-matrix .pro-matrix-col.highlight .footer .btn {
  background-color: rgba(var(--brand-primary-rgb), 0.3);
  color: var(--brand-primary);
}
.pro-matrix .pro-matrix-col .header {
  padding: var(--pro-matrix-padding);
  border-bottom: 1px solid var(--line-color);
  font-size: 20px;
  height: 233px;
}
.pro-matrix .pro-matrix-col .header .btn {
  font-size: 14px;
}
.pro-matrix .pro-matrix-col .header .type {
  font-weight: var(--font-semiBold);
}
.pro-matrix .pro-matrix-col .header .info-sm {
  font-size: 11px;
  text-align: center;
  margin-top: 15px;
  color: rgba(var(--text-color-rgb), 0.8);
}
.pro-matrix .pro-matrix-col .price-wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin: 20px 0 10px;
}
.pro-matrix .pro-matrix-col .price-wrapper.free {
  margin-top: 40px;
}
.pro-matrix .pro-matrix-col .price-wrapper.free .price {
  font-size: 36px;
  margin-bottom: 5px;
}
.pro-matrix .pro-matrix-col .price-wrapper .price {
  font-weight: var(--font-semiBold);
  font-size: var(--pro-matrix-price-size);
}
.pro-matrix .pro-matrix-col .price-wrapper .timeframe {
  font-size: 14px;
  margin-bottom: 6px;
  color: rgba(var(--text-color-rgb), 0.8);
}
.pro-matrix .pro-matrix-col .feature-list {
  padding: var(--pro-matrix-padding);
  font-size: 15px;
}
.pro-matrix .pro-matrix-col .feature-list .title {
  font-weight: var(--font-semiBold);
  margin-bottom: 12px;
}
.pro-matrix .pro-matrix-col .feature-list ul li {
  margin-bottom: 12px;
  line-height: 1.7;
  position: relative;
  padding-left: 20px;
}
.pro-matrix .pro-matrix-col .feature-list ul li:last-child {
  margin-bottom: 0;
}
.pro-matrix .pro-matrix-col .feature-list ul li svg {
  position: absolute;
  top: 8px;
  left: 0;
}
.pro-matrix .pro-matrix-col .footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.pro-matrix .pro-matrix-col .footer .btn {
  text-align: center;
  background-color: var(--gray-400);
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  font-size: 14px;
  font-weight: var(--font-medium);
  color: rgba(var(--text-color-rgb), 0.8);
}
@media screen and (min-width: 768px) {
  .pro-matrix {
    --pro-matrix-col-height: 690px;
    --pro-matrix-padding: 25px;
  }
}
@media screen and (min-width: 992px) {
  .pro-matrix {
    --pro-matrix-col-height: 610px;
  }
}
@media screen and (min-width: 1200px) {
  .pro-matrix {
    --pro-matrix-col-height: 770px;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1360px) {
  .pro-matrix {
    --pro-matrix-col-height: 720px;
    --pro-matrix-price-size: 52px;
  }
}

:root {
  --slide-padding: 20px;
  --slide-container-padding: 0px;
  --slide-bg: var(--gray-400);
  --slide-color: var(--text-color);
  --slide-border-color: var(--slide-bg);
  --slide-link-color: var(--brand-primary);
}

.slider.slick-me {
  border: 1px solid var(--slide-border-color);
  border-radius: var(--global-radius);
  background-color: var(--slide-bg);
  color: var(--slide-color);
  padding: var(--slide-container-padding) 0;
  position: relative;
}
.slider.slick-me.slider-dark {
  --slide-bg: #0A0C0F;
  --slide-border-color: #181E26;
  --slide-color: white;
}
.slider.slick-me.slider-light {
  --slide-bg: white;
  --slide-border-color: var(--line-color);
}
.slider.slick-me.slider-gray {
  --slide-bg: var(--box-bg);
  --slide-border-color: var(--box-bg);
}
.slider.slick-me.slider-gray-dark {
  --slide-bg: #181E26;
  --slide-color: white;
  --slide-border-color: #181E26;
}
.slider.slick-me .slick-arrow {
  display: none !important;
}
.slider.slick-me .slick-dots {
  position: absolute;
  left: var(--slide-padding);
  bottom: var(--slide-container-padding);
  display: flex;
  align-items: center;
}
.slider.slick-me .slick-dots li:first-child button {
  padding-left: 0;
}
.slider.slick-me .slick-dots li.slick-active button::before {
  background-color: var(--brand-primary);
}
.slider.slick-me .slick-dots li button {
  font-size: 0;
  padding: 10px 4px;
}
.slider.slick-me .slick-dots li button::before {
  content: "";
  display: block;
  width: 34px;
  height: 4px;
  background-color: white;
  border-radius: 5px;
  background-color: rgba(var(--text-color-rgb), 0.5);
}
.slider.slick-me .slide-item {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.slider.slick-me .slide-item .copy {
  flex: 1;
  padding: var(--slide-padding);
}
.slider.slick-me .slide-item h3 {
  font-size: 22px;
  line-height: 1.3;
  margin-bottom: 10px;
}
.slider.slick-me .slide-item .img-wrapper {
  flex: 2;
  max-width: 700px;
}
.slider.slick-me .arrow-link {
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
  border: 1px solid var(--brand-primary);
  border-radius: var(--global-radius);
  padding: 15px 10px;
  font-size: var(--font-m);
}
.slider.slick-me .arrow-link svg {
  display: inline-flex;
  margin: 0 0 -1px 2px;
  stroke: var(--brand-primary);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
@media screen and (min-width: 992px) {
  .slider.slick-me {
    --slide-padding: 50px;
    --slide-container-padding: 50px;
  }
  .slider.slick-me .slide-item {
    flex-direction: row;
  }
  .slider.slick-me .arrow-link {
    border: none;
    display: inline-flex;
    padding: 0;
    margin: 40px 0 0;
  }
}

.section-dark {
  --faq-collapse-color: white;
  --faq-collapse-border-color: #181E26;
}

.section-gray {
  --faq-collapse-border-color: var(--gray-500);
}

:root {
  --faq-collapse-color: var(--text-color);
  --faq-collapse-border-color: var(--line-color);
}

.faq-collapse .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq-collapse .header .h2 {
  font-size: 40px;
  color: var(--faq-collapse-color);
}
.faq-collapse .header a {
  color: var(--brand-primary);
  font-weight: var(--font-semiBold);
}
.faq-collapse .collapse .collapse-header {
  border-bottom: 1px solid var(--faq-collapse-border-color);
  color: var(--faq-collapse-color);
  position: relative;
  cursor: pointer;
  line-height: 1.4;
  padding: 25px 20px 25px 0;
  user-select: none;
  width: 100%;
  text-align: left;
  font-size: var(--font-m);
  font-weight: var(--font-semiBold);
}
.faq-collapse .collapse .collapse-header .close {
  display: none;
}
.faq-collapse .collapse .collapse-header:focus {
  border-color: var(--brand-primary);
}
.faq-collapse .collapse .collapse-header svg {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
}
.faq-collapse .collapse .collapse-content {
  overflow: hidden;
  line-height: 1.7;
  max-height: 0;
}
.faq-collapse .collapse .collapse-content p {
  margin-bottom: 10px;
}
.faq-collapse .collapse .collapse-content ul {
  padding-left: 15px;
  margin: 10px 0 20px;
}
.faq-collapse .collapse .collapse-content ul li {
  list-style: disc;
  margin-bottom: 10px;
}
.faq-collapse .collapse .collapse-content a {
  text-decoration: underline;
}
.faq-collapse .collapse.open .collapse-header .close {
  display: block;
}
.faq-collapse .collapse.open .collapse-header .open {
  display: none;
}
.faq-collapse .collapse.open .collapse-content {
  max-height: 5000px;
  padding-top: 10px;
}

:root {
  --numbered-box-list-bg: var(--box-bg);
  --numbered-box-list-color: var(--text-color);
}

.section-dark {
  --numbered-box-list-bg: #181E26;
  --numbered-box-list-color: white;
}

.section-gray {
  --numbered-box-list-bg: white;
}

.numbered-box-list {
  margin-bottom: -10px;
}
.numbered-box-list .box-list-item {
  background-color: var(--numbered-box-list-bg);
  color: var(--numbered-box-list-color);
  display: flex;
  align-items: center;
  border-radius: var(--global-radius);
  margin-bottom: 10px;
  line-height: 1.5;
  padding: 20px;
}
.numbered-box-list p {
  font-size: var(--font-s);
}
.numbered-box-list .num {
  font-size: 26px;
  font-weight: var(--font-semiBold);
  padding-right: 20px;
  color: var(--brand-primary);
}
@media screen and (min-width: 768px) {
  .numbered-box-list {
    column-count: 2;
    column-gap: 10px;
  }
  .numbered-box-list .box-list-item {
    height: 140px;
  }
}
@media screen and (min-width: 992px) {
  .numbered-box-list {
    column-gap: 15px;
    margin-bottom: -15px;
  }
  .numbered-box-list .box-list-item {
    padding: 40px;
    margin-bottom: 15px;
  }
  .numbered-box-list .box-list-item .num {
    font-size: 38px;
    padding-right: 40px;
  }
  .numbered-box-list .box-list-item p {
    font-size: var(--font-m);
  }
}

.divider {
  height: 20px;
  width: 100%;
}
.divider.divider-sm {
  height: 20px;
}
.divider.divider-md {
  height: 40px;
}
.divider.divider-lg {
  height: 60px;
}

.disclaimer {
  font-size: 14px !important;
}
.disclaimer h1, .disclaimer h2, .disclaimer h3 {
  font-size: 16px !important;
}
.disclaimer p {
  font-size: 14px !important;
}

.paragraph p:last-of-type {
  margin-bottom: 0;
}

:root {
  --cta-box-padding: 20px;
  --cta-box-margin-bottom: 15px;
  --cta-box-border-color: var(--line-color);
  --cta-box-color: var(--text-color);
  --cta-box-subtitle-color: var(--brand-primary);
  --cta-box-bg: white;
  --cta-box-btn-bg: var(--brand-primary);
  --cta-box-btn-color: white;
}

.cta-two-col .cta-box {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding: var(--cta-box-padding);
  border: 1px solid var(--cta-box-border-color);
  background-color: var(--cta-box-bg);
  border-radius: var(--global-radius);
  margin-bottom: var(--cta-box-margin-bottom);
  transition: all 0.1s linear;
  color: var(--cta-box-color);
}
.cta-two-col .cta-box.cta-box-dark {
  --cta-box-bg: #0A0C0F;
  --cta-box-color: white;
  --cta-box-border-color: #181E26;
}
.cta-two-col .cta-box.cta-box-gray-dark {
  --cta-box-bg: #181E26;
  --cta-box-color: white;
  --cta-box-border-color: #181E26;
}
.cta-two-col .cta-box.cta-box-gray {
  --cta-box-bg: var(--box-bg);
  --cta-box-border-color: var(--box-bg);
}
.cta-two-col .cta-box.cta-box-primary {
  --cta-box-bg: var(--brand-primary);
  --cta-box-bg-color: white;
  --cta-box-subtitle-color: white;
  --cta-box-color: white;
  --cta-box-btn-bg: white;
  --cta-box-btn-color: var(--brand-primary);
  --cta-box-border-color: var(--brand-primary);
}
.cta-two-col .cta-box img {
  height: 46px;
  flex-shrink: 0;
}
.cta-two-col .cta-box img,
.cta-two-col .cta-box .btn {
  margin-top: 10px;
}
.cta-two-col .cta-box .btn.btn-primary {
  background-color: var(--cta-box-btn-bg);
  color: var(--cta-box-btn-color);
}
.cta-two-col .cta-box .subtitle {
  display: block;
  font-size: 16px;
  color: var(--cta-box-subtitle-color);
  font-weight: var(--font-semiBold);
  margin-bottom: 5px;
}
.cta-two-col .cta-box .title {
  display: block;
  line-height: 1.2;
  font-size: 22px;
  font-weight: var(--font-semiBold);
}
.cta-two-col .cta-box svg {
  width: 24px;
  height: 24px;
}
@media screen and (min-width: 768px) {
  .cta-two-col .cta-box {
    height: 180px;
    justify-content: space-between;
  }
}
@media screen and (min-width: 992px) {
  .cta-two-col {
    --cta-box-padding: 30px;
    --cta-box-margin-bottom: 20px;
  }
  .cta-two-col .cta-box {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: 160px;
  }
  .cta-two-col .cta-box .subtitle {
    font-size: 18px;
  }
  .cta-two-col .cta-box img,
  .cta-two-col .cta-box .btn {
    margin-top: 0;
  }
  .cta-two-col .cta-box .title {
    font-size: 28px;
  }
}

:root {
  --box-download-bg: var(--box-bg);
  --box-download-padding: 20px;
}

.box-downloads {
  background-color: var(--box-download-bg);
  padding: var(--box-download-padding);
  border-radius: var(--global-radius);
}
.box-downloads .header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 20px;
}
.box-downloads .subtitle {
  font-size: 16px;
  font-weight: var(--font-semiBold);
  color: var(--brand-primary);
}
.box-downloads h2 {
  font-size: 28px;
}
.box-downloads .p, .box-downloads p {
  font-size: var(--font-m);
}
.box-downloads .download-list li {
  margin-bottom: 10px;
}
.box-downloads .download-list li:last-child {
  margin-bottom: 0;
}
.box-downloads .download-list li a {
  background-color: white;
  font-size: var(--font-m);
  font-weight: var(--font-semiBold);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 100px;
  border-radius: var(--global-radius);
  transition: box-shadow 0.2s ease-in-out;
}
.box-downloads .download-list li a:hover {
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
}
@media screen and (min-width: 768px) {
  .box-downloads {
    --box-download-padding: 30px;
  }
  .box-downloads .subtitle {
    font-size: 18px;
  }
  .box-downloads .header {
    margin-bottom: 30px;
  }
  .box-downloads h2 {
    font-size: 40px;
  }
  .box-downloads .p, .box-downloads p {
    font-size: var(--font-l);
  }
  .box-downloads .download-list li {
    margin-bottom: 15px;
  }
  .box-downloads .download-list li a {
    font-size: var(--font-l);
    height: 140px;
    padding: 0 40px;
  }
  .box-downloads .download-list li a .icon {
    width: 24px;
    height: 24px;
  }
}

.joblist h3 {
  font-size: var(--font-m);
  margin-bottom: 0;
}
.joblist p {
  color: rgba(var(--text-color-rgb), 0.8);
}
.joblist li a {
  padding: 17px 0 15px;
  border-bottom: 1px solid var(--line-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.joblist li a img {
  opacity: 0.5;
  transition: opacity 0.1s linear;
}
.joblist li a:hover h3 {
  text-decoration: underline;
}
.joblist li a:hover img {
  opacity: 1;
}
.joblist .initiative-bottom {
  text-align: center;
  font-weight: var(--font-medium);
  margin-top: 30px;
}

.box-quote {
  padding: 40px 20px;
  font-weight: var(--font-medium);
  text-align: center;
  background-color: var(--box-bg);
  border-radius: var(--global-radius);
}
.box-quote .expert {
  font-style: italic;
  font-weight: var(--font-regular);
  margin-top: 10px;
  line-height: 1.3;
  font-size: var(--font-s);
}
.box-quote .p {
  line-height: 1.5;
  font-weight: var(--font-medium);
}
.box-quote .expert-img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  margin: 0 auto 15px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  background-color: var(--gray-400);
}
@media screen and (min-width: 768px) {
  .box-quote {
    display: flex;
    align-items: center;
    text-align: left;
    padding: 30px;
    border-radius: var(--global-radius);
  }
  .box-quote.img-right {
    flex-direction: row-reverse;
  }
  .box-quote.img-right .expert-img {
    margin: 0 0 0 40px;
  }
  .box-quote .p {
    font-size: var(--font-l);
  }
  .box-quote .expert-img {
    flex-shrink: 0;
    margin: 0 40px 0 0;
  }
}

.m-arrow-link {
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
  border: 1px solid var(--brand-primary);
  border-radius: var(--global-radius);
  padding: 15px 10px;
  font-size: var(--font-m);
  margin-bottom: 40px;
}
.m-arrow-link svg {
  display: inline-flex;
  margin: 0 0 -1px 2px;
  fill: var(--brand-primary);
  flex-shrink: 0;
}
.m-arrow-link.has-box {
  background-color: var(--gray-400);
  display: flex;
  justify-content: space-between;
  padding: 0 15px;
  height: 62px;
  margin: 0;
  font-weight: var(--font-semiBold);
  color: var(--text-color);
  border: none;
}
.m-arrow-link.has-box svg {
  fill: var(--text-color);
}

@media screen and (min-width: 768px) {
  .m-arrow-link {
    border: none;
    display: inline-flex;
    padding: 0;
    margin-bottom: 0;
  }
}
.a-article-list {
  margin-bottom: 26px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line-color);
}
.a-article-list li:last-child .a-article-list-item {
  margin-bottom: 0;
  border-bottom: 0;
  padding-bottom: 0;
}
@media screen and (min-width: 768px) {
  .a-article-list {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }
}

.a-article-list-item {
  display: block;
  border-bottom: 1px solid var(--gray-400);
  padding-bottom: 26px;
  margin-bottom: 26px;
}
.a-article-list-item:hover h3 {
  text-decoration: underline;
}
.a-article-list-item .type {
  font-weight: var(--font-medium);
  margin-bottom: 10px;
  font-size: var(--font-s);
  color: rgba(var(--text-color-rgb), 0.8);
}
.a-article-list-item h3 {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  line-height: 1.3;
  font-size: var(--font-l);
  font-weight: var(--font-semiBold);
  margin-bottom: 5px;
}
.a-article-list-item p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.a-article-list-item.is-lg {
  padding-bottom: 20px;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .a-article-list-item {
    padding-bottom: 32px;
    margin-bottom: 32px;
  }
  .a-article-list-item.is-lg {
    padding-bottom: 30px;
    margin-bottom: 30px;
    margin-right: 60px;
  }
  .a-article-list-item.is-lg h3 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 24px;
  }
  .a-article-list-item.is-lg p {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

#disclaimer {
  position: fixed;
  z-index: 2;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
#disclaimer .scroll-container {
  overflow: auto;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}
#disclaimer .disclaimer-inner {
  background-color: white;
  max-width: 100%;
  position: relative;
  margin: 20px;
  z-index: 4;
  border-radius: 6px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
#disclaimer .disclaimer-inner a:not(.btn) {
  text-decoration: underline;
  color: var(--brand-primary);
}
#disclaimer:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.5);
}
#disclaimer p {
  margin-bottom: 20px;
}
#disclaimer .btn-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
#disclaimer .btn-wrapper .btn {
  width: auto;
}
#disclaimer .title {
  font-size: var(--font-m);
  font-weight: var(--font-semiBold);
  display: block;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  #disclaimer .disclaimer-inner {
    max-width: 600px;
    margin: 50px auto;
    padding: 30px;
  }
}
@media screen and (min-width: 992px) {
  #disclaimer .disclaimer-inner {
    max-width: 1000px;
  }
}

.a-icon {
  width: 16px;
  height: 16px;
  fill: var(--text-color);
}

.c-nav {
  position: relative;
  z-index: 1;
}
.c-nav .c-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.c-nav .c-nav-inner .logo {
  height: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.c-nav .website-title {
  margin-top: 4px;
}
.c-nav ul {
  display: flex;
  align-items: center;
  font-weight: var(--font-semiBold);
}
.c-nav ul a {
  padding: 10px;
}
.c-nav ul a:hover {
  color: var(--brand-primary);
}
.c-nav img {
  width: 120px;
  margin-right: 10px;
}
@media screen and (min-width: 768px) {
  .c-nav .c-nav-inner .logo {
    flex-direction: row;
    align-items: center;
  }
}
@media screen and (min-width: 992px) {
  .c-nav {
    font-size: 22px;
  }
  .c-nav ul li {
    font-size: 16px;
  }
  .c-nav img {
    width: 180px;
  }
}

.a-section-header {
  margin-bottom: 15px;
}
.a-section-header h2 {
  font-weight: var(--font-semiBold);
  font-size: 24px;
  margin-bottom: 5px;
  line-height: 1.3;
}
.a-section-header .subtitle {
  color: var(--brand-primary);
  font-weight: var(--font-semiBold);
  text-transform: unset;
  margin: 5px 0;
  letter-spacing: 0;
  line-height: 1.2;
}
.a-section-header p {
  font-size: var(--font-m);
  color: rgba(var(--text-color-rgb), 0.8);
}
@media screen and (min-width: 768px) {
  .a-section-header .subtitle {
    font-size: var(--font-m);
  }
}
@media screen and (min-width: 992px) {
  .a-section-header {
    margin-bottom: 25px;
  }
  .a-section-header h2 {
    font-size: 40px;
    line-height: 1.2;
  }
  .a-section-header .subtitle {
    font-size: 20px;
  }
  .a-section-header p {
    font-size: 18px;
  }
}

/*# sourceMappingURL=style.css.map */
