html, body, body div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, figure, footer, header, hgroup, menu, nav, section, time, mark, audio, video, details, summary, a {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

html {
  line-height: 1;
  overflow-y: scroll;
}

article, aside, figure, footer, header, hgroup, nav, section, details, summary {
  display: block;
}

a img {
  border: none;
}

/* img, object, embed { */
object, embed {
  max-width: 100%;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted #000;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

pre {
  white-space: pre; /* CSS2 */
  white-space: pre-wrap; /* CSS 2.1 */
  white-space: pre-line; /* CSS 3 (and 2.1 as well, actually) */
  word-wrap: break-word; /* IE */
}

input[type=radio] {
  vertical-align: text-bottom;
}

input[type=checkbox] {
  vertical-align: bottom;
}

/*
select, input, textarea {
  font: 99% sans-serif;
}
*/
small {
  font-size: 85%;
}

strong {
  font-weight: bold;
}

td, td img {
  vertical-align: top;
}

/* Make sure sup and sub don't screw with your line-heights
gist.github.com/413930 */
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* standardize any monospaced elements */
pre, code, kbd, samp {
  font-family: monospace, sans-serif;
}

/* hand cursor on clickable elements */
label,
input[type=button],
input[type=submit],
input[type=file],
button {
  cursor: pointer;
}

/* Webkit browsers add a 2px margin outside the chrome of form elements */
button, input, select, textarea {
  margin: 0;
}

/* make buttons play nice in IE */
button {
  width: auto;
  overflow: visible;
}

* {
  /* Remove default webkit and possible mozilla styles. Keeping this as :active to remove browser styles */
  /*-moz-appearance: none;
  -webkit-appearance: none;*/
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-decoration: inherit;
}

*, *:before, *:after {
  box-sizing: border-box;
}

.clearfix:after {
  content: "";
  clear: both;
  display: block;
  width: 100%;
  height: 0;
  font-size: 0;
  visibility: hidden;
}

a:focus, a:active,
button::-moz-focus-inner,
input[type=reset]::-moz-focus-inner,
input[type=button]::-moz-focus-inner,
input[type=submit]::-moz-focus-inner,
select::-moz-focus-inner,
input[type=file] > input[type=button]::-moz-focus-inner {
  border: 0;
  outline: 0;
}

input:invalid {
  box-shadow: none;
}

input, textarea {
  -webkit-appearance: none;
  border-radius: 0;
}

a, button, input {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  font-weight: inherit;
}

img {
  max-width: 100%;
}

:root {
  --color-light: #ffffff;
  --color-dark: #27325E;
  --color-bg-primary: #27325E;
  --color-bg-secondary: #F5F7FA;
  --color-accent: #4368FA;
  --color-accent-hover: #2350FF;
  --color-accent-active: #6B89FF;
  --color-accent-disabled: #4368FA;
  --x-pad: 16px;
  --radius: 24px;
  --header-height: 64px;
  --y-pad-header: 16px;
}

@media (min-width: 768px) and (max-width: 1399px) {
  :root {
    --header-height: 76px;
    --x-pad: 24px;
  }
}
@media (min-width: 1400px) {
  :root {
    --x-pad: 40px;
    --radius: 32px;
    --header-height: 92px;
    --y-pad-header: 24px;
  }
  .header-box {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
  }
}
html {
  height: 100%;
}

body {
  width: 100%;
  min-height: 100%;
  font-family: "Geologica", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "slnt" 0, "CRSV" 0, "SHRP" 0;
  display: flex;
  flex-direction: column;
  font-size: 16px;
  color: var(--color-dark);
}

@media (min-width: 1400px) {
  body {
    font-size: 18px;
  }
}
.main {
  flex-grow: 2;
}

.section {
  padding-left: var(--x-pad);
  padding-right: var(--x-pad);
}

.section + .section {
  margin-top: 80px;
}

.platforms + .section {
  margin-top: 24px;
}

.page-header + .section {
  margin-top: 64px;
}

@media (min-width: 1024px) {
  .box {
    width: 77.8vw;
    margin-left: auto;
    margin-right: auto;
  }
  .box-small {
    width: 72.34vw;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 1400px) {
  .box {
    width: 60.5vw;
  }
  .box-small {
    width: 48.22vw;
  }
}
.two-col-image {
  display: block;
  width: 100%;
  height: auto;
}

@media (min-width: 1024px) {
  .two-col-image {
    width: 80%;
    margin-right: 0;
    margin-left: auto;
  }
}
@media (max-width: 767px) {
  .two-col-layout {
    margin-top: 48px;
  }
  .two-col-data {
    margin-top: 48px;
  }
}
@media (min-width: 768px) {
  .two-col-layout {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
  }
}
.section-head {
  font-size: 28px;
  line-height: 1.21;
  font-family: "Prompt", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.section-head strong {
  font-weight: inherit;
  color: var(--color-accent);
}

.section-subhead {
  font-size: 24px;
  line-height: 1.33;
  font-family: "Prompt", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.center-box-head {
  text-align: center;
}

.center-box-body {
  margin-top: 40px;
}

.center-box-text {
  text-align: center;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 16px;
}

@media (min-width: 768px) {
  .center-box-text {
    padding-left: 12%;
    padding-right: 12%;
  }
}
@media (min-width: 1400px) {
  .section-head {
    line-height: 1.16;
    font-size: calc(28px + 20 * (100vw - 1400px) / 520);
  }
  .section-subhead {
    font-size: 32px;
    line-height: 1.75;
  }
  .page-header + .section {
    margin-top: 120px;
  }
  .center-box-text {
    font-size: 18px;
    line-height: 1.7;
    margin-top: 24px;
  }
}
.pinkbox,
.graybox {
  padding: 48px 24px;
  border-radius: var(--radius);
  background-color: var(--color-bg-secondary);
}

.graybox {
  background-color: var(--color-bg-secondary);
}

.pinkbox {
  background-color: #FEEAE3;
}

@media (min-width: 1400px) {
  .pinkbox,
  .graybox {
    padding: 48px 24px;
  }
}
.header {
  height: var(--header-height);
  padding-left: var(--x-pad);
  padding-right: var(--x-pad);
  padding-top: var(--y-pad-header);
  padding-bottom: var(--y-pad-header);
  position: relative;
  z-index: 2;
}

.header-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo svg {
  display: block;
  width: 100%;
  height: auto;
}

.header-nav {
  font-family: "Prompt", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.header-nav a:hover,
.header-nav a:focus {
  color: var(--color-accent-hover);
}

@media (max-width: 1023px) {
  .header-logo,
  .header-sandwich {
    position: relative;
    z-index: 2;
  }
  .header-nav-box {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    padding: calc(var(--header-height) + var(--x-pad)) var(--x-pad) 40px;
    text-align: center;
    background-color: var(--color-light);
    visibility: hidden;
    opacity: 0;
  }
  .sandwich-open .header-nav-box {
    visibility: visible;
    opacity: 1;
  }
  .header-nav li:not(:first-child) {
    margin-top: 48px;
  }
  .header-actions {
    margin-top: 46px;
  }
  .header-nav a {
    font-size: 28px;
    line-height: 1.21;
  }
}
@media (min-width: 768px) {
  .header {
    padding-left: calc(2 * var(--x-pad));
    padding-right: calc(2 * var(--x-pad));
  }
}
@media (min-width: 1024px) {
  .header-sandwich {
    display: none;
  }
  .header-nav-box {
    display: contents;
  }
  .header-nav {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
  }
  .header-nav li:not(:first-child) {
    margin-left: 48px;
  }
}
@media (max-width: 1399px) {
  .header-logo {
    width: 100px;
  }
}
@media (min-width: 1400px) {
  .header {
    font-size: 16px;
  }
  .header-logo {
    width: 102px;
  }
}
.footer {
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
  background-color: var(--color-bg-primary);
  color: var(--color-light);
  padding: 48px var(--x-pad) 24px;
  margin-top: 64px;
  font-size: 14px;
}

.footer-info {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  padding-top: 24px;
  border-top: 1px solid #485382;
}

.footer-nav-list {
  font-weight: 500;
}

.footer-logo-image {
  display: inline-block;
  width: 102px;
}

.footer-logo-image svg {
  display: block;
  width: 100%;
  height: auto;
}

.footer-logo {
  text-align: center;
}

.footer a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 767px) {
  .footer-nav-list {
    text-align: center;
    padding-bottom: 48px;
  }
  .footer-nav-list li:not(:first-child) {
    margin-top: 24px;
  }
  .footer-logo {
    padding-bottom: 32px;
  }
}
@media screen and (min-width: 768px) {
  .footer {
    margin-left: var(--x-pad);
    margin-right: var(--x-pad);
    padding-left: var(--x-pad);
    padding-right: var(--x-pad);
  }
  .footer-logo,
  .footer-nav,
  .footer-info {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-logo {
    padding-bottom: 32px;
  }
  .footer-nav-list {
    padding-bottom: 48px;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
  }
  .footer-nav-list li:not(:first-child) {
    margin-left: 48px;
  }
}
@media screen and (min-width: 1440px) {
  .footer {
    padding-bottom: 32px;
    margin-top: 120px;
  }
  .footer-info {
    padding-top: 32px;
  }
  .footer-logo {
    padding-bottom: 48px;
  }
}
@media (min-width: 1024px) {
  .footer-container {
    margin-left: auto;
    margin-right: auto;
    width: 72.91vw;
  }
}
.sandwich-btn {
  display: block;
  margin: 0;
  padding: 0;
  border: 0 none;
  outline: 0 none;
  background: transparent none;
}

.sandwich-btn:hover {
  color: var(--color-accent-hover);
}

.sandwich-btn-data {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-end;
  line-height: 1;
  font-weight: 500;
}

.sandwich-btn-icon {
  display: block;
  width: 24px;
  height: 24px;
  margin-left: 8px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
  background-color: transparent;
}

[data-action=nav-show] .sandwich-btn-icon {
  background-image: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M3.22485 5.97491C3.22485 5.5607 3.56064 5.22491 3.97485 5.22491H19.9749C20.3891 5.22491 20.7249 5.5607 20.7249 5.97491C20.7249 6.38913 20.3891 6.72491 19.9749 6.72491H3.97485C3.56064 6.72491 3.22485 6.38913 3.22485 5.97491Z" fill="%2327325E"/><path fill-rule="evenodd" clip-rule="evenodd" d="M3.22485 11.9749C3.22485 11.5607 3.56064 11.2249 3.97485 11.2249H19.9749C20.3891 11.2249 20.7249 11.5607 20.7249 11.9749C20.7249 12.3891 20.3891 12.7249 19.9749 12.7249H3.97485C3.56064 12.7249 3.22485 12.3891 3.22485 11.9749Z" fill="%2327325E"/><path fill-rule="evenodd" clip-rule="evenodd" d="M3.22485 17.9749C3.22485 17.5607 3.56064 17.2249 3.97485 17.2249H19.9749C20.3891 17.2249 20.7249 17.5607 20.7249 17.9749C20.7249 18.3891 20.3891 18.7249 19.9749 18.7249H3.97485C3.56064 18.7249 3.22485 18.3891 3.22485 17.9749Z" fill="%2327325E"/></svg>');
}

[data-action=nav-hide] .sandwich-btn-icon {
  background-image: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M3.46967 3.46967C3.76256 3.17678 4.23744 3.17678 4.53033 3.46967L20.5303 19.4697C20.8232 19.7626 20.8232 20.2374 20.5303 20.5303C20.2374 20.8232 19.7626 20.8232 19.4697 20.5303L3.46967 4.53033C3.17678 4.23744 3.17678 3.76256 3.46967 3.46967Z" fill="%2327325E"/><path fill-rule="evenodd" clip-rule="evenodd" d="M20.5303 3.46967C20.8232 3.76256 20.8232 4.23744 20.5303 4.53033L4.53033 20.5303C4.23744 20.8232 3.76256 20.8232 3.46967 20.5303C3.17678 20.2374 3.17678 19.7626 3.46967 19.4697L19.4697 3.46967C19.7626 3.17678 20.2374 3.17678 20.5303 3.46967Z" fill="%2327325E"/></svg>');
}

[data-action=nav-show]:hover .sandwich-btn-icon {
  background-image: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M3.22485 5.97491C3.22485 5.5607 3.56064 5.22491 3.97485 5.22491H19.9749C20.3891 5.22491 20.7249 5.5607 20.7249 5.97491C20.7249 6.38913 20.3891 6.72491 19.9749 6.72491H3.97485C3.56064 6.72491 3.22485 6.38913 3.22485 5.97491Z" fill="%232350FF"/><path fill-rule="evenodd" clip-rule="evenodd" d="M3.22485 11.9749C3.22485 11.5607 3.56064 11.2249 3.97485 11.2249H19.9749C20.3891 11.2249 20.7249 11.5607 20.7249 11.9749C20.7249 12.3891 20.3891 12.7249 19.9749 12.7249H3.97485C3.56064 12.7249 3.22485 12.3891 3.22485 11.9749Z" fill="%232350FF"/><path fill-rule="evenodd" clip-rule="evenodd" d="M3.22485 17.9749C3.22485 17.5607 3.56064 17.2249 3.97485 17.2249H19.9749C20.3891 17.2249 20.7249 17.5607 20.7249 17.9749C20.7249 18.3891 20.3891 18.7249 19.9749 18.7249H3.97485C3.56064 18.7249 3.22485 18.3891 3.22485 17.9749Z" fill="%232350FF"/></svg>');
}

[data-action=nav-hide]:hover .sandwich-btn-icon {
  background-image: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M3.46967 3.46967C3.76256 3.17678 4.23744 3.17678 4.53033 3.46967L20.5303 19.4697C20.8232 19.7626 20.8232 20.2374 20.5303 20.5303C20.2374 20.8232 19.7626 20.8232 19.4697 20.5303L3.46967 4.53033C3.17678 4.23744 3.17678 3.76256 3.46967 3.46967Z" fill="%232350FF"/><path fill-rule="evenodd" clip-rule="evenodd" d="M20.5303 3.46967C20.8232 3.76256 20.8232 4.23744 20.5303 4.53033L4.53033 20.5303C4.23744 20.8232 3.76256 20.8232 3.46967 20.5303C3.17678 20.2374 3.17678 19.7626 3.46967 19.4697L19.4697 3.46967C19.7626 3.17678 20.2374 3.17678 20.5303 3.46967Z" fill="%232350FF"/></svg>');
}

.sandwich-open [data-action=nav-show],
[data-action=nav-hide] {
  display: none;
}

.sandwich-open [data-action=nav-hide] {
  display: flex;
}

.btn {
  display: inline-block;
  font-weight: 500;
  text-align: center;
  padding: 12px 24px;
  margin: 0;
  outline: 0 none;
  border: 0 none;
  border-radius: 8px;
}

.btn-fill {
  width: 100%;
}

.btn-primary {
  color: var(--color-light);
  background: var(--color-accent) none;
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--color-accent-hover) none;
}

.btn-primary:active {
  background: var(--color-accent-active) none;
}

.btn-primary:disabled {
  background: var(--color-accent-disabled) none;
  cursor: default;
  color: rgba(255, 255, 255, 0.5);
}

.btn-secondary {
  text-decoration: underline;
}

.btn-secondary:hover,
.btn-secondary:focus {
  text-decoration: none;
}

.simple-graph-box {
  width: 90%;
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: repeat(2, 1fr);
  margin-left: auto;
  margin-right: auto;
}

.simple-graph-list {
  grid-column: 1/2;
  grid-row: 2/3;
  width: 100%;
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-end;
  justify-content: space-around;
  margin-bottom: 0;
  margin-top: auto;
}

.simple-graph-item {
  width: 22%;
  aspect-ratio: 95/142;
  position: relative;
}

.simple-graph-label {
  color: #7F87A5;
  font-size: 12px;
  display: block;
  width: 100%;
  text-align: center;
  line-height: 2;
  transform: translate(0, 100%);
  position: absolute;
  left: 0;
  bottom: 0;
  white-space: nowrap;
}

.simple-graph-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  background: #FEEAE3;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.simple-graph-item:first-child::after {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.simple-graph-bonus {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  height: var(--bonus);
  background-color: var(--color-accent);
  border-radius: 4px;
  transform: translate(0, -1px);
}

.simple-graph-bonus-value {
  display: block;
  width: 100%;
  text-align: center;
  font-family: "Prompt", sans-serif;
  font-weight: 600;
  font-style: normal;
  line-height: 1.7;
  font-size: 22px;
  color: var(--color-accent);
  transform: translateY(-100%);
}

.form-line:not(:first-child) {
  margin-top: 24px;
}

.form-label {
  font-size: 14px;
  line-height: 1.7;
  color: #ABB0C5;
}

.form-input {
  display: block;
  width: 100%;
  padding: 12px 16px;
  margin: 0;
  border: 1px solid #D0D4E3;
  outline: 0 none;
  border-radius: 8px;
  transition: border-color 0.15s ease-in-out;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  color: #002757;
  margin-top: 4px;
}

.form-input:focus {
  border-color: #4368FA;
}

.form-line_error .form-input {
  border-color: #FF5454;
}

textarea.form-input {
  height: 118px;
  resize: none;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  color: inherit;
  font-family: inherit;
}

.form-line-msg {
  font-size: 12px;
  line-height: 1.5;
}

.form-line-hint {
  margin-top: 4px;
  color: #ABB0C5;
}

.form-line-error {
  margin-top: 4px;
  color: #FF5454;
  font-weight: 400;
  display: none;
}

.form-line_error .form-line-hint {
  display: none;
}

.form-line_error .form-line-error {
  display: block;
}

.page-header {
  margin-top: calc(-1 * var(--header-height));
  padding-top: calc(var(--header-height) - var(--y-pad-header));
  background-color: #FEEAE3;
  border-bottom-left-radius: var(--radius);
  border-bottom-right-radius: var(--radius);
}

.page-header-box {
  margin-left: auto;
  margin-right: auto;
}

.page-header-pic {
  display: block;
  width: 100%;
}

.page-header-title {
  font-family: "Prompt", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.page-header-lead {
  font-weight: 300;
}

.page-header-lead p:not(:first-child) {
  margin-top: 0.78em;
}

.page-header-image-container {
  width: 100%;
  position: relative;
}

@supports (aspect-ratio: 1/1) {
  .page-header-image-container {
    aspect-ratio: 1/1;
  }
}
@supports not (aspect-ratio: 1/1) {
  .page-header-image-container::before {
    content: "";
    display: block;
    width: 100%;
    height: 0;
    padding-top: 100%;
  }
}
@media (max-width: 767px) {
  .page-header {
    margin-left: calc(var(--x-pad) / 2);
    margin-right: calc(var(--x-pad) / 2);
  }
  .page-header-content {
    padding-left: var(--x-pad);
    padding-right: var(--x-pad);
    padding-top: 48px;
    text-align: center;
  }
  .page-header-title {
    font-size: 36px;
    line-height: 1.22;
  }
  .page-header-lead {
    margin-top: 1em;
    line-height: 1.55;
  }
  .page-header-visual {
    padding: var(--x-pad);
  }
  .page-header-pic {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media screen and (min-width: 768px) {
  .page-header {
    margin-left: var(--x-pad);
    margin-right: var(--x-pad);
  }
  .page-header-box {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
    width: 94%;
    margin-left: auto;
    margin-right: auto;
  }
  .page-header-visual {
    width: 50%;
    max-width: 50%;
    min-width: 50%;
  }
  .page-header-title {
    font-size: calc(24px + 40 * (100vw - 768px) / 1151);
    line-height: 1.125;
  }
  .page-header-lead {
    font-size: calc(14px + 10 * (100vw - 768px) / 1151);
    max-width: 80%;
    margin-top: 1em;
    line-height: 1.55;
  }
}
@media (min-width: 1024px) {
  .page-header-box {
    width: 72.91vw;
  }
}
@media (min-width: 1920px) {
  .page-header-title {
    font-size: 64px;
  }
  .page-header-lead {
    font-size: 24px;
  }
}
.platforms {
  padding-left: var(--x-pad);
  padding-right: var(--x-pad);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.platforms-box {
  width: 100%;
  overflow: hidden;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

.platforms-list {
  display: flex;
  width: 100%;
}

.platform-item {
  display: block;
}

.platform-item img {
  max-width: 100%;
  width: auto;
  height: auto;
}

@media (max-width: 559px) {
  .platforms-list {
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .platform-li {
    padding: var(--x-pad);
    flex: 1 0 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .platform-item img {
    max-width: 90%;
  }
}
@media (min-width: 560px) {
  .platforms {
    --column-s-gap: 16px;
    --box-y-pad: 16px;
  }
  .platforms-list {
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    padding: var(--box-y-pad) var(--column-s-gap);
  }
  .platform-li {
    padding-left: var(--column-s-gap);
    padding-right: var(--column-s-gap);
  }
}
@media (min-width: 768px) {
  .platforms {
    --column-s-gap: 3.125vw;
    --box-y-pad: 24px;
  }
}
@media (min-width: 1280px) {
  .platforms {
    --box-y-pad: 48px;
  }
}
.description-text {
  margin-top: 16px;
  line-height: 1.5;
  font-weight: 400;
}

.description-text p:not(:fisrt-child) {
  margin-top: 0.78em;
}

.description-actions {
  margin-top: 32px;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-start;
}

.description-actions > *:not(:first-child) {
  margin-left: 8px;
}

.description-notice {
  font-weight: 400;
  font-size: 12px;
  color: #7F87A5;
}

@media (min-width: 768px) {
  .description-block {
    display: grid;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .description-block {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (min-width: 1024px) {
  .description-block {
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: 54% 1fr;
    gap: 48px;
  }
}
/* Consumer card */
.consumer-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: #F5F7FA;
  border-radius: var(--radius);
  text-align: center;
  transition: transform 0.2s;
  transform: scale(1);
}

.consumer-card:hover {
  transform: scale(1.025);
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1);
}

.consumer-list > li {
  display: contents;
}

@media (min-width: 1280px) {
  .consumer-card {
    padding: 48px 32px;
  }
}
.consumer-lead {
  font-weight: 400;
  line-height: 1.5;
}

.consumer-pic {
  flex-grow: 2;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 8px;
  margin-top: 10px;
}

.consumer-img {
  width: 100%;
  height: auto;
}

@media (min-width: 1024px) {
  .consumer-img {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 560px) {
  .consumer-list > li:nth-child(3n) .consumer-card {
    grid-column: 1/3;
  }
  .consumer-list > li:nth-child(3n) .consumer-card {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
  }
  .consumer-list > li:nth-child(3n) .consumer-card .consumer-pic {
    flex: 1 0 50%;
    padding-left: 40px;
  }
  .consumer-list > li:nth-child(3n) .consumer-card .consumer-head {
    flex: 1 0 50%;
    padding-right: 40px;
  }
  .consumer-list > li:nth-child(3n) .consumer-card .consumer-head .section-subhead,
  .consumer-list > li:nth-child(3n) .consumer-card .consumer-head .consumer-lead {
    text-align: left;
  }
}
@media (min-width: 1280px) {
  .consumer-list > li:nth-child(3n) .consumer-card {
    padding: 32px 48px;
  }
}
@media (min-width: 1400px) {
  .consumer-card {
    padding: 48px 32px;
  }
  .consumer-lead {
    font-weight: 400;
    line-height: 1.7;
  }
}
/* Layout */
.consumer-list {
  display: grid;
  width: 100%;
  grid-auto-rows: 1fr;
  gap: 16px;
}

@media (max-width: 559px) {
  .consumer-list {
    grid-template-columns: 100%;
  }
}
@media (min-width: 560px) {
  .consumer-list {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
  }
}
@media (min-width: 1400px) {
  .consumer-list {
    gap: 24px;
  }
}
@media (max-width: 767px) {
  .obsrv-block {
    display: flex;
    flex-direction: column;
  }
  .obsrv-block .two-col-data {
    order: 1;
    margin-top: 0;
  }
  .obsrv-block .two-col-pic {
    order: 2;
    margin-top: 48px;
  }
}
@media (min-width: 768px) {
  .obsrv-block {
    margin-top: 32px;
  }
  .obsrv-block .two-col-data {
    order: 1;
  }
  .obsrv-block .two-col-pic {
    order: 2;
  }
}
@media (min-width: 1400px) {
  .obsrv-block {
    margin-top: 48px;
  }
}
.num-list ol {
  counter-reset: count;
}

.num-list ol li {
  counter-increment: count 1;
  position: relative;
  padding-left: 42px;
}

.num-list ol li h3 {
  font-size: 18px;
  line-height: 1.5;
  font-family: "Prompt", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.num-list ol li p {
  font-size: 14px;
  line-height: 1.7;
  font-weight: 300;
}

.num-list ol li::before {
  content: counter(count, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  font-size: 18px;
  line-height: 1.6;
  font-family: "Prompt", sans-serif;
  font-weight: 600;
  font-style: normal;
  color: var(--color-accent);
}

.num-list ol li:not(:first-child) {
  margin-top: 24px;
}

@media (min-width: 1024px) {
  .num-list ol li h3 {
    margin-bottom: 8px;
  }
}
@media (min-width: 1024px) {
  .obsrv-block .two-col-image,
  .obsrv-table .two-col-image {
    width: 100%;
  }
}
.prm {
  text-align: center;
}

.prm-text {
  margin-top: 24px;
  font-size: 28px;
  line-height: 1.21;
  font-family: "Prompt", sans-serif;
  font-weight: 600;
  font-style: normal;
  margin-left: auto;
  margin-right: auto;
}

.prm-text a,
.prm-text strong {
  color: var(--color-accent);
  font-weight: inherit;
}

.prm-action {
  margin-top: 32px;
}

@media (min-width: 1024px) {
  .prm-text {
    font-size: 40px;
    line-height: 1.16;
    font-size: calc(28px + 12 * (100vw - 1024px) / 896);
    width: 80%;
  }
}
@media (max-width: 559px) {
  .demands-list .demand-card:not(:first-child) {
    margin-top: 24px;
  }
}
@media (min-width: 560px) {
  .demands-list {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (min-width: 768px) {
  .demands-list {
    gap: 36px;
  }
}
@media (min-width: 1024px) {
  .demands-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1280px) {
  .demands-list {
    gap: 48px;
  }
}
/* Demand Card */
.demand-card {
  display: flex;
}

.demand-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  min-width: 56px;
  height: 56px;
  background-color: #F5F7FA;
  border-radius: 16px;
}

.demand-pic {
  display: block;
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}

.demand-text {
  flex-grow: 2;
}

.demand-text h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  font-family: "Prompt", sans-serif;
}

.demand-text p {
  font-size: 14px;
  line-height: 1.7;
  font-weight: 300;
  color: #58638E;
}

.demand-text h3 + p {
  margin-top: 8px;
}

@media (max-width: 559px) {
  .demand-card {
    flex-flow: row nowrap;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .demand-icon {
    margin-right: 16px;
  }
}
@media (min-width: 560px) {
  .demand-card {
    display: block;
  }
  .demand-text {
    margin-top: 16px;
  }
}
@media (min-width: 1280px) {
  .demand-text h3 {
    font-size: 20px;
  }
  .demand-text p {
    font-size: 16px;
  }
}
.box-with-image-pic img {
  display: block;
  width: 100%;
  height: auto;
}

.box-with-image-text {
  font-weight: 400;
  line-height: 1.5;
}

@media (max-width: 767px) {
  .box-with-image {
    text-align: center;
  }
  .box-with-image-data {
    margin-top: 48px;
  }
  .box-with-image-text {
    margin-top: 16px;
  }
}
@media (min-width: 768px) {
  .box-with-image {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
  .box-with-image_reverse {
    flex-direction: row-reverse;
  }
  .box-with-image-pic {
    width: 45.88%;
    min-width: 45.88%;
    max-width: 45.88%;
  }
  .box-with-image-data {
    max-width: 49%;
    width: 49%;
    min-width: 49%;
  }
  .box-with-image-text {
    margin-top: 24px;
  }
}
@media (min-width: 1400px) {
  .box-with-image-text {
    font-size: 18px;
  }
}
.multi-image-pic img {
  display: block;
  width: 100%;
  height: auto;
}

.multi-image-head {
  font-family: "Prompt", sans-serif;
  font-weight: 600;
  line-height: 1.25;
}

.multi-image-head strong {
  font-weight: inherit;
  color: var(--color-accent);
}

.multi-image-head {
  font-size: 24px;
}

.multi-image-text {
  margin-top: 24px;
}

.multi-image-text {
  line-height: 1.5;
  font-weight: 400;
}

@media (max-width: 767px) {
  .multi-image-box {
    text-align: center;
  }
  .multi-image-data {
    margin-top: 48px;
  }
  .multi-image-head {
    font-size: 24px;
  }
  .multi-image-text {
    margin-top: 24px;
  }
}
@media (min-width: 768px) {
  .multi-image-box {
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
  }
  .multi-image-pic {
    width: 52%;
    min-width: 52%;
    max-width: 52%;
  }
  .multi-image-pic img {
    display: block;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
  .multi-image-data {
    padding-left: 48px;
  }
}
@media (min-width: 1400px) {
  .multi-image-head {
    font-size: calc(24px + 8 * (100vw - 1400px) / 520);
  }
  .multi-image-text {
    font-size: 18px;
  }
}
@media (max-width: 559px) {
  .campaigns-list .campaign-card:not(:first-child) {
    margin-top: 24px;
  }
}
@media (min-width: 560px) {
  .campaigns-list {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (min-width: 768px) {
  .campaigns-list {
    gap: 36px;
  }
}
@media (min-width: 1024px) {
  .campaigns-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1280px) {
  .campaigns-list {
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-start;
    justify-content: space-between;
  }
  .campaign-card {
    width: 16%;
    min-width: 16%;
    max-width: 16%;
  }
}
/* Demand Card */
.campaign-card {
  display: flex;
}

.campaign-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  min-width: 56px;
  height: 56px;
  background-color: #FEEAE3;
  border-radius: 16px;
}

.campaign-pic {
  display: block;
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}

.campaign-text {
  flex-grow: 2;
}

.campaign-text h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  font-family: "Prompt", sans-serif;
}

.campaign-text p {
  font-size: 14px;
  line-height: 1.7;
  font-weight: 300;
  color: #58638E;
}

.campaign-text h3 + p {
  margin-top: 8px;
}

@media (max-width: 559px) {
  .campaign-card {
    flex-flow: row nowrap;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .campaign-icon {
    margin-right: 16px;
  }
}
@media (min-width: 560px) {
  .campaign-card {
    display: block;
  }
  .campaign-text {
    margin-top: 16px;
  }
}
@media (min-width: 1280px) {
  .campaign-text h3 {
    font-size: 18px;
  }
  .campaign-text p {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .advertising-item:not(:first-child) {
    margin-top: 16px;
  }
}
@media (min-width: 768px) {
  .advertising-list {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, auto);
    gap: 16px;
  }
  .advertising-item:nth-child(1) {
    grid-column: 1/2;
    grid-row: 1/2;
  }
  .advertising-item:nth-child(2) {
    grid-column: 1/2;
    grid-row: 2/4;
  }
  .advertising-item:nth-child(3) {
    grid-column: 2/3;
    grid-row: 1/3;
  }
  .advertising-item:nth-child(4) {
    grid-column: 2/3;
    grid-row: 3/4;
  }
  .advertising-item:nth-child(5) {
    grid-column: 3/4;
    grid-row: 1/2;
  }
  .advertising-item:nth-child(6) {
    grid-column: 3/4;
    grid-row: 2/4;
  }
}
/* Card */
.advertising-item {
  counter-increment: count 1;
  padding: 25px;
  border-radius: 24px;
  background-color: var(--color-dark);
  color: var(--color-light);
}

.advertising-item::before {
  content: counter(count, decimal-leading-zero);
  font-family: "Prompt", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
  display: block;
  color: #FF9652;
}

.advertising-title,
.advertising-text {
  margin-top: 8px;
}

.advertising-title {
  font-family: "Prompt", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
}

.advertising-text {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
}

.advertising-text ul {
  padding-left: 1.5em;
}

.advertising-text ul li {
  display: list-item;
  list-style-type: disc;
}

.advertising-text ul li:not(:first-child) {
  margin-top: 0.5em;
}

@media (min-width: 1400px) {
  .advertising-list {
    gap: 24px;
  }
  .advertising-item {
    padding: 32px;
  }
  .advertising-item::before {
    font-size: 32px;
  }
  .advertising-title {
    font-size: 20px;
  }
  .advertising-text {
    font-size: 16px;
  }
}
.page-header.page-header-system {
  background-color: var(--color-bg-secondary);
}

.page-header-system .page-header-box {
  display: block;
  text-align: center;
  padding: 48px var(--x-pad);
}

.page-header.page-header-system + .section {
  margin-top: 24px;
}

.post-content {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: #58638E;
}

.post-content p:not(:first-child),
.post-content ul:not(:first-child),
.post-content ol:not(:first-child) {
  margin-top: 1.14em;
}

.post-content h2,
.post-content h3 {
  font-weight: 600;
  line-height: 1.5;
  margin-top: 1.7em;
}

.post-content h2 {
  font-size: 18px;
}

.post-content h3 {
  font-size: 16px;
}

.post-content ul,
.post-content ol {
  margin-left: 1.5em;
}

.post-content ul li:not(:first-child),
.post-content ol li:not(:first-child) {
  margin-top: 0.75em;
}

.post-content ul {
  list-style-type: disc;
}

.post-content ol {
  list-style-type: decimal;
}

.post-content a {
  font-weight: 600;
  text-decoration: underline;
}

.post-content a:hover,
.post-content a:focus {
  text-decoration: none;
}

@media (min-width: 1280px) {
  .page-header.page-header-system + .section {
    margin-top: 80px;
  }
  .post-content {
    font-size: 16px;
  }
  .post-content h2 {
    font-size: 20px;
  }
  .post-content h3 {
    font-size: 18px;
  }
}
.shadow,
.popup {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease-in-out, visibility 0s 0.2s;
}

.popup-open .shadow,
.popup-open .popup {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.2s ease-in-out;
}

.shadow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(39, 50, 94, 0.5);
  z-index: 9998;
}

.popup {
  position: absolute;
  top: var(--x-pad);
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 9999;
  background-color: #fff;
  padding: 40px 16px;
  border-radius: 16px;
  width: calc(100% - var(--x-pad) * 2);
  max-width: 570px;
}

.popup-close {
  display: block;
  position: absolute;
  top: 16px;
  right: 16px;
  width: 16px;
  height: 16px;
  cursor: pointer;
  margin: 0;
  padding: 0;
  border: 0 none;
  outline: 0 none;
  background: transparent none;
  color: #D0D4E3;
  transition: color 0.2s ease-in-out;
}

.popup-close:hover,
.popup-close:focus {
  color: var(--color-dark);
}

.popup-close svg {
  display: block;
  width: 100%;
  height: auto;
}

.popup-title {
  font-family: "Prompt", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 24px;
  line-height: 1.3;
  text-align: center;
}

.popup-lead {
  margin-top: 8px;
  line-height: 1.5;
  font-weight: 400;
  text-align: center;
}

.popup-form {
  margin-top: 24px;
}

.popup-action {
  margin-top: 24px;
  text-align: center;
}

.popup-icon {
  width: 80px;
  margin: 0 auto 8px;
}

.popup-icon img {
  display: block;
  width: 80px;
  height: 80px;
}

@media (min-width: 768px) {
  .popup {
    padding: 40px;
  }
  .popup-title {
    font-size: 32px;
    line-height: 1.25;
  }
  .popup-lead {
    margin-top: 16px;
    font-size: 18px;
    line-height: 1.7;
  }
  .popup-form {
    margin-top: 32px;
  }
  .popup-icon {
    width: 128px;
    margin: 0 auto 16px;
  }
  .popup-icon img {
    display: block;
    width: 128px;
    height: 128px;
  }
}

