/**
 * Responsive font-size
 *
 * min(18px, max(16px, calc(10px + 0.7vw)))
 *      |         |                 |
 *   max fz     min fz         max content width
 *
 *      max fz - 10
 * vw = ------------ * 100
 *      max-w
 */
/*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */
/* stylelint-disable */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

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

/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
  display: block;
}

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

/* Grouping content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */
figcaption,
figure,
main {
  /* 1 */
  display: block;
}

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 2.5rem;
}

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

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

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */
}

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

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit;
}

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

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

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic;
}

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ff0;
  color: #000;
}

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

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

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

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

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

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

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 0.0625rem dotted ButtonText;
}

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

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

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

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

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

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -0.125rem;
  /* 2 */
}

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
details,
menu {
  display: block;
}

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

/* Scripting
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */
template {
  display: none;
}

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

/* ==========================================================================
   #BOX-SIZING
   ========================================================================== */
/**
 * More sensible default box-sizing:
 * css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice
 */
html {
  box-sizing: border-box;
}

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

@font-face {
  font-weight: 200;
  font-family: "Simplon";
  font-style: normal;
  src: url(../webfonts/RUAGSimplon-Light-WebXL.eot);
  src: url(../webfonts/RUAGSimplon-Light-WebXL.eot?#iefix) format("embedded-opentype"), url(../webfonts/RUAGSimplon-Light-WebXL.woff2) format("woff2"), url(../webfonts/RUAGSimplon-Light-WebXL.woff) format("woff"), url(../webfonts/RUAGSimplon-Light-WebXL.ttf) format("truetype"), url(../webfonts/RUAGSimplon-Light-WebXL.svg#Font) format("svg");
  font-display: auto;
}

@font-face {
  font-weight: 400;
  font-family: "Simplon";
  font-style: normal;
  src: url(../webfonts/RUAGSimplon-Regular-WebXL.eot);
  src: url(../webfonts/RUAGSimplon-Regular-WebXL.eot?#iefix) format("embedded-opentype"), url(../webfonts/RUAGSimplon-Regular-WebXL.woff2) format("woff2"), url(../webfonts/RUAGSimplon-Regular-WebXL.woff) format("woff"), url(../webfonts/RUAGSimplon-Regular-WebXL.ttf) format("truetype"), url(../webfonts/RUAGSimplon-Regular-WebXL.svg#Font) format("svg");
  font-display: auto;
}

@font-face {
  font-weight: 600;
  font-family: "Simplon";
  font-style: normal;
  src: url(../webfonts/RUAGSimplon-Medium-WebXL.eot);
  src: url(../webfonts/RUAGSimplon-Medium-WebXL.eot?#iefix) format("embedded-opentype"), url(../webfonts/RUAGSimplon-Medium-WebXL.woff2) format("woff2"), url(../webfonts/RUAGSimplon-Medium-WebXL.woff) format("woff"), url(../webfonts/RUAGSimplon-Medium-WebXL.ttf) format("truetype"), url(../webfonts/RUAGSimplon-Medium-WebXL.svg#Font) format("svg");
  font-display: auto;
}

[style*="--aspect-ratio"] > :first-child {
  width: 100%;
}

[style*="--aspect-ratio"] > img {
  height: auto;
}

@supports (--custom: property) {
  [style*="--aspect-ratio"] {
    position: relative;
  }
  [style*="--aspect-ratio"]::before {
    float: left;
    width: 0.0625rem;
    height: 0;
    margin-left: -0.0625rem;
    padding-bottom: calc(100%/var(--aspect-ratio));
    content: "";
  }
  @media (min-width: 70em) {
    [style*="--aspect-ratio"]::before {
      padding-bottom: calc(100%/var(--aspect-ratio-desktop, var(--aspect-ratio)));
    }
  }
  [style*="--aspect-ratio"]::after {
    display: table;
    clear: both;
    content: "";
  }
  [style*="--aspect-ratio"] > :first-child {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
  }
  [style*="--aspect-ratio"] img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* stylelint-disable */
    font-family: 'object-fit: cover;';
    /* stylelint-enable */
  }
}

/**
 * Responsive font-size
 *
 * min(18px, max(16px, calc(10px + 0.7vw)))
 *      |         |                 |
 *   max fz     min fz         max content width
 *
 *      max fz - 10
 * vw = ------------ * 100
 *      max-w
 */
html {
  color: #000000;
  font-size: 1rem;
  font-family: "Roboto", serif;
  line-height: 1.5;
  -ms-touch-action: none !important;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern";
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

@media (max-width: 52.49em) {
  html {
    font-size: 0.875rem;
    line-height: 1.3;
  }
}

body {
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto;
  background-color: #ffffff;
  -webkit-overflow-scrolling: touch;
}

/**
 * Responsive font-size
 *
 * min(18px, max(16px, calc(10px + 0.7vw)))
 *      |         |                 |
 *   max fz     min fz         max content width
 *
 *      max fz - 10
 * vw = ------------ * 100
 *      max-w
 */
.e-heading {
  font-family: "Roboto", serif;
}

.e-heading--h1 {
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  font-size: 3rem;
}

.e-heading--h2 {
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  font-size: 1.75rem;
}

.e-heading--h3 {
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.e-heading--h4 {
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.e-heading--h5 {
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.e-heading--h6 {
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.8rem;
}

.e-heading--jumbo {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 300;
  font-size: 4.25rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
}

.e-link, .c-figure__caption a {
  font-size: inherit;
  text-decoration: none;
}

.e-link:link, .c-figure__caption a:link, .e-link:visited, .c-figure__caption a:visited {
  color: #ca2576;
}

.e-link:hover, .c-figure__caption a:hover, .e-link:focus, .c-figure__caption a:focus, .e-link:active, .c-figure__caption a:active {
  color: #ca2576;
}

.c-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 10;
  margin-bottom: 3rem;
}

.c-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 93rem;
  margin: 0 auto;
  padding: 1.25rem 1.5rem 0 1.5rem;
}

.c-header__title {
  margin: 0 auto;
  color: #ffffff;
  font-weight: 300;
  font-size: 1.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
}

.c-header__logo {
  flex: 0 0 20%;
}

.c-header__logo svg path {
  fill: #ffffff;
}

.c-header__nav-trigger {
  flex: 0 0 20%;
  text-align: right;
}

.c-login__inner {
  position: relative;
}

.c-login__form {
  display: flex;
}

.c-login__field {
  margin-left: 1rem;
  border: 0.125rem solid rgba(255, 255, 255, 0.3);
  border-radius: 0.1875rem;
}

.c-login__field--submit {
  border: 0.125rem solid #ffffff;
}

.c-login__field:first-child {
  margin-left: 0;
}

.c-login__input {
  padding: 0 0.5rem;
  color: #ffffff;
  font-weight: 300;
  font-size: 0.875rem;
  letter-spacing: 0.07em;
  line-height: 2rem;
  text-align: center;
  border: none;
  background-color: transparent;
  outline: 0;
}

.c-login__input--submit {
  padding: 0 1rem;
  color: #000000;
  background-color: #ffffff;
}

.c-login__input:-ms-input-placeholder {
  color: #ffffff;
}

.c-login__input::-ms-input-placeholder {
  color: #ffffff;
}

.c-login__input::placeholder {
  color: #ffffff;
}

.c-login__input:focus:-ms-input-placeholder {
  color: transparent;
}

.c-login__input:focus::-ms-input-placeholder {
  color: transparent;
}

.c-login__input:focus::placeholder {
  color: transparent;
}

.c-login__error {
  position: absolute;
  left: 0;
  height: 0;
  color: #ffffff;
  opacity: 0;
  transition: opacity 250ms ease-in-out, height 250ms ease-in-out;
}

.c-login__error.is-visible {
  height: auto;
  opacity: 1;
}

.c-background-video {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.c-background-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-front-title {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  color: #ffffff;
  text-align: center;
}

.c-front-title .e-heading {
  width: 100%;
}

.c-front-title .e-heading--h3 {
  font-weight: 100;
  font-size: 1.3125rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin: 0;
}

.c-trends {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow-y: scroll;
  grid-column: trends-start / trends-end;
  /* Hide scrollbar for Chrome, Safari and Opera */
  /* Hide scrollbar for IE, Edge and Firefox */
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

.c-trends::-webkit-scrollbar {
  display: none;
}

.c-trends__item {
  margin-bottom: 1rem;
  padding: 0.5rem;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 400;
  text-align: right;
  background: linear-gradient(-90deg, transparent, rgba(57, 195, 220, 0.8) var(--start), rgba(57, 195, 220, 0.8) var(--end), transparent);
  background-repeat: no-repeat;
  background-position: 62.5rem;
  animation-name: background-left;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-delay: 0.25s;
  cursor: pointer;
}

.c-fields {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow-y: scroll;
  grid-column: fields-start / fields-end;
  /* Hide scrollbar for Chrome, Safari and Opera */
  /* Hide scrollbar for IE, Edge and Firefox */
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

.c-fields::-webkit-scrollbar {
  display: none;
}

.c-fields__item {
  margin-bottom: 1rem;
  padding: 0.5rem;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 400;
  background: linear-gradient(90deg, transparent, rgba(173, 251, 0, 0.8) var(--start), rgba(173, 251, 0, 0.8) var(--end), transparent);
  background-repeat: no-repeat;
  background-position: -62.5rem;
  animation-name: background-right;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-delay: 0.25s;
  cursor: pointer;
}

@keyframes background-left {
  0% {
    background-position: 62.5rem;
  }
  100% {
    background-position: 0;
  }
}

@keyframes background-right {
  0% {
    background-position: -62.5rem;
  }
  100% {
    background-position: 0;
  }
}

.c-overlay {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 20;
  transform: translate(-50%, -50%);
  width: 51.375rem;
  max-height: 90vh;
  padding: 1rem 2rem 2rem 2rem;
  background: linear-gradient(45deg, #2f3b61, #6d0d2f);
  overflow-y: scroll;
  opacity: 0;
  /* Hide scrollbar for Chrome, Safari and Opera */
  /* Hide scrollbar for IE, Edge and Firefox */
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

.c-overlay::-webkit-scrollbar {
  display: none;
}

.c-overlay__title {
  display: flex;
  align-items: baseline;
}

.c-overlay__content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 3.125rem;
  grid-row-gap: 2rem;
}

.c-overlay__text {
  color: #ffffff;
  font-weight: 300;
  font-size: 0.9375rem;
}

.c-overlay__text:first-child {
  grid-column: 1 / 3;
}

.c-overlay__text:nth-child(2) {
  grid-column: 1 / 2;
}

.c-overlay__text:nth-child(3) {
  grid-column: 2 / 3;
}

.c-overlay__image {
  margin-bottom: 2rem;
}

.c-overlay__close {
  color: #ffffff;
  font-size: 2rem;
  line-height: 1;
  text-align: right;
}

.c-overlay__close .js-close {
  cursor: pointer;
}

.c-overlay .e-heading--h2 {
  flex: 1;
  margin-top: 0;
  color: #ffffff;
  font-weight: 400;
  font-size: 1.5rem;
  text-align: center;
  letter-spacing: 0.15em;
}

.c-overlay .e-heading--h4 {
  margin: 0;
  font-weight: 500;
  font-size: 0.9375rem;
  text-align: center;
}

.c-overlay .e-paragraph {
  margin-top: 0;
}

.c-overlay .e-paragraph:last-child {
  margin-bottom: 0;
}

.c-overlay.is-open {
  display: block;
  opacity: 1;
}

.c-figure {
  margin: 0;
}

.c-figure img {
  display: block;
  height: 100%;
}

.c-figure__caption {
  margin-top: 0.7rem;
}

.c-figure__caption strong, .c-figure__caption b {
  font-weight: 500;
}

body {
  font-family: "Roboto", serif;
  background-image: url("../media/images/hintergrund_radar.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.l-page {
  max-width: 93rem;
  margin: 0 auto;
}

.l-radar__topics {
  display: grid;
  grid-template-columns: [trends-start] repeat(5, [l-col] 1fr) [trends-end] minmax(3.5%, 1fr) [fields-start] repeat(5, [r-col] 1fr) [fields-end];
  margin-bottom: 2rem;
}

.l-radar__timeline {
  display: grid;
  grid-template-columns: [trends-start] repeat(5, [l-col] 1fr) [trends-end] minmax(3.5%, 1fr) [fields-start] repeat(5, [r-col] 1fr) [fields-end];
  margin-bottom: 1.5rem;
}

.l-radar__items {
  position: fixed;
  top: 14.75rem;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: [trends-start] repeat(5, [l-col] 1fr) [trends-end] minmax(3.5%, 1fr) [fields-start] repeat(5, [r-col] 1fr) [fields-end];
}

.l-radar__megatrend-title {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  grid-column: trends-start / trends-end;
  color: #39c3dc;
  font-size: 1.125rem;
  text-align: right;
}

.l-radar__megatrend-title .icon {
  margin-right: 1rem;
}

.l-radar__megatrend-title .icon path {
  fill: #39c3dc;
}

.l-radar__fields-title {
  display: flex;
  align-items: center;
  grid-column: fields-start / fields-end;
  color: #adfb00;
  font-size: 1.125rem;
}

.l-radar__fields-title .icon {
  margin-left: 1rem;
}

.l-radar__fields-title .icon path {
  fill: #adfb00;
}

.l-radar__year {
  color: #ffffff;
  font-size: 0.9375rem;
  font-weight: 300;
  text-align: center;
}

.l-radar__year--megatrend-2021 {
  grid-column: 5 l-col / trends-end;
  grid-row: 1 / 2;
}

.l-radar__year--megatrend-2022 {
  grid-column: 4 l-col / 5 l-col;
  grid-row: 1 / 2;
}

.l-radar__year--megatrend-2023 {
  grid-column: 3 l-col / 4 l-col;
  grid-row: 1 / 2;
}

.l-radar__year--megatrend-2024 {
  grid-column: 2 l-col / 3 l-col;
  grid-row: 1 / 2;
}

.l-radar__year--now {
  grid-column: trends-end / fields-start;
  grid-row: 1 / 2;
}

.l-radar__year--field-2021 {
  grid-column: 1 r-col / 2 r-col;
}

.l-radar__year--field-2022 {
  grid-column: 2 r-col / 3 r-col;
  grid-row: 1 / 2;
}

.l-radar__year--field-2023 {
  grid-column: 3 r-col / 4 r-col;
  grid-row: 1 / 2;
}

.l-radar__year--field-2024 {
  grid-column: 4 r-col / 5 r-col;
  grid-row: 1 / 2;
}

.l-radar__toolbox {
  position: fixed;
  bottom: 7.5rem;
  left: 50%;
  width: 9.5rem;
  height: auto;
  transform: translateX(-50%);
}

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

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