/* 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/10/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 of focused elements when they are also in an
 * active/hover state.
 */
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: bold;
}

/**
 * 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.
 */
input[type='search'] {
  -webkit-appearance: textfield;
  /* 1 */
  box-sizing: content-box;
  /* 2 */
}

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

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

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

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

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

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

td,
th {
  padding: 0;
}

@font-face {
  font-family: 'Helvetica Neue';
  src:
    url('/wp-content/pages/direct-mail/helvetica-bold.woff2') format('woff2'),
    url('/wp-content/pages/direct-mail/helvetica-bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Helvetica Neue';
  src:
    url('/wp-content/pages/direct-mail/helvetica-bold-italic.woff2')
      format('woff2'),
    url('/wp-content/pages/direct-mail/helvetica-bold-italic.woff')
      format('woff');
  font-weight: 700;
  font-style: italic;
}

@font-face {
  font-family: 'Helvetica Neue';
  src:
    url('/wp-content/pages/direct-mail/helvetica-regular.woff2') format('woff2'),
    url('/wp-content/pages/direct-mail/helvetica-regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Helvetica Neue';
  src:
    url('/wp-content/pages/direct-mail/helvetica-regular-italic.woff2')
      format('woff2'),
    url('/wp-content/pages/direct-mail/helvetica-regular-italic.woff')
      format('woff');
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: 'icomoon';
  src: url('/wp-content/pages/direct-mail/icomoon.eot?a9vezs');
  src:
    url('/wp-content/pages/direct-mail/icomoon.eot?a9vezs#iefix')
      format('embedded-opentype'),
    url('/wp-content/pages/direct-mail/icomoon.ttf?a9vezs') format('truetype'),
    url('/wp-content/pages/direct-mail/icomoon.woff?a9vezs') format('woff'),
    url('/wp-content/pages/direct-mail/icomoon.svg?a9vezs#icomoon')
      format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^='ico-'],
[class*=' ico-'] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.ico-star:before {
  content: '\e900';
  color: #fff;
}

#header .menu,
.title-section .legend-list,
.prefooter-section .decoration-block .star-block {
  margin: 0;
  padding: 0;
  list-style: none;
}

.clearfix:after {
  content: '';
  display: block;
  clear: both;
}

.ellipsis {
  white-space: nowrap;
  /* 1 */
  text-overflow: ellipsis;
  /* 2 */
  overflow: hidden;
}

html {
  box-sizing: border-box;
}

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

* {
  max-height: 1000000px;
}

body {
  color: #000;
  background: #fff;
  font:
    28px/1.21 'Helvetica Neue',
    'Helvetica',
    'Arial',
    sans-serif;
  min-width: 320px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

.gm-style img {
  max-width: none;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6,
.h {
  font-family: inherit;
  font-weight: bold;
  margin: 0 0 0.5em;
  color: inherit;
}

h1,
.h1 {
  font-size: 30px;
}

h2,
.h2 {
  font-size: 27px;
}

h3,
.h3 {
  font-size: 24px;
}

h4,
.h4 {
  font-size: 21px;
}

h5,
.h5 {
  font-size: 17px;
}

h6,
.h6 {
  font-size: 15px;
}

#wrapper p {
  margin: 0 0 1em;
}

a {
  color: inherit;
}
a:hover,
a:focus {
  text-decoration: none;
}

form,
fieldset {
  margin: 0;
  padding: 0;
  border-style: none;
}

input[type='text'],
input[type='tel'],
input[type='email'],
input[type='search'],
input[type='password'],
textarea {
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  box-sizing: border-box;
  border: 1px solid #707070;
  padding: 0.4em 0.7em;
}
input[type='text']:focus,
input[type='tel']:focus,
input[type='email']:focus,
input[type='search']:focus,
input[type='password']:focus,
textarea:focus {
  border-color: #000;
}
input[type='text']::-webkit-input-placeholder,
input[type='tel']::-webkit-input-placeholder,
input[type='email']::-webkit-input-placeholder,
input[type='search']::-webkit-input-placeholder,
input[type='password']::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #707070;
}
input[type='text']::-moz-placeholder,
input[type='tel']::-moz-placeholder,
input[type='email']::-moz-placeholder,
input[type='search']::-moz-placeholder,
input[type='password']::-moz-placeholder,
textarea::-moz-placeholder {
  opacity: 1;
  color: #707070;
}
input[type='text']:-moz-placeholder,
input[type='tel']:-moz-placeholder,
input[type='email']:-moz-placeholder,
input[type='search']:-moz-placeholder,
input[type='password']:-moz-placeholder,
textarea:-moz-placeholder {
  color: #707070;
}
input[type='text']:-ms-input-placeholder,
input[type='tel']:-ms-input-placeholder,
input[type='email']:-ms-input-placeholder,
input[type='search']:-ms-input-placeholder,
input[type='password']:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #707070;
}
input[type='text'].placeholder,
input[type='tel'].placeholder,
input[type='email'].placeholder,
input[type='search'].placeholder,
input[type='password'].placeholder,
textarea.placeholder {
  color: #707070;
}

select {
  -webkit-border-radius: 0;
}

textarea {
  resize: vertical;
  vertical-align: top;
}

button,
input[type='button'],
input[type='reset'],
input[type='file'],
input[type='submit'] {
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  cursor: pointer;
}

body {
  counter-reset: section;
  font-size: 24px;
  line-height: 1.13;
}
@media (min-width: 768px) {
  body {
    font-size: 26px;
  }
}
@media (min-width: 1550px) {
  body {
    font-size: 28px;
    line-height: 1.11;
  }
}

h1 {
  font-size: 45px;
  line-height: 1.01;
  color: #e71618 !important;
}
@media (min-width: 390px) {
  h1 {
    font-size: 57px;
  }
}
@media (min-width: 1200px) {
  h1 {
    font-size: 65px;
  }
}
@media (min-width: 1550px) {
  h1 {
    font-size: 75px;
  }
}

h2 {
  font-size: 40px;
  line-height: 1.13;
}
@media (max-width: 389px) {
  h2 {
    font-size: 32px;
  }
}
@media (min-width: 768px) {
  h2 {
    font-size: 50px;
  }
}
@media (min-width: 1550px) {
  h2 {
    font-size: 75px;
    line-height: 1.01;
  }
}

#prefooter .heading-holder h2 {
  color: white;
  margin-bottom: 0.5em;
}

h3 {
  font-size: 30px;
  line-height: 1.28;
}
@media (min-width: 768px) {
  h3 {
    font-size: 35px;
  }
}
@media (min-width: 1200px) {
  h3 {
    font-size: 40px;
    line-height: 1.21;
  }
}

h4 {
  font-size: 26px;
  line-height: 1.28;
}
@media (min-width: 768px) {
  h4 {
    font-size: 31px;
  }
}
@media (min-width: 1200px) {
  h4 {
    font-size: 36px;
    line-height: 1.21;
  }
}

h5 {
  font-size: 22px;
  line-height: 1.28;
}
@media (min-width: 768px) {
  h5 {
    font-size: 27px;
  }
}
@media (min-width: 1200px) {
  h5 {
    font-size: 32px;
    line-height: 1.21;
  }
}
h3,
h6 {
  font-size: 18px;
  line-height: 1.28;
}
@media (min-width: 768px) {
  h3,
  h6 {
    font-size: 22px;
  }
}
@media (min-width: 1024px) {
  #wrapper h3,
  #wrapper h6 {
    margin: 0 0 1.1em;
  }
}
@media (min-width: 1200px) {
  h3,
  h6 {
    font-size: 24px;
  }
}
@media (min-width: 1550px) {
  h3,
  h6 {
    font-size: 28px;
    line-height: 1.21;
  }
}

.container {
  max-width: 1060px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
@media (min-width: 390px) {
  .container {
    padding: 0 35px;
  }
}
@media (min-width: 480px) {
  .container {
    padding: 0 45px;
  }
}
@media (min-width: 1200px) {
  .container {
    padding: 0 35px;
  }
}
@media (min-width: 1550px) {
  .container {
    max-width: 1260px;
  }
}

.btn-weber {
  -webkit-transition: box-shadow 0.2s ease-in-out;
  transition: box-shadow 0.2s ease-in-out;
  display: inline-block;
  background: #fff;
  border: none;
  padding: 17px 15px;
  font-weight: 700;
  font-size: 20px;
  line-height: 22px;
  color: #005c97;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  outline: none;
}
@media (min-width: 768px) {
  .btn-weber {
    font-size: 24px;
    padding: 25px 20px;
  }
}
@media (min-width: 1550px) {
  .btn-weber {
    padding: 30px 35px;
    font-size: 36px;
    line-height: 40px;
  }
}
.btn-weber:hover,
.btn-weber:focus {
  text-decoration: none;
  box-shadow: inset 0 0 30px 0 rgba(0, 92, 151, 0.7);
}

.heading-block {
  max-width: 670px;
  margin: 0 0 30px;
}
@media (min-width: 650px) {
  .heading-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0 15px;
  }
}
@media (min-width: 1024px) {
  .heading-block {
    margin: 0;
  }
}
@media (min-width: 1200px) {
  .heading-block {
    margin: 0 0 30px;
    gap: 0 30px;
  }
}
@media (min-width: 1550px) {
  .heading-block {
    max-width: 995px;
    margin: 0 0 45px;
    gap: 0 70px;
  }
}
@media (min-width: 650px) {
  .heading-block h2 {
    margin: 0;
  }
}
.heading-block ~ .post-block {
  max-width: 980px;
  font-size: 24px;
  line-height: 1.13;
  color: #005c97;
}
@media (min-width: 650px) {
  .heading-block ~ .post-block {
    font-size: 20px;
  }
}
@media (min-width: 768px) {
  .heading-block ~ .post-block {
    font-size: 26px;
  }
}
@media (min-width: 1024px) {
  .heading-block ~ .post-block {
    font-size: 30px;
  }
}
@media (min-width: 1550px) {
  .heading-block ~ .post-block {
    font-size: 36px;
  }
}
@media (max-width: 389px) {
  .heading-block ~ .post-block {
    font-size: 18px;
  }
}
.heading-block .number-block {
  margin: 0 0 10px -10px;
}
@media (min-width: 650px) {
  .heading-block .number-block {
    margin: 0;
  }
}
.heading-block .number-block .number-holder {
  position: relative;
  background: none;
  font-weight: 700;
  font-size: 132px;
  line-height: 1.15;
  color: #005c97;
}
@media (min-width: 650px) {
  .heading-block .number-block .number-holder {
    font-size: 100px;
  }
}
@media (min-width: 1024px) {
  .heading-block .number-block .number-holder {
    font-size: 150px;
  }
}
@media (min-width: 1550px) {
  .heading-block .number-block .number-holder {
    font-size: 186px;
  }
}
.heading-block .number-block .number-holder:before {
  position: relative;
  content: '';
  counter-increment: section;
  content: counter(section);
  z-index: 10;
}
.heading-block .number-block .number-holder img {
  position: absolute;
  top: 50%;
  left: 100%;
  width: 285px;
  max-width: none;
  -webkit-transform: scaleX(-1) translateY(-50%);
  -ms-transform: scaleX(-1) translateY(-50%);
  transform: scaleX(-1) translateY(-50%);
}
@media (min-width: 650px) {
  .heading-block .number-block .number-holder img {
    left: auto;
    right: 40%;
    width: 220px;
    -webkit-transform: scaleX(1) translateY(-50%);
    -ms-transform: scaleX(1) translateY(-50%);
    transform: scaleX(1) translateY(-50%);
  }
}
@media (min-width: 1024px) {
  .heading-block .number-block .number-holder img {
    right: 40%;
    width: 335px;
  }
}
@media (min-width: 1200px) {
  .heading-block .number-block .number-holder img {
    right: 10%;
  }
}
@media (min-width: 1400px) {
  .heading-block .number-block .number-holder img {
    right: 106%;
    width: 355px;
  }
}

#header .menu {
  counter-reset: number;
  position: fixed;
  top: 95px;
  right: 0;
  font-size: 20px;
  line-height: 1.13;
  letter-spacing: 0.03em;
  color: #fff;
  text-transform: uppercase;
  -webkit-transform: translateX(285px);
  -ms-transform: translateX(285px);
  transform: translateX(285px);
  z-index: 999;
}
@media (min-width: 1550px) {
  #header .menu {
    font-size: 28px;
    -webkit-transform: translateX(200px);
    -ms-transform: translateX(200px);
    transform: translateX(200px);
  }
}
@media (max-width: 479px) {
  #header .menu {
    display: none;
  }
}
#header .menu li {
  -webkit-transition:
    background 0.2s ease-in-out,
    -webkit-transform 0.2s ease-in-out;
  transition:
    background 0.2s ease-in-out,
    -webkit-transform 0.2s ease-in-out;
  transition:
    background 0.2s ease-in-out,
    transform 0.2s ease-in-out;
  transition:
    background 0.2s ease-in-out,
    transform 0.2s ease-in-out,
    -webkit-transform 0.2s ease-in-out;
  background: #005c97;
  margin: 0 0 2px;
  width: 325px;
  border-left: 4px solid #5ac6e9;
  text-indent: -9999px;
}
@media (min-width: 1550px) {
  #header .menu li {
    width: 375px;
  }
}
#header .menu li:hover {
  text-indent: 0;
}
@media (min-width: 650px) {
  #header .menu li:hover {
    -webkit-transform: translateX(-285px);
    -ms-transform: translateX(-285px);
    transform: translateX(-285px);
  }
}
@media (min-width: 1550px) {
  #header .menu li:hover {
    -webkit-transform: translateX(-200px);
    -ms-transform: translateX(-200px);
    transform: translateX(-200px);
  }
}
#header .menu li.anchor-active {
  background: #031d53;
}
#header .menu a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0 20px;
  padding: 10px 9px;
  min-height: 100px;
  text-decoration: none;
}
@media (min-width: 1550px) {
  #header .menu a {
    min-height: 120px;
    padding: 10px;
  }
}
#header .menu a:hover,
#header .menu a:focus {
  text-decoration: none;
}
#header .menu .number {
  font-weight: 700;
  font-size: 32px;
  text-indent: 0;
}
@media (min-width: 1024px) {
  #header .menu .number {
    font-size: 36px;
  }
}
@media (min-width: 1550px) {
  #header .menu .number {
    font-size: 75px;
  }
}
#header .menu .number:not(.ico-star):before {
  content: '';
  counter-increment: number;
  content: counter(number);
}
#header .menu .number.ico-star {
  margin: -4px 0 0;
  font-size: 90%;
}
@media (min-width: 1550px) {
  #header .menu .number.ico-star {
    font-size: 130%;
  }
}

.intro-section {
  position: relative;
  background: transparent -webkit-linear-gradient(
      top,
      #eeeeee00 0,
      #f0f0f0 100%
    );
  background: transparent linear-gradient(180deg, #eeeeee00 0, #f0f0f0 100%);
  font-weight: 700;
  color: #005c97;
  overflow: hidden;
}
@media (min-width: 768px) {
  .intro-section {
    background: #fff;
  }
}
@media (min-width: 768px) {
  .intro-section:before {
    content: '';
    background: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 13px;
    border-top: 6px solid #e71618;
    border-bottom: 3px solid #005c97;
    z-index: 10;
  }
}
@media (min-width: 1024px) {
  .intro-section h1 {
    margin: 0 -25px 0.4em 0;
  }
}
@media (min-width: 1024px) {
  .intro-section p {
    margin: 0 -35px 1em 0;
  }
}
.intro-section .heading-holder {
  border-bottom: 2px solid #005c97;
  margin: 0 0 30px;
}
@media (min-width: 768px) {
  .intro-section .heading-holder {
    margin: 0 0 25px;
  }
}
.intro-section .columns-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
@media (min-width: 768px) {
  .intro-section .columns-block {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0 15px;
  }
}
.intro-section .post-column {
  position: relative;
  padding: 40px 0 160px;
  margin: 0 0 -1em;
  z-index: 15;
}
@media (min-width: 650px) {
  .intro-section .post-column {
    padding: 30px 0;
  }
}
@media (min-width: 768px) {
  .intro-section .post-column {
    position: unset;
    width: 50%;
    max-width: 385px;
  }
}
@media (min-width: 1024px) {
  .intro-section .post-column {
    width: 40%;
  }
}
.intro-section .img-column {
  position: relative;
  height: 470px;
  margin: 0 -20px;
}
@media (min-width: 390px) {
  .intro-section .img-column {
    margin: 0 -35px;
  }
}
@media (min-width: 480px) {
  .intro-section .img-column {
    margin: 0 -45px;
  }
}
@media (min-width: 768px) {
  .intro-section .img-column {
    width: 50%;
    margin: 0;
    height: 450px;
  }
}
@media (min-width: 1024px) {
  .intro-section .img-column {
    width: 60%;
    min-height: 550px;
  }
}
@media (min-width: 1550px) {
  .intro-section .img-column {
    min-height: 710px;
  }
}
@media (max-width: 767px) {
  .intro-section .img-column:before {
    content: '';
    background: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 13px;
    border-top: 6px solid #e71618;
    border-bottom: 3px solid #005c97;
    z-index: 10;
  }
}
.intro-section .img-column .inner {
  height: 100%;
}
@media (min-width: 768px) {
  .intro-section .img-column .inner {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(50vw + 44%);
    margin: 0 0 0 -20%;
  }
}
@media (min-width: 1024px) {
  .intro-section .img-column .inner {
    width: calc(50vw + 49%);
    margin: 0 0 0 -31%;
  }
}
@media (min-width: 768px) {
  .intro-section .img-column .inner:before {
    width: 100%;
    height: 100%;
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: -webkit-linear-gradient(
      10deg,
      white 0,
      white 10%,
      rgba(255, 255, 255, 0) 30%,
      rgba(255, 255, 255, 0) 100%
    );
    background: linear-gradient(
      80deg,
      white 0,
      white 10%,
      rgba(255, 255, 255, 0) 30%,
      rgba(255, 255, 255, 0) 100%
    );
    z-index: 5;
  }
}
.intro-section .img-column img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .intro-section .img-column img {
    position: absolute;
    top: 0;
    left: 0;
    object-position: 17% center;
    -webkit-transform: scale(1.2) translateY(-9%);
    -ms-transform: scale(1.2) translateY(-9%);
    transform: scale(1.2) translateY(-9%);
  }
}
@media (min-width: 768px) {
  .intro-section .img-column img {
    object-position: center 90%;
  }
}
@media (min-width: 1024px) {
  .intro-section .img-column img {
    object-position: center 84%;
  }
}

.mail-section {
  position: relative;
  padding: 0 0 55px;
  font-size: 24px;
  line-height: 1.13;
}
@media (min-width: 650px) {
  .mail-section {
    padding: 50px 0;
    font-size: 20px;
  }
}
@media (min-width: 768px) {
  .mail-section {
    font-size: 26px;
  }
}
@media (min-width: 1024px) {
  .mail-section {
    font-size: 30px;
  }
}
@media (min-width: 1550px) {
  .mail-section {
    padding: 60px 0 90px;
    font-size: 36px;
    line-height: 1.11;
  }
}
@media (max-width: 389px) {
  .mail-section {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .mail-section p {
    padding: 0 30px 0 0;
  }
}
.mail-section .img-holder {
  width: 170px;
  height: 170px;
  background: #bde6f1;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 8px 18px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .mail-section .img-holder {
    width: 220px;
    height: 220px;
    padding: 0 11px 18px;
  }
}
.mail-section .columns-block {
  margin: -85px 0 0;
}
@media (min-width: 650px) {
  .mail-section .columns-block {
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0 15px;
  }
}
@media (min-width: 1024px) {
  .mail-section .columns-block {
    gap: 0 55px;
  }
}
.mail-section .columns-block .img-column {
  margin: 0 0 40px;
}
@media (min-width: 650px) {
  .mail-section .columns-block .img-column {
    width: 170px;
    margin: 0;
  }
}
@media (min-width: 650px) {
  .mail-section .columns-block .post-column {
    width: calc(100% - 185px);
    margin: 0 0 -1em;
  }
}
@media (min-width: 1024px) {
  .mail-section .columns-block .post-column {
    width: calc(100% - 275px);
  }
}

.post-section {
  position: relative;
  background: #005c97;
  padding: 65px 0;
  font-size: 18px;
  color: #fff;
}
@media (min-width: 768px) {
  .post-section {
    font-size: 23px;
  }
}
@media (min-width: 1550px) {
  .post-section {
    padding: 100px 0 135px;
    font-size: 28px;
    line-height: 1.14;
  }
}
.post-section strong {
  display: inline-block;
  margin: 0 0 1em;
}
.post-section .bg-holder {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.2;
}
@media (min-width: 1024px) {
  .post-section .bg-holder {
    opacity: 0.1;
  }
}
.post-section .bg-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.post-section .post-block {
  max-width: 1090px;
  margin: 0 0 -1em;
}
@media (min-width: 650px) {
  .post-section .post-block {
    border-left: 4px solid #74c4e5;
    padding: 0 0 0 15px;
  }
}
@media (min-width: 1024px) {
  .post-section .post-block {
    padding: 0 0 0 30px;
  }
}

.banner-section {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .banner-section {
    min-height: 400px;
  }
}
@media (min-width: 1550px) {
  .banner-section {
    min-height: 570px;
  }
}
.banner-section img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: center 35%;
}
@media (min-width: 650px) {
  .banner-section img {
    object-position: center 34.5%;
  }
}

.title-section {
  padding: 5px 0 135px;
  font-size: 14px;
  line-height: 1.14;
  color: #000;
  overflow: hidden;
}
@media (min-width: 650px) {
  .title-section {
    padding: 30px 0;
  }
}
@media (min-width: 768px) {
  .title-section {
    font-size: 18px;
  }
}
@media (min-width: 1024px) {
  .title-section {
    font-size: 23px;
  }
}
@media (min-width: 1550px) {
  .title-section {
    padding: 70px 0 50px;
    font-size: 28px;
  }
}
.title-section h1,
.title-section h2,
.title-section h3,
.title-section h4,
.title-section h5,
.title-section h6 {
  color: #005c97;
}
.title-section .legend-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 12px;
  line-height: 1.15;
}
@media (min-width: 768px) {
  .title-section .legend-list {
    font-size: 13px;
  }
}
@media (min-width: 1024px) {
  .title-section .legend-list {
    font-size: 14px;
    margin: 10px 0 0;
  }
}
.title-section .legend-list li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 0 10px;
  margin: 0 6px 5px 0;
}
.title-section .legend-list li:before {
  width: 18px;
  height: 18px;
  min-width: 18px;
  content: '';
  display: block;
  background: #707070;
}
.title-section .legend-list li:not(:only-child) {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 calc(50% - 3px);
  flex: 1 1 calc(50% - 3px);
}
.title-section .legend-list li:last-child {
  margin: 0;
}
.title-section .legend-list li:nth-child(1):nth-last-child(3),
.title-section .legend-list li:nth-child(2):nth-last-child(2),
.title-section .legend-list li:nth-child(3):nth-last-child(1) {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 calc(33.333% - 12px);
  flex: 1 1 calc(33.333% - 12px);
}
.title-section .legend-list li.red-box:before {
  background: #e71618;
}
.title-section .legend-list li.blue-box:before {
  background: #005c97;
}
.title-section .legend-list li.light-blue-box:before {
  background: #5ac6e9;
}
.title-section .circle-holder {
  line-height: 0;
}
.title-section .circle-holder .animation {
  position: relative;
  width: 140px;
  height: 140px;
}
@media (min-width: 1024px) {
  .title-section .circle-holder .animation {
    width: 180px;
    height: 180px;
  }
}
@media (min-width: 1550px) {
  .title-section .circle-holder .animation {
    width: 200px;
    height: 200px;
  }
}
.title-section .circle-holder .animation:before {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  bottom: 4px;
  right: 4px;
  border-radius: 50%;
  border: 2px solid #74c4e5;
}
@media (min-width: 1024px) {
  .title-section .circle-holder .animation:before {
    top: 6px;
    left: 6px;
    bottom: 6px;
    right: 6px;
  }
}
.title-section .circle-holder .animation .percent {
  background: #005c97;
  border-radius: 50%;
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  font-size: 36px;
}
@media (min-width: 1024px) {
  .title-section .circle-holder .animation .percent {
    font-size: 46px;
    width: calc(100% - 45px);
    height: calc(100% - 45px);
    outline-offset: 15px;
  }
}
.title-section .circle-holder .animation .arrow {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.title-section .circle-holder .animation .arrow .triangle {
  height: 0;
  width: 0;
  border-bottom: 9px solid transparent;
  border-left: 10px solid #e71618;
  border-top: 9px solid transparent;
  position: absolute;
  top: -5px;
  left: 50%;
  z-index: 5;
}
@media (min-width: 1024px) {
  .title-section .circle-holder .animation .arrow .triangle {
    height: 0;
    width: 0;
    border-bottom: 11px solid transparent;
    border-left: 13px solid #e71618;
    border-top: 11px solid transparent;
    top: -4px;
  }
}
.title-section .circle-holder .animation .progressbar {
  position: relative;
  z-index: 1;
}
.title-section .circle-holder .animation .progressbar canvas {
  width: 100% !important;
  height: 100% !important;
}
.title-section .title-block {
  font-size: 18px;
  line-height: 1.22;
}
@media (min-width: 650px) {
  .title-section .title-block {
    font-size: 14px;
  }
}
@media (min-width: 768px) {
  .title-section .title-block {
    font-size: 18px;
  }
}
@media (min-width: 1024px) {
  .title-section .title-block {
    font-size: 23px;
  }
}
@media (min-width: 1550px) {
  .title-section .title-block {
    font-size: 28px;
    line-height: 1.21;
  }
}
@media (max-width: 767px) {
  .title-section .title-block > p {
    display: none;
  }
}
.title-section .graph-columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 10px;
}
@media (min-width: 1024px) {
  .title-section .graph-columns {
    gap: 0 28px;
  }
}
.title-section .graph-columns p {
  display: inline-block;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.title-section .graph-columns .column {
  width: calc(50% - 5px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.title-section .graph-holder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  font-weight: 700;
  text-align: center;
  font-size: 28px;
  color: #000;
  margin: 0 0 15px;
  min-height: 240px;
  overflow: hidden;
}
@media (min-width: 650px) {
  .title-section .graph-holder {
    font-size: 19px;
  }
}
@media (min-width: 768px) {
  .title-section .graph-holder {
    font-size: 24px;
    margin: 0 0 20px;
  }
}
@media (min-width: 1200px) {
  .title-section .graph-holder {
    font-size: 28px;
  }
}
.title-section .graph-holder .animation {
  -webkit-transition: -webkit-transform 1s ease-in-out;
  transition: -webkit-transform 1s ease-in-out;
  transition: transform 1s ease-in-out;
  transition:
    transform 1s ease-in-out,
    -webkit-transform 1s ease-in-out;
  width: 50%;
  background: #e71618;
  padding: 20px 5px;
  height: 240px;
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
}
.title-section .graph-holder .animation:nth-child(2) {
  background: #5ac6e9;
  height: 190px;
}
.title-section .graph-holder .animation .arrow,
.title-section .graph-holder .animation .progressbar {
  display: none;
}
.title-section .graph-holder.graph-02 .animation {
  height: 225px;
}
.title-section .graph-holder.graph-02 .animation:nth-child(2) {
  height: 160px;
}
.title-section .graph-holder.graph-03 .animation {
  height: 190px;
}
@media (min-width: 650px) {
  .title-section .graph-holder.graph-03 .animation {
    height: 165px;
  }
}
.title-section .graph-holder.graph-03 .animation:nth-child(2) {
  height: 240px;
}
@media (min-width: 650px) {
  .title-section .graph-holder.graph-03 .animation:nth-child(2) {
    height: 215px;
  }
}
.title-section .graph-holder.in-viewport .animation {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.title-section .animation-block {
  display: -ms-grid;
  display: grid;
  grid-template:
    'title'
    'circle'
    'post';
  border-bottom: 2px solid #005c97;
  padding: 0 0 20px;
  margin: 0 0 15px;
}
@media (min-width: 390px) {
  .title-section .animation-block {
    grid-template:
      'title title'
      'circle post';
    -ms-grid-rows: auto 1fr;
    grid-template-rows: auto 1fr;
    -ms-grid-columns: 140px 1fr;
    grid-template-columns: 140px 1fr;
    gap: 0 25px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
@media (min-width: 768px) {
  .title-section .animation-block {
    grid-template:
      'circle title'
      'circle post';
    -ms-grid-rows: auto 1fr;
    grid-template-rows: auto 1fr;
    -ms-grid-columns: 140px 1fr;
    grid-template-columns: 140px 1fr;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
@media (min-width: 1024px) {
  .title-section .animation-block {
    -ms-grid-columns: 180px 1fr;
    grid-template-columns: 180px 1fr;
    gap: 0 40px;
    padding: 0 0 45px;
    margin: 0 0 55px;
  }
}
@media (min-width: 1550px) {
  .title-section .animation-block {
    -ms-grid-columns: 200px 1fr;
    grid-template-columns: 200px 1fr;
    gap: 0 60px;
  }
}
@media (min-width: 650px) {
  .title-section .animation-block:last-child {
    margin: 0;
    padding: 0;
    border: none;
  }
}
.title-section .animation-block .circle-holder,
.title-section .animation-block .graph-block {
  grid-area: circle;
  margin: 0 0 15px;
}
@media (min-width: 390px) {
  .title-section .animation-block .circle-holder,
  .title-section .animation-block .graph-block {
    margin: 0;
  }
}
.title-section .animation-block .title-holder {
  grid-area: title;
}
.title-section .animation-block .post-holder {
  grid-area: post;
  margin: 0 0 -1em;
}
.title-section .columns-block {
  border-top: 2px dashed #005c97;
  padding: 20px 0 0;
  margin: 35px 0 0;
}
@media (min-width: 650px) {
  .title-section .columns-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 30px 0 0;
    gap: 0 25px;
  }
}
@media (min-width: 1024px) {
  .title-section .columns-block {
    padding: 55px 0 0;
    margin: 60px 0 0;
    gap: 0 30px;
  }
}
@media (min-width: 1550px) {
  .title-section .columns-block {
    gap: 0 45px;
  }
}
.title-section .columns-block .left-column {
  margin: 0 0 25px;
}
@media (min-width: 650px) {
  .title-section .columns-block .left-column {
    width: 65%;
    max-width: 810px;
    border-right: 2px solid #005c97;
    padding: 0 25px 0 0;
    margin: 0;
  }
}
@media (min-width: 1550px) {
  .title-section .columns-block .left-column {
    width: 72%;
    padding: 0 30px 0 0;
  }
}
.title-section .columns-block .right-column {
  font-size: 14px;
  line-height: 1.14;
}
@media (min-width: 768px) {
  .title-section .columns-block .right-column {
    font-size: 16px;
  }
}
@media (min-width: 650px) {
  .title-section .columns-block .right-column {
    width: 35%;
  }
}
@media (min-width: 1550px) {
  .title-section .columns-block .right-column {
    width: 28%;
    font-size: 18px;
    line-height: 1.11;
  }
}

.two_columns-section {
  position: relative;
  background: #c8eaf5;
  padding: 30px 0 20px;
  font-size: 24px;
  line-height: 1.13;
  color: #000;
}
@media (min-width: 650px) {
  .two_columns-section {
    font-size: 20px;
    overflow: hidden;
  }
}
@media (min-width: 1024px) {
  .two_columns-section {
    padding: 20px 0 10px;
    font-size: 30px;
  }
}
@media (min-width: 1550px) {
  .two_columns-section {
    font-size: 36px;
  }
}
@media (max-width: 389px) {
  .two_columns-section {
    font-size: 18px;
  }
}
.two_columns-section h6 {
  margin: 0 0 1.67em;
  color: #005c97;
}
@media (min-width: 1024px) {
  .two_columns-section h6 {
    margin: 0 0 1.43em;
  }
}
.two_columns-section > .bg-holder {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.8;
}
@media (min-width: 1024px) {
  .two_columns-section > .bg-holder {
    opacity: 0.5;
  }
}
.two_columns-section > .bg-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.two_columns-section .container {
  position: relative;
  z-index: 1;
}
.two_columns-section .columns-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  margin: -150px 0 0;
}
@media (min-width: 650px) {
  .two_columns-section .columns-block {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0;
    gap: 0 25px;
  }
}
.two_columns-section .columns-block .post-column {
  position: relative;
  z-index: 5;
}
@media (min-width: 650px) {
  .two_columns-section .columns-block .post-column {
    width: 60%;
  }
}
@media (min-width: 1400px) {
  .two_columns-section .columns-block .post-column {
    width: 70%;
  }
}
.two_columns-section .columns-block .img-column {
  position: relative;
  padding: 0 20px;
  margin: 0 -20px 15px;
  overflow: hidden;
}
@media (min-width: 390px) {
  .two_columns-section .columns-block .img-column {
    margin: 0 -35px 15px;
    padding: 0 35px;
  }
}
@media (min-width: 480px) {
  .two_columns-section .columns-block .img-column {
    margin: 0 -45px 15px;
    padding: 0 45px;
  }
}
@media (min-width: 650px) {
  .two_columns-section .columns-block .img-column {
    width: 40%;
    margin: 0;
    padding: 0;
    overflow: visible;
  }
}
@media (min-width: 1400px) {
  .two_columns-section .columns-block .img-column {
    width: 30%;
  }
}
.two_columns-section .columns-block .img-column .inner {
  max-width: 410px;
  margin: 0 auto;
}
@media (min-width: 650px) {
  .two_columns-section .columns-block .img-column .inner {
    margin: 0;
  }
}
@media (min-width: 1400px) {
  .two_columns-section .columns-block .img-column .inner {
    margin: 0 -17% 0 0;
    -webkit-transform: translateX(65px);
    -ms-transform: translateX(65px);
    transform: translateX(65px);
  }
}
.two_columns-section .columns-block .img-column .inner > img {
  position: relative;
  margin: 0 0 0 5%;
}
@media (min-width: 650px) {
  .two_columns-section .columns-block .img-column .inner > img {
    margin: 0;
  }
}
.two_columns-section .columns-block .img-column .bg-holder {
  position: absolute;
  left: -7%;
  top: 15px;
  right: 0;
}
@media (min-width: 650px) {
  .two_columns-section .columns-block .img-column .bg-holder {
    right: -60%;
    top: auto;
    bottom: 0;
  }
}
@media (min-width: 1400px) {
  .two_columns-section .columns-block .img-column .bg-holder {
    right: -47%;
    left: -35%;
    bottom: -16%;
  }
}

.step-01.banner-section img {
  width: 120%;
  height: 120%;
  object-position: 57% center;
}
@media (min-width: 650px) {
  .step-01.banner-section img {
    width: 100%;
    height: 100%;
  }
}

#step-01 .columns-block .left-column,
#step-02 .columns-block .left-column {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

@media (max-width: 649px) {
  .step-02.title-section {
    padding-bottom: 110px;
  }
}

.step-02.title-section .right-column .title-block > p {
  display: inline-block;
}

.step-02.title-section .right-column .multiple-circle {
  position: relative;
  display: block;
  max-width: 315px;
  margin: 0 auto 15px;
}
@media (min-width: 1024px) {
  .step-02.title-section .right-column .multiple-circle {
    max-width: 300px;
    margin: 0 auto 20px;
  }
}
.step-02.title-section .right-column .multiple-circle .animation {
  position: relative;
  width: 100%;
  height: 100%;
}
.step-02.title-section .right-column .multiple-circle .animation:before {
  top: 9px;
  left: 9px;
  bottom: 9px;
  right: 9px;
}
.step-02.title-section .right-column .multiple-circle .animation .triangle {
  display: none;
}
.step-02.title-section .right-column .multiple-circle .animation .percent {
  width: auto;
  height: auto;
  background: none;
  top: 15px;
  left: 47%;
  font-size: 24px;
  color: #000;
  border-radius: 0;
  outline: none;
}
.step-02.title-section .right-column .multiple-circle .regular {
  width: calc(100% - 90px);
  height: calc(100% - 90px);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media (min-width: 1024px) {
  .step-02.title-section .right-column .multiple-circle .regular {
    width: calc(100% - 85px);
    height: calc(100% - 85px);
  }
}
.step-02.title-section .right-column .multiple-circle .regular:before {
  top: 12px;
  left: 12px;
  bottom: 12px;
  right: 12px;
}
.step-02.title-section .right-column .multiple-circle .regular .percent {
  top: 25px;
  left: 46%;
}
.step-02.title-section .right-column .multiple-circle .small {
  width: calc(100% - 175px);
  height: calc(100% - 175px);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media (min-width: 1024px) {
  .step-02.title-section .right-column .multiple-circle .small {
    width: calc(100% - 165px);
    height: calc(100% - 165px);
  }
}
.step-02.title-section .right-column .multiple-circle .small:before {
  outline-offset: -18px;
}
.step-02.title-section .right-column .multiple-circle .small .percent {
  top: 26px;
  left: 47%;
}

@media (min-width: 1024px) {
  .step-02.two_columns-section {
    padding: 50px 0 20px;
  }
}

@media (min-width: 1550px) {
  .step-02.two_columns-section {
    padding: 135px 0 50px;
  }
}

.step-02.two_columns-section .columns-block {
  margin: -100px 0 0;
}
@media (min-width: 650px) {
  .step-02.two_columns-section .columns-block {
    margin: 0;
  }
}
.step-02.two_columns-section .columns-block .img-column .inner {
  width: 102%;
  -webkit-transform: translateX(15px);
  -ms-transform: translateX(15px);
  transform: translateX(15px);
}
@media (min-width: 1024px) {
  .step-02.two_columns-section .columns-block .img-column .inner {
    width: 110%;
  }
}
@media (min-width: 1400px) {
  .step-02.two_columns-section .columns-block .img-column .inner {
    width: auto;
    max-width: none;
    margin: 0 -43% 0 0;
    -webkit-transform: translateX(40px);
    -ms-transform: translateX(40px);
    transform: translateX(40px);
  }
}
.step-02.two_columns-section .columns-block .img-column .bg-holder {
  left: -145%;
  top: 0;
  right: -140%;
}
@media (min-width: 650px) {
  .step-02.two_columns-section .columns-block .img-column .bg-holder {
    left: -95%;
    top: auto;
    right: -130%;
    bottom: -25%;
  }
}
@media (min-width: 1400px) {
  .step-02.two_columns-section .columns-block .img-column .bg-holder {
    left: -96%;
    top: auto;
    right: -150%;
    bottom: -35%;
  }
}

@media (min-width: 650px) {
  .step-02.banner-section img {
    object-position: center 51%;
  }
}

.step-03 .heading-block ~ p {
  max-width: 1080px;
}

@media (max-width: 649px) {
  .step-03.title-section {
    padding-bottom: 215px;
  }
}

@media (max-width: 649px) {
  .step-03.title-section .animation-block.graph {
    grid-template:
      'title'
      'post'
      'circle';
  }
}

@media (max-width: 649px) {
  .step-03.title-section .animation-block.graph .post-holder {
    margin: 0;
  }
}

.step-03.title-section .animation-block.graph .graph-block {
  max-width: 400px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.14;
}
@media (min-width: 650px) {
  .step-03.title-section .animation-block.graph .graph-block {
    max-width: none;
    margin: 0;
  }
}
@media (min-width: 768px) {
  .step-03.title-section .animation-block.graph .graph-block {
    font-size: 16px;
  }
}
@media (min-width: 1024px) {
  .step-03.title-section .animation-block.graph .graph-block {
    font-size: 18px;
    line-height: 1.11;
  }
}

.step-03.title-section .animation-block.graph .graph-holder {
  min-height: 215px;
}

.step-03.title-section .animation-block.graph .subtitle-holder {
  gap: 10px 10px;
}
@media (min-width: 1024px) {
  .step-03.title-section .animation-block.graph .subtitle-holder {
    gap: 10px 23px;
  }
}

@media (min-width: 1400px) {
  .step-03.title-section .animation-block .legend-list {
    margin: 10px -40px 0 0;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}

.step-03.title-section .right-column .title-block > p {
  display: inline-block;
}

.step-03.title-section .right-column .multiple-circle {
  position: relative;
  display: block;
  max-width: 315px;
  margin: 0 auto 15px;
}
@media (min-width: 1024px) {
  .step-03.title-section .right-column .multiple-circle {
    max-width: 300px;
    margin: 0 auto 20px;
  }
}
.step-03.title-section .right-column .multiple-circle .animation {
  position: relative;
  width: 100%;
  height: 100%;
}
.step-03.title-section .right-column .multiple-circle .animation:before {
  top: 9px;
  left: 9px;
  bottom: 9px;
  right: 9px;
}
.step-03.title-section .right-column .multiple-circle .animation .triangle {
  display: none;
}
.step-03.title-section .right-column .multiple-circle .animation .percent {
  width: auto;
  height: auto;
  background: none;
  top: 15px;
  left: 47%;
  font-size: 24px;
  color: #000;
  border-radius: 0;
  outline: none;
}
.step-03.title-section .right-column .multiple-circle .regular {
  width: calc(100% - 90px);
  height: calc(100% - 90px);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media (min-width: 650px) {
  .step-03.title-section .right-column .multiple-circle .regular {
    width: calc(100% - 60px);
    height: calc(100% - 60px);
  }
}
@media (min-width: 768px) {
  .step-03.title-section .right-column .multiple-circle .regular {
    width: calc(100% - 70px);
    height: calc(100% - 70px);
  }
}
@media (min-width: 1024px) {
  .step-03.title-section .right-column .multiple-circle .regular {
    width: calc(100% - 85px);
    height: calc(100% - 85px);
  }
}
.step-03.title-section .right-column .multiple-circle .regular:before {
  top: 12px;
  left: 12px;
  bottom: 12px;
  right: 12px;
}
.step-03.title-section .right-column .multiple-circle .regular .percent {
  top: 25px;
  left: 46%;
}
.step-03.title-section .right-column .multiple-circle .small {
  width: calc(100% - 175px);
  height: calc(100% - 175px);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media (min-width: 650px) {
  .step-03.title-section .right-column .multiple-circle .small {
    width: calc(100% - 130px);
    height: calc(100% - 130px);
  }
}
@media (min-width: 768px) {
  .step-03.title-section .right-column .multiple-circle .small {
    width: calc(100% - 150px);
    height: calc(100% - 150px);
  }
}
@media (min-width: 1024px) {
  .step-03.title-section .right-column .multiple-circle .small {
    width: calc(100% - 165px);
    height: calc(100% - 165px);
  }
}
.step-03.title-section .right-column .multiple-circle .small:before {
  top: 16px;
  left: 16px;
  bottom: 16px;
  right: 16px;
}
.step-03.title-section .right-column .multiple-circle .small .percent {
  top: 26px;
  left: 47%;
}

@media (min-width: 1024px) {
  .step-03.two_columns-section {
    padding: 50px 0 20px;
  }
}

@media (min-width: 1550px) {
  .step-03.two_columns-section {
    padding: 60px 0 45px;
  }
}

@media (max-width: 649px) {
  .step-03.two_columns-section .columns-block {
    margin: -200px 0 0;
  }
}

.step-03.two_columns-section .columns-block .img-column .inner > img {
  margin: 0 15% 0 0;
}
@media (min-width: 650px) {
  .step-03.two_columns-section .columns-block .img-column .inner > img {
    margin: 0;
  }
}

.step-03.two_columns-section .columns-block .img-column .bg-holder {
  -webkit-transform: scaleX(-1);
  -ms-transform: scaleX(-1);
  transform: scaleX(-1);
  left: 0%;
  top: auto;
  right: -3%;
  bottom: -1%;
}
@media (min-width: 650px) {
  .step-03.two_columns-section .columns-block .img-column .bg-holder {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
    left: -40%;
    top: auto;
    right: -45%;
    bottom: -22%;
  }
}

.prefooter-section {
  position: relative;
  background: #fff;
  padding: 0 0 65px;
  text-align: center;
  height: 765px;
  color: #fff;
}
@media (min-width: 650px) {
  .prefooter-section {
    height: auto;
    min-height: 500px;
  }
}
@media (min-width: 1550px) {
  .prefooter-section {
    min-height: 735px;
  }
}
.prefooter-section:before {
  width: 100%;
  height: 100%;
  content: '';
  display: block;
  background: #005c97;
  position: absolute;
  top: 0;
  left: 0;
  mix-blend-mode: multiply;
  isolation: isolate;
  z-index: 10;
}
@media (max-width: 767px) {
  .prefooter-section h2 {
    font-size: 34px;
  }
}
.prefooter-section .container {
  max-width: 950px;
  position: relative;
  height: 100%;
  z-index: 10;
}
@media (min-width: 1550px) {
  .prefooter-section .container {
    max-width: 1260px;
  }
}
.prefooter-section .bg-holder {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
}
.prefooter-section .bg-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 12% center;
}
@media (min-width: 1024px) {
  .prefooter-section .bg-holder img {
    object-position: 12% 72%;
  }
}
.prefooter-section .container-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}
.prefooter-section .container-inner .heading-holder {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
@media (min-width: 650px) {
  .prefooter-section .container-inner .heading-holder {
    margin: 0 0 45px;
  }
}
.prefooter-section .decoration-block {
  position: relative;
  display: inline-block;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  background: #005c97;
  border-left: 8px solid #fff;
  border-right: 8px solid #fff;
  padding: 30px 15px 0;
  margin: 0 0 125px;
  min-width: 280px;
}
@media (min-width: 1550px) {
  .prefooter-section .decoration-block {
    padding: 40px 15px 0;
    min-width: 400px;
    margin: 0 0 150px;
    border-width: 12px;
  }
}
.prefooter-section .decoration-block .star-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0 15px;
  font-size: 28px;
}
@media (min-width: 1550px) {
  .prefooter-section .decoration-block .star-block {
    gap: 0 23px;
    font-size: 38px;
  }
}
.prefooter-section .decoration-block .decoration-line {
  position: absolute;
  top: calc(100% - 5px);
  left: 0;
  margin: 0 -8px;
}
@media (min-width: 1550px) {
  .prefooter-section .decoration-block .decoration-line {
    margin: 0 -12px;
  }
}

#footer {
  background: #5ac6e9;
  font-size: 15px;
  color: #000;
  padding: 0 0 10px;
}

#footer .footnote-list {
  margin: 0;
  padding: 0;
  list-style-position: inside;
}
#footer .footnote-list li {
  margin: 0 0 15px;
  font-size: 15px;
  line-height: 1.2;
  text-wrap: pretty
}

.citations-section {
  & h2 {
    font-size: 28px;
    line-height: 1.2;
    color: #000;
    text-align: center;
    padding-top: 30px;
    margin-bottom: 0;
  }
}

#footnotes {
  margin-inline: 20px;
  margin-bottom: 20px;
}

@media (min-width: 425px) {
  #footnotes {
    margin-inline: 40px;
    max-width: 990px;
  }
}

@media (min-width: 768px) {
  #footnotes {
    margin-inline: auto;
    max-width: 990px;
  }
}
