@charset "UTF-8";
.bg-blue-radial-gradient {
  background: #349aeb;
  background: radial-gradient(circle, #349aeb 0%, #163880 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#349aeb",endColorstr="#163880",GradientType=1);
  color: white;
}

.bg-network-blue {
  background: url("/assets/img/network-cluster.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.bg-network-blue::before {
  z-index: -1;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #349aeb;
  background: radial-gradient(circle, #349aeb 0%, #163880 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#349aeb",endColorstr="#163880",GradientType=1);
}
.bg-network-blue {
  color: white;
}

.bg-network-blue-ani {
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.bg-network-blue-ani::before {
  z-index: -1;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 200%;
  width: 200%;
  background: linear-gradient(160deg, #349aeb 0%, #091a3b 75%, #091a3b 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  animation: animateGradient 24s ease infinite;
}
.bg-network-blue-ani::after {
  z-index: -1;
  content: "";
  position: absolute;
  top: 0%;
  left: -10%;
  height: 110%;
  width: 110%;
  background: url("/assets/img/network-cluster.png") no-repeat center center;
  background-size: cover;
  animation: animateImage 60s linear infinite;
}
.bg-network-blue-ani {
  color: white;
}

@keyframes animateGradient {
  0% {
    transform: translate(0%, 0%);
  }
  25% {
    transform: translate(0%, -50%);
  }
  50% {
    transform: translate(-50%, -50%);
  }
  75% {
    transform: translate(-50%, 0%);
  }
  100% {
    transform: translate(0%, 0%);
  }
}
@keyframes animateImage {
  0% {
    transform: translate(0%, 0%);
  }
  10% {
    transform: translate(2%, 4%);
  }
  20% {
    transform: translate(4%, 0%);
  }
  30% {
    transform: translate(6%, 0%);
  }
  40% {
    transform: translate(0%, 2%);
  }
  50% {
    transform: translate(4%, 6%);
  }
  60% {
    transform: translate(1%, 6%);
  }
  70% {
    transform: translate(6%, 8%);
  }
  80% {
    transform: translate(4%, 4%);
  }
  90% {
    transform: translate(1%, 3%);
  }
  100% {
    transform: translate(0%, 0%);
  }
}
.bg-network-light-blue {
  background: url("/assets/img/network-cluster-white.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.bg-network-light-blue::before {
  z-index: -1;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ebf5fd;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.bg-network-light-blue {
  color: black;
}

.bg-sphere-blue {
  background: url("/assets/img/background-sphere.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.bg-sphere-blue::before {
  z-index: -1;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #349aeb;
  background: radial-gradient(circle, #349aeb 0%, #163880 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#349aeb",endColorstr="#163880",GradientType=1);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.bg-sphere-blue {
  color: white;
}

.link-effect-only-icon > i {
  transition: transform 0.25s ease-out;
  display: inline-block;
}
.link-effect-only-icon:hover > i, .link-effect-only-icon:active > i {
  transform: scale(1.2); /* Grow the icon on hover */
}
.link-effect-only-icon.link-anchor:hover > i, .link-effect-only-icon.link-anchor:active > i {
  transform: scale(1.2) rotate(-90deg); /* Grow the icon on hover */
}

.link-effect-white-thin p {
  position: relative;
  text-decoration: none;
  color: white; /* text color */
}
.link-effect-white-thin p:hover, .link-effect-white-thin p:before {
  color: white;
}
.link-effect-white-thin p:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px; /* underline height */
  bottom: -1px; /* gap b/w text and underline */
  left: 0; /* acts as "margin left" */
  background-color: white; /* underline color */
  transform: scaleX(0); /* 0 = no width ("invisible" underline) / 1 = underline scaled to full width of element ("visible" underline) */
  transform-origin: bottom right; /* direction where the underline transitions to (defaulted) */
  transition: transform 0.25s ease-out, background-color 0.5s; /* animation transition */
}
.link-effect-white-thin p:hover:before {
  transform: scaleX(1); /* Expand the underline on hover */
  transform-origin: bottom left; /* from where the effects rolls in */
}
.link-effect-white-thin:focus {
  color: white;
}
.link-effect-white-thin:hover p:before, .link-effect-white-thin:active p:before {
  transform: scaleX(1); /* Expand the underline on hover */
  transform-origin: bottom left;
}
.link-effect-white-thin > i {
  transition: transform 0.25s ease-out;
  display: inline-block;
}
.link-effect-white-thin:hover > i, .link-effect-white-thin:active > i {
  transform: scale(1.2); /* Grow the icon on hover */
}
.link-effect-white-thin.link-anchor:hover > i, .link-effect-white-thin.link-anchor:active > i {
  transform: scale(1.2) rotate(-90deg); /* Grow the icon on hover */
}

.link-effect-thematic-thin p {
  position: relative;
  text-decoration: none;
  color: #ffc940; /* text color */
}
.link-effect-thematic-thin p:hover, .link-effect-thematic-thin p:before {
  color: #ffc940;
}
.link-effect-thematic-thin p:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px; /* underline height */
  bottom: -1px; /* gap b/w text and underline */
  left: 0; /* acts as "margin left" */
  background-color: #ffc940; /* underline color */
  transform: scaleX(0); /* 0 = no width ("invisible" underline) / 1 = underline scaled to full width of element ("visible" underline) */
  transform-origin: bottom right; /* direction where the underline transitions to (defaulted) */
  transition: transform 0.25s ease-out, background-color 0.5s; /* animation transition */
}
.link-effect-thematic-thin p:hover:before {
  transform: scaleX(1); /* Expand the underline on hover */
  transform-origin: bottom left; /* from where the effects rolls in */
}
.link-effect-thematic-thin:focus {
  color: #ffc940;
}
.link-effect-thematic-thin:hover p:before, .link-effect-thematic-thin:active p:before {
  transform: scaleX(1); /* Expand the underline on hover */
  transform-origin: bottom left;
}
.link-effect-thematic-thin > i {
  transition: transform 0.25s ease-out;
  display: inline-block;
}
.link-effect-thematic-thin:hover > i, .link-effect-thematic-thin:active > i {
  transform: scale(1.2); /* Grow the icon on hover */
}
.link-effect-thematic-thin.link-anchor:hover > i, .link-effect-thematic-thin.link-anchor:active > i {
  transform: scale(1.2) rotate(-90deg); /* Grow the icon on hover */
}

body a.link-thematic, body a.link-thematic:visited, body a.link-thematic:hover, body a.link-thematic:active {
  color: #ffc940;
}

.ul-on-hover-prim {
  position: relative;
  text-decoration: none;
  color: #163880; /* text color */
}
.ul-on-hover-prim:hover, .ul-on-hover-prim:before {
  color: #163880;
}
.ul-on-hover-prim:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px; /* underline height */
  bottom: -2px; /* gap b/w text and underline */
  left: 0; /* acts as "margin left" */
  background-color: #163880; /* underline color */
  transform: scaleX(0); /* 0 = no width ("invisible" underline) / 1 = underline scaled to full width of element ("visible" underline) */
  transform-origin: bottom right; /* direction where the underline transitions to (defaulted) */
  transition: transform 0.25s ease-out, background-color 0.5s; /* animation transition */
}
.ul-on-hover-prim:hover:before {
  transform: scaleX(1); /* Expand the underline on hover */
  transform-origin: bottom left; /* from where the effects rolls in */
}
.ul-on-hover-prim:hover {
  color: #163880; /* Set the text color on hover */
}
.ul-on-hover-prim:hover:before {
  transform: scaleX(1); /* Expand the underline on hover */
  transform-origin: bottom left;
}

.ul-on-hover-prim-thin {
  position: relative;
  text-decoration: none;
  color: #163880; /* text color */
}
.ul-on-hover-prim-thin:hover, .ul-on-hover-prim-thin:before {
  color: #163880;
}
.ul-on-hover-prim-thin:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px; /* underline height */
  bottom: -1px; /* gap b/w text and underline */
  left: 0; /* acts as "margin left" */
  background-color: #163880; /* underline color */
  transform: scaleX(0); /* 0 = no width ("invisible" underline) / 1 = underline scaled to full width of element ("visible" underline) */
  transform-origin: bottom right; /* direction where the underline transitions to (defaulted) */
  transition: transform 0.25s ease-out, background-color 0.5s; /* animation transition */
}
.ul-on-hover-prim-thin:hover:before {
  transform: scaleX(1); /* Expand the underline on hover */
  transform-origin: bottom left; /* from where the effects rolls in */
}
.ul-on-hover-prim-thin:hover {
  color: #163880; /* Set the text color on hover */
}
.ul-on-hover-prim-thin:hover:before {
  transform: scaleX(1); /* Expand the underline on hover */
  transform-origin: bottom left;
}

.ul-on-hover-white-thin {
  position: relative;
  text-decoration: none;
  color: white; /* text color */
}
.ul-on-hover-white-thin:hover, .ul-on-hover-white-thin:before {
  color: white;
}
.ul-on-hover-white-thin:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px; /* underline height */
  bottom: -1px; /* gap b/w text and underline */
  left: 0; /* acts as "margin left" */
  background-color: white; /* underline color */
  transform: scaleX(0); /* 0 = no width ("invisible" underline) / 1 = underline scaled to full width of element ("visible" underline) */
  transform-origin: bottom right; /* direction where the underline transitions to (defaulted) */
  transition: transform 0.25s ease-out, background-color 0.5s; /* animation transition */
}
.ul-on-hover-white-thin:hover:before {
  transform: scaleX(1); /* Expand the underline on hover */
  transform-origin: bottom left; /* from where the effects rolls in */
}
.ul-on-hover-white-thin:hover {
  color: white; /* Set the text color on hover */
}
.ul-on-hover-white-thin:hover:before {
  transform: scaleX(1); /* Expand the underline on hover */
  transform-origin: bottom left;
}

.ul-on-active-white {
  position: relative;
  text-decoration: none;
  color: white; /* text color */
}
.ul-on-active-white:hover, .ul-on-active-white:before {
  color: white;
}
.ul-on-active-white:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px; /* underline height */
  bottom: -2px; /* gap b/w text and underline */
  left: 0; /* acts as "margin left" */
  background-color: white; /* underline color */
  transform: scaleX(0); /* 0 = no width ("invisible" underline) / 1 = underline scaled to full width of element ("visible" underline) */
  transform-origin: bottom right; /* direction where the underline transitions to (defaulted) */
  transition: transform 0.25s ease-out, background-color 0.5s; /* animation transition */
}
.ul-on-active-white:hover:before {
  transform: scaleX(1); /* Expand the underline on hover */
  transform-origin: bottom left; /* from where the effects rolls in */
}
.ul-on-active-white:active {
  color: white; /* Set the text color on hover */
}
.ul-on-active-white:active:before {
  transform: scaleX(1); /* Expand the underline on hover */
  transform-origin: bottom left;
}

.ul-on-active-white-thin {
  position: relative;
  text-decoration: none;
  color: white; /* text color */
}
.ul-on-active-white-thin:hover, .ul-on-active-white-thin:before {
  color: white;
}
.ul-on-active-white-thin:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px; /* underline height */
  bottom: -1px; /* gap b/w text and underline */
  left: 0; /* acts as "margin left" */
  background-color: white; /* underline color */
  transform: scaleX(0); /* 0 = no width ("invisible" underline) / 1 = underline scaled to full width of element ("visible" underline) */
  transform-origin: bottom right; /* direction where the underline transitions to (defaulted) */
  transition: transform 0.25s ease-out, background-color 0.5s; /* animation transition */
}
.ul-on-active-white-thin:hover:before {
  transform: scaleX(1); /* Expand the underline on hover */
  transform-origin: bottom left; /* from where the effects rolls in */
}
.ul-on-active-white-thin:active {
  color: white; /* Set the text color on hover */
}
.ul-on-active-white-thin:active:before {
  transform: scaleX(1); /* Expand the underline on hover */
  transform-origin: bottom left;
}

.grow-on-active {
  transition: transform 0.25s ease-out; /* Animation transition */
}
.grow-on-active:active {
  transform: scale(1.2); /* Grow the icon on hover */
}

.grow-on-hover {
  transition: transform 0.25s ease-out; /* Animation transition */
}
.grow-on-hover:hover {
  transform: scale(1.2); /* Grow the icon on hover */
}

@keyframes slide-out-right {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(400%);
  }
}
@keyframes slide-out-right-wide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(1200%);
  }
}
.slide-out-right,
.slide-out-right-wide {
  animation-name: slide-out-right;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
}

.slide-out-right-wide {
  animation-name: slide-out-right-wide;
}

.slide-out-right {
  animation-name: slide-out-right;
}

.--slideable {
  transition: transform 0.5s ease-in-out;
}

.--js-slide-active {
  overflow-x: hidden;
}

.link-effect-sec p {
  position: relative;
  text-decoration: none;
  color: #349aeb; /* text color */
}
.link-effect-sec p:hover, .link-effect-sec p:before {
  color: #349aeb;
}
.link-effect-sec p:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px; /* underline height */
  bottom: -2px; /* gap b/w text and underline */
  left: 0; /* acts as "margin left" */
  background-color: #349aeb; /* underline color */
  transform: scaleX(0); /* 0 = no width ("invisible" underline) / 1 = underline scaled to full width of element ("visible" underline) */
  transform-origin: bottom right; /* direction where the underline transitions to (defaulted) */
  transition: transform 0.25s ease-out, background-color 0.5s; /* animation transition */
}
.link-effect-sec p:hover:before {
  transform: scaleX(1); /* Expand the underline on hover */
  transform-origin: bottom left; /* from where the effects rolls in */
}
.link-effect-sec:focus {
  color: #349aeb;
}
.link-effect-sec:hover p:before, .link-effect-sec:active p:before {
  transform: scaleX(1); /* Expand the underline on hover */
  transform-origin: bottom left;
}
.link-effect-sec > i {
  transition: transform 0.25s ease-out;
  display: inline-block;
}
.link-effect-sec:hover > i, .link-effect-sec:active > i {
  transform: scale(1.2); /* Grow the icon on hover */
}
.link-effect-sec.link-anchor:hover > i, .link-effect-sec.link-anchor:active > i {
  transform: scale(1.2) rotate(-90deg); /* Grow the icon on hover */
}

.ul-on-hover-active_multiline {
  display: inline;
  background: linear-gradient(0deg, white, white) no-repeat right bottom/0 var(--bg-h);
  transition: background-size 0.25s;
  --bg-h: 100%;
}
.ul-on-hover-active_multiline:where(:hover, :focus-visible) {
  background-size: 100% var(--bg-h);
  background-position-x: left;
  color: white;
}
.ul-on-hover-active_multiline {
  padding-bottom: 2px;
  --bg-h: 2px;
  text-decoration: none;
  color: white;
  line-height: 1;
}

.ul-on-hover-active_multiline_sec {
  background: linear-gradient(0deg, #349aeb, #349aeb) no-repeat right bottom/0 var(--bg-h);
  transition: background-size 0.25s;
  --bg-h: 100%;
}
.ul-on-hover-active_multiline_sec:where(:hover, :focus-visible) {
  background-size: 100% var(--bg-h);
  background-position-x: left;
  color: #349aeb;
}
.ul-on-hover-active_multiline_sec {
  padding-bottom: 1px;
  --bg-h: 1px;
  text-decoration: none;
  color: black;
  line-height: 1;
}

/* START : confirmation check */
.icon-send-confirmed {
  box-sizing: border-box;
  position: fixed;
  top: calc(50% - 6.65rem);
  left: calc(50% - 6.65rem);
  width: 13.3rem;
  height: 13.3rem;
  border-radius: 6.65rem;
  animation: fadeOut 0.5s ease-in-out 1.5s forwards;
  opacity: 1;
}
.icon-send-confirmed.--persistent {
  animation: fadeIn 0.25s ease-in-out forwards;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    display: none;
  }
}
@keyframes fadeIn {
  from {
    scale: 0;
  }
  to {
    scale: 1;
  }
}
.disabled {
  display: none;
}

@keyframes outline {
  from {
    stroke-dasharray: 0, 25.1328rem;
  }
  to {
    stroke-dasharray: 25.1328rem, 25.1328rem;
  }
}
#outline {
  animation: 0.38s ease-in outline;
  transform: rotate(0deg);
  transform-origin: center;
}

@keyframes circle {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(0);
  }
}
#white-circle {
  animation: 0.35s ease-in 0.35s forwards circle;
  transform: none;
  transform-origin: center;
}

@keyframes check {
  from {
    stroke-dasharray: 0, 8rem;
  }
  to {
    stroke-dasharray: 8rem, 8rem;
  }
}
#check {
  animation: 0.34s cubic-bezier(0.65, 0, 1, 1) 0.8s forwards check;
  stroke-dasharray: 0, 8rem;
}

@keyframes check-group {
  from {
    transform: scale(1);
  }
  50% {
    transform: scale(1.09);
  }
  to {
    transform: scale(1);
  }
}
#check-group {
  animation: 0.32s ease-in-out 1.03s check-group;
  transform-origin: center;
}

/* END : confirmation check */
@layer external, sections, utilities, responsiv;
@layer external {
  /*! normalize.css v3.0.2 | MIT License | git.io/normalize */
  /**
   * 1. Set default font family to sans-serif.
   * 2. Prevent iOS text size adjust after orientation change, without disabling
   *    user zoom.
   */
  html {
    font-family: sans-serif; /* 1 */
    -ms-text-size-adjust: 100%; /* 2 */
    -webkit-text-size-adjust: 100%; /* 2 */
  }
  /**
   * Remove default margin.
   */
  body {
    margin: 0;
  }
  /* HTML5 display definitions
     ========================================================================== */
  /**
   * Correct `block` display not defined for any HTML5 element in IE 8/9.
   * Correct `block` display not defined for `details` or `summary` in IE 10/11
   * and Firefox.
   * Correct `block` display not defined for `main` in IE 11.
   */
  article,
  aside,
  details,
  figcaption,
  figure,
  footer,
  header,
  hgroup,
  main,
  menu,
  nav,
  section,
  summary {
    display: block;
  }
  /**
   * 1. Correct `inline-block` display not defined in IE 8/9.
   * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
   */
  audio,
  canvas,
  progress,
  video {
    display: inline-block; /* 1 */
    vertical-align: baseline; /* 2 */
  }
  /**
   * Prevent modern browsers from displaying `audio` without controls.
   * Remove excess height in iOS 5 devices.
   */
  audio:not([controls]) {
    display: none;
    height: 0;
  }
  /**
   * Address `[hidden]` styling not present in IE 8/9/10.
   * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
   */
  [hidden],
  template {
    display: none;
  }
  /* Links
     ========================================================================== */
  /**
   * Remove the gray background color from active links in IE 10.
   */
  a {
    background-color: transparent;
  }
  /**
   * Improve readability when focused and also mouse hovered in all browsers.
   */
  a:active,
  a:hover {
    outline: 0;
  }
  /* Text-level semantics
     ========================================================================== */
  /**
   * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
   */
  abbr[title] {
    border-bottom: 1px dotted;
  }
  /**
   * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
   */
  b,
  strong {
    font-weight: 800;
  }
  /**
   * Address styling not present in Safari and Chrome.
   */
  dfn {
    font-style: italic;
  }
  /**
   * Address variable `h1` font-size and margin within `section` and `article`
   * contexts in Firefox 4+, Safari, and Chrome.
   */
  h1 {
    font-size: 2em;
    margin: 0.67em 0;
  }
  /**
   * Address styling not present in IE 8/9.
   */
  mark {
    background: #ff0;
    color: #000;
  }
  /**
   * Address inconsistent and variable font size in all browsers.
   */
  small {
    font-size: 80%;
  }
  /**
   * Prevent `sub` and `sup` affecting `line-height` in all browsers.
   */
  sub,
  sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
  }
  sup {
    top: -0.5em;
  }
  sub {
    bottom: -0.25em;
  }
  /* Embedded content
     ========================================================================== */
  /**
   * Remove border when inside `a` element in IE 8/9/10.
   */
  img {
    border: 0;
  }
  /**
   * Correct overflow not hidden in IE 9/10/11.
   */
  svg:not(:root) {
    overflow: hidden;
  }
  /* Grouping content
     ========================================================================== */
  /**
   * Address margin not present in IE 8/9 and Safari.
   */
  figure {
    margin: 1em 40px;
  }
  /**
   * Address differences between Firefox and other browsers.
   */
  hr {
    box-sizing: content-box;
    height: 0;
  }
  /**
   * Contain overflow in all browsers.
   */
  pre {
    overflow: auto;
  }
  /**
   * Address odd `em`-unit font size rendering in all browsers.
   */
  code,
  kbd,
  pre,
  samp {
    font-family: monospace, monospace;
    font-size: 1em;
  }
  /* Forms
     ========================================================================== */
  /**
   * Known limitation: by default, Chrome and Safari on OS X allow very limited
   * styling of `select`, unless a `border` property is set.
   */
  /**
   * 1. Correct color not being inherited.
   *    Known issue: affects color of disabled elements.
   * 2. Correct font properties not being inherited.
   * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
   */
  button,
  input,
  optgroup,
  select,
  textarea {
    color: inherit; /* 1 */
    font: inherit; /* 2 */
    margin: 0; /* 3 */
  }
  /**
   * Address `overflow` set to `hidden` in IE 8/9/10/11.
   */
  button {
    overflow: visible;
  }
  /**
   * Address inconsistent `text-transform` inheritance for `button` and `select`.
   * All other form control elements do not inherit `text-transform` values.
   * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
   * Correct `select` style inheritance in Firefox.
   */
  button,
  select {
    text-transform: none;
  }
  /**
   * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
   *    and `video` controls.
   * 2. Correct inability to style clickable `input` types in iOS.
   * 3. Improve usability and consistency of cursor style between image-type
   *    `input` and others.
   */
  button,
  html input[type=button],
  input[type=reset],
  input[type=submit] {
    -webkit-appearance: button; /* 2 */
    cursor: pointer; /* 3 */
  }
  /**
   * Re-set default cursor for disabled elements.
   */
  button[disabled],
  html input[disabled] {
    cursor: default;
  }
  /**
   * Remove inner padding and border in Firefox 4+.
   */
  button::-moz-focus-inner,
  input::-moz-focus-inner {
    border: 0;
    padding: 0;
  }
  /**
   * Address Firefox 4+ setting `line-height` on `input` using `!important` in
   * the UA stylesheet.
   */
  input {
    line-height: normal;
  }
  /**
   * It's recommended that you don't attempt to style these elements.
   * Firefox's implementation doesn't respect box-sizing, padding, or width.
   *
   * 1. Address box sizing set to `content-box` in IE 8/9/10.
   * 2. Remove excess padding in IE 8/9/10.
   */
  input[type=checkbox],
  input[type=radio] {
    box-sizing: border-box; /* 1 */
    padding: 0; /* 2 */
  }
  /**
   * Fix the cursor style for Chrome's increment/decrement buttons. For certain
   * `font-size` values of the `input`, it causes the cursor style of the
   * decrement button to change from `default` to `text`.
   */
  input[type=number]::-webkit-inner-spin-button,
  input[type=number]::-webkit-outer-spin-button {
    height: auto;
  }
  /**
   * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
   * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
   *    (include `-moz` to future-proof).
   */
  input[type=search] {
    -webkit-appearance: textfield; /* 1 */ /* 2 */
    box-sizing: content-box;
  }
  /**
   * Remove inner padding and search cancel button in Safari and Chrome on OS X.
   * Safari (but not Chrome) clips the cancel button when the search input has
   * padding (and `textfield` appearance).
   */
  input[type=search]::-webkit-search-cancel-button,
  input[type=search]::-webkit-search-decoration {
    -webkit-appearance: none;
  }
  /**
   * Define consistent border, margin, and padding.
   */
  fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
  }
  /**
   * 1. Correct `color` not being inherited in IE 8/9/10/11.
   * 2. Remove padding so people aren't caught out if they zero out fieldsets.
   */
  legend {
    border: 0; /* 1 */
    padding: 0; /* 2 */
  }
  /**
   * Remove default vertical scrollbar in IE 8/9/10/11.
   */
  textarea {
    overflow: auto;
  }
  /**
   * Don't inherit the `font-weight` (applied by a rule above).
   * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
   */
  optgroup {
    font-weight: 800;
  }
  /* Tables
     ========================================================================== */
  /**
   * Remove most spacing between table cells.
   */
  table {
    border-collapse: collapse;
    border-spacing: 0;
  }
  td,
  th {
    padding: 0;
  }
  /* Grid
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  .container {
    position: relative;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
  }
  /* Base Styles
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  /* NOTE
  html is set to 62.5% so that all the REM measurements throughout Skeleton
  are based on 10px sizing. So basically 1.5rem = 15px :) */
  html {
    font-size: 62.5%;
  }
  body {
    font-size: 1.5em; /* currently ems cause chrome bug misinterpreting rems on body element */
    line-height: 1.6;
    font-family: "Raleway", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #222;
  }
  /* Typography
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin-top: 0;
    margin-bottom: 2rem;
    letter-spacing: 0.08rem;
  }
  h1 {
    font-size: 4rem;
    line-height: 1.2;
  }
  h2 {
    font-size: 3.6rem;
    line-height: 1.25;
  }
  h3 {
    font-size: 3rem;
    line-height: 1.3;
  }
  h4 {
    font-size: 2.4rem;
    line-height: 1.35;
  }
  h5 {
    font-size: 1.8rem;
    line-height: 1.5;
  }
  h6 {
    font-size: 1.5rem;
    line-height: 1.6;
  }
  p {
    margin-top: 0;
  }
  /* Buttons
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  .button,
  button,
  input[type=submit],
  input[type=reset],
  input[type=button] {
    display: inline-block;
    height: 38px;
    padding: 0 30px;
    color: #555;
    text-align: center;
    font-size: 11px;
    font-weight: 300;
    line-height: 38px;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border-radius: 4px;
    border: 1px solid #bbb;
    cursor: pointer;
    box-sizing: border-box;
  }
  .button:hover,
  button:hover,
  input[type=submit]:hover,
  input[type=reset]:hover,
  input[type=button]:hover,
  .button:focus,
  button:focus,
  input[type=submit]:focus,
  input[type=reset]:focus,
  input[type=button]:focus {
    color: #333;
    border-color: #888;
    outline: 0;
  }
  .button.button-primary,
  button.button-primary,
  input[type=submit].button-primary,
  input[type=reset].button-primary,
  input[type=button].button-primary {
    color: #fff;
    background-color: #33c3f0;
    border-color: #33c3f0;
  }
  .button.button-primary:hover,
  button.button-primary:hover,
  input[type=submit].button-primary:hover,
  input[type=reset].button-primary:hover,
  input[type=button].button-primary:hover,
  .button.button-primary:focus,
  button.button-primary:focus,
  input[type=submit].button-primary:focus,
  input[type=reset].button-primary:focus,
  input[type=button].button-primary:focus {
    color: #fff;
    background-color: #1eaedb;
    border-color: #1eaedb;
  }
  /* Forms
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  input[type=email],
  input[type=number],
  input[type=search],
  input[type=text],
  input[type=tel],
  input[type=url],
  input[type=password],
  textarea,
  select {
    height: 38px;
    padding: 6px 10px; /* The 6px vertically centers text on FF, ignored by Webkit */
    background-color: #fff;
    border: 1px solid #d1d1d1;
    border-radius: 4px;
    box-shadow: none;
    box-sizing: border-box;
  }
  /* Removes awkward default styles on some inputs for iOS */
  input[type=email],
  input[type=number],
  input[type=search],
  input[type=text],
  input[type=tel],
  input[type=url],
  input[type=password],
  textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
  textarea {
    min-height: 65px;
    padding-top: 6px;
    padding-bottom: 6px;
  }
  input[type=email]:focus,
  input[type=number]:focus,
  input[type=search]:focus,
  input[type=text]:focus,
  input[type=tel]:focus,
  input[type=url]:focus,
  input[type=password]:focus,
  textarea:focus,
  select:focus {
    border: 1px solid #33c3f0;
    outline: 0;
  }
  label,
  legend {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 800;
  }
  fieldset {
    padding: 0;
    border-width: 0;
  }
  input[type=checkbox],
  input[type=radio] {
    display: inline;
  }
  label > .label-body {
    display: inline-block;
    margin-left: 0.5rem;
    font-weight: 300;
  }
  /* Lists
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  ul {
    list-style: circle inside;
  }
  ol {
    list-style: decimal inside;
  }
  ol,
  ul {
    padding-left: 0;
    margin-top: 0;
  }
  li {
    margin-bottom: 1rem;
  }
  /* Code
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  code {
    padding: 0.2rem 0.5rem;
    margin: 0 0.2rem;
    font-size: 90%;
    white-space: nowrap;
    background: #f1f1f1;
    border: 1px solid #e1e1e1;
    border-radius: 4px;
  }
  pre > code {
    display: block;
    padding: 1rem 1.5rem;
    white-space: pre;
  }
  /* Tables
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  th,
  td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #e1e1e1;
  }
  th:first-child,
  td:first-child {
    padding-left: 0;
  }
  th:last-child,
  td:last-child {
    padding-right: 0;
  }
  /* Spacing
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  button,
  .button {
    margin-bottom: 1rem;
  }
  input,
  textarea,
  select,
  fieldset {
    margin-bottom: 1.5rem;
  }
  pre,
  blockquote,
  dl,
  figure,
  table,
  p,
  ul,
  ol,
  form {
    margin-bottom: 2.5rem;
  }
  /* Utilities
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  .u-full-width {
    width: 100%;
    box-sizing: border-box;
  }
  .u-max-full-width {
    max-width: 100%;
    box-sizing: border-box;
  }
  .u-pull-right {
    float: right;
  }
  .u-pull-left {
    float: left;
  }
  /* Misc
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  hr {
    margin-top: 3rem;
    margin-bottom: 3.5rem;
    border-width: 0;
    border-top: 1px solid #e1e1e1;
  }
  /* Clearing
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  /* Self Clearing Goodness */
  .container:after,
  .row:after,
  .u-cf {
    content: "";
    display: table;
    clear: both;
  }
  /* montserrat-300 - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 300;
    src: url("../assets/fonts/montserrat-v25-latin-300.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* montserrat-500 - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 500;
    src: url("../assets/fonts/montserrat-v25-latin-500.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* montserrat-600 - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 600;
    src: url("../assets/fonts/montserrat-v25-latin-600.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* montserrat-800 - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 800;
    src: url("../assets/fonts/montserrat-v25-latin-800.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  .bg-blue-radial-gradient {
    background: #349aeb;
    background: radial-gradient(circle, #349aeb 0%, #163880 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#349aeb",endColorstr="#163880",GradientType=1);
    color: white;
  }
  .bg-network-blue {
    background: url("/assets/img/network-cluster.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .bg-network-blue::before {
    z-index: -1;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #349aeb;
    background: radial-gradient(circle, #349aeb 0%, #163880 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#349aeb",endColorstr="#163880",GradientType=1);
  }
  .bg-network-blue {
    color: white;
  }
  .bg-network-blue-ani {
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .bg-network-blue-ani::before {
    z-index: -1;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 200%;
    width: 200%;
    background: linear-gradient(160deg, #349aeb 0%, #091a3b 75%, #091a3b 100%);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    animation: animateGradient 24s ease infinite;
  }
  .bg-network-blue-ani::after {
    z-index: -1;
    content: "";
    position: absolute;
    top: 0%;
    left: -10%;
    height: 110%;
    width: 110%;
    background: url("/assets/img/network-cluster.png") no-repeat center center;
    background-size: cover;
    animation: animateImage 60s linear infinite;
  }
  .bg-network-blue-ani {
    color: white;
  }
  @keyframes animateGradient {
    0% {
      transform: translate(0%, 0%);
    }
    25% {
      transform: translate(0%, -50%);
    }
    50% {
      transform: translate(-50%, -50%);
    }
    75% {
      transform: translate(-50%, 0%);
    }
    100% {
      transform: translate(0%, 0%);
    }
  }
  @keyframes animateImage {
    0% {
      transform: translate(0%, 0%);
    }
    10% {
      transform: translate(2%, 4%);
    }
    20% {
      transform: translate(4%, 0%);
    }
    30% {
      transform: translate(6%, 0%);
    }
    40% {
      transform: translate(0%, 2%);
    }
    50% {
      transform: translate(4%, 6%);
    }
    60% {
      transform: translate(1%, 6%);
    }
    70% {
      transform: translate(6%, 8%);
    }
    80% {
      transform: translate(4%, 4%);
    }
    90% {
      transform: translate(1%, 3%);
    }
    100% {
      transform: translate(0%, 0%);
    }
  }
  .bg-network-light-blue {
    background: url("/assets/img/network-cluster-white.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .bg-network-light-blue::before {
    z-index: -1;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ebf5fd;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .bg-network-light-blue {
    color: black;
  }
  .bg-sphere-blue {
    background: url("/assets/img/background-sphere.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .bg-sphere-blue::before {
    z-index: -1;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #349aeb;
    background: radial-gradient(circle, #349aeb 0%, #163880 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#349aeb",endColorstr="#163880",GradientType=1);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .bg-sphere-blue {
    color: white;
  }
  .bg-blue-radial-gradient {
    background: #349aeb;
    background: radial-gradient(circle, #349aeb 0%, #163880 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#349aeb",endColorstr="#163880",GradientType=1);
    color: white;
  }
  .bg-network-blue {
    background: url("/assets/img/network-cluster.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .bg-network-blue::before {
    z-index: -1;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #349aeb;
    background: radial-gradient(circle, #349aeb 0%, #163880 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#349aeb",endColorstr="#163880",GradientType=1);
  }
  .bg-network-blue {
    color: white;
  }
  .bg-network-blue-ani {
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .bg-network-blue-ani::before {
    z-index: -1;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 200%;
    width: 200%;
    background: linear-gradient(160deg, #349aeb 0%, #091a3b 75%, #091a3b 100%);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    animation: animateGradient 24s ease infinite;
  }
  .bg-network-blue-ani::after {
    z-index: -1;
    content: "";
    position: absolute;
    top: 0%;
    left: -10%;
    height: 110%;
    width: 110%;
    background: url("/assets/img/network-cluster.png") no-repeat center center;
    background-size: cover;
    animation: animateImage 60s linear infinite;
  }
  .bg-network-blue-ani {
    color: white;
  }
  @keyframes animateGradient {
    0% {
      transform: translate(0%, 0%);
    }
    25% {
      transform: translate(0%, -50%);
    }
    50% {
      transform: translate(-50%, -50%);
    }
    75% {
      transform: translate(-50%, 0%);
    }
    100% {
      transform: translate(0%, 0%);
    }
  }
  @keyframes animateImage {
    0% {
      transform: translate(0%, 0%);
    }
    10% {
      transform: translate(2%, 4%);
    }
    20% {
      transform: translate(4%, 0%);
    }
    30% {
      transform: translate(6%, 0%);
    }
    40% {
      transform: translate(0%, 2%);
    }
    50% {
      transform: translate(4%, 6%);
    }
    60% {
      transform: translate(1%, 6%);
    }
    70% {
      transform: translate(6%, 8%);
    }
    80% {
      transform: translate(4%, 4%);
    }
    90% {
      transform: translate(1%, 3%);
    }
    100% {
      transform: translate(0%, 0%);
    }
  }
  .bg-network-light-blue {
    background: url("/assets/img/network-cluster-white.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .bg-network-light-blue::before {
    z-index: -1;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ebf5fd;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .bg-network-light-blue {
    color: black;
  }
  .bg-sphere-blue {
    background: url("/assets/img/background-sphere.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .bg-sphere-blue::before {
    z-index: -1;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #349aeb;
    background: radial-gradient(circle, #349aeb 0%, #163880 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#349aeb",endColorstr="#163880",GradientType=1);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .bg-sphere-blue {
    color: white;
  }
  .link-effect-only-icon > i {
    transition: transform 0.25s ease-out;
    display: inline-block;
  }
  .link-effect-only-icon:hover > i, .link-effect-only-icon:active > i {
    transform: scale(1.2); /* Grow the icon on hover */
  }
  .link-effect-only-icon.link-anchor:hover > i, .link-effect-only-icon.link-anchor:active > i {
    transform: scale(1.2) rotate(-90deg); /* Grow the icon on hover */
  }
  .link-effect-white-thin p {
    position: relative;
    text-decoration: none;
    color: white; /* text color */
  }
  .link-effect-white-thin p:hover, .link-effect-white-thin p:before {
    color: white;
  }
  .link-effect-white-thin p:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px; /* underline height */
    bottom: -1px; /* gap b/w text and underline */
    left: 0; /* acts as "margin left" */
    background-color: white; /* underline color */
    transform: scaleX(0); /* 0 = no width ("invisible" underline) / 1 = underline scaled to full width of element ("visible" underline) */
    transform-origin: bottom right; /* direction where the underline transitions to (defaulted) */
    transition: transform 0.25s ease-out, background-color 0.5s; /* animation transition */
  }
  .link-effect-white-thin p:hover:before {
    transform: scaleX(1); /* Expand the underline on hover */
    transform-origin: bottom left; /* from where the effects rolls in */
  }
  .link-effect-white-thin:focus {
    color: white;
  }
  .link-effect-white-thin:hover p:before, .link-effect-white-thin:active p:before {
    transform: scaleX(1); /* Expand the underline on hover */
    transform-origin: bottom left;
  }
  .link-effect-white-thin > i {
    transition: transform 0.25s ease-out;
    display: inline-block;
  }
  .link-effect-white-thin:hover > i, .link-effect-white-thin:active > i {
    transform: scale(1.2); /* Grow the icon on hover */
  }
  .link-effect-white-thin.link-anchor:hover > i, .link-effect-white-thin.link-anchor:active > i {
    transform: scale(1.2) rotate(-90deg); /* Grow the icon on hover */
  }
  .link-effect-thematic-thin p {
    position: relative;
    text-decoration: none;
    color: #ffc940; /* text color */
  }
  .link-effect-thematic-thin p:hover, .link-effect-thematic-thin p:before {
    color: #ffc940;
  }
  .link-effect-thematic-thin p:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px; /* underline height */
    bottom: -1px; /* gap b/w text and underline */
    left: 0; /* acts as "margin left" */
    background-color: #ffc940; /* underline color */
    transform: scaleX(0); /* 0 = no width ("invisible" underline) / 1 = underline scaled to full width of element ("visible" underline) */
    transform-origin: bottom right; /* direction where the underline transitions to (defaulted) */
    transition: transform 0.25s ease-out, background-color 0.5s; /* animation transition */
  }
  .link-effect-thematic-thin p:hover:before {
    transform: scaleX(1); /* Expand the underline on hover */
    transform-origin: bottom left; /* from where the effects rolls in */
  }
  .link-effect-thematic-thin:focus {
    color: #ffc940;
  }
  .link-effect-thematic-thin:hover p:before, .link-effect-thematic-thin:active p:before {
    transform: scaleX(1); /* Expand the underline on hover */
    transform-origin: bottom left;
  }
  .link-effect-thematic-thin > i {
    transition: transform 0.25s ease-out;
    display: inline-block;
  }
  .link-effect-thematic-thin:hover > i, .link-effect-thematic-thin:active > i {
    transform: scale(1.2); /* Grow the icon on hover */
  }
  .link-effect-thematic-thin.link-anchor:hover > i, .link-effect-thematic-thin.link-anchor:active > i {
    transform: scale(1.2) rotate(-90deg); /* Grow the icon on hover */
  }
  body a.link-thematic, body a.link-thematic:visited, body a.link-thematic:hover, body a.link-thematic:active {
    color: #ffc940;
  }
  .ul-on-hover-prim {
    position: relative;
    text-decoration: none;
    color: #163880; /* text color */
  }
  .ul-on-hover-prim:hover, .ul-on-hover-prim:before {
    color: #163880;
  }
  .ul-on-hover-prim:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px; /* underline height */
    bottom: -2px; /* gap b/w text and underline */
    left: 0; /* acts as "margin left" */
    background-color: #163880; /* underline color */
    transform: scaleX(0); /* 0 = no width ("invisible" underline) / 1 = underline scaled to full width of element ("visible" underline) */
    transform-origin: bottom right; /* direction where the underline transitions to (defaulted) */
    transition: transform 0.25s ease-out, background-color 0.5s; /* animation transition */
  }
  .ul-on-hover-prim:hover:before {
    transform: scaleX(1); /* Expand the underline on hover */
    transform-origin: bottom left; /* from where the effects rolls in */
  }
  .ul-on-hover-prim:hover {
    color: #163880; /* Set the text color on hover */
  }
  .ul-on-hover-prim:hover:before {
    transform: scaleX(1); /* Expand the underline on hover */
    transform-origin: bottom left;
  }
  .ul-on-hover-prim-thin {
    position: relative;
    text-decoration: none;
    color: #163880; /* text color */
  }
  .ul-on-hover-prim-thin:hover, .ul-on-hover-prim-thin:before {
    color: #163880;
  }
  .ul-on-hover-prim-thin:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px; /* underline height */
    bottom: -1px; /* gap b/w text and underline */
    left: 0; /* acts as "margin left" */
    background-color: #163880; /* underline color */
    transform: scaleX(0); /* 0 = no width ("invisible" underline) / 1 = underline scaled to full width of element ("visible" underline) */
    transform-origin: bottom right; /* direction where the underline transitions to (defaulted) */
    transition: transform 0.25s ease-out, background-color 0.5s; /* animation transition */
  }
  .ul-on-hover-prim-thin:hover:before {
    transform: scaleX(1); /* Expand the underline on hover */
    transform-origin: bottom left; /* from where the effects rolls in */
  }
  .ul-on-hover-prim-thin:hover {
    color: #163880; /* Set the text color on hover */
  }
  .ul-on-hover-prim-thin:hover:before {
    transform: scaleX(1); /* Expand the underline on hover */
    transform-origin: bottom left;
  }
  .ul-on-hover-white-thin {
    position: relative;
    text-decoration: none;
    color: white; /* text color */
  }
  .ul-on-hover-white-thin:hover, .ul-on-hover-white-thin:before {
    color: white;
  }
  .ul-on-hover-white-thin:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px; /* underline height */
    bottom: -1px; /* gap b/w text and underline */
    left: 0; /* acts as "margin left" */
    background-color: white; /* underline color */
    transform: scaleX(0); /* 0 = no width ("invisible" underline) / 1 = underline scaled to full width of element ("visible" underline) */
    transform-origin: bottom right; /* direction where the underline transitions to (defaulted) */
    transition: transform 0.25s ease-out, background-color 0.5s; /* animation transition */
  }
  .ul-on-hover-white-thin:hover:before {
    transform: scaleX(1); /* Expand the underline on hover */
    transform-origin: bottom left; /* from where the effects rolls in */
  }
  .ul-on-hover-white-thin:hover {
    color: white; /* Set the text color on hover */
  }
  .ul-on-hover-white-thin:hover:before {
    transform: scaleX(1); /* Expand the underline on hover */
    transform-origin: bottom left;
  }
  .ul-on-active-white {
    position: relative;
    text-decoration: none;
    color: white; /* text color */
  }
  .ul-on-active-white:hover, .ul-on-active-white:before {
    color: white;
  }
  .ul-on-active-white:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px; /* underline height */
    bottom: -2px; /* gap b/w text and underline */
    left: 0; /* acts as "margin left" */
    background-color: white; /* underline color */
    transform: scaleX(0); /* 0 = no width ("invisible" underline) / 1 = underline scaled to full width of element ("visible" underline) */
    transform-origin: bottom right; /* direction where the underline transitions to (defaulted) */
    transition: transform 0.25s ease-out, background-color 0.5s; /* animation transition */
  }
  .ul-on-active-white:hover:before {
    transform: scaleX(1); /* Expand the underline on hover */
    transform-origin: bottom left; /* from where the effects rolls in */
  }
  .ul-on-active-white:active {
    color: white; /* Set the text color on hover */
  }
  .ul-on-active-white:active:before {
    transform: scaleX(1); /* Expand the underline on hover */
    transform-origin: bottom left;
  }
  .ul-on-active-white-thin {
    position: relative;
    text-decoration: none;
    color: white; /* text color */
  }
  .ul-on-active-white-thin:hover, .ul-on-active-white-thin:before {
    color: white;
  }
  .ul-on-active-white-thin:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px; /* underline height */
    bottom: -1px; /* gap b/w text and underline */
    left: 0; /* acts as "margin left" */
    background-color: white; /* underline color */
    transform: scaleX(0); /* 0 = no width ("invisible" underline) / 1 = underline scaled to full width of element ("visible" underline) */
    transform-origin: bottom right; /* direction where the underline transitions to (defaulted) */
    transition: transform 0.25s ease-out, background-color 0.5s; /* animation transition */
  }
  .ul-on-active-white-thin:hover:before {
    transform: scaleX(1); /* Expand the underline on hover */
    transform-origin: bottom left; /* from where the effects rolls in */
  }
  .ul-on-active-white-thin:active {
    color: white; /* Set the text color on hover */
  }
  .ul-on-active-white-thin:active:before {
    transform: scaleX(1); /* Expand the underline on hover */
    transform-origin: bottom left;
  }
  .grow-on-active {
    transition: transform 0.25s ease-out; /* Animation transition */
  }
  .grow-on-active:active {
    transform: scale(1.2); /* Grow the icon on hover */
  }
  .grow-on-hover {
    transition: transform 0.25s ease-out; /* Animation transition */
  }
  .grow-on-hover:hover {
    transform: scale(1.2); /* Grow the icon on hover */
  }
  @keyframes slide-out-right {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(400%);
    }
  }
  @keyframes slide-out-right-wide {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(1200%);
    }
  }
  .slide-out-right,
  .slide-out-right-wide {
    animation-name: slide-out-right;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    animation-timing-function: ease-in-out;
    animation-iteration-count: 1;
  }
  .slide-out-right-wide {
    animation-name: slide-out-right-wide;
  }
  .slide-out-right {
    animation-name: slide-out-right;
  }
  .--slideable {
    transition: transform 0.5s ease-in-out;
  }
  .--js-slide-active {
    overflow-x: hidden;
  }
  .link-effect-sec p {
    position: relative;
    text-decoration: none;
    color: #349aeb; /* text color */
  }
  .link-effect-sec p:hover, .link-effect-sec p:before {
    color: #349aeb;
  }
  .link-effect-sec p:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px; /* underline height */
    bottom: -2px; /* gap b/w text and underline */
    left: 0; /* acts as "margin left" */
    background-color: #349aeb; /* underline color */
    transform: scaleX(0); /* 0 = no width ("invisible" underline) / 1 = underline scaled to full width of element ("visible" underline) */
    transform-origin: bottom right; /* direction where the underline transitions to (defaulted) */
    transition: transform 0.25s ease-out, background-color 0.5s; /* animation transition */
  }
  .link-effect-sec p:hover:before {
    transform: scaleX(1); /* Expand the underline on hover */
    transform-origin: bottom left; /* from where the effects rolls in */
  }
  .link-effect-sec:focus {
    color: #349aeb;
  }
  .link-effect-sec:hover p:before, .link-effect-sec:active p:before {
    transform: scaleX(1); /* Expand the underline on hover */
    transform-origin: bottom left;
  }
  .link-effect-sec > i {
    transition: transform 0.25s ease-out;
    display: inline-block;
  }
  .link-effect-sec:hover > i, .link-effect-sec:active > i {
    transform: scale(1.2); /* Grow the icon on hover */
  }
  .link-effect-sec.link-anchor:hover > i, .link-effect-sec.link-anchor:active > i {
    transform: scale(1.2) rotate(-90deg); /* Grow the icon on hover */
  }
  .ul-on-hover-active_multiline {
    display: inline;
    background: linear-gradient(0deg, white, white) no-repeat right bottom/0 var(--bg-h);
    transition: background-size 0.25s;
    --bg-h: 100%;
  }
  .ul-on-hover-active_multiline:where(:hover, :focus-visible) {
    background-size: 100% var(--bg-h);
    background-position-x: left;
    color: white;
  }
  .ul-on-hover-active_multiline {
    padding-bottom: 2px;
    --bg-h: 2px;
    text-decoration: none;
    color: white;
    line-height: 1;
  }
  .ul-on-hover-active_multiline_sec {
    background: linear-gradient(0deg, #349aeb, #349aeb) no-repeat right bottom/0 var(--bg-h);
    transition: background-size 0.25s;
    --bg-h: 100%;
  }
  .ul-on-hover-active_multiline_sec:where(:hover, :focus-visible) {
    background-size: 100% var(--bg-h);
    background-position-x: left;
    color: #349aeb;
  }
  .ul-on-hover-active_multiline_sec {
    padding-bottom: 1px;
    --bg-h: 1px;
    text-decoration: none;
    color: black;
    line-height: 1;
  }
  /* START : confirmation check */
  .icon-send-confirmed {
    box-sizing: border-box;
    position: fixed;
    top: calc(50% - 6.65rem);
    left: calc(50% - 6.65rem);
    width: 13.3rem;
    height: 13.3rem;
    border-radius: 6.65rem;
    animation: fadeOut 0.5s ease-in-out 1.5s forwards;
    opacity: 1;
  }
  .icon-send-confirmed.--persistent {
    animation: fadeIn 0.25s ease-in-out forwards;
  }
  @keyframes fadeOut {
    from {
      opacity: 1;
    }
    to {
      opacity: 0;
      display: none;
    }
  }
  @keyframes fadeIn {
    from {
      scale: 0;
    }
    to {
      scale: 1;
    }
  }
  .disabled {
    display: none;
  }
  @keyframes outline {
    from {
      stroke-dasharray: 0, 25.1328rem;
    }
    to {
      stroke-dasharray: 25.1328rem, 25.1328rem;
    }
  }
  #outline {
    animation: 0.38s ease-in outline;
    transform: rotate(0deg);
    transform-origin: center;
  }
  @keyframes circle {
    from {
      transform: scale(1);
    }
    to {
      transform: scale(0);
    }
  }
  #white-circle {
    animation: 0.35s ease-in 0.35s forwards circle;
    transform: none;
    transform-origin: center;
  }
  @keyframes check {
    from {
      stroke-dasharray: 0, 8rem;
    }
    to {
      stroke-dasharray: 8rem, 8rem;
    }
  }
  #check {
    animation: 0.34s cubic-bezier(0.65, 0, 1, 1) 0.8s forwards check;
    stroke-dasharray: 0, 8rem;
  }
  @keyframes check-group {
    from {
      transform: scale(1);
    }
    50% {
      transform: scale(1.09);
    }
    to {
      transform: scale(1);
    }
  }
  #check-group {
    animation: 0.32s ease-in-out 1.03s check-group;
    transform-origin: center;
  }
  /* END : confirmation check */
  .bg-blue-radial-gradient {
    background: #349aeb;
    background: radial-gradient(circle, #349aeb 0%, #163880 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#349aeb",endColorstr="#163880",GradientType=1);
    color: white;
  }
  .bg-network-blue {
    background: url("/assets/img/network-cluster.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .bg-network-blue::before {
    z-index: -1;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #349aeb;
    background: radial-gradient(circle, #349aeb 0%, #163880 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#349aeb",endColorstr="#163880",GradientType=1);
  }
  .bg-network-blue {
    color: white;
  }
  .bg-network-blue-ani {
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .bg-network-blue-ani::before {
    z-index: -1;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 200%;
    width: 200%;
    background: linear-gradient(160deg, #349aeb 0%, #091a3b 75%, #091a3b 100%);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    animation: animateGradient 24s ease infinite;
  }
  .bg-network-blue-ani::after {
    z-index: -1;
    content: "";
    position: absolute;
    top: 0%;
    left: -10%;
    height: 110%;
    width: 110%;
    background: url("/assets/img/network-cluster.png") no-repeat center center;
    background-size: cover;
    animation: animateImage 60s linear infinite;
  }
  .bg-network-blue-ani {
    color: white;
  }
  @keyframes animateGradient {
    0% {
      transform: translate(0%, 0%);
    }
    25% {
      transform: translate(0%, -50%);
    }
    50% {
      transform: translate(-50%, -50%);
    }
    75% {
      transform: translate(-50%, 0%);
    }
    100% {
      transform: translate(0%, 0%);
    }
  }
  @keyframes animateImage {
    0% {
      transform: translate(0%, 0%);
    }
    10% {
      transform: translate(2%, 4%);
    }
    20% {
      transform: translate(4%, 0%);
    }
    30% {
      transform: translate(6%, 0%);
    }
    40% {
      transform: translate(0%, 2%);
    }
    50% {
      transform: translate(4%, 6%);
    }
    60% {
      transform: translate(1%, 6%);
    }
    70% {
      transform: translate(6%, 8%);
    }
    80% {
      transform: translate(4%, 4%);
    }
    90% {
      transform: translate(1%, 3%);
    }
    100% {
      transform: translate(0%, 0%);
    }
  }
  .bg-network-light-blue {
    background: url("/assets/img/network-cluster-white.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .bg-network-light-blue::before {
    z-index: -1;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ebf5fd;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .bg-network-light-blue {
    color: black;
  }
  .bg-sphere-blue {
    background: url("/assets/img/background-sphere.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .bg-sphere-blue::before {
    z-index: -1;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #349aeb;
    background: radial-gradient(circle, #349aeb 0%, #163880 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#349aeb",endColorstr="#163880",GradientType=1);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .bg-sphere-blue {
    color: white;
  }
  .link-effect-only-icon > i {
    transition: transform 0.25s ease-out;
    display: inline-block;
  }
  .link-effect-only-icon:hover > i, .link-effect-only-icon:active > i {
    transform: scale(1.2); /* Grow the icon on hover */
  }
  .link-effect-only-icon.link-anchor:hover > i, .link-effect-only-icon.link-anchor:active > i {
    transform: scale(1.2) rotate(-90deg); /* Grow the icon on hover */
  }
  .link-effect-white-thin p {
    position: relative;
    text-decoration: none;
    color: white; /* text color */
  }
  .link-effect-white-thin p:hover, .link-effect-white-thin p:before {
    color: white;
  }
  .link-effect-white-thin p:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px; /* underline height */
    bottom: -1px; /* gap b/w text and underline */
    left: 0; /* acts as "margin left" */
    background-color: white; /* underline color */
    transform: scaleX(0); /* 0 = no width ("invisible" underline) / 1 = underline scaled to full width of element ("visible" underline) */
    transform-origin: bottom right; /* direction where the underline transitions to (defaulted) */
    transition: transform 0.25s ease-out, background-color 0.5s; /* animation transition */
  }
  .link-effect-white-thin p:hover:before {
    transform: scaleX(1); /* Expand the underline on hover */
    transform-origin: bottom left; /* from where the effects rolls in */
  }
  .link-effect-white-thin:focus {
    color: white;
  }
  .link-effect-white-thin:hover p:before, .link-effect-white-thin:active p:before {
    transform: scaleX(1); /* Expand the underline on hover */
    transform-origin: bottom left;
  }
  .link-effect-white-thin > i {
    transition: transform 0.25s ease-out;
    display: inline-block;
  }
  .link-effect-white-thin:hover > i, .link-effect-white-thin:active > i {
    transform: scale(1.2); /* Grow the icon on hover */
  }
  .link-effect-white-thin.link-anchor:hover > i, .link-effect-white-thin.link-anchor:active > i {
    transform: scale(1.2) rotate(-90deg); /* Grow the icon on hover */
  }
  .link-effect-thematic-thin p {
    position: relative;
    text-decoration: none;
    color: #ffc940; /* text color */
  }
  .link-effect-thematic-thin p:hover, .link-effect-thematic-thin p:before {
    color: #ffc940;
  }
  .link-effect-thematic-thin p:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px; /* underline height */
    bottom: -1px; /* gap b/w text and underline */
    left: 0; /* acts as "margin left" */
    background-color: #ffc940; /* underline color */
    transform: scaleX(0); /* 0 = no width ("invisible" underline) / 1 = underline scaled to full width of element ("visible" underline) */
    transform-origin: bottom right; /* direction where the underline transitions to (defaulted) */
    transition: transform 0.25s ease-out, background-color 0.5s; /* animation transition */
  }
  .link-effect-thematic-thin p:hover:before {
    transform: scaleX(1); /* Expand the underline on hover */
    transform-origin: bottom left; /* from where the effects rolls in */
  }
  .link-effect-thematic-thin:focus {
    color: #ffc940;
  }
  .link-effect-thematic-thin:hover p:before, .link-effect-thematic-thin:active p:before {
    transform: scaleX(1); /* Expand the underline on hover */
    transform-origin: bottom left;
  }
  .link-effect-thematic-thin > i {
    transition: transform 0.25s ease-out;
    display: inline-block;
  }
  .link-effect-thematic-thin:hover > i, .link-effect-thematic-thin:active > i {
    transform: scale(1.2); /* Grow the icon on hover */
  }
  .link-effect-thematic-thin.link-anchor:hover > i, .link-effect-thematic-thin.link-anchor:active > i {
    transform: scale(1.2) rotate(-90deg); /* Grow the icon on hover */
  }
  body a.link-thematic, body a.link-thematic:visited, body a.link-thematic:hover, body a.link-thematic:active {
    color: #ffc940;
  }
  .ul-on-hover-prim {
    position: relative;
    text-decoration: none;
    color: #163880; /* text color */
  }
  .ul-on-hover-prim:hover, .ul-on-hover-prim:before {
    color: #163880;
  }
  .ul-on-hover-prim:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px; /* underline height */
    bottom: -2px; /* gap b/w text and underline */
    left: 0; /* acts as "margin left" */
    background-color: #163880; /* underline color */
    transform: scaleX(0); /* 0 = no width ("invisible" underline) / 1 = underline scaled to full width of element ("visible" underline) */
    transform-origin: bottom right; /* direction where the underline transitions to (defaulted) */
    transition: transform 0.25s ease-out, background-color 0.5s; /* animation transition */
  }
  .ul-on-hover-prim:hover:before {
    transform: scaleX(1); /* Expand the underline on hover */
    transform-origin: bottom left; /* from where the effects rolls in */
  }
  .ul-on-hover-prim:hover {
    color: #163880; /* Set the text color on hover */
  }
  .ul-on-hover-prim:hover:before {
    transform: scaleX(1); /* Expand the underline on hover */
    transform-origin: bottom left;
  }
  .ul-on-hover-prim-thin {
    position: relative;
    text-decoration: none;
    color: #163880; /* text color */
  }
  .ul-on-hover-prim-thin:hover, .ul-on-hover-prim-thin:before {
    color: #163880;
  }
  .ul-on-hover-prim-thin:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px; /* underline height */
    bottom: -1px; /* gap b/w text and underline */
    left: 0; /* acts as "margin left" */
    background-color: #163880; /* underline color */
    transform: scaleX(0); /* 0 = no width ("invisible" underline) / 1 = underline scaled to full width of element ("visible" underline) */
    transform-origin: bottom right; /* direction where the underline transitions to (defaulted) */
    transition: transform 0.25s ease-out, background-color 0.5s; /* animation transition */
  }
  .ul-on-hover-prim-thin:hover:before {
    transform: scaleX(1); /* Expand the underline on hover */
    transform-origin: bottom left; /* from where the effects rolls in */
  }
  .ul-on-hover-prim-thin:hover {
    color: #163880; /* Set the text color on hover */
  }
  .ul-on-hover-prim-thin:hover:before {
    transform: scaleX(1); /* Expand the underline on hover */
    transform-origin: bottom left;
  }
  .ul-on-hover-white-thin {
    position: relative;
    text-decoration: none;
    color: white; /* text color */
  }
  .ul-on-hover-white-thin:hover, .ul-on-hover-white-thin:before {
    color: white;
  }
  .ul-on-hover-white-thin:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px; /* underline height */
    bottom: -1px; /* gap b/w text and underline */
    left: 0; /* acts as "margin left" */
    background-color: white; /* underline color */
    transform: scaleX(0); /* 0 = no width ("invisible" underline) / 1 = underline scaled to full width of element ("visible" underline) */
    transform-origin: bottom right; /* direction where the underline transitions to (defaulted) */
    transition: transform 0.25s ease-out, background-color 0.5s; /* animation transition */
  }
  .ul-on-hover-white-thin:hover:before {
    transform: scaleX(1); /* Expand the underline on hover */
    transform-origin: bottom left; /* from where the effects rolls in */
  }
  .ul-on-hover-white-thin:hover {
    color: white; /* Set the text color on hover */
  }
  .ul-on-hover-white-thin:hover:before {
    transform: scaleX(1); /* Expand the underline on hover */
    transform-origin: bottom left;
  }
  .ul-on-active-white {
    position: relative;
    text-decoration: none;
    color: white; /* text color */
  }
  .ul-on-active-white:hover, .ul-on-active-white:before {
    color: white;
  }
  .ul-on-active-white:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px; /* underline height */
    bottom: -2px; /* gap b/w text and underline */
    left: 0; /* acts as "margin left" */
    background-color: white; /* underline color */
    transform: scaleX(0); /* 0 = no width ("invisible" underline) / 1 = underline scaled to full width of element ("visible" underline) */
    transform-origin: bottom right; /* direction where the underline transitions to (defaulted) */
    transition: transform 0.25s ease-out, background-color 0.5s; /* animation transition */
  }
  .ul-on-active-white:hover:before {
    transform: scaleX(1); /* Expand the underline on hover */
    transform-origin: bottom left; /* from where the effects rolls in */
  }
  .ul-on-active-white:active {
    color: white; /* Set the text color on hover */
  }
  .ul-on-active-white:active:before {
    transform: scaleX(1); /* Expand the underline on hover */
    transform-origin: bottom left;
  }
  .ul-on-active-white-thin {
    position: relative;
    text-decoration: none;
    color: white; /* text color */
  }
  .ul-on-active-white-thin:hover, .ul-on-active-white-thin:before {
    color: white;
  }
  .ul-on-active-white-thin:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px; /* underline height */
    bottom: -1px; /* gap b/w text and underline */
    left: 0; /* acts as "margin left" */
    background-color: white; /* underline color */
    transform: scaleX(0); /* 0 = no width ("invisible" underline) / 1 = underline scaled to full width of element ("visible" underline) */
    transform-origin: bottom right; /* direction where the underline transitions to (defaulted) */
    transition: transform 0.25s ease-out, background-color 0.5s; /* animation transition */
  }
  .ul-on-active-white-thin:hover:before {
    transform: scaleX(1); /* Expand the underline on hover */
    transform-origin: bottom left; /* from where the effects rolls in */
  }
  .ul-on-active-white-thin:active {
    color: white; /* Set the text color on hover */
  }
  .ul-on-active-white-thin:active:before {
    transform: scaleX(1); /* Expand the underline on hover */
    transform-origin: bottom left;
  }
  .grow-on-active {
    transition: transform 0.25s ease-out; /* Animation transition */
  }
  .grow-on-active:active {
    transform: scale(1.2); /* Grow the icon on hover */
  }
  .grow-on-hover {
    transition: transform 0.25s ease-out; /* Animation transition */
  }
  .grow-on-hover:hover {
    transform: scale(1.2); /* Grow the icon on hover */
  }
  @keyframes slide-out-right {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(400%);
    }
  }
  @keyframes slide-out-right-wide {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(1200%);
    }
  }
  .slide-out-right,
  .slide-out-right-wide {
    animation-name: slide-out-right;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    animation-timing-function: ease-in-out;
    animation-iteration-count: 1;
  }
  .slide-out-right-wide {
    animation-name: slide-out-right-wide;
  }
  .slide-out-right {
    animation-name: slide-out-right;
  }
  .--slideable {
    transition: transform 0.5s ease-in-out;
  }
  .--js-slide-active {
    overflow-x: hidden;
  }
  .link-effect-sec p {
    position: relative;
    text-decoration: none;
    color: #349aeb; /* text color */
  }
  .link-effect-sec p:hover, .link-effect-sec p:before {
    color: #349aeb;
  }
  .link-effect-sec p:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px; /* underline height */
    bottom: -2px; /* gap b/w text and underline */
    left: 0; /* acts as "margin left" */
    background-color: #349aeb; /* underline color */
    transform: scaleX(0); /* 0 = no width ("invisible" underline) / 1 = underline scaled to full width of element ("visible" underline) */
    transform-origin: bottom right; /* direction where the underline transitions to (defaulted) */
    transition: transform 0.25s ease-out, background-color 0.5s; /* animation transition */
  }
  .link-effect-sec p:hover:before {
    transform: scaleX(1); /* Expand the underline on hover */
    transform-origin: bottom left; /* from where the effects rolls in */
  }
  .link-effect-sec:focus {
    color: #349aeb;
  }
  .link-effect-sec:hover p:before, .link-effect-sec:active p:before {
    transform: scaleX(1); /* Expand the underline on hover */
    transform-origin: bottom left;
  }
  .link-effect-sec > i {
    transition: transform 0.25s ease-out;
    display: inline-block;
  }
  .link-effect-sec:hover > i, .link-effect-sec:active > i {
    transform: scale(1.2); /* Grow the icon on hover */
  }
  .link-effect-sec.link-anchor:hover > i, .link-effect-sec.link-anchor:active > i {
    transform: scale(1.2) rotate(-90deg); /* Grow the icon on hover */
  }
  .ul-on-hover-active_multiline {
    display: inline;
    background: linear-gradient(0deg, white, white) no-repeat right bottom/0 var(--bg-h);
    transition: background-size 0.25s;
    --bg-h: 100%;
  }
  .ul-on-hover-active_multiline:where(:hover, :focus-visible) {
    background-size: 100% var(--bg-h);
    background-position-x: left;
    color: white;
  }
  .ul-on-hover-active_multiline {
    padding-bottom: 2px;
    --bg-h: 2px;
    text-decoration: none;
    color: white;
    line-height: 1;
  }
  .ul-on-hover-active_multiline_sec {
    background: linear-gradient(0deg, #349aeb, #349aeb) no-repeat right bottom/0 var(--bg-h);
    transition: background-size 0.25s;
    --bg-h: 100%;
  }
  .ul-on-hover-active_multiline_sec:where(:hover, :focus-visible) {
    background-size: 100% var(--bg-h);
    background-position-x: left;
    color: #349aeb;
  }
  .ul-on-hover-active_multiline_sec {
    padding-bottom: 1px;
    --bg-h: 1px;
    text-decoration: none;
    color: black;
    line-height: 1;
  }
  /* START : confirmation check */
  .icon-send-confirmed {
    box-sizing: border-box;
    position: fixed;
    top: calc(50% - 6.65rem);
    left: calc(50% - 6.65rem);
    width: 13.3rem;
    height: 13.3rem;
    border-radius: 6.65rem;
    animation: fadeOut 0.5s ease-in-out 1.5s forwards;
    opacity: 1;
  }
  .icon-send-confirmed.--persistent {
    animation: fadeIn 0.25s ease-in-out forwards;
  }
  @keyframes fadeOut {
    from {
      opacity: 1;
    }
    to {
      opacity: 0;
      display: none;
    }
  }
  @keyframes fadeIn {
    from {
      scale: 0;
    }
    to {
      scale: 1;
    }
  }
  .disabled {
    display: none;
  }
  @keyframes outline {
    from {
      stroke-dasharray: 0, 25.1328rem;
    }
    to {
      stroke-dasharray: 25.1328rem, 25.1328rem;
    }
  }
  #outline {
    animation: 0.38s ease-in outline;
    transform: rotate(0deg);
    transform-origin: center;
  }
  @keyframes circle {
    from {
      transform: scale(1);
    }
    to {
      transform: scale(0);
    }
  }
  #white-circle {
    animation: 0.35s ease-in 0.35s forwards circle;
    transform: none;
    transform-origin: center;
  }
  @keyframes check {
    from {
      stroke-dasharray: 0, 8rem;
    }
    to {
      stroke-dasharray: 8rem, 8rem;
    }
  }
  #check {
    animation: 0.34s cubic-bezier(0.65, 0, 1, 1) 0.8s forwards check;
    stroke-dasharray: 0, 8rem;
  }
  @keyframes check-group {
    from {
      transform: scale(1);
    }
    50% {
      transform: scale(1.09);
    }
    to {
      transform: scale(1);
    }
  }
  #check-group {
    animation: 0.32s ease-in-out 1.03s check-group;
    transform-origin: center;
  }
  /* END : confirmation check */
  .button-thematic, .button-prim {
    display: flex;
    box-sizing: border-box;
    cursor: pointer;
    border-radius: 0.3rem;
    border: solid 1px;
    font-weight: bold;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 0.5rem 2rem 0.5rem 2rem;
    scroll-behavior: smooth;
    transition: border-color 0.25s, color 0.25s, background-color 0.25s;
  }
  .button-thematic:active, .button-prim:active {
    color: #163880;
    border-color: black;
    background-color: white;
  }
  @media (min-width: 975px) {
    .button-thematic:hover, .button-prim:hover {
      color: #163880;
      border-color: black;
      background-color: white;
    }
  }
  .button-prim {
    background-color: #163880;
    border-color: #163880;
    color: white;
    font-weight: bold;
  }
  .button-prim:hover {
    background-color: white;
  }
  .button-prim:focus:not(:active):not(:hover) {
    color: white;
  }
  .button-thematic {
    scroll-behavior: smooth;
    background-color: #ffc940;
    border-color: #ffc940;
    color: black;
  }
  .button-thematic:visited, .button-thematic:hover, .button-thematic:active {
    color: black;
  }
  .button-thematic:hover {
    background-color: white;
    border-color: black;
  }
  .bg-blue-radial-gradient {
    background: #349aeb;
    background: radial-gradient(circle, #349aeb 0%, #163880 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#349aeb",endColorstr="#163880",GradientType=1);
    color: white;
  }
  .bg-network-blue {
    background: url("/assets/img/network-cluster.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .bg-network-blue::before {
    z-index: -1;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #349aeb;
    background: radial-gradient(circle, #349aeb 0%, #163880 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#349aeb",endColorstr="#163880",GradientType=1);
  }
  .bg-network-blue {
    color: white;
  }
  .bg-network-blue-ani {
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .bg-network-blue-ani::before {
    z-index: -1;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 200%;
    width: 200%;
    background: linear-gradient(160deg, #349aeb 0%, #091a3b 75%, #091a3b 100%);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    animation: animateGradient 24s ease infinite;
  }
  .bg-network-blue-ani::after {
    z-index: -1;
    content: "";
    position: absolute;
    top: 0%;
    left: -10%;
    height: 110%;
    width: 110%;
    background: url("/assets/img/network-cluster.png") no-repeat center center;
    background-size: cover;
    animation: animateImage 60s linear infinite;
  }
  .bg-network-blue-ani {
    color: white;
  }
  @keyframes animateGradient {
    0% {
      transform: translate(0%, 0%);
    }
    25% {
      transform: translate(0%, -50%);
    }
    50% {
      transform: translate(-50%, -50%);
    }
    75% {
      transform: translate(-50%, 0%);
    }
    100% {
      transform: translate(0%, 0%);
    }
  }
  @keyframes animateImage {
    0% {
      transform: translate(0%, 0%);
    }
    10% {
      transform: translate(2%, 4%);
    }
    20% {
      transform: translate(4%, 0%);
    }
    30% {
      transform: translate(6%, 0%);
    }
    40% {
      transform: translate(0%, 2%);
    }
    50% {
      transform: translate(4%, 6%);
    }
    60% {
      transform: translate(1%, 6%);
    }
    70% {
      transform: translate(6%, 8%);
    }
    80% {
      transform: translate(4%, 4%);
    }
    90% {
      transform: translate(1%, 3%);
    }
    100% {
      transform: translate(0%, 0%);
    }
  }
  .bg-network-light-blue {
    background: url("/assets/img/network-cluster-white.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .bg-network-light-blue::before {
    z-index: -1;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ebf5fd;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .bg-network-light-blue {
    color: black;
  }
  .bg-sphere-blue {
    background: url("/assets/img/background-sphere.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .bg-sphere-blue::before {
    z-index: -1;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #349aeb;
    background: radial-gradient(circle, #349aeb 0%, #163880 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#349aeb",endColorstr="#163880",GradientType=1);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .bg-sphere-blue {
    color: white;
  }
  .link-effect-only-icon > i {
    transition: transform 0.25s ease-out;
    display: inline-block;
  }
  .link-effect-only-icon:hover > i, .link-effect-only-icon:active > i {
    transform: scale(1.2); /* Grow the icon on hover */
  }
  .link-effect-only-icon.link-anchor:hover > i, .link-effect-only-icon.link-anchor:active > i {
    transform: scale(1.2) rotate(-90deg); /* Grow the icon on hover */
  }
  .link-effect-white-thin p {
    position: relative;
    text-decoration: none;
    color: white; /* text color */
  }
  .link-effect-white-thin p:hover, .link-effect-white-thin p:before {
    color: white;
  }
  .link-effect-white-thin p:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px; /* underline height */
    bottom: -1px; /* gap b/w text and underline */
    left: 0; /* acts as "margin left" */
    background-color: white; /* underline color */
    transform: scaleX(0); /* 0 = no width ("invisible" underline) / 1 = underline scaled to full width of element ("visible" underline) */
    transform-origin: bottom right; /* direction where the underline transitions to (defaulted) */
    transition: transform 0.25s ease-out, background-color 0.5s; /* animation transition */
  }
  .link-effect-white-thin p:hover:before {
    transform: scaleX(1); /* Expand the underline on hover */
    transform-origin: bottom left; /* from where the effects rolls in */
  }
  .link-effect-white-thin:focus {
    color: white;
  }
  .link-effect-white-thin:hover p:before, .link-effect-white-thin:active p:before {
    transform: scaleX(1); /* Expand the underline on hover */
    transform-origin: bottom left;
  }
  .link-effect-white-thin > i {
    transition: transform 0.25s ease-out;
    display: inline-block;
  }
  .link-effect-white-thin:hover > i, .link-effect-white-thin:active > i {
    transform: scale(1.2); /* Grow the icon on hover */
  }
  .link-effect-white-thin.link-anchor:hover > i, .link-effect-white-thin.link-anchor:active > i {
    transform: scale(1.2) rotate(-90deg); /* Grow the icon on hover */
  }
  .link-effect-thematic-thin p {
    position: relative;
    text-decoration: none;
    color: #ffc940; /* text color */
  }
  .link-effect-thematic-thin p:hover, .link-effect-thematic-thin p:before {
    color: #ffc940;
  }
  .link-effect-thematic-thin p:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px; /* underline height */
    bottom: -1px; /* gap b/w text and underline */
    left: 0; /* acts as "margin left" */
    background-color: #ffc940; /* underline color */
    transform: scaleX(0); /* 0 = no width ("invisible" underline) / 1 = underline scaled to full width of element ("visible" underline) */
    transform-origin: bottom right; /* direction where the underline transitions to (defaulted) */
    transition: transform 0.25s ease-out, background-color 0.5s; /* animation transition */
  }
  .link-effect-thematic-thin p:hover:before {
    transform: scaleX(1); /* Expand the underline on hover */
    transform-origin: bottom left; /* from where the effects rolls in */
  }
  .link-effect-thematic-thin:focus {
    color: #ffc940;
  }
  .link-effect-thematic-thin:hover p:before, .link-effect-thematic-thin:active p:before {
    transform: scaleX(1); /* Expand the underline on hover */
    transform-origin: bottom left;
  }
  .link-effect-thematic-thin > i {
    transition: transform 0.25s ease-out;
    display: inline-block;
  }
  .link-effect-thematic-thin:hover > i, .link-effect-thematic-thin:active > i {
    transform: scale(1.2); /* Grow the icon on hover */
  }
  .link-effect-thematic-thin.link-anchor:hover > i, .link-effect-thematic-thin.link-anchor:active > i {
    transform: scale(1.2) rotate(-90deg); /* Grow the icon on hover */
  }
  body a.link-thematic, body a.link-thematic:visited, body a.link-thematic:hover, body a.link-thematic:active {
    color: #ffc940;
  }
  .ul-on-hover-prim {
    position: relative;
    text-decoration: none;
    color: #163880; /* text color */
  }
  .ul-on-hover-prim:hover, .ul-on-hover-prim:before {
    color: #163880;
  }
  .ul-on-hover-prim:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px; /* underline height */
    bottom: -2px; /* gap b/w text and underline */
    left: 0; /* acts as "margin left" */
    background-color: #163880; /* underline color */
    transform: scaleX(0); /* 0 = no width ("invisible" underline) / 1 = underline scaled to full width of element ("visible" underline) */
    transform-origin: bottom right; /* direction where the underline transitions to (defaulted) */
    transition: transform 0.25s ease-out, background-color 0.5s; /* animation transition */
  }
  .ul-on-hover-prim:hover:before {
    transform: scaleX(1); /* Expand the underline on hover */
    transform-origin: bottom left; /* from where the effects rolls in */
  }
  .ul-on-hover-prim:hover {
    color: #163880; /* Set the text color on hover */
  }
  .ul-on-hover-prim:hover:before {
    transform: scaleX(1); /* Expand the underline on hover */
    transform-origin: bottom left;
  }
  .ul-on-hover-prim-thin {
    position: relative;
    text-decoration: none;
    color: #163880; /* text color */
  }
  .ul-on-hover-prim-thin:hover, .ul-on-hover-prim-thin:before {
    color: #163880;
  }
  .ul-on-hover-prim-thin:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px; /* underline height */
    bottom: -1px; /* gap b/w text and underline */
    left: 0; /* acts as "margin left" */
    background-color: #163880; /* underline color */
    transform: scaleX(0); /* 0 = no width ("invisible" underline) / 1 = underline scaled to full width of element ("visible" underline) */
    transform-origin: bottom right; /* direction where the underline transitions to (defaulted) */
    transition: transform 0.25s ease-out, background-color 0.5s; /* animation transition */
  }
  .ul-on-hover-prim-thin:hover:before {
    transform: scaleX(1); /* Expand the underline on hover */
    transform-origin: bottom left; /* from where the effects rolls in */
  }
  .ul-on-hover-prim-thin:hover {
    color: #163880; /* Set the text color on hover */
  }
  .ul-on-hover-prim-thin:hover:before {
    transform: scaleX(1); /* Expand the underline on hover */
    transform-origin: bottom left;
  }
  .ul-on-hover-white-thin {
    position: relative;
    text-decoration: none;
    color: white; /* text color */
  }
  .ul-on-hover-white-thin:hover, .ul-on-hover-white-thin:before {
    color: white;
  }
  .ul-on-hover-white-thin:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px; /* underline height */
    bottom: -1px; /* gap b/w text and underline */
    left: 0; /* acts as "margin left" */
    background-color: white; /* underline color */
    transform: scaleX(0); /* 0 = no width ("invisible" underline) / 1 = underline scaled to full width of element ("visible" underline) */
    transform-origin: bottom right; /* direction where the underline transitions to (defaulted) */
    transition: transform 0.25s ease-out, background-color 0.5s; /* animation transition */
  }
  .ul-on-hover-white-thin:hover:before {
    transform: scaleX(1); /* Expand the underline on hover */
    transform-origin: bottom left; /* from where the effects rolls in */
  }
  .ul-on-hover-white-thin:hover {
    color: white; /* Set the text color on hover */
  }
  .ul-on-hover-white-thin:hover:before {
    transform: scaleX(1); /* Expand the underline on hover */
    transform-origin: bottom left;
  }
  .ul-on-active-white {
    position: relative;
    text-decoration: none;
    color: white; /* text color */
  }
  .ul-on-active-white:hover, .ul-on-active-white:before {
    color: white;
  }
  .ul-on-active-white:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px; /* underline height */
    bottom: -2px; /* gap b/w text and underline */
    left: 0; /* acts as "margin left" */
    background-color: white; /* underline color */
    transform: scaleX(0); /* 0 = no width ("invisible" underline) / 1 = underline scaled to full width of element ("visible" underline) */
    transform-origin: bottom right; /* direction where the underline transitions to (defaulted) */
    transition: transform 0.25s ease-out, background-color 0.5s; /* animation transition */
  }
  .ul-on-active-white:hover:before {
    transform: scaleX(1); /* Expand the underline on hover */
    transform-origin: bottom left; /* from where the effects rolls in */
  }
  .ul-on-active-white:active {
    color: white; /* Set the text color on hover */
  }
  .ul-on-active-white:active:before {
    transform: scaleX(1); /* Expand the underline on hover */
    transform-origin: bottom left;
  }
  .ul-on-active-white-thin {
    position: relative;
    text-decoration: none;
    color: white; /* text color */
  }
  .ul-on-active-white-thin:hover, .ul-on-active-white-thin:before {
    color: white;
  }
  .ul-on-active-white-thin:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px; /* underline height */
    bottom: -1px; /* gap b/w text and underline */
    left: 0; /* acts as "margin left" */
    background-color: white; /* underline color */
    transform: scaleX(0); /* 0 = no width ("invisible" underline) / 1 = underline scaled to full width of element ("visible" underline) */
    transform-origin: bottom right; /* direction where the underline transitions to (defaulted) */
    transition: transform 0.25s ease-out, background-color 0.5s; /* animation transition */
  }
  .ul-on-active-white-thin:hover:before {
    transform: scaleX(1); /* Expand the underline on hover */
    transform-origin: bottom left; /* from where the effects rolls in */
  }
  .ul-on-active-white-thin:active {
    color: white; /* Set the text color on hover */
  }
  .ul-on-active-white-thin:active:before {
    transform: scaleX(1); /* Expand the underline on hover */
    transform-origin: bottom left;
  }
  .grow-on-active {
    transition: transform 0.25s ease-out; /* Animation transition */
  }
  .grow-on-active:active {
    transform: scale(1.2); /* Grow the icon on hover */
  }
  .grow-on-hover {
    transition: transform 0.25s ease-out; /* Animation transition */
  }
  .grow-on-hover:hover {
    transform: scale(1.2); /* Grow the icon on hover */
  }
  @keyframes slide-out-right {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(400%);
    }
  }
  @keyframes slide-out-right-wide {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(1200%);
    }
  }
  .slide-out-right,
  .slide-out-right-wide {
    animation-name: slide-out-right;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    animation-timing-function: ease-in-out;
    animation-iteration-count: 1;
  }
  .slide-out-right-wide {
    animation-name: slide-out-right-wide;
  }
  .slide-out-right {
    animation-name: slide-out-right;
  }
  .--slideable {
    transition: transform 0.5s ease-in-out;
  }
  .--js-slide-active {
    overflow-x: hidden;
  }
  .link-effect-sec p {
    position: relative;
    text-decoration: none;
    color: #349aeb; /* text color */
  }
  .link-effect-sec p:hover, .link-effect-sec p:before {
    color: #349aeb;
  }
  .link-effect-sec p:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px; /* underline height */
    bottom: -2px; /* gap b/w text and underline */
    left: 0; /* acts as "margin left" */
    background-color: #349aeb; /* underline color */
    transform: scaleX(0); /* 0 = no width ("invisible" underline) / 1 = underline scaled to full width of element ("visible" underline) */
    transform-origin: bottom right; /* direction where the underline transitions to (defaulted) */
    transition: transform 0.25s ease-out, background-color 0.5s; /* animation transition */
  }
  .link-effect-sec p:hover:before {
    transform: scaleX(1); /* Expand the underline on hover */
    transform-origin: bottom left; /* from where the effects rolls in */
  }
  .link-effect-sec:focus {
    color: #349aeb;
  }
  .link-effect-sec:hover p:before, .link-effect-sec:active p:before {
    transform: scaleX(1); /* Expand the underline on hover */
    transform-origin: bottom left;
  }
  .link-effect-sec > i {
    transition: transform 0.25s ease-out;
    display: inline-block;
  }
  .link-effect-sec:hover > i, .link-effect-sec:active > i {
    transform: scale(1.2); /* Grow the icon on hover */
  }
  .link-effect-sec.link-anchor:hover > i, .link-effect-sec.link-anchor:active > i {
    transform: scale(1.2) rotate(-90deg); /* Grow the icon on hover */
  }
  .ul-on-hover-active_multiline {
    display: inline;
    background: linear-gradient(0deg, white, white) no-repeat right bottom/0 var(--bg-h);
    transition: background-size 0.25s;
    --bg-h: 100%;
  }
  .ul-on-hover-active_multiline:where(:hover, :focus-visible) {
    background-size: 100% var(--bg-h);
    background-position-x: left;
    color: white;
  }
  .ul-on-hover-active_multiline {
    padding-bottom: 2px;
    --bg-h: 2px;
    text-decoration: none;
    color: white;
    line-height: 1;
  }
  .ul-on-hover-active_multiline_sec {
    background: linear-gradient(0deg, #349aeb, #349aeb) no-repeat right bottom/0 var(--bg-h);
    transition: background-size 0.25s;
    --bg-h: 100%;
  }
  .ul-on-hover-active_multiline_sec:where(:hover, :focus-visible) {
    background-size: 100% var(--bg-h);
    background-position-x: left;
    color: #349aeb;
  }
  .ul-on-hover-active_multiline_sec {
    padding-bottom: 1px;
    --bg-h: 1px;
    text-decoration: none;
    color: black;
    line-height: 1;
  }
  /* START : confirmation check */
  .icon-send-confirmed {
    box-sizing: border-box;
    position: fixed;
    top: calc(50% - 6.65rem);
    left: calc(50% - 6.65rem);
    width: 13.3rem;
    height: 13.3rem;
    border-radius: 6.65rem;
    animation: fadeOut 0.5s ease-in-out 1.5s forwards;
    opacity: 1;
  }
  .icon-send-confirmed.--persistent {
    animation: fadeIn 0.25s ease-in-out forwards;
  }
  @keyframes fadeOut {
    from {
      opacity: 1;
    }
    to {
      opacity: 0;
      display: none;
    }
  }
  @keyframes fadeIn {
    from {
      scale: 0;
    }
    to {
      scale: 1;
    }
  }
  .disabled {
    display: none;
  }
  @keyframes outline {
    from {
      stroke-dasharray: 0, 25.1328rem;
    }
    to {
      stroke-dasharray: 25.1328rem, 25.1328rem;
    }
  }
  #outline {
    animation: 0.38s ease-in outline;
    transform: rotate(0deg);
    transform-origin: center;
  }
  @keyframes circle {
    from {
      transform: scale(1);
    }
    to {
      transform: scale(0);
    }
  }
  #white-circle {
    animation: 0.35s ease-in 0.35s forwards circle;
    transform: none;
    transform-origin: center;
  }
  @keyframes check {
    from {
      stroke-dasharray: 0, 8rem;
    }
    to {
      stroke-dasharray: 8rem, 8rem;
    }
  }
  #check {
    animation: 0.34s cubic-bezier(0.65, 0, 1, 1) 0.8s forwards check;
    stroke-dasharray: 0, 8rem;
  }
  @keyframes check-group {
    from {
      transform: scale(1);
    }
    50% {
      transform: scale(1.09);
    }
    to {
      transform: scale(1);
    }
  }
  #check-group {
    animation: 0.32s ease-in-out 1.03s check-group;
    transform-origin: center;
  }
  /* END : confirmation check */
  body {
    font-family: "Montserrat", "sans-serif";
    font-weight: 300;
    letter-spacing: 0.05rem;
    font-size: 1.6rem;
  }
  p {
    margin: 0;
    letter-spacing: 0.08rem;
  }
  a {
    cursor: pointer;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    -moz-tap-highlight-color: transparent;
    -ms-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
  }
  .upper-case {
    text-transform: uppercase;
  }
  .wrapper {
    margin-left: auto;
    margin-right: auto;
    width: 90%;
    max-width: 1440px;
  }
  .wrapper_i-line {
    max-width: 66ch;
    margin-left: auto;
    margin-right: auto;
  }
  .pre-headline {
    color: #349aeb;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    text-wrap: balance;
    font-size: 1.25rem;
  }
  h1 {
    font-size: 3rem;
  }
  .headline {
    font-size: 2.5rem;
    margin-top: 0.5rem;
    text-align: center;
    letter-spacing: 0.08rem;
  }
  @media (min-width: 550px) {
    .headline {
      font-size: 3.2rem;
      margin-top: 1rem;
    }
  }
  @media (min-width: 550px) and (min-width: 975px) {
    .headline {
      font-size: 3.6rem;
    }
  }
  .white {
    color: white;
  }
  .bg-white {
    background-color: white;
  }
  .box {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
    color: black;
    background-color: white;
    border-bottom: 0.5rem solid #163880;
  }
  section {
    scroll-margin-top: 6rem;
  }
  .js-clipped {
    overflow: hidden;
    position: fixed;
    top: 6rem;
  }
  .img-wrapper {
    text-align: center;
  }
  @media (min-width: 975px) {
    .img-wrapper {
      max-width: 33%;
    }
  }
  .bumper-bottom {
    height: 9rem;
  }
  .flex-list {
    list-style-type: none;
    gap: 1rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin: 0;
  }
  .flex-list i,
  .flex-list p {
    display: inline-block;
    cursor: pointer;
    margin: 0;
  }
  .flex-container {
    display: flex;
    justify-content: space-between;
  }
  .icon-and-label i,
  .icon-and-label p {
    display: inline-block;
  }
  ul {
    list-style-type: none;
    margin: 0;
  }
  li {
    margin: 0;
  }
  .fa-check {
    margin: 0;
  }
  .resp-font {
    font-size: 1.2rem;
  }
  @media screen and (min-width: 768px) {
    .resp-font {
      font-size: 1.6rem;
    }
  }
  .description {
    text-wrap: balance;
    hyphens: auto;
  }
  h3 {
    font-size: 1.6rem;
    text-align: center;
  }
  .--rounded-edges {
    border-radius: 0.5rem;
  }
  .social-links {
    display: flex;
    flex-direction: row;
    justify-content: start;
    flex-grow: 1;
    gap: 1rem;
  }
  .social-link {
    display: flex;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background-color: #349aeb;
    justify-content: center;
    align-items: center;
  }
  .social-link-icon {
    font-size: 2.5rem;
    color: white;
  }
  .social-link-icon.fa-facebook-f {
    font-size: 2.2rem;
  }
  .fancy-background_container {
    position: absolute;
    z-index: -1;
    width: 100%;
    min-height: calc(50vh + 6rem + 10rem);
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: 300% 300%;
    background-color: linear-gradient(-45deg, #24282f 0%, #163880 51%, #349aeb 100%);
    background-image: linear-gradient(-45deg, #24282f 0%, #163880 51%, #349aeb 100%);
    animation: AnimateBG 12s ease infinite;
    will-change: background-position;
  }
  @keyframes AnimateBG {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
  @keyframes AnimateVerticalBG {
    0% {
      background-position: 50% 0;
    }
    50% {
      background-position: 50% 100%;
    }
    100% {
      background-position: 50% 0%;
    }
  }
  .fancy-background {
    position: fixed;
    bottom: 0;
    top: 0;
    width: 400vw;
    min-height: 100vh;
    background: url("/assets/img/background-network-trans.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    animation: AnimateVerticalBG 32s ease infinite;
    will-change: background-position;
  }
  @media (min-width: 768px) {
    .fancy-background {
      width: 250vw;
    }
  }
  @media (min-width: 975px) {
    .fancy-background {
      width: 150vw;
    }
  }
  @media (min-width: 1200px) {
    .fancy-background {
      width: 100vw;
    }
  }
  .--bp-mB-below {
    display: block;
  }
  @media screen and (min-width: 550px) {
    .--bp-mB-below {
      display: none;
    }
  }
  .--bp-mB-above {
    display: none;
  }
  @media screen and (min-width: 550px) {
    .--bp-mB-above {
      display: block;
    }
  }
  .--bp-dxtp-below {
    display: block;
  }
  @media screen and (min-width: 975px) {
    .--bp-dxtp-below {
      display: none;
    }
  }
  .--bp-dxtp-above {
    display: none;
  }
  @media screen and (min-width: 975px) {
    .--bp-dxtp-above {
      display: block;
    }
  }
  .--thin {
    font-weight: 300 !important;
  }
  .img-full {
    width: 100%;
  }
  .check-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .error {
    font-size: 0.8rem;
    font-weight: 400;
    color: red;
  }
  .noscript-message {
    background-color: #ffc940;
    color: black;
    padding: 2rem 4rem;
    text-align: center;
    border: 1px solid red;
    box-shadow: 0 0 2rem rgba(255, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  /* montserrat-300 - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 300;
    src: url("../assets/fonts/montserrat-v25-latin-300.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* montserrat-500 - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 500;
    src: url("../assets/fonts/montserrat-v25-latin-500.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* montserrat-600 - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 600;
    src: url("../assets/fonts/montserrat-v25-latin-600.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* montserrat-800 - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 800;
    src: url("../assets/fonts/montserrat-v25-latin-800.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  .bg-blue-radial-gradient {
    background: #349aeb;
    background: radial-gradient(circle, #349aeb 0%, #163880 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#349aeb",endColorstr="#163880",GradientType=1);
    color: white;
  }
  .bg-network-blue {
    background: url("/assets/img/network-cluster.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .bg-network-blue::before {
    z-index: -1;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #349aeb;
    background: radial-gradient(circle, #349aeb 0%, #163880 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#349aeb",endColorstr="#163880",GradientType=1);
  }
  .bg-network-blue {
    color: white;
  }
  .bg-network-blue-ani {
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .bg-network-blue-ani::before {
    z-index: -1;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 200%;
    width: 200%;
    background: linear-gradient(160deg, #349aeb 0%, #091a3b 75%, #091a3b 100%);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    animation: animateGradient 24s ease infinite;
  }
  .bg-network-blue-ani::after {
    z-index: -1;
    content: "";
    position: absolute;
    top: 0%;
    left: -10%;
    height: 110%;
    width: 110%;
    background: url("/assets/img/network-cluster.png") no-repeat center center;
    background-size: cover;
    animation: animateImage 60s linear infinite;
  }
  .bg-network-blue-ani {
    color: white;
  }
  @keyframes animateGradient {
    0% {
      transform: translate(0%, 0%);
    }
    25% {
      transform: translate(0%, -50%);
    }
    50% {
      transform: translate(-50%, -50%);
    }
    75% {
      transform: translate(-50%, 0%);
    }
    100% {
      transform: translate(0%, 0%);
    }
  }
  @keyframes animateImage {
    0% {
      transform: translate(0%, 0%);
    }
    10% {
      transform: translate(2%, 4%);
    }
    20% {
      transform: translate(4%, 0%);
    }
    30% {
      transform: translate(6%, 0%);
    }
    40% {
      transform: translate(0%, 2%);
    }
    50% {
      transform: translate(4%, 6%);
    }
    60% {
      transform: translate(1%, 6%);
    }
    70% {
      transform: translate(6%, 8%);
    }
    80% {
      transform: translate(4%, 4%);
    }
    90% {
      transform: translate(1%, 3%);
    }
    100% {
      transform: translate(0%, 0%);
    }
  }
  .bg-network-light-blue {
    background: url("/assets/img/network-cluster-white.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .bg-network-light-blue::before {
    z-index: -1;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ebf5fd;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .bg-network-light-blue {
    color: black;
  }
  .bg-sphere-blue {
    background: url("/assets/img/background-sphere.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .bg-sphere-blue::before {
    z-index: -1;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #349aeb;
    background: radial-gradient(circle, #349aeb 0%, #163880 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#349aeb",endColorstr="#163880",GradientType=1);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .bg-sphere-blue {
    color: white;
  }
  .link-effect-only-icon > i {
    transition: transform 0.25s ease-out;
    display: inline-block;
  }
  .link-effect-only-icon:hover > i, .link-effect-only-icon:active > i {
    transform: scale(1.2); /* Grow the icon on hover */
  }
  .link-effect-only-icon.link-anchor:hover > i, .link-effect-only-icon.link-anchor:active > i {
    transform: scale(1.2) rotate(-90deg); /* Grow the icon on hover */
  }
  .link-effect-white-thin p {
    position: relative;
    text-decoration: none;
    color: white; /* text color */
  }
  .link-effect-white-thin p:hover, .link-effect-white-thin p:before {
    color: white;
  }
  .link-effect-white-thin p:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px; /* underline height */
    bottom: -1px; /* gap b/w text and underline */
    left: 0; /* acts as "margin left" */
    background-color: white; /* underline color */
    transform: scaleX(0); /* 0 = no width ("invisible" underline) / 1 = underline scaled to full width of element ("visible" underline) */
    transform-origin: bottom right; /* direction where the underline transitions to (defaulted) */
    transition: transform 0.25s ease-out, background-color 0.5s; /* animation transition */
  }
  .link-effect-white-thin p:hover:before {
    transform: scaleX(1); /* Expand the underline on hover */
    transform-origin: bottom left; /* from where the effects rolls in */
  }
  .link-effect-white-thin:focus {
    color: white;
  }
  .link-effect-white-thin:hover p:before, .link-effect-white-thin:active p:before {
    transform: scaleX(1); /* Expand the underline on hover */
    transform-origin: bottom left;
  }
  .link-effect-white-thin > i {
    transition: transform 0.25s ease-out;
    display: inline-block;
  }
  .link-effect-white-thin:hover > i, .link-effect-white-thin:active > i {
    transform: scale(1.2); /* Grow the icon on hover */
  }
  .link-effect-white-thin.link-anchor:hover > i, .link-effect-white-thin.link-anchor:active > i {
    transform: scale(1.2) rotate(-90deg); /* Grow the icon on hover */
  }
  .link-effect-thematic-thin p {
    position: relative;
    text-decoration: none;
    color: #ffc940; /* text color */
  }
  .link-effect-thematic-thin p:hover, .link-effect-thematic-thin p:before {
    color: #ffc940;
  }
  .link-effect-thematic-thin p:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px; /* underline height */
    bottom: -1px; /* gap b/w text and underline */
    left: 0; /* acts as "margin left" */
    background-color: #ffc940; /* underline color */
    transform: scaleX(0); /* 0 = no width ("invisible" underline) / 1 = underline scaled to full width of element ("visible" underline) */
    transform-origin: bottom right; /* direction where the underline transitions to (defaulted) */
    transition: transform 0.25s ease-out, background-color 0.5s; /* animation transition */
  }
  .link-effect-thematic-thin p:hover:before {
    transform: scaleX(1); /* Expand the underline on hover */
    transform-origin: bottom left; /* from where the effects rolls in */
  }
  .link-effect-thematic-thin:focus {
    color: #ffc940;
  }
  .link-effect-thematic-thin:hover p:before, .link-effect-thematic-thin:active p:before {
    transform: scaleX(1); /* Expand the underline on hover */
    transform-origin: bottom left;
  }
  .link-effect-thematic-thin > i {
    transition: transform 0.25s ease-out;
    display: inline-block;
  }
  .link-effect-thematic-thin:hover > i, .link-effect-thematic-thin:active > i {
    transform: scale(1.2); /* Grow the icon on hover */
  }
  .link-effect-thematic-thin.link-anchor:hover > i, .link-effect-thematic-thin.link-anchor:active > i {
    transform: scale(1.2) rotate(-90deg); /* Grow the icon on hover */
  }
  body a.link-thematic, body a.link-thematic:visited, body a.link-thematic:hover, body a.link-thematic:active {
    color: #ffc940;
  }
  .ul-on-hover-prim {
    position: relative;
    text-decoration: none;
    color: #163880; /* text color */
  }
  .ul-on-hover-prim:hover, .ul-on-hover-prim:before {
    color: #163880;
  }
  .ul-on-hover-prim:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px; /* underline height */
    bottom: -2px; /* gap b/w text and underline */
    left: 0; /* acts as "margin left" */
    background-color: #163880; /* underline color */
    transform: scaleX(0); /* 0 = no width ("invisible" underline) / 1 = underline scaled to full width of element ("visible" underline) */
    transform-origin: bottom right; /* direction where the underline transitions to (defaulted) */
    transition: transform 0.25s ease-out, background-color 0.5s; /* animation transition */
  }
  .ul-on-hover-prim:hover:before {
    transform: scaleX(1); /* Expand the underline on hover */
    transform-origin: bottom left; /* from where the effects rolls in */
  }
  .ul-on-hover-prim:hover {
    color: #163880; /* Set the text color on hover */
  }
  .ul-on-hover-prim:hover:before {
    transform: scaleX(1); /* Expand the underline on hover */
    transform-origin: bottom left;
  }
  .ul-on-hover-prim-thin {
    position: relative;
    text-decoration: none;
    color: #163880; /* text color */
  }
  .ul-on-hover-prim-thin:hover, .ul-on-hover-prim-thin:before {
    color: #163880;
  }
  .ul-on-hover-prim-thin:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px; /* underline height */
    bottom: -1px; /* gap b/w text and underline */
    left: 0; /* acts as "margin left" */
    background-color: #163880; /* underline color */
    transform: scaleX(0); /* 0 = no width ("invisible" underline) / 1 = underline scaled to full width of element ("visible" underline) */
    transform-origin: bottom right; /* direction where the underline transitions to (defaulted) */
    transition: transform 0.25s ease-out, background-color 0.5s; /* animation transition */
  }
  .ul-on-hover-prim-thin:hover:before {
    transform: scaleX(1); /* Expand the underline on hover */
    transform-origin: bottom left; /* from where the effects rolls in */
  }
  .ul-on-hover-prim-thin:hover {
    color: #163880; /* Set the text color on hover */
  }
  .ul-on-hover-prim-thin:hover:before {
    transform: scaleX(1); /* Expand the underline on hover */
    transform-origin: bottom left;
  }
  .ul-on-hover-white-thin {
    position: relative;
    text-decoration: none;
    color: white; /* text color */
  }
  .ul-on-hover-white-thin:hover, .ul-on-hover-white-thin:before {
    color: white;
  }
  .ul-on-hover-white-thin:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px; /* underline height */
    bottom: -1px; /* gap b/w text and underline */
    left: 0; /* acts as "margin left" */
    background-color: white; /* underline color */
    transform: scaleX(0); /* 0 = no width ("invisible" underline) / 1 = underline scaled to full width of element ("visible" underline) */
    transform-origin: bottom right; /* direction where the underline transitions to (defaulted) */
    transition: transform 0.25s ease-out, background-color 0.5s; /* animation transition */
  }
  .ul-on-hover-white-thin:hover:before {
    transform: scaleX(1); /* Expand the underline on hover */
    transform-origin: bottom left; /* from where the effects rolls in */
  }
  .ul-on-hover-white-thin:hover {
    color: white; /* Set the text color on hover */
  }
  .ul-on-hover-white-thin:hover:before {
    transform: scaleX(1); /* Expand the underline on hover */
    transform-origin: bottom left;
  }
  .ul-on-active-white {
    position: relative;
    text-decoration: none;
    color: white; /* text color */
  }
  .ul-on-active-white:hover, .ul-on-active-white:before {
    color: white;
  }
  .ul-on-active-white:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px; /* underline height */
    bottom: -2px; /* gap b/w text and underline */
    left: 0; /* acts as "margin left" */
    background-color: white; /* underline color */
    transform: scaleX(0); /* 0 = no width ("invisible" underline) / 1 = underline scaled to full width of element ("visible" underline) */
    transform-origin: bottom right; /* direction where the underline transitions to (defaulted) */
    transition: transform 0.25s ease-out, background-color 0.5s; /* animation transition */
  }
  .ul-on-active-white:hover:before {
    transform: scaleX(1); /* Expand the underline on hover */
    transform-origin: bottom left; /* from where the effects rolls in */
  }
  .ul-on-active-white:active {
    color: white; /* Set the text color on hover */
  }
  .ul-on-active-white:active:before {
    transform: scaleX(1); /* Expand the underline on hover */
    transform-origin: bottom left;
  }
  .ul-on-active-white-thin {
    position: relative;
    text-decoration: none;
    color: white; /* text color */
  }
  .ul-on-active-white-thin:hover, .ul-on-active-white-thin:before {
    color: white;
  }
  .ul-on-active-white-thin:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px; /* underline height */
    bottom: -1px; /* gap b/w text and underline */
    left: 0; /* acts as "margin left" */
    background-color: white; /* underline color */
    transform: scaleX(0); /* 0 = no width ("invisible" underline) / 1 = underline scaled to full width of element ("visible" underline) */
    transform-origin: bottom right; /* direction where the underline transitions to (defaulted) */
    transition: transform 0.25s ease-out, background-color 0.5s; /* animation transition */
  }
  .ul-on-active-white-thin:hover:before {
    transform: scaleX(1); /* Expand the underline on hover */
    transform-origin: bottom left; /* from where the effects rolls in */
  }
  .ul-on-active-white-thin:active {
    color: white; /* Set the text color on hover */
  }
  .ul-on-active-white-thin:active:before {
    transform: scaleX(1); /* Expand the underline on hover */
    transform-origin: bottom left;
  }
  .grow-on-active {
    transition: transform 0.25s ease-out; /* Animation transition */
  }
  .grow-on-active:active {
    transform: scale(1.2); /* Grow the icon on hover */
  }
  .grow-on-hover {
    transition: transform 0.25s ease-out; /* Animation transition */
  }
  .grow-on-hover:hover {
    transform: scale(1.2); /* Grow the icon on hover */
  }
  @keyframes slide-out-right {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(400%);
    }
  }
  @keyframes slide-out-right-wide {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(1200%);
    }
  }
  .slide-out-right,
  .slide-out-right-wide {
    animation-name: slide-out-right;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    animation-timing-function: ease-in-out;
    animation-iteration-count: 1;
  }
  .slide-out-right-wide {
    animation-name: slide-out-right-wide;
  }
  .slide-out-right {
    animation-name: slide-out-right;
  }
  .--slideable {
    transition: transform 0.5s ease-in-out;
  }
  .--js-slide-active {
    overflow-x: hidden;
  }
  .link-effect-sec p {
    position: relative;
    text-decoration: none;
    color: #349aeb; /* text color */
  }
  .link-effect-sec p:hover, .link-effect-sec p:before {
    color: #349aeb;
  }
  .link-effect-sec p:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px; /* underline height */
    bottom: -2px; /* gap b/w text and underline */
    left: 0; /* acts as "margin left" */
    background-color: #349aeb; /* underline color */
    transform: scaleX(0); /* 0 = no width ("invisible" underline) / 1 = underline scaled to full width of element ("visible" underline) */
    transform-origin: bottom right; /* direction where the underline transitions to (defaulted) */
    transition: transform 0.25s ease-out, background-color 0.5s; /* animation transition */
  }
  .link-effect-sec p:hover:before {
    transform: scaleX(1); /* Expand the underline on hover */
    transform-origin: bottom left; /* from where the effects rolls in */
  }
  .link-effect-sec:focus {
    color: #349aeb;
  }
  .link-effect-sec:hover p:before, .link-effect-sec:active p:before {
    transform: scaleX(1); /* Expand the underline on hover */
    transform-origin: bottom left;
  }
  .link-effect-sec > i {
    transition: transform 0.25s ease-out;
    display: inline-block;
  }
  .link-effect-sec:hover > i, .link-effect-sec:active > i {
    transform: scale(1.2); /* Grow the icon on hover */
  }
  .link-effect-sec.link-anchor:hover > i, .link-effect-sec.link-anchor:active > i {
    transform: scale(1.2) rotate(-90deg); /* Grow the icon on hover */
  }
  .ul-on-hover-active_multiline {
    display: inline;
    background: linear-gradient(0deg, white, white) no-repeat right bottom/0 var(--bg-h);
    transition: background-size 0.25s;
    --bg-h: 100%;
  }
  .ul-on-hover-active_multiline:where(:hover, :focus-visible) {
    background-size: 100% var(--bg-h);
    background-position-x: left;
    color: white;
  }
  .ul-on-hover-active_multiline {
    padding-bottom: 2px;
    --bg-h: 2px;
    text-decoration: none;
    color: white;
    line-height: 1;
  }
  .ul-on-hover-active_multiline_sec {
    background: linear-gradient(0deg, #349aeb, #349aeb) no-repeat right bottom/0 var(--bg-h);
    transition: background-size 0.25s;
    --bg-h: 100%;
  }
  .ul-on-hover-active_multiline_sec:where(:hover, :focus-visible) {
    background-size: 100% var(--bg-h);
    background-position-x: left;
    color: #349aeb;
  }
  .ul-on-hover-active_multiline_sec {
    padding-bottom: 1px;
    --bg-h: 1px;
    text-decoration: none;
    color: black;
    line-height: 1;
  }
  /* START : confirmation check */
  .icon-send-confirmed {
    box-sizing: border-box;
    position: fixed;
    top: calc(50% - 6.65rem);
    left: calc(50% - 6.65rem);
    width: 13.3rem;
    height: 13.3rem;
    border-radius: 6.65rem;
    animation: fadeOut 0.5s ease-in-out 1.5s forwards;
    opacity: 1;
  }
  .icon-send-confirmed.--persistent {
    animation: fadeIn 0.25s ease-in-out forwards;
  }
  @keyframes fadeOut {
    from {
      opacity: 1;
    }
    to {
      opacity: 0;
      display: none;
    }
  }
  @keyframes fadeIn {
    from {
      scale: 0;
    }
    to {
      scale: 1;
    }
  }
  .disabled {
    display: none;
  }
  @keyframes outline {
    from {
      stroke-dasharray: 0, 25.1328rem;
    }
    to {
      stroke-dasharray: 25.1328rem, 25.1328rem;
    }
  }
  #outline {
    animation: 0.38s ease-in outline;
    transform: rotate(0deg);
    transform-origin: center;
  }
  @keyframes circle {
    from {
      transform: scale(1);
    }
    to {
      transform: scale(0);
    }
  }
  #white-circle {
    animation: 0.35s ease-in 0.35s forwards circle;
    transform: none;
    transform-origin: center;
  }
  @keyframes check {
    from {
      stroke-dasharray: 0, 8rem;
    }
    to {
      stroke-dasharray: 8rem, 8rem;
    }
  }
  #check {
    animation: 0.34s cubic-bezier(0.65, 0, 1, 1) 0.8s forwards check;
    stroke-dasharray: 0, 8rem;
  }
  @keyframes check-group {
    from {
      transform: scale(1);
    }
    50% {
      transform: scale(1.09);
    }
    to {
      transform: scale(1);
    }
  }
  #check-group {
    animation: 0.32s ease-in-out 1.03s check-group;
    transform-origin: center;
  }
  /* END : confirmation check */
  .button-thematic, .button-prim {
    display: flex;
    box-sizing: border-box;
    cursor: pointer;
    border-radius: 0.3rem;
    border: solid 1px;
    font-weight: bold;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 0.5rem 2rem 0.5rem 2rem;
    scroll-behavior: smooth;
    transition: border-color 0.25s, color 0.25s, background-color 0.25s;
  }
  .button-thematic:active, .button-prim:active {
    color: #163880;
    border-color: black;
    background-color: white;
  }
  @media (min-width: 975px) {
    .button-thematic:hover, .button-prim:hover {
      color: #163880;
      border-color: black;
      background-color: white;
    }
  }
  .button-prim {
    background-color: #163880;
    border-color: #163880;
    color: white;
    font-weight: bold;
  }
  .button-prim:hover {
    background-color: white;
  }
  .button-prim:focus:not(:active):not(:hover) {
    color: white;
  }
  .button-thematic {
    scroll-behavior: smooth;
    background-color: #ffc940;
    border-color: #ffc940;
    color: black;
  }
  .button-thematic:visited, .button-thematic:hover, .button-thematic:active {
    color: black;
  }
  .button-thematic:hover {
    background-color: white;
    border-color: black;
  }
  .header {
    will-change: transform;
    top: 0;
    height: 6rem;
    left: 0;
    right: 0;
    position: sticky;
    z-index: 1000;
    font-weight: 600;
    background-color: white;
    box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.5);
  }
  .header a {
    color: #163880;
  }
  .header a:active, .header a:hover, .header a:visited {
    color: #163880;
  }
  .t-link {
    display: flex;
  }
  .header_container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }
  .header_logo-link {
    display: flex;
    flex: 1;
    max-width: 70%;
    height: 100%;
  }
  .header_logo {
    max-height: 6rem;
    max-width: 100%;
  }
  .header_nav-list,
  .header_nav-item {
    margin: 0;
    z-index: inherit;
  }
  .header_nav-list {
    background-color: white;
    display: flex;
    gap: 2rem;
    align-items: center;
    height: 6rem;
  }
  .header_call-button {
    height: 2.5rem;
    width: 2.5rem;
    cursor: pointer;
  }
  .header_menu-button {
    /* requires (empty) div children to work properly 
      , toggling active class displays open/closed state
      */
  }
  .header_menu-button:before, .header_menu-button:after, .header_menu-button div {
    background: #163880;
    content: "";
    display: block;
    width: 2rem;
    height: 0.3rem;
    border-radius: 0.15rem;
    margin-top: 0.55rem;
    margin-bottom: 0.55rem;
    transition: 0.25s;
  }
  .header_menu-button:before {
    margin-top: 0;
  }
  .header_menu-button:after {
    margin-bottom: 0;
  }
  .header_menu-button[aria-expanded=true]:before {
    transform: translateY(0.86rem) rotate(-135deg) scaleX(1.2);
  }
  .header_menu-button[aria-expanded=true]:after {
    transform: translateY(-0.86rem) rotate(135deg) scaleX(1.2);
  }
  .header_menu-button[aria-expanded=true] div {
    transform: scale(0);
  }
  .header_menu-button {
    display: block;
    height: 2rem;
    width: 2rem;
  }
  @media (min-width: 975px) {
    .header_menu-button {
      display: none;
    }
  }
  .header .pop-up-menu {
    visibility: hidden;
  }
  .header .pop-up-menu.visible {
    visibility: visible;
  }
  .header .pop-up-menu:after {
    box-sizing: border-box;
    content: "";
    position: absolute;
    width: 100%;
    top: -1px;
    left: 0;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 0.5rem black;
  }
  .header .pop-up-menu {
    box-shadow: 0 0.25rem 0.5rem 0 rgba(0, 0, 0, 0.5);
    position: absolute;
    background-color: white;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 2rem;
    left: -2rem;
    border-radius: 0 0 0.5rem 0.5rem;
    z-index: -1;
    transition: top 0.25s;
  }
  .header .pop-up-menu li:hover ~ li,
  .header .pop-up-menu li:has(~ li:hover) {
    /* Select any preceding / following element*/
  }
  .header .pop-up-menu li:hover ~ li .--current:before,
  .header .pop-up-menu li:has(~ li:hover) .--current:before {
    background-color: rgba(22, 56, 128, 0.5);
  }
  .header_nav-item {
    display: none;
    cursor: pointer;
    position: relative;
    height: 100%;
    align-items: center;
    list-style-type: none;
  }
  @media screen and (min-width: 975px) {
    .header_nav-item {
      display: flex;
    }
  }
  .header_nav-item a.button-thematic {
    padding: 0.5rem 4rem;
    font-weight: bold;
    color: black;
  }
  .header_nav-item.pop-up.--6e .pop-up-menu {
    top: -18.5rem;
  }
  .header_nav-item.pop-up.--6e li {
    display: inline-block;
    width: 21rem;
  }
  .header_nav-item.pop-up.--2e .pop-up-menu {
    top: -9rem;
  }
  .header_nav-item.pop-up.--2e li {
    display: inline-block;
    width: 15rem;
  }
  .header_nav-item.pop-up .pop-up-menu {
    top: 6rem;
  }
  .header_nav-item.pop-up:hover .pop-up-menu {
    top: 6rem;
  }
  .nav-link {
    color: #163880;
  }
  .nav-link.--sub {
    z-index: 1000;
    position: relative;
    text-decoration: none;
    color: #163880; /* text color */
  }
  .nav-link.--sub:hover, .nav-link.--sub:before {
    color: #163880;
  }
  .nav-link.--sub:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px; /* underline height */
    bottom: -0.5rem; /* gap b/w text and underline */
    left: 0; /* acts as "margin left" */
    background-color: #163880; /* underline color */
    transform: scaleX(0); /* 0 = no width ("invisible" underline) / 1 = underline scaled to full width of element ("visible" underline) */
    transform-origin: bottom right; /* direction where the underline transitions to (defaulted) */
    transition: transform 0.25s ease-out, background-color 0.5s; /* animation transition */
  }
  .nav-link.--sub:hover:before {
    transform: scaleX(1); /* Expand the underline on hover */
    transform-origin: bottom left; /* from where the effects rolls in */
  }
  .nav-link.--sub.--current {
    position: relative;
    text-decoration: none;
    color: #163880; /* text color */
  }
  .nav-link.--sub.--current:hover, .nav-link.--sub.--current:before {
    color: #163880;
  }
  .nav-link.--sub.--current:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px; /* underline height */
    bottom: -0.5rem; /* gap b/w text and underline */
    left: 0; /* acts as "margin left" */
    background-color: #163880; /* underline color */
    transform: scaleX(1); /* 0 = no width ("invisible" underline) / 1 = underline scaled to full width of element ("visible" underline) */
    transform-origin: bottom right; /* direction where the underline transitions to (defaulted) */
    transition: transform 0.25s ease-out, background-color 0.5s; /* animation transition */
  }
  .nav-link.--sub.--current:hover:before {
    transform: scaleX(1); /* Expand the underline on hover */
    transform-origin: bottom left; /* from where the effects rolls in */
  }
  .nav-link:not(.--sub).--current {
    position: relative;
    text-decoration: none;
    color: #163880; /* text color */
  }
  .nav-link:not(.--sub).--current:hover, .nav-link:not(.--sub).--current:before {
    color: #163880;
  }
  .nav-link:not(.--sub).--current:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px; /* underline height */
    bottom: -1.7rem; /* gap b/w text and underline */
    left: 0; /* acts as "margin left" */
    background-color: #163880; /* underline color */
    transform: scaleX(1); /* 0 = no width ("invisible" underline) / 1 = underline scaled to full width of element ("visible" underline) */
    transform-origin: bottom right; /* direction where the underline transitions to (defaulted) */
    transition: transform 0.25s ease-out, background-color 0.5s; /* animation transition */
  }
  .nav-link:not(.--sub).--current:hover:before {
    transform: scaleX(1); /* Expand the underline on hover */
    transform-origin: bottom left; /* from where the effects rolls in */
  }
  .nav-link:not(.--sub):not(.pop-up) {
    position: relative;
    text-decoration: none;
    color: #163880; /* text color */
  }
  .nav-link:not(.--sub):not(.pop-up):hover, .nav-link:not(.--sub):not(.pop-up):before {
    color: #163880;
  }
  .nav-link:not(.--sub):not(.pop-up):before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px; /* underline height */
    bottom: -1.7rem; /* gap b/w text and underline */
    left: 0; /* acts as "margin left" */
    background-color: #163880; /* underline color */
    transform: scaleX(0); /* 0 = no width ("invisible" underline) / 1 = underline scaled to full width of element ("visible" underline) */
    transform-origin: bottom right; /* direction where the underline transitions to (defaulted) */
    transition: transform 0.25s ease-out, background-color 0.5s; /* animation transition */
  }
  .nav-link:not(.--sub):not(.pop-up):hover:before {
    transform: scaleX(1); /* Expand the underline on hover */
    transform-origin: bottom left; /* from where the effects rolls in */
  }
  .bg-blue-radial-gradient {
    background: #349aeb;
    background: radial-gradient(circle, #349aeb 0%, #163880 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#349aeb",endColorstr="#163880",GradientType=1);
    color: white;
  }
  .bg-network-blue {
    background: url("/assets/img/network-cluster.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .bg-network-blue::before {
    z-index: -1;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #349aeb;
    background: radial-gradient(circle, #349aeb 0%, #163880 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#349aeb",endColorstr="#163880",GradientType=1);
  }
  .bg-network-blue {
    color: white;
  }
  .bg-network-blue-ani {
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .bg-network-blue-ani::before {
    z-index: -1;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 200%;
    width: 200%;
    background: linear-gradient(160deg, #349aeb 0%, #091a3b 75%, #091a3b 100%);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    animation: animateGradient 24s ease infinite;
  }
  .bg-network-blue-ani::after {
    z-index: -1;
    content: "";
    position: absolute;
    top: 0%;
    left: -10%;
    height: 110%;
    width: 110%;
    background: url("/assets/img/network-cluster.png") no-repeat center center;
    background-size: cover;
    animation: animateImage 60s linear infinite;
  }
  .bg-network-blue-ani {
    color: white;
  }
  @keyframes animateGradient {
    0% {
      transform: translate(0%, 0%);
    }
    25% {
      transform: translate(0%, -50%);
    }
    50% {
      transform: translate(-50%, -50%);
    }
    75% {
      transform: translate(-50%, 0%);
    }
    100% {
      transform: translate(0%, 0%);
    }
  }
  @keyframes animateImage {
    0% {
      transform: translate(0%, 0%);
    }
    10% {
      transform: translate(2%, 4%);
    }
    20% {
      transform: translate(4%, 0%);
    }
    30% {
      transform: translate(6%, 0%);
    }
    40% {
      transform: translate(0%, 2%);
    }
    50% {
      transform: translate(4%, 6%);
    }
    60% {
      transform: translate(1%, 6%);
    }
    70% {
      transform: translate(6%, 8%);
    }
    80% {
      transform: translate(4%, 4%);
    }
    90% {
      transform: translate(1%, 3%);
    }
    100% {
      transform: translate(0%, 0%);
    }
  }
  .bg-network-light-blue {
    background: url("/assets/img/network-cluster-white.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .bg-network-light-blue::before {
    z-index: -1;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ebf5fd;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .bg-network-light-blue {
    color: black;
  }
  .bg-sphere-blue {
    background: url("/assets/img/background-sphere.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .bg-sphere-blue::before {
    z-index: -1;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #349aeb;
    background: radial-gradient(circle, #349aeb 0%, #163880 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#349aeb",endColorstr="#163880",GradientType=1);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .bg-sphere-blue {
    color: white;
  }
  .link-effect-only-icon > i {
    transition: transform 0.25s ease-out;
    display: inline-block;
  }
  .link-effect-only-icon:hover > i, .link-effect-only-icon:active > i {
    transform: scale(1.2); /* Grow the icon on hover */
  }
  .link-effect-only-icon.link-anchor:hover > i, .link-effect-only-icon.link-anchor:active > i {
    transform: scale(1.2) rotate(-90deg); /* Grow the icon on hover */
  }
  .link-effect-white-thin p {
    position: relative;
    text-decoration: none;
    color: white; /* text color */
  }
  .link-effect-white-thin p:hover, .link-effect-white-thin p:before {
    color: white;
  }
  .link-effect-white-thin p:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px; /* underline height */
    bottom: -1px; /* gap b/w text and underline */
    left: 0; /* acts as "margin left" */
    background-color: white; /* underline color */
    transform: scaleX(0); /* 0 = no width ("invisible" underline) / 1 = underline scaled to full width of element ("visible" underline) */
    transform-origin: bottom right; /* direction where the underline transitions to (defaulted) */
    transition: transform 0.25s ease-out, background-color 0.5s; /* animation transition */
  }
  .link-effect-white-thin p:hover:before {
    transform: scaleX(1); /* Expand the underline on hover */
    transform-origin: bottom left; /* from where the effects rolls in */
  }
  .link-effect-white-thin:focus {
    color: white;
  }
  .link-effect-white-thin:hover p:before, .link-effect-white-thin:active p:before {
    transform: scaleX(1); /* Expand the underline on hover */
    transform-origin: bottom left;
  }
  .link-effect-white-thin > i {
    transition: transform 0.25s ease-out;
    display: inline-block;
  }
  .link-effect-white-thin:hover > i, .link-effect-white-thin:active > i {
    transform: scale(1.2); /* Grow the icon on hover */
  }
  .link-effect-white-thin.link-anchor:hover > i, .link-effect-white-thin.link-anchor:active > i {
    transform: scale(1.2) rotate(-90deg); /* Grow the icon on hover */
  }
  .link-effect-thematic-thin p {
    position: relative;
    text-decoration: none;
    color: #ffc940; /* text color */
  }
  .link-effect-thematic-thin p:hover, .link-effect-thematic-thin p:before {
    color: #ffc940;
  }
  .link-effect-thematic-thin p:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px; /* underline height */
    bottom: -1px; /* gap b/w text and underline */
    left: 0; /* acts as "margin left" */
    background-color: #ffc940; /* underline color */
    transform: scaleX(0); /* 0 = no width ("invisible" underline) / 1 = underline scaled to full width of element ("visible" underline) */
    transform-origin: bottom right; /* direction where the underline transitions to (defaulted) */
    transition: transform 0.25s ease-out, background-color 0.5s; /* animation transition */
  }
  .link-effect-thematic-thin p:hover:before {
    transform: scaleX(1); /* Expand the underline on hover */
    transform-origin: bottom left; /* from where the effects rolls in */
  }
  .link-effect-thematic-thin:focus {
    color: #ffc940;
  }
  .link-effect-thematic-thin:hover p:before, .link-effect-thematic-thin:active p:before {
    transform: scaleX(1); /* Expand the underline on hover */
    transform-origin: bottom left;
  }
  .link-effect-thematic-thin > i {
    transition: transform 0.25s ease-out;
    display: inline-block;
  }
  .link-effect-thematic-thin:hover > i, .link-effect-thematic-thin:active > i {
    transform: scale(1.2); /* Grow the icon on hover */
  }
  .link-effect-thematic-thin.link-anchor:hover > i, .link-effect-thematic-thin.link-anchor:active > i {
    transform: scale(1.2) rotate(-90deg); /* Grow the icon on hover */
  }
  body a.link-thematic, body a.link-thematic:visited, body a.link-thematic:hover, body a.link-thematic:active {
    color: #ffc940;
  }
  .ul-on-hover-prim {
    position: relative;
    text-decoration: none;
    color: #163880; /* text color */
  }
  .ul-on-hover-prim:hover, .ul-on-hover-prim:before {
    color: #163880;
  }
  .ul-on-hover-prim:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px; /* underline height */
    bottom: -2px; /* gap b/w text and underline */
    left: 0; /* acts as "margin left" */
    background-color: #163880; /* underline color */
    transform: scaleX(0); /* 0 = no width ("invisible" underline) / 1 = underline scaled to full width of element ("visible" underline) */
    transform-origin: bottom right; /* direction where the underline transitions to (defaulted) */
    transition: transform 0.25s ease-out, background-color 0.5s; /* animation transition */
  }
  .ul-on-hover-prim:hover:before {
    transform: scaleX(1); /* Expand the underline on hover */
    transform-origin: bottom left; /* from where the effects rolls in */
  }
  .ul-on-hover-prim:hover {
    color: #163880; /* Set the text color on hover */
  }
  .ul-on-hover-prim:hover:before {
    transform: scaleX(1); /* Expand the underline on hover */
    transform-origin: bottom left;
  }
  .ul-on-hover-prim-thin {
    position: relative;
    text-decoration: none;
    color: #163880; /* text color */
  }
  .ul-on-hover-prim-thin:hover, .ul-on-hover-prim-thin:before {
    color: #163880;
  }
  .ul-on-hover-prim-thin:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px; /* underline height */
    bottom: -1px; /* gap b/w text and underline */
    left: 0; /* acts as "margin left" */
    background-color: #163880; /* underline color */
    transform: scaleX(0); /* 0 = no width ("invisible" underline) / 1 = underline scaled to full width of element ("visible" underline) */
    transform-origin: bottom right; /* direction where the underline transitions to (defaulted) */
    transition: transform 0.25s ease-out, background-color 0.5s; /* animation transition */
  }
  .ul-on-hover-prim-thin:hover:before {
    transform: scaleX(1); /* Expand the underline on hover */
    transform-origin: bottom left; /* from where the effects rolls in */
  }
  .ul-on-hover-prim-thin:hover {
    color: #163880; /* Set the text color on hover */
  }
  .ul-on-hover-prim-thin:hover:before {
    transform: scaleX(1); /* Expand the underline on hover */
    transform-origin: bottom left;
  }
  .ul-on-hover-white-thin {
    position: relative;
    text-decoration: none;
    color: white; /* text color */
  }
  .ul-on-hover-white-thin:hover, .ul-on-hover-white-thin:before {
    color: white;
  }
  .ul-on-hover-white-thin:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px; /* underline height */
    bottom: -1px; /* gap b/w text and underline */
    left: 0; /* acts as "margin left" */
    background-color: white; /* underline color */
    transform: scaleX(0); /* 0 = no width ("invisible" underline) / 1 = underline scaled to full width of element ("visible" underline) */
    transform-origin: bottom right; /* direction where the underline transitions to (defaulted) */
    transition: transform 0.25s ease-out, background-color 0.5s; /* animation transition */
  }
  .ul-on-hover-white-thin:hover:before {
    transform: scaleX(1); /* Expand the underline on hover */
    transform-origin: bottom left; /* from where the effects rolls in */
  }
  .ul-on-hover-white-thin:hover {
    color: white; /* Set the text color on hover */
  }
  .ul-on-hover-white-thin:hover:before {
    transform: scaleX(1); /* Expand the underline on hover */
    transform-origin: bottom left;
  }
  .ul-on-active-white {
    position: relative;
    text-decoration: none;
    color: white; /* text color */
  }
  .ul-on-active-white:hover, .ul-on-active-white:before {
    color: white;
  }
  .ul-on-active-white:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px; /* underline height */
    bottom: -2px; /* gap b/w text and underline */
    left: 0; /* acts as "margin left" */
    background-color: white; /* underline color */
    transform: scaleX(0); /* 0 = no width ("invisible" underline) / 1 = underline scaled to full width of element ("visible" underline) */
    transform-origin: bottom right; /* direction where the underline transitions to (defaulted) */
    transition: transform 0.25s ease-out, background-color 0.5s; /* animation transition */
  }
  .ul-on-active-white:hover:before {
    transform: scaleX(1); /* Expand the underline on hover */
    transform-origin: bottom left; /* from where the effects rolls in */
  }
  .ul-on-active-white:active {
    color: white; /* Set the text color on hover */
  }
  .ul-on-active-white:active:before {
    transform: scaleX(1); /* Expand the underline on hover */
    transform-origin: bottom left;
  }
  .ul-on-active-white-thin {
    position: relative;
    text-decoration: none;
    color: white; /* text color */
  }
  .ul-on-active-white-thin:hover, .ul-on-active-white-thin:before {
    color: white;
  }
  .ul-on-active-white-thin:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px; /* underline height */
    bottom: -1px; /* gap b/w text and underline */
    left: 0; /* acts as "margin left" */
    background-color: white; /* underline color */
    transform: scaleX(0); /* 0 = no width ("invisible" underline) / 1 = underline scaled to full width of element ("visible" underline) */
    transform-origin: bottom right; /* direction where the underline transitions to (defaulted) */
    transition: transform 0.25s ease-out, background-color 0.5s; /* animation transition */
  }
  .ul-on-active-white-thin:hover:before {
    transform: scaleX(1); /* Expand the underline on hover */
    transform-origin: bottom left; /* from where the effects rolls in */
  }
  .ul-on-active-white-thin:active {
    color: white; /* Set the text color on hover */
  }
  .ul-on-active-white-thin:active:before {
    transform: scaleX(1); /* Expand the underline on hover */
    transform-origin: bottom left;
  }
  .grow-on-active {
    transition: transform 0.25s ease-out; /* Animation transition */
  }
  .grow-on-active:active {
    transform: scale(1.2); /* Grow the icon on hover */
  }
  .grow-on-hover {
    transition: transform 0.25s ease-out; /* Animation transition */
  }
  .grow-on-hover:hover {
    transform: scale(1.2); /* Grow the icon on hover */
  }
  @keyframes slide-out-right {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(400%);
    }
  }
  @keyframes slide-out-right-wide {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(1200%);
    }
  }
  .slide-out-right,
  .slide-out-right-wide {
    animation-name: slide-out-right;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    animation-timing-function: ease-in-out;
    animation-iteration-count: 1;
  }
  .slide-out-right-wide {
    animation-name: slide-out-right-wide;
  }
  .slide-out-right {
    animation-name: slide-out-right;
  }
  .--slideable {
    transition: transform 0.5s ease-in-out;
  }
  .--js-slide-active {
    overflow-x: hidden;
  }
  .link-effect-sec p {
    position: relative;
    text-decoration: none;
    color: #349aeb; /* text color */
  }
  .link-effect-sec p:hover, .link-effect-sec p:before {
    color: #349aeb;
  }
  .link-effect-sec p:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px; /* underline height */
    bottom: -2px; /* gap b/w text and underline */
    left: 0; /* acts as "margin left" */
    background-color: #349aeb; /* underline color */
    transform: scaleX(0); /* 0 = no width ("invisible" underline) / 1 = underline scaled to full width of element ("visible" underline) */
    transform-origin: bottom right; /* direction where the underline transitions to (defaulted) */
    transition: transform 0.25s ease-out, background-color 0.5s; /* animation transition */
  }
  .link-effect-sec p:hover:before {
    transform: scaleX(1); /* Expand the underline on hover */
    transform-origin: bottom left; /* from where the effects rolls in */
  }
  .link-effect-sec:focus {
    color: #349aeb;
  }
  .link-effect-sec:hover p:before, .link-effect-sec:active p:before {
    transform: scaleX(1); /* Expand the underline on hover */
    transform-origin: bottom left;
  }
  .link-effect-sec > i {
    transition: transform 0.25s ease-out;
    display: inline-block;
  }
  .link-effect-sec:hover > i, .link-effect-sec:active > i {
    transform: scale(1.2); /* Grow the icon on hover */
  }
  .link-effect-sec.link-anchor:hover > i, .link-effect-sec.link-anchor:active > i {
    transform: scale(1.2) rotate(-90deg); /* Grow the icon on hover */
  }
  .ul-on-hover-active_multiline {
    display: inline;
    background: linear-gradient(0deg, white, white) no-repeat right bottom/0 var(--bg-h);
    transition: background-size 0.25s;
    --bg-h: 100%;
  }
  .ul-on-hover-active_multiline:where(:hover, :focus-visible) {
    background-size: 100% var(--bg-h);
    background-position-x: left;
    color: white;
  }
  .ul-on-hover-active_multiline {
    padding-bottom: 2px;
    --bg-h: 2px;
    text-decoration: none;
    color: white;
    line-height: 1;
  }
  .ul-on-hover-active_multiline_sec {
    background: linear-gradient(0deg, #349aeb, #349aeb) no-repeat right bottom/0 var(--bg-h);
    transition: background-size 0.25s;
    --bg-h: 100%;
  }
  .ul-on-hover-active_multiline_sec:where(:hover, :focus-visible) {
    background-size: 100% var(--bg-h);
    background-position-x: left;
    color: #349aeb;
  }
  .ul-on-hover-active_multiline_sec {
    padding-bottom: 1px;
    --bg-h: 1px;
    text-decoration: none;
    color: black;
    line-height: 1;
  }
  /* START : confirmation check */
  .icon-send-confirmed {
    box-sizing: border-box;
    position: fixed;
    top: calc(50% - 6.65rem);
    left: calc(50% - 6.65rem);
    width: 13.3rem;
    height: 13.3rem;
    border-radius: 6.65rem;
    animation: fadeOut 0.5s ease-in-out 1.5s forwards;
    opacity: 1;
  }
  .icon-send-confirmed.--persistent {
    animation: fadeIn 0.25s ease-in-out forwards;
  }
  @keyframes fadeOut {
    from {
      opacity: 1;
    }
    to {
      opacity: 0;
      display: none;
    }
  }
  @keyframes fadeIn {
    from {
      scale: 0;
    }
    to {
      scale: 1;
    }
  }
  .disabled {
    display: none;
  }
  @keyframes outline {
    from {
      stroke-dasharray: 0, 25.1328rem;
    }
    to {
      stroke-dasharray: 25.1328rem, 25.1328rem;
    }
  }
  #outline {
    animation: 0.38s ease-in outline;
    transform: rotate(0deg);
    transform-origin: center;
  }
  @keyframes circle {
    from {
      transform: scale(1);
    }
    to {
      transform: scale(0);
    }
  }
  #white-circle {
    animation: 0.35s ease-in 0.35s forwards circle;
    transform: none;
    transform-origin: center;
  }
  @keyframes check {
    from {
      stroke-dasharray: 0, 8rem;
    }
    to {
      stroke-dasharray: 8rem, 8rem;
    }
  }
  #check {
    animation: 0.34s cubic-bezier(0.65, 0, 1, 1) 0.8s forwards check;
    stroke-dasharray: 0, 8rem;
  }
  @keyframes check-group {
    from {
      transform: scale(1);
    }
    50% {
      transform: scale(1.09);
    }
    to {
      transform: scale(1);
    }
  }
  #check-group {
    animation: 0.32s ease-in-out 1.03s check-group;
    transform-origin: center;
  }
  /* END : confirmation check */
  .menu {
    color: white;
    box-sizing: border-box;
    min-height: calc(100vh - 6rem);
    padding-bottom: 9rem;
    display: none;
    z-index: 900;
    width: 100%;
    transition: padding-top 0.25s, opacity 0.25s;
  }
  .menu .--grayed-out {
    color: rgba(255, 255, 255, 0.5);
  }
  .menu .def-link-colors {
    color: white;
    font-size: 1.6rem;
    font-weight: 500;
  }
  .menu .def-link-colors:visited, .menu .def-link-colors:visited, .menu .def-link-colors:hover {
    color: white;
  }
  .menu hr {
    border-color: rgba(255, 255, 255, 0.5);
  }
  .menu {
    background: linear-gradient(160deg, rgba(52, 154, 235, 0.97) 0%, rgba(22, 56, 128, 0.97) 75%, #163880 100%);
  }
  .menu.js-animation-offset {
    top: 0;
    position: relative;
    display: flex;
    padding-top: 18rem;
    opacity: 0;
  }
  .menu[aria-expanded=true] {
    padding-top: 0;
    opacity: 1;
  }
  .menu .pop-up-menu {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .menu .pop-up-menu > li {
    margin-left: 2rem;
  }
  .menu_subjects {
    display: flex;
    flex-direction: column;
    margin: 2rem 0;
    width: 90vw;
    margin-left: auto;
    margin-right: auto;
    gap: 3rem;
  }
  .menu_subjects .menu_subject_headline {
    text-align: start;
    margin: 0 0 2rem;
  }
  @media screen and (min-width: 550px) {
    .menu_subjects {
      flex-wrap: wrap;
      flex-direction: row;
      gap: 0;
    }
  }
  .menu_subject {
    box-sizing: border-box;
    align-items: start;
    width: 100%;
  }
  @media screen and (min-width: 550px) {
    .menu_subject {
      width: 50%;
    }
    .menu_subject.--full-sized {
      width: 100%;
    }
    .menu_subject {
      gap: 2rem;
    }
  }
  .subject-list {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .subject-list_item {
    font-size: 1.6rem;
    font-weight: 500;
  }
  .subject-list_item .--current {
    position: relative;
    text-decoration: none;
    color: white; /* text color */
  }
  .subject-list_item .--current:hover, .subject-list_item .--current:before {
    color: white;
  }
  .subject-list_item .--current:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px; /* underline height */
    bottom: -0.5rem; /* gap b/w text and underline */
    left: 0; /* acts as "margin left" */
    background-color: white; /* underline color */
    transform: scaleX(1); /* 0 = no width ("invisible" underline) / 1 = underline scaled to full width of element ("visible" underline) */
    transform-origin: bottom right; /* direction where the underline transitions to (defaulted) */
    transition: transform 0.25s ease-out, background-color 0.5s; /* animation transition */
  }
  .subject-list_item .--current:hover:before {
    transform: scaleX(1); /* Expand the underline on hover */
    transform-origin: bottom left; /* from where the effects rolls in */
  }
  .menu_contact {
    color: white;
    order: 1;
  }
  @media screen and (min-width: 550px) {
    .menu_contact {
      order: 0;
    }
  }
  .menu_contact_headline {
    font-size: 2rem;
    letter-spacing: 0.05rem;
    margin-bottom: 2rem;
  }
  .menu_contact_links {
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
  }
  @media screen and (min-width: 550px) {
    .menu_contact_links {
      flex-direction: column;
    }
  }
  .contact-link {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.75em;
    font-size: 1.6rem;
  }
  .contact-link-icon,
  .contact-link-label {
    color: white;
  }
  .contact-link-icon {
    font-size: 1.8rem;
  }
  .contact-link-label {
    font-weight: 500;
  }
  .menu_nav-item {
    font-size: 1.6rem;
    font-weight: 500;
  }
  .bg-blue-radial-gradient {
    background: #349aeb;
    background: radial-gradient(circle, #349aeb 0%, #163880 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#349aeb",endColorstr="#163880",GradientType=1);
    color: white;
  }
  .bg-network-blue {
    background: url("/assets/img/network-cluster.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .bg-network-blue::before {
    z-index: -1;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #349aeb;
    background: radial-gradient(circle, #349aeb 0%, #163880 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#349aeb",endColorstr="#163880",GradientType=1);
  }
  .bg-network-blue {
    color: white;
  }
  .bg-network-blue-ani {
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .bg-network-blue-ani::before {
    z-index: -1;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 200%;
    width: 200%;
    background: linear-gradient(160deg, #349aeb 0%, #091a3b 75%, #091a3b 100%);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    animation: animateGradient 24s ease infinite;
  }
  .bg-network-blue-ani::after {
    z-index: -1;
    content: "";
    position: absolute;
    top: 0%;
    left: -10%;
    height: 110%;
    width: 110%;
    background: url("/assets/img/network-cluster.png") no-repeat center center;
    background-size: cover;
    animation: animateImage 60s linear infinite;
  }
  .bg-network-blue-ani {
    color: white;
  }
  @keyframes animateGradient {
    0% {
      transform: translate(0%, 0%);
    }
    25% {
      transform: translate(0%, -50%);
    }
    50% {
      transform: translate(-50%, -50%);
    }
    75% {
      transform: translate(-50%, 0%);
    }
    100% {
      transform: translate(0%, 0%);
    }
  }
  @keyframes animateImage {
    0% {
      transform: translate(0%, 0%);
    }
    10% {
      transform: translate(2%, 4%);
    }
    20% {
      transform: translate(4%, 0%);
    }
    30% {
      transform: translate(6%, 0%);
    }
    40% {
      transform: translate(0%, 2%);
    }
    50% {
      transform: translate(4%, 6%);
    }
    60% {
      transform: translate(1%, 6%);
    }
    70% {
      transform: translate(6%, 8%);
    }
    80% {
      transform: translate(4%, 4%);
    }
    90% {
      transform: translate(1%, 3%);
    }
    100% {
      transform: translate(0%, 0%);
    }
  }
  .bg-network-light-blue {
    background: url("/assets/img/network-cluster-white.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .bg-network-light-blue::before {
    z-index: -1;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ebf5fd;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .bg-network-light-blue {
    color: black;
  }
  .bg-sphere-blue {
    background: url("/assets/img/background-sphere.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .bg-sphere-blue::before {
    z-index: -1;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #349aeb;
    background: radial-gradient(circle, #349aeb 0%, #163880 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#349aeb",endColorstr="#163880",GradientType=1);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .bg-sphere-blue {
    color: white;
  }
  /* START : footer */
  .footer {
    background-color: #24282f;
    color: white;
  }
  .footer a {
    color: white;
  }
  .footer a:active, .footer a:hover, .footer a:visited {
    color: white;
  }
  .footer {
    padding: 5rem 0;
  }
  .footer h3 {
    text-align: start;
    font-size: 1.6rem;
  }
  .footer .fa-solid {
    margin-right: 0.5rem;
    display: inline-block;
  }
  .footer .p {
    display: inline-block;
  }
  .footer hr {
    width: 100%;
    color: white;
    margin: 0;
  }
  .footer a:active.button-thematic,
  .footer a:hover.button-thematic {
    color: black;
  }
  .footer .social-link {
    background-color: white;
  }
  .footer .social-link-icon {
    color: #24282f;
  }
  .footer_upper-segment,
  .footer_lower-segment {
    margin: 0;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
    max-width: 1440px;
    padding-left: 5%;
    padding-right: 5%;
  }
  @media (min-width: 975px) {
    .footer_upper-segment,
    .footer_lower-segment {
      display: flex;
      gap: 6rem;
      align-items: flex-start;
      justify-content: flex-end;
    }
    .footer_upper-segment > li:first-child,
    .footer_lower-segment > li:first-child {
      margin-right: auto;
    }
    .footer_upper-segment .footer_info,
    .footer_upper-segment .footer_logo,
    .footer_lower-segment .footer_info,
    .footer_lower-segment .footer_logo {
      max-width: 500px;
    }
    .footer_upper-segment .footer_links,
    .footer_upper-segment .footer_link-email,
    .footer_lower-segment .footer_links,
    .footer_lower-segment .footer_link-email {
      margin-top: 0;
      min-width: 25ch;
    }
    .footer_upper-segment .footer_legal,
    .footer_upper-segment .footer_link-phone,
    .footer_lower-segment .footer_legal,
    .footer_lower-segment .footer_link-phone {
      margin-top: 0;
      min-width: 20ch;
    }
  }
  .footer_upper-segment {
    padding-bottom: 2.5rem;
  }
  .footer_upper-segment .social-links {
    display: none;
  }
  @media (min-width: 975px) {
    .footer_upper-segment .social-links {
      display: flex;
    }
  }
  .footer_button {
    color: white;
    margin: 2.5rem 0 4rem;
  }
  .footer_legal {
    margin-top: 5rem;
  }
  .footer_logo {
    width: 100%;
    height: 4rem;
    margin: 0;
    display: flex;
    flex: 1;
  }
  .footer_link {
    margin: 0;
  }
  .footer_lower_link {
    margin: 0;
  }
  .footer_lower-segment {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: start;
    justify-content: flex-start;
  }
  .footer_lower-segment li {
    margin-top: 2.5rem;
  }
  .footer_lower-segment :first-child {
    margin-top: 0;
  }
  @media (min-width: 975px) {
    .footer_lower-segment {
      flex-direction: row;
      align-items: center;
    }
    .footer_lower-segment li {
      height: 100%;
    }
    .footer_lower-segment .social-links {
      display: none;
    }
  }
  .footer_logo-link {
    display: flex;
    flex: 1;
    max-width: 100%;
  }
  @media (min-width: 975px) {
    .footer_logo-link {
      max-width: 40rem;
    }
  }
  .footer_logo-img {
    width: 100%;
    max-width: 40rem;
  }
  /* END : footer */
}
:root {
  --dur: 220ms;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  /* Selection-Card Height */
  --sel-min-h: 8.6rem; /* mobile baseline */
}

@media (min-width: 768px) {
  :root {
    --sel-min-h: 22.5rem;
  }
}
@media (min-width: 975px) {
  :root {
    --sel-min-h: 24.5rem;
  }
}
h1 p {
  font-weight: 300;
}
h1 {
  line-height: 48px;
}

@layer sections {
  .t-link {
    gap: 2rem;
  }
  @media (max-width: 550px) {
    .t-link span {
      display: none;
    }
  }
  .partner-werden {
    padding-bottom: 5rem;
  }
  @media (min-width: 975px) {
    .partner-werden {
      padding-bottom: 7.5rem;
    }
  }
  @media (min-width: 975px) and (min-width: 1200px) {
    .partner-werden {
      padding-bottom: 10rem;
    }
  }
  .partner-werden {
    padding-top: 5rem;
  }
  @media (min-width: 975px) {
    .partner-werden {
      padding-top: 7.5rem;
    }
  }
  @media (min-width: 975px) and (min-width: 1200px) {
    .partner-werden {
      padding-top: 10rem;
    }
  }
  .progress-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 4rem;
    margin: 4rem 0;
    counter-reset: step;
  }
  .progress-box {
    position: relative;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.4rem;
    height: 3.4rem;
    background-color: white;
    border-radius: 50%;
    border: 1px solid #163880;
    transition: 0.5s ease;
    transform: background-color;
  }
  .progress-box:focus-visible {
    outline: none;
  }
  .progress-box.is-clickable {
    background-color: #ffc940;
    border-color: #ffc940;
    cursor: pointer;
  }
  .progress-box.is-clickable:hover, .progress-box.is-clickable:active, .progress-box.is-clickable:focus {
    background-color: #349aeb;
    border-color: #349aeb;
  }
  .progress-box.active {
    background-color: #163880;
    border-color: #163880;
  }
  .progress-box.active::after {
    height: 2px;
  }
  .progress-box.active::before {
    color: white;
  }
  .progress-box::after {
    content: "";
    position: absolute;
    top: 50%;
    right: calc(100% + 1rem);
    transform: translateY(-50%);
    width: 2rem;
    height: 1px;
    background-color: #163880;
    border-radius: 1px;
    transition: 0.5s ease;
    transform: height;
  }
  .progress-box:first-child::after {
    content: none;
  }
  .progress-box {
    counter-increment: step;
  }
  .progress-box::before {
    content: counter(step);
    font-size: 2rem;
    font-weight: bold;
    color: white;
  }
  .form {
    margin-bottom: 4rem;
  }
  @media (min-width: 550px) {
    .form {
      padding-top: 2rem;
    }
  }
  .form {
    position: relative;
    width: 100%;
    overflow: hidden;
  }
  .form-wrapper {
    width: 100%;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    background-color: rgba(52, 154, 235, 0.2);
    position: relative;
    border-radius: 0.5rem 0.5rem 0 0;
  }
  .form-header {
    padding: 0 2rem;
    text-align: center;
  }
  .form-slider {
    position: relative;
    list-style: none;
    padding: 2rem 0 0;
    margin-bottom: 0;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    width: 100%;
    max-height: 100%;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
  }
  @media (min-width: 550px) {
    .form-slider {
      padding: 2rem 0;
    }
  }
  @media (prefers-reduced-motion: reduce) {
    .form-slider {
      transition: none !important;
    }
  }
  .form-slide {
    flex: 0 0 100%;
    align-self: flex-start;
    position: relative;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
  }
  .list-selections,
  .contact {
    font-size: 1.6rem;
    display: flex;
    flex-direction: column;
  }
  .list-selections {
    gap: 2rem;
    padding: 2rem;
    box-sizing: border-box;
    align-items: stretch;
  }
  @media (min-width: 550px) {
    .list-selections {
      padding: 2rem 4rem;
    }
  }
  @media (min-width: 768px) {
    .list-selections {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
    }
  }
  @media (min-width: 974px) {
    .list-selections {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr 1fr;
    }
  }
  .contact {
    gap: 1rem;
    padding: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  .selection {
    box-sizing: border-box;
    position: relative;
    box-sizing: border-box;
    background-color: white;
    border: solid 1px #349aeb;
    border-radius: 0.5rem;
    padding: 1rem 7rem 1rem 1rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    transition: transform 0.5s ease;
    cursor: pointer;
    justify-content: flex-start;
    min-height: var(--sel-min-h, 0);
    gap: 1rem;
  }
  .selection p {
    font-size: 14px;
    text-align: left;
  }
  .selection:hover .selection-icon, .selection:active .selection-icon, .selection:focus .selection-icon {
    transform: scale(1.1);
  }
  .selection:hover .selection-icon.--boost, .selection:active .selection-icon.--boost, .selection:focus .selection-icon.--boost {
    transform: scale(1.2) translateY(-0.5rem);
  }
  @media (min-width: 768px) {
    .selection {
      padding: 1rem;
      padding-top: 6.5rem;
      padding-bottom: 6.5rem;
    }
  }
  @media (min-width: 768px) {
    .selection {
      text-align: center;
      flex-direction: column;
    }
    .selection p {
      font-size: 1.6rem;
    }
  }
  @media (min-width: 975px) {
    .selection p {
      text-align: center;
    }
    .selection {
      justify-content: center;
    }
  }
  #slide-lead-type .selection .responsive-line-break {
    display: block;
  }
  @media (min-width: 430px) {
    #slide-lead-type .selection .responsive-line-break {
      display: none;
    }
  }
  @media (min-width: 974px) {
    #slide-lead-type .selection .responsive-line-break {
      display: block;
    }
  }
  .selection-icon {
    transition: transform 0.5s ease;
    max-width: 60px;
  }
  .selection-icon.--boost {
    transform: scale(1.1) translateY(-0.5rem);
  }
  @media (min-width: 768px) {
    .selection-icon {
      max-width: 75px;
    }
  }
  @media (min-width: 975px) {
    .selection-icon {
      max-width: 100px;
    }
  }
  .error-message {
    display: flex;
    font-size: 1.2rem;
    color: red;
    padding-left: 1rem;
    max-height: 0;
    opacity: 0;
    transition: max-height var(--dur) var(--ease), opacity calc(var(--dur)) var(--ease);
    overflow: hidden;
    height: auto;
  }
  .error-message.visible {
    max-height: 6rem;
    opacity: 1;
  }
  :root {
    --icon-checked: 3rem;
  }
  .checked {
    position: absolute;
    width: var(--icon-checked);
    height: var(--icon-checked);
    background-color: #ffc940;
    border-radius: calc(var(--icon-checked) * 0.5);
    top: 50%;
    right: -1.5rem;
    pointer-events: none;
    opacity: 0;
    transform: translate3d(0, -50%, 0) scale(0);
    transition: opacity 1s ease;
    will-change: transform, opacity;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  }
  .checked::before, .checked::after {
    content: "";
    position: absolute;
    left: 12%;
    top: 50%;
    height: 0.4rem;
    height: calc(var(--icon-checked) * 0.1333);
    background-color: currentColor;
    border-radius: 0.2rem;
    border-radius: calc(var(--icon-checked) * 0.0667);
    transform-origin: left center;
    background-color: white;
  }
  .checked::after {
    transform: rotate(-135deg) translate(-1rem, 0.4rem);
    transform: rotate(-135deg) translate(calc(-0.33 * var(--icon-checked)), calc(0.1333 * var(--icon-checked)));
    width: calc(var(--icon-checked) * 0.33);
  }
  .checked::before {
    transform: rotate(-45deg) translate(0.2rem, 0.8rem);
    transform: rotate(-45deg) translate(calc(var(--icon-checked) * 0.08), calc(var(--icon-checked) * 0.28));
    width: calc(var(--icon-checked) * 0.55);
  }
  @media (min-width: 345px) {
    .checked {
      right: 2rem;
    }
  }
  @media (min-width: 768px) {
    .checked {
      top: auto;
      right: auto;
      bottom: 0.5rem;
    }
  }
  @media (min-width: 974px) {
    .checked {
      bottom: 2rem;
    }
  }
  @media (min-width: 975px) {
    .checked {
      bottom: 0.5rem;
    }
  }
  /* Sichtbar beim Select */
  @media (min-width: 768px) {
    .selection.is-selected {
      transform: scale(1.05);
    }
  }
  .selection.is-selected .checked {
    background-color: #ffc940;
    opacity: 1;
    animation: pop 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) both;
  }
  .selection.is-selected .checked::before,
  .selection.is-selected .checked::after {
    scale: 1;
  }
  /* raus */
  .selection.is-unselecting .checked {
    opacity: 0;
    animation: pop-reverse 0.5s cubic-bezier(0.2, 1, 0.2, 0.8) both;
  }
  /* sanftes „Ploppen“ */
  @keyframes pop {
    0% {
      transform: translate3d(0, -50%, 0) scale(0.6);
    }
    60% {
      transform: translate3d(0, -50%, 0) scale(1.2);
    }
    100% {
      transform: translate3d(0, -50%, 0) scale(1);
    }
  }
  @keyframes pop-reverse {
    0% {
      transform: translate3d(0, -50%, 0) scale(1);
    }
    60% {
      transform: translate3d(0, -50%, 0) scale(1.2);
    }
    100% {
      transform: translate3d(0, -50%, 0) scale(0.6);
    }
  }
  /* Motion-Preference respektieren */
  @media (prefers-reduced-motion: reduce) {
    .checked,
    .checked::before,
    .checked::after,
    .selection,
    .selection-icon {
      transition: none !important;
      animation: none !important;
    }
  }
  input {
    margin-bottom: 0;
    width: 100%;
    color: #24282f;
    border: solid 1px gray;
  }
  input::-moz-placeholder {
    color: #24282f;
  }
  input::placeholder {
    color: #24282f;
  }
  input:focus {
    border: solid 1px #349aeb;
  }
  .input-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  @media (min-width: 550px) {
    .input-group {
      flex-direction: row;
      gap: 1rem;
    }
  }
  .input-wrapper {
    width: 100%;
  }
  /* Wrapper komplett aus dem sichtbaren Bereich nehmen */
  .hp-wrapper[aria-hidden=true] {
    position: absolute !important;
    left: -10000px !important; /* weit aus dem Viewport */
    top: auto !important;
    width: 1px !important;
    height: 1px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    overflow: hidden !important;
    clip-path: inset(50%) !important; /* moderner Ersatz für clip: rect */
    white-space: nowrap !important;
  }
  /* Keine versehentlichen Klicks/Touches */
  .hp-wrapper[aria-hidden=true] .input-default {
    pointer-events: none; /* Bots ignorieren das, Menschen können nicht reinklicken */
  }
  .privacy-wrapper {
    display: flex;
    margin-bottom: 1rem;
  }
  .privacy .error-message,
  .privacy-wrapper {
    flex-direction: row;
    gap: 1rem;
    max-width: 550px;
    margin-left: 0;
    margin-right: auto;
  }
  .privacy .error-message label,
  .privacy-wrapper label {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 0;
    color: #777;
  }
  .privacy .error-message a,
  .privacy-wrapper a {
    color: #777;
  }
  .privacy .error-message {
    box-sizing: border-box;
    transform: translateY(-10px);
    margin-left: 2rem;
  }
  .datenschutz {
    min-width: 2rem;
    min-height: 2rem;
    width: 2rem;
    height: 2rem;
  }
  .button-wrapper {
    max-width: 100%;
  }
  .submit-button {
    font-size: 1.6rem;
    padding: 2rem 4rem;
    margin-bottom: 0;
    max-width: 100%;
  }
  .benefit-bar {
    position: relative;
    z-index: 2;
    display: flex;
    border-radius: 0 0 0.5rem 0.5rem;
    background-color: #349aeb;
    flex-direction: column;
    box-sizing: border-box;
    align-items: center;
    overflow: hidden;
    height: 2.9rem;
    padding: 0.5rem 1rem;
    /* Helper: Snap ohne Animation (wird von JS kurzzeitig gesetzt) */
  }
  .benefit-bar.no-anim, .benefit-bar.no-anim * {
    transition: none !important;
  }
  @media (max-width: 767px) {
    .benefit-bar .benefit {
      transform: translateX(calc(-50vw - 82px));
    }
    .benefit-bar .benefit.active {
      transition: transform 0.45s ease;
    }
    .benefit-bar .benefit.on-left {
      transform: translateX(calc(-50vw - 82px));
    }
    .benefit-bar .benefit.on-right {
      transform: translateX(calc(50vw + 82px));
    }
    .benefit-bar .benefit.centered {
      transform: translateX(0);
    }
  }
  .benefit-bar {
    justify-content: center;
  }
  @media (min-width: 550px) {
    .benefit-bar {
      flex-direction: row;
      padding: 0.5rem 1rem;
    }
  }
  @media (min-width: 768px) {
    .benefit-bar {
      padding: 0.5rem 6%;
      justify-content: space-between;
    }
  }
  .benefit {
    color: white;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    position: absolute;
    display: flex;
    pointer-events: none;
  }
  .benefit.mb\:flex {
    display: none;
  }
  @media (max-width: 767px) {
    .benefit-bar {
      height: 2.9rem; /* fixe Höhe, damit nichts springt */
    }
    .benefit {
      position: absolute;
      justify-content: center;
      pointer-events: none;
      will-change: transform;
    }
  }
  /* --- Desktop: alle sichtbar, keine Animation nötig --- */
  @media (min-width: 768px) {
    .benefit {
      position: static;
      transform: none;
      transition: none;
      pointer-events: auto;
    }
  }
  /* Motion-Preference (optional) */
  @media (prefers-reduced-motion: reduce) {
    .benefit-bar .benefit {
      transition: none !important;
      transform: none !important;
    }
  }
  .form-nav {
    display: flex;
    flex-direction: row;
    box-sizing: border-box;
    width: 100%;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    justify-content: space-between;
    margin-bottom: 4rem;
  }
  .form-nav:has(.nav-btn--prev:not(.ihidden):not([hidden])):not(:has(.nav-btn--next:not(.hidden):not([hidden]))) {
    justify-content: center;
  }
  .form-nav:has(.nav-btn--prev:not(.hidden):not([hidden])):not(:has(.nav-btn--next:not(.hidden):not([hidden]))) .nav-btn--prev {
    margin-inline: auto;
  }
  .form-nav {
    /* 2) Nur NEXT sichtbar → NEXT zentrieren */
  }
  .form-nav:has(.nav-btn--next:not(.hidden):not([hidden])):not(:has(.nav-btn--prev:not(.hidden):not([hidden]))) {
    justify-content: center;
  }
  .form-nav:has(.nav-btn--next:not(.hidden):not([hidden])):not(:has(.nav-btn--prev:not(.hidden):not([hidden]))) .nav-btn--next {
    margin-inline: auto;
  }
  @media (min-width: 400px) {
    .form-nav {
      padding-left: 2rem;
      padding-right: 2rem;
    }
  }
  @media (min-width: 768px) {
    .form-nav {
      padding-left: 6%;
      padding-right: 6%;
    }
  }
  .nav-btn {
    display: flex;
    color: black;
    font-size: 1.6rem;
    position: relative;
    padding: 1rem 2rem;
    margin-bottom: 0;
    background-color: #ffc940;
    box-sizing: border-box;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    border: 1px solid white;
    transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
  }
  .nav-btn.nav-btn--prev {
    flex-direction: row-reverse;
  }
  .nav-btn.hidden {
    display: none;
  }
  .nav-btn.inactive {
    opacity: 0.5;
  }
  .nav-btn .iron-chevron-wrapper {
    transition: transform 0.5s;
  }
  .nav-btn:not(.in-active, [disabled], .hidden):where(:hover, :active, :focus) {
    border-color: black;
    background-color: white;
  }
  .nav-btn:not(.in-active, [disabled], .hidden):where(:hover, :active, :focus) .iron-chevron-wrapper {
    transform: translateX(-0.5rem);
  }
  .nav-btn:not(.in-active, [disabled], .hidden):where(:hover, :active, :focus).nav-btn--next .iron-chevron-wrapper {
    transform: translateX(0.5rem);
  }
  .nav-btn:not(.in-active, [disabled], .hidden):where(:hover, :active, :focus) .nav-btn__label {
    color: black;
  }
  .nav-btn:not(.in-active, [disabled], .hidden):where(:hover, :active, :focus) .icon-chevron::before, .nav-btn:not(.in-active, [disabled], .hidden):where(:hover, :active, :focus) .icon-chevron::after {
    background-color: black;
  }
  /* Button-Hinweis (einmalig) */
  #btn-form-next.animate-hint {
    animation: btnHintPulse 1s ease-in-out 1;
  }
  @keyframes btnHintPulse {
    0% {
      transform: scale(1);
    }
    20% {
      transform: scale(1.1);
    }
    40% {
      transform: scale(1);
    }
    60% {
      transform: scale(1.1);
    }
    80% {
      transform: scale(1);
    }
    100% {
      transform: scale(1);
    }
  }
  @media (prefers-reduced-motion: reduce) {
    #btn-form-next.animate-hint {
      animation: none;
    }
  }
  .nav-btn__label {
    font-weight: 600;
    color: white;
  }
  .icon-chevron {
    width: 100%;
    height: 100%;
    position: relative;
    box-sizing: border-box;
  }
  .icon-chevron::before, .icon-chevron::after {
    content: "";
    position: absolute;
    left: 50%; /* mittig platzieren */
    top: 50%;
    width: 1.33rem;
    height: 0.25rem;
    background-color: currentColor;
    border-radius: 0.15rem;
    transform-origin: left center; /* Drehpunkt = linke Mitte */
    background-color: white;
    transition: background-color 0.25s ease;
  }
  .icon-chevron.left::before {
    transform: rotate(45deg) translateX(-0.5rem) translateY(0.15rem);
  }
  .icon-chevron.left::after {
    transform: rotate(-45deg) translateX(-0.3rem) translateY(-0.4rem);
  }
  .icon-chevron.right {
    transform: translateY(-0.25rem);
  }
  .icon-chevron.right::before {
    transform: rotate(225deg) translateX(-0.5rem) translateY(0.15rem);
  }
  .icon-chevron.right::after {
    transform: rotate(-225deg) translateX(-0.3rem) translateY(-0.4rem);
  }
  .trust-bar {
    display: flex;
    justify-content: space-evenly;
    max-width: min(400px, 100vw);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4rem;
  }
  @media (min-width: 400px) {
    .trust-bar {
      justify-content: space-around;
    }
  }
  @media (min-width: 768px) {
    .trust-bar {
      max-width: min(400px, 100vw);
    }
  }
  .trust-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    max-width: min(75px, 20%);
  }
  .trust-box.last-request {
    min-width: 63px;
  }
  .trust-box.dsgvo {
    transform: scale(1.1);
  }
  .trust-box i {
    font-size: 2rem;
  }
  .trust-box img {
    max-width: 100%;
  }
  .trust-box p {
    text-align: center;
    text-wrap: balance;
  }
  .proven-expert i {
    color: #ffc940;
  }
  .proven-expert span {
    margin-right: 1.5rem;
  }
  .proven-expert {
    text-align: center;
  }
  .footer_legal {
    gap: 2rem;
    display: flex;
    flex-direction: column;
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
  }
  .footer_upper-segment {
    padding-bottom: 0;
  }
  .footer_legal-list {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
  }
  @media (min-width: 400px) {
    .footer_legal-list {
      gap: 2rem;
    }
  }
  @media (min-width: 550px) {
    .footer_legal-list {
      gap: 4rem;
    }
  }
  .icon-and-label > i {
    display: none !important;
  }
  @media (min-width: 550px) {
    .icon-and-label > i {
      display: inline-block !important;
    }
  }
  .footer_social-list {
    display: flex;
    flex-direction: row;
    gap: 4rem;
    justify-content: center;
  }
  .footer_link.impressum {
    box-sizing: border-box;
    padding-right: 1.19rem;
  }
}
@layer utilities {
  .no-wrap {
    white-space: nowrap; /* Verhindert Zeilenumbruch im <strong>-Text */
  }
  .balanced {
    text-wrap: balance;
  }
  .big {
    font-size: 3rem;
    margin-bottom: 2rem;
  }
  .small {
    font-size: 1.2rem;
  }
  .text-center {
    text-align: center;
  }
  .hidden {
    display: none !important;
  }
  .auto-h-margin {
    margin-left: auto;
    margin-right: auto;
  }
  .balanced {
    text-wrap: balance;
  }
  .no-drag-select,
  .no-drag-select * {
    -moz-user-select: none;
         user-select: none; /* verhindert Textauswahl */
    -webkit-user-select: none; /* Safari/iOS */
    -ms-user-select: none;
    -webkit-user-drag: none; /* verhindert Drag-Ghost v.a. Safari */
    -khtml-user-drag: none;
    -webkit-touch-callout: none; /* iOS: kein Kontextmenü bei Long-Press */
    -webkit-tap-highlight-color: transparent; /* iOS: kein Tap-Highlight */
  }
  .no-drag-select img,
  .no-drag-select * img {
    pointer-events: none; /* optional, nur wenn das Bild NICHT selbst geklickt werden soll */
  }
}
@layer responsiv {
  @media (min-width: 550px) {
    .mb\:hidden {
      display: none;
    }
    .mb\:flex {
      display: flex;
    }
  }
}/*# sourceMappingURL=partner-werden.css.map */