@charset "UTF-8";
/*!
 * Bootstrap v4.2.1 (https://getbootstrap.com/)
 * Copyright 2011-2018 The Bootstrap Authors
 * Copyright 2011-2018 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
/* stylelint-disable scss/dollar-variable-empty-line-before */
/**
 * $val is rem value in assumption that it's calculated with base of rems(1)=10px
 * it returns value with rems(1) =16px (which is default in browsers)
 * Primarily use this function to get value which can be used in calculation in scss, still read about rems() usage below.
 */
/**
 * Use this function instead of rem() only for font: 400 rems(12)/1.5 $font;
 * Because scss interperts /1.5 in setting line height as division and
 * performs calculation if rem() used instead of rems() - this function casts value to string explicitly.
 * as alternative we can use 6.25rem notation -> also this notation should be used in css calc() expressions.
 */
/**
 * Function to make svg-load postcss-inlinde-svg plugin working in SCSS
 *
 * Usage:
 *   background-image: svg-load('../path/to/file.svg', '#FILLCO', '#STROKE');
 *
 * Default directory to search images: src/icons
 */
/* Load bootstrap with custom variables */
/* Override breakpoints as we need more for larger screens */
:root,
[data-bs-theme=light] {
  --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-black: #000;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-gray-100: #f8f9fa;
  --bs-gray-200: #e9ecef;
  --bs-gray-300: #dee2e6;
  --bs-gray-400: #ced4da;
  --bs-gray-500: #adb5bd;
  --bs-gray-600: #6c757d;
  --bs-gray-700: #495057;
  --bs-gray-800: #343a40;
  --bs-gray-900: #212529;
  --bs-primary: #0d6efd;
  --bs-secondary: #6c757d;
  --bs-success: #198754;
  --bs-info: #0dcaf0;
  --bs-warning: #ffc107;
  --bs-danger: #dc3545;
  --bs-light: #f8f9fa;
  --bs-dark: #212529;
  --bs-primary-rgb: 13, 110, 253;
  --bs-secondary-rgb: 108, 117, 125;
  --bs-success-rgb: 25, 135, 84;
  --bs-info-rgb: 13, 202, 240;
  --bs-warning-rgb: 255, 193, 7;
  --bs-danger-rgb: 220, 53, 69;
  --bs-light-rgb: 248, 249, 250;
  --bs-dark-rgb: 33, 37, 41;
  --bs-primary-text-emphasis: rgb(5.2, 44, 101.2);
  --bs-secondary-text-emphasis: rgb(43.2, 46.8, 50);
  --bs-success-text-emphasis: rgb(10, 54, 33.6);
  --bs-info-text-emphasis: rgb(5.2, 80.8, 96);
  --bs-warning-text-emphasis: rgb(102, 77.2, 2.8);
  --bs-danger-text-emphasis: rgb(88, 21.2, 27.6);
  --bs-light-text-emphasis: #495057;
  --bs-dark-text-emphasis: #495057;
  --bs-primary-bg-subtle: rgb(206.6, 226, 254.6);
  --bs-secondary-bg-subtle: rgb(225.6, 227.4, 229);
  --bs-success-bg-subtle: rgb(209, 231, 220.8);
  --bs-info-bg-subtle: rgb(206.6, 244.4, 252);
  --bs-warning-bg-subtle: rgb(255, 242.6, 205.4);
  --bs-danger-bg-subtle: rgb(248, 214.6, 217.8);
  --bs-light-bg-subtle: rgb(251.5, 252, 252.5);
  --bs-dark-bg-subtle: #ced4da;
  --bs-primary-border-subtle: rgb(158.2, 197, 254.2);
  --bs-secondary-border-subtle: rgb(196.2, 199.8, 203);
  --bs-success-border-subtle: rgb(163, 207, 186.6);
  --bs-info-border-subtle: rgb(158.2, 233.8, 249);
  --bs-warning-border-subtle: rgb(255, 230.2, 155.8);
  --bs-danger-border-subtle: rgb(241, 174.2, 180.6);
  --bs-light-border-subtle: #e9ecef;
  --bs-dark-border-subtle: #adb5bd;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #212529;
  --bs-body-color-rgb: 33, 37, 41;
  --bs-body-bg: #fff;
  --bs-body-bg-rgb: 255, 255, 255;
  --bs-emphasis-color: #000;
  --bs-emphasis-color-rgb: 0, 0, 0;
  --bs-secondary-color: rgba(33, 37, 41, 0.75);
  --bs-secondary-color-rgb: 33, 37, 41;
  --bs-secondary-bg: #e9ecef;
  --bs-secondary-bg-rgb: 233, 236, 239;
  --bs-tertiary-color: rgba(33, 37, 41, 0.5);
  --bs-tertiary-color-rgb: 33, 37, 41;
  --bs-tertiary-bg: #f8f9fa;
  --bs-tertiary-bg-rgb: 248, 249, 250;
  --bs-heading-color: inherit;
  --bs-link-color: #0d6efd;
  --bs-link-color-rgb: 13, 110, 253;
  --bs-link-decoration: underline;
  --bs-link-hover-color: rgb(10.4, 88, 202.4);
  --bs-link-hover-color-rgb: 10, 88, 202;
  --bs-code-color: #d63384;
  --bs-highlight-color: #212529;
  --bs-highlight-bg: rgb(255, 242.6, 205.4);
  --bs-border-width: 1px;
  --bs-border-style: solid;
  --bs-border-color: #dee2e6;
  --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
  --bs-border-radius: 0.375rem;
  --bs-border-radius-sm: 0.25rem;
  --bs-border-radius-lg: 0.5rem;
  --bs-border-radius-xl: 1rem;
  --bs-border-radius-xxl: 2rem;
  --bs-border-radius-2xl: var(--bs-border-radius-xxl);
  --bs-border-radius-pill: 50rem;
  --bs-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  --bs-box-shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  --bs-box-shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  --bs-box-shadow-inset: inset 0 1px 2px rgba(0, 0, 0, 0.075);
  --bs-focus-ring-width: 0.25rem;
  --bs-focus-ring-opacity: 0.25;
  --bs-focus-ring-color: rgba(13, 110, 253, 0.25);
  --bs-form-valid-color: #198754;
  --bs-form-valid-border-color: #198754;
  --bs-form-invalid-color: #dc3545;
  --bs-form-invalid-border-color: #dc3545;
}

[data-bs-theme=dark] {
  color-scheme: dark;
  --bs-body-color: #dee2e6;
  --bs-body-color-rgb: 222, 226, 230;
  --bs-body-bg: #212529;
  --bs-body-bg-rgb: 33, 37, 41;
  --bs-emphasis-color: #fff;
  --bs-emphasis-color-rgb: 255, 255, 255;
  --bs-secondary-color: rgba(222, 226, 230, 0.75);
  --bs-secondary-color-rgb: 222, 226, 230;
  --bs-secondary-bg: #343a40;
  --bs-secondary-bg-rgb: 52, 58, 64;
  --bs-tertiary-color: rgba(222, 226, 230, 0.5);
  --bs-tertiary-color-rgb: 222, 226, 230;
  --bs-tertiary-bg: rgb(42.5, 47.5, 52.5);
  --bs-tertiary-bg-rgb: 43, 48, 53;
  --bs-primary-text-emphasis: rgb(109.8, 168, 253.8);
  --bs-secondary-text-emphasis: rgb(166.8, 172.2, 177);
  --bs-success-text-emphasis: rgb(117, 183, 152.4);
  --bs-info-text-emphasis: rgb(109.8, 223.2, 246);
  --bs-warning-text-emphasis: rgb(255, 217.8, 106.2);
  --bs-danger-text-emphasis: rgb(234, 133.8, 143.4);
  --bs-light-text-emphasis: #f8f9fa;
  --bs-dark-text-emphasis: #dee2e6;
  --bs-primary-bg-subtle: rgb(2.6, 22, 50.6);
  --bs-secondary-bg-subtle: rgb(21.6, 23.4, 25);
  --bs-success-bg-subtle: rgb(5, 27, 16.8);
  --bs-info-bg-subtle: rgb(2.6, 40.4, 48);
  --bs-warning-bg-subtle: rgb(51, 38.6, 1.4);
  --bs-danger-bg-subtle: rgb(44, 10.6, 13.8);
  --bs-light-bg-subtle: #343a40;
  --bs-dark-bg-subtle: #1a1d20;
  --bs-primary-border-subtle: rgb(7.8, 66, 151.8);
  --bs-secondary-border-subtle: rgb(64.8, 70.2, 75);
  --bs-success-border-subtle: rgb(15, 81, 50.4);
  --bs-info-border-subtle: rgb(7.8, 121.2, 144);
  --bs-warning-border-subtle: rgb(153, 115.8, 4.2);
  --bs-danger-border-subtle: rgb(132, 31.8, 41.4);
  --bs-light-border-subtle: #495057;
  --bs-dark-border-subtle: #343a40;
  --bs-heading-color: inherit;
  --bs-link-color: rgb(109.8, 168, 253.8);
  --bs-link-hover-color: rgb(138.84, 185.4, 254.04);
  --bs-link-color-rgb: 110, 168, 254;
  --bs-link-hover-color-rgb: 139, 185, 254;
  --bs-code-color: rgb(230.4, 132.6, 181.2);
  --bs-highlight-color: #dee2e6;
  --bs-highlight-bg: rgb(102, 77.2, 2.8);
  --bs-border-color: #495057;
  --bs-border-color-translucent: rgba(255, 255, 255, 0.15);
  --bs-form-valid-color: rgb(117, 183, 152.4);
  --bs-form-valid-border-color: rgb(117, 183, 152.4);
  --bs-form-invalid-color: rgb(234, 133.8, 143.4);
  --bs-form-invalid-border-color: rgb(234, 133.8, 143.4);
}

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

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  color: var(--bs-body-color);
  text-align: var(--bs-body-text-align);
  background-color: var(--bs-body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

hr {
  margin: 1.25rem 0;
  color: inherit;
  border: 0;
  border-top: var(--bs-border-width) solid;
  opacity: 0.25;
}

h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
  margin-top: 0;
  margin-bottom: 0.625rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--bs-heading-color);
}

h1, .h1 {
  font-size: calc(1.375rem + 1.5vw);
}
@media (min-width: 1200px) {
  h1, .h1 {
    font-size: 2.5rem;
  }
}

h2, .h2 {
  font-size: calc(1.325rem + 0.9vw);
}
@media (min-width: 1200px) {
  h2, .h2 {
    font-size: 2rem;
  }
}

h3, .h3 {
  font-size: calc(1.3rem + 0.6vw);
}
@media (min-width: 1200px) {
  h3, .h3 {
    font-size: 1.75rem;
  }
}

h4, .h4 {
  font-size: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
  h4, .h4 {
    font-size: 1.5rem;
  }
}

h5, .h5 {
  font-size: 1.25rem;
}

h6, .h6 {
  font-size: 1rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[title] {
  text-decoration: underline dotted;
  cursor: help;
  text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul {
  padding-left: 2rem;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small, .small {
  font-size: 0.875em;
}

mark, .mark {
  padding: 0.1875em;
  color: var(--bs-highlight-color);
  background-color: var(--bs-highlight-bg);
}

sub,
sup {
  position: relative;
  font-size: 0.75em;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
  text-decoration: underline;
}
a:hover {
  --bs-link-color-rgb: var(--bs-link-hover-color-rgb);
}

a:not([href]):not([class]), a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

pre,
code,
kbd,
samp {
  font-family: var(--bs-font-monospace);
  font-size: 1em;
}

pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  font-size: 0.875em;
}
pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

code {
  font-size: 0.875em;
  color: var(--bs-code-color);
  word-wrap: break-word;
}
a > code {
  color: inherit;
}

kbd {
  padding: 0.1875rem 0.375rem;
  font-size: 0.875em;
  color: var(--bs-body-bg);
  background-color: var(--bs-body-color);
  border-radius: 0.25rem;
}
kbd kbd {
  padding: 0;
  font-size: 1em;
}

figure {
  margin: 0 0 1rem;
}

img,
svg {
  vertical-align: middle;
}

table {
  caption-side: bottom;
  border-collapse: collapse;
}

caption {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: var(--bs-secondary-color);
  text-align: left;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

thead,
tbody,
tfoot,
tr,
td,
th {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}

label {
  display: inline-block;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}
select:disabled {
  opacity: 1;
}

[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator {
  display: none !important;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}
button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

textarea {
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: calc(1.275rem + 0.3vw);
  line-height: inherit;
}
@media (min-width: 1200px) {
  legend {
    font-size: 1.5rem;
  }
}
legend + * {
  clear: left;
}

::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
  padding: 0;
}

::-webkit-inner-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

/* rtl:raw:
[type="tel"],
[type="url"],
[type="email"],
[type="number"] {
  direction: ltr;
}
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
  padding: 0;
}

::file-selector-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

iframe {
  border: 0;
}

summary {
  display: list-item;
  cursor: pointer;
}

progress {
  vertical-align: baseline;
}

[hidden] {
  display: none !important;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

.display-1 {
  font-size: calc(1.625rem + 4.5vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-1 {
    font-size: 5rem;
  }
}

.display-2 {
  font-size: calc(1.575rem + 3.9vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-2 {
    font-size: 4.5rem;
  }
}

.display-3 {
  font-size: calc(1.525rem + 3.3vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-3 {
    font-size: 4rem;
  }
}

.display-4 {
  font-size: calc(1.475rem + 2.7vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-4 {
    font-size: 3.5rem;
  }
}

.display-5 {
  font-size: calc(1.425rem + 2.1vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-5 {
    font-size: 3rem;
  }
}

.display-6 {
  font-size: calc(1.375rem + 1.5vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-6 {
    font-size: 2.5rem;
  }
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.list-inline {
  padding-left: 0;
  list-style: none;
}

.list-inline-item {
  display: inline-block;
}
.list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}

.initialism {
  font-size: 0.875em;
  text-transform: uppercase;
}

.blockquote {
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
}
.blockquote > :last-child {
  margin-bottom: 0;
}

.blockquote-footer {
  margin-top: -1.25rem;
  margin-bottom: 1.25rem;
  font-size: 0.875em;
  color: #6c757d;
}
.blockquote-footer::before {
  content: "— ";
}

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

.img-thumbnail {
  padding: 0.25rem;
  background-color: var(--bs-body-bg);
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  max-width: 100%;
  height: auto;
}

.figure {
  display: inline-block;
}

.figure-img {
  margin-bottom: 0.625rem;
  line-height: 1;
}

.figure-caption {
  font-size: 0.875em;
  color: var(--bs-secondary-color);
}

.container,
.container-fluid,
.container-xxl,
.container-hd,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  --bs-gutter-x: 2.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container-sm, .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container-hd, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1300px;
  }
}
@media (min-width: 1800px) {
  .container-xxl, .container-hd, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1730px;
  }
}
:root {
  --bs-breakpoint-xs: 0;
  --bs-breakpoint-sm: 576px;
  --bs-breakpoint-md: 768px;
  --bs-breakpoint-lg: 992px;
  --bs-breakpoint-xl: 1200px;
  --bs-breakpoint-hd: 1400px;
  --bs-breakpoint-xxl: 1800px;
}

.row {
  --bs-gutter-x: 2.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}
.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.col {
  flex: 1 0 0%;
}

.row-cols-auto > * {
  flex: 0 0 auto;
  width: auto;
}

.row-cols-1 > * {
  flex: 0 0 auto;
  width: 100%;
}

.row-cols-2 > * {
  flex: 0 0 auto;
  width: 50%;
}

.row-cols-3 > * {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.row-cols-4 > * {
  flex: 0 0 auto;
  width: 25%;
}

.row-cols-5 > * {
  flex: 0 0 auto;
  width: 20%;
}

.row-cols-6 > * {
  flex: 0 0 auto;
  width: 16.66666667%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
}

.col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}

.col-3 {
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}

.col-9 {
  flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

.offset-1 {
  margin-left: 8.33333333%;
}

.offset-2 {
  margin-left: 16.66666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.33333333%;
}

.offset-5 {
  margin-left: 41.66666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.33333333%;
}

.offset-8 {
  margin-left: 66.66666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.33333333%;
}

.offset-11 {
  margin-left: 91.66666667%;
}

.g-0,
.gx-0 {
  --bs-gutter-x: 0;
}

.g-0,
.gy-0 {
  --bs-gutter-y: 0;
}

.g-1,
.gx-1 {
  --bs-gutter-x: 0.3125rem;
}

.g-1,
.gy-1 {
  --bs-gutter-y: 0.3125rem;
}

.g-2,
.gx-2 {
  --bs-gutter-x: 0.625rem;
}

.g-2,
.gy-2 {
  --bs-gutter-y: 0.625rem;
}

.g-3,
.gx-3 {
  --bs-gutter-x: 1.25rem;
}

.g-3,
.gy-3 {
  --bs-gutter-y: 1.25rem;
}

.g-4,
.gx-4 {
  --bs-gutter-x: 1.875rem;
}

.g-4,
.gy-4 {
  --bs-gutter-y: 1.875rem;
}

.g-5,
.gx-5 {
  --bs-gutter-x: 3.75rem;
}

.g-5,
.gy-5 {
  --bs-gutter-y: 3.75rem;
}

@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0%;
  }
  .row-cols-sm-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-sm-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-sm-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-sm-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-sm-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-sm-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.33333333%;
  }
  .offset-sm-2 {
    margin-left: 16.66666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333333%;
  }
  .offset-sm-5 {
    margin-left: 41.66666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333333%;
  }
  .offset-sm-8 {
    margin-left: 66.66666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333333%;
  }
  .offset-sm-11 {
    margin-left: 91.66666667%;
  }
  .g-sm-0,
  .gx-sm-0 {
    --bs-gutter-x: 0;
  }
  .g-sm-0,
  .gy-sm-0 {
    --bs-gutter-y: 0;
  }
  .g-sm-1,
  .gx-sm-1 {
    --bs-gutter-x: 0.3125rem;
  }
  .g-sm-1,
  .gy-sm-1 {
    --bs-gutter-y: 0.3125rem;
  }
  .g-sm-2,
  .gx-sm-2 {
    --bs-gutter-x: 0.625rem;
  }
  .g-sm-2,
  .gy-sm-2 {
    --bs-gutter-y: 0.625rem;
  }
  .g-sm-3,
  .gx-sm-3 {
    --bs-gutter-x: 1.25rem;
  }
  .g-sm-3,
  .gy-sm-3 {
    --bs-gutter-y: 1.25rem;
  }
  .g-sm-4,
  .gx-sm-4 {
    --bs-gutter-x: 1.875rem;
  }
  .g-sm-4,
  .gy-sm-4 {
    --bs-gutter-y: 1.875rem;
  }
  .g-sm-5,
  .gx-sm-5 {
    --bs-gutter-x: 3.75rem;
  }
  .g-sm-5,
  .gy-sm-5 {
    --bs-gutter-y: 3.75rem;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
  }
  .row-cols-md-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-md-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-md-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-md-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-md-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.33333333%;
  }
  .offset-md-2 {
    margin-left: 16.66666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333333%;
  }
  .offset-md-5 {
    margin-left: 41.66666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333333%;
  }
  .offset-md-8 {
    margin-left: 66.66666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333333%;
  }
  .offset-md-11 {
    margin-left: 91.66666667%;
  }
  .g-md-0,
  .gx-md-0 {
    --bs-gutter-x: 0;
  }
  .g-md-0,
  .gy-md-0 {
    --bs-gutter-y: 0;
  }
  .g-md-1,
  .gx-md-1 {
    --bs-gutter-x: 0.3125rem;
  }
  .g-md-1,
  .gy-md-1 {
    --bs-gutter-y: 0.3125rem;
  }
  .g-md-2,
  .gx-md-2 {
    --bs-gutter-x: 0.625rem;
  }
  .g-md-2,
  .gy-md-2 {
    --bs-gutter-y: 0.625rem;
  }
  .g-md-3,
  .gx-md-3 {
    --bs-gutter-x: 1.25rem;
  }
  .g-md-3,
  .gy-md-3 {
    --bs-gutter-y: 1.25rem;
  }
  .g-md-4,
  .gx-md-4 {
    --bs-gutter-x: 1.875rem;
  }
  .g-md-4,
  .gy-md-4 {
    --bs-gutter-y: 1.875rem;
  }
  .g-md-5,
  .gx-md-5 {
    --bs-gutter-x: 3.75rem;
  }
  .g-md-5,
  .gy-md-5 {
    --bs-gutter-y: 3.75rem;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0%;
  }
  .row-cols-lg-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-lg-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-lg-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-lg-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-lg-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-lg-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-lg-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.33333333%;
  }
  .offset-lg-2 {
    margin-left: 16.66666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333333%;
  }
  .offset-lg-5 {
    margin-left: 41.66666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333333%;
  }
  .offset-lg-8 {
    margin-left: 66.66666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333333%;
  }
  .offset-lg-11 {
    margin-left: 91.66666667%;
  }
  .g-lg-0,
  .gx-lg-0 {
    --bs-gutter-x: 0;
  }
  .g-lg-0,
  .gy-lg-0 {
    --bs-gutter-y: 0;
  }
  .g-lg-1,
  .gx-lg-1 {
    --bs-gutter-x: 0.3125rem;
  }
  .g-lg-1,
  .gy-lg-1 {
    --bs-gutter-y: 0.3125rem;
  }
  .g-lg-2,
  .gx-lg-2 {
    --bs-gutter-x: 0.625rem;
  }
  .g-lg-2,
  .gy-lg-2 {
    --bs-gutter-y: 0.625rem;
  }
  .g-lg-3,
  .gx-lg-3 {
    --bs-gutter-x: 1.25rem;
  }
  .g-lg-3,
  .gy-lg-3 {
    --bs-gutter-y: 1.25rem;
  }
  .g-lg-4,
  .gx-lg-4 {
    --bs-gutter-x: 1.875rem;
  }
  .g-lg-4,
  .gy-lg-4 {
    --bs-gutter-y: 1.875rem;
  }
  .g-lg-5,
  .gx-lg-5 {
    --bs-gutter-x: 3.75rem;
  }
  .g-lg-5,
  .gy-lg-5 {
    --bs-gutter-y: 3.75rem;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0%;
  }
  .row-cols-xl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xl-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-xl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xl-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xl-11 {
    margin-left: 91.66666667%;
  }
  .g-xl-0,
  .gx-xl-0 {
    --bs-gutter-x: 0;
  }
  .g-xl-0,
  .gy-xl-0 {
    --bs-gutter-y: 0;
  }
  .g-xl-1,
  .gx-xl-1 {
    --bs-gutter-x: 0.3125rem;
  }
  .g-xl-1,
  .gy-xl-1 {
    --bs-gutter-y: 0.3125rem;
  }
  .g-xl-2,
  .gx-xl-2 {
    --bs-gutter-x: 0.625rem;
  }
  .g-xl-2,
  .gy-xl-2 {
    --bs-gutter-y: 0.625rem;
  }
  .g-xl-3,
  .gx-xl-3 {
    --bs-gutter-x: 1.25rem;
  }
  .g-xl-3,
  .gy-xl-3 {
    --bs-gutter-y: 1.25rem;
  }
  .g-xl-4,
  .gx-xl-4 {
    --bs-gutter-x: 1.875rem;
  }
  .g-xl-4,
  .gy-xl-4 {
    --bs-gutter-y: 1.875rem;
  }
  .g-xl-5,
  .gx-xl-5 {
    --bs-gutter-x: 3.75rem;
  }
  .g-xl-5,
  .gy-xl-5 {
    --bs-gutter-y: 3.75rem;
  }
}
@media (min-width: 1400px) {
  .col-hd {
    flex: 1 0 0%;
  }
  .row-cols-hd-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-hd-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-hd-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-hd-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-hd-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-hd-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-hd-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-hd-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-hd-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-hd-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-hd-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-hd-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-hd-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-hd-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-hd-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-hd-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-hd-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-hd-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-hd-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-hd-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-hd-0 {
    margin-left: 0;
  }
  .offset-hd-1 {
    margin-left: 8.33333333%;
  }
  .offset-hd-2 {
    margin-left: 16.66666667%;
  }
  .offset-hd-3 {
    margin-left: 25%;
  }
  .offset-hd-4 {
    margin-left: 33.33333333%;
  }
  .offset-hd-5 {
    margin-left: 41.66666667%;
  }
  .offset-hd-6 {
    margin-left: 50%;
  }
  .offset-hd-7 {
    margin-left: 58.33333333%;
  }
  .offset-hd-8 {
    margin-left: 66.66666667%;
  }
  .offset-hd-9 {
    margin-left: 75%;
  }
  .offset-hd-10 {
    margin-left: 83.33333333%;
  }
  .offset-hd-11 {
    margin-left: 91.66666667%;
  }
  .g-hd-0,
  .gx-hd-0 {
    --bs-gutter-x: 0;
  }
  .g-hd-0,
  .gy-hd-0 {
    --bs-gutter-y: 0;
  }
  .g-hd-1,
  .gx-hd-1 {
    --bs-gutter-x: 0.3125rem;
  }
  .g-hd-1,
  .gy-hd-1 {
    --bs-gutter-y: 0.3125rem;
  }
  .g-hd-2,
  .gx-hd-2 {
    --bs-gutter-x: 0.625rem;
  }
  .g-hd-2,
  .gy-hd-2 {
    --bs-gutter-y: 0.625rem;
  }
  .g-hd-3,
  .gx-hd-3 {
    --bs-gutter-x: 1.25rem;
  }
  .g-hd-3,
  .gy-hd-3 {
    --bs-gutter-y: 1.25rem;
  }
  .g-hd-4,
  .gx-hd-4 {
    --bs-gutter-x: 1.875rem;
  }
  .g-hd-4,
  .gy-hd-4 {
    --bs-gutter-y: 1.875rem;
  }
  .g-hd-5,
  .gx-hd-5 {
    --bs-gutter-x: 3.75rem;
  }
  .g-hd-5,
  .gy-hd-5 {
    --bs-gutter-y: 3.75rem;
  }
}
@media (min-width: 1800px) {
  .col-xxl {
    flex: 1 0 0%;
  }
  .row-cols-xxl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xxl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xxl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xxl-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-xxl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xxl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xxl-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xxl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xxl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xxl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xxl-11 {
    margin-left: 91.66666667%;
  }
  .g-xxl-0,
  .gx-xxl-0 {
    --bs-gutter-x: 0;
  }
  .g-xxl-0,
  .gy-xxl-0 {
    --bs-gutter-y: 0;
  }
  .g-xxl-1,
  .gx-xxl-1 {
    --bs-gutter-x: 0.3125rem;
  }
  .g-xxl-1,
  .gy-xxl-1 {
    --bs-gutter-y: 0.3125rem;
  }
  .g-xxl-2,
  .gx-xxl-2 {
    --bs-gutter-x: 0.625rem;
  }
  .g-xxl-2,
  .gy-xxl-2 {
    --bs-gutter-y: 0.625rem;
  }
  .g-xxl-3,
  .gx-xxl-3 {
    --bs-gutter-x: 1.25rem;
  }
  .g-xxl-3,
  .gy-xxl-3 {
    --bs-gutter-y: 1.25rem;
  }
  .g-xxl-4,
  .gx-xxl-4 {
    --bs-gutter-x: 1.875rem;
  }
  .g-xxl-4,
  .gy-xxl-4 {
    --bs-gutter-y: 1.875rem;
  }
  .g-xxl-5,
  .gx-xxl-5 {
    --bs-gutter-x: 3.75rem;
  }
  .g-xxl-5,
  .gy-xxl-5 {
    --bs-gutter-y: 3.75rem;
  }
}
.table {
  --bs-table-color-type: initial;
  --bs-table-bg-type: initial;
  --bs-table-color-state: initial;
  --bs-table-bg-state: initial;
  --bs-table-color: var(--bs-emphasis-color);
  --bs-table-bg: var(--bs-body-bg);
  --bs-table-border-color: var(--bs-border-color);
  --bs-table-accent-bg: transparent;
  --bs-table-striped-color: var(--bs-emphasis-color);
  --bs-table-striped-bg: rgba(var(--bs-emphasis-color-rgb), 0.05);
  --bs-table-active-color: var(--bs-emphasis-color);
  --bs-table-active-bg: rgba(var(--bs-emphasis-color-rgb), 0.1);
  --bs-table-hover-color: var(--bs-emphasis-color);
  --bs-table-hover-bg: rgba(var(--bs-emphasis-color-rgb), 0.075);
  width: 100%;
  margin-bottom: 1.25rem;
  vertical-align: top;
  border-color: var(--bs-table-border-color);
}
.table > :not(caption) > * > * {
  padding: 0.5rem 0.5rem;
  color: var(--bs-table-color-state, var(--bs-table-color-type, var(--bs-table-color)));
  background-color: var(--bs-table-bg);
  border-bottom-width: var(--bs-border-width);
  box-shadow: inset 0 0 0 9999px var(--bs-table-bg-state, var(--bs-table-bg-type, var(--bs-table-accent-bg)));
}
.table > tbody {
  vertical-align: inherit;
}
.table > thead {
  vertical-align: bottom;
}

.table-group-divider {
  border-top: calc(var(--bs-border-width) * 2) solid currentcolor;
}

.caption-top {
  caption-side: top;
}

.table-sm > :not(caption) > * > * {
  padding: 0.25rem 0.25rem;
}

.table-bordered > :not(caption) > * {
  border-width: var(--bs-border-width) 0;
}
.table-bordered > :not(caption) > * > * {
  border-width: 0 var(--bs-border-width);
}

.table-borderless > :not(caption) > * > * {
  border-bottom-width: 0;
}
.table-borderless > :not(:first-child) {
  border-top-width: 0;
}

.table-striped > tbody > tr:nth-of-type(odd) > * {
  --bs-table-color-type: var(--bs-table-striped-color);
  --bs-table-bg-type: var(--bs-table-striped-bg);
}

.table-striped-columns > :not(caption) > tr > :nth-child(even) {
  --bs-table-color-type: var(--bs-table-striped-color);
  --bs-table-bg-type: var(--bs-table-striped-bg);
}

.table-active {
  --bs-table-color-state: var(--bs-table-active-color);
  --bs-table-bg-state: var(--bs-table-active-bg);
}

.table-hover > tbody > tr:hover > * {
  --bs-table-color-state: var(--bs-table-hover-color);
  --bs-table-bg-state: var(--bs-table-hover-bg);
}

.table-primary {
  --bs-table-color: #000;
  --bs-table-bg: rgb(206.6, 226, 254.6);
  --bs-table-border-color: rgb(165.28, 180.8, 203.68);
  --bs-table-striped-bg: rgb(196.27, 214.7, 241.87);
  --bs-table-striped-color: #000;
  --bs-table-active-bg: rgb(185.94, 203.4, 229.14);
  --bs-table-active-color: #000;
  --bs-table-hover-bg: rgb(191.105, 209.05, 235.505);
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-secondary {
  --bs-table-color: #000;
  --bs-table-bg: rgb(225.6, 227.4, 229);
  --bs-table-border-color: rgb(180.48, 181.92, 183.2);
  --bs-table-striped-bg: rgb(214.32, 216.03, 217.55);
  --bs-table-striped-color: #000;
  --bs-table-active-bg: rgb(203.04, 204.66, 206.1);
  --bs-table-active-color: #000;
  --bs-table-hover-bg: rgb(208.68, 210.345, 211.825);
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-success {
  --bs-table-color: #000;
  --bs-table-bg: rgb(209, 231, 220.8);
  --bs-table-border-color: rgb(167.2, 184.8, 176.64);
  --bs-table-striped-bg: rgb(198.55, 219.45, 209.76);
  --bs-table-striped-color: #000;
  --bs-table-active-bg: rgb(188.1, 207.9, 198.72);
  --bs-table-active-color: #000;
  --bs-table-hover-bg: rgb(193.325, 213.675, 204.24);
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-info {
  --bs-table-color: #000;
  --bs-table-bg: rgb(206.6, 244.4, 252);
  --bs-table-border-color: rgb(165.28, 195.52, 201.6);
  --bs-table-striped-bg: rgb(196.27, 232.18, 239.4);
  --bs-table-striped-color: #000;
  --bs-table-active-bg: rgb(185.94, 219.96, 226.8);
  --bs-table-active-color: #000;
  --bs-table-hover-bg: rgb(191.105, 226.07, 233.1);
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-warning {
  --bs-table-color: #000;
  --bs-table-bg: rgb(255, 242.6, 205.4);
  --bs-table-border-color: rgb(204, 194.08, 164.32);
  --bs-table-striped-bg: rgb(242.25, 230.47, 195.13);
  --bs-table-striped-color: #000;
  --bs-table-active-bg: rgb(229.5, 218.34, 184.86);
  --bs-table-active-color: #000;
  --bs-table-hover-bg: rgb(235.875, 224.405, 189.995);
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-danger {
  --bs-table-color: #000;
  --bs-table-bg: rgb(248, 214.6, 217.8);
  --bs-table-border-color: rgb(198.4, 171.68, 174.24);
  --bs-table-striped-bg: rgb(235.6, 203.87, 206.91);
  --bs-table-striped-color: #000;
  --bs-table-active-bg: rgb(223.2, 193.14, 196.02);
  --bs-table-active-color: #000;
  --bs-table-hover-bg: rgb(229.4, 198.505, 201.465);
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-light {
  --bs-table-color: #000;
  --bs-table-bg: #f8f9fa;
  --bs-table-border-color: rgb(198.4, 199.2, 200);
  --bs-table-striped-bg: rgb(235.6, 236.55, 237.5);
  --bs-table-striped-color: #000;
  --bs-table-active-bg: rgb(223.2, 224.1, 225);
  --bs-table-active-color: #000;
  --bs-table-hover-bg: rgb(229.4, 230.325, 231.25);
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-dark {
  --bs-table-color: #fff;
  --bs-table-bg: #212529;
  --bs-table-border-color: rgb(77.4, 80.6, 83.8);
  --bs-table-striped-bg: rgb(44.1, 47.9, 51.7);
  --bs-table-striped-color: #fff;
  --bs-table-active-bg: rgb(55.2, 58.8, 62.4);
  --bs-table-active-color: #fff;
  --bs-table-hover-bg: rgb(49.65, 53.35, 57.05);
  --bs-table-hover-color: #fff;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 575.98px) {
  .table-responsive-sm {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 767.98px) {
  .table-responsive-md {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 991.98px) {
  .table-responsive-lg {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 1199.98px) {
  .table-responsive-xl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 1399.98px) {
  .table-responsive-hd {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 1799.98px) {
  .table-responsive-xxl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.pagination {
  --bs-pagination-padding-x: 0.75rem;
  --bs-pagination-padding-y: 0.375rem;
  --bs-pagination-font-size: 1rem;
  --bs-pagination-color: var(--bs-link-color);
  --bs-pagination-bg: var(--bs-body-bg);
  --bs-pagination-border-width: var(--bs-border-width);
  --bs-pagination-border-color: var(--bs-border-color);
  --bs-pagination-border-radius: var(--bs-border-radius);
  --bs-pagination-hover-color: var(--bs-link-hover-color);
  --bs-pagination-hover-bg: var(--bs-tertiary-bg);
  --bs-pagination-hover-border-color: var(--bs-border-color);
  --bs-pagination-focus-color: var(--bs-link-hover-color);
  --bs-pagination-focus-bg: var(--bs-secondary-bg);
  --bs-pagination-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  --bs-pagination-active-color: #fff;
  --bs-pagination-active-bg: #0d6efd;
  --bs-pagination-active-border-color: #0d6efd;
  --bs-pagination-disabled-color: var(--bs-secondary-color);
  --bs-pagination-disabled-bg: var(--bs-secondary-bg);
  --bs-pagination-disabled-border-color: var(--bs-border-color);
  display: flex;
  padding-left: 0;
  list-style: none;
}

.page-link {
  position: relative;
  display: block;
  padding: var(--bs-pagination-padding-y) var(--bs-pagination-padding-x);
  font-size: var(--bs-pagination-font-size);
  color: var(--bs-pagination-color);
  text-decoration: none;
  background-color: var(--bs-pagination-bg);
  border: var(--bs-pagination-border-width) solid var(--bs-pagination-border-color);
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .page-link {
    transition: none;
  }
}
.page-link:hover {
  z-index: 2;
  color: var(--bs-pagination-hover-color);
  background-color: var(--bs-pagination-hover-bg);
  border-color: var(--bs-pagination-hover-border-color);
}
.page-link:focus {
  z-index: 3;
  color: var(--bs-pagination-focus-color);
  background-color: var(--bs-pagination-focus-bg);
  outline: 0;
  box-shadow: var(--bs-pagination-focus-box-shadow);
}
.page-link.active, .active > .page-link {
  z-index: 3;
  color: var(--bs-pagination-active-color);
  background-color: var(--bs-pagination-active-bg);
  border-color: var(--bs-pagination-active-border-color);
}
.page-link.disabled, .disabled > .page-link {
  color: var(--bs-pagination-disabled-color);
  pointer-events: none;
  background-color: var(--bs-pagination-disabled-bg);
  border-color: var(--bs-pagination-disabled-border-color);
}

.page-item:not(:first-child) .page-link {
  margin-left: calc(var(--bs-border-width) * -1);
}
.page-item:first-child .page-link {
  border-top-left-radius: var(--bs-pagination-border-radius);
  border-bottom-left-radius: var(--bs-pagination-border-radius);
}
.page-item:last-child .page-link {
  border-top-right-radius: var(--bs-pagination-border-radius);
  border-bottom-right-radius: var(--bs-pagination-border-radius);
}

.pagination-lg {
  --bs-pagination-padding-x: 1.5rem;
  --bs-pagination-padding-y: 0.75rem;
  --bs-pagination-font-size: 1.25rem;
  --bs-pagination-border-radius: var(--bs-border-radius-lg);
}

.pagination-sm {
  --bs-pagination-padding-x: 0.5rem;
  --bs-pagination-padding-y: 0.25rem;
  --bs-pagination-font-size: 0.875rem;
  --bs-pagination-border-radius: var(--bs-border-radius-sm);
}

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

.text-bg-primary {
  color: #fff !important;
  background-color: RGBA(var(--bs-primary-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-secondary {
  color: #fff !important;
  background-color: RGBA(var(--bs-secondary-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-success {
  color: #fff !important;
  background-color: RGBA(var(--bs-success-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-info {
  color: #000 !important;
  background-color: RGBA(var(--bs-info-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-warning {
  color: #000 !important;
  background-color: RGBA(var(--bs-warning-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-danger {
  color: #fff !important;
  background-color: RGBA(var(--bs-danger-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-light {
  color: #000 !important;
  background-color: RGBA(var(--bs-light-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-dark {
  color: #fff !important;
  background-color: RGBA(var(--bs-dark-rgb), var(--bs-bg-opacity, 1)) !important;
}

.link-primary {
  color: RGBA(var(--bs-primary-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-primary-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-primary:hover, .link-primary:focus {
  color: RGBA(10, 88, 202, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(10, 88, 202, var(--bs-link-underline-opacity, 1)) !important;
}

.link-secondary {
  color: RGBA(var(--bs-secondary-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-secondary-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-secondary:hover, .link-secondary:focus {
  color: RGBA(86, 94, 100, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(86, 94, 100, var(--bs-link-underline-opacity, 1)) !important;
}

.link-success {
  color: RGBA(var(--bs-success-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-success-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-success:hover, .link-success:focus {
  color: RGBA(20, 108, 67, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(20, 108, 67, var(--bs-link-underline-opacity, 1)) !important;
}

.link-info {
  color: RGBA(var(--bs-info-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-info-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-info:hover, .link-info:focus {
  color: RGBA(61, 213, 243, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(61, 213, 243, var(--bs-link-underline-opacity, 1)) !important;
}

.link-warning {
  color: RGBA(var(--bs-warning-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-warning-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-warning:hover, .link-warning:focus {
  color: RGBA(255, 205, 57, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(255, 205, 57, var(--bs-link-underline-opacity, 1)) !important;
}

.link-danger {
  color: RGBA(var(--bs-danger-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-danger-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-danger:hover, .link-danger:focus {
  color: RGBA(176, 42, 55, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(176, 42, 55, var(--bs-link-underline-opacity, 1)) !important;
}

.link-light {
  color: RGBA(var(--bs-light-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-light-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-light:hover, .link-light:focus {
  color: RGBA(249, 250, 251, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(249, 250, 251, var(--bs-link-underline-opacity, 1)) !important;
}

.link-dark {
  color: RGBA(var(--bs-dark-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-dark-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-dark:hover, .link-dark:focus {
  color: RGBA(26, 30, 33, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(26, 30, 33, var(--bs-link-underline-opacity, 1)) !important;
}

.link-body-emphasis {
  color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-body-emphasis:hover, .link-body-emphasis:focus {
  color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-opacity, 0.75)) !important;
  text-decoration-color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 0.75)) !important;
}

.focus-ring:focus {
  outline: 0;
  box-shadow: var(--bs-focus-ring-x, 0) var(--bs-focus-ring-y, 0) var(--bs-focus-ring-blur, 0) var(--bs-focus-ring-width) var(--bs-focus-ring-color);
}

.icon-link {
  display: inline-flex;
  gap: 0.375rem;
  align-items: center;
  text-decoration-color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 0.5));
  text-underline-offset: 0.25em;
  backface-visibility: hidden;
}
.icon-link > .bi {
  flex-shrink: 0;
  width: 1em;
  height: 1em;
  fill: currentcolor;
  transition: 0.2s ease-in-out transform;
}
@media (prefers-reduced-motion: reduce) {
  .icon-link > .bi {
    transition: none;
  }
}

.icon-link-hover:hover > .bi, .icon-link-hover:focus-visible > .bi {
  transform: var(--bs-icon-link-transform, translate3d(0.25em, 0, 0));
}

.ratio {
  position: relative;
  width: 100%;
}
.ratio::before {
  display: block;
  padding-top: var(--bs-aspect-ratio);
  content: "";
}
.ratio > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ratio-1x1 {
  --bs-aspect-ratio: 100%;
}

.ratio-4x3 {
  --bs-aspect-ratio: 75%;
}

.ratio-16x9 {
  --bs-aspect-ratio: 56.25%;
}

.ratio-21x9 {
  --bs-aspect-ratio: 42.8571428571%;
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

.sticky-top {
  position: sticky;
  top: 0;
  z-index: 1020;
}

.sticky-bottom {
  position: sticky;
  bottom: 0;
  z-index: 1020;
}

@media (min-width: 576px) {
  .sticky-sm-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-sm-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
@media (min-width: 768px) {
  .sticky-md-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-md-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
@media (min-width: 992px) {
  .sticky-lg-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-lg-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
@media (min-width: 1200px) {
  .sticky-xl-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-xl-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
@media (min-width: 1400px) {
  .sticky-hd-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-hd-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
@media (min-width: 1800px) {
  .sticky-xxl-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-xxl-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
.hstack {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-self: stretch;
}

.vstack {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-self: stretch;
}

.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.visually-hidden:not(caption),
.visually-hidden-focusable:not(:focus):not(:focus-within):not(caption) {
  position: absolute !important;
}

.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vr {
  display: inline-block;
  align-self: stretch;
  width: var(--bs-border-width);
  min-height: 1em;
  background-color: currentcolor;
  opacity: 0.25;
}
/*# sourceMappingURL=bootstrap.css.map */
@charset "UTF-8";
/* stylelint-disable scss/dollar-variable-empty-line-before */
/**
 * $val is rem value in assumption that it's calculated with base of rems(1)=10px
 * it returns value with rems(1) =16px (which is default in browsers)
 * Primarily use this function to get value which can be used in calculation in scss, still read about rems() usage below.
 */
/**
 * Use this function instead of rem() only for font: 400 rems(12)/1.5 $font;
 * Because scss interperts /1.5 in setting line height as division and
 * performs calculation if rem() used instead of rems() - this function casts value to string explicitly.
 * as alternative we can use 6.25rem notation -> also this notation should be used in css calc() expressions.
 */
/**
 * Function to make svg-load postcss-inlinde-svg plugin working in SCSS
 *
 * Usage:
 *   background-image: svg-load('../path/to/file.svg', '#FILLCO', '#STROKE');
 *
 * Default directory to search images: src/icons
 */
/* Load bootstrap with custom variables */
/* Override breakpoints as we need more for larger screens */
/* Load SCSS style theme parts */
/* stylelint-disable max-line-length */
/* stylelint-disable scss/dollar-variable-empty-line-before */
/* Colors */
/* Fonts */
/* Other */
/*
Slick icon entity codes outputs the following
"\2190" outputs ascii character "←"
"\2192" outputs ascii character "→"
"\2022" outputs ascii character "•"
*/
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable selector-not-notation */
/* stylelint-disable scss/at-extend-no-missing-placeholder */
/* stylelint-disable no-descending-specificity */
/* stylelint-disable font-family-no-missing-generic-family-keyword */
#allrecords a {
  color: unset;
}

#allrecords a.btn--secondary,
#allrecords a.button,
#allrecords a.btn--secondary:hover,
#allrecords a.btn--secondary:active,
#allrecords a.btn--secondary:focus {
  background: #51b44c;
  color: #fff;
}

#allrecords a.btn--primary,
#allrecords a.button,
#allrecords a.btn--primary:hover,
#allrecords a.btn--primary:active,
#allrecords a.btn--primary:focus {
  background: #ce3c4e;
  color: #fff;
}

@media (min-width: 576px) {
  html {
    font-size: 27px;
  }
}
@media (min-width: 768px) {
  html {
    font-size: 36px;
  }
}
@media (min-width: 992px) {
  html {
    font-size: 11.8px;
  }
}
@media (min-width: 1200px) {
  html {
    font-size: 14.03px;
  }
}
@media (min-width: 1400px) {
  html {
    font-size: 16px;
  }
}
@media (min-width: 1800px) {
  html {
    font-size: 21.29px;
  }
}

body {
  font-family: "Arsenal", sans-serif;
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.25;
  margin-bottom: 1rem;
}
body {
  margin: 0 !important;
  padding: 0 !important;
  background: #fff;
  color: #191b1d;
}

.site-page {
  overflow: hidden;
}
.site-page__content {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  position: relative;
  min-height: 100vh;
  padding-top: 3.8125rem;
  transition: all 0.3s ease-out;
}
@media (min-width: 992px) {
  .site-page__content {
    padding-top: 5.5rem;
  }
}

@media (max-width: 576px) {
  .container--narrow {
    max-width: 327px;
  }
}

.hidden {
  display: none;
}

@media (min-width: 992px) {
  .d-bp-none {
    display: none;
  }
}

.d-bp-block {
  display: none;
}
@media (min-width: 992px) {
  .d-bp-block {
    display: block;
  }
}

.text-center {
  text-align: center;
}

/* Input elements */
button,
input[type=button],
input[type=submit],
input[type=reset] {
  outline: 0 !important;
  cursor: pointer;
  appearance: none;
}

label {
  display: block;
  margin: 0 0 0.37rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #b6b9bc;
}
@media (min-width: 992px) {
  label {
    font-size: 0.875rem;
  }
}

.error label {
  color: #ce3c4e !important;
}

input:not([type=submit]):not([type=checkbox]):not([type=radio]),
select,
textarea {
  width: 100%;
  height: 3.9375rem;
  margin: 0;
  padding: 1.25rem;
  background: #fff;
  border: 1px solid transparent;
  border-radius: 1.125rem;
  box-shadow: none;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.4375rem;
  color: #191b1d;
}
@media (min-width: 576px) {
  input:not([type=submit]):not([type=checkbox]):not([type=radio]),
  select,
  textarea {
    border: 0.0625rem solid transparent;
  }
}
input:not([type=submit]):not([type=checkbox]):not([type=radio]).error,
select.error,
textarea.error {
  border-color: #fb3b2a !important;
}
input:not([type=submit]):not([type=checkbox]):not([type=radio]):hover, input:not([type=submit]):not([type=checkbox]):not([type=radio]):focus, input:not([type=submit]):not([type=checkbox]):not([type=radio]):active,
select:hover,
select:focus,
select:active,
textarea:hover,
textarea:focus,
textarea:active {
  outline: none;
}
input:not([type=submit]):not([type=checkbox]):not([type=radio])::placeholder,
select::placeholder,
textarea::placeholder {
  font-size: 1.125rem;
  font-weight: 400;
  font-style: normal;
  line-height: 1.4375rem;
  color: #b6b9bc;
  transition: all 0.3s ease-out;
}
input:not([type=submit]):not([type=checkbox]):not([type=radio]):focus::placeholder,
select:focus::placeholder,
textarea:focus::placeholder {
  opacity: 0;
}

textarea {
  height: 12.5rem;
  line-height: 1.3;
}

/* Typography */
b,
strong {
  font-weight: 700;
}

h1 {
  font-family: "Arsenal", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 2.5rem;
}
@media (min-width: 992px) {
  h1 {
    font-size: 2.5rem;
    margin-bottom: 1.875rem;
  }
}

h2 {
  font-family: "Arsenal", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 1rem;
}

h3 {
  font-family: "Arsenal", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
@media (min-width: 992px) {
  h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
}

h4 {
  font-family: "Arsenal", sans-serif;
  font-weight: 500;
  font-size: 0.9375rem;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 0.5rem;
}
@media (min-width: 992px) {
  h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
  }
}

h5 {
  font-family: "Arsenal", sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.5;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
@media (min-width: 992px) {
  h5 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
}

h6 {
  font-family: "Arsenal", sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
@media (min-width: 992px) {
  h6 {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
  }
}

a {
  transition: all 0.3s ease-out;
  text-decoration: none;
  color: #ce3c4e;
}
a:hover, a:active, a:focus {
  outline: none;
  text-decoration: none;
  color: #03326a;
}

p {
  font-family: "Arsenal", sans-serif;
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.25;
  margin-bottom: 1rem;
}
p:last-of-type {
  margin: 0;
}

.two-col {
  column-count: 2;
  column-gap: 1.875rem;
}

/* Other */
img {
  max-width: 100%;
}

.img-fit {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}

.img-block {
  display: block;
  width: 100%;
  height: auto;
}

iframe {
  border: none;
}

*:focus,
*:focus-visible {
  outline: 0 !important;
}

.oh {
  overflow: hidden;
}

.accordion {
  padding: 3.75rem 0 5.625rem;
  background: #02428d;
  color: #fff;
}
@media (min-width: 992px) {
  .accordion {
    padding: 5.625rem 0 9.375rem;
  }
}
@media (min-width: 992px) {
  .accordion__inner {
    width: 37.5rem;
    margin: 0 auto;
  }
}
.accordion__title {
  margin: 0 0 1.125rem;
  font-size: 1.75rem;
  text-align: center;
}
@media (min-width: 992px) {
  .accordion__title {
    margin: 0 0 2.5rem;
    font-size: 2.5rem;
    text-align: center;
  }
}
.accordion__item {
  margin: 0 0 1.25rem;
  border-radius: 1.125rem;
  border: 1px solid #f3f4f7;
}
@media (min-width: 576px) {
  .accordion__item {
    border-bottom: 0.0625rem solid #f3f4f7;
  }
}
.accordion__item:last-child {
  margin: 0;
}
.accordion__item__title {
  display: flex;
  align-items: center;
  position: relative;
  padding: 1.25rem 3.625rem 1.25rem 0.9375rem;
  background-color: #fff;
  border-radius: 1.125rem;
  transition: all 0.3s ease-out;
  font-weight: 700;
  color: #191b1d;
  cursor: pointer;
}
.accordion__item__title__number {
  flex: 0 0 1.25rem;
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.9375rem;
  border: 1px solid #b6b9bc;
  border-radius: 0.3125rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  color: #191b1d;
}
@media (min-width: 576px) {
  .accordion__item__title__number {
    border-width: 0.0625rem;
  }
}
.accordion__item__title__txt {
  font-size: 1.25rem;
}
.accordion__item__title__plus {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  right: 0.9375rem;
  width: 1.5rem;
  height: 1.5rem;
  background: #51b44c url("https://static.tildacdn.com/tild3766-6538-4165-a133-613365633736/plus.svg") no-repeat center/100%;
  border-radius: 50%;
  transform: translateY(-50%);
}
.accordion__item__text {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: all 0.5s ease-out;
  font-size: 1rem;
  color: #fff;
}
.accordion-open .accordion__item__text {
  grid-template-rows: 1fr;
}
.accordion__item__text__inner {
  overflow: hidden;
}
.accordion__item__text__body {
  padding: 1.5rem 0.9375rem 1.25rem;
}
.accordion__btn {
  margin: 2.5rem 0 0;
  text-align: center;
}
.accordion__btn .btn, .accordion__btn button,
.accordion__btn a.button,
.accordion__btn input[type=submit] {
  padding: 0.625rem 3.125rem;
  font-size: 1.125rem;
  line-height: 2.375rem;
}
.accordion + .angle {
  margin-top: -1.875rem;
}
@media (min-width: 992px) {
  .accordion + .angle {
    margin-top: -5.625rem;
  }
}

.advantages {
  padding: 5.625rem 0;
}
@media (min-width: 992px) {
  .advantages {
    padding: 6.25rem 0 3.75rem;
  }
}
@media (min-width: 992px) {
  .advantages__list {
    width: 37.5rem;
    margin: 0 auto;
  }
}
.advantages__item {
  width: 100%;
  margin: 0 0 5rem;
  padding: 1.875rem;
  background: url("https://static.tildacdn.com/tild6164-6534-4431-a435-316165396566/bg-advantages.png") no-repeat left bottom/cover;
  border-radius: 1.5625rem;
  color: #fff;
}
@media (min-width: 992px) {
  .advantages__item {
    padding: 3.125rem;
  }
}
.advantages__item:last-child {
  margin: 0;
}
.advantages__item__title {
  margin: 0 0 1.5rem;
  font-size: 1.75rem;
  line-height: 2rem;
}
.advantages__item__title b {
  color: #51b44c;
}
.advantages__item__text {
  font-weight: 700;
}
.advantages__item__text p {
  margin: 0 0 1.5rem;
  font-weight: 700;
  line-height: 1.3125rem;
}
.advantages__item__text p:last-child {
  margin: 0;
}
.advantages__item__text p b {
  color: #51b44c;
}
.advantages__item__btn {
  margin: 2.5rem 0 0;
  text-align: center;
}
.advantages__item__btn .btn, .advantages__item__btn button,
.advantages__item__btn a.button,
.advantages__item__btn input[type=submit] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 12.5rem;
  height: 3.625rem;
  font-size: 1.125rem;
}

.boss {
  overflow: hidden;
  padding: 3.75rem 0 8.875rem;
  background: #03326a url("https://static.tildacdn.com/tild6438-3365-4762-b134-646562656663/boss-bg-mob.svg") no-repeat center bottom/100% auto;
  color: #fff;
}
@media (min-width: 992px) {
  .boss {
    padding: 3.75rem 0 12rem;
    background: #03326a url("https://static.tildacdn.com/tild3139-3136-4962-b866-633562343036/boss-bg-desk.svg") no-repeat center bottom/100% auto;
  }
}
.boss__inner {
  position: relative;
  max-width: 23.4375rem;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .boss__inner {
    width: 37.5rem;
    max-width: unset;
  }
}
.boss__title {
  margin: 0 0 0.5rem;
  font-size: 1.625rem;
  line-height: 1.6875rem;
  text-align: center;
}
@media (min-width: 992px) {
  .boss__title {
    margin: 0 0 1.25rem;
    font-size: 2rem;
    line-height: 1.25;
  }
}
.boss__title span {
  font-size: 1.4375rem;
}
@media (min-width: 992px) {
  .boss__title span {
    font-size: 2rem;
  }
}
.boss__title b {
  color: #51b44c;
}
.boss__subtitle {
  max-width: 15.875rem;
  margin: 0 auto;
  padding-left: 3.375rem;
  background: url("https://static.tildacdn.com/tild3661-3930-4131-b730-356162633237/map-small.svg") no-repeat left center/3rem auto;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #bcd6f2;
}
@media (min-width: 992px) {
  .boss__subtitle {
    max-width: 27.0625rem;
    padding-left: 6.5rem;
    background-size: 5.5rem auto;
    font-size: 1.125rem;
  }
}
.boss__list {
  position: relative;
  z-index: 10;
  max-width: 20rem;
  margin: 1.25rem 0 0;
  font-size: 1rem;
  font-weight: 700;
}
@media (min-width: 992px) {
  .boss__list {
    max-width: 31.5625rem;
    margin: 3.5rem 0 0;
    font-size: 1.125rem;
  }
}
.boss__list b {
  color: #51b44c;
}
.boss__list__li {
  max-width: 20.9375rem;
}
@media (min-width: 992px) {
  .boss__list__li {
    max-width: 100%;
  }
}
.boss__list__li--large {
  max-width: 84%;
}
@media (min-width: 992px) {
  .boss__list__li--large {
    max-width: 100%;
  }
}
.boss__list__li--medium {
  max-width: 13.625rem;
}
@media (min-width: 992px) {
  .boss__list__li--medium {
    max-width: 30rem;
  }
}
.boss__list__li--short {
  max-width: 10.8125rem;
}
@media (min-width: 992px) {
  .boss__list__li--short {
    max-width: 22.5rem;
  }
}
.boss__img {
  position: absolute;
  bottom: -8.875rem;
  right: -20%;
  width: 100%;
  padding: 117% 0 0;
}
@media (min-width: 992px) {
  .boss__img {
    bottom: -12rem;
    right: -37%;
    width: 31.0625rem;
    padding: 36.3125rem 0 0;
  }
}
.boss + .angle {
  margin-top: -1.875rem;
}
@media (min-width: 992px) {
  .boss + .angle {
    margin-top: -5.625rem;
  }
}

.checked-list {
  padding: 3.75rem 0 7.5rem;
  background-color: #02428d;
  color: #fff;
}
@media (min-width: 992px) {
  .checked-list {
    padding: 3.75rem 0 13.75rem;
  }
}
.checked-list--white {
  background-color: #fff;
  color: #191b1d;
}
@media (min-width: 992px) {
  .checked-list__inner {
    width: 37.5rem;
    margin: 0 auto;
  }
}
.checked-list__title {
  margin: 0 0 2.1875rem;
  font-size: 1.75rem;
  text-align: center;
}
@media (min-width: 992px) {
  .checked-list__title {
    margin: 0 0 2.5rem;
    font-size: 2.5rem;
  }
}
.checked-list--white .checked-list__title {
  color: #03326a;
}
.checked-list__title--small {
  max-width: 20.9375rem;
  margin: 0 auto 2.1875rem;
}
@media (min-width: 992px) {
  .checked-list__title--small {
    max-width: unset;
    margin: 0 0 2.5rem;
  }
}
.checked-list__item {
  min-height: 2.8125rem;
  margin: 0 0 2.5rem;
  padding-left: 3.25rem;
  background: url("https://static.tildacdn.com/tild3034-3931-4235-a166-323366336161/check.svg") no-repeat left top/2.5rem;
}
.checked-list__item:last-child {
  margin: 0;
}
.checked-list__item__title {
  margin: 0 0 1rem;
  font-size: 1.25rem;
  font-weight: 700;
}
@media (min-width: 992px) {
  .checked-list__item__title {
    margin: 0 0 1.25rem;
  }
}
.checked-list__btn {
  margin: 4.6875rem 0 0;
}
.checked-list__btn .btn, .checked-list__btn button,
.checked-list__btn a.button,
.checked-list__btn input[type=submit] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 12.5rem;
  height: 3.5rem;
  margin: 0 auto;
  font-size: 1.125rem;
}
.checked-list + .angle {
  margin-top: -1.875rem;
}
@media (min-width: 992px) {
  .checked-list + .angle {
    margin-top: -5.625rem;
  }
}

.clients {
  padding: 3.75rem 0 5.625rem;
  background: #f3f4f7;
}
@media (min-width: 992px) {
  .clients {
    padding: 5.625rem 0 9.375rem;
  }
}
.clients__title {
  margin: 0 0 1.875rem;
  font-size: 1.75rem;
}
@media (min-width: 992px) {
  .clients__title {
    margin: 0 0 2.5rem;
    font-size: 2.5rem;
    text-align: center;
  }
}
.clients__list {
  display: flex !important;
  width: 83%;
}
@media (min-width: 992px) {
  .clients__list {
    max-width: 66rem;
    width: 100%;
    margin: 0 auto;
  }
}
.clients__list.slick-initialized {
  display: block !important;
}
.clients__list > div:not(.slick-list) {
  flex: 0 0 100%;
  width: 100%;
  padding-right: 1.25rem;
}
@media (min-width: 992px) {
  .clients__list > div:not(.slick-list) {
    flex: 0 0 25%;
    width: 25%;
  }
}
.clients__item {
  width: 100%;
}
.clients__item__wrapper, .clients__item__wrapper.slick-slide {
  display: block !important;
  flex-shrink: 0;
  padding-right: 1.25rem;
}
.clients__item__photo {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 102% 0 0;
  border-radius: 0.9375rem;
  border: 1px solid #dedee9;
  box-shadow: 0 0.1875rem 0.5rem 0 rgba(13, 10, 44, 0.06);
}
@media (min-width: 576px) {
  .clients__item__photo {
    border-width: 0.0625rem;
  }
}
.clients__item__data {
  margin: 0.625rem 0.8125rem 0;
}
.clients__item__desc {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 1.5rem;
  padding-left: 2rem;
  margin: 0 0 1rem;
  background: url("https://static.tildacdn.com/tild6233-3362-4137-a336-313061316266/data-check.svg") no-repeat left center/1.5rem;
  font-size: 0.875rem;
  font-weight: 700;
}
.clients__item__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #03326a;
}
.clients__item__city {
  font-size: 1rem;
  font-weight: 700;
}
.clients__controls {
  margin: 2.5rem 0 0;
}
.clients + .angle {
  margin-top: -1.875rem;
}
@media (min-width: 992px) {
  .clients + .angle {
    margin-top: -5.625rem;
  }
}

.container .full-width {
  width: 100vw;
  min-width: 320px;
  margin-left: -1.25rem;
}
@media (min-width: 576px) {
  .container .full-width {
    max-width: 100vw;
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 2.5rem 0 2.5rem;
}
@media (min-width: 992px) {
  .hero {
    padding: 5rem 0 5rem;
  }
}
@media (min-width: 992px) {
  .hero__info {
    max-width: 46.375rem;
    margin: 0 auto;
  }
}
.hero__title {
  margin-bottom: 1.875rem;
  font-family: "Evolventa", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}
@supports (font-size: clamp(1.5rem, 1rem + 2.1739vw, 2.75rem)) {
  .hero__title {
    font-size: clamp(1.5rem, 1rem + 2.1739vw, 2.75rem);
  }
}
@supports not (font-size: clamp(1.5rem, 1rem + 2.1739vw, 2.75rem)) {
  .hero__title {
    font-size: calc(1.5rem + 1.25 * (100vw - 20rem) / 57.5);
  }
}
@supports (margin-bottom: clamp(1.875rem, 1.4402rem + 2.1739vw, 3.125rem)) {
  .hero__title {
    margin-bottom: clamp(1.875rem, 1.4402rem + 2.1739vw, 3.125rem);
  }
}
@supports not (margin-bottom: clamp(1.875rem, 1.4402rem + 2.1739vw, 3.125rem)) {
  .hero__title {
    margin-bottom: calc(1.875rem + 1.25 * (100vw - 20rem) / 57.5);
  }
}
@media (min-width: 992px) {
  .hero__title {
    margin-bottom: 3.125rem;
    font-size: 2.75rem;
    text-align: center;
  }
}
.hero__title b {
  background: linear-gradient(180deg, #ed213a 0, #93291e 100%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #ce3c4e;
}
.hero__title span {
  white-space: nowrap;
}
.hero__list {
  max-width: 25.625rem;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .hero__list {
    max-width: 39rem;
  }
}
.hero__list__item {
  position: relative;
  margin: 0 0 0.5rem;
  padding: 1.25rem 1.25rem 1.25rem 2.0625rem;
  background: linear-gradient(135deg, #f8f7f7 0, #fff 100%);
  box-shadow: 0 0.25rem 0.625rem 0 rgba(0, 0, 0, 0.1);
  border-radius: 0.625rem;
  font-family: "Evolventa", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
}
@media (min-width: 576px) {
  .hero__list__item {
    border-width: 0.0625rem;
  }
}
@supports (font-size: clamp(0.875rem, 0.8315rem + 0.2174vw, 1rem)) {
  .hero__list__item {
    font-size: clamp(0.875rem, 0.8315rem + 0.2174vw, 1rem);
  }
}
@supports not (font-size: clamp(0.875rem, 0.8315rem + 0.2174vw, 1rem)) {
  .hero__list__item {
    font-size: calc(0.875rem + 0.125 * (100vw - 20rem) / 57.5);
  }
}
@supports (margin-bottom: clamp(0.625rem, 0.4076rem + 1.0869vw, 1.25rem)) {
  .hero__list__item {
    margin-bottom: clamp(0.625rem, 0.4076rem + 1.0869vw, 1.25rem);
  }
}
@supports not (margin-bottom: clamp(0.625rem, 0.4076rem + 1.0869vw, 1.25rem)) {
  .hero__list__item {
    margin-bottom: calc(0.625rem + 0.625 * (100vw - 20rem) / 57.5);
  }
}
@media (min-width: 992px) {
  .hero__list__item {
    margin-bottom: 1.25rem;
  }
}
.hero__list__item:last-child {
  margin: 0;
}
.hero__list__item:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0.9375rem;
  width: 0.5rem;
  height: 0.5rem;
  background-color: #ce3c4e;
  border-radius: 50%;
  transform: translateY(-50%);
}
.hero__img {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 100%;
}
@media (min-width: 992px) {
  .hero__img {
    position: absolute;
    bottom: 0;
    right: -6.58rem;
    z-index: 10;
    width: 44.2202rem;
    height: 43.625rem;
    padding: 0;
  }
}
.hero__img svg,
.hero__img img {
  left: 19%;
  z-index: 30;
}
@media (min-width: 992px) {
  .hero__img svg,
  .hero__img img {
    left: 0;
  }
}
@media (min-width: 992px) {
  .hero + .angle {
    margin-top: -2rem;
  }
}

.price {
  padding: 5.625rem 0 3.75rem;
  background: #fff;
}
@media (min-width: 992px) {
  .price {
    padding: 5.625rem 0 4.625rem;
  }
}
@media (min-width: 992px) {
  .price__inner {
    width: 37.5rem;
    margin: 0 auto;
  }
}
.price__title {
  margin: 0 0 1.875rem;
  font-size: 1.75rem;
  text-align: center;
}
@media (min-width: 992px) {
  .price__title {
    font-size: 2.5rem;
  }
}
.price__item {
  padding: 0;
  background-color: #03326a;
  border-radius: 1.25rem;
  border: 0.3125rem solid #03326a;
  border-top-width: 0.9375rem;
}
.price__item--dark {
  margin: 2.5rem 0 0;
  padding: 2.1875rem 1.25rem 3.125rem;
  background: url("https://static.tildacdn.com/tild6332-3164-4430-a534-356531313739/bg-blue-green.jpg") no-repeat left bottom/cover;
  border: none;
  color: #fff;
}
.price__item__inner {
  padding: 1.25rem;
  background-color: #fff;
  border-radius: 1.25rem;
}
.price__item__title {
  margin: 0 0 1.5rem;
  font-size: 1.375rem;
  font-weight: 700;
  text-align: center;
}
@media (min-width: 992px) {
  .price__item__title {
    font-size: 1.75rem;
  }
}
.price__item--dark .price__item__title {
  margin: 0 0 2.5rem;
  font-size: 1.75rem;
  text-align: left;
}
@media (min-width: 992px) {
  .price__item--dark .price__item__title {
    text-align: center;
  }
}
.price__item__title b {
  color: #51b44c;
}
.price__item ul li:before {
  background-color: #191b1d;
}
.price__item__value {
  margin: 2.5rem 0 0;
  font-size: 1.75rem;
  font-weight: 700;
  text-align: center;
}
.price__item__desc {
  margin: 0.5 0 0;
  font-size: 0.875rem;
  text-align: center;
}
@media (min-width: 992px) {
  .price__item__desc {
    font-size: 1rem;
  }
}
.price__item__btn {
  margin: 2.5rem 0 0;
}
.price__item__btn .btn, .price__item__btn button,
.price__item__btn a.button,
.price__item__btn input[type=submit] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 3.625rem;
}
.price__item__text {
  font-weight: 700;
}
@media (min-width: 992px) {
  .price__item__text {
    text-align: center;
  }
}
.price__item--dark .price__item__text {
  padding: 0 1rem;
}

.quiz {
  overflow: hidden;
  padding: 0 0 1.875rem;
  background: #f3f4f7;
  box-shadow: 0 2rem 2.5rem -0.625rem rgba(0, 0, 0, 0.1);
}
@media (min-width: 992px) {
  .quiz {
    padding: 0 0 3.75rem;
  }
}
.quiz.quiz--dark {
  padding: 2.5rem 0 5.625rem;
  background: #02428d;
  box-shadow: none;
}
@media (min-width: 992px) {
  .quiz.quiz--dark {
    padding: 5.625rem 0 9.375rem;
  }
}
.quiz.quiz--dark + .angle {
  margin-top: -1.875rem;
}
@media (min-width: 992px) {
  .quiz.quiz--dark + .angle {
    margin-top: -5.625rem;
  }
}
.quiz__header {
  margin: 0 -0.115625rem;
  padding: 1.25rem 0 1.875rem;
  background-color: #fff;
}
@media (min-width: 992px) {
  .quiz__header {
    margin: 0;
    padding: 3.125rem 0;
  }
}
.quiz--dark .quiz__header {
  padding-bottom: 0.625rem;
  background: #02428d;
  color: #fff;
}
.quiz__title {
  max-width: 40.1875rem;
  margin: 0 auto;
  font-size: 1.5625rem;
  text-align: center;
  color: #03326a;
}
.quiz--dark .quiz__title {
  font-size: 1.5rem;
  line-height: 1.45;
  color: #fff;
}
.quiz__form {
  position: relative;
  height: 32.5rem;
}
@media (min-width: 992px) {
  .quiz__form {
    width: 37.5rem;
    margin: 0 auto;
  }
}
.quiz__progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 10;
  width: 100%;
  background: #c5d0e2;
}
.quiz--dark .quiz__progress {
  display: none;
}
.quiz__progress__bar {
  width: 20%;
  height: 0.3125rem;
  background: #03326a;
  transform: translateZ(0);
  transition: width 0.3s ease;
}
.quiz__item {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  padding: 1.875rem 0 0;
  transform: translateY(4rem);
  transition: all 0.4s ease-out 0.4s;
  opacity: 0;
}
.quiz__item.active {
  z-index: 2;
  transform: translateY(0);
  transition: all 0.6s ease-out 0.4s;
  opacity: 1;
}
.quiz__item__name {
  margin: 0 0 1.5rem;
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.25;
  color: #03326a;
}
@media (min-width: 992px) {
  .quiz__item__name {
    font-size: 1.75rem;
  }
}
.quiz--dark .quiz__item__name {
  color: #fff;
}
.quiz__item__btns {
  display: flex;
  gap: 0.625rem;
  align-items: center;
  justify-content: space-between;
  margin: auto 0 0;
  padding: 2.5rem 0 0;
}
.quiz__item__btns .btn, .quiz__item__btns button,
.quiz__item__btns a.button,
.quiz__item__btns input[type=submit] {
  height: 3.275rem;
  font-size: 1rem;
}
.quiz__item__btns .btn svg, .quiz__item__btns button svg,
.quiz__item__btns a.button svg,
.quiz__item__btns input[type=submit] svg {
  width: 1.5rem;
  height: 1.5rem;
}
.quiz__item__btns .btn--secondary, .quiz__item__btns button,
.quiz__item__btns a.button,
.quiz__item__btns input[type=submit] {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 100%;
}
.quiz__item__btns .btn--secondary svg, .quiz__item__btns button svg,
.quiz__item__btns a.button svg,
.quiz__item__btns input[type=submit] svg {
  margin-left: 0.3rem;
}
.quiz--dark .quiz__item__btns .btn--gray {
  background: #fff;
  border: none;
}
.quiz__question {
  margin: 0 0 0.625rem;
  padding: 1.25rem 1.25rem 1.25rem 0.9375rem;
  background: #fff;
  border-radius: 1.125rem;
}
.quiz__question:last-child {
  margin: 0;
}
.quiz__input {
  margin: 0 0 0.5rem;
}
.quiz__txt {
  margin: 0 0 1.5rem;
  font-size: 1rem;
  color: #03326a;
}
@supports (font-size: clamp(1rem, 0.78vw + 0.844rem, 1.125rem)) {
  .quiz__txt {
    font-size: clamp(1rem, 0.78vw + 0.844rem, 1.125rem);
  }
}
@supports not (font-size: clamp(1rem, 0.78vw + 0.844rem, 1.125rem)) {
  .quiz__txt {
    font-size: calc(18 * (100vw - 2.5rem) / 335);
  }
}
@media (min-width: 992px) {
  .quiz__txt {
    font-size: 1.125rem;
  }
}
.quiz--dark .quiz__txt {
  color: #fff;
}
.quiz label {
  position: relative;
  margin: 0;
  padding-left: 1.875rem;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4375rem;
  color: #191b1d;
  cursor: pointer;
  white-space: nowrap;
}
.quiz label:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: -0.625rem;
  border-radius: 50%;
  border: 2px solid #51b44c;
  opacity: 0.6;
  transition: all 0.2s;
}
@media (min-width: 576px) {
  .quiz label:before {
    border: 0.125rem solid #51b44c;
  }
}
.quiz input[type=radio] {
  display: none;
}
.quiz input[type=radio]:checked + label:before {
  opacity: 1;
}
.quiz input[type=radio]:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0.3125rem;
  width: 0.625rem;
  height: 0.625rem;
  margin-top: -0.3125rem;
  border-radius: 50%;
  background: #51b44c;
}

.result {
  padding: 3.75rem 0;
  background: #f3f4f7;
}
@media (min-width: 992px) {
  .result {
    padding: 5.625rem 0 9.375rem;
  }
}
@media (min-width: 992px) {
  .result__inner {
    width: 37.5rem;
    margin: 0 auto;
  }
}
.result__title {
  margin: 0 0 2.5rem;
  font-size: 1.75rem;
  text-align: center;
}
@media (min-width: 992px) {
  .result__title {
    margin: 0 0 2.5rem;
    font-size: 2.5rem;
  }
}
.result__item {
  margin: 0 0 2.5rem;
  padding: 1.875rem 1.25rem;
  border: 2px solid #51b44c;
  border-radius: 0.9375rem;
}
@media (min-width: 576px) {
  .result__item {
    border-width: 0.125rem;
  }
}
@media (min-width: 992px) {
  .result__item {
    padding: 1.875rem 3.125rem;
  }
}
.result__item:last-child {
  margin: 0;
}
.result__item--red {
  border-color: #ce3c4e;
}
.result__item__title {
  margin: 0 0 2.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #51b44c;
}
.result__item--red .result__item__title {
  color: #ce3c4e;
}
.result__item ul li:before {
  background-color: #191b1d;
}
.result + .angle {
  margin-top: -1.875rem;
}
@media (min-width: 992px) {
  .result + .angle {
    margin-top: -5.625rem;
  }
}

.reviews {
  padding: 3.75rem 0;
  background: #fff;
}
@media (min-width: 992px) {
  .reviews {
    padding: 5.625rem 0 9.375rem;
  }
}
@media (min-width: 992px) {
  .reviews__inner {
    width: 37.5rem;
    margin: 0 auto;
  }
}
.reviews__title {
  margin: 0 0 1rem;
  font-size: 1.75rem;
  text-align: center;
}
@media (min-width: 992px) {
  .reviews__title {
    margin: 0 0 1.25rem;
    font-size: 1.75rem;
  }
}
.reviews__title b {
  color: #51b44c;
}
.reviews__txt {
  margin: 0 0 1.875rem;
  font-weight: 700;
  text-align: center;
}
@media (min-width: 992px) {
  .reviews__txt {
    margin: 0 0 2.5rem;
  }
}
.reviews__list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.3125rem -0.625rem;
}
.reviews__list__item {
  flex: 0 0 50%;
  padding: 0 0.3125rem 0.625rem;
}
@media (min-width: 992px) {
  .reviews__list__item--small {
    flex: 0 0 33.3333%;
  }
}
.reviews__board {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0.8125rem;
  border-radius: 0.9375rem;
  background: #fff;
  border: 1px solid #b6b9bc;
  text-decoration: none;
  color: #191b1d;
}
@media (min-width: 576px) {
  .reviews__board {
    border-width: 0.0625rem;
  }
}
@media (min-width: 992px) {
  .reviews__board {
    justify-content: center;
  }
}
.reviews__board:hover, .reviews__board:focus, .reviews__board:active {
  text-decoration: none;
  color: #191b1d;
}
.reviews__board__icon {
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
}
@media (min-width: 992px) {
  .reviews__board__icon {
    margin-right: 1rem;
  }
}
.reviews__board__info {
  text-align: right;
}
@media (min-width: 992px) {
  .reviews__board__info {
    max-width: 5.3125rem;
  }
}
.reviews__board__rating {
  font-size: 1.25rem;
  font-weight: 700;
  color: #51b44c;
}
.reviews__board__txt {
  font-size: 0.9375rem;
  line-height: 1;
}

.team {
  padding: 3.75rem 0 5.625rem;
  background: #fff;
}
@media (min-width: 992px) {
  .team {
    padding: 5.625rem 0 9.375rem;
  }
}
.team__title {
  margin: 0 0 1.875rem;
  font-size: 1.75rem;
}
@media (min-width: 992px) {
  .team__title {
    margin: 0 0 2.5rem;
    font-size: 2.5rem;
    text-align: center;
  }
}
.team__list {
  display: flex !important;
  width: 83%;
}
@media (min-width: 992px) {
  .team__list {
    max-width: 66rem;
    width: 100%;
    margin: 0 auto;
  }
}
.team__list.slick-initialized {
  display: block !important;
}
.team__list > div:not(.slick-list) {
  flex: 0 0 100%;
  width: 100%;
  padding-right: 1.25rem;
}
@media (min-width: 992px) {
  .team__list > div:not(.slick-list) {
    flex: 0 0 25%;
    width: 25%;
  }
}
.team__item {
  width: 100%;
}
.team__item__wrapper, .team__item__wrapper.slick-slide {
  display: block !important;
  flex-shrink: 0;
  padding-right: 1.25rem;
}
.team__item__photo {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 125.3% 0 0;
  border-radius: 0.9375rem;
  border: 1px solid #dedee9;
}
@media (min-width: 576px) {
  .team__item__photo {
    border-width: 0.0625rem;
  }
}
.team__item__title {
  margin: 0.625rem 0.8125rem 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  color: #03326a;
}
.team__item__text {
  margin: 0 0.8125rem;
  font-size: 0.875rem;
  opacity: 0.8;
}
.team + .angle {
  margin-top: -1.875rem;
}
@media (min-width: 992px) {
  .team + .angle {
    margin-top: -5.625rem;
  }
}

.warranty {
  padding: 5.625rem 0;
  background-color: #02428d;
}
@media (min-width: 992px) {
  .warranty {
    padding: 5.625rem 0 9.375rem;
  }
}
@media (min-width: 992px) {
  .warranty__inner {
    width: 37.5rem;
    margin: 0 auto;
  }
}
.warranty__title {
  margin: 0 0 1.875rem;
  font-size: 1.75rem;
  color: #fff;
}
@media (min-width: 992px) {
  .warranty__title {
    margin: 0 0 2.5rem;
    font-size: 2.5rem;
    text-align: center;
  }
}
.warranty__item {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin: 0 0 1.25rem;
  padding: 1.875rem 1.25rem;
  background-color: #03326a;
  border-radius: 0.9375rem;
  box-shadow: 0.3125rem 0.3125rem 1.25rem 0 rgba(0, 0, 0, 0.3);
  color: #fff;
}
.warranty__item:last-child {
  margin: 0;
}
.warranty__item__title {
  margin: 0 0 0.625rem;
  font-size: 1.5rem;
  font-weight: 700;
}
.warranty__item__img {
  position: relative;
  flex: 0 0 5.5rem;
  width: 5.5rem;
  height: 5.5rem;
  margin: 0 -0.625rem -0.625rem 0;
}
.warranty__item__img img {
  object-fit: contain;
}
.warranty__btn {
  margin: 2.5rem 0 0;
}
.warranty__btn .btn, .warranty__btn button,
.warranty__btn a.button,
.warranty__btn input[type=submit] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 13.625rem;
  height: 3.625rem;
  margin: 0 auto;
}
.warranty + .angle {
  margin-top: -1.875rem;
}
@media (min-width: 992px) {
  .warranty + .angle {
    margin-top: -5.625rem;
  }
}

.angle {
  position: relative;
  width: 100%;
  height: 1.875rem;
}
@media (min-width: 992px) {
  .angle {
    height: 5.625rem;
  }
}
.angle svg {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100%;
  height: 100%;
  transform: translateX(-50%);
}

.btn, button,
a.button,
input[type=submit] {
  display: inline-block;
  padding: 0.625rem 1.25rem;
  border-radius: 0.9375rem;
  border: none;
  transition: all 0.3s ease-out;
  text-transform: none;
  text-align: center;
  cursor: pointer;
  font-family: "Arsenal", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.25;
  letter-spacing: 0;
}
.btn, button,
a.button,
input[type=submit] {
  text-decoration: none !important;
}
.btn:hover, button:hover,
a.button:hover,
input[type=submit]:hover, .btn:active, button:active,
a.button:active,
input[type=submit]:active, .btn:focus, button:focus,
a.button:focus,
input[type=submit]:focus {
  text-decoration: none !important;
}
.btn--disabled, .btn:disabled, button:disabled,
a.button:disabled,
input[type=submit]:disabled {
  background: #898989 !important;
  box-shadow: none;
}
.btn--disabled:hover, .btn--disabled:focus, .btn:disabled:hover, button:disabled:hover,
a.button:disabled:hover,
input[type=submit]:disabled:hover, .btn:disabled:focus, button:disabled:focus,
a.button:disabled:focus,
input[type=submit]:disabled:focus {
  transform: none;
  box-shadow: none;
}
.btn--primary {
  background: #ce3c4e;
  color: #fff;
}
.btn--primary:disabled {
  background: #898989 !important;
  box-shadow: none;
}
.btn--primary:disabled:hover, .btn--primary:disabled:focus {
  transform: none;
  box-shadow: none;
}
.btn--primary:hover, .btn--primary:active, .btn--primary:focus {
  background: #ce3c4e;
  color: #fff;
}
.btn--secondary, button,
a.button,
input[type=submit] {
  background: #51b44c;
  color: #fff;
}
.btn--secondary:hover, button:hover,
a.button:hover,
input[type=submit]:hover, .btn--secondary:active, button:active,
a.button:active,
input[type=submit]:active, .btn--secondary:focus, button:focus,
a.button:focus,
input[type=submit]:focus {
  background: #51b44c;
  color: #fff;
}
.btn--secondary:disabled, button:disabled,
a.button:disabled,
input[type=submit]:disabled {
  background: #898989 !important;
  box-shadow: none;
}
.btn--secondary:disabled:hover, button:disabled:hover,
a.button:disabled:hover,
input[type=submit]:disabled:hover, .btn--secondary:disabled:focus, button:disabled:focus,
a.button:disabled:focus,
input[type=submit]:disabled:focus {
  transform: none;
  box-shadow: none;
}
.btn--gray {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 3.275rem;
  width: 3.275rem;
  height: 3.275rem;
  padding: 0;
  border: 2px solid #000;
  border-radius: 0.9375rem;
}
@media (min-width: 576px) {
  .btn--gray {
    border-width: 0.125rem;
  }
}
.btn--gray svg {
  flex: 0 0 1.5rem;
}
.btn--gray.disabled {
  opacity: 0.4;
}
.btn--play {
  display: block;
  width: 3.25rem;
  height: 3.25rem;
  padding: 0;
  background: #fff url("../images/common/play-video.svg") no-repeat 55% 50%;
  background-size: 1.4375rem 1.4375rem;
  border-radius: 50%;
  cursor: pointer;
}
@media (min-width: 992px) {
  .btn--play {
    width: 5.5rem;
    height: 5.5rem;
    background-size: 2.125rem 2.125rem;
  }
}
.btn--play:hover {
  outline: none;
  border: none;
  text-decoration: none;
  background-color: #fff;
  animation: btn-pulse 0.5s ease-out alternate infinite;
}
.btn--close {
  width: 0.875rem;
  height: 0.875rem;
  background: url("../images/common/close.svg") no-repeat center;
  cursor: pointer;
}
.btn--close:hover, .btn--close:focus, .btn--close:active {
  outline: none;
  border: none;
  text-decoration: none;
  background: url("../images/common/close.svg") no-repeat center;
}

@keyframes btn-pulse {
  to {
    transform: scale(1.2);
  }
}
/* stylelint-disable selector-not-notation */
/* stylelint-disable no-descending-specificity */
.content iframe {
  max-width: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.content img {
  max-width: 100%;
  height: auto;
}
.content a:not(.btn):not(button):not(a.button):not(input[type=submit]):not(.btn--play):not([data-fancybox]):not(.reviews__board) {
  transition: all 0.3s ease-out;
  font-weight: 400;
  text-decoration: underline;
  color: #ce3c4e;
}
.content a:not(.btn):not(button):not(a.button):not(input[type=submit]):not(.btn--play):not([data-fancybox]):not(.reviews__board):hover, .content a:not(.btn):not(button):not(a.button):not(input[type=submit]):not(.btn--play):not([data-fancybox]):not(.reviews__board):active, .content a:not(.btn):not(button):not(a.button):not(input[type=submit]):not(.btn--play):not([data-fancybox]):not(.reviews__board):focus {
  outline: none;
  text-decoration: underline;
  color: #ce3c4e;
}

ol {
  list-style: none;
  counter-reset: ls-web-counter-default;
  margin-top: 0;
  margin-bottom: 1rem;
  padding: 0;
}
@media (min-width: 992px) {
  ol {
    margin-bottom: 2rem;
  }
}
ol li {
  counter-increment: ls-web-counter-default;
  position: relative;
  margin: 0 0 0.625rem;
  padding: 0 0 0 1.4375rem;
}
ol li:before {
  content: counter(ls-web-counter-default) ".";
  position: absolute;
  top: 0;
  left: 0;
  font-weight: 700;
}
ol.is-style-checked li {
  counter-increment: ls-web-counter;
  padding: 0 0 0 2rem;
}
@media (min-width: 992px) {
  ol.is-style-checked li {
    padding: 0 0 0 2.5rem;
  }
}
ol.is-style-checked li:before {
  content: counter(ls-web-counter);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: #191b1d;
  font-family: "Arsenal", sans-serif;
  font-size: 0.875rem;
  line-height: 1.5rem;
  text-align: center;
  color: #fff;
}
@media (min-width: 992px) {
  ol.is-style-checked li:before {
    width: 1.5rem;
    height: 1.5rem;
    font-size: 0.875rem;
    line-height: 1.5rem;
  }
}

ul {
  list-style: none;
  margin-top: 0;
  margin-bottom: 1rem;
  padding: 0;
}
@media (min-width: 992px) {
  ul {
    margin-bottom: 2rem;
  }
}
ul:last-child {
  margin: 0;
}
ul li {
  position: relative;
  margin: 0 0 0.625rem;
  padding: 0 0 0 1.25rem;
}
ul li:last-child {
  margin: 0;
}
ul li:before {
  content: "";
  display: block;
  position: absolute;
  top: 0.75rem;
  left: 0;
  width: 0.375rem;
  height: 0.375rem;
  margin: -0.1875rem 0 0;
  border-radius: 50%;
  background: #51b44c;
}

ul ul {
  list-style-type: "─";
  margin-bottom: 0;
}
ul ul li:before {
  display: none;
}

ul.ul-arrows {
  margin: 0 0 2rem;
}
@media (min-width: 992px) {
  ul.ul-arrows {
    margin: 0 0 1.6875rem;
  }
}
ul.ul-arrows li:before {
  top: 0;
  left: 0;
  width: 0.375rem;
  height: 0.75rem;
  margin: 0.375rem 0 0;
  border-radius: 0;
  background: url("../images/arrow-left.svg") no-repeat center;
  background-size: cover;
}
ul.ul-arrows--white li:before {
  background: url("../images/arrow-left-w.svg") no-repeat center;
  background-size: cover;
}

ul.checked {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
}
ul.checked li {
  position: relative;
  padding-left: 1.625rem;
}
ul.checked li:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 1.125rem;
  height: 0.875rem;
  margin: -0.4375rem 0 0;
  background: url("../images/common/checkmark.svg") no-repeat left center;
  background-size: 100%;
}

.cookie {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2100;
  max-height: 8.125rem;
  transform: translateY(0);
  transition: all 0.5s ease-out;
}
.cookie.cookie--hidden {
  max-height: 0;
  overflow: hidden;
  transform: translateY(150%);
}
.cookie__inner {
  padding: 0.75rem;
  background: #fff;
  text-align: center;
}
.cookie__txt {
  margin: 0 0 0.5rem;
  font-size: 0.875rem;
}
@supports (font-size: clamp(0.875rem, 0.298vw + 0.815rem, 1rem)) {
  .cookie__txt {
    font-size: clamp(0.875rem, 0.298vw + 0.815rem, 1rem);
  }
}
@supports not (font-size: clamp(0.875rem, 0.298vw + 0.815rem, 1rem)) {
  .cookie__txt {
    font-size: 0.875rem;
  }
}
@media (min-width: 992px) {
  .cookie__txt {
    font-size: 1.125rem;
  }
}
.cookie__btn {
  margin-left: 0.5rem;
}
.cookie__btn .btn, .cookie__btn button,
.cookie__btn a.button,
.cookie__btn input[type=submit] {
  padding: 0.3125rem 0.9375rem;
  border-radius: 0.3125rem;
  font-size: 0.875rem;
  font-weight: 400;
  text-transform: none;
}

/* stylelint-disable no-descending-specificity */
.footer {
  padding: 2.5rem 0 0;
  background: #03326a;
  color: #fff;
}
@media (min-width: 992px) {
  .footer {
    padding: 4.37rem 0 0;
  }
}
.footer a {
  color: #fff;
}
.footer a:hover, .footer a:focus, .footer a:active {
  outline: none;
  color: #fff;
}
.footer__top {
  margin: 0 0 2.5rem;
}
@media (min-width: 992px) {
  .footer__top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .footer__top > div {
    flex: 0 1 50%;
  }
}
.footer__logo {
  width: 10.25rem;
  margin: 0 0 2.5rem;
}
.footer__logo .logo {
  display: block;
  width: 100%;
  height: auto;
}
@media (min-width: 992px) {
  .footer__logo .logo {
    width: 15rem;
  }
}
.footer__contacts {
  margin: 0 0 1.875rem;
}
@media (min-width: 992px) {
  .footer__contacts {
    margin: 0 0 2.5rem;
    text-align: right;
  }
}
.footer__tel {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}
.footer__tel a {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.25;
  color: #51b44c !important;
}
@media (min-width: 992px) {
  .footer__tel a {
    font-size: 2.5;
  }
}
.footer__tel a:hover, .footer__tel a:focus, .footer__tel a:active {
  color: #51b44c !important;
}
.footer__time {
  margin: 0 0 2.5rem;
  font-size: 1rem;
}
@media (min-width: 992px) {
  .footer__time {
    order: 4;
    margin: 0;
    text-align: right;
  }
}
.footer__time b {
  display: block;
  margin: 0 0 0.5rem;
}
.footer__time span {
  display: inline-block;
  text-align: right;
}
.footer__soc {
  align-self: center;
}
.footer__soc__inner {
  display: flex;
  gap: 0.5rem;
}
@media (min-width: 992px) {
  .footer__soc__inner {
    width: 20.9375rem;
  }
}
.footer__soc__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  flex: 0 1 50%;
  height: 3rem;
  background-color: #009be3;
  border-radius: 0.9375rem;
  font-weight: 700;
}
.footer__soc__item--max {
  background: url("https://static.tildacdn.com/tild3061-6662-4534-b033-383762353464/bg-max.png") no-repeat center/cover;
}
.footer__middle {
  padding: 0 0 2rem;
}
@media (min-width: 992px) {
  .footer__middle {
    display: flex;
    flex-wrap: wrap;
  }
}
.footer__data {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  font-weight: 700;
}
@media (min-width: 992px) {
  .footer__data {
    flex: 0 0 50%;
    align-self: self-end;
    margin: 0 0 1.25rem;
    order: 1;
    font-size: 1rem;
    text-align: right;
  }
}
.footer__data span {
  margin: 0 0.3rem;
}
.footer__links {
  margin: 0 0 1.875rem;
}
@media (min-width: 992px) {
  .footer__links {
    display: flex;
    align-self: center;
    order: 3;
    margin: 0 0 0 auto;
  }
}
.footer__links li {
  padding: 0;
}
@media (min-width: 992px) {
  .footer__links li {
    margin: 0 0 0 3.125rem;
  }
  .footer__links li:last-child {
    margin: 0 0 0 3.125rem;
  }
}
.footer__links li:before {
  display: none;
}
.footer__links li a {
  font-size: 0.8125rem;
  font-weight: 400;
}
.footer__oferta {
  margin: 0 0 3.75rem;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.18;
}
@media (min-width: 992px) {
  .footer__oferta {
    order: 0;
    flex: 0 0 50%;
    align-self: center;
    margin: 0 0 1.25rem;
  }
}
.footer__copyright {
  font-size: 0.75rem;
  font-weight: 400;
  text-align: center;
}
@media (min-width: 992px) {
  .footer__copyright {
    order: 2;
    text-align: left;
  }
}
.footer__bottom {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  padding: 0.75rem 0;
  background: #fff;
  box-shadow: 0 -0.5rem 1.25rem 0 rgba(0, 0, 0, 0.05);
  font-size: 0.6875rem;
  line-height: 0.84375rem;
  text-align: center;
  color: #191b1d;
}
@media (min-width: 992px) {
  .footer__bottom {
    padding: 1.53rem 0;
    font-size: 0.875rem;
    line-height: 1.25;
  }
}

.form__group {
  margin: 0 0 0.5rem;
}
.form__group--submit {
  margin: 2.5rem 0 1rem;
}
.form__group--submit .btn, .form__group--submit button,
.form__group--submit a.button,
.form__group--submit input[type=submit] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 3.625rem;
}
.form__group--text {
  margin: 0;
  font-size: 0.9375rem;
  text-align: center;
}

.content .container > section:not(.full-width) .container {
  width: 100%;
  padding: 0;
}
.content .container > div:not(.full-width) .container {
  width: 100%;
  padding: 0;
}

/* stylelint-disable no-descending-specificity */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  height: 3.8125rem;
  background-color: #fff;
  transition: all 0.3s ease-out;
}
@media (min-width: 992px) {
  .header {
    height: 5.5rem;
  }
}
.scrolled--colored .header {
  background-color: #03326a;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  margin: 0 -0.625rem;
  padding: 0.5rem 0;
}
@media (min-width: 350px) {
  .header__inner {
    margin: 0;
  }
}
@media (min-width: 992px) {
  .header__inner {
    padding: 1.25rem 0;
  }
}
.header__logo {
  position: relative;
  z-index: 2500;
  overflow: hidden;
  width: auto;
  height: 2.5rem;
  flex-shrink: 0;
}
@media (min-width: 359px) {
  .header__logo {
    height: 2.8125rem;
  }
}
@media (min-width: 992px) {
  .header__logo {
    height: 3rem;
  }
}
.header__logo svg {
  width: auto;
  height: 100%;
}
.header__logo svg path {
  fill: #ce3c4e;
  transition: all 0.3s ease-out;
}
.scrolled--colored .header__logo svg path {
  fill: #fff;
}
.header__info {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.header__soc {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.625rem;
  margin-right: 0.625rem;
}
.scrolled .header__soc {
  display: none;
}
.header__soc__item {
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 65% auto;
  border-radius: 50%;
}
@media (min-width: 992px) {
  .header__soc__item {
    width: 3rem;
    height: 3rem;
    background-color: transparent;
    border-radius: 0.9375rem;
  }
}
.header__soc__item--telegram {
  background-size: 70% auto;
  background-position: left 40% center;
  background-image: url("https://static.tildacdn.com/tild6533-3536-4438-a130-633763633064/telegram-r.svg");
}
@media (min-width: 992px) {
  .scrolled .header__soc__item--telegram {
    background-image: url("https://static.tildacdn.com/tild3263-3036-4233-a334-336461343235/telegram-w.svg");
  }
}
.header__soc__item--max {
  background-image: url("https://static.tildacdn.com/tild3661-3833-4336-a662-313763653339/max-r.svg");
}
@media (min-width: 992px) {
  .scrolled .header__soc__item--max {
    background-image: url("https://static.tildacdn.com/tild3038-6536-4437-b934-383765333935/max-w.svg");
  }
}
.header__phone a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background-color: #fff;
  border-radius: 50%;
  transition: width 0.3s ease-out;
  font-size: 1.3125rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
  color: #191b1d;
}
.scrolled .header__phone a {
  width: auto;
  border-radius: 0;
}
.scrolled--colored .header__phone a {
  background: transparent;
  color: #fff !important;
}
.header__phone a span {
  display: none;
}
.scrolled .header__phone a span {
  display: inline;
}
@media (min-width: 992px) {
  .header__phone a {
    width: 3rem;
    height: 3rem;
    border-radius: 0.9375rem;
    font-size: 1.5rem;
  }
}
.header__phone a:hover, .header__phone a:focus, .header__phone a:active {
  outline: none;
  text-decoration: none;
}
.header__phone a svg {
  width: 60%;
  height: auto;
}
.scrolled .header__phone a svg {
  display: none;
}

.popup-form {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 1000000;
  overflow: hidden;
  width: 100%;
  max-width: 26.25rem;
  height: 100vh;
  background: #f3f4f7;
  transform: translate(-50%, -50%);
}
@media (min-width: 992px) {
  .popup-form {
    height: calc(100vh - 5rem);
  }
}
.popup-form__header {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3.8125rem;
  background-color: #03326a;
}
.popup-form__close {
  position: absolute;
  top: 0.625rem;
  right: 1.25rem;
  z-index: 2000;
  width: 2.25rem;
  height: 2.25rem;
  margin: 0;
  background: url("https://static.tildacdn.com/tild6366-6136-4130-b666-666534666561/close.svg") no-repeat center;
  background-size: 0.8125rem;
  cursor: pointer;
}
.popup-form__form {
  overflow-x: hidden;
  overflow-y: auto;
  height: calc(100vh - 3.8125rem);
  padding: 0 1.25rem 1.875rem;
}
@media (min-width: 992px) {
  .popup-form__form {
    height: calc(100vh - 5rem - 3.8125rem);
  }
}
.popup-form__title {
  margin: 0 0 0.5rem;
  padding: 1.875rem 0 0;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.25;
  color: #03326a;
}
.popup-form__text {
  margin: 0 0 1.5rem;
}
.popup-form__message {
  padding: 2.5rem 0 0;
  text-align: center;
}
.popup-form__message__title {
  margin: 0 0 1rem;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  color: #51b44c;
}
.popup-form__message__title--error {
  color: #ce3c4e;
}

.popup-cover {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  background: rgba(2, 53, 110, 0.33);
  backdrop-filter: blur(41.5px);
}

.hide {
  display: none !important;
}

/* stylelint-disable no-descending-specificity */
/* Slider */
.slickjs {
  display: flex;
}
.slickjs.slick-initialized {
  display: block;
}

.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  perspective: 1000;
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: flex;
  align-items: stretch;
  margin-left: auto;
  margin-right: auto;
}
.slick-vertical .slick-track {
  display: block;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  min-height: 1px;
  height: inherit;
  display: flex !important;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  backface-visibility: hidden;
  perspective: 1000;
}
.slick-slide > div {
  height: 100%;
  width: 100%;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: flex;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Arrows */
.slick-prev,
.slick-next {
  display: block;
  height: 22px;
  width: 22px;
  line-height: 0;
  font-size: 0;
  cursor: pointer;
  background: transparent;
  color: transparent;
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 22px;
  line-height: 1;
  color: #000;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  content: "←";
}
[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}
[dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}
.slick-next:before {
  content: "→";
}
[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-controls {
  margin: 2.5rem 0 0;
}

.slick-dots {
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0 !important;
  width: 100%;
}
.slick-dots li {
  display: inline-block;
  position: relative;
  overflow: hidden;
  width: 0.5rem;
  height: 0.5rem;
  margin: 0 0.3125rem !important;
  padding: 0;
  background: #d9d9d9;
  border: none;
  border-radius: 50%;
  cursor: pointer;
}
@media (min-width: 370px) {
  .slick-dots li {
    margin: 0 0.4375rem !important;
  }
}
.slick-dots li:before {
  display: none !important;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 0.9375rem;
  width: 0.9375rem;
  outline: none;
  line-height: 0;
  font-size: 0;
  color: transparent;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li.slick-active {
  background: #51b44c;
}

.overflow-slider-with-all-visible {
  transition: opacity 0.2s;
  opacity: 0;
}
.overflow-slider-with-all-visible.slick-initialized {
  opacity: 1;
}
.overflow-slider-with-all-visible .slick-list {
  overflow: visible;
}
.overflow-slider-with-all-visible .slick-slide {
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
.overflow-slider-with-all-visible .slick-slide.slick-active, .overflow-slider-with-all-visible .slick-slide.slick-current {
  opacity: 1;
}
.overflow-slider-with-all-visible .slick-slide .injected {
  opacity: 1;
  transition: opacity 0.2s;
}
.overflow-slider-with-all-visible .slick-slide .injected.loading {
  opacity: 0;
}

.overflow-slider-with-fade {
  transition: opacity 0.2s;
  opacity: 0;
}
.overflow-slider-with-fade.slick-initialized {
  opacity: 1;
}
.overflow-slider-with-fade .slick-list {
  overflow: visible;
}
.overflow-slider-with-fade .slick-slide {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.overflow-slider-with-fade .slick-slide.slick-active, .overflow-slider-with-fade .slick-slide.slick-current {
  opacity: 1;
}
.overflow-slider-with-fade .slick-slide.slick-active + .slick-slide, .overflow-slider-with-fade .slick-slide.slick-current + .slick-slide {
  opacity: 1;
}
.overflow-slider-with-fade .slick-slide .injected {
  opacity: 1;
  transition: opacity 0.2s;
}
.overflow-slider-with-fade .slick-slide .injected.loading {
  opacity: 0;
}

.overflow-slider-fade-single {
  transition: opacity 0.2s;
  opacity: 0;
}
.overflow-slider-fade-single.slick-initialized {
  opacity: 1;
}
.overflow-slider-fade-single .slick-list {
  overflow: visible;
}
.overflow-slider-fade-single .slick-slide {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.overflow-slider-fade-single .slick-slide.slick-active, .overflow-slider-fade-single .slick-slide.slick-current {
  opacity: 1;
}
.overflow-slider-fade-single .slick-slide .injected {
  opacity: 1;
  transition: opacity 0.2s;
}
.overflow-slider-fade-single .slick-slide .injected.loading {
  opacity: 0;
}

.doc__text {
  padding: 2.5rem 0 3.75rem;
}
.doc h1 {
  margin: 0 0 1.25rem;
  line-height: 1.2;
  text-align: center;
}
@media (min-width: 992px) {
  .doc h1 {
    margin: 0 0 2rem;
  }
}
.doc h2 {
  margin: 2rem 0 1.25rem;
  text-transform: none;
}
.doc .container {
  max-width: 53.75rem;
}
.doc a {
  color: #02428d !important;
}

.header__close {
  display: block;
  width: 2rem;
  height: 2rem;
  background: #ce3c4e url("https://static.tildacdn.com/tild6366-6136-4130-b666-666534666561/close.svg") no-repeat center/80%;
}
/*# sourceMappingURL=main.css.map */
