@charset "UTF-8";
/**
 * Studently
 *
 * @author Studently
 * @version 0.1.0
 */
:root {
  --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #f06292;
  --bs-red: #dc3545;
  --bs-orange: #ff9a26;
  --bs-yellow: #fdd835;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-white: #ffffff;
  --bs-gray: #757575;
  --bs-gray-dark: #424242;
  --bs-gray-100: #f5f5f5;
  --bs-gray-200: #eeeeee;
  --bs-gray-300: #e0e0e0;
  --bs-gray-400: #bdbdbd;
  --bs-gray-500: #9e9e9e;
  --bs-gray-600: #757575;
  --bs-gray-700: #616161;
  --bs-gray-800: #424242;
  --bs-gray-900: #212121;
  --bs-primary: #ff9a26;
  --bs-secondary: #424242;
  --bs-success: #198754;
  --bs-info: #0dcaf0;
  --bs-warning: #fdd835;
  --bs-danger: #dc3545;
  --bs-light: #fafafa;
  --bs-dark: #212121;
  --bs-primary-rgb: 255, 154, 38;
  --bs-secondary-rgb: 66, 66, 66;
  --bs-success-rgb: 25, 135, 84;
  --bs-info-rgb: 13, 202, 240;
  --bs-warning-rgb: 253, 216, 53;
  --bs-danger-rgb: 220, 53, 69;
  --bs-light-rgb: 250, 250, 250;
  --bs-dark-rgb: 33, 33, 33;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-body-color-rgb: 33, 33, 33;
  --bs-body-bg-rgb: 255, 255, 255;
  --bs-font-sans-serif: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", 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: #212121;
  --bs-body-bg: #ffffff;
}

*,
*::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: 1rem 0;
  color: inherit;
  background-color: currentColor;
  border: 0;
  opacity: 0.25;
}

hr:not([size]) {
  height: 1px;
}

h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}

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],
abbr[data-bs-original-title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  cursor: help;
  -webkit-text-decoration-skip-ink: none;
          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: 800;
}

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

mark, .mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: #574a89;
  text-decoration: none;
}
a:hover {
  color: #463b6e;
  text-decoration: none;
}

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;
  direction: ltr /* rtl:ignore */;
  unicode-bidi: bidi-override;
}

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: #f06292;
  word-wrap: break-word;
}
a > code {
  color: inherit;
}

kbd {
  padding: 0.2rem 0.4rem;
  font-size: 0.875em;
  color: #ffffff;
  background-color: #212121;
  border-radius: 0.2rem;
}
kbd kbd {
  padding: 0;
  font-size: 1em;
  font-weight: 700;
}

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: #757575;
  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]::-webkit-calendar-picker-indicator {
  display: none;
}

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] {
  outline-offset: -2px;
  -webkit-appearance: textfield;
}

/* 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-file-upload-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: 1rem;
  font-size: 1.25rem;
}
.blockquote > :last-child {
  margin-bottom: 0;
}

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

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

.img-thumbnail {
  padding: 0.25rem;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 0.25rem;
  max-width: 100%;
  height: auto;
}

.figure {
  display: inline-block;
}

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

.figure-caption {
  font-size: 0.875em;
  color: #757575;
}

.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  width: 100%;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  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-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1320px;
  }
}
.row {
  --bs-gutter-x: 1.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.3333333333%;
}

.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.6666666667%;
}

.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.25rem;
}

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

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

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

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

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

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

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

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

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

@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.3333333333%;
  }

  .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.6666666667%;
  }

  .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.25rem;
  }

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

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

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

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

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

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

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

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

  .g-sm-5,
.gy-sm-5 {
    --bs-gutter-y: 3rem;
  }
}
@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.3333333333%;
  }

  .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.6666666667%;
  }

  .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.25rem;
  }

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

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

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

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

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

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

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

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

  .g-md-5,
.gy-md-5 {
    --bs-gutter-y: 3rem;
  }
}
@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.3333333333%;
  }

  .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.6666666667%;
  }

  .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.25rem;
  }

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

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

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

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

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

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

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

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

  .g-lg-5,
.gy-lg-5 {
    --bs-gutter-y: 3rem;
  }
}
@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.3333333333%;
  }

  .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.6666666667%;
  }

  .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.25rem;
  }

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

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

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

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

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

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

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

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

  .g-xl-5,
.gy-xl-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1400px) {
  .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.3333333333%;
  }

  .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.6666666667%;
  }

  .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.25rem;
  }

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

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

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

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

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

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

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

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

  .g-xxl-5,
.gy-xxl-5 {
    --bs-gutter-y: 3rem;
  }
}
.form-label {
  margin-bottom: 0.5rem;
}

.col-form-label {
  padding-top: calc(0.375rem + 1px);
  padding-bottom: calc(0.375rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}

.col-form-label-lg {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  font-size: 1.25rem;
}

.col-form-label-sm {
  padding-top: calc(0.25rem + 1px);
  padding-bottom: calc(0.25rem + 1px);
  font-size: 0.875rem;
}

.form-text {
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #757575;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212121;
  background-color: #ffffff;
  background-clip: padding-box;
  border: 1px solid #bdbdbd;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control {
    transition: none;
  }
}
.form-control[type=file] {
  overflow: hidden;
}
.form-control[type=file]:not(:disabled):not([readonly]) {
  cursor: pointer;
}
.form-control:focus {
  color: #212121;
  background-color: #ffffff;
  border-color: #ffcd93;
  outline: 0;
  box-shadow: 0 0 0 0 rgba(255, 154, 38, 0.25);
}
.form-control::-webkit-date-and-time-value {
  height: 1.5em;
}
.form-control::-moz-placeholder {
  color: #757575;
  opacity: 1;
}
.form-control:-ms-input-placeholder {
  color: #757575;
  opacity: 1;
}
.form-control::placeholder {
  color: #757575;
  opacity: 1;
}
.form-control:disabled, .form-control[readonly] {
  background-color: #eeeeee;
  opacity: 1;
}
.form-control::file-selector-button {
  padding: 0.375rem 0.75rem;
  margin: -0.375rem -0.75rem;
  margin-inline-end: 0.75rem;
  color: #212121;
  background-color: #eeeeee;
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: 1px;
  border-radius: 0;
  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) {
  .form-control::file-selector-button {
    transition: none;
  }
}
.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
  background-color: #e2e2e2;
}
.form-control::-webkit-file-upload-button {
  padding: 0.375rem 0.75rem;
  margin: -0.375rem -0.75rem;
  margin-inline-end: 0.75rem;
  color: #212121;
  background-color: #eeeeee;
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: 1px;
  border-radius: 0;
  -webkit-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;
  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) {
  .form-control::-webkit-file-upload-button {
    -webkit-transition: none;
    transition: none;
  }
}
.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
  background-color: #e2e2e2;
}

.form-control-plaintext {
  display: block;
  width: 100%;
  padding: 0.375rem 0;
  margin-bottom: 0;
  line-height: 1.5;
  color: #212121;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}
.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}

.form-control-sm {
  min-height: calc(1.5em + 0.5rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.2rem;
}
.form-control-sm::file-selector-button {
  padding: 0.25rem 0.5rem;
  margin: -0.25rem -0.5rem;
  margin-inline-end: 0.5rem;
}
.form-control-sm::-webkit-file-upload-button {
  padding: 0.25rem 0.5rem;
  margin: -0.25rem -0.5rem;
  margin-inline-end: 0.5rem;
}

.form-control-lg {
  min-height: calc(1.5em + 1rem + 2px);
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: 0.3rem;
}
.form-control-lg::file-selector-button {
  padding: 0.5rem 1rem;
  margin: -0.5rem -1rem;
  margin-inline-end: 1rem;
}
.form-control-lg::-webkit-file-upload-button {
  padding: 0.5rem 1rem;
  margin: -0.5rem -1rem;
  margin-inline-end: 1rem;
}

textarea.form-control {
  min-height: calc(1.5em + 0.75rem + 2px);
}
textarea.form-control-sm {
  min-height: calc(1.5em + 0.5rem + 2px);
}
textarea.form-control-lg {
  min-height: calc(1.5em + 1rem + 2px);
}

.form-control-color {
  width: 3rem;
  height: auto;
  padding: 0.375rem;
}
.form-control-color:not(:disabled):not([readonly]) {
  cursor: pointer;
}
.form-control-color::-moz-color-swatch {
  height: 1.5em;
  border-radius: 0.25rem;
}
.form-control-color::-webkit-color-swatch {
  height: 1.5em;
  border-radius: 0.25rem;
}

.form-select {
  display: block;
  width: 100%;
  padding: 0.375rem 2.25rem 0.375rem 0.75rem;
  -moz-padding-start: calc(0.75rem - 3px);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212121;
  background-color: #ffffff;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23424242' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  border: 1px solid #bdbdbd;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .form-select {
    transition: none;
  }
}
.form-select:focus {
  border-color: #ffcd93;
  outline: 0;
  box-shadow: 0 0 0 0 rgba(255, 154, 38, 0.25);
}
.form-select[multiple], .form-select[size]:not([size="1"]) {
  padding-right: 0.75rem;
  background-image: none;
}
.form-select:disabled {
  background-color: #eeeeee;
}
.form-select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #212121;
}

.form-select-sm {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.2rem;
}

.form-select-lg {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  font-size: 1.25rem;
  border-radius: 0.3rem;
}

.form-check {
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5em;
  margin-bottom: 0.125rem;
}
.form-check .form-check-input {
  float: left;
  margin-left: -1.5em;
}

.form-check-input {
  width: 1em;
  height: 1em;
  margin-top: 0.25em;
  vertical-align: top;
  background-color: #ffffff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid rgba(0, 0, 0, 0.25);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-print-color-adjust: exact;
          color-adjust: exact;
}
.form-check-input[type=checkbox] {
  border-radius: 0.25em;
}
.form-check-input[type=radio] {
  border-radius: 50%;
}
.form-check-input:active {
  filter: brightness(90%);
}
.form-check-input:focus {
  border-color: #ffcd93;
  outline: 0;
  box-shadow: 0 0 0 0 rgba(255, 154, 38, 0.25);
}
.form-check-input:checked {
  background-color: #ff9a26;
  border-color: #ff9a26;
}
.form-check-input:checked[type=checkbox] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}
.form-check-input:checked[type=radio] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23ffffff'/%3e%3c/svg%3e");
}
.form-check-input[type=checkbox]:indeterminate {
  background-color: #ff9a26;
  border-color: #ff9a26;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e");
}
.form-check-input:disabled {
  pointer-events: none;
  filter: none;
  opacity: 0.5;
}
.form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label {
  opacity: 0.5;
}

.form-switch {
  padding-left: 2.5em;
}
.form-switch .form-check-input {
  width: 2em;
  margin-left: -2.5em;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
  background-position: left center;
  border-radius: 2em;
  transition: background-position 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-switch .form-check-input {
    transition: none;
  }
}
.form-switch .form-check-input:focus {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23ffcd93'/%3e%3c/svg%3e");
}
.form-switch .form-check-input:checked {
  background-position: right center;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23ffffff'/%3e%3c/svg%3e");
}

.form-check-inline {
  display: inline-block;
  margin-right: 1rem;
}

.btn-check {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}
.btn-check[disabled] + .btn, .btn-check:disabled + .btn {
  pointer-events: none;
  filter: none;
  opacity: 0.65;
}

.form-range {
  width: 100%;
  height: 1rem;
  padding: 0;
  background-color: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.form-range:focus {
  outline: 0;
}
.form-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #ffffff, 0 0 0 0 rgba(255, 154, 38, 0.25);
}
.form-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #ffffff, 0 0 0 0 rgba(255, 154, 38, 0.25);
}
.form-range::-moz-focus-outer {
  border: 0;
}
.form-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  background-color: #ff9a26;
  border: 0;
  border-radius: 1rem;
  -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
          appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .form-range::-webkit-slider-thumb {
    -webkit-transition: none;
    transition: none;
  }
}
.form-range::-webkit-slider-thumb:active {
  background-color: #ffe1be;
}
.form-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #e0e0e0;
  border-color: transparent;
  border-radius: 1rem;
}
.form-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  background-color: #ff9a26;
  border: 0;
  border-radius: 1rem;
  -moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -moz-appearance: none;
       appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .form-range::-moz-range-thumb {
    -moz-transition: none;
    transition: none;
  }
}
.form-range::-moz-range-thumb:active {
  background-color: #ffe1be;
}
.form-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #e0e0e0;
  border-color: transparent;
  border-radius: 1rem;
}
.form-range:disabled {
  pointer-events: none;
}
.form-range:disabled::-webkit-slider-thumb {
  background-color: #9e9e9e;
}
.form-range:disabled::-moz-range-thumb {
  background-color: #9e9e9e;
}

.form-floating {
  position: relative;
}
.form-floating > .form-control,
.form-floating > .form-select {
  height: calc(3.5rem + 2px);
  line-height: 1.25;
}
.form-floating > label {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  padding: 1rem 0.75rem;
  pointer-events: none;
  border: 1px solid transparent;
  transform-origin: 0 0;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-floating > label {
    transition: none;
  }
}
.form-floating > .form-control {
  padding: 1rem 0.75rem;
}
.form-floating > .form-control::-moz-placeholder {
  color: transparent;
}
.form-floating > .form-control:-ms-input-placeholder {
  color: transparent;
}
.form-floating > .form-control::placeholder {
  color: transparent;
}
.form-floating > .form-control:not(:-moz-placeholder-shown) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:not(:-ms-input-placeholder) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:-webkit-autofill {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-select {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:not(:-moz-placeholder-shown) ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control:not(:-ms-input-placeholder) ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control:-webkit-autofill ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}
.input-group > .form-control,
.input-group > .form-select {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
}
.input-group > .form-control:focus,
.input-group > .form-select:focus {
  z-index: 3;
}
.input-group .btn {
  position: relative;
  z-index: 2;
}
.input-group .btn:focus {
  z-index: 3;
}

.input-group-text {
  display: flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212121;
  text-align: center;
  white-space: nowrap;
  background-color: #eeeeee;
  border: 1px solid #bdbdbd;
  border-radius: 0.25rem;
}

.input-group-lg > .form-control,
.input-group-lg > .form-select,
.input-group-lg > .input-group-text,
.input-group-lg > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: 0.3rem;
}

.input-group-sm > .form-control,
.input-group-sm > .form-select,
.input-group-sm > .input-group-text,
.input-group-sm > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.2rem;
}

.input-group-lg > .form-select,
.input-group-sm > .form-select {
  padding-right: 3rem;
}

.input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu),
.input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n+3) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group.has-validation > :nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu),
.input-group.has-validation > .dropdown-toggle:nth-last-child(n+4) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  margin-left: -1px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #198754;
}

.valid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  color: #ffffff;
  background-color: rgba(25, 135, 84, 0.9);
  border-radius: 0.25rem;
}

.was-validated :valid ~ .valid-feedback,
.was-validated :valid ~ .valid-tooltip,
.is-valid ~ .valid-feedback,
.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .form-control:valid, .form-control.is-valid {
  border-color: #198754;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-control:valid:focus, .form-control.is-valid:focus {
  border-color: #198754;
  box-shadow: 0 0 0 0 rgba(25, 135, 84, 0.25);
}

.was-validated textarea.form-control:valid, textarea.form-control.is-valid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .form-select:valid, .form-select.is-valid {
  border-color: #198754;
}
.was-validated .form-select:valid:not([multiple]):not([size]), .was-validated .form-select:valid:not([multiple])[size="1"], .form-select.is-valid:not([multiple]):not([size]), .form-select.is-valid:not([multiple])[size="1"] {
  padding-right: 4.125rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23424242' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-position: right 0.75rem center, center right 2.25rem;
  background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-select:valid:focus, .form-select.is-valid:focus {
  border-color: #198754;
  box-shadow: 0 0 0 0 rgba(25, 135, 84, 0.25);
}

.was-validated .form-check-input:valid, .form-check-input.is-valid {
  border-color: #198754;
}
.was-validated .form-check-input:valid:checked, .form-check-input.is-valid:checked {
  background-color: #198754;
}
.was-validated .form-check-input:valid:focus, .form-check-input.is-valid:focus {
  box-shadow: 0 0 0 0 rgba(25, 135, 84, 0.25);
}
.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  color: #198754;
}

.form-check-inline .form-check-input ~ .valid-feedback {
  margin-left: 0.5em;
}

.was-validated .input-group .form-control:valid, .input-group .form-control.is-valid,
.was-validated .input-group .form-select:valid,
.input-group .form-select.is-valid {
  z-index: 1;
}
.was-validated .input-group .form-control:valid:focus, .input-group .form-control.is-valid:focus,
.was-validated .input-group .form-select:valid:focus,
.input-group .form-select.is-valid:focus {
  z-index: 3;
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #dc3545;
}

.invalid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  color: #ffffff;
  background-color: rgba(220, 53, 69, 0.9);
  border-radius: 0.25rem;
}

.was-validated :invalid ~ .invalid-feedback,
.was-validated :invalid ~ .invalid-tooltip,
.is-invalid ~ .invalid-feedback,
.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .form-control:invalid, .form-control.is-invalid {
  border-color: #dc3545;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.25);
}

.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .form-select:invalid, .form-select.is-invalid {
  border-color: #dc3545;
}
.was-validated .form-select:invalid:not([multiple]):not([size]), .was-validated .form-select:invalid:not([multiple])[size="1"], .form-select.is-invalid:not([multiple]):not([size]), .form-select.is-invalid:not([multiple])[size="1"] {
  padding-right: 4.125rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23424242' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-position: right 0.75rem center, center right 2.25rem;
  background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-select:invalid:focus, .form-select.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.25);
}

.was-validated .form-check-input:invalid, .form-check-input.is-invalid {
  border-color: #dc3545;
}
.was-validated .form-check-input:invalid:checked, .form-check-input.is-invalid:checked {
  background-color: #dc3545;
}
.was-validated .form-check-input:invalid:focus, .form-check-input.is-invalid:focus {
  box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.25);
}
.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  color: #dc3545;
}

.form-check-inline .form-check-input ~ .invalid-feedback {
  margin-left: 0.5em;
}

.was-validated .input-group .form-control:invalid, .input-group .form-control.is-invalid,
.was-validated .input-group .form-select:invalid,
.input-group .form-select.is-invalid {
  z-index: 2;
}
.was-validated .input-group .form-control:invalid:focus, .input-group .form-control.is-invalid:focus,
.was-validated .input-group .form-select:invalid:focus,
.input-group .form-select.is-invalid:focus {
  z-index: 3;
}

.fade {
  transition: opacity 0.15s linear;
}
@media (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}
.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}
.collapsing.collapse-horizontal {
  width: 0;
  height: auto;
  transition: width 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing.collapse-horizontal {
    transition: none;
  }
}

.nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
  color: #574a89;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .nav-link {
    transition: none;
  }
}
.nav-link:hover, .nav-link:focus {
  color: #463b6e;
}
.nav-link.disabled {
  color: #757575;
  pointer-events: none;
  cursor: default;
}

.nav-tabs {
  border-bottom: 1px solid #e0e0e0;
}
.nav-tabs .nav-link {
  margin-bottom: -1px;
  background: none;
  border: 1px solid transparent;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  border-color: #eeeeee #eeeeee #e0e0e0;
  isolation: isolate;
}
.nav-tabs .nav-link.disabled {
  color: #757575;
  background-color: transparent;
  border-color: transparent;
}
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: #616161;
  background-color: #ffffff;
  border-color: #e0e0e0 #e0e0e0 #ffffff;
}
.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav-pills .nav-link {
  background: none;
  border: 0;
  border-radius: 0.25rem;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #ffffff;
  background-color: #ff9a26;
}

.nav-fill > .nav-link,
.nav-fill .nav-item {
  flex: 1 1 auto;
  text-align: center;
}

.nav-justified > .nav-link,
.nav-justified .nav-item {
  flex-basis: 0;
  flex-grow: 1;
  text-align: center;
}

.nav-fill .nav-item .nav-link,
.nav-justified .nav-item .nav-link {
  width: 100%;
}

.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}

.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.navbar > .container,
.navbar > .container-fluid,
.navbar > .container-sm,
.navbar > .container-md,
.navbar > .container-lg,
.navbar > .container-xl,
.navbar > .container-xxl {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
}
.navbar-brand {
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  white-space: nowrap;
}
.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}
.navbar-nav .dropdown-menu {
  position: static;
}

.navbar-text {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}

.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0;
  transition: box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .navbar-toggler {
    transition: none;
  }
}
.navbar-toggler:hover {
  text-decoration: none;
}
.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: 0 0 0 0;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

.navbar-nav-scroll {
  max-height: var(--bs-scroll-height, 75vh);
  overflow-y: auto;
}

@media (min-width: 576px) {
  .navbar-expand-sm {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-sm .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-sm .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-sm .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-sm .navbar-toggler {
    display: none;
  }
  .navbar-expand-sm .offcanvas-header {
    display: none;
  }
  .navbar-expand-sm .offcanvas {
    position: inherit;
    bottom: 0;
    z-index: 1000;
    flex-grow: 1;
    visibility: visible !important;
    background-color: transparent;
    border-right: 0;
    border-left: 0;
    transition: none;
    transform: none;
  }
  .navbar-expand-sm .offcanvas-top,
.navbar-expand-sm .offcanvas-bottom {
    height: auto;
    border-top: 0;
    border-bottom: 0;
  }
  .navbar-expand-sm .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 768px) {
  .navbar-expand-md {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-md .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-md .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-md .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-md .navbar-toggler {
    display: none;
  }
  .navbar-expand-md .offcanvas-header {
    display: none;
  }
  .navbar-expand-md .offcanvas {
    position: inherit;
    bottom: 0;
    z-index: 1000;
    flex-grow: 1;
    visibility: visible !important;
    background-color: transparent;
    border-right: 0;
    border-left: 0;
    transition: none;
    transform: none;
  }
  .navbar-expand-md .offcanvas-top,
.navbar-expand-md .offcanvas-bottom {
    height: auto;
    border-top: 0;
    border-bottom: 0;
  }
  .navbar-expand-md .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 992px) {
  .navbar-expand-lg {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-lg .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
  .navbar-expand-lg .offcanvas-header {
    display: none;
  }
  .navbar-expand-lg .offcanvas {
    position: inherit;
    bottom: 0;
    z-index: 1000;
    flex-grow: 1;
    visibility: visible !important;
    background-color: transparent;
    border-right: 0;
    border-left: 0;
    transition: none;
    transform: none;
  }
  .navbar-expand-lg .offcanvas-top,
.navbar-expand-lg .offcanvas-bottom {
    height: auto;
    border-top: 0;
    border-bottom: 0;
  }
  .navbar-expand-lg .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 1200px) {
  .navbar-expand-xl {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-xl .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-xl .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-xl .navbar-toggler {
    display: none;
  }
  .navbar-expand-xl .offcanvas-header {
    display: none;
  }
  .navbar-expand-xl .offcanvas {
    position: inherit;
    bottom: 0;
    z-index: 1000;
    flex-grow: 1;
    visibility: visible !important;
    background-color: transparent;
    border-right: 0;
    border-left: 0;
    transition: none;
    transform: none;
  }
  .navbar-expand-xl .offcanvas-top,
.navbar-expand-xl .offcanvas-bottom {
    height: auto;
    border-top: 0;
    border-bottom: 0;
  }
  .navbar-expand-xl .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 1400px) {
  .navbar-expand-xxl {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-xxl .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-xxl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xxl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-xxl .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xxl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-xxl .navbar-toggler {
    display: none;
  }
  .navbar-expand-xxl .offcanvas-header {
    display: none;
  }
  .navbar-expand-xxl .offcanvas {
    position: inherit;
    bottom: 0;
    z-index: 1000;
    flex-grow: 1;
    visibility: visible !important;
    background-color: transparent;
    border-right: 0;
    border-left: 0;
    transition: none;
    transform: none;
  }
  .navbar-expand-xxl .offcanvas-top,
.navbar-expand-xxl .offcanvas-bottom {
    height: auto;
    border-top: 0;
    border-bottom: 0;
  }
  .navbar-expand-xxl .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
.navbar-expand {
  flex-wrap: nowrap;
  justify-content: flex-start;
}
.navbar-expand .navbar-nav {
  flex-direction: row;
}
.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}
.navbar-expand .navbar-nav .nav-link {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}
.navbar-expand .navbar-nav-scroll {
  overflow: visible;
}
.navbar-expand .navbar-collapse {
  display: flex !important;
  flex-basis: auto;
}
.navbar-expand .navbar-toggler {
  display: none;
}
.navbar-expand .offcanvas-header {
  display: none;
}
.navbar-expand .offcanvas {
  position: inherit;
  bottom: 0;
  z-index: 1000;
  flex-grow: 1;
  visibility: visible !important;
  background-color: transparent;
  border-right: 0;
  border-left: 0;
  transition: none;
  transform: none;
}
.navbar-expand .offcanvas-top,
.navbar-expand .offcanvas-bottom {
  height: auto;
  border-top: 0;
  border-bottom: 0;
}
.navbar-expand .offcanvas-body {
  display: flex;
  flex-grow: 0;
  padding: 0;
  overflow-y: visible;
}

.navbar-light .navbar-brand {
  color: #212121;
}
.navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {
  color: #212121;
}
.navbar-light .navbar-nav .nav-link {
  color: #616161;
}
.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
  color: #212121;
}
.navbar-light .navbar-nav .nav-link.disabled {
  color: rgba(117, 117, 117, 0.3);
}
.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .nav-link.active {
  color: #212121;
}
.navbar-light .navbar-toggler {
  color: #616161;
  border-color: transparent;
}
.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23757575' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-light .navbar-text {
  color: #616161;
}
.navbar-light .navbar-text a,
.navbar-light .navbar-text a:hover,
.navbar-light .navbar-text a:focus {
  color: #212121;
}

.navbar-dark .navbar-brand {
  color: #ffffff;
}
.navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {
  color: #ffffff;
}
.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.55);
}
.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
  color: rgba(255, 255, 255, 0.75);
}
.navbar-dark .navbar-nav .nav-link.disabled {
  color: rgba(255, 255, 255, 0.25);
}
.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .nav-link.active {
  color: #ffffff;
}
.navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, 0.55);
  border-color: rgba(255, 255, 255, 0.1);
}
.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-dark .navbar-text {
  color: rgba(255, 255, 255, 0.55);
}
.navbar-dark .navbar-text a,
.navbar-dark .navbar-text a:hover,
.navbar-dark .navbar-text a:focus {
  color: #ffffff;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding: 0 0;
  margin-bottom: 0;
  font-size: 0.875rem;
  list-style: none;
}

.breadcrumb-item + .breadcrumb-item {
  padding-left: 0.5rem;
}
.breadcrumb-item + .breadcrumb-item::before {
  float: left;
  padding-right: 0.5rem;
  color: #ff9a26;
  content: var(--bs-breadcrumb-divider, url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='6' height='10' viewBox='0 0 6 10' fill='none'%3e%3cpath d='M3.78132 5L0.481323 1.7L1.42399 0.757332L5.66666 5L1.42399 9.24267L0.481323 8.3L3.78132 5Z' fill='%23ff9a26'/%3e%3c/svg%3e")) /* rtl: var(--bs-breadcrumb-divider, url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='6' height='10' viewBox='0 0 6 10' fill='none'%3e%3cpath d='M3.78132 5L0.481323 1.7L1.42399 0.757332L5.66666 5L1.42399 9.24267L0.481323 8.3L3.78132 5Z' fill='%23ff9a26'/%3e%3c/svg%3e")) */;
}
.breadcrumb-item.active {
  color: #ffffff;
}

.pagination {
  display: flex;
  padding-left: 0;
  list-style: none;
}

.page-link {
  position: relative;
  display: block;
  color: #616161;
  background-color: #ffffff;
  border: 0 solid #e0e0e0;
  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: #463b6e;
  background-color: transparent;
  border-color: #e0e0e0;
}
.page-link:focus {
  z-index: 3;
  color: #463b6e;
  background-color: transparent;
  outline: 0;
  box-shadow: none;
}

.page-item:not(:first-child) .page-link {
  margin-left: 0;
}
.page-item.active .page-link {
  z-index: 3;
  color: #ff9a26;
  background-color: transparent;
  border-color: transparent;
}
.page-item.disabled .page-link {
  color: #757575;
  pointer-events: none;
  background-color: #ffffff;
  border-color: #e0e0e0;
}

.page-link {
  padding: 0.375rem 0.75rem;
}

.page-item:first-child .page-link {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.page-item:last-child .page-link {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.pagination-lg .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
}
.pagination-lg .page-item:first-child .page-link {
  border-top-left-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
}
.pagination-lg .page-item:last-child .page-link {
  border-top-right-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}

.pagination-sm .page-link {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
}
.pagination-sm .page-item:first-child .page-link {
  border-top-left-radius: 0.2rem;
  border-bottom-left-radius: 0.2rem;
}
.pagination-sm .page-item:last-child .page-link {
  border-top-right-radius: 0.2rem;
  border-bottom-right-radius: 0.2rem;
}

.btn-close {
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: 0.25em 0.25em;
  color: #000000;
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
  border: 0;
  border-radius: 0.25rem;
  opacity: 0.5;
}
.btn-close:hover {
  color: #000000;
  text-decoration: none;
  opacity: 0.75;
}
.btn-close:focus {
  outline: 0;
  box-shadow: 0 0 0 0 rgba(255, 154, 38, 0.25);
  opacity: 1;
}
.btn-close:disabled, .btn-close.disabled {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  opacity: 0.25;
}

.btn-close-white {
  filter: invert(1) grayscale(100%) brightness(200%);
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1055;
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}
.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}
@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}
.modal.show .modal-dialog {
  transform: none;
}
.modal.modal-static .modal-dialog {
  transform: scale(1.02);
}

.modal-dialog-scrollable {
  height: calc(100% - 1rem);
}
.modal-dialog-scrollable .modal-content {
  max-height: 100%;
  overflow: hidden;
}
.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem);
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #ffffff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  width: 100vw;
  height: 100vh;
  background-color: #000000;
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: 0.5;
}

.modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #e0e0e0;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}
.modal-header .btn-close {
  padding: 0.5rem 0.5rem;
  margin: -0.5rem -0.5rem -0.5rem auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
}

.modal-footer {
  display: flex;
  flex-wrap: wrap;
  flex-shrink: 0;
  align-items: center;
  justify-content: flex-end;
  padding: 0.75rem;
  border-top: 1px solid #e0e0e0;
  border-bottom-right-radius: calc(0.3rem - 1px);
  border-bottom-left-radius: calc(0.3rem - 1px);
}
.modal-footer > * {
  margin: 0.25rem;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }

  .modal-dialog-scrollable {
    height: calc(100% - 3.5rem);
  }

  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }

  .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg,
.modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .modal-xl {
    max-width: 1140px;
  }
}
.modal-fullscreen {
  width: 100vw;
  max-width: none;
  height: 100%;
  margin: 0;
}
.modal-fullscreen .modal-content {
  height: 100%;
  border: 0;
  border-radius: 0;
}
.modal-fullscreen .modal-header {
  border-radius: 0;
}
.modal-fullscreen .modal-body {
  overflow-y: auto;
}
.modal-fullscreen .modal-footer {
  border-radius: 0;
}

@media (max-width: 575.98px) {
  .modal-fullscreen-sm-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-sm-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-sm-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 767.98px) {
  .modal-fullscreen-md-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-md-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-md-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 991.98px) {
  .modal-fullscreen-lg-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-lg-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-lg-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 1199.98px) {
  .modal-fullscreen-xl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-xl-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 1399.98px) {
  .modal-fullscreen-xxl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xxl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-xxl-down .modal-footer {
    border-radius: 0;
  }
}
.offcanvas {
  position: fixed;
  bottom: 0;
  z-index: 1045;
  display: flex;
  flex-direction: column;
  max-width: 100%;
  visibility: hidden;
  background-color: #ffffff;
  background-clip: padding-box;
  outline: 0;
  transition: transform 0.3s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .offcanvas {
    transition: none;
  }
}

.offcanvas-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000000;
}
.offcanvas-backdrop.fade {
  opacity: 0;
}
.offcanvas-backdrop.show {
  opacity: 0.5;
}

.offcanvas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem;
}
.offcanvas-header .btn-close {
  padding: 0.5rem 0.5rem;
  margin-top: -0.5rem;
  margin-right: -0.5rem;
  margin-bottom: -0.5rem;
}

.offcanvas-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.offcanvas-body {
  flex-grow: 1;
  padding: 1rem 1rem;
  overflow-y: auto;
}

.offcanvas-start {
  top: 0;
  left: 0;
  width: 400px;
  border-right: 1px solid rgba(0, 0, 0, 0.2);
  transform: translateX(-100%);
}

.offcanvas-end {
  top: 0;
  right: 0;
  width: 400px;
  border-left: 1px solid rgba(0, 0, 0, 0.2);
  transform: translateX(100%);
}

.offcanvas-top {
  top: 0;
  right: 0;
  left: 0;
  height: 30vh;
  max-height: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  transform: translateY(-100%);
}

.offcanvas-bottom {
  right: 0;
  left: 0;
  height: 30vh;
  max-height: 100%;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
}

.offcanvas.show {
  transform: none;
}

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

.link-primary {
  color: #ff9a26;
}
.link-primary:hover, .link-primary:focus {
  color: #ffae51;
}

.link-secondary {
  color: #424242;
}
.link-secondary:hover, .link-secondary:focus {
  color: #353535;
}

.link-success {
  color: #198754;
}
.link-success:hover, .link-success:focus {
  color: #146c43;
}

.link-info {
  color: #0dcaf0;
}
.link-info:hover, .link-info:focus {
  color: #3dd5f3;
}

.link-warning {
  color: #fdd835;
}
.link-warning:hover, .link-warning:focus {
  color: #fde05d;
}

.link-danger {
  color: #dc3545;
}
.link-danger:hover, .link-danger:focus {
  color: #b02a37;
}

.link-light {
  color: #fafafa;
}
.link-light:hover, .link-light:focus {
  color: #fbfbfb;
}

.link-dark {
  color: #212121;
}
.link-dark:hover, .link-dark:focus {
  color: #1a1a1a;
}

.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;
}

@media (min-width: 576px) {
  .sticky-sm-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 768px) {
  .sticky-md-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 992px) {
  .sticky-lg-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 1200px) {
  .sticky-xl-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 1400px) {
  .sticky-xxl-top {
    position: sticky;
    top: 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) {
  position: absolute !important;
  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;
}

.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: 1px;
  min-height: 1em;
  background-color: currentColor;
  opacity: 0.25;
}

.align-baseline {
  vertical-align: baseline !important;
}

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

.float-start {
  float: left !important;
}

.float-end {
  float: right !important;
}

.float-none {
  float: none !important;
}

.opacity-0 {
  opacity: 0 !important;
}

.opacity-25 {
  opacity: 0.25 !important;
}

.opacity-50 {
  opacity: 0.5 !important;
}

.opacity-75 {
  opacity: 0.75 !important;
}

.opacity-100 {
  opacity: 1 !important;
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.overflow-visible {
  overflow: visible !important;
}

.overflow-scroll {
  overflow: scroll !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-grid {
  display: grid !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.d-none {
  display: none !important;
}

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.shadow-none {
  box-shadow: none !important;
}

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: sticky !important;
}

.top-0 {
  top: 0 !important;
}

.top-50 {
  top: 50% !important;
}

.top-100 {
  top: 100% !important;
}

.bottom-0 {
  bottom: 0 !important;
}

.bottom-50 {
  bottom: 50% !important;
}

.bottom-100 {
  bottom: 100% !important;
}

.start-0 {
  left: 0 !important;
}

.start-50 {
  left: 50% !important;
}

.start-100 {
  left: 100% !important;
}

.end-0 {
  right: 0 !important;
}

.end-50 {
  right: 50% !important;
}

.end-100 {
  right: 100% !important;
}

.translate-middle {
  transform: translate(-50%, -50%) !important;
}

.translate-middle-x {
  transform: translateX(-50%) !important;
}

.translate-middle-y {
  transform: translateY(-50%) !important;
}

.border {
  border: 1px solid #e0e0e0 !important;
}

.border-0 {
  border: 0 !important;
}

.border-top {
  border-top: 1px solid #e0e0e0 !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-end {
  border-right: 1px solid #e0e0e0 !important;
}

.border-end-0 {
  border-right: 0 !important;
}

.border-bottom {
  border-bottom: 1px solid #e0e0e0 !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-start {
  border-left: 1px solid #e0e0e0 !important;
}

.border-start-0 {
  border-left: 0 !important;
}

.border-primary {
  border-color: #ff9a26 !important;
}

.border-secondary {
  border-color: #424242 !important;
}

.border-success {
  border-color: #198754 !important;
}

.border-info {
  border-color: #0dcaf0 !important;
}

.border-warning {
  border-color: #fdd835 !important;
}

.border-danger {
  border-color: #dc3545 !important;
}

.border-light {
  border-color: #fafafa !important;
}

.border-dark {
  border-color: #212121 !important;
}

.border-white {
  border-color: #ffffff !important;
}

.border-1 {
  border-width: 1px !important;
}

.border-2 {
  border-width: 2px !important;
}

.border-3 {
  border-width: 3px !important;
}

.border-4 {
  border-width: 4px !important;
}

.border-5 {
  border-width: 5px !important;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.vw-100 {
  width: 100vw !important;
}

.min-vw-100 {
  min-width: 100vw !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mh-100 {
  max-height: 100% !important;
}

.vh-100 {
  height: 100vh !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.gap-0 {
  gap: 0 !important;
}

.gap-1 {
  gap: 0.25rem !important;
}

.gap-2 {
  gap: 0.5rem !important;
}

.gap-3 {
  gap: 1rem !important;
}

.gap-4 {
  gap: 1.5rem !important;
}

.gap-5 {
  gap: 3rem !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.justify-content-evenly {
  justify-content: space-evenly !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

.order-first {
  order: -1 !important;
}

.order-0 {
  order: 0 !important;
}

.order-1 {
  order: 1 !important;
}

.order-2 {
  order: 2 !important;
}

.order-3 {
  order: 3 !important;
}

.order-4 {
  order: 4 !important;
}

.order-5 {
  order: 5 !important;
}

.order-last {
  order: 6 !important;
}

.m-0 {
  margin: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.mx-1 {
  margin-right: 0.25rem !important;
  margin-left: 0.25rem !important;
}

.mx-2 {
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important;
}

.mx-3 {
  margin-right: 1rem !important;
  margin-left: 1rem !important;
}

.mx-4 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important;
}

.mx-5 {
  margin-right: 3rem !important;
  margin-left: 3rem !important;
}

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mt-auto {
  margin-top: auto !important;
}

.me-0 {
  margin-right: 0 !important;
}

.me-1 {
  margin-right: 0.25rem !important;
}

.me-2 {
  margin-right: 0.5rem !important;
}

.me-3 {
  margin-right: 1rem !important;
}

.me-4 {
  margin-right: 1.5rem !important;
}

.me-5 {
  margin-right: 3rem !important;
}

.me-auto {
  margin-right: auto !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.ms-0 {
  margin-left: 0 !important;
}

.ms-1 {
  margin-left: 0.25rem !important;
}

.ms-2 {
  margin-left: 0.5rem !important;
}

.ms-3 {
  margin-left: 1rem !important;
}

.ms-4 {
  margin-left: 1.5rem !important;
}

.ms-5 {
  margin-left: 3rem !important;
}

.ms-auto {
  margin-left: auto !important;
}

.m-n1 {
  margin: -0.25rem !important;
}

.m-n2 {
  margin: -0.5rem !important;
}

.m-n3 {
  margin: -1rem !important;
}

.m-n4 {
  margin: -1.5rem !important;
}

.m-n5 {
  margin: -3rem !important;
}

.mx-n1 {
  margin-right: -0.25rem !important;
  margin-left: -0.25rem !important;
}

.mx-n2 {
  margin-right: -0.5rem !important;
  margin-left: -0.5rem !important;
}

.mx-n3 {
  margin-right: -1rem !important;
  margin-left: -1rem !important;
}

.mx-n4 {
  margin-right: -1.5rem !important;
  margin-left: -1.5rem !important;
}

.mx-n5 {
  margin-right: -3rem !important;
  margin-left: -3rem !important;
}

.my-n1 {
  margin-top: -0.25rem !important;
  margin-bottom: -0.25rem !important;
}

.my-n2 {
  margin-top: -0.5rem !important;
  margin-bottom: -0.5rem !important;
}

.my-n3 {
  margin-top: -1rem !important;
  margin-bottom: -1rem !important;
}

.my-n4 {
  margin-top: -1.5rem !important;
  margin-bottom: -1.5rem !important;
}

.my-n5 {
  margin-top: -3rem !important;
  margin-bottom: -3rem !important;
}

.mt-n1 {
  margin-top: -0.25rem !important;
}

.mt-n2 {
  margin-top: -0.5rem !important;
}

.mt-n3 {
  margin-top: -1rem !important;
}

.mt-n4 {
  margin-top: -1.5rem !important;
}

.mt-n5 {
  margin-top: -3rem !important;
}

.me-n1 {
  margin-right: -0.25rem !important;
}

.me-n2 {
  margin-right: -0.5rem !important;
}

.me-n3 {
  margin-right: -1rem !important;
}

.me-n4 {
  margin-right: -1.5rem !important;
}

.me-n5 {
  margin-right: -3rem !important;
}

.mb-n1 {
  margin-bottom: -0.25rem !important;
}

.mb-n2 {
  margin-bottom: -0.5rem !important;
}

.mb-n3 {
  margin-bottom: -1rem !important;
}

.mb-n4 {
  margin-bottom: -1.5rem !important;
}

.mb-n5 {
  margin-bottom: -3rem !important;
}

.ms-n1 {
  margin-left: -0.25rem !important;
}

.ms-n2 {
  margin-left: -0.5rem !important;
}

.ms-n3 {
  margin-left: -1rem !important;
}

.ms-n4 {
  margin-left: -1.5rem !important;
}

.ms-n5 {
  margin-left: -3rem !important;
}

.p-0 {
  padding: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.px-1 {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important;
}

.px-2 {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important;
}

.px-3 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}

.px-4 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}

.px-5 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

.pt-4 {
  padding-top: 1.5rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.pe-0 {
  padding-right: 0 !important;
}

.pe-1 {
  padding-right: 0.25rem !important;
}

.pe-2 {
  padding-right: 0.5rem !important;
}

.pe-3 {
  padding-right: 1rem !important;
}

.pe-4 {
  padding-right: 1.5rem !important;
}

.pe-5 {
  padding-right: 3rem !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pb-3 {
  padding-bottom: 1rem !important;
}

.pb-4 {
  padding-bottom: 1.5rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

.ps-0 {
  padding-left: 0 !important;
}

.ps-1 {
  padding-left: 0.25rem !important;
}

.ps-2 {
  padding-left: 0.5rem !important;
}

.ps-3 {
  padding-left: 1rem !important;
}

.ps-4 {
  padding-left: 1.5rem !important;
}

.ps-5 {
  padding-left: 3rem !important;
}

.font-monospace {
  font-family: var(--bs-font-monospace) !important;
}

.fs-1 {
  font-size: calc(1.375rem + 1.5vw) !important;
}

.fs-2 {
  font-size: calc(1.325rem + 0.9vw) !important;
}

.fs-3 {
  font-size: calc(1.3rem + 0.6vw) !important;
}

.fs-4 {
  font-size: calc(1.275rem + 0.3vw) !important;
}

.fs-5 {
  font-size: 1.25rem !important;
}

.fs-6 {
  font-size: 1rem !important;
}

.fst-italic {
  font-style: italic !important;
}

.fst-normal {
  font-style: normal !important;
}

.fw-light {
  font-weight: 300 !important;
}

.fw-lighter {
  font-weight: 200 !important;
}

.fw-normal {
  font-weight: 400 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-bolder {
  font-weight: 800 !important;
}

.lh-1 {
  line-height: 1 !important;
}

.lh-sm {
  line-height: 1.25 !important;
}

.lh-base {
  line-height: 1.5 !important;
}

.lh-lg {
  line-height: 2 !important;
}

.text-start {
  text-align: left !important;
}

.text-end {
  text-align: right !important;
}

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

.text-decoration-none {
  text-decoration: none !important;
}

.text-decoration-underline {
  text-decoration: underline !important;
}

.text-decoration-line-through {
  text-decoration: line-through !important;
}

.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

/* rtl:begin:remove */
.text-break {
  word-wrap: break-word !important;
  word-break: break-word !important;
}

/* rtl:end:remove */
.text-primary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
}

.text-secondary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
}

.text-success {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important;
}

.text-info {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important;
}

.text-warning {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;
}

.text-danger {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
}

.text-light {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important;
}

.text-dark {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
}

.text-black {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;
}

.text-white {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
}

.text-body {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important;
}

.text-muted {
  --bs-text-opacity: 1;
  color: #757575 !important;
}

.text-black-50 {
  --bs-text-opacity: 1;
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
  --bs-text-opacity: 1;
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-reset {
  --bs-text-opacity: 1;
  color: inherit !important;
}

.text-opacity-25 {
  --bs-text-opacity: 0.25;
}

.text-opacity-50 {
  --bs-text-opacity: 0.5;
}

.text-opacity-75 {
  --bs-text-opacity: 0.75;
}

.text-opacity-100 {
  --bs-text-opacity: 1;
}

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

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

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

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

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

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

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

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

.bg-black {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important;
}

.bg-white {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
}

.bg-body {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
}

.bg-transparent {
  --bs-bg-opacity: 1;
  background-color: transparent !important;
}

.bg-opacity-10 {
  --bs-bg-opacity: 0.1;
}

.bg-opacity-25 {
  --bs-bg-opacity: 0.25;
}

.bg-opacity-50 {
  --bs-bg-opacity: 0.5;
}

.bg-opacity-75 {
  --bs-bg-opacity: 0.75;
}

.bg-opacity-100 {
  --bs-bg-opacity: 1;
}

.bg-gradient {
  background-image: var(--bs-gradient) !important;
}

.user-select-all {
  -webkit-user-select: all !important;
     -moz-user-select: all !important;
          user-select: all !important;
}

.user-select-auto {
  -webkit-user-select: auto !important;
     -moz-user-select: auto !important;
      -ms-user-select: auto !important;
          user-select: auto !important;
}

.user-select-none {
  -webkit-user-select: none !important;
     -moz-user-select: none !important;
      -ms-user-select: none !important;
          user-select: none !important;
}

.pe-none {
  pointer-events: none !important;
}

.pe-auto {
  pointer-events: auto !important;
}

.rounded {
  border-radius: 0.25rem !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.rounded-1 {
  border-radius: 0.2rem !important;
}

.rounded-2 {
  border-radius: 0.25rem !important;
}

.rounded-3 {
  border-radius: 0.3rem !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-pill {
  border-radius: 50rem !important;
}

.rounded-top {
  border-top-left-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important;
}

.rounded-end {
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}

.rounded-bottom {
  border-bottom-right-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-start {
  border-bottom-left-radius: 0.25rem !important;
  border-top-left-radius: 0.25rem !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

@media (min-width: 576px) {
  .float-sm-start {
    float: left !important;
  }

  .float-sm-end {
    float: right !important;
  }

  .float-sm-none {
    float: none !important;
  }

  .d-sm-inline {
    display: inline !important;
  }

  .d-sm-inline-block {
    display: inline-block !important;
  }

  .d-sm-block {
    display: block !important;
  }

  .d-sm-grid {
    display: grid !important;
  }

  .d-sm-table {
    display: table !important;
  }

  .d-sm-table-row {
    display: table-row !important;
  }

  .d-sm-table-cell {
    display: table-cell !important;
  }

  .d-sm-flex {
    display: flex !important;
  }

  .d-sm-inline-flex {
    display: inline-flex !important;
  }

  .d-sm-none {
    display: none !important;
  }

  .flex-sm-fill {
    flex: 1 1 auto !important;
  }

  .flex-sm-row {
    flex-direction: row !important;
  }

  .flex-sm-column {
    flex-direction: column !important;
  }

  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }

  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }

  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .gap-sm-0 {
    gap: 0 !important;
  }

  .gap-sm-1 {
    gap: 0.25rem !important;
  }

  .gap-sm-2 {
    gap: 0.5rem !important;
  }

  .gap-sm-3 {
    gap: 1rem !important;
  }

  .gap-sm-4 {
    gap: 1.5rem !important;
  }

  .gap-sm-5 {
    gap: 3rem !important;
  }

  .justify-content-sm-start {
    justify-content: flex-start !important;
  }

  .justify-content-sm-end {
    justify-content: flex-end !important;
  }

  .justify-content-sm-center {
    justify-content: center !important;
  }

  .justify-content-sm-between {
    justify-content: space-between !important;
  }

  .justify-content-sm-around {
    justify-content: space-around !important;
  }

  .justify-content-sm-evenly {
    justify-content: space-evenly !important;
  }

  .align-items-sm-start {
    align-items: flex-start !important;
  }

  .align-items-sm-end {
    align-items: flex-end !important;
  }

  .align-items-sm-center {
    align-items: center !important;
  }

  .align-items-sm-baseline {
    align-items: baseline !important;
  }

  .align-items-sm-stretch {
    align-items: stretch !important;
  }

  .align-content-sm-start {
    align-content: flex-start !important;
  }

  .align-content-sm-end {
    align-content: flex-end !important;
  }

  .align-content-sm-center {
    align-content: center !important;
  }

  .align-content-sm-between {
    align-content: space-between !important;
  }

  .align-content-sm-around {
    align-content: space-around !important;
  }

  .align-content-sm-stretch {
    align-content: stretch !important;
  }

  .align-self-sm-auto {
    align-self: auto !important;
  }

  .align-self-sm-start {
    align-self: flex-start !important;
  }

  .align-self-sm-end {
    align-self: flex-end !important;
  }

  .align-self-sm-center {
    align-self: center !important;
  }

  .align-self-sm-baseline {
    align-self: baseline !important;
  }

  .align-self-sm-stretch {
    align-self: stretch !important;
  }

  .order-sm-first {
    order: -1 !important;
  }

  .order-sm-0 {
    order: 0 !important;
  }

  .order-sm-1 {
    order: 1 !important;
  }

  .order-sm-2 {
    order: 2 !important;
  }

  .order-sm-3 {
    order: 3 !important;
  }

  .order-sm-4 {
    order: 4 !important;
  }

  .order-sm-5 {
    order: 5 !important;
  }

  .order-sm-last {
    order: 6 !important;
  }

  .m-sm-0 {
    margin: 0 !important;
  }

  .m-sm-1 {
    margin: 0.25rem !important;
  }

  .m-sm-2 {
    margin: 0.5rem !important;
  }

  .m-sm-3 {
    margin: 1rem !important;
  }

  .m-sm-4 {
    margin: 1.5rem !important;
  }

  .m-sm-5 {
    margin: 3rem !important;
  }

  .m-sm-auto {
    margin: auto !important;
  }

  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-sm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-sm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-sm-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-sm-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-sm-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-sm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-sm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-sm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-sm-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-sm-0 {
    margin-top: 0 !important;
  }

  .mt-sm-1 {
    margin-top: 0.25rem !important;
  }

  .mt-sm-2 {
    margin-top: 0.5rem !important;
  }

  .mt-sm-3 {
    margin-top: 1rem !important;
  }

  .mt-sm-4 {
    margin-top: 1.5rem !important;
  }

  .mt-sm-5 {
    margin-top: 3rem !important;
  }

  .mt-sm-auto {
    margin-top: auto !important;
  }

  .me-sm-0 {
    margin-right: 0 !important;
  }

  .me-sm-1 {
    margin-right: 0.25rem !important;
  }

  .me-sm-2 {
    margin-right: 0.5rem !important;
  }

  .me-sm-3 {
    margin-right: 1rem !important;
  }

  .me-sm-4 {
    margin-right: 1.5rem !important;
  }

  .me-sm-5 {
    margin-right: 3rem !important;
  }

  .me-sm-auto {
    margin-right: auto !important;
  }

  .mb-sm-0 {
    margin-bottom: 0 !important;
  }

  .mb-sm-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-sm-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-sm-3 {
    margin-bottom: 1rem !important;
  }

  .mb-sm-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-sm-5 {
    margin-bottom: 3rem !important;
  }

  .mb-sm-auto {
    margin-bottom: auto !important;
  }

  .ms-sm-0 {
    margin-left: 0 !important;
  }

  .ms-sm-1 {
    margin-left: 0.25rem !important;
  }

  .ms-sm-2 {
    margin-left: 0.5rem !important;
  }

  .ms-sm-3 {
    margin-left: 1rem !important;
  }

  .ms-sm-4 {
    margin-left: 1.5rem !important;
  }

  .ms-sm-5 {
    margin-left: 3rem !important;
  }

  .ms-sm-auto {
    margin-left: auto !important;
  }

  .m-sm-n1 {
    margin: -0.25rem !important;
  }

  .m-sm-n2 {
    margin: -0.5rem !important;
  }

  .m-sm-n3 {
    margin: -1rem !important;
  }

  .m-sm-n4 {
    margin: -1.5rem !important;
  }

  .m-sm-n5 {
    margin: -3rem !important;
  }

  .mx-sm-n1 {
    margin-right: -0.25rem !important;
    margin-left: -0.25rem !important;
  }

  .mx-sm-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }

  .mx-sm-n3 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }

  .mx-sm-n4 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }

  .mx-sm-n5 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }

  .my-sm-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }

  .my-sm-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }

  .my-sm-n3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }

  .my-sm-n4 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }

  .my-sm-n5 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }

  .mt-sm-n1 {
    margin-top: -0.25rem !important;
  }

  .mt-sm-n2 {
    margin-top: -0.5rem !important;
  }

  .mt-sm-n3 {
    margin-top: -1rem !important;
  }

  .mt-sm-n4 {
    margin-top: -1.5rem !important;
  }

  .mt-sm-n5 {
    margin-top: -3rem !important;
  }

  .me-sm-n1 {
    margin-right: -0.25rem !important;
  }

  .me-sm-n2 {
    margin-right: -0.5rem !important;
  }

  .me-sm-n3 {
    margin-right: -1rem !important;
  }

  .me-sm-n4 {
    margin-right: -1.5rem !important;
  }

  .me-sm-n5 {
    margin-right: -3rem !important;
  }

  .mb-sm-n1 {
    margin-bottom: -0.25rem !important;
  }

  .mb-sm-n2 {
    margin-bottom: -0.5rem !important;
  }

  .mb-sm-n3 {
    margin-bottom: -1rem !important;
  }

  .mb-sm-n4 {
    margin-bottom: -1.5rem !important;
  }

  .mb-sm-n5 {
    margin-bottom: -3rem !important;
  }

  .ms-sm-n1 {
    margin-left: -0.25rem !important;
  }

  .ms-sm-n2 {
    margin-left: -0.5rem !important;
  }

  .ms-sm-n3 {
    margin-left: -1rem !important;
  }

  .ms-sm-n4 {
    margin-left: -1.5rem !important;
  }

  .ms-sm-n5 {
    margin-left: -3rem !important;
  }

  .p-sm-0 {
    padding: 0 !important;
  }

  .p-sm-1 {
    padding: 0.25rem !important;
  }

  .p-sm-2 {
    padding: 0.5rem !important;
  }

  .p-sm-3 {
    padding: 1rem !important;
  }

  .p-sm-4 {
    padding: 1.5rem !important;
  }

  .p-sm-5 {
    padding: 3rem !important;
  }

  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-sm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-sm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-sm-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-sm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-sm-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-sm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-sm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-sm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-sm-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-sm-0 {
    padding-top: 0 !important;
  }

  .pt-sm-1 {
    padding-top: 0.25rem !important;
  }

  .pt-sm-2 {
    padding-top: 0.5rem !important;
  }

  .pt-sm-3 {
    padding-top: 1rem !important;
  }

  .pt-sm-4 {
    padding-top: 1.5rem !important;
  }

  .pt-sm-5 {
    padding-top: 3rem !important;
  }

  .pe-sm-0 {
    padding-right: 0 !important;
  }

  .pe-sm-1 {
    padding-right: 0.25rem !important;
  }

  .pe-sm-2 {
    padding-right: 0.5rem !important;
  }

  .pe-sm-3 {
    padding-right: 1rem !important;
  }

  .pe-sm-4 {
    padding-right: 1.5rem !important;
  }

  .pe-sm-5 {
    padding-right: 3rem !important;
  }

  .pb-sm-0 {
    padding-bottom: 0 !important;
  }

  .pb-sm-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-sm-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-sm-3 {
    padding-bottom: 1rem !important;
  }

  .pb-sm-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-sm-5 {
    padding-bottom: 3rem !important;
  }

  .ps-sm-0 {
    padding-left: 0 !important;
  }

  .ps-sm-1 {
    padding-left: 0.25rem !important;
  }

  .ps-sm-2 {
    padding-left: 0.5rem !important;
  }

  .ps-sm-3 {
    padding-left: 1rem !important;
  }

  .ps-sm-4 {
    padding-left: 1.5rem !important;
  }

  .ps-sm-5 {
    padding-left: 3rem !important;
  }

  .text-sm-start {
    text-align: left !important;
  }

  .text-sm-end {
    text-align: right !important;
  }

  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .float-md-start {
    float: left !important;
  }

  .float-md-end {
    float: right !important;
  }

  .float-md-none {
    float: none !important;
  }

  .d-md-inline {
    display: inline !important;
  }

  .d-md-inline-block {
    display: inline-block !important;
  }

  .d-md-block {
    display: block !important;
  }

  .d-md-grid {
    display: grid !important;
  }

  .d-md-table {
    display: table !important;
  }

  .d-md-table-row {
    display: table-row !important;
  }

  .d-md-table-cell {
    display: table-cell !important;
  }

  .d-md-flex {
    display: flex !important;
  }

  .d-md-inline-flex {
    display: inline-flex !important;
  }

  .d-md-none {
    display: none !important;
  }

  .flex-md-fill {
    flex: 1 1 auto !important;
  }

  .flex-md-row {
    flex-direction: row !important;
  }

  .flex-md-column {
    flex-direction: column !important;
  }

  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }

  .flex-md-wrap {
    flex-wrap: wrap !important;
  }

  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .gap-md-0 {
    gap: 0 !important;
  }

  .gap-md-1 {
    gap: 0.25rem !important;
  }

  .gap-md-2 {
    gap: 0.5rem !important;
  }

  .gap-md-3 {
    gap: 1rem !important;
  }

  .gap-md-4 {
    gap: 1.5rem !important;
  }

  .gap-md-5 {
    gap: 3rem !important;
  }

  .justify-content-md-start {
    justify-content: flex-start !important;
  }

  .justify-content-md-end {
    justify-content: flex-end !important;
  }

  .justify-content-md-center {
    justify-content: center !important;
  }

  .justify-content-md-between {
    justify-content: space-between !important;
  }

  .justify-content-md-around {
    justify-content: space-around !important;
  }

  .justify-content-md-evenly {
    justify-content: space-evenly !important;
  }

  .align-items-md-start {
    align-items: flex-start !important;
  }

  .align-items-md-end {
    align-items: flex-end !important;
  }

  .align-items-md-center {
    align-items: center !important;
  }

  .align-items-md-baseline {
    align-items: baseline !important;
  }

  .align-items-md-stretch {
    align-items: stretch !important;
  }

  .align-content-md-start {
    align-content: flex-start !important;
  }

  .align-content-md-end {
    align-content: flex-end !important;
  }

  .align-content-md-center {
    align-content: center !important;
  }

  .align-content-md-between {
    align-content: space-between !important;
  }

  .align-content-md-around {
    align-content: space-around !important;
  }

  .align-content-md-stretch {
    align-content: stretch !important;
  }

  .align-self-md-auto {
    align-self: auto !important;
  }

  .align-self-md-start {
    align-self: flex-start !important;
  }

  .align-self-md-end {
    align-self: flex-end !important;
  }

  .align-self-md-center {
    align-self: center !important;
  }

  .align-self-md-baseline {
    align-self: baseline !important;
  }

  .align-self-md-stretch {
    align-self: stretch !important;
  }

  .order-md-first {
    order: -1 !important;
  }

  .order-md-0 {
    order: 0 !important;
  }

  .order-md-1 {
    order: 1 !important;
  }

  .order-md-2 {
    order: 2 !important;
  }

  .order-md-3 {
    order: 3 !important;
  }

  .order-md-4 {
    order: 4 !important;
  }

  .order-md-5 {
    order: 5 !important;
  }

  .order-md-last {
    order: 6 !important;
  }

  .m-md-0 {
    margin: 0 !important;
  }

  .m-md-1 {
    margin: 0.25rem !important;
  }

  .m-md-2 {
    margin: 0.5rem !important;
  }

  .m-md-3 {
    margin: 1rem !important;
  }

  .m-md-4 {
    margin: 1.5rem !important;
  }

  .m-md-5 {
    margin: 3rem !important;
  }

  .m-md-auto {
    margin: auto !important;
  }

  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-md-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-md-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-md-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-md-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-md-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-md-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-md-0 {
    margin-top: 0 !important;
  }

  .mt-md-1 {
    margin-top: 0.25rem !important;
  }

  .mt-md-2 {
    margin-top: 0.5rem !important;
  }

  .mt-md-3 {
    margin-top: 1rem !important;
  }

  .mt-md-4 {
    margin-top: 1.5rem !important;
  }

  .mt-md-5 {
    margin-top: 3rem !important;
  }

  .mt-md-auto {
    margin-top: auto !important;
  }

  .me-md-0 {
    margin-right: 0 !important;
  }

  .me-md-1 {
    margin-right: 0.25rem !important;
  }

  .me-md-2 {
    margin-right: 0.5rem !important;
  }

  .me-md-3 {
    margin-right: 1rem !important;
  }

  .me-md-4 {
    margin-right: 1.5rem !important;
  }

  .me-md-5 {
    margin-right: 3rem !important;
  }

  .me-md-auto {
    margin-right: auto !important;
  }

  .mb-md-0 {
    margin-bottom: 0 !important;
  }

  .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-md-3 {
    margin-bottom: 1rem !important;
  }

  .mb-md-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-md-5 {
    margin-bottom: 3rem !important;
  }

  .mb-md-auto {
    margin-bottom: auto !important;
  }

  .ms-md-0 {
    margin-left: 0 !important;
  }

  .ms-md-1 {
    margin-left: 0.25rem !important;
  }

  .ms-md-2 {
    margin-left: 0.5rem !important;
  }

  .ms-md-3 {
    margin-left: 1rem !important;
  }

  .ms-md-4 {
    margin-left: 1.5rem !important;
  }

  .ms-md-5 {
    margin-left: 3rem !important;
  }

  .ms-md-auto {
    margin-left: auto !important;
  }

  .m-md-n1 {
    margin: -0.25rem !important;
  }

  .m-md-n2 {
    margin: -0.5rem !important;
  }

  .m-md-n3 {
    margin: -1rem !important;
  }

  .m-md-n4 {
    margin: -1.5rem !important;
  }

  .m-md-n5 {
    margin: -3rem !important;
  }

  .mx-md-n1 {
    margin-right: -0.25rem !important;
    margin-left: -0.25rem !important;
  }

  .mx-md-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }

  .mx-md-n3 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }

  .mx-md-n4 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }

  .mx-md-n5 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }

  .my-md-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }

  .my-md-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }

  .my-md-n3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }

  .my-md-n4 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }

  .my-md-n5 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }

  .mt-md-n1 {
    margin-top: -0.25rem !important;
  }

  .mt-md-n2 {
    margin-top: -0.5rem !important;
  }

  .mt-md-n3 {
    margin-top: -1rem !important;
  }

  .mt-md-n4 {
    margin-top: -1.5rem !important;
  }

  .mt-md-n5 {
    margin-top: -3rem !important;
  }

  .me-md-n1 {
    margin-right: -0.25rem !important;
  }

  .me-md-n2 {
    margin-right: -0.5rem !important;
  }

  .me-md-n3 {
    margin-right: -1rem !important;
  }

  .me-md-n4 {
    margin-right: -1.5rem !important;
  }

  .me-md-n5 {
    margin-right: -3rem !important;
  }

  .mb-md-n1 {
    margin-bottom: -0.25rem !important;
  }

  .mb-md-n2 {
    margin-bottom: -0.5rem !important;
  }

  .mb-md-n3 {
    margin-bottom: -1rem !important;
  }

  .mb-md-n4 {
    margin-bottom: -1.5rem !important;
  }

  .mb-md-n5 {
    margin-bottom: -3rem !important;
  }

  .ms-md-n1 {
    margin-left: -0.25rem !important;
  }

  .ms-md-n2 {
    margin-left: -0.5rem !important;
  }

  .ms-md-n3 {
    margin-left: -1rem !important;
  }

  .ms-md-n4 {
    margin-left: -1.5rem !important;
  }

  .ms-md-n5 {
    margin-left: -3rem !important;
  }

  .p-md-0 {
    padding: 0 !important;
  }

  .p-md-1 {
    padding: 0.25rem !important;
  }

  .p-md-2 {
    padding: 0.5rem !important;
  }

  .p-md-3 {
    padding: 1rem !important;
  }

  .p-md-4 {
    padding: 1.5rem !important;
  }

  .p-md-5 {
    padding: 3rem !important;
  }

  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-md-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-md-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-md-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-md-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-md-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-md-0 {
    padding-top: 0 !important;
  }

  .pt-md-1 {
    padding-top: 0.25rem !important;
  }

  .pt-md-2 {
    padding-top: 0.5rem !important;
  }

  .pt-md-3 {
    padding-top: 1rem !important;
  }

  .pt-md-4 {
    padding-top: 1.5rem !important;
  }

  .pt-md-5 {
    padding-top: 3rem !important;
  }

  .pe-md-0 {
    padding-right: 0 !important;
  }

  .pe-md-1 {
    padding-right: 0.25rem !important;
  }

  .pe-md-2 {
    padding-right: 0.5rem !important;
  }

  .pe-md-3 {
    padding-right: 1rem !important;
  }

  .pe-md-4 {
    padding-right: 1.5rem !important;
  }

  .pe-md-5 {
    padding-right: 3rem !important;
  }

  .pb-md-0 {
    padding-bottom: 0 !important;
  }

  .pb-md-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-md-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-md-3 {
    padding-bottom: 1rem !important;
  }

  .pb-md-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-md-5 {
    padding-bottom: 3rem !important;
  }

  .ps-md-0 {
    padding-left: 0 !important;
  }

  .ps-md-1 {
    padding-left: 0.25rem !important;
  }

  .ps-md-2 {
    padding-left: 0.5rem !important;
  }

  .ps-md-3 {
    padding-left: 1rem !important;
  }

  .ps-md-4 {
    padding-left: 1.5rem !important;
  }

  .ps-md-5 {
    padding-left: 3rem !important;
  }

  .text-md-start {
    text-align: left !important;
  }

  .text-md-end {
    text-align: right !important;
  }

  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .float-lg-start {
    float: left !important;
  }

  .float-lg-end {
    float: right !important;
  }

  .float-lg-none {
    float: none !important;
  }

  .d-lg-inline {
    display: inline !important;
  }

  .d-lg-inline-block {
    display: inline-block !important;
  }

  .d-lg-block {
    display: block !important;
  }

  .d-lg-grid {
    display: grid !important;
  }

  .d-lg-table {
    display: table !important;
  }

  .d-lg-table-row {
    display: table-row !important;
  }

  .d-lg-table-cell {
    display: table-cell !important;
  }

  .d-lg-flex {
    display: flex !important;
  }

  .d-lg-inline-flex {
    display: inline-flex !important;
  }

  .d-lg-none {
    display: none !important;
  }

  .flex-lg-fill {
    flex: 1 1 auto !important;
  }

  .flex-lg-row {
    flex-direction: row !important;
  }

  .flex-lg-column {
    flex-direction: column !important;
  }

  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }

  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }

  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .gap-lg-0 {
    gap: 0 !important;
  }

  .gap-lg-1 {
    gap: 0.25rem !important;
  }

  .gap-lg-2 {
    gap: 0.5rem !important;
  }

  .gap-lg-3 {
    gap: 1rem !important;
  }

  .gap-lg-4 {
    gap: 1.5rem !important;
  }

  .gap-lg-5 {
    gap: 3rem !important;
  }

  .justify-content-lg-start {
    justify-content: flex-start !important;
  }

  .justify-content-lg-end {
    justify-content: flex-end !important;
  }

  .justify-content-lg-center {
    justify-content: center !important;
  }

  .justify-content-lg-between {
    justify-content: space-between !important;
  }

  .justify-content-lg-around {
    justify-content: space-around !important;
  }

  .justify-content-lg-evenly {
    justify-content: space-evenly !important;
  }

  .align-items-lg-start {
    align-items: flex-start !important;
  }

  .align-items-lg-end {
    align-items: flex-end !important;
  }

  .align-items-lg-center {
    align-items: center !important;
  }

  .align-items-lg-baseline {
    align-items: baseline !important;
  }

  .align-items-lg-stretch {
    align-items: stretch !important;
  }

  .align-content-lg-start {
    align-content: flex-start !important;
  }

  .align-content-lg-end {
    align-content: flex-end !important;
  }

  .align-content-lg-center {
    align-content: center !important;
  }

  .align-content-lg-between {
    align-content: space-between !important;
  }

  .align-content-lg-around {
    align-content: space-around !important;
  }

  .align-content-lg-stretch {
    align-content: stretch !important;
  }

  .align-self-lg-auto {
    align-self: auto !important;
  }

  .align-self-lg-start {
    align-self: flex-start !important;
  }

  .align-self-lg-end {
    align-self: flex-end !important;
  }

  .align-self-lg-center {
    align-self: center !important;
  }

  .align-self-lg-baseline {
    align-self: baseline !important;
  }

  .align-self-lg-stretch {
    align-self: stretch !important;
  }

  .order-lg-first {
    order: -1 !important;
  }

  .order-lg-0 {
    order: 0 !important;
  }

  .order-lg-1 {
    order: 1 !important;
  }

  .order-lg-2 {
    order: 2 !important;
  }

  .order-lg-3 {
    order: 3 !important;
  }

  .order-lg-4 {
    order: 4 !important;
  }

  .order-lg-5 {
    order: 5 !important;
  }

  .order-lg-last {
    order: 6 !important;
  }

  .m-lg-0 {
    margin: 0 !important;
  }

  .m-lg-1 {
    margin: 0.25rem !important;
  }

  .m-lg-2 {
    margin: 0.5rem !important;
  }

  .m-lg-3 {
    margin: 1rem !important;
  }

  .m-lg-4 {
    margin: 1.5rem !important;
  }

  .m-lg-5 {
    margin: 3rem !important;
  }

  .m-lg-auto {
    margin: auto !important;
  }

  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-lg-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-lg-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-lg-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-lg-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-lg-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-lg-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-lg-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-lg-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-lg-0 {
    margin-top: 0 !important;
  }

  .mt-lg-1 {
    margin-top: 0.25rem !important;
  }

  .mt-lg-2 {
    margin-top: 0.5rem !important;
  }

  .mt-lg-3 {
    margin-top: 1rem !important;
  }

  .mt-lg-4 {
    margin-top: 1.5rem !important;
  }

  .mt-lg-5 {
    margin-top: 3rem !important;
  }

  .mt-lg-auto {
    margin-top: auto !important;
  }

  .me-lg-0 {
    margin-right: 0 !important;
  }

  .me-lg-1 {
    margin-right: 0.25rem !important;
  }

  .me-lg-2 {
    margin-right: 0.5rem !important;
  }

  .me-lg-3 {
    margin-right: 1rem !important;
  }

  .me-lg-4 {
    margin-right: 1.5rem !important;
  }

  .me-lg-5 {
    margin-right: 3rem !important;
  }

  .me-lg-auto {
    margin-right: auto !important;
  }

  .mb-lg-0 {
    margin-bottom: 0 !important;
  }

  .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-lg-3 {
    margin-bottom: 1rem !important;
  }

  .mb-lg-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-lg-5 {
    margin-bottom: 3rem !important;
  }

  .mb-lg-auto {
    margin-bottom: auto !important;
  }

  .ms-lg-0 {
    margin-left: 0 !important;
  }

  .ms-lg-1 {
    margin-left: 0.25rem !important;
  }

  .ms-lg-2 {
    margin-left: 0.5rem !important;
  }

  .ms-lg-3 {
    margin-left: 1rem !important;
  }

  .ms-lg-4 {
    margin-left: 1.5rem !important;
  }

  .ms-lg-5 {
    margin-left: 3rem !important;
  }

  .ms-lg-auto {
    margin-left: auto !important;
  }

  .m-lg-n1 {
    margin: -0.25rem !important;
  }

  .m-lg-n2 {
    margin: -0.5rem !important;
  }

  .m-lg-n3 {
    margin: -1rem !important;
  }

  .m-lg-n4 {
    margin: -1.5rem !important;
  }

  .m-lg-n5 {
    margin: -3rem !important;
  }

  .mx-lg-n1 {
    margin-right: -0.25rem !important;
    margin-left: -0.25rem !important;
  }

  .mx-lg-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }

  .mx-lg-n3 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }

  .mx-lg-n4 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }

  .mx-lg-n5 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }

  .my-lg-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }

  .my-lg-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }

  .my-lg-n3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }

  .my-lg-n4 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }

  .my-lg-n5 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }

  .mt-lg-n1 {
    margin-top: -0.25rem !important;
  }

  .mt-lg-n2 {
    margin-top: -0.5rem !important;
  }

  .mt-lg-n3 {
    margin-top: -1rem !important;
  }

  .mt-lg-n4 {
    margin-top: -1.5rem !important;
  }

  .mt-lg-n5 {
    margin-top: -3rem !important;
  }

  .me-lg-n1 {
    margin-right: -0.25rem !important;
  }

  .me-lg-n2 {
    margin-right: -0.5rem !important;
  }

  .me-lg-n3 {
    margin-right: -1rem !important;
  }

  .me-lg-n4 {
    margin-right: -1.5rem !important;
  }

  .me-lg-n5 {
    margin-right: -3rem !important;
  }

  .mb-lg-n1 {
    margin-bottom: -0.25rem !important;
  }

  .mb-lg-n2 {
    margin-bottom: -0.5rem !important;
  }

  .mb-lg-n3 {
    margin-bottom: -1rem !important;
  }

  .mb-lg-n4 {
    margin-bottom: -1.5rem !important;
  }

  .mb-lg-n5 {
    margin-bottom: -3rem !important;
  }

  .ms-lg-n1 {
    margin-left: -0.25rem !important;
  }

  .ms-lg-n2 {
    margin-left: -0.5rem !important;
  }

  .ms-lg-n3 {
    margin-left: -1rem !important;
  }

  .ms-lg-n4 {
    margin-left: -1.5rem !important;
  }

  .ms-lg-n5 {
    margin-left: -3rem !important;
  }

  .p-lg-0 {
    padding: 0 !important;
  }

  .p-lg-1 {
    padding: 0.25rem !important;
  }

  .p-lg-2 {
    padding: 0.5rem !important;
  }

  .p-lg-3 {
    padding: 1rem !important;
  }

  .p-lg-4 {
    padding: 1.5rem !important;
  }

  .p-lg-5 {
    padding: 3rem !important;
  }

  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-lg-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-lg-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-lg-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-lg-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-lg-0 {
    padding-top: 0 !important;
  }

  .pt-lg-1 {
    padding-top: 0.25rem !important;
  }

  .pt-lg-2 {
    padding-top: 0.5rem !important;
  }

  .pt-lg-3 {
    padding-top: 1rem !important;
  }

  .pt-lg-4 {
    padding-top: 1.5rem !important;
  }

  .pt-lg-5 {
    padding-top: 3rem !important;
  }

  .pe-lg-0 {
    padding-right: 0 !important;
  }

  .pe-lg-1 {
    padding-right: 0.25rem !important;
  }

  .pe-lg-2 {
    padding-right: 0.5rem !important;
  }

  .pe-lg-3 {
    padding-right: 1rem !important;
  }

  .pe-lg-4 {
    padding-right: 1.5rem !important;
  }

  .pe-lg-5 {
    padding-right: 3rem !important;
  }

  .pb-lg-0 {
    padding-bottom: 0 !important;
  }

  .pb-lg-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-lg-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-lg-3 {
    padding-bottom: 1rem !important;
  }

  .pb-lg-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-lg-5 {
    padding-bottom: 3rem !important;
  }

  .ps-lg-0 {
    padding-left: 0 !important;
  }

  .ps-lg-1 {
    padding-left: 0.25rem !important;
  }

  .ps-lg-2 {
    padding-left: 0.5rem !important;
  }

  .ps-lg-3 {
    padding-left: 1rem !important;
  }

  .ps-lg-4 {
    padding-left: 1.5rem !important;
  }

  .ps-lg-5 {
    padding-left: 3rem !important;
  }

  .text-lg-start {
    text-align: left !important;
  }

  .text-lg-end {
    text-align: right !important;
  }

  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .float-xl-start {
    float: left !important;
  }

  .float-xl-end {
    float: right !important;
  }

  .float-xl-none {
    float: none !important;
  }

  .d-xl-inline {
    display: inline !important;
  }

  .d-xl-inline-block {
    display: inline-block !important;
  }

  .d-xl-block {
    display: block !important;
  }

  .d-xl-grid {
    display: grid !important;
  }

  .d-xl-table {
    display: table !important;
  }

  .d-xl-table-row {
    display: table-row !important;
  }

  .d-xl-table-cell {
    display: table-cell !important;
  }

  .d-xl-flex {
    display: flex !important;
  }

  .d-xl-inline-flex {
    display: inline-flex !important;
  }

  .d-xl-none {
    display: none !important;
  }

  .flex-xl-fill {
    flex: 1 1 auto !important;
  }

  .flex-xl-row {
    flex-direction: row !important;
  }

  .flex-xl-column {
    flex-direction: column !important;
  }

  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }

  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }

  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .gap-xl-0 {
    gap: 0 !important;
  }

  .gap-xl-1 {
    gap: 0.25rem !important;
  }

  .gap-xl-2 {
    gap: 0.5rem !important;
  }

  .gap-xl-3 {
    gap: 1rem !important;
  }

  .gap-xl-4 {
    gap: 1.5rem !important;
  }

  .gap-xl-5 {
    gap: 3rem !important;
  }

  .justify-content-xl-start {
    justify-content: flex-start !important;
  }

  .justify-content-xl-end {
    justify-content: flex-end !important;
  }

  .justify-content-xl-center {
    justify-content: center !important;
  }

  .justify-content-xl-between {
    justify-content: space-between !important;
  }

  .justify-content-xl-around {
    justify-content: space-around !important;
  }

  .justify-content-xl-evenly {
    justify-content: space-evenly !important;
  }

  .align-items-xl-start {
    align-items: flex-start !important;
  }

  .align-items-xl-end {
    align-items: flex-end !important;
  }

  .align-items-xl-center {
    align-items: center !important;
  }

  .align-items-xl-baseline {
    align-items: baseline !important;
  }

  .align-items-xl-stretch {
    align-items: stretch !important;
  }

  .align-content-xl-start {
    align-content: flex-start !important;
  }

  .align-content-xl-end {
    align-content: flex-end !important;
  }

  .align-content-xl-center {
    align-content: center !important;
  }

  .align-content-xl-between {
    align-content: space-between !important;
  }

  .align-content-xl-around {
    align-content: space-around !important;
  }

  .align-content-xl-stretch {
    align-content: stretch !important;
  }

  .align-self-xl-auto {
    align-self: auto !important;
  }

  .align-self-xl-start {
    align-self: flex-start !important;
  }

  .align-self-xl-end {
    align-self: flex-end !important;
  }

  .align-self-xl-center {
    align-self: center !important;
  }

  .align-self-xl-baseline {
    align-self: baseline !important;
  }

  .align-self-xl-stretch {
    align-self: stretch !important;
  }

  .order-xl-first {
    order: -1 !important;
  }

  .order-xl-0 {
    order: 0 !important;
  }

  .order-xl-1 {
    order: 1 !important;
  }

  .order-xl-2 {
    order: 2 !important;
  }

  .order-xl-3 {
    order: 3 !important;
  }

  .order-xl-4 {
    order: 4 !important;
  }

  .order-xl-5 {
    order: 5 !important;
  }

  .order-xl-last {
    order: 6 !important;
  }

  .m-xl-0 {
    margin: 0 !important;
  }

  .m-xl-1 {
    margin: 0.25rem !important;
  }

  .m-xl-2 {
    margin: 0.5rem !important;
  }

  .m-xl-3 {
    margin: 1rem !important;
  }

  .m-xl-4 {
    margin: 1.5rem !important;
  }

  .m-xl-5 {
    margin: 3rem !important;
  }

  .m-xl-auto {
    margin: auto !important;
  }

  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-xl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-xl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-xl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-xl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-xl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-xl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-xl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-xl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-xl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-xl-0 {
    margin-top: 0 !important;
  }

  .mt-xl-1 {
    margin-top: 0.25rem !important;
  }

  .mt-xl-2 {
    margin-top: 0.5rem !important;
  }

  .mt-xl-3 {
    margin-top: 1rem !important;
  }

  .mt-xl-4 {
    margin-top: 1.5rem !important;
  }

  .mt-xl-5 {
    margin-top: 3rem !important;
  }

  .mt-xl-auto {
    margin-top: auto !important;
  }

  .me-xl-0 {
    margin-right: 0 !important;
  }

  .me-xl-1 {
    margin-right: 0.25rem !important;
  }

  .me-xl-2 {
    margin-right: 0.5rem !important;
  }

  .me-xl-3 {
    margin-right: 1rem !important;
  }

  .me-xl-4 {
    margin-right: 1.5rem !important;
  }

  .me-xl-5 {
    margin-right: 3rem !important;
  }

  .me-xl-auto {
    margin-right: auto !important;
  }

  .mb-xl-0 {
    margin-bottom: 0 !important;
  }

  .mb-xl-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-xl-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-xl-3 {
    margin-bottom: 1rem !important;
  }

  .mb-xl-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-xl-5 {
    margin-bottom: 3rem !important;
  }

  .mb-xl-auto {
    margin-bottom: auto !important;
  }

  .ms-xl-0 {
    margin-left: 0 !important;
  }

  .ms-xl-1 {
    margin-left: 0.25rem !important;
  }

  .ms-xl-2 {
    margin-left: 0.5rem !important;
  }

  .ms-xl-3 {
    margin-left: 1rem !important;
  }

  .ms-xl-4 {
    margin-left: 1.5rem !important;
  }

  .ms-xl-5 {
    margin-left: 3rem !important;
  }

  .ms-xl-auto {
    margin-left: auto !important;
  }

  .m-xl-n1 {
    margin: -0.25rem !important;
  }

  .m-xl-n2 {
    margin: -0.5rem !important;
  }

  .m-xl-n3 {
    margin: -1rem !important;
  }

  .m-xl-n4 {
    margin: -1.5rem !important;
  }

  .m-xl-n5 {
    margin: -3rem !important;
  }

  .mx-xl-n1 {
    margin-right: -0.25rem !important;
    margin-left: -0.25rem !important;
  }

  .mx-xl-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }

  .mx-xl-n3 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }

  .mx-xl-n4 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }

  .mx-xl-n5 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }

  .my-xl-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }

  .my-xl-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }

  .my-xl-n3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }

  .my-xl-n4 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }

  .my-xl-n5 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }

  .mt-xl-n1 {
    margin-top: -0.25rem !important;
  }

  .mt-xl-n2 {
    margin-top: -0.5rem !important;
  }

  .mt-xl-n3 {
    margin-top: -1rem !important;
  }

  .mt-xl-n4 {
    margin-top: -1.5rem !important;
  }

  .mt-xl-n5 {
    margin-top: -3rem !important;
  }

  .me-xl-n1 {
    margin-right: -0.25rem !important;
  }

  .me-xl-n2 {
    margin-right: -0.5rem !important;
  }

  .me-xl-n3 {
    margin-right: -1rem !important;
  }

  .me-xl-n4 {
    margin-right: -1.5rem !important;
  }

  .me-xl-n5 {
    margin-right: -3rem !important;
  }

  .mb-xl-n1 {
    margin-bottom: -0.25rem !important;
  }

  .mb-xl-n2 {
    margin-bottom: -0.5rem !important;
  }

  .mb-xl-n3 {
    margin-bottom: -1rem !important;
  }

  .mb-xl-n4 {
    margin-bottom: -1.5rem !important;
  }

  .mb-xl-n5 {
    margin-bottom: -3rem !important;
  }

  .ms-xl-n1 {
    margin-left: -0.25rem !important;
  }

  .ms-xl-n2 {
    margin-left: -0.5rem !important;
  }

  .ms-xl-n3 {
    margin-left: -1rem !important;
  }

  .ms-xl-n4 {
    margin-left: -1.5rem !important;
  }

  .ms-xl-n5 {
    margin-left: -3rem !important;
  }

  .p-xl-0 {
    padding: 0 !important;
  }

  .p-xl-1 {
    padding: 0.25rem !important;
  }

  .p-xl-2 {
    padding: 0.5rem !important;
  }

  .p-xl-3 {
    padding: 1rem !important;
  }

  .p-xl-4 {
    padding: 1.5rem !important;
  }

  .p-xl-5 {
    padding: 3rem !important;
  }

  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-xl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-xl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-xl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-xl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-xl-0 {
    padding-top: 0 !important;
  }

  .pt-xl-1 {
    padding-top: 0.25rem !important;
  }

  .pt-xl-2 {
    padding-top: 0.5rem !important;
  }

  .pt-xl-3 {
    padding-top: 1rem !important;
  }

  .pt-xl-4 {
    padding-top: 1.5rem !important;
  }

  .pt-xl-5 {
    padding-top: 3rem !important;
  }

  .pe-xl-0 {
    padding-right: 0 !important;
  }

  .pe-xl-1 {
    padding-right: 0.25rem !important;
  }

  .pe-xl-2 {
    padding-right: 0.5rem !important;
  }

  .pe-xl-3 {
    padding-right: 1rem !important;
  }

  .pe-xl-4 {
    padding-right: 1.5rem !important;
  }

  .pe-xl-5 {
    padding-right: 3rem !important;
  }

  .pb-xl-0 {
    padding-bottom: 0 !important;
  }

  .pb-xl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-xl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-xl-3 {
    padding-bottom: 1rem !important;
  }

  .pb-xl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-xl-5 {
    padding-bottom: 3rem !important;
  }

  .ps-xl-0 {
    padding-left: 0 !important;
  }

  .ps-xl-1 {
    padding-left: 0.25rem !important;
  }

  .ps-xl-2 {
    padding-left: 0.5rem !important;
  }

  .ps-xl-3 {
    padding-left: 1rem !important;
  }

  .ps-xl-4 {
    padding-left: 1.5rem !important;
  }

  .ps-xl-5 {
    padding-left: 3rem !important;
  }

  .text-xl-start {
    text-align: left !important;
  }

  .text-xl-end {
    text-align: right !important;
  }

  .text-xl-center {
    text-align: center !important;
  }
}
@media (min-width: 1400px) {
  .float-xxl-start {
    float: left !important;
  }

  .float-xxl-end {
    float: right !important;
  }

  .float-xxl-none {
    float: none !important;
  }

  .d-xxl-inline {
    display: inline !important;
  }

  .d-xxl-inline-block {
    display: inline-block !important;
  }

  .d-xxl-block {
    display: block !important;
  }

  .d-xxl-grid {
    display: grid !important;
  }

  .d-xxl-table {
    display: table !important;
  }

  .d-xxl-table-row {
    display: table-row !important;
  }

  .d-xxl-table-cell {
    display: table-cell !important;
  }

  .d-xxl-flex {
    display: flex !important;
  }

  .d-xxl-inline-flex {
    display: inline-flex !important;
  }

  .d-xxl-none {
    display: none !important;
  }

  .flex-xxl-fill {
    flex: 1 1 auto !important;
  }

  .flex-xxl-row {
    flex-direction: row !important;
  }

  .flex-xxl-column {
    flex-direction: column !important;
  }

  .flex-xxl-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-xxl-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-xxl-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-xxl-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-xxl-shrink-1 {
    flex-shrink: 1 !important;
  }

  .flex-xxl-wrap {
    flex-wrap: wrap !important;
  }

  .flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .gap-xxl-0 {
    gap: 0 !important;
  }

  .gap-xxl-1 {
    gap: 0.25rem !important;
  }

  .gap-xxl-2 {
    gap: 0.5rem !important;
  }

  .gap-xxl-3 {
    gap: 1rem !important;
  }

  .gap-xxl-4 {
    gap: 1.5rem !important;
  }

  .gap-xxl-5 {
    gap: 3rem !important;
  }

  .justify-content-xxl-start {
    justify-content: flex-start !important;
  }

  .justify-content-xxl-end {
    justify-content: flex-end !important;
  }

  .justify-content-xxl-center {
    justify-content: center !important;
  }

  .justify-content-xxl-between {
    justify-content: space-between !important;
  }

  .justify-content-xxl-around {
    justify-content: space-around !important;
  }

  .justify-content-xxl-evenly {
    justify-content: space-evenly !important;
  }

  .align-items-xxl-start {
    align-items: flex-start !important;
  }

  .align-items-xxl-end {
    align-items: flex-end !important;
  }

  .align-items-xxl-center {
    align-items: center !important;
  }

  .align-items-xxl-baseline {
    align-items: baseline !important;
  }

  .align-items-xxl-stretch {
    align-items: stretch !important;
  }

  .align-content-xxl-start {
    align-content: flex-start !important;
  }

  .align-content-xxl-end {
    align-content: flex-end !important;
  }

  .align-content-xxl-center {
    align-content: center !important;
  }

  .align-content-xxl-between {
    align-content: space-between !important;
  }

  .align-content-xxl-around {
    align-content: space-around !important;
  }

  .align-content-xxl-stretch {
    align-content: stretch !important;
  }

  .align-self-xxl-auto {
    align-self: auto !important;
  }

  .align-self-xxl-start {
    align-self: flex-start !important;
  }

  .align-self-xxl-end {
    align-self: flex-end !important;
  }

  .align-self-xxl-center {
    align-self: center !important;
  }

  .align-self-xxl-baseline {
    align-self: baseline !important;
  }

  .align-self-xxl-stretch {
    align-self: stretch !important;
  }

  .order-xxl-first {
    order: -1 !important;
  }

  .order-xxl-0 {
    order: 0 !important;
  }

  .order-xxl-1 {
    order: 1 !important;
  }

  .order-xxl-2 {
    order: 2 !important;
  }

  .order-xxl-3 {
    order: 3 !important;
  }

  .order-xxl-4 {
    order: 4 !important;
  }

  .order-xxl-5 {
    order: 5 !important;
  }

  .order-xxl-last {
    order: 6 !important;
  }

  .m-xxl-0 {
    margin: 0 !important;
  }

  .m-xxl-1 {
    margin: 0.25rem !important;
  }

  .m-xxl-2 {
    margin: 0.5rem !important;
  }

  .m-xxl-3 {
    margin: 1rem !important;
  }

  .m-xxl-4 {
    margin: 1.5rem !important;
  }

  .m-xxl-5 {
    margin: 3rem !important;
  }

  .m-xxl-auto {
    margin: auto !important;
  }

  .mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-xxl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-xxl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-xxl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-xxl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-xxl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-xxl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-xxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-xxl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-xxl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-xxl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-xxl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-xxl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-xxl-0 {
    margin-top: 0 !important;
  }

  .mt-xxl-1 {
    margin-top: 0.25rem !important;
  }

  .mt-xxl-2 {
    margin-top: 0.5rem !important;
  }

  .mt-xxl-3 {
    margin-top: 1rem !important;
  }

  .mt-xxl-4 {
    margin-top: 1.5rem !important;
  }

  .mt-xxl-5 {
    margin-top: 3rem !important;
  }

  .mt-xxl-auto {
    margin-top: auto !important;
  }

  .me-xxl-0 {
    margin-right: 0 !important;
  }

  .me-xxl-1 {
    margin-right: 0.25rem !important;
  }

  .me-xxl-2 {
    margin-right: 0.5rem !important;
  }

  .me-xxl-3 {
    margin-right: 1rem !important;
  }

  .me-xxl-4 {
    margin-right: 1.5rem !important;
  }

  .me-xxl-5 {
    margin-right: 3rem !important;
  }

  .me-xxl-auto {
    margin-right: auto !important;
  }

  .mb-xxl-0 {
    margin-bottom: 0 !important;
  }

  .mb-xxl-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-xxl-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-xxl-3 {
    margin-bottom: 1rem !important;
  }

  .mb-xxl-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-xxl-5 {
    margin-bottom: 3rem !important;
  }

  .mb-xxl-auto {
    margin-bottom: auto !important;
  }

  .ms-xxl-0 {
    margin-left: 0 !important;
  }

  .ms-xxl-1 {
    margin-left: 0.25rem !important;
  }

  .ms-xxl-2 {
    margin-left: 0.5rem !important;
  }

  .ms-xxl-3 {
    margin-left: 1rem !important;
  }

  .ms-xxl-4 {
    margin-left: 1.5rem !important;
  }

  .ms-xxl-5 {
    margin-left: 3rem !important;
  }

  .ms-xxl-auto {
    margin-left: auto !important;
  }

  .m-xxl-n1 {
    margin: -0.25rem !important;
  }

  .m-xxl-n2 {
    margin: -0.5rem !important;
  }

  .m-xxl-n3 {
    margin: -1rem !important;
  }

  .m-xxl-n4 {
    margin: -1.5rem !important;
  }

  .m-xxl-n5 {
    margin: -3rem !important;
  }

  .mx-xxl-n1 {
    margin-right: -0.25rem !important;
    margin-left: -0.25rem !important;
  }

  .mx-xxl-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }

  .mx-xxl-n3 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }

  .mx-xxl-n4 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }

  .mx-xxl-n5 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }

  .my-xxl-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }

  .my-xxl-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }

  .my-xxl-n3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }

  .my-xxl-n4 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }

  .my-xxl-n5 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }

  .mt-xxl-n1 {
    margin-top: -0.25rem !important;
  }

  .mt-xxl-n2 {
    margin-top: -0.5rem !important;
  }

  .mt-xxl-n3 {
    margin-top: -1rem !important;
  }

  .mt-xxl-n4 {
    margin-top: -1.5rem !important;
  }

  .mt-xxl-n5 {
    margin-top: -3rem !important;
  }

  .me-xxl-n1 {
    margin-right: -0.25rem !important;
  }

  .me-xxl-n2 {
    margin-right: -0.5rem !important;
  }

  .me-xxl-n3 {
    margin-right: -1rem !important;
  }

  .me-xxl-n4 {
    margin-right: -1.5rem !important;
  }

  .me-xxl-n5 {
    margin-right: -3rem !important;
  }

  .mb-xxl-n1 {
    margin-bottom: -0.25rem !important;
  }

  .mb-xxl-n2 {
    margin-bottom: -0.5rem !important;
  }

  .mb-xxl-n3 {
    margin-bottom: -1rem !important;
  }

  .mb-xxl-n4 {
    margin-bottom: -1.5rem !important;
  }

  .mb-xxl-n5 {
    margin-bottom: -3rem !important;
  }

  .ms-xxl-n1 {
    margin-left: -0.25rem !important;
  }

  .ms-xxl-n2 {
    margin-left: -0.5rem !important;
  }

  .ms-xxl-n3 {
    margin-left: -1rem !important;
  }

  .ms-xxl-n4 {
    margin-left: -1.5rem !important;
  }

  .ms-xxl-n5 {
    margin-left: -3rem !important;
  }

  .p-xxl-0 {
    padding: 0 !important;
  }

  .p-xxl-1 {
    padding: 0.25rem !important;
  }

  .p-xxl-2 {
    padding: 0.5rem !important;
  }

  .p-xxl-3 {
    padding: 1rem !important;
  }

  .p-xxl-4 {
    padding: 1.5rem !important;
  }

  .p-xxl-5 {
    padding: 3rem !important;
  }

  .px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-xxl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-xxl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-xxl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-xxl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-xxl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-xxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-xxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-xxl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-xxl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-xxl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-xxl-0 {
    padding-top: 0 !important;
  }

  .pt-xxl-1 {
    padding-top: 0.25rem !important;
  }

  .pt-xxl-2 {
    padding-top: 0.5rem !important;
  }

  .pt-xxl-3 {
    padding-top: 1rem !important;
  }

  .pt-xxl-4 {
    padding-top: 1.5rem !important;
  }

  .pt-xxl-5 {
    padding-top: 3rem !important;
  }

  .pe-xxl-0 {
    padding-right: 0 !important;
  }

  .pe-xxl-1 {
    padding-right: 0.25rem !important;
  }

  .pe-xxl-2 {
    padding-right: 0.5rem !important;
  }

  .pe-xxl-3 {
    padding-right: 1rem !important;
  }

  .pe-xxl-4 {
    padding-right: 1.5rem !important;
  }

  .pe-xxl-5 {
    padding-right: 3rem !important;
  }

  .pb-xxl-0 {
    padding-bottom: 0 !important;
  }

  .pb-xxl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-xxl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-xxl-3 {
    padding-bottom: 1rem !important;
  }

  .pb-xxl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-xxl-5 {
    padding-bottom: 3rem !important;
  }

  .ps-xxl-0 {
    padding-left: 0 !important;
  }

  .ps-xxl-1 {
    padding-left: 0.25rem !important;
  }

  .ps-xxl-2 {
    padding-left: 0.5rem !important;
  }

  .ps-xxl-3 {
    padding-left: 1rem !important;
  }

  .ps-xxl-4 {
    padding-left: 1.5rem !important;
  }

  .ps-xxl-5 {
    padding-left: 3rem !important;
  }

  .text-xxl-start {
    text-align: left !important;
  }

  .text-xxl-end {
    text-align: right !important;
  }

  .text-xxl-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .fs-1 {
    font-size: 2.5rem !important;
  }

  .fs-2 {
    font-size: 2rem !important;
  }

  .fs-3 {
    font-size: 1.75rem !important;
  }

  .fs-4 {
    font-size: 1.5rem !important;
  }
}
@media print {
  .d-print-inline {
    display: inline !important;
  }

  .d-print-inline-block {
    display: inline-block !important;
  }

  .d-print-block {
    display: block !important;
  }

  .d-print-grid {
    display: grid !important;
  }

  .d-print-table {
    display: table !important;
  }

  .d-print-table-row {
    display: table-row !important;
  }

  .d-print-table-cell {
    display: table-cell !important;
  }

  .d-print-flex {
    display: flex !important;
  }

  .d-print-inline-flex {
    display: inline-flex !important;
  }

  .d-print-none {
    display: none !important;
  }
}
@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #ff9a26;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-pointer-events {
  touch-action: pan-y;
}
.swiper-pointer-events.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

/* 3D Effects */
.swiper-3d, .swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
      scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}
.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  width: var(--swiper-centered-offset-after);
}
.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  height: var(--swiper-centered-offset-after);
}
.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
}

:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 10px;
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: 50%;
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}

/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}
.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}
.swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}
.swiper-vertical > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

.swiper .swiper-widget {
  margin-top: 24px;
  flex-wrap: wrap;
  display: flex;
}
.swiper .swiper-widget .swiper-widget-col {
  position: relative;
  flex-shrink: 0;
  max-width: 100%;
  width: 100%;
}
@media (min-width: 992px) {
  .swiper .swiper-widget {
    margin-top: 32px;
  }
}
.swiper .swiper-pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 5px;
}
.swiper .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
}

.advantages-list {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 24px auto;
  padding: 0;
}
.advantages-list .advantages-item {
  position: relative;
  padding-left: 60px;
  list-style: none;
}
.advantages-list .advantages-item:not(:last-child) {
  margin-bottom: 1rem;
}
.advantages-list .advantages-item:before {
  content: "";
  position: absolute;
  left: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: block;
}
.advantages-list .advantages-item:nth-child(1)::before {
  background: url(../images/advantages/icon-1.svg) center/contain no-repeat;
}
.advantages-list .advantages-item:nth-child(2)::before {
  background: url(../images/advantages/icon-2.svg) center/contain no-repeat;
}
.advantages-list .advantages-item:nth-child(3)::before {
  background: url(../images/advantages/icon-3.svg) center/contain no-repeat;
}
.advantages-list .advantages-item-name {
  font-family: var(--bs-font-sans-serif);
  font-weight: 700;
  font-size: 1rem;
  line-height: 20px;
  color: #ffffff;
  margin-bottom: 4px;
}
.advantages-list .advantages-item-text {
  font-family: var(--bs-font-sans-serif);
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 20px;
  margin-bottom: 0;
  color: #ffffff;
}
@media (min-width: 992px) {
  .advantages-list {
    margin: 0 auto 56px auto;
  }
  .advantages-list .advantages-item {
    padding-left: 88px;
    flex-direction: column;
  }
  .advantages-list .advantages-item:not(:last-child) {
    margin-bottom: 2rem;
  }
  .advantages-list .advantages-item-name {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 8px;
  }
  .advantages-list .advantages-item-text {
    font-size: 1rem;
    line-height: 24px;
  }
}
@media (min-width: 1200px) {
  .advantages-list .advantages-item:before {
    width: 64px;
    height: 64px;
  }
}

.advantages-figure {
  position: relative;
  margin: 0 auto;
  width: 288px;
  height: 277px;
  background: center/contain no-repeat;
}
@media (min-width: 1200px) {
  .advantages-figure {
    width: 100%;
    height: 491px;
    margin-top: -100px;
    background-position: right;
  }
}

.answer-list {
  margin: 24px auto;
}
.answer-list .answer-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}
.answer-list .answer-item-title {
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-weight: 800;
  font-size: 18px;
  line-height: 24px;
  color: #43347a;
  margin-bottom: 4px;
}
.answer-list .answer-item-subtitle {
  font-family: var(--bs-font-sans-serif);
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #616161;
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .answer-list {
    margin: 0 auto;
  }
  .answer-list .answer-item {
    margin-bottom: 40px;
  }
  .answer-list .answer-item-title {
    font-size: 24px;
    line-height: 24px;
    margin-bottom: 16px;
  }
  .answer-list .answer-item-subtitle {
    font-size: 16px;
    line-height: 24px;
  }
}

.assurance-item {
  width: 100%;
  height: 100%;
  padding: 24px 16px;
  background-color: #fafafa;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}
.assurance-item-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}
.assurance-item-icon.assurance-item-icon-1 {
  background: url("../images/assurances/assurance-icon-1.svg");
  background-size: cover;
}
.assurance-item-icon.assurance-item-icon-2 {
  background: url("../images/assurances/assurance-icon-2.svg");
  background-size: cover;
}
.assurance-item-icon.assurance-item-icon-3 {
  background: url("../images/assurances/assurance-icon-3.svg");
  background-size: cover;
}
.assurance-item-icon.assurance-item-icon-4 {
  background: url("../images/assurances/assurance-icon-4.svg");
  background-size: cover;
}
.assurance-item-title {
  font-family: var(--bs-font-sans-serif);
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  color: #212121;
  margin-bottom: 0.5rem;
}
.assurance-item-subtitle {
  font-family: var(--default);
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #616161;
}
.assurance-item:hover, .assurance-item:focus {
  background-color: #ffffff;
  box-shadow: 0 4px 12px 4px rgba(64, 44, 135, 0.1), 0 0 12px 2px rgba(143, 126, 206, 0.12), inset 0 0 2px rgba(64, 44, 135, 0.28);
}

@media (min-width: 1200px) {
  .assurance-item {
    padding: 32px 32px 40px 32px;
  }
  .assurance-item-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
  }
}
.benefit-list {
  margin-bottom: 0;
  flex-direction: column;
  display: flex;
}
.benefit-list .benefit-item {
  position: relative;
  max-width: 299px;
  padding-left: 72px;
}
.benefit-list .benefit-item-text {
  font-family: var(--bs-font-sans-serif);
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  color: #ffffff;
}
.benefit-list .benefit-item:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  display: block;
  width: 48px;
  height: 48px;
  background-position: center;
}
.benefit-list .benefit-item:nth-child(1) {
  max-width: 299px;
}
.benefit-list .benefit-item:nth-child(1):before {
  background: url(../images/benefits/benefit-icon-1.svg) center/contain no-repeat;
}
.benefit-list .benefit-item:nth-child(2) {
  max-width: 253px;
}
.benefit-list .benefit-item:nth-child(2):before {
  background: url(../images/benefits/benefit-icon-2.svg) center/contain no-repeat;
}
.benefit-list .benefit-item:nth-child(3) {
  max-width: 193px;
}
.benefit-list .benefit-item:nth-child(3):before {
  background: url(../images/benefits/benefit-icon-3.svg) center/contain no-repeat;
}
.benefit-list .benefit-item:nth-child(4) {
  max-width: 176px;
}
.benefit-list .benefit-item:nth-child(4):before {
  background: url(../images/benefits/benefit-icon-4.svg) center/contain no-repeat;
}
.benefit-list .benefit-item:last-child {
  margin-bottom: 0;
}
@media (max-width: 991.98px) {
  .benefit-list .benefit-item {
    margin-bottom: 24px;
  }
}
@media (min-width: 992px) {
  .benefit-list {
    justify-content: space-between;
    flex-direction: row;
  }
}

.breadcrumb-item {
  font-family: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-weight: 700;
}
.breadcrumb-item + .breadcrumb-item:before {
  float: none;
}
.breadcrumb-item a {
  text-decoration: none;
}
.breadcrumb-item.active {
  font-weight: 400;
}

.button {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 10px 20px;
  font-family: var(--bs-font-sans-serif);
  font-weight: 700;
  line-height: 20px;
  font-size: 1rem;
  text-align: center;
  text-transform: none;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: 0.2s;
}
@media (min-width: 992px) {
  .button-lg {
    padding: 14px 20px;
    font-size: 18px;
  }
}
.button-main {
  background-color: #ff9a26;
  color: #ffffff;
}
.button-main:hover {
  background-color: #fb7900;
  color: #ffffff;
}
.button-soft {
  background-color: #e9e8f5;
  color: #43347a;
}
.button-soft:hover {
  background-color: #d2cfe0;
  color: #43347a;
}

.counter {
  flex-direction: column;
  display: flex;
  margin-right: 24px;
}
@media (min-width: 1200px) {
  .counter {
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 0;
  }
}
.counter-amount {
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-weight: 800;
  font-size: 32px;
  line-height: 32px;
  letter-spacing: 0.25px;
  color: #ffffff;
}
@media (min-width: 992px) {
  .counter-amount {
    margin-right: 16px;
  }
}
@media (min-width: 1200px) {
  .counter-amount {
    font-size: 48px;
    line-height: 48px;
    letter-spacing: 0.75px;
  }
}
.counter-detail {
  display: flex;
  flex-direction: column;
}
.counter-title, .counter-subtitle {
  margin: 0;
  line-height: 24px;
  font-family: var(--bs-font-sans-serif);
}
.counter-title {
  font-weight: 700;
  font-size: 18px;
  color: #ffffff;
}
.counter-subtitle {
  font-weight: 400;
  font-size: 16px;
  color: #e0e0e0;
}

.feature-list {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1200px) {
  .feature-list {
    flex-direction: column;
    width: 100%;
  }
}

.feature-item {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 16px;
  padding-left: 60px;
  list-style: none;
  margin-top: 1rem;
}
@media (min-width: 1200px) {
  .feature-item {
    padding-left: 70px;
    margin-bottom: 0;
  }
}
.feature-item:before {
  position: absolute;
  justify-content: center;
  display: flex;
  content: "";
  left: 0;
  width: 48px;
  height: 48px;
}
@media (min-width: 1200px) {
  .feature-item:before {
    width: 56px;
    height: 56px;
  }
}
@media (min-width: 1200px) {
  .feature-item:nth-child(1) {
    margin-top: 0;
    margin-right: 24px;
  }
}
.feature-item-title {
  margin: 0;
  font-family: var(--bs-font-sans-serif);
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  color: #ffffff;
}
@media (min-width: 1200px) {
  .feature-item-title {
    font-size: 18px;
    line-height: 24px;
  }
}
.feature-item-text {
  font-family: var(--bs-font-sans-serif);
  font-size: 14px;
  line-height: 20px;
  margin-top: 4px;
  color: #ffffff;
}

.feature-list-services .feature-item:nth-child(1):before {
  background: url("../images/features/feature-1.svg") center/contain no-repeat;
}
.feature-list-services .feature-item:nth-child(2):before {
  background: url("../images/features/feature-2.svg") center/contain no-repeat;
}
.feature-list-services .feature-item:nth-child(3):before {
  background: url("../images/features/feature-4.svg") center/contain no-repeat;
}
.feature-list-services .feature-item:nth-child(4):before {
  background: url("../images/features/feature-5.svg") center/contain no-repeat;
}

.feature-list-types .feature-item:nth-child(1):before {
  background: url("../images/features/feature-1.svg") center/contain no-repeat;
}
.feature-list-types .feature-item:nth-child(2):before {
  background: url("../images/features/feature-3.svg") center/contain no-repeat;
}
.feature-list-types .feature-item:nth-child(3):before {
  background: url("../images/features/feature-4.svg") center/contain no-repeat;
}
.feature-list-types .feature-item:nth-child(4):before {
  background: url("../images/features/feature-5.svg") center/contain no-repeat;
}

.feature-list-ai {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px 32px;
}
@media (min-width: 768px) {
  .feature-list-ai {
    gap: 24px 40px;
  }
}
.feature-list-ai .feature-item {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  width: -moz-max-content;
  width: max-content;
  min-height: 48px;
  margin: 0;
  padding-left: 0;
}
@media (min-width: 992px) {
  .feature-list-ai .feature-item {
    width: 100%;
    max-width: 244px;
    min-height: 56px;
  }
}
.feature-list-ai .feature-item:before {
  position: static;
}
@media (min-width: 992px) {
  .feature-list-ai .feature-item:before {
    width: 56px;
    height: 56px;
  }
}
.feature-list-ai .feature-item:nth-child(1):before {
  background: url("../images/features/feature-1.svg") center/contain no-repeat;
}
.feature-list-ai .feature-item:nth-child(2):before {
  background: url("../images/features/feature-6.svg") center/contain no-repeat;
}
.feature-list-ai .feature-item:nth-child(3):before {
  background: url("../images/features/feature-7.svg") center/contain no-repeat;
}
@media (min-width: 992px) {
  .feature-list-ai .feature-item-title {
    max-width: 150px;
  }
}

.widget {
  position: relative;
  flex-direction: column;
  display: flex;
  width: 100%;
  background-color: #ffffff;
  max-width: 448px;
  height: auto;
  padding: 24px 16px;
  border-radius: 8px;
  box-shadow: 0 8px 24px 4px rgba(64, 44, 135, 0.1), 0 0 24px 2px rgba(143, 126, 206, 0.12), inset 0 0 2px rgba(64, 44, 135, 0.28);
}
@media (min-width: 992px) {
  .widget {
    padding: 24px 16px;
    margin-left: auto;
  }
}
.widget-name {
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-weight: 800;
  font-size: 22px;
  line-height: 24px;
  text-align: center;
  color: #212121;
  margin-bottom: 0.5rem;
}
@media (min-width: 992px) {
  .widget-name {
    line-height: 28px;
  }
}
.form-block {
  position: relative;
  width: 100%;
}
.form-block:not(:last-child) {
  margin-bottom: 20px;
}
.form-v-request .button, .form-v-contact .button {
  width: 100%;
}

.form-control {
  padding: 0.438rem 0.75rem;
}
@media (min-width: 992px) {
  .form-control {
    padding: 0.688rem 1rem;
  }
}

.form-select {
  padding: 0.438rem 2.25rem 0.438rem 0.75rem;
}
@media (min-width: 992px) {
  .form-select {
    padding: 0.688rem 2.25rem 0.688rem 0.75rem;
  }
}

.navbar .navbar-brand-image {
  display: block;
  width: 160px;
  height: 40px;
  background: url("../images/logo-black.svg") 50% 50%/cover no-repeat;
}
.navbar .navbar-toggler:focus {
  box-shadow: none;
}
.navbar .navbar-toggler-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}
.navbar .navbar-trigger {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
}
.navbar .navbar-trigger:hover {
  text-decoration: none;
}
.navbar .navbar-trigger:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: none;
}
.navbar .navbar-trigger-icon {
  display: inline-block;
  width: 16px;
  height: 21px;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}
.navbar .btn-task {
  background-color: #ff9a26;
  color: #ffffff;
}
.navbar .btn-task:hover {
  background-color: #fb7900;
}
.navbar .btn-sign {
  background-color: #e9e8f5;
  color: #43347a;
}
.navbar .btn-sign:hover {
  background-color: #d2cfe0;
}

@media (min-width: 576px) {
  .navbar-expand-sm {
    min-height: 80px;
  }
  .navbar-expand-sm .navbar-toggler,
.navbar-expand-sm .navbar-trigger {
    display: none;
  }
}
@media (min-width: 768px) {
  .navbar-expand-md {
    min-height: 80px;
  }
  .navbar-expand-md .navbar-toggler,
.navbar-expand-md .navbar-trigger {
    display: none;
  }
}
@media (min-width: 992px) {
  .navbar-expand-lg {
    min-height: 80px;
  }
  .navbar-expand-lg .navbar-toggler,
.navbar-expand-lg .navbar-trigger {
    display: none;
  }
}
@media (min-width: 1200px) {
  .navbar-expand-xl {
    min-height: 80px;
  }
  .navbar-expand-xl .navbar-toggler,
.navbar-expand-xl .navbar-trigger {
    display: none;
  }
}
@media (min-width: 1400px) {
  .navbar-expand-xxl {
    min-height: 80px;
  }
  .navbar-expand-xxl .navbar-toggler,
.navbar-expand-xxl .navbar-trigger {
    display: none;
  }
}
.navbar-expand {
  min-height: 80px;
}
.navbar-expand .navbar-toggler,
.navbar-expand .navbar-trigger {
  display: none;
}

.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23757575' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-light .navbar-trigger {
  color: #616161;
}
.navbar-light .navbar-trigger-icon {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M0 21C0 18.8783 0.842855 16.8434 2.34315 15.3431C3.84344 13.8429 5.87827 13 8 13C10.1217 13 12.1566 13.8429 13.6569 15.3431C15.1571 16.8434 16 18.8783 16 21H14C14 19.4087 13.3679 17.8826 12.2426 16.7574C11.1174 15.6321 9.5913 15 8 15C6.4087 15 4.88258 15.6321 3.75736 16.7574C2.63214 17.8826 2 19.4087 2 21H0ZM8 12C4.685 12 2 9.315 2 6C2 2.685 4.685 0 8 0C11.315 0 14 2.685 14 6C14 9.315 11.315 12 8 12ZM8 10C10.21 10 12 8.21 12 6C12 3.79 10.21 2 8 2C5.79 2 4 3.79 4 6C4 8.21 5.79 10 8 10Z' fill='%23757575'/%3e%3c/svg%3e");
}

.page-item {
  justify-content: center;
  align-items: center;
  display: flex;
}
.page-item .page-link {
  font-weight: 700;
}
.page-item .page-link svg {
  fill: #616161;
}
.page-item.active .page-link svg {
  fill: #ff9a26;
}
.page-item.active .page-link:after {
  position: absolute;
  content: "";
  width: 16px;
  left: calc(50% - 8px);
  top: 100%;
  bottom: 0;
  border: 1px solid #ff9a26;
}

.rating {
  display: flex;
}
.rating-star {
  margin-right: 6px;
}
.rating-star:before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
}
@media (min-width: 992px) {
  .rating-star:before {
    width: 20px;
    height: 20px;
  }
}
.rating-star:last-child {
  margin-right: 0;
}
.rating-star-fill::before {
  background: url("../images/stars/star-fill.svg") center/contain no-repeat;
}
.rating-star-none::before {
  background: url("../images/stars/star-none.svg") center/contain no-repeat;
}
.rating-star-half::before {
  background: url("../images/stars/star-half.svg") center/contain no-repeat;
}
.rating-number {
  font-weight: 700;
  margin-right: 0.5rem;
  margin-left: 1rem;
  color: #ffffff;
}
.rating-view {
  font-weight: 400;
  color: #d2cfe0;
}
.rating-number, .rating-view {
  font-family: var(--bs-font-sans-serif);
  font-size: 18px;
  line-height: 20px;
}
@media (min-width: 992px) {
  .rating-number, .rating-view {
    font-size: 20px;
    line-height: 24px;
  }
}

.rating-block {
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media (min-width: 1200px) {
  .rating-block {
    flex-direction: row;
  }
}
.rating-block-title {
  font-family: var(--bs-font-sans-serif);
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  color: #ffffff;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .rating-block-title {
    font-size: 20px;
    line-height: 24px;
    margin-right: 24px;
  }
}
@media (min-width: 1200px) {
  .rating-block-title {
    margin-bottom: 0;
  }
}

.rating-form {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
  width: 100%;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
}
.rating-form-name {
  font-family: var(--bs-font-sans-serif);
  font-weight: 400;
  font-size: 1rem;
  line-height: 24px;
  color: #212121;
  margin-bottom: 0.5rem;
}
@media (min-width: 992px) {
  .rating-form {
    width: initial;
    flex-direction: row;
    justify-content: initial;
    align-items: initial;
    margin-bottom: 0;
  }
  .rating-form-name {
    margin-right: 0.5rem;
    margin-bottom: 0;
  }
}
.rating-form.rating {
  align-items: center;
}
.rating-form-number {
  font-weight: 700;
}

.stn {
  position: relative;
  margin: 0 auto;
  padding: 48px 0;
  width: 100%;
}
@media (min-width: 1200px) {
  .stn {
    padding: 80px 0;
  }
}
.stn-wrap {
  position: relative;
  justify-content: center;
  flex-direction: column;
  display: flex;
}
.stn.bg-base-purple .stn-breadcrumb .breadcrumb-item, .stn.bg-base-purple .stn-breadcrumb .breadcrumb-item a, .stn.bg-dark-purple .stn-breadcrumb .breadcrumb-item, .stn.bg-dark-purple .stn-breadcrumb .breadcrumb-item a {
  color: #ffffff;
}
.stn.bg-base-purple .stn-breadcrumb .breadcrumb-item.active, .stn.bg-dark-purple .stn-breadcrumb .breadcrumb-item.active {
  color: #B3AFC9;
}
.stn.bg-base-purple .stn-title,
.stn.bg-base-purple .stn-description, .stn.bg-dark-purple .stn-title,
.stn.bg-dark-purple .stn-description {
  color: #ffffff;
}
.stn.bg-white .stn-breadcrumb .breadcrumb-item, .stn.bg-white .stn-breadcrumb .breadcrumb-item a, .stn.bg-light .stn-breadcrumb .breadcrumb-item, .stn.bg-light .stn-breadcrumb .breadcrumb-item a {
  color: #424242;
}
.stn.bg-white .stn-breadcrumb .breadcrumb-item.active, .stn.bg-light .stn-breadcrumb .breadcrumb-item.active {
  color: #757575;
}
.stn.bg-white .stn-title,
.stn.bg-white .stn-description, .stn.bg-light .stn-title,
.stn.bg-light .stn-description {
  color: #212121;
}
.stn-banner .stn-breadcrumb {
  position: absolute;
  width: 100%;
  top: -35px;
}
@media (min-width: 992px) {
  .stn-banner .stn-breadcrumb {
    top: -50px;
  }
}
@media (min-width: 992px) {
  .stn-banner .stn-title {
    font-size: 2.5rem;
    line-height: 2.5rem;
  }
}
@media (min-width: 1200px) {
  .stn-banner .stn-title {
    font-size: 3.5rem;
    line-height: 3.5rem;
    letter-spacing: 1px;
  }
}
.stn-banner .stn-description {
  margin-top: 8px;
  line-height: 20px;
}
@media (min-width: 1200px) {
  .stn-banner .stn-description {
    font-size: 1.125rem;
    line-height: 1.75rem;
    margin-top: 24px;
  }
}
.stn-banner .rating-star:before {
  width: 20px;
  height: 20px;
}
@media (min-width: 992px) {
  .stn-banner .rating-star:before {
    width: 24px;
    height: 24px;
  }
}
.stn-counter {
  padding: 40px 0;
  background-color: #43347a;
}
@media (max-width: 991.98px) {
  .stn-work {
    padding-bottom: 96px;
  }
}
@media (max-width: 991.98px) {
  .stn-assurance .button {
    width: 100%;
  }
  .stn-assurance .button:not(:last-child) {
    margin-bottom: 12px;
  }
}
@media (min-width: 992px) {
  .stn-assurance .button:last-child {
    margin-left: 24px;
  }
}
.stn-advantages {
  background-color: #574a89;
}
.stn-advantages .stn-title,
.stn-advantages .stn-description {
  color: #ffffff;
  text-align: center;
}
@media (max-width: 991.98px) {
  .stn-advantages .button {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .stn-advantages .stn-title,
.stn-advantages .stn-description {
    text-align: left;
  }
}
@media (max-width: 991.98px) {
  .stn-answers .button {
    width: 100%;
  }
}
.stn-seo, .stn-last-works, .stn-reviews {
  background-image: url("../images/shapes/shape-1.svg");
  background-repeat: no-repeat;
  background-position: top;
  background-size: auto;
}
@media (min-width: 1200px) {
  .stn-seo, .stn-last-works, .stn-reviews {
    background-size: 100%;
  }
}
.stn-seo .stn-title,
.stn-seo .stn-description, .stn-last-works .stn-title,
.stn-last-works .stn-description, .stn-reviews .stn-title,
.stn-reviews .stn-description {
  color: #ffffff;
}
.stn-last-works {
  background-position: center -75px;
}
.stn-error {
  padding-top: 0;
}
.stn-error .stn-title {
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-weight: 800;
  font-size: 142px;
  line-height: 142px;
  text-align: center;
  letter-spacing: 1px;
}
.stn-error .stn-description {
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-weight: 800;
  font-size: 24px;
  line-height: 24px;
}
@media (min-width: 992px) {
  .stn-error .stn-title {
    font-size: 560px;
    line-height: 560px;
    letter-spacing: 0;
  }
  .stn-error .stn-description {
    font-size: 40px;
    line-height: 40px;
    letter-spacing: 0.5px;
  }
}

.stn-head,
.stn-body,
.stn-foot {
  position: relative;
  width: 100%;
}

.stn-head ~ .stn-body {
  margin-top: 2rem;
}

.stn-sort {
  margin-top: 32px;
}
.stn-sort-body-active .stn-sort-list {
  max-height: 1120px;
}
.stn-sort-body-active .stn-sort-more-link::before {
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
}
.stn-sort-list {
  display: flex;
  flex-wrap: wrap;
  font-family: var(--bs-font-sans-serif);
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 16px;
  text-align: center;
  color: #43347a;
  overflow: hidden;
  max-height: 130px;
  margin-bottom: 16px;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 992px) {
  .stn-sort-list {
    padding: 10px;
    font-size: 1rem;
    line-height: 24px;
    margin-bottom: 24px;
    max-height: 145px;
  }
}
.stn-sort-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  height: 32px;
  background: #e9e8f5;
  border-radius: 30px;
  margin-right: 7px;
  margin-bottom: 16px;
  cursor: pointer;
  color: #43347a;
  text-decoration: none;
  transition: 0.2s linear;
}
.stn-sort-link:hover {
  background-color: #ffffff;
  box-shadow: 0 4px 12px 4px rgba(64, 44, 135, 0.1), 0 0 12px 2px rgba(143, 126, 206, 0.12), inset 0 0 2px rgba(64, 44, 135, 0.28);
  color: #43347a;
}
.stn-sort-link:focus {
  color: #43347a;
}
@media (min-width: 992px) {
  .stn-sort-link {
    padding: 12px 20px;
    height: 48px;
    margin-bottom: 24px;
    margin-right: 12px;
  }
}
.stn-sort-more {
  display: flex;
  align-items: center;
  transition: 0.2s linear;
}
.stn-sort-more-link {
  position: relative;
  background: transparent;
  font-family: var(--bs-font-sans-serif);
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #ff9a26;
  cursor: pointer;
  outline: none;
  border: 0;
  transition: 0.2s linear;
}
.stn-sort-more-link:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -20px;
  width: 13px;
  height: 8px;
  display: block;
  background-size: contain;
  background: url("../images/svg/reviews/arrow-box.svg") no-repeat center;
  transition: 0.2s linear;
}
@media (min-width: 992px) {
  .stn-sort-more-link {
    font-size: 16px;
    line-height: 20px;
  }
}
.stn-sort-more:hover .stn-sort-more-link {
  color: #e64100;
}
.stn-sort-more:hover .stn-sort-more-link:before {
  background: url("../images/svg/reviews/arrow-box-hover.svg");
}
@media (min-width: 992px) {
  .stn-sort-more {
    padding-left: 10px;
  }
}
@media (min-width: 992px) {
  .stn-sort {
    margin-top: 60px;
  }
}

.stn-foot {
  margin-top: 1.5rem;
}
@media (min-width: 1200px) {
  .stn-foot {
    margin-top: 2rem;
  }
}

.stn-title:not(:last-child) {
  margin-bottom: 3rem;
}
.stn-title, .stn-title.h1, .stn-title.h2 {
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-weight: 800;
  font-size: 1.75rem;
  line-height: 1.75rem;
}
@media (min-width: 992px) {
  .stn-title.h1 {
    font-size: 3rem;
    line-height: 3rem;
    letter-spacing: 0.75px;
  }
}
@media (min-width: 992px) {
  .stn-title.h2 {
    font-size: 2.5rem;
    line-height: 2.5rem;
    letter-spacing: 0.75px;
  }
}

.stn-description {
  font-family: var(--bs-font-sans-serif);
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 20px;
}
@media (min-width: 992px) {
  .stn-description {
    font-size: 18px;
    line-height: 1.75rem;
    margin-bottom: 2rem;
  }
}

.stn-image {
  display: block;
  margin: 24px auto 0 auto;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.sharer-menu .nav-item {
  margin: 0.25rem;
}
.sharer-menu .nav-link {
  display: block;
  padding: 0;
  width: 40px;
  height: 40px;
  overflow: hidden;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: 50%;
  border-radius: 50%;
  border-width: 0;
  transition: background 0.3s ease-in-out;
}
.sharer-menu .nav-link-fb {
  background-color: #1877f2;
  background-image: url(../images/socials/social_facebook_colored.svg);
  background-size: 12px 21px;
}
.sharer-menu .nav-link-vk {
  background-color: #0077FF;
  background-image: url(../images/socials/social_vkontakte_colored.svg);
  background-size: 21px 21px;
}
.sharer-menu .nav-link-tg {
  background-color: #2AABEE;
  background-image: url(../images/socials/social_telegram_colored.svg);
}
.sharer-menu .nav-link-ok {
  background-color: #ee8208;
  background-image: url(../images/socials/social_odnoklassniki_colored.svg);
  background-size: 12px 21px;
}
.sharer-menu .nav-link-vb {
  background-color: #665CAC;
  background-image: url(../images/socials/social_viber_colored.svg);
}
.sharer-menu .nav-link-wa {
  background-color: #128c7e;
  background-image: url(../images/socials/social_whatsapp_colored.svg);
  background-size: 19px 23px;
}
@media (min-width: 992px) {
  .sharer-menu .nav-item:first-child {
    margin-left: 0;
  }
}

.work-slider .swiper-widget-col:nth-child(1), .work-slider .swiper-widget-col:nth-child(2) {
  width: 50%;
}
.work-slider .swiper-widget-col:nth-child(1) {
  text-align: left;
}
.work-slider .swiper-widget-col:nth-child(2) {
  text-align: right;
}
@media (min-width: 992px) {
  .work-slider .swiper-widget-col:nth-child(1), .work-slider .swiper-widget-col:nth-child(2), .work-slider .swiper-widget-col:nth-child(3) {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .work-slider .swiper-widget-col:nth-child(1) {
    order: 2;
  }
  .work-slider .swiper-widget-col:nth-child(2) {
    order: 3;
  }
  .work-slider .swiper-widget-col:nth-child(3) {
    order: 1;
  }
}
@media (max-width: 991.98px) {
  .work-slider .swiper-widget .swiper-pagination {
    text-align: left;
    left: 20px;
  }
}

.articles-slider .swiper-wrapper {
  align-self: stretch;
}
.articles-slider .swiper-wrapper .swiper-slide {
  height: auto;
}
@media (max-width: 991.98px) {
  .articles-slider .swiper-slide {
    width: 70%;
  }
}
.articles-slider .swiper-widget-col:nth-child(1), .articles-slider .swiper-widget-col:nth-child(2) {
  width: 50%;
}
.articles-slider .swiper-widget-col:nth-child(1) {
  text-align: left;
}
.articles-slider .swiper-widget-col:nth-child(2) {
  text-align: right;
}
@media (min-width: 992px) {
  .articles-slider .swiper-widget-col:nth-child(1), .articles-slider .swiper-widget-col:nth-child(2), .articles-slider .swiper-widget-col:nth-child(3) {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .articles-slider .swiper-widget-col:nth-child(1) {
    order: 2;
  }
  .articles-slider .swiper-widget-col:nth-child(2) {
    order: 3;
  }
  .articles-slider .swiper-widget-col:nth-child(3) {
    order: 1;
  }
}
@media (max-width: 991.98px) {
  .articles-slider .swiper-widget .swiper-pagination {
    text-align: left;
    left: 15px;
  }
}

.worktypes-slider .swiper-wrapper {
  align-self: stretch;
}
.worktypes-slider .swiper-wrapper .swiper-slide {
  height: auto;
}
.worktypes-slider .swiper-widget-col:nth-child(1), .worktypes-slider .swiper-widget-col:nth-child(2) {
  width: 50%;
}
.worktypes-slider .swiper-widget-col:nth-child(1) {
  text-align: left;
}
.worktypes-slider .swiper-widget-col:nth-child(2) {
  text-align: right;
}
@media (min-width: 992px) {
  .worktypes-slider .swiper-widget-col:nth-child(1), .worktypes-slider .swiper-widget-col:nth-child(2), .worktypes-slider .swiper-widget-col:nth-child(3) {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .worktypes-slider .swiper-widget-col:nth-child(1) {
    order: 2;
  }
  .worktypes-slider .swiper-widget-col:nth-child(2) {
    order: 3;
  }
  .worktypes-slider .swiper-widget-col:nth-child(3) {
    order: 1;
  }
}
@media (max-width: 991.98px) {
  .worktypes-slider .swiper-widget .swiper-pagination {
    text-align: left;
    left: 20px;
  }
}
@media (max-width: 991.98px) {
  .worktypes-slider .swiper-slide {
    width: 70%;
  }
}
@media (min-width: 992px) {
  .worktypes-slider {
    margin: 0 -12px;
    padding: 0 12px;
    overflow: auto;
  }
  .worktypes-slider .swiper-wrapper {
    width: auto;
    flex-wrap: wrap;
    margin-left: -12px;
    margin-right: -12px;
  }
  .worktypes-slider .swiper-wrapper .swiper-slide {
    flex: 0 0 auto;
    width: 50%;
    height: 50%;
    padding: 12px;
  }
  .worktypes-slider .swiper-widget {
    display: none;
  }
}

.assurance-slider .swiper-wrapper {
  align-self: stretch;
}
.assurance-slider .swiper-wrapper .swiper-slide {
  height: auto;
}
.assurance-slider .swiper-widget-col:nth-child(1), .assurance-slider .swiper-widget-col:nth-child(2) {
  width: 50%;
}
.assurance-slider .swiper-widget-col:nth-child(1) {
  text-align: left;
}
.assurance-slider .swiper-widget-col:nth-child(2) {
  text-align: right;
}
@media (min-width: 992px) {
  .assurance-slider .swiper-widget-col:nth-child(1), .assurance-slider .swiper-widget-col:nth-child(2), .assurance-slider .swiper-widget-col:nth-child(3) {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .assurance-slider .swiper-widget-col:nth-child(1) {
    order: 2;
  }
  .assurance-slider .swiper-widget-col:nth-child(2) {
    order: 3;
  }
  .assurance-slider .swiper-widget-col:nth-child(3) {
    order: 1;
  }
}
@media (max-width: 991.98px) {
  .assurance-slider .swiper-widget .swiper-pagination {
    text-align: left;
    left: 20px;
  }
}
@media (max-width: 991.98px) {
  .assurance-slider .swiper-slide {
    width: 70%;
  }
}
@media (min-width: 992px) {
  .assurance-slider {
    margin: 0 -12px;
    padding: 0 12px;
    overflow: auto;
  }
  .assurance-slider .swiper-wrapper {
    width: auto;
    flex-wrap: wrap;
    margin-left: -12px;
    margin-right: -12px;
  }
  .assurance-slider .swiper-wrapper .swiper-slide {
    flex: 0 0 auto;
    width: 50%;
    height: 50%;
    padding: 12px;
  }
  .assurance-slider .swiper-widget {
    display: none;
  }
}

.services-slider .swiper-wrapper,
.subjects-slider .swiper-wrapper,
.themes-slider .swiper-wrapper {
  align-self: stretch;
}
.services-slider .swiper-wrapper .swiper-slide,
.subjects-slider .swiper-wrapper .swiper-slide,
.themes-slider .swiper-wrapper .swiper-slide {
  width: auto;
  height: auto;
}
.services-slider .swiper-widget-col:nth-child(1), .services-slider .swiper-widget-col:nth-child(2),
.subjects-slider .swiper-widget-col:nth-child(1),
.subjects-slider .swiper-widget-col:nth-child(2),
.themes-slider .swiper-widget-col:nth-child(1),
.themes-slider .swiper-widget-col:nth-child(2) {
  width: 50%;
}
.services-slider .swiper-widget-col:nth-child(1),
.subjects-slider .swiper-widget-col:nth-child(1),
.themes-slider .swiper-widget-col:nth-child(1) {
  text-align: left;
}
.services-slider .swiper-widget-col:nth-child(2),
.subjects-slider .swiper-widget-col:nth-child(2),
.themes-slider .swiper-widget-col:nth-child(2) {
  text-align: right;
}
@media (min-width: 992px) {
  .services-slider .swiper-widget-col:nth-child(1), .services-slider .swiper-widget-col:nth-child(2), .services-slider .swiper-widget-col:nth-child(3),
.subjects-slider .swiper-widget-col:nth-child(1),
.subjects-slider .swiper-widget-col:nth-child(2),
.subjects-slider .swiper-widget-col:nth-child(3),
.themes-slider .swiper-widget-col:nth-child(1),
.themes-slider .swiper-widget-col:nth-child(2),
.themes-slider .swiper-widget-col:nth-child(3) {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .services-slider .swiper-widget-col:nth-child(1),
.subjects-slider .swiper-widget-col:nth-child(1),
.themes-slider .swiper-widget-col:nth-child(1) {
    order: 2;
  }
  .services-slider .swiper-widget-col:nth-child(2),
.subjects-slider .swiper-widget-col:nth-child(2),
.themes-slider .swiper-widget-col:nth-child(2) {
    order: 3;
  }
  .services-slider .swiper-widget-col:nth-child(3),
.subjects-slider .swiper-widget-col:nth-child(3),
.themes-slider .swiper-widget-col:nth-child(3) {
    order: 1;
  }
}
@media (max-width: 991.98px) {
  .services-slider .swiper-widget .swiper-pagination,
.subjects-slider .swiper-widget .swiper-pagination,
.themes-slider .swiper-widget .swiper-pagination {
    text-align: left;
    left: 20px;
  }
}

.last-works-slider .swiper-widget-col:nth-child(1), .last-works-slider .swiper-widget-col:nth-child(2),
.reviews-slider .swiper-widget-col:nth-child(1),
.reviews-slider .swiper-widget-col:nth-child(2) {
  width: 50%;
}
.last-works-slider .swiper-widget-col:nth-child(1),
.reviews-slider .swiper-widget-col:nth-child(1) {
  text-align: left;
}
.last-works-slider .swiper-widget-col:nth-child(2),
.reviews-slider .swiper-widget-col:nth-child(2) {
  text-align: right;
}
@media (min-width: 992px) {
  .last-works-slider .swiper-widget-col:nth-child(1), .last-works-slider .swiper-widget-col:nth-child(2), .last-works-slider .swiper-widget-col:nth-child(3),
.reviews-slider .swiper-widget-col:nth-child(1),
.reviews-slider .swiper-widget-col:nth-child(2),
.reviews-slider .swiper-widget-col:nth-child(3) {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .last-works-slider .swiper-widget-col:nth-child(1),
.reviews-slider .swiper-widget-col:nth-child(1) {
    order: 2;
  }
  .last-works-slider .swiper-widget-col:nth-child(2),
.reviews-slider .swiper-widget-col:nth-child(2) {
    order: 3;
  }
  .last-works-slider .swiper-widget-col:nth-child(3),
.reviews-slider .swiper-widget-col:nth-child(3) {
    order: 1;
  }
}
@media (max-width: 991.98px) {
  .last-works-slider .swiper-widget .swiper-pagination,
.reviews-slider .swiper-widget .swiper-pagination {
    text-align: left;
    left: 20px;
  }
}

.social-menu {
  margin-top: 12px;
}
.social-menu .nav-item {
  margin: 0.25rem;
}
.social-menu .nav-link {
  display: block;
  padding: 0;
  width: 40px;
  height: 40px;
  overflow: hidden;
  background-color: #43347a;
  background-repeat: no-repeat;
  background-position: 50%;
  border-radius: 50%;
  transition: background 0.3s ease-in-out;
}
.social-menu .nav-link-fb {
  background-image: url(../images/socials/social_facebook.svg);
  background-size: 12px 21px;
}
.social-menu .nav-link-vk {
  background-image: url(../images/socials/social_vkontakte.svg);
  background-size: 21px 21px;
}
.social-menu .nav-link-tg {
  background-image: url(../images/socials/social_telegram.svg);
}
.social-menu .nav-link-vb {
  background-image: url(../images/socials/social_viber.svg);
}
.social-menu .nav-link-wa {
  background-image: url(../images/socials/social_whatsapp.svg);
  background-size: 19px 23px;
}
.social-menu .nav-link-yt {
  background-image: url(../images/socials/social_youtube.svg);
}
.social-menu .nav-link-inst {
  background-image: url(../images/socials/social_instagram.svg);
}
@media (min-width: 992px) {
  .social-menu .nav-item:first-child {
    margin-left: 0;
  }
}

.stages {
  position: relative;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .stages {
    flex-direction: column;
    align-items: center;
    display: flex;
  }
}
.stages-figure {
  position: static;
  margin: 0 auto;
  background-repeat: no-repeat;
  background-size: contain;
}
@media (min-width: 992px) {
  .stages-figure {
    position: absolute;
    transform: translateX(-50%);
  }
}
.stages-figure.stages-figure-1 {
  width: 288px;
  height: 379px;
}
@media (min-width: 992px) {
  .stages-figure.stages-figure-1 {
    width: 396px;
    height: 520px;
    top: 0;
    left: 50%;
  }
}
.stages-figure.stages-figure-2 {
  background-image: url("../images/figures/figure-2.svg");
  width: 260px;
  height: 264px;
}
@media (min-width: 992px) {
  .stages-figure.stages-figure-2 {
    width: 512px;
    height: 520px;
    top: 70px;
    left: 42%;
  }
}
.stages-figure.stages-figure-4 {
  background-image: url("../images/figures/figure-4.svg");
  width: 288px;
  height: 323px;
  margin-top: 24px;
}
@media (min-width: 992px) {
  .stages-figure.stages-figure-4 {
    width: 414px;
    height: 464px;
    top: 64px;
    left: 50%;
  }
}
.stages-figure.stages-figure-5 {
  background-image: url("../images/figures/figure-5.svg");
  width: 288px;
  height: 323px;
}
@media (min-width: 992px) {
  .stages-figure.stages-figure-5 {
    width: 329px;
    height: 520px;
    top: 0;
    left: 50%;
  }
}
.stages-detail {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
  margin-top: 24px;
}
@media (max-width: 991.98px) {
  .stages-detail {
    margin-left: auto;
    margin-right: auto;
    max-width: 640px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .stages-detail {
    max-width: 768px;
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
  }
}
@media (min-width: 1200px) {
  .stages-detail {
    margin-top: 46px;
  }
}
@media (min-width: 992px) {
  .stages-detail .stages-detail-col {
    display: flex;
    width: 100%;
    justify-content: space-between;
  }
  .stages-detail .stages-detail-col:not(:last-child) {
    margin-bottom: 108px;
  }
}
.stages-action {
  text-align: center;
}
.stages-item {
  margin-bottom: 24px;
  flex-direction: column;
  display: flex;
  width: 100%;
}
@media (min-width: 992px) {
  .stages-item {
    margin-bottom: 0;
  }
}
@media (min-width: 992px) {
  .stages-item-sm {
    width: 100%;
    max-width: 312px;
  }
}
@media (min-width: 992px) {
  .stages-item-lg {
    width: 100%;
    max-width: 352px;
  }
}
.stages-item-box {
  width: 100%;
}
.stages-item-col {
  justify-content: flex-start;
  align-items: center;
  display: flex;
  width: 100%;
  margin-bottom: 8px;
}
@media (min-width: 992px) {
  .stages-item-col {
    margin-bottom: 24px;
  }
}
.stages-item-number {
  position: relative;
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  padding: 2px 2px 2px 0;
  margin-right: 8px;
  font-style: normal;
  font-weight: 800;
  font-size: 44px;
  line-height: 44px;
  color: #574a89;
}
@media (min-width: 992px) {
  .stages-item-number {
    margin-right: 11px;
  }
  .stages-item-number::before {
    content: "";
    position: absolute;
    top: -30px;
    left: -45px;
    width: 172px;
    height: 172px;
    border-radius: 50%;
    display: flex;
    background: linear-gradient(180deg, rgba(87, 74, 137, 0.1) 0%, rgba(87, 74, 137, 0) 100%);
  }
}
@media (min-width: 1200px) {
  .stages-item-number {
    font-size: 48px;
    line-height: 48px;
  }
}
.stages-item-title {
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-weight: bold;
  font-size: 20px;
  line-height: 24px;
  color: #212121;
  margin-bottom: 0;
}
@media (min-width: 1200px) {
  .stages-item-title {
    font-size: 24px;
    max-width: 100%;
  }
}
.stages-item-text {
  font-family: var(--bs-font-sans-serif);
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  color: #616161;
  margin-bottom: 0;
}
@media (min-width: 1200px) {
  .stages-item-text {
    font-size: 16px;
    line-height: 24px;
  }
}
.stages-item-link {
  display: block;
  margin-top: 16px;
  font-family: var(--bs-font-sans-serif);
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  color: #574a89;
  transition: 0.2s linear;
}
.stages-item-link:hover, .stages-item-link:focus {
  color: #928bb1;
}
.stages-item-nav {
  display: flex;
  margin-top: 20px;
  padding: 0;
}
.stages-item-nav-item {
  display: block;
  width: 55px;
  height: 34px;
  margin-right: 4px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media (min-width: 992px) {
  .stages-item-nav-item {
    width: 64px;
    height: 40px;
    margin-right: 8px;
  }
}
.stages-item-nav-item:nth-child(1) {
  background: url("../images/payments/master-card.svg");
}
.stages-item-nav-item:nth-child(2) {
  background: url("../images/payments/visa.svg");
}
.stages-item-nav-item:nth-child(3) {
  background: url("../images/payments/sbp.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.stages-item-nav-item:nth-child(4) {
  background: url("../images/payments/mir.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.stages-disabled {
  display: none;
}
@media (min-width: 1200px) {
  .stages-index .stages-detail {
    margin-bottom: 130px;
  }
}
@media (min-width: 1200px) {
  .stages-worktype .stages-detail {
    margin-bottom: 20px;
  }
}
@media (min-width: 1200px) {
  .stages-support .stages-detail {
    margin-top: 70px;
    margin-bottom: 86px;
  }
}

.subjects-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.subjects-list .subjects-list-item {
  margin-bottom: 0.5rem;
}
.subjects-list .subjects-list-link {
  font-family: var(--bs-font-sans-serif);
  font-weight: 700;
  font-size: 1rem;
  line-height: 20px;
  color: #424242;
}
@media (min-width: 992px) {
  .subjects-list .subjects-list-link {
    font-size: 18px;
    line-height: 24px;
  }
}

:root {
  --theme-text-input: #484c52;
  --theme-input-border: rgba(72, 76, 82, .15);
  --theme-input-background: #f8f8f8;
}

.search-experts {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 24px 30px;
}
.search-experts__list {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}
.search-experts__item {
  margin: 0 0 24px;
}
.search-experts__item:last-child {
  margin: 0;
}
.search-experts__button {
  display: block;
  width: 100%;
  min-height: 50px;
  color: #fff;
  box-shadow: 0 5px 20px 0 rgba(129, 164, 70, 0.54);
  background-color: #76bc00;
  margin: 24px 0 0;
}

.select {
  position: relative;
  width: 100%;
}
.select.is-active .select__body {
  display: block;
}
.select__item, .select__input {
  width: 100%;
  min-height: 44px;
  height: 44px;
  margin: 0;
  font-weight: 400;
  font-size: 14px;
  color: var(--theme-text-input);
  border: 1px solid var(--theme-input-border);
  border-radius: 6px;
  background-color: var(--theme-input-background);
  cursor: pointer;
  transition: all 0.3s;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.select__item:hover, .select__item:focus, .select__input:hover, .select__input:focus {
  outline: none;
  box-shadow: 0 2px 6px rgba(72, 76, 82, 0.1);
  background-color: #fff;
}
.select__input {
  position: relative;
  padding: 0 16px;
  font-weight: 500;
  line-height: normal;
  text-align: left;
  z-index: 20;
}
.select input::-moz-placeholder {
  font-size: 13px;
  color: var(--theme-text-input);
}
.select input:-ms-input-placeholder {
  font-size: 13px;
  color: var(--theme-text-input);
}
.select input::placeholder {
  font-size: 13px;
  color: var(--theme-text-input);
}
.select__item {
  padding: 0 40px 0 16px;
  background-image: url("../images/experts/arrow.svg");
  background-size: 15px auto;
  background-position: calc(100% - 12px) center;
  background-repeat: no-repeat;
}
.select__body {
  display: none;
  position: absolute;
  height: auto;
  max-height: 200px;
  width: 100%;
  background-color: #fff;
  border-radius: 0 0 6px 6px;
  border: 1px solid var(--theme-input-border);
  border-top: none;
  padding-top: 15px;
  transform: translateY(-5px);
  z-index: 10;
  overflow: auto;
}
.select__body > div {
  color: var(--theme-text-input);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 0;
  text-align: center;
}
.select__body > div:hover {
  background: var(--theme-input-background);
  cursor: pointer;
}

.app-content {
  overflow: hidden;
}

.header {
  position: sticky;
  width: 100%;
  top: 0;
  z-index: 1020;
}

.footer .footer-above {
  padding: 48px 0;
  background-color: #574a89;
}
@media (min-width: 992px) {
  .footer .footer-above {
    padding: 80px 0;
  }
}
.footer .footer-above .footer-menu-nav {
  margin-top: 16px;
}
.footer .footer-below {
  background-color: #43347a;
  padding: 30px 0;
}
.footer .footer-below .footer-menu-nav {
  justify-content: center;
}
@media (min-width: 992px) {
  .footer .footer-below .footer-menu-nav {
    justify-content: flex-end;
  }
}
.footer .footer-apps {
  display: flex;
  margin-top: 1rem;
}
.footer .footer-apps a {
  margin-right: 1rem;
}
.footer .footer-logo-img {
  display: block;
  width: 160px;
  height: 48px;
  margin-bottom: 14px;
  background: center/contain no-repeat;
}
.footer .footer-logo-sub {
  color: #fff;
  font-family: var(--bs-font-sans-serif);
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 16px;
  margin-bottom: 40px;
}
.footer .footer-menu .footer-menu-sub {
  color: #fff;
  font-family: var(--bs-font-sans-serif);
  font-weight: 700;
  line-height: 20px;
}
@media (min-width: 992px) {
  .footer .footer-menu .footer-menu-sub {
    padding: 0;
  }
}
.footer .footer-menu .footer-menu-nav .nav-link {
  position: relative;
  padding: 0.25rem 0;
  color: #d2cfe0;
  transition: 0.2s linear;
}
.footer .footer-menu .footer-menu-nav .nav-link-mail {
  align-items: center;
  display: flex;
}
.footer .footer-menu .footer-menu-nav .nav-link-mail:before {
  position: relative;
  content: "";
  width: 24px;
  height: 24px;
  top: 0;
  left: 0;
  display: block;
  margin-right: 16px;
  background: url("../images/icons/mail-icon.svg") center/contain no-repeat;
}
.footer .footer-menu .footer-menu-nav .nav-link-phone {
  align-items: center;
  display: flex;
}
.footer .footer-menu .footer-menu-nav .nav-link-phone:before {
  position: relative;
  content: "";
  width: 24px;
  height: 24px;
  top: 0;
  left: 0;
  display: block;
  margin-right: 16px;
  background: url("../images/icons/phone-icon.svg") center/contain no-repeat;
}
.footer .footer-menu .footer-menu-nav .nav-link:hover, .footer .footer-menu .footer-menu-nav .nav-link:focus {
  color: #ffffff;
}
.footer .footer-menu .social-menu {
  margin-top: 12px;
}
.footer .footer-menu.footer-menu-term .footer-menu-nav {
  margin-bottom: 24px;
}
.footer .footer-menu.footer-menu-term .footer-menu-nav .nav-link {
  text-align: center;
  font-size: 0.875rem;
}
@media (max-width: 991.98px) {
  .footer .footer-menu.footer-menu-term .footer-menu-nav {
    flex-direction: column;
  }
}
@media (min-width: 992px) {
  .footer .footer-menu.footer-menu-term .footer-menu-nav {
    margin-bottom: 0;
  }
  .footer .footer-menu.footer-menu-term .footer-menu-nav .nav-item:not(:last-child) .nav-link {
    margin-right: 1rem;
  }
  .footer .footer-menu.footer-menu-term .footer-menu-nav .nav-link {
    padding: 0;
    font-size: 0.875rem;
  }
}
.footer .footer-pay {
  margin-bottom: 1rem;
}
.footer .footer-pay-sub {
  font-family: var(--bs-font-sans-serif);
  font-weight: 700;
  line-height: 24px;
  margin-bottom: 16px;
  color: #fff;
}
.footer .footer-pay-nav {
  display: flex;
}
.footer .footer-pay-item {
  width: 48px;
  height: 30px;
  margin-right: 8px;
}
.footer .footer-pay-item:last-child {
  margin-right: 0;
}
.footer .footer-pay-item-visa {
  background: center/contain no-repeat;
}
.footer .footer-pay-item-masterCard {
  background: center/contain no-repeat;
}
.footer .footer-pay-item-qiwi {
  background: center/contain no-repeat;
}
.footer .footer-pay-item-yandex {
  background: center/contain no-repeat;
}
.footer .footer-copy-text {
  text-align: center;
  font-family: var(--bs-font-sans-serif);
  font-weight: 400;
  line-height: 20px;
  color: #d2cfe0;
  margin: 0;
}
@media (min-width: 992px) {
  .footer .footer-copy-text {
    text-align: left;
  }
}

.expert-card__author {
  margin-bottom: 24px;
}
@media (min-width: 992px) {
  .expert-card__content {
    display: grid;
    grid-row-gap: 0;
    grid-column-gap: 96px;
    grid-template-columns: 350px 1fr;
  }
}
.expert-card__content-title {
  margin: 0 0 16px;
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  color: #424242;
}
@media (min-width: 992px) {
  .expert-card__content-title {
    margin: 0 0 32px;
    font-size: 20px;
  }
}

.author {
  display: flex;
  align-items: center;
}
.author__image {
  margin: 0 16px 0 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}
@media (min-width: 992px) {
  .author__image {
    margin: 0 32px 0 0;
    width: 104px;
    height: 104px;
  }
}
.author__image img {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.author__name {
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  color: #424242;
}
@media (min-width: 992px) {
  .author__name {
    font-size: 24px;
    line-height: 28px;
  }
}

.achievements {
  margin: 0 0 40px;
}
@media (min-width: 992px) {
  .achievements {
    margin: 0;
  }
}
.achievements__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.achievements__list-item {
  position: relative;
  background: #574A89;
  box-shadow: 0px 8px 24px 4px rgba(64, 44, 135, 0.1), 0px 0px 24px 2px rgba(143, 126, 206, 0.12), inset 0px 0px 2px rgba(64, 44, 135, 0.28);
  border-radius: 8px;
  padding: 16px;
  margin: 0 0 8px;
}
@media (min-width: 992px) {
  .achievements__list-item {
    padding: 24px;
    margin: 0 0 16px;
  }
}
.achievements__list-item:last-child {
  margin: 0;
}
.achievements__list-item::before {
  content: "";
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: block;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-position: center;
}
@media (min-width: 768px) {
  .achievements__list-item::before {
    width: 56px;
    height: 56px;
    right: 24px;
  }
}
.achievements__list-item:nth-child(1)::before {
  background-image: url("../images/completed-work/icon-1.svg");
}
.achievements__list-item:nth-child(2)::before {
  background-image: url("../images/completed-work/icon-2.svg");
}
.achievements__list-item:nth-child(3)::before {
  background-image: url("../images/completed-work/icon-3.svg");
}
.achievements__item-title {
  margin: 0 0 8px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
}
@media (min-width: 992px) {
  .achievements__item-title {
    font-size: 18px;
    line-height: 28px;
  }
}
.achievements__item-quantity {
  margin: 0;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 24px;
  line-height: 24px;
  color: #FFFFFF;
}
@media (min-width: 992px) {
  .achievements__item-quantity {
    font-size: 28px;
    line-height: 28px;
  }
}

:root {
  --font-title: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --default: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-areas: "tab-1 tab-2" "content-1 content-1" "content-2 content-2";
}
.tabs__label {
  width: 100%;
  min-height: 82px;
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background: #E9E8F5;
  font-family: var(--default);
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
  color: #43347A;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out;
  cursor: pointer;
  border-radius: 16px 16px 0px 0px;
  padding: 23px;
  box-shadow: inset 3px 29px 51px -25px rgba(173, 173, 210, 0.62);
}
@media (min-width: 768px) {
  .tabs__label {
    min-height: initial;
    font-size: 16px;
    line-height: 20px;
    padding: 16px 30px;
  }
}
.tabs__label:nth-child(1) {
  grid-area: tab-1;
}
.tabs__label:nth-child(2) {
  grid-area: tab-2;
}
.tabs__content {
  display: none;
  padding: 16px;
  font-size: 16px;
  border: 1px solid #e0e0e0;
}
@media (min-width: 992px) {
  .tabs__content {
    padding: 24px 32px;
  }
}
.tabs #content-1 {
  grid-area: content-1;
}
.tabs #content-2 {
  grid-area: content-2;
}

#tab-btn-1:checked ~ #content-1,
#tab-btn-2:checked ~ #content-2 {
  display: block;
  background: #FFFFFF;
  border: none;
  border-radius: 0px 0px 16px 16px;
  box-shadow: 0px 12px 32px 4px rgba(35, 21, 86, 0.16), 0px 0px 32px 4px rgba(143, 126, 206, 0.12);
}

.tabs > input[type=radio]:checked + label {
  background: #FFFFFF;
  border-bottom: none;
  box-shadow: -2px -31px 58px -21px rgba(67, 52, 122, 0.41);
}

.tab-work__list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.tab-work__list-item {
  padding: 15px 0 0;
  margin: 0;
}
@media (min-width: 992px) {
  .tab-work__list-item {
    padding: 36px 0 0;
  }
}
.tab-work__list-item::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #E0E0E0;
  position: relative;
  top: 9px;
}
@media (min-width: 992px) {
  .tab-work__list-item::after {
    top: 18px;
  }
}
.tab-work__list-item:first-child {
  padding: 0;
}
.tab-work__list-item:last-child::after {
  content: none;
}
.tab-work__title {
  margin: 0 0 16px;
  font-family: var(--default);
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  color: #424242;
}
@media (min-width: 992px) {
  .tab-work__title {
    font-size: 20px;
  }
}
.tab-work__subtitle {
  margin: 0;
}

.tab-review {
  padding-top: 24px;
}
@media (min-width: 992px) {
  .tab-review {
    padding-top: 32px;
  }
}
.tab-review__list {
  padding: 0;
  margin: 0 0 24px;
  list-style: none;
}
.tab-review__list-item {
  padding: 32px 0 0;
  margin: 0;
}
@media (min-width: 992px) {
  .tab-review__list-item {
    padding: 42px 0 0;
  }
}
.tab-review__list-item::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #E0E0E0;
  position: relative;
  top: 9px;
}
@media (min-width: 992px) {
  .tab-review__list-item::after {
    top: 18px;
  }
}
.tab-review__list-item:first-child {
  padding: 0;
}
.tab-review__list-item:last-child::after {
  content: none;
}
.tab-review__grid-container {
  display: block;
}
@media (min-width: 992px) {
  .tab-review__grid-container {
    display: grid;
    grid-row-gap: 0;
    grid-column-gap: 32px;
    grid-template-columns: 234px 1fr;
  }
}
.tab-review__footer {
  display: flex;
  justify-content: center;
}

.user-review {
  display: flex;
  margin: 0 0 24px;
}
@media (min-width: 992px) {
  .user-review {
    margin: 0;
  }
}
.user-review__image {
  margin: 0 24px 0 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}
@media (min-width: 992px) {
  .user-review__image {
    width: 56px;
    height: 56px;
  }
}
.user-review__image img {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.user-description__header {
  font-family: var(--default);
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
  color: #43347A;
  margin: 0 0 8px;
}
.user-description__rating {
  margin: 0 0 8px;
}
@media (min-width: 992px) {
  .user-description__rating {
    margin: 0 0 16px;
  }
}
.user-description .rating .rating-star::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
}
@media (min-width: 992px) {
  .user-description .rating .rating-star::before {
    width: 20px;
    height: 20px;
  }
}
.user-description__footer {
  font-family: var(--default);
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #757575;
}
@media (min-width: 992px) {
  .user-description__footer {
    font-size: 16px;
    line-height: 20px;
  }
}

.review-content__title {
  font-family: var(--default);
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  color: #424242;
  margin: 0 0 16px;
}
.review-content__subtitle {
  font-family: var(--default);
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #212121;
}
@media (min-width: 992px) {
  .review-content__subtitle {
    font-size: 16px;
    line-height: 24px;
  }
}

.about-head-image {
  width: 288px;
  height: 272px;
  display: block;
  background: url("../images/banners/about-banner-image.svg") no-repeat center;
  background-size: contain;
  margin: 24px auto 0 auto;
}
@media (min-width: 992px) {
  .about-head-image {
    width: 393px;
    height: 464px;
    margin-left: auto;
    margin-right: auto;
  }
}

.blog-head .stn-title {
  font-size: 28px;
  line-height: 28px;
}
@media (min-width: 992px) {
  .blog-head .stn-title {
    font-size: 40px;
    line-height: 40px;
  }
}

.blog-body .blog-row {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 992px) {
  .blog-body .blog-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
  }
}
.blog-body .blog-row .blog-col:nth-child(1) {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
  order: 1;
}
.blog-body .blog-row .blog-col:nth-child(2) {
  align-self: stretch;
  word-break: 100%;
  order: 2;
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .blog-body .blog-row .blog-col:nth-child(1) {
    width: 100%;
    margin-bottom: 0;
    order: initial;
  }
  .blog-body .blog-row .blog-col:nth-child(2) {
    order: initial;
    margin-bottom: 32px;
    padding-bottom: initial;
    flex-shrink: 0;
    width: 288px;
  }
}
.blog-body .post {
  position: relative;
  flex-direction: column;
  display: flex;
  width: 100%;
}
.blog-body .post-head {
  position: relative;
  overflow: hidden;
  width: 100%;
  justify-content: flex-end;
  flex-direction: column;
  display: flex;
  padding: 10px;
  border-radius: 8px;
  background-color: #e9e8f5;
  background-repeat: no-repeat;
  background-position: center;
}
.blog-body .post-head-sort {
  flex-wrap: wrap;
  display: flex;
}
.blog-body .post-head-sort-link {
  font-family: var(--bs-font-sans-serif);
  font-weight: 700;
  font-size: 12px;
  line-height: 18px;
  color: #ffffff;
  width: auto;
  background: #574a89;
  border-radius: 20px;
  display: block;
  margin-right: 16px;
  margin-bottom: 8px;
  padding: 7px 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: 0.2s linear;
}
.blog-body .post-head-sort-link:last-child {
  margin-right: 0;
}
.blog-body .post-head-sort-link:hover {
  background: #72679b;
}
.blog-body .post-body-meta {
  margin-bottom: 8px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}
.blog-body .post-body-meta-date {
  font-family: var(--bs-font-sans-serif);
  font-weight: 400;
  font-style: italic;
  font-size: 12px;
  line-height: 16px;
  color: #616161;
}
@media (min-width: 992px) {
  .blog-body .post-body-meta-date {
    font-size: 16px;
    line-height: 24px;
  }
}
.blog-body .post-body-meta-view {
  justify-content: space-between;
  align-items: center;
  display: flex;
  font-family: var(--bs-font-sans-serif);
  font-weight: 400;
  font-size: 0.875rem;
  color: #616161;
}
.blog-body .post-body-meta-view:before {
  content: "";
  display: block;
  width: 14px;
  height: 12px;
  margin-right: 4px;
  background: url("../images/icons/view-icon.svg") no-repeat center;
  background-size: contain;
}
@media (min-width: 992px) {
  .blog-body .post-body-meta-view {
    font-size: 1rem;
  }
  .blog-body .post-body-meta-view:before {
    background-size: contain;
    width: 23px;
    height: 18px;
    margin-right: 6px;
  }
}
.blog-body .post-title, .blog-body .post-subtitle {
  font-family: var(--bs-font-sans-serif);
  line-height: 20px;
}
.blog-body .post-title {
  display: block;
  font-weight: 700;
  font-size: 1rem;
  color: #212121;
}
.blog-body .post-title:hover, .blog-body .post-title:focus {
  color: #574a89;
}
.blog-body .post-subtitle {
  margin-bottom: 0;
  font-weight: 400;
  font-size: 0.875rem;
  color: #424242;
}
@media (min-width: 992px) {
  .blog-body .post-subtitle {
    font-size: 1rem;
    line-height: 24px;
  }
}
.blog-body .post-v-card {
  margin-bottom: 30px;
  padding: 12px 0;
}
.blog-body .post-v-card .post-head {
  height: 192px;
}
.blog-body .post-v-card .post-body {
  margin-top: 16px;
}
.blog-body .post-v-main {
  overflow: hidden;
  height: 100%;
  cursor: pointer;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 3px 6px 1px rgba(64, 44, 135, 0.1), 0 0 8px 1px rgba(143, 126, 206, 0.1), inset 0 0 1px rgba(64, 44, 135, 0.24);
  transition: all 0.3s ease-in-out;
}
.blog-body .post-v-main .post-head {
  min-height: 240px;
  border-radius: 0;
}
.blog-body .post-v-main .post-body {
  flex-direction: column;
  display: flex;
  height: 100%;
  padding: 16px 12px;
  margin-top: 16px;
}
.blog-body .post-v-main .post-body-meta {
  margin-top: auto;
}
.blog-body .post-v-main .post-title {
  margin-bottom: 16px;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  overflow: hidden;
}
@media (min-width: 992px) {
  .blog-body .post-v-main .post-body {
    padding: 20px 24px;
  }
  .blog-body .post-v-main .post-title {
    margin-bottom: 24px;
  }
}
.blog-body .post-v-main:hover {
  box-shadow: 0 8px 24px 4px rgba(64, 44, 135, 0.1), 0 0 24px 2px rgba(143, 126, 206, 0.12), inset 0 0 2px rgba(64, 44, 135, 0.28);
}
.blog-body .post-v-tile {
  flex-direction: row;
  padding: 8px 0;
}
.blog-body .post-v-tile:first-child {
  padding-top: 0;
}
.blog-body .post-v-tile .post-head {
  flex-shrink: 0;
  width: 93px;
  height: 62px;
  margin-right: 8px;
  background-color: #e9e8f5;
  border-radius: 5px;
}
.blog-body .post-v-tile .post-title {
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  overflow: hidden;
}
@media (min-width: 992px) {
  .blog-body .post-v-tile {
    padding: 12px 0;
  }
  .blog-body .post-v-tile .post-head {
    max-width: 192px;
    width: 100%;
    height: 128px;
    margin-right: 16px;
  }
  .blog-body .post-v-tile .post-title {
    -webkit-line-clamp: 4;
  }
}
.blog-body .post-v-line {
  margin-bottom: 12px;
}
.blog-body .post-v-line .post-head {
  width: 100%;
  height: 192px;
  min-height: 192px;
  flex-direction: column;
  flex-shrink: 0;
  overflow: hidden;
  background-color: #e9e8f5;
}
.blog-body .post-v-line .post-body {
  width: 100%;
  margin-top: 16px;
  flex-direction: column;
  display: flex;
}
.blog-body .post-v-line .post-body-meta {
  margin-bottom: 8px;
}
.blog-body .post-v-line .post-title,
.blog-body .post-v-line .post-subtitle {
  font-size: 1rem;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
}
.blog-body .post-v-line .post-title {
  height: 60px;
  display: -webkit-box;
  line-height: 20px;
  -webkit-line-clamp: 2;
}
.blog-body .post-v-line .post-subtitle {
  height: 72px;
  display: none;
  line-height: 24px;
  -webkit-line-clamp: 3;
}
@media (min-width: 992px) {
  .blog-body .post-v-line {
    flex-direction: row;
    max-height: 205px;
    margin-bottom: 48px;
  }
  .blog-body .post-v-line .post-head {
    max-width: 308px;
    height: 205px;
    border-radius: 10px 0 0 10px;
  }
  .blog-body .post-v-line .post-body {
    margin-top: 0;
    padding: 16px 24px;
    background-color: #ffffff;
    border-radius: 0 0 10px 10px;
  }
  .blog-body .post-v-line .post-title {
    height: 48px;
    margin-bottom: 16px;
    font-size: 20px;
    line-height: 24px;
    -webkit-line-clamp: 2;
  }
  .blog-body .post-v-line .post-subtitle {
    display: -webkit-box;
  }
}
.blog-body .post-v-full {
  margin-bottom: 24px;
  padding: 0;
}
.blog-body .post-v-full .post-head {
  padding: 1rem;
  background-size: contain;
}
.blog-body .post-v-full .post-title {
  margin: 0.5rem auto;
}
@media (min-width: 992px) {
  .blog-body .post-v-full {
    width: 100%;
    margin-bottom: 56px;
  }
  .blog-body .post-v-full .post-head {
    height: 432px;
    padding: 24px 22px;
  }
  .blog-body .post-v-full .post-head-sort-link {
    font-size: 1rem;
    line-height: 20px;
    padding: 10px 20px;
  }
  .blog-body .post-v-full .post-body {
    margin-top: 24px;
  }
  .blog-body .post-v-full .post-title {
    font-size: 20px;
    line-height: 24px;
    margin: 1rem auto;
  }
}
.blog-body .post-v-side {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .blog-body .post-v-side .post-body-meta-date, .blog-body .post-v-side .post-body-meta-view {
    font-size: 0.875rem;
  }
  .blog-body .post-v-side .post-body-meta-view:before {
    width: 14px;
    height: 12px;
    margin-right: 4px;
  }
}
.blog-body .post-v-side .post-title {
  display: -webkit-box;
  font-size: 14px;
  line-height: 18px;
  color: #43347A;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.blog-post {
  padding: 16px;
  margin-bottom: 32px;
  background: #fff;
  border-radius: 8px;
}
@media (min-width: 992px) {
  .blog-post {
    padding: 32px;
  }
}
.blog-post-meta {
  margin-bottom: 16px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}
@media (min-width: 992px) {
  .blog-post-meta {
    margin-bottom: 6px;
  }
}
.blog-post-meta-date {
  font-family: var(--bs-font-sans-serif);
  font-weight: 400;
  font-style: italic;
  font-size: 12px;
  line-height: 16px;
  color: #616161;
}
@media (min-width: 992px) {
  .blog-post-meta-date {
    font-size: 16px;
    line-height: 24px;
  }
}
.blog-post-meta-view {
  justify-content: space-between;
  align-items: center;
  display: flex;
  font-family: var(--bs-font-sans-serif);
  font-weight: 400;
  font-size: 0.875rem;
  color: #616161;
}
.blog-post-meta-view:before {
  content: "";
  display: block;
  width: 14px;
  height: 12px;
  margin-right: 4px;
  background: url("../images/icons/view-icon.svg") no-repeat center;
  background-size: contain;
}
@media (min-width: 992px) {
  .blog-post-meta-view {
    font-size: 1rem;
  }
  .blog-post-meta-view:before {
    width: 23px;
    height: 18px;
    margin-right: 6px;
  }
}
.blog-post-sort {
  flex-wrap: wrap;
  display: flex;
}
.blog-post-sort-link {
  font-family: var(--bs-font-sans-serif);
  font-weight: 700;
  font-size: 12px;
  line-height: 18px;
  color: #ffffff;
  width: auto;
  background-color: #574a89;
  border-radius: 20px;
  display: block;
  margin-right: 16px;
  margin-bottom: 8px;
  padding: 7px 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: 0.2s linear;
}
.blog-post-sort-link:last-child {
  margin-right: 0;
}
.blog-post-sort-link:hover {
  background-color: #72679b;
  color: #ffffff;
}
.blog-post-head {
  margin-bottom: 32px;
}
.blog-post-body-text .table-wrapper {
  width: 100%;
  margin-bottom: 25px;
  overflow-x: auto;
}
.blog-post-body-text table {
  width: 100%;
  border-collapse: collapse;
}
.blog-post-body-text table thead th {
  padding: 12px 16px;
  font-family: "FiraSans-Bold", helvetica, sans-serif;
  font-weight: 700;
  border: solid 1px #ecedef;
}
.blog-post-body-text table tbody tr:nth-child(odd) {
  background-color: #f8f9fa;
}
.blog-post-body-text table tbody td {
  padding: 12px 16px;
  border: solid 1px #ecedef;
}
@media (max-width: 767px) {
  .blog-post-body-text table tbody td {
    padding: 8px 16px;
  }
}
.blog-post-body-text img {
  width: 100% !important;
  height: auto !important;
}
.blog-post-body-sort {
  display: flex;
  flex-wrap: wrap;
  margin: 40px 0;
}
.blog-post-body-sort .blog-post-sort-link {
  background-color: #E9E8F5;
  color: #43347A;
}
.blog-post-body-sort .blog-post-sort-link:hover {
  background-color: #D2CFE0;
}
.blog-post-body-info {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .blog-post-body-info {
    justify-content: space-between;
  }
}
.blog-post-title {
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  color: #212121;
}
@media (min-width: 992px) {
  .blog-post-title {
    font-size: 32px;
    line-height: 40px;
    letter-spacing: 0.25px;
  }
}
.blog-post-photo {
  position: relative;
  overflow: hidden;
  flex-direction: column;
  justify-content: flex-end;
  display: flex;
  width: 100%;
  height: 192px;
  padding: 16px;
  background-color: #eee;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 10px;
  margin-top: 24px;
}
@media (min-width: 992px) {
  .blog-post-photo {
    height: 432px;
    padding: 24px 22px;
    margin-top: 32px;
  }
}

.blog-side + .blog-side {
  margin-top: 1rem;
}
.blog-side-wrap {
  width: 100%;
  padding: 12px 24px;
  background: #fff;
  border-radius: 8px;
}
.blog-side-name {
  position: relative;
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-style: normal;
  font-weight: 800;
  font-size: 18px;
  line-height: 24px;
  color: #212121;
}
.blog-side-text {
  font-family: var(--bs-font-sans-serif);
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #212121;
}
.blog-side-menu {
  margin-top: 16px;
  flex-direction: column;
  display: flex;
}
.blog-side-menu-item {
  margin-bottom: 8px;
  cursor: pointer;
}
.blog-side-menu-item:last-child {
  margin-bottom: 0;
}
.blog-side-menu-item-title, .blog-side-menu-item-count {
  font-family: var(--bs-font-sans-serif);
  font-weight: 400;
  font-size: 1rem;
  line-height: 24px;
}
.blog-side-menu-item-title {
  margin-right: 4px;
  color: #424242;
  transition: 0.2s linear;
}
.blog-side-menu-item-title:hover, .blog-side-menu-item-title:focus {
  color: #ff9a26;
}
.blog-side-menu-item-count {
  line-height: 24px;
  color: #757575;
}
.blog-side-form {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .blog-side {
    display: block;
  }
  .blog-side-wrap {
    padding: 24px;
    margin-bottom: 32px;
  }
  .blog-side-name {
    font-size: 24px;
    line-height: 28px;
  }
  .blog-side-name-min {
    font-size: 18px;
    line-height: 24px;
  }
  .blog-side-menu {
    flex-direction: column;
    display: flex;
  }
}

.contacts-body-link {
  color: #574a89;
  font-weight: 700;
}

.contact-block {
  flex-direction: column;
  display: flex;
}
.contact-block-title, .contact-block-hours {
  color: #ffffff;
}
.contact-block-title {
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-weight: 800;
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 0.5rem;
}
@media (min-width: 992px) {
  .contact-block-title {
    font-size: 32px;
    line-height: 32px;
    letter-spacing: 0.25px;
    margin-bottom: 12px;
  }
}
.contact-block-hours {
  font-family: var(--bs-font-sans-serif);
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 18px;
  margin-bottom: 24px;
}
@media (min-width: 992px) {
  .contact-block-hours {
    font-size: 20px;
    line-height: 28px;
  }
}
.contact-block-phone, .contact-block-email {
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-weight: 800;
  font-size: 24px;
  line-height: 24px;
}
.contact-block-phone {
  margin-bottom: 8px;
}
.contact-block-phone a {
  color: #fdd835;
}
@media (min-width: 992px) {
  .contact-block-phone {
    font-size: 28px;
    line-height: 28px;
    margin-bottom: 1rem;
  }
}
.contact-block-email {
  margin-bottom: 1rem;
}
.contact-block-email a {
  color: #f06292;
}
@media (min-width: 992px) {
  .contact-block-email {
    font-size: 28px;
    margin-bottom: 2rem;
  }
}
.contact-block-extra {
  margin-top: 0;
}
.contact-block-extra-title {
  font-family: var(--bs-font-sans-serif);
  font-weight: 700;
  font-size: 1rem;
  line-height: 20px;
  color: #ffffff;
}

.reviews-head-image {
  width: 288px;
  height: 272px;
  display: block;
  background: url("../images/banners/reviews-banner-image.svg") no-repeat center;
  background-size: contain;
  margin-top: 24px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 992px) {
  .reviews-head-image {
    width: 474px;
    height: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 1200px) {
  .reviews-head-image {
    margin-top: 0;
    margin-right: 0;
  }
}

.reviews-feed {
  padding-top: 0;
}

.review-list {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}
@media (min-width: 992px) {
  .review-list {
    margin-bottom: 32px;
  }
}

.review-item {
  padding: 1rem;
  background-color: #ffffff;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}
.review-item:last-child {
  margin-bottom: 0;
}
.review-item .review-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.review-item .review-head-name {
  font-family: var(--bs-font-sans-serif);
  font-weight: 700;
  font-size: 1rem;
  line-height: 20px;
  color: #212121;
}
@media (min-width: 992px) {
  .review-item .review-head-name {
    font-size: 20px;
    line-height: 24px;
  }
}
.review-item .review-body {
  margin-bottom: 1rem;
  flex-direction: column;
  display: flex;
}
@media (min-width: 992px) {
  .review-item .review-body {
    margin-bottom: 24px;
  }
}
.review-item .review-body-title {
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: #424242;
}
.review-item .review-body-subtitle {
  margin-bottom: 0;
  font-weight: 400;
  color: #212121;
}
.review-item .review-body-title, .review-item .review-body-subtitle {
  font-family: var(--bs-font-sans-serif);
  font-size: 0.875rem;
  line-height: 20px;
}
@media (min-width: 992px) {
  .review-item .review-body-title, .review-item .review-body-subtitle {
    font-size: 1rem;
    line-height: 24px;
  }
}
.review-item .review-foot {
  justify-content: space-between;
  flex-direction: column;
  display: flex;
}
@media (min-width: 992px) {
  .review-item .review-foot {
    flex-direction: row;
  }
}
.review-item .review-foot-col {
  flex-direction: column;
  display: flex;
}
@media (min-width: 992px) {
  .review-item .review-foot-col {
    flex-direction: row;
  }
}
.review-item .review-foot-meta {
  display: flex;
  margin-bottom: 8px;
}
@media (min-width: 992px) {
  .review-item .review-foot-meta {
    margin-right: 24px;
    margin-bottom: 0;
  }
}
.review-item .review-foot-meta-title {
  font-weight: 700;
  color: #424242;
  margin-right: 8px;
}
.review-item .review-foot-meta-subtitle {
  color: #43347a;
  transition: 0.2s linear;
}
.review-item .review-foot-meta-subtitle:hover, .review-item .review-foot-meta-subtitle:focus {
  text-decoration: underline;
  color: #2c1b69;
}
.review-item .review-foot-meta-title, .review-item .review-foot-meta-subtitle {
  font-family: var(--bs-font-sans-serif);
  font-size: 0.875rem;
  line-height: 20px;
}
@media (min-width: 992px) {
  .review-item .review-foot-meta-title, .review-item .review-foot-meta-subtitle {
    font-size: 1rem;
    line-height: 24px;
  }
}
.review-item .review-foot-meta:last-child {
  margin-right: 0;
  margin-bottom: 0;
}
.review-item .review-foot-date {
  font-family: var(--bs-font-sans-serif);
  font-weight: 400;
  font-style: italic;
  font-size: 0.875rem;
  line-height: 20px;
  color: #616161;
  margin-top: 1rem;
  text-align: right;
}
@media (min-width: 992px) {
  .review-item .review-foot-date {
    margin-top: 0;
    font-size: 1rem;
    line-height: 24px;
  }
}
.review-item-v-slide {
  background-color: #e9e8f5;
  transition: background-color 0.25s ease-in-out;
}
.review-item-v-slide .review-head {
  margin-bottom: 16px;
}
.review-item-v-slide .review-body {
  height: 100px;
}
.review-item-v-slide .review-body-subtitle {
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  display: -webkit-box;
  overflow: hidden;
}
@media (min-width: 1200px) {
  .review-item-v-slide .review-body {
    height: 125px;
    margin-bottom: 12px;
  }
}
.review-item-v-slide:hover {
  background-color: #ffffff;
  box-shadow: 0 8px 24px 4px rgba(64, 44, 135, 0.1), 0 0 24px 2px rgba(143, 126, 206, 0.12), inset 0 0 2px rgba(64, 44, 135, 0.28);
  cursor: pointer;
}

.reviews-yandex {
  justify-content: center;
  display: flex;
  font-size: 0.875rem;
  font-weight: 700;
}
.reviews-yandex-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
}
.reviews-yandex-link:before {
  content: "";
  display: flex;
  flex-shrink: 0;
  width: 20px;
  height: 24px;
  margin-left: 8px;
  background: url("../images/yandex.svg") no-repeat center;
  background-size: contain;
}
@media (max-width: 991.98px) {
  .reviews-yandex {
    margin-top: 16px;
  }
}
@media (min-width: 992px) {
  .reviews-yandex {
    justify-content: flex-start;
    align-items: center;
  }
}

.service-item {
  width: 100%;
  height: 100%;
  flex-direction: column;
  display: flex;
  margin-right: auto;
  margin-left: auto;
  padding: 24px;
  background: #fafafa;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}
@media (min-width: 1200px) {
  .service-item {
    margin-bottom: 15px;
    padding: 24px;
  }
}
.service-item-link {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  text-decoration: none;
}
@media (min-width: 992px) {
  .service-item-link {
    flex-wrap: nowrap;
    width: calc(100% - 208px);
  }
}
.service-item-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  background-color: #ffffff;
  justify-content: center;
  align-items: center;
  display: flex;
  border-radius: 100%;
  box-shadow: 0 3px 6px 1px rgba(64, 44, 135, 0.1), 0 0 8px 1px rgba(143, 126, 206, 0.1), inset 0 0 1px rgba(64, 44, 135, 0.24);
}
.service-item-icon:before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  background: url("../images/icons/work-icon.svg") no-repeat center;
  background-size: contain;
}
@media (min-width: 1200px) {
  .service-item-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
  }
  .service-item-icon:before {
    width: 26px;
    height: 26px;
  }
}
.service-item-name {
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-weight: 800;
  font-size: 24px;
  line-height: 24px;
  color: #43347a;
  word-wrap: break-word;
  margin-bottom: 8px;
}
@media (min-width: 1200px) {
  .service-item-name {
    margin-bottom: 16px;
  }
}
.service-item-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: auto;
  margin-bottom: 20px;
}
.service-item-meta-title, .service-item-meta-subtitle {
  font-size: 18px;
  font-family: var(--bs-font-sans-serif);
  margin: 0;
}
.service-item-meta-title {
  margin-bottom: 4px;
  font-weight: 700;
  line-height: 24px;
  color: #212121;
}
.service-item-meta-subtitle {
  font-weight: 400;
  line-height: 28px;
  color: #616161;
}
.service-item-btn {
  width: 100%;
  margin: 0 auto;
}
.service-item:hover, .service-item:focus {
  box-shadow: 0 4px 12px 4px rgba(64, 44, 135, 0.1), 0 0 12px 2px rgba(143, 126, 206, 0.12), inset 0 0 2px rgba(64, 44, 135, 0.28);
}
.service-item-line {
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  display: flex;
  height: auto;
  width: 100%;
  margin-bottom: 24px;
}
.service-item-line .service-item-icon {
  display: none;
}
@media (min-width: 1200px) {
  .service-item-line .service-item-icon {
    flex-shrink: 0;
    display: flex;
    margin-right: 32px;
    margin-bottom: 0;
  }
}
.service-item-line .service-item-name {
  width: 100%;
  max-width: 376px;
  margin-right: 0;
  margin-bottom: 16px;
  font-size: 24px;
  line-height: 24px;
  word-wrap: break-word;
}
@media (min-width: 992px) {
  .service-item-line .service-item-name {
    margin-right: 32px;
    margin-bottom: 0;
  }
}
.service-item-line .service-item-meta {
  width: 100%;
  margin-right: 0;
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .service-item-line .service-item-meta {
    justify-content: initial;
  }
}
.service-item-line .service-item-meta-body, .service-item-line .service-item-meta-body:last-child {
  margin-right: 0;
}
@media (min-width: 992px) {
  .service-item-line .service-item-meta-body {
    margin-right: 50px;
  }
}
.service-item-line .service-item-btn {
  display: none;
  padding: 12px 26px;
}
@media (min-width: 992px) {
  .service-item-line .service-item-btn {
    display: block;
    width: initial;
  }
}
.services-head-image {
  width: 100%;
  height: 272px;
  display: block;
  background: url("../images/banners/services-banner-image.svg") no-repeat center;
  background-size: contain;
  margin-top: 24px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 992px) {
  .services-head-image {
    width: 362px;
    height: 464px;
    margin-top: 0;
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
  }
}

.university-hero {
  overflow: hidden;
}
.university-hero .stn-description p:last-child {
  margin-bottom: 0;
}

.university-hero-caption {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.university-hero-note {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  margin-bottom: 32px;
  padding: 20px 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}
.university-hero-note strong,
.university-hero-note span {
  color: #ffffff;
}
.university-hero-note strong {
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 20px;
  line-height: 24px;
  font-weight: 800;
}
.university-hero-note span {
  font-size: 15px;
  line-height: 24px;
}

.university-proof {
  background: radial-gradient(circle at top right, rgba(87, 74, 137, 0.12), transparent 40%), linear-gradient(180deg, #fff 0%, #f8f7fc 100%);
}

@media (min-width: 992px) {
  .university-proof-head {
    position: sticky;
    top: 24px;
  }
}

.university-proof-grid {
  display: grid;
  gap: 16px;
}
@media (min-width: 768px) {
  .university-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.university-proof-card {
  height: 100%;
  min-height: 220px;
  padding: 24px;
  border: 1px solid rgba(87, 74, 137, 0.12);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(67, 52, 122, 0.08);
}
.university-proof-card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  border-radius: 16px;
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 18px;
  line-height: 1;
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(135deg, #574a89 0%, #43347a 100%);
}
.university-proof-card-title {
  margin-bottom: 12px;
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 22px;
  line-height: 26px;
  font-weight: 800;
  color: #212121;
}
.university-proof-card-text {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 26px;
  color: #616161;
}

.university-services .stn-description p:last-child {
  margin-bottom: 0;
}

.university-text .stn-title {
  margin-bottom: 16px;
}
.university-text .stn-description p:last-child {
  margin-bottom: 0;
}

.university-text-content h2, .university-text-content .h2,
.university-text-content h3,
.university-text-content .h3,
.university-text-content h4,
.university-text-content .h4 {
  margin-top: 0;
  margin-bottom: 16px;
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-weight: 800;
  color: #212121;
}
.university-text-content p,
.university-text-content ul,
.university-text-content ol {
  font-size: 16px;
  line-height: 28px;
  color: #616161;
}
.university-text-content ul,
.university-text-content ol {
  padding-left: 20px;
}
.university-text-content > *:last-child {
  margin-bottom: 0;
}

.university-links-section .stn-title {
  margin-bottom: 12px;
}
.university-links-section .stn-description p:last-child {
  margin-bottom: 0;
}

.university-links-grid {
  display: grid;
  gap: 12px;
}
@media (min-width: 768px) {
  .university-links-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 992px) {
  .university-links-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.university-links-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 68px;
  padding: 16px 20px;
  border: 1px solid rgba(87, 74, 137, 0.12);
  border-radius: 18px;
  background: #ffffff;
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 18px;
  line-height: 24px;
  font-weight: 800;
  color: #43347a;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.university-links-item:hover, .university-links-item:focus {
  color: #43347a;
  border-color: rgba(87, 74, 137, 0.3);
  box-shadow: 0 16px 32px rgba(67, 52, 122, 0.12);
  transform: translateY(-2px);
}
.university-links-item.is-active {
  color: #ffffff;
  border-color: transparent;
  background: linear-gradient(135deg, #574a89 0%, #43347a 100%);
  box-shadow: 0 16px 32px rgba(67, 52, 122, 0.18);
}

.experts {
  padding: 48px 0 24px;
}
@media (min-width: 992px) {
  .experts {
    padding: 80px 0 48px;
  }
}
.experts .breadcrumb-item {
  color: #757575;
}
.experts__description {
  margin: 0;
}
@media (min-width: 992px) {
  .experts__container {
    display: grid;
    grid-row-gap: 0;
    grid-column-gap: 64px;
    grid-template-columns: 1fr 300px;
  }
}

.experts-main {
  padding: 0 0 32px;
}
@media (min-width: 992px) {
  .experts-main {
    padding: 0 0 80px;
  }
}
.experts-main .page-link {
  background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity));
}

.experts-main-list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.experts-main-list__item {
  background: #FFFFFF;
  border-radius: 8px;
  margin: 0 0 16px;
  padding: 16px;
}
@media (min-width: 992px) {
  .experts-main-list__item {
    margin: 0 0 24px;
    padding: 24px;
  }
}

.expert-item__info {
  padding-left: 64px;
}
@media (min-width: 992px) {
  .expert-item__info {
    padding-left: 72px;
  }
}
.expert-item__header {
  margin: 0 0 4px;
}
.expert-item__name {
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  color: #574A89;
  margin: 0 8px 0 0;
  transition: 0.2s linear;
}
.expert-item__name:hover {
  color: #ff9a26;
}
.expert-item__id {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  text-transform: uppercase;
  color: #616161;
}
.expert-item__body {
  display: flex;
  align-items: center;
}
.expert-item__work, .expert-item__rating {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #212121;
  margin: 0 8px 0 0;
}
.expert-item__rating {
  display: flex;
  align-items: center;
}
.expert-item__rating::before {
  content: "";
  width: 16px;
  height: 16px;
  display: block;
  margin: 0 8px 0 0;
  background-image: url("../images/experts/star.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.expert-avatar {
  position: relative;
}
.expert-avatar__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  height: 48px;
  margin: 0;
  border-radius: 50%;
  overflow: hidden;
}
@media (min-width: 992px) {
  .expert-avatar__image {
    width: 56px;
    height: 56px;
  }
}
.expert-avatar__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.experts-aside {
  padding: 0 0 32px;
}
@media (min-width: 992px) {
  .experts-aside {
    padding: 0 0 80px;
  }
}
.experts-aside__wrap {
  width: 100%;
  padding: 24px 0 0;
  background: #fff;
  border-radius: 8px;
  margin: 0 0 30px;
}
.experts-aside__name {
  position: relative;
  margin: 0;
  text-align: center;
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-weight: 800;
  font-size: 18px;
  line-height: 24px;
  color: #212121;
}
@media (min-width: 992px) {
  .experts-aside__name {
    font-size: 24px;
    line-height: 28px;
  }
}
.experts-aside__form {
  display: flex;
  flex-direction: column;
}

.faq .breadcrumb-item {
  color: #757575;
}
.faq__list {
  padding: 0 0 60px;
  margin: 0;
  list-style: none;
}
@media (min-width: 992px) {
  .faq__list {
    padding: 0 0 80px;
  }
}
@media (min-width: 992px) {
  .faq__content {
    display: grid;
    grid-row-gap: 0;
    grid-column-gap: 64px;
    grid-template-columns: 840px 1fr;
  }
}

.faq-dropdown {
  position: relative;
  background: #E9E8F5;
  border-radius: 8px;
  padding: 16px 44px 16px 16px;
  margin: 0 0 16px;
}
@media (min-width: 992px) {
  .faq-dropdown {
    padding: 44px 88px 44px 32px;
    margin: 0 0 32px;
  }
}
.faq-dropdown:last-child {
  margin: 0;
}
.faq-dropdown__question {
  text-align: initial;
  font-family: var(--bs-font-sans-serif);
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  color: #43347A;
  transition: 0.3s linear;
  outline: none;
  border: none;
  background: transparent;
}
.faq-dropdown__question:hover, .faq-dropdown__question:focus {
  color: #FB7900;
}
@media (min-width: 992px) {
  .faq-dropdown__question {
    font-size: 20px;
    line-height: 24px;
  }
}
.faq-dropdown__chevron {
  content: "";
  width: 24px;
  height: 24px;
  display: block;
  position: absolute;
  top: 16px;
  right: 16px;
  transition: transform 0.3s ease-in-out;
  background-image: url("../images/faq/arrow-drop.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  cursor: pointer;
}
@media (min-width: 992px) {
  .faq-dropdown__chevron {
    width: 48px;
    height: 48px;
    top: 32px;
    right: 32px;
  }
}
.faq-dropdown.is-active .faq-dropdown__chevron {
  transform: rotate(180deg);
}
.faq-dropdown__answer {
  display: none;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #212121;
  margin: 24px 0 0;
}
@media (min-width: 992px) {
  .faq-dropdown__answer {
    margin: 36px 0 0;
    font-size: 16px;
    line-height: 24px;
  }
}
.faq-dropdown.is-active .faq-dropdown__answer {
  display: block;
}

:root {
  --font-title: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.lenta {
  background: #FAFAFA;
}
@media (min-width: 992px) {
  .lenta__container {
    display: grid;
    grid-row-gap: 0;
    grid-column-gap: 32px;
    grid-template-columns: 1fr 300px;
  }
}
.lenta .breadcrumb-item {
  color: #757575;
}
.lenta .page-link {
  background-color: transparent;
}
.lenta .stn-title {
  font-size: 28px;
  line-height: 28px;
}
@media (min-width: 992px) {
  .lenta .stn-title {
    font-size: 40px;
    line-height: 40px;
  }
}

.lenta-main {
  margin: 0 0 32px;
}
@media (min-width: 992px) {
  .lenta-main {
    margin: 0;
  }
}
.lenta-main__header {
  margin-bottom: 32px;
}
.lenta-main__subtitle {
  width: 100%;
  margin: 12px 0 0;
}
@media (min-width: 992px) {
  .lenta-main__subtitle {
    max-width: 505px;
    width: 100%;
  }
}

.title-list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
}
.title-list__item {
  display: flex;
  margin-bottom: 24px;
}
.title-list__item::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-image: url("../images/lenta-rabot/arrow.svg");
  background-position: center;
  background-repeat: no-repeat;
  margin: 0 12px 0 0;
}
.title-list__item:last-child {
  margin-bottom: 0;
}
.title-list__item span {
  font-weight: 700;
  margin: 0 4px 0;
}

.lenta-card__list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.lenta-card__list-item {
  background: #FFFFFF;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 32px;
}
.lenta-card__header {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .lenta-card__header {
    flex-direction: row;
    justify-content: space-between;
  }
}
.lenta-card__worktype {
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  margin: 0 0 12px;
}
@media (min-width: 768px) {
  .lenta-card__worktype {
    margin: 0;
  }
}
.lenta-card__cost {
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  color: #424242;
}
.lenta-card__cost span {
  margin-left: 8px;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #616161;
}
.lenta-card__content {
  margin-bottom: 24px;
}
.lenta-card__content-title {
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  transition: 0.3s linear;
  color: #574a89;
  border-bottom: 1px solid transparent;
}
.lenta-card__content-title:hover {
  border-bottom: 1px solid #574a89;
}
.lenta-card__footer-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .lenta-card__footer-list {
    flex-direction: row;
    justify-content: space-between;
  }
}
.lenta-card__footer-item {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #424242;
  margin: 0 0 12px;
}
.lenta-card__footer-item span {
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #616161;
  margin-left: 8px;
}
@media (min-width: 992px) {
  .lenta-card__footer-item {
    margin: 0;
  }
}

.lenta-aside__item-stats {
  margin: 0 0 32px;
}

.lenta-aside-stats {
  padding: 25px 20px;
  background: #FFFFFF;
  border-radius: 3px;
}
.lenta-aside-stats__list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.lenta-aside-stats__list-item {
  display: grid;
  grid-row-gap: 0;
  grid-column-gap: 18px;
  grid-template-columns: 65px 1fr;
  margin-bottom: 20px;
}
.lenta-aside-stats__list-item:last-child {
  margin-bottom: 0;
}
.lenta-aside-stats__item-num {
  font-family: var(--font-title);
  font-size: 15px;
  font-weight: 700;
  line-height: 120%;
  color: #030715;
  text-align: right;
  flex-shrink: 0;
}
.lenta-aside-stats__item-num span {
  display: block;
  white-space: nowrap;
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 700;
  color: #43347A;
  margin-top: 3px;
}
.lenta-aside-stats__item-text {
  font-size: 13px;
  color: #030715;
  margin: 0;
}

.lenta-aside-form__title {
  font-family: var(--font-title);
  text-align: center;
  font-weight: 800;
  font-size: 24px;
  line-height: 28px;
  margin: 0 0 24px;
}

:root {
  --font-title: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.work {
  background-image: url("../images/shapes/shape-1.svg");
  background-position: top;
  background-repeat: no-repeat;
  background-size: auto;
}
@media (min-width: 992px) {
  .work {
    background-size: 100%;
  }
}
.work__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.work__header {
  margin: 0 0 40px;
}
@media (min-width: 992px) {
  .work__header {
    margin: 0 0 80px;
  }
}
.work__title {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 28px;
  line-height: 28px;
  text-align: center;
  color: #FFFFFF;
}
@media (min-width: 992px) {
  .work__title {
    font-size: 48px;
    line-height: 48px;
  }
}
.work__content {
  position: relative;
  width: 100%;
}
.work .swiper-widget a {
  display: block;
  margin-left: auto;
  transition: 0.2s linear;
}
.work .swiper-widget a:hover {
  color: #ff9a26;
}

.work-slider__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.work-slider__item {
  padding: 1rem;
  background-color: #E9E8F5;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  transition: 0.2s linear;
}
.work-slider__item:last-child {
  margin-bottom: 0;
}
.work-slider__item:hover {
  background-color: #fff;
  box-shadow: 0 8px 24px 4px rgba(64, 44, 135, 0.1), 0 0 24px 2px rgba(143, 126, 206, 0.12), inset 0 0 2px rgba(64, 44, 135, 0.28);
  cursor: pointer;
}
.work-slider__header {
  margin-bottom: 20px;
}
.work-slider__name {
  margin: 0;
  font-family: var(--bs-font-sans-serif);
  font-weight: 700;
  font-size: 1rem;
  line-height: 20px;
  color: #212121;
}
@media (min-width: 992px) {
  .work-slider__name {
    font-size: 20px;
    line-height: 24px;
  }
}
.work-slider__body {
  margin-bottom: 1rem;
  flex-direction: column;
  display: flex;
}
@media (min-width: 992px) {
  .work-slider__body {
    margin-bottom: 24px;
  }
}

.work-slider-body__title {
  margin: 0;
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: #424242;
}
.work-slider-body__subtitle {
  margin: 0;
  font-weight: 400;
  color: #212121;
  font-family: var(--bs-font-sans-serif);
  font-size: 0.875rem;
  line-height: 20px;
}
@media (min-width: 992px) {
  .work-slider-body__subtitle {
    font-size: 1rem;
    line-height: 24px;
  }
}

.work-slider-footer {
  display: grid;
  grid-row-gap: 0;
  grid-column-gap: 16px;
  grid-template-columns: 1fr 1fr;
}
.work-slider-footer__title {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #212121;
  margin: 0 0 4px;
}
.work-slider-footer__subtitle {
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #616161;
}

:root {
  --font-title: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.completed-work {
  background: #FAFAFA;
}
@media (min-width: 1200px) {
  .completed-work .stn-title {
    font-size: 3.25rem;
    line-height: 3.25rem;
    letter-spacing: 1px;
  }
}
.completed-work .breadcrumb-item {
  color: #757575;
}
.completed-work__container {
  position: relative;
}
.completed-work__container_header::before {
  content: "";
  display: block;
  position: absolute;
  top: -35px;
  right: 0;
  background-image: url("../images/completed-work/completed-work-banner.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (min-width: 1200px) {
  .completed-work__container_header::before {
    width: 505px;
    height: 647px;
  }
}
.completed-work__header {
  max-width: 864px;
}
.completed-work .lenta-card__list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.completed-work .lenta-card__list-item {
  background: #FFFFFF;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 32px;
}
.completed-work .lenta-card__list-item:last-child {
  margin-bottom: 0;
}
.completed-work .lenta-card__header {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .completed-work .lenta-card__header {
    flex-direction: row;
    justify-content: space-between;
  }
}
.completed-work .lenta-card__worktype {
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  margin: 0 0 12px;
}
@media (min-width: 768px) {
  .completed-work .lenta-card__worktype {
    margin: 0;
  }
}
.completed-work .lenta-card__cost {
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  color: #424242;
}
.completed-work .lenta-card__cost span {
  margin-left: 8px;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #616161;
}
.completed-work .lenta-card__content {
  margin-bottom: 24px;
}
.completed-work .lenta-card__content-title {
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #212121;
  transition: 0.3s linear;
}
.completed-work .lenta-card__content-title:hover {
  color: #574a89;
}
.completed-work .lenta-card__footer-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .completed-work .lenta-card__footer-list {
    flex-direction: row;
    justify-content: space-between;
  }
}
.completed-work .lenta-card__footer-item {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #424242;
  margin: 0 0 12px;
}
.completed-work .lenta-card__footer-item span {
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #616161;
  margin-left: 8px;
}
@media (min-width: 992px) {
  .completed-work .lenta-card__footer-item {
    margin: 0;
  }
}
.completed-work__list-item {
  box-shadow: 0px 12px 32px 4px rgba(35, 21, 86, 0.16), 0px 0px 32px 4px rgba(143, 126, 206, 0.12), inset 0px 0px 2px rgba(35, 21, 86, 0.28);
  border-radius: 8px;
}

.completed-work-banner {
  padding: 0 0 40px;
}
@media (min-width: 992px) {
  .completed-work-banner {
    padding: 0 0 80px;
  }
}

.section {
  padding: 40px 0;
}
@media (min-width: 992px) {
  .section {
    padding: 80px 0;
  }
}

:root {
  --font-title: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.expert-work {
  background: #E9E8F5;
}
.expert-work__header {
  margin: 0 0 32px;
}
@media (min-width: 992px) {
  .expert-work__header {
    margin: 0 0 44px;
  }
}
.expert-work__title {
  margin: 0;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 28px;
  line-height: 28px;
  color: #43347A;
  text-align: center;
}
@media (min-width: 992px) {
  .expert-work__title {
    font-size: 48px;
    line-height: 48px;
    text-align: left;
  }
}
.expert-work__author {
  margin-bottom: 24px;
}
@media (min-width: 992px) {
  .expert-work__content {
    display: grid;
    grid-row-gap: 0;
    grid-column-gap: 96px;
    grid-template-columns: 350px 1fr;
  }
}
.expert-work__content-title {
  margin: 0 0 16px;
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  color: #424242;
}
@media (min-width: 992px) {
  .expert-work__content-title {
    margin: 0 0 32px;
    font-size: 20px;
  }
}

.author {
  display: flex;
  align-items: center;
}
.author__image {
  margin: 0 16px 0 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}
@media (min-width: 992px) {
  .author__image {
    margin: 0 32px 0 0;
    width: 104px;
    height: 104px;
  }
}
.author__image img {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.author__name {
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  color: #424242;
}
@media (min-width: 992px) {
  .author__name {
    font-size: 24px;
    line-height: 28px;
  }
}

.achievements {
  margin: 0 0 40px;
}
@media (min-width: 992px) {
  .achievements {
    margin: 0;
  }
}
.achievements__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.achievements__list-item {
  position: relative;
  background: #574A89;
  box-shadow: 0px 8px 24px 4px rgba(64, 44, 135, 0.1), 0px 0px 24px 2px rgba(143, 126, 206, 0.12), inset 0px 0px 2px rgba(64, 44, 135, 0.28);
  border-radius: 8px;
  padding: 16px;
  margin: 0 0 8px;
}
@media (min-width: 992px) {
  .achievements__list-item {
    padding: 24px;
    margin: 0 0 16px;
  }
}
.achievements__list-item:last-child {
  margin: 0;
}
.achievements__list-item::before {
  content: "";
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: block;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-position: center;
}
@media (min-width: 768px) {
  .achievements__list-item::before {
    width: 56px;
    height: 56px;
    right: 24px;
  }
}
.achievements__list-item:nth-child(1)::before {
  background-image: url("../images/completed-work/icon-1.svg");
}
.achievements__list-item:nth-child(2)::before {
  background-image: url("../images/completed-work/icon-2.svg");
}
.achievements__item-title {
  margin: 0 0 8px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
}
@media (min-width: 992px) {
  .achievements__item-title {
    font-size: 18px;
    line-height: 28px;
  }
}
.achievements__item-quantity {
  margin: 0;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 24px;
  line-height: 24px;
  color: #FFFFFF;
}
@media (min-width: 992px) {
  .achievements__item-quantity {
    font-size: 28px;
    line-height: 28px;
  }
}

.progress__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.progress__list-item {
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  box-shadow: 0px 8px 24px 4px rgba(64, 44, 135, 0.1), 0px 0px 24px 2px rgba(143, 126, 206, 0.12), inset 0px 0px 2px rgba(64, 44, 135, 0.28);
  border-radius: 8px;
  padding: 16px;
  margin: 0 0 8px;
}
@media (min-width: 992px) {
  .progress__list-item {
    align-items: center;
    flex-direction: row;
    padding: 24px;
    margin: 0 0 16px;
  }
}
.progress__list-item:last-child {
  margin: 0;
}
.progress__item-data {
  margin: 0 0 16px;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: #757575;
}
@media (min-width: 992px) {
  .progress__item-data {
    font-size: 16px;
    line-height: 20px;
    margin: 0 45px 0 0;
  }
}
.progress__item-title {
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #212121;
}
@media (min-width: 992px) {
  .progress__item-title {
    font-size: 16px;
  }
}

:root {
  --font-title: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --default: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.expert {
  background: #FAFAFA;
}
.expert.stn {
  padding: 60px 0;
}
@media (min-width: 992px) {
  .expert.stn {
    padding: 76px 0;
  }
}
.expert__header {
  margin: 24px 0;
}
@media (min-width: 992px) {
  .expert__header {
    margin: 0 0 32px;
  }
}
@media (min-width: 1200px) {
  .expert .stn-title {
    font-size: 3.25rem;
    line-height: 3.25rem;
    letter-spacing: 1px;
  }
}
.expert .breadcrumb-item {
  color: #757575;
}
@media (min-width: 992px) {
  .expert__content {
    display: grid;
    grid-row-gap: 0;
    grid-column-gap: 33px;
    grid-template-columns: 350px 1fr;
  }
}
.expert__title {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 20px;
  line-height: 24px;
  color: #212121;
  margin: 0 0 16px;
}
@media (min-width: 992px) {
  .expert__title {
    font-size: 24px;
  }
}
.expert__subtitle {
  margin: 0 0 32px;
  font-family: var(--default);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #424242;
}
@media (min-width: 992px) {
  .expert__subtitle {
    margin: 0 0 68px;
  }
}

.stn-order #widget-fstfn .root {
  padding: 0;
}
.stn-order #widget-fstfn form {
  margin-bottom: initial;
}
.stn-order #widget-fstfn .form__col:last-child {
  margin-bottom: initial;
}

.last-work-link {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 24px;
  background-color: #E9E8F5;
  border-radius: 20px;
  transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.last-work-link:hover {
  background-color: #ffffff;
  box-shadow: 0px 0px 24px 2px #8F7ECE1F, 0px 8px 24px 4px #402C871A, 0px 0px 2px 0px #402C8747 inset;
}
.last-work-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.last-work-title {
  margin: 0;
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  color: #212121;
}
@media (min-width: 992px) {
  .last-work-title {
    font-size: 20px;
    line-height: 28px;
  }
}
.last-work-items {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 0;
}
.last-work-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: calc(50% - 8px);
}
.last-work-item:nth-child(1) {
  width: 100%;
}
.last-work-item-title {
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  color: #212121;
}
@media (min-width: 992px) {
  .last-work-item-title {
    font-size: 16px;
    line-height: 24px;
  }
}
.last-work-item-description {
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  color: #616161;
}
@media (min-width: 992px) {
  .last-work-item-description {
    font-size: 16px;
    line-height: 24px;
  }
}

.services-slider.swiper {
  margin-left: 0;
}
@media (min-width: 1080px) and (max-width: 1199px), (min-width: 1260px) and (max-width: 1399px), (min-width: 1440px) {
  .services-slider.swiper {
    width: calc(100% + 128px);
    margin-left: -64px;
    padding: 0 64px;
  }
}
.services-slider.swiper::before, .services-slider.swiper::after {
  content: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  width: 64px;
  height: 100%;
  background-color: #ffffff;
}
@media (min-width: 1080px) and (max-width: 1199px), (min-width: 1260px) and (max-width: 1399px), (min-width: 1440px) {
  .services-slider.swiper::before, .services-slider.swiper::after {
    content: "";
  }
}
.services-slider.swiper::after {
  right: 0;
  left: initial;
}
.services-slider .swiper-buttons {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  display: none;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  pointer-events: none;
}
@media (min-width: 1080px) and (max-width: 1199px), (min-width: 1260px) and (max-width: 1399px), (min-width: 1440px) {
  .services-slider .swiper-buttons {
    z-index: 3;
    display: flex;
  }
}
.services-slider .swiper-button-prev,
.services-slider .swiper-button-next {
  width: 40px;
  height: 40px;
  background-color: #ffffff;
  background-image: url("../images/arrows/arrow-left.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 32px;
  border: none;
  border-radius: 50%;
  box-shadow: 0px 0px 4px 0px #402C873D inset;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  pointer-events: initial;
}
@media (min-width: 992px) {
  .services-slider .swiper-button-prev,
.services-slider .swiper-button-next {
    width: 48px;
    height: 48px;
  }
}
.services-slider .swiper-button-prev:hover,
.services-slider .swiper-button-next:hover {
  box-shadow: 0px 0px 12px 2px #402C873D inset;
}
.services-slider .swiper-button-next {
  background-image: url("../images/arrows/arrow-right.svg");
}
.services-slider .service-link {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  border-radius: 30px;
}
@media (min-width: 992px) {
  .services-slider .service-link {
    height: 48px;
  }
}

.app-page-ai-main .stn-banner .row + .row {
  margin-top: 32px;
}
@media (min-width: 768px) {
  .app-page-ai-main .stn-banner .row + .row {
    margin-top: 50px;
  }
}
.app-page-ai-main .stn-banner .stn-title {
  margin-bottom: 24px;
  color: #fdd835;
}
.app-page-ai-main .stn-banner .stn-description {
  margin: 0;
}
.app-page-ai-main .stn-order {
  background-color: #574a89;
}
.app-page-ai-main .stn-order .form {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  padding: 30px 20px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0px 0px 24px 2px #8F7ECE1F, 0px 0px 2px 0px #402C8747 inset;
}
@media (min-width: 992px) {
  .app-page-ai-main .stn-order .form {
    max-width: 448px;
    margin: 0;
    margin-right: auto;
    padding: 50px 40px;
  }
}
.app-page-ai-main .stn-order .form .root > div > p {
  font-weight: 400;
}
.app-page-ai-main .stn-order .col-lg-7 {
  display: flex;
  justify-content: center;
  align-items: center;
}
.app-page-ai-main .stn-order .col-lg-7::before {
  content: "";
  display: block;
  width: 90%;
  max-width: 512px;
  height: 100%;
  max-height: 654px;
  background-image: url("../images/banners/services-banner-image.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.telegram-bot {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  min-height: 100%;
  padding: 32px 24px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0px 4px 29.9px 0px #00000040;
}
@media (min-width: 1200px) {
  .telegram-bot {
    padding: 56px 40px;
  }
}
.telegram-bot-description {
  margin: 0;
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  text-align: center;
  color: #212121;
}
@media (min-width: 768px) {
  .telegram-bot-description {
    font-size: 18px;
  }
}
@media (min-width: 992px) {
  .telegram-bot-description {
    font-size: 20px;
  }
}
@media (min-width: 1200px) {
  .telegram-bot-description {
    max-width: 464px;
    font-size: 22px;
  }
}
.telegram-bot-button {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 auto;
  padding: 6px 40px;
  font-size: 16px;
  line-height: 1.8;
  font-weight: 600;
  color: #ffffff;
  background-color: #2AABEE;
  border: none;
  border-radius: 400px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 992px) {
  .telegram-bot-button {
    line-height: 2.2;
  }
}
@media (min-width: 1200px) {
  .telegram-bot-button {
    line-height: 2.7;
  }
}
.telegram-bot-button:hover {
  color: #ffffff;
  background-color: #1d9bf0;
}
.telegram-bot-button::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url("../images/ai/telegram.svg") center/contain no-repeat;
}

.stn-ai-help .stn-body .col-md-6 + .col-md-6 {
  margin-top: 24px;
}
@media (min-width: 768px) {
  .stn-ai-help .stn-body .col-md-6 + .col-md-6 {
    margin-top: 0;
  }
}

.help-card {
  padding: 16px;
  background-color: #ffffff;
  border-radius: 20px;
}
@media (min-width: 992px) {
  .help-card {
    padding: 40px;
    border-radius: 32px;
  }
}
.help-card_ai {
  border: 1px solid #e0e0e0;
}
.help-card_human {
  background-color: #574a89;
  border-color: #574a89;
}
.help-card_human .help-card-title {
  color: #ffffff;
}
.help-card_human .help-card-subtitle {
  color: #ffffff;
}
.help-card_human .help-list-item {
  color: #ffffff;
}
.help-card_human .help-list-item_success::before {
  background-color: #4caf50;
  background-image: url("../images/ai/success-white.svg");
}
.help-card_human .help-list-result {
  color: #ffffff;
}
.help-card_human .help-card-cost {
  color: #ffffff;
}
.help-card_human .help-card-button {
  background-color: #ff9a26;
  border-color: #ff9a26;
}
.help-card_human .help-card-button:hover {
  background-color: #fb7900;
  border-color: #fb7900;
}
.help-card-header {
  display: flex;
  align-items: center;
  margin: 0 0 34px;
}
@media (min-width: 992px) {
  .help-card-header {
    margin: 0 0 42px;
  }
}
.help-card-header::before {
  content: "";
  display: block;
  width: 52px;
  height: 52px;
  margin: 0 16px 0 0;
  overflow: hidden;
  background-color: #fdd835;
  background-image: url("../images/ai/help-avatar.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 50%;
}
@media (min-width: 992px) {
  .help-card-header::before {
    width: 64px;
    height: 64px;
  }
}
.help-card-title {
  margin: 0;
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 18px;
  line-height: 24px;
  font-weight: 800;
}
@media (min-width: 992px) {
  .help-card-title {
    margin: 0 0 8px;
    font-size: 24px;
  }
}
.help-card-subtitle {
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  color: #212121;
}
@media (min-width: 992px) {
  .help-card-subtitle {
    font-size: 16px;
    line-height: 24px;
  }
}
.help-card-list {
  margin: 0 0 32px;
}
@media (min-width: 992px) {
  .help-card-list {
    margin: 0 0 40px;
  }
}
.help-card-cost {
  margin: 0 0 24px;
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 18px;
  line-height: 24px;
  font-weight: 800;
  color: #212121;
}
@media (min-width: 992px) {
  .help-card-cost {
    font-size: 28px;
    line-height: 32px;
  }
}
.help-card-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
  padding: 12px 30px;
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  color: #212121;
  background-color: #ffffff;
  border: 2px solid #fdd835;
  border-radius: 40px;
  cursor: pointer;
  transition: border-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}
@media (min-width: 992px) {
  .help-card-button {
    padding: 12px 30px;
    font-size: 18px;
    line-height: 28px;
  }
}
.help-card-button:hover {
  color: #212121;
  background-color: #fdd835;
  border-color: #fdd835;
}

.help-list {
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}
@media (min-width: 992px) {
  .help-list {
    margin: 0 0 40px;
  }
}
.help-list:last-child {
  margin: 0;
}
.help-list-item {
  display: flex;
  align-items: center;
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 20px;
}
@media (min-width: 992px) {
  .help-list-item {
    margin: 0 0 24px;
    font-size: 18px;
    line-height: 28px;
  }
}
.help-list-item::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  margin: 0 8px 0 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 18px;
  border-radius: 50%;
}
@media (min-width: 992px) {
  .help-list-item::before {
    width: 32px;
    height: 32px;
    margin: 0 16px 0 0;
    background-size: 24px 24px;
  }
}
.help-list-item_error::before {
  background-color: #ffcdd2;
  background-image: url("../images/ai/error.svg");
}
.help-list-item_success::before {
  background-color: #c8e6c9;
  background-image: url("../images/ai/success-green.svg");
}
.help-list-title {
  margin: 0;
  padding: 0 8px 0 0;
  font-weight: 700;
}
.help-list-result {
  margin: 0 0 0 auto;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}
@media (min-width: 992px) {
  .help-list-result {
    font-size: 18px;
    line-height: 28px;
    color: #212121;
  }
}

.stn-questions {
  background-color: #fafafa;
}
.stn-questions .row {
  gap: 40px;
}
@media (min-width: 768px) {
  .stn-questions .row {
    gap: 0;
  }
}
@media (min-width: 768px) {
  .stn-questions .col-md-7 {
    padding-left: 5%;
  }
}
.stn-questions .stn-title {
  margin-bottom: 16px;
}

.questions-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 992px) {
  .questions-list {
    gap: 32px;
  }
}
@media (min-width: 1200px) {
  .questions-list {
    gap: 40px;
  }
}
.questions-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 992px) {
  .questions-item {
    gap: 16px;
  }
}
.questions-item-title {
  margin: 0;
  font-size: 18px;
  line-height: 1;
  font-weight: 800;
  color: #43347a;
}
@media (min-width: 992px) {
  .questions-item-title {
    font-size: 24px;
  }
}
.questions-item-description {
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #616161;
}
@media (min-width: 992px) {
  .questions-item-description {
    font-size: 16px;
    line-height: 24px;
  }
}

.stn-services .stn-title {
  margin-bottom: 32px;
}
@media (min-width: 992px) {
  .stn-services .stn-title {
    margin-bottom: 56px;
  }
}
@media (min-width: 1200px) {
  .stn-services .stn-title {
    margin-bottom: 72px;
  }
}

.stn-seo .stn-body {
  background-color: rgba(255, 255, 255, 0.81);
}
.stn-seo .stn-body > *:first-child {
  margin-top: 24px;
}
.stn-seo .stn-body > *:last-child {
  margin-bottom: 0;
}
.stn-seo .stn-body h2, .stn-seo .stn-body .h2, .stn-seo .stn-body h3, .stn-seo .stn-body .h3 {
  margin: 0;
  margin-top: 40px;
  margin-bottom: 24px;
  padding: 0;
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 18px;
  line-height: 1;
  font-weight: 800;
  text-align: center;
}
@media (min-width: 992px) {
  .stn-seo .stn-body h2, .stn-seo .stn-body .h2, .stn-seo .stn-body h3, .stn-seo .stn-body .h3 {
    font-size: 32px;
  }
}
.stn-seo .stn-body p {
  margin: 16px 0;
  padding: 0;
  font-size: 14px;
  line-height: 20px;
}
@media (min-width: 992px) {
  .stn-seo .stn-body p {
    font-size: 16px;
    line-height: 24px;
  }
}
.stn-seo .stn-body ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 16px 0;
  padding: 0;
  padding-left: 20px;
  list-style: disc;
}
.stn-seo .stn-body ul li {
  padding: 0;
}
.stn-seo .stn-body ul li::before {
  content: none;
}
.stn-seo .stn-body ol {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 16px 0;
  padding: 0;
  padding-left: 20px;
  list-style: decimal;
}
.stn-seo .stn-body ol li {
  padding: 0;
}
.stn-seo .stn-body li {
  font-size: 14px;
  line-height: 20px;
}
@media (min-width: 992px) {
  .stn-seo .stn-body li {
    font-size: 16px;
    line-height: 24px;
  }
}

.bg-base-purple {
  background-color: #574a89;
}

.bg-dark-purple {
  background-color: #43347a;
}

.bg-cover,
.bg-contain {
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

.bg-cover {
  background-size: cover;
}

.bg-contain {
  background-size: contain;
}

.bg-top-left {
  background-position: 0 0;
}

.bg-top-center {
  background-position: 50% 0;
}

.bg-top-right {
  background-position: 100% 0;
}

.bg-center-left {
  background-position: 0 50%;
}

.bg-center-center {
  background-position: 50% 50%;
}

.bg-center-right {
  background-position: 100% 50%;
}

.bg-bottom-left {
  background-position: 0 100%;
}

.bg-bottom-center {
  background-position: 50% 100%;
}

.bg-bottom-right {
  background-position: 100% 100%;
}

.bg-no-repeat {
  background-repeat: no-repeat;
}

.bg-fixed {
  background-attachment: fixed;
  backface-visibility: hidden;
}

@media (pointer: coarse) {
  .bg-fixed {
    background-attachment: scroll;
  }
}
.bg-blend-multiply {
  background-blend-mode: multiply;
}

.bg-blend-screen {
  background-blend-mode: screen;
}

.bg-blend-overlay {
  background-blend-mode: overlay;
}

.bg-blend-darken {
  background-blend-mode: darken;
}

.bg-blend-lighten {
  background-blend-mode: lighten;
}

.bg-blend-color-dodge {
  background-blend-mode: color-dodge;
}

.bg-blend-color-burn {
  background-blend-mode: color-burn;
}

.bg-blend-hard-light {
  background-blend-mode: hard-light;
}

.bg-blend-soft-light {
  background-blend-mode: soft-light;
}

.bg-blend-difference {
  background-blend-mode: difference;
}

.bg-blend-exclusion {
  background-blend-mode: exclusion;
}

.bg-blend-hue {
  background-blend-mode: hue;
}

.bg-blend-saturation {
  background-blend-mode: saturation;
}

.bg-blend-color {
  background-blend-mode: color;
}

.bg-blend-luminosity {
  background-blend-mode: luminosity;
}

/*
#widget-fstfn .btn {
    background-color: #ff9a26;
    color: #ffffff;
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 10px 20px;
    font-family: var(--bs-font-sans-serif);
    font-weight: 700;
    line-height: 20px;
    font-size: 1rem;
    text-align: center;
    text-transform: none;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: 0.2s;
    box-shadow: none;
}
#widget-fstfn > div {
    padding:0;
    border-radius: 0;
    box-shadow: none;
    background-color:unset;
}
#widget-fstfn .btn:hover {
     box-shadow: none;
    background-color: #fb7900;
    color: #ffffff;
}
#widget-fstfn > div > form > div > div:nth-child(7) > a{
    border-bottom: 1px dashed #ff9a26;
    color: #ff9a26;
}

#widget-fstfn .form__label span {
    font-size: 12px;
}

#widget-fstfn .input,
#widget-fstfn select {
    font-size: 14px;
    &::placeholder {
        font-family: inherit;
        font-size: inherit;
        line-height: inherit;
        font-weight: noinheritrmal;
    }
}
#widget-fstfn .form__col__50{
    width: 50%;
}
#widget-fstfn > div > form > div > div:nth-child(3),#widget-fstfn > div > form > div > div:nth-child(4){
    display:inline-block;
}
#widget-fstfn > div > form > div > div:nth-child(3){
    padding-right: 7.5px;
}
#widget-fstfn > div > form > div > div:nth-child(4){
    padding-left: 7.5px;
    padding-top: 5px;
}
#widget-fstfn > div > form > div > div:nth-child(4) > div{
    max-width: unset;
}
#widget-fstfn > div > form > div > div:nth-child(7){
    text-align: center;
}
#widget-fstfn > div > form > div > div:nth-child(8){
    text-align: center;
}
#widget-fstfn > div > form > div > div:nth-child(7) > a{
    border-bottom: 1px dashed #ff9a26;
    color: #ff9a26;
}
#widget-fstfn > div > form > div > div:nth-child(9) > span{
    font-size: 12px;
}
#widget-fstfn > div > form > div > div:nth-child(7) > div > div{
    padding-bottom: 7.5px;
}

#widget-fstfn > div > form > div > div:nth-child(2) > div > div > div:hover{
    background: #ff9a26;
}
#widget-fstfn h4 {
    color: #293b5f;
    font-size: 21px;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 25px;
    text-align: center;
}
.span-error {
    color: red;
    font-size: 12px;
}
#widget-fstfn .form_col svg{
    height: 24px;
    width: 24px;
}
#widget-fstfn .form__col{
    padding-top: 10px;
}
*/
