@charset "UTF-8";
/*!
 * Bootstrap Grid v5.2.3 (https://getbootstrap.com/)
 * Copyright 2011-2022 The Bootstrap Authors
 * Copyright 2011-2022 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
:root {
  --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-black: #000;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-gray-100: #f8f9fa;
  --bs-gray-200: #e9ecef;
  --bs-gray-300: #dee2e6;
  --bs-gray-400: #ced4da;
  --bs-gray-500: #adb5bd;
  --bs-gray-600: #6c757d;
  --bs-gray-700: #495057;
  --bs-gray-800: #343a40;
  --bs-gray-900: #212529;
  --bs-primary: #0d6efd;
  --bs-secondary: #6c757d;
  --bs-success: #198754;
  --bs-info: #0dcaf0;
  --bs-warning: #ffc107;
  --bs-danger: #dc3545;
  --bs-light: #f8f9fa;
  --bs-dark: #212529;
  --bs-primary-rgb: 13, 110, 253;
  --bs-secondary-rgb: 108, 117, 125;
  --bs-success-rgb: 25, 135, 84;
  --bs-info-rgb: 13, 202, 240;
  --bs-warning-rgb: 255, 193, 7;
  --bs-danger-rgb: 220, 53, 69;
  --bs-light-rgb: 248, 249, 250;
  --bs-dark-rgb: 33, 37, 41;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-body-color-rgb: 33, 37, 41;
  --bs-body-bg-rgb: 255, 255, 255;
  --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0)
  );
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #212529;
  --bs-body-bg: #fff;
  --bs-border-width: 1px;
  --bs-border-style: solid;
  --bs-border-color: #dee2e6;
  --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
  --bs-border-radius: 0.375rem;
  --bs-border-radius-sm: 0.25rem;
  --bs-border-radius-lg: 0.5rem;
  --bs-border-radius-xl: 1rem;
  --bs-border-radius-2xl: 2rem;
  --bs-border-radius-pill: 50rem;
  --bs-link-color: #0d6efd;
  --bs-link-hover-color: #0a58ca;
  --bs-code-color: #d63384;
  --bs-highlight-bg: #fff3cd;
}

/* .container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .container,
  .container-sm {
    max-width: 540px;
  }
}
@media (min-width: 1024px) {
  .container,
  .container-md,
  .container-sm {
    max-width: 720px;
  }
}
@media (min-width: 1209px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm {
    max-width: 960px;
  }
}
@media (min-width: 1900px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1140px;
  }
}
@media (min-width: 2560px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1320px;
  }
} */
.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  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 > * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-flex-negative: 0;
  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 {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0%;
  flex: 1 0 0%;
}

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

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

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

.row-cols-3 > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 33.3333333333%;
}

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

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

.row-cols-6 > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 16.6666666667%;
}

.col-auto {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
}

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

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

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

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

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

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

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

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

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

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

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

.col-12 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  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: 768px) {
  .col-sm {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
  }
  .row-cols-sm-auto > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-sm-1 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-sm-2 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-sm-3 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-sm-4 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-sm-5 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-sm-6 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-sm-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-sm-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-sm-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-sm-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-sm-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-sm-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-sm-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-sm-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    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: 1024px) {
  .col-md {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
  }
  .row-cols-md-auto > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-md-1 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-md-2 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-md-3 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-md-4 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-md-5 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-md-6 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-md-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    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: 1209px) {
  .col-lg {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
  }
  .row-cols-lg-auto > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-lg-1 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-lg-2 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-lg-3 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-lg-4 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-lg-5 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-lg-6 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-lg-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-lg-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-lg-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    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: 1900px) {
  .col-xl {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
  }
  .row-cols-xl-auto > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xl-1 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xl-2 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xl-3 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xl-4 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xl-5 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xl-6 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xl-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xl-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xl-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xl-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xl-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xl-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xl-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xl-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    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: 2560px) {
  .col-xxl {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
  }
  .row-cols-xxl-auto > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xxl-1 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xxl-2 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xxl-3 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xxl-4 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xxl-5 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xxl-6 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xxl-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .col-xxl-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xxl-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xxl-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xxl-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xxl-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xxl-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xxl-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xxl-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    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;
  }
}
.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: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-inline-flex {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}

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

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

.flex-row {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}

.flex-column {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}

.flex-row-reverse {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: reverse !important;
  -ms-flex-direction: row-reverse !important;
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: reverse !important;
  -ms-flex-direction: column-reverse !important;
  flex-direction: column-reverse !important;
}

.flex-grow-0 {
  -webkit-box-flex: 0 !important;
  -ms-flex-positive: 0 !important;
  flex-grow: 0 !important;
}

.flex-grow-1 {
  -webkit-box-flex: 1 !important;
  -ms-flex-positive: 1 !important;
  flex-grow: 1 !important;
}

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

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

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

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

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

.justify-content-start {
  -webkit-box-pack: start !important;
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}

.justify-content-end {
  -webkit-box-pack: end !important;
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}

.justify-content-center {
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.justify-content-between {
  -webkit-box-pack: justify !important;
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}

.justify-content-around {
  -ms-flex-pack: distribute !important;
  justify-content: space-around !important;
}

.justify-content-evenly {
  -webkit-box-pack: space-evenly !important;
  -ms-flex-pack: space-evenly !important;
  justify-content: space-evenly !important;
}

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

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

.align-items-center {
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
}

.align-items-baseline {
  -webkit-box-align: baseline !important;
  -ms-flex-align: baseline !important;
  align-items: baseline !important;
}

.align-items-stretch {
  -webkit-box-align: stretch !important;
  -ms-flex-align: stretch !important;
  align-items: stretch !important;
}

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

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

.align-content-center {
  -ms-flex-line-pack: center !important;
  align-content: center !important;
}

.align-content-between {
  -ms-flex-line-pack: justify !important;
  align-content: space-between !important;
}

.align-content-around {
  -ms-flex-line-pack: distribute !important;
  align-content: space-around !important;
}

.align-content-stretch {
  -ms-flex-line-pack: stretch !important;
  align-content: stretch !important;
}

.align-self-auto {
  -ms-flex-item-align: auto !important;
  align-self: auto !important;
}

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

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

.align-self-center {
  -ms-flex-item-align: center !important;
  align-self: center !important;
}

.align-self-baseline {
  -ms-flex-item-align: baseline !important;
  align-self: baseline !important;
}

.align-self-stretch {
  -ms-flex-item-align: stretch !important;
  align-self: stretch !important;
}

.order-first {
  -webkit-box-ordinal-group: 0 !important;
  -ms-flex-order: -1 !important;
  order: -1 !important;
}

.order-0 {
  -webkit-box-ordinal-group: 1 !important;
  -ms-flex-order: 0 !important;
  order: 0 !important;
}

.order-1 {
  -webkit-box-ordinal-group: 2 !important;
  -ms-flex-order: 1 !important;
  order: 1 !important;
}

.order-2 {
  -webkit-box-ordinal-group: 3 !important;
  -ms-flex-order: 2 !important;
  order: 2 !important;
}

.order-3 {
  -webkit-box-ordinal-group: 4 !important;
  -ms-flex-order: 3 !important;
  order: 3 !important;
}

.order-4 {
  -webkit-box-ordinal-group: 5 !important;
  -ms-flex-order: 4 !important;
  order: 4 !important;
}

.order-5 {
  -webkit-box-ordinal-group: 6 !important;
  -ms-flex-order: 5 !important;
  order: 5 !important;
}

.order-last {
  -webkit-box-ordinal-group: 7 !important;
  -ms-flex-order: 6 !important;
  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;
}

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

@media (min-width: 768px) {
  .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: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-sm-none {
    display: none !important;
  }
  .flex-sm-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-sm-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-sm-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-sm-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .flex-sm-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-sm-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-sm-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .justify-content-sm-evenly {
    -webkit-box-pack: space-evenly !important;
    -ms-flex-pack: space-evenly !important;
    justify-content: space-evenly !important;
  }
  .align-items-sm-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-sm-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-sm-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-sm-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-sm-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-sm-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-sm-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
  .order-sm-first {
    -webkit-box-ordinal-group: 0 !important;
    -ms-flex-order: -1 !important;
    order: -1 !important;
  }
  .order-sm-0 {
    -webkit-box-ordinal-group: 1 !important;
    -ms-flex-order: 0 !important;
    order: 0 !important;
  }
  .order-sm-1 {
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    order: 1 !important;
  }
  .order-sm-2 {
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    order: 2 !important;
  }
  .order-sm-3 {
    -webkit-box-ordinal-group: 4 !important;
    -ms-flex-order: 3 !important;
    order: 3 !important;
  }
  .order-sm-4 {
    -webkit-box-ordinal-group: 5 !important;
    -ms-flex-order: 4 !important;
    order: 4 !important;
  }
  .order-sm-5 {
    -webkit-box-ordinal-group: 6 !important;
    -ms-flex-order: 5 !important;
    order: 5 !important;
  }
  .order-sm-last {
    -webkit-box-ordinal-group: 7 !important;
    -ms-flex-order: 6 !important;
    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;
  }
  .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;
  }
}
@media (min-width: 1024px) {
  .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: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-md-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-md-none {
    display: none !important;
  }
  .flex-md-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-md-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-md-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-md-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .flex-md-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-md-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-md-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .justify-content-md-evenly {
    -webkit-box-pack: space-evenly !important;
    -ms-flex-pack: space-evenly !important;
    justify-content: space-evenly !important;
  }
  .align-items-md-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-md-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-md-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-md-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-md-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-md-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-md-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-md-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-md-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-md-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-md-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-md-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-md-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-md-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
  .order-md-first {
    -webkit-box-ordinal-group: 0 !important;
    -ms-flex-order: -1 !important;
    order: -1 !important;
  }
  .order-md-0 {
    -webkit-box-ordinal-group: 1 !important;
    -ms-flex-order: 0 !important;
    order: 0 !important;
  }
  .order-md-1 {
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    order: 1 !important;
  }
  .order-md-2 {
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    order: 2 !important;
  }
  .order-md-3 {
    -webkit-box-ordinal-group: 4 !important;
    -ms-flex-order: 3 !important;
    order: 3 !important;
  }
  .order-md-4 {
    -webkit-box-ordinal-group: 5 !important;
    -ms-flex-order: 4 !important;
    order: 4 !important;
  }
  .order-md-5 {
    -webkit-box-ordinal-group: 6 !important;
    -ms-flex-order: 5 !important;
    order: 5 !important;
  }
  .order-md-last {
    -webkit-box-ordinal-group: 7 !important;
    -ms-flex-order: 6 !important;
    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;
  }
  .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;
  }
}
@media (min-width: 1209px) {
  .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: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-lg-none {
    display: none !important;
  }
  .flex-lg-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-lg-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-lg-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-lg-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .flex-lg-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-lg-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-lg-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .justify-content-lg-evenly {
    -webkit-box-pack: space-evenly !important;
    -ms-flex-pack: space-evenly !important;
    justify-content: space-evenly !important;
  }
  .align-items-lg-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-lg-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-lg-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-lg-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-lg-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-lg-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-lg-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
  .order-lg-first {
    -webkit-box-ordinal-group: 0 !important;
    -ms-flex-order: -1 !important;
    order: -1 !important;
  }
  .order-lg-0 {
    -webkit-box-ordinal-group: 1 !important;
    -ms-flex-order: 0 !important;
    order: 0 !important;
  }
  .order-lg-1 {
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    order: 1 !important;
  }
  .order-lg-2 {
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    order: 2 !important;
  }
  .order-lg-3 {
    -webkit-box-ordinal-group: 4 !important;
    -ms-flex-order: 3 !important;
    order: 3 !important;
  }
  .order-lg-4 {
    -webkit-box-ordinal-group: 5 !important;
    -ms-flex-order: 4 !important;
    order: 4 !important;
  }
  .order-lg-5 {
    -webkit-box-ordinal-group: 6 !important;
    -ms-flex-order: 5 !important;
    order: 5 !important;
  }
  .order-lg-last {
    -webkit-box-ordinal-group: 7 !important;
    -ms-flex-order: 6 !important;
    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;
  }
  .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;
  }
}
@media (min-width: 1900px) {
  .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: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-xl-none {
    display: none !important;
  }
  .flex-xl-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-xl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-xl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-xl-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .flex-xl-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xl-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-xl-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .justify-content-xl-evenly {
    -webkit-box-pack: space-evenly !important;
    -ms-flex-pack: space-evenly !important;
    justify-content: space-evenly !important;
  }
  .align-items-xl-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-xl-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-xl-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-xl-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-xl-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-xl-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-xl-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
  .order-xl-first {
    -webkit-box-ordinal-group: 0 !important;
    -ms-flex-order: -1 !important;
    order: -1 !important;
  }
  .order-xl-0 {
    -webkit-box-ordinal-group: 1 !important;
    -ms-flex-order: 0 !important;
    order: 0 !important;
  }
  .order-xl-1 {
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    order: 1 !important;
  }
  .order-xl-2 {
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    order: 2 !important;
  }
  .order-xl-3 {
    -webkit-box-ordinal-group: 4 !important;
    -ms-flex-order: 3 !important;
    order: 3 !important;
  }
  .order-xl-4 {
    -webkit-box-ordinal-group: 5 !important;
    -ms-flex-order: 4 !important;
    order: 4 !important;
  }
  .order-xl-5 {
    -webkit-box-ordinal-group: 6 !important;
    -ms-flex-order: 5 !important;
    order: 5 !important;
  }
  .order-xl-last {
    -webkit-box-ordinal-group: 7 !important;
    -ms-flex-order: 6 !important;
    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;
  }
  .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;
  }
}
@media (min-width: 2560px) {
  .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: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-xxl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-xxl-none {
    display: none !important;
  }
  .flex-xxl-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-xxl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-xxl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-xxl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-xxl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-xxl-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-xxl-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-xxl-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-xxl-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .flex-xxl-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-xxl-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-xxl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xxl-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-xxl-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-xxl-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-xxl-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-xxl-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .justify-content-xxl-evenly {
    -webkit-box-pack: space-evenly !important;
    -ms-flex-pack: space-evenly !important;
    justify-content: space-evenly !important;
  }
  .align-items-xxl-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-xxl-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-xxl-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-xxl-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-xxl-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-xxl-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-xxl-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-xxl-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-xxl-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-xxl-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-xxl-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-xxl-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-xxl-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-xxl-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-xxl-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-xxl-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-xxl-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
  .order-xxl-first {
    -webkit-box-ordinal-group: 0 !important;
    -ms-flex-order: -1 !important;
    order: -1 !important;
  }
  .order-xxl-0 {
    -webkit-box-ordinal-group: 1 !important;
    -ms-flex-order: 0 !important;
    order: 0 !important;
  }
  .order-xxl-1 {
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    order: 1 !important;
  }
  .order-xxl-2 {
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    order: 2 !important;
  }
  .order-xxl-3 {
    -webkit-box-ordinal-group: 4 !important;
    -ms-flex-order: 3 !important;
    order: 3 !important;
  }
  .order-xxl-4 {
    -webkit-box-ordinal-group: 5 !important;
    -ms-flex-order: 4 !important;
    order: 4 !important;
  }
  .order-xxl-5 {
    -webkit-box-ordinal-group: 6 !important;
    -ms-flex-order: 5 !important;
    order: 5 !important;
  }
  .order-xxl-last {
    -webkit-box-ordinal-group: 7 !important;
    -ms-flex-order: 6 !important;
    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;
  }
  .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;
  }
}
@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: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-print-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-print-none {
    display: none !important;
  }
}

/*!
 * Bootstrap Utilities v5.3.3 (https://getbootstrap.com/)
 * Copyright 2011-2024 The Bootstrap Authors
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
:root,
[data-bs-theme=light] {
  --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-black: #000;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-gray-100: #f8f9fa;
  --bs-gray-200: #e9ecef;
  --bs-gray-300: #dee2e6;
  --bs-gray-400: #ced4da;
  --bs-gray-500: #adb5bd;
  --bs-gray-600: #6c757d;
  --bs-gray-700: #495057;
  --bs-gray-800: #343a40;
  --bs-gray-900: #212529;
  --bs-primary: #0d6efd;
  --bs-secondary: #6c757d;
  --bs-success: #198754;
  --bs-info: #0dcaf0;
  --bs-warning: #ffc107;
  --bs-danger: #dc3545;
  --bs-light: #f8f9fa;
  --bs-dark: #212529;
  --bs-primary-rgb: 13, 110, 253;
  --bs-secondary-rgb: 108, 117, 125;
  --bs-success-rgb: 25, 135, 84;
  --bs-info-rgb: 13, 202, 240;
  --bs-warning-rgb: 255, 193, 7;
  --bs-danger-rgb: 220, 53, 69;
  --bs-light-rgb: 248, 249, 250;
  --bs-dark-rgb: 33, 37, 41;
  --bs-primary-text-emphasis: #052c65;
  --bs-secondary-text-emphasis: #2b2f32;
  --bs-success-text-emphasis: #0a3622;
  --bs-info-text-emphasis: #055160;
  --bs-warning-text-emphasis: #664d03;
  --bs-danger-text-emphasis: #58151c;
  --bs-light-text-emphasis: #495057;
  --bs-dark-text-emphasis: #495057;
  --bs-primary-bg-subtle: #cfe2ff;
  --bs-secondary-bg-subtle: #e2e3e5;
  --bs-success-bg-subtle: #d1e7dd;
  --bs-info-bg-subtle: #cff4fc;
  --bs-warning-bg-subtle: #fff3cd;
  --bs-danger-bg-subtle: #f8d7da;
  --bs-light-bg-subtle: #fcfcfd;
  --bs-dark-bg-subtle: #ced4da;
  --bs-primary-border-subtle: #9ec5fe;
  --bs-secondary-border-subtle: #c4c8cb;
  --bs-success-border-subtle: #a3cfbb;
  --bs-info-border-subtle: #9eeaf9;
  --bs-warning-border-subtle: #ffe69c;
  --bs-danger-border-subtle: #f1aeb5;
  --bs-light-border-subtle: #e9ecef;
  --bs-dark-border-subtle: #adb5bd;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0)
  );
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #212529;
  --bs-body-color-rgb: 33, 37, 41;
  --bs-body-bg: #fff;
  --bs-body-bg-rgb: 255, 255, 255;
  --bs-emphasis-color: #000;
  --bs-emphasis-color-rgb: 0, 0, 0;
  --bs-secondary-color: rgba(33, 37, 41, 0.75);
  --bs-secondary-color-rgb: 33, 37, 41;
  --bs-secondary-bg: #e9ecef;
  --bs-secondary-bg-rgb: 233, 236, 239;
  --bs-tertiary-color: rgba(33, 37, 41, 0.5);
  --bs-tertiary-color-rgb: 33, 37, 41;
  --bs-tertiary-bg: #f8f9fa;
  --bs-tertiary-bg-rgb: 248, 249, 250;
  --bs-heading-color: inherit;
  --bs-link-color: #0d6efd;
  --bs-link-color-rgb: 13, 110, 253;
  --bs-link-decoration: underline;
  --bs-link-hover-color: #0a58ca;
  --bs-link-hover-color-rgb: 10, 88, 202;
  --bs-code-color: #d63384;
  --bs-highlight-color: #212529;
  --bs-highlight-bg: #fff3cd;
  --bs-border-width: 1px;
  --bs-border-style: solid;
  --bs-border-color: #dee2e6;
  --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
  --bs-border-radius: 0.375rem;
  --bs-border-radius-sm: 0.25rem;
  --bs-border-radius-lg: 0.5rem;
  --bs-border-radius-xl: 1rem;
  --bs-border-radius-xxl: 2rem;
  --bs-border-radius-2xl: var(--bs-border-radius-xxl);
  --bs-border-radius-pill: 50rem;
  --bs-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  --bs-box-shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  --bs-box-shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  --bs-box-shadow-inset: inset 0 1px 2px rgba(0, 0, 0, 0.075);
  --bs-focus-ring-width: 0.25rem;
  --bs-focus-ring-opacity: 0.25;
  --bs-focus-ring-color: rgba(13, 110, 253, 0.25);
  --bs-form-valid-color: #198754;
  --bs-form-valid-border-color: #198754;
  --bs-form-invalid-color: #dc3545;
  --bs-form-invalid-border-color: #dc3545;
}

[data-bs-theme=dark] {
  color-scheme: dark;
  --bs-body-color: #dee2e6;
  --bs-body-color-rgb: 222, 226, 230;
  --bs-body-bg: #212529;
  --bs-body-bg-rgb: 33, 37, 41;
  --bs-emphasis-color: #fff;
  --bs-emphasis-color-rgb: 255, 255, 255;
  --bs-secondary-color: rgba(222, 226, 230, 0.75);
  --bs-secondary-color-rgb: 222, 226, 230;
  --bs-secondary-bg: #343a40;
  --bs-secondary-bg-rgb: 52, 58, 64;
  --bs-tertiary-color: rgba(222, 226, 230, 0.5);
  --bs-tertiary-color-rgb: 222, 226, 230;
  --bs-tertiary-bg: #2b3035;
  --bs-tertiary-bg-rgb: 43, 48, 53;
  --bs-primary-text-emphasis: #6ea8fe;
  --bs-secondary-text-emphasis: #a7acb1;
  --bs-success-text-emphasis: #75b798;
  --bs-info-text-emphasis: #6edff6;
  --bs-warning-text-emphasis: #ffda6a;
  --bs-danger-text-emphasis: #ea868f;
  --bs-light-text-emphasis: #f8f9fa;
  --bs-dark-text-emphasis: #dee2e6;
  --bs-primary-bg-subtle: #031633;
  --bs-secondary-bg-subtle: #161719;
  --bs-success-bg-subtle: #051b11;
  --bs-info-bg-subtle: #032830;
  --bs-warning-bg-subtle: #332701;
  --bs-danger-bg-subtle: #2c0b0e;
  --bs-light-bg-subtle: #343a40;
  --bs-dark-bg-subtle: #1a1d20;
  --bs-primary-border-subtle: #084298;
  --bs-secondary-border-subtle: #41464b;
  --bs-success-border-subtle: #0f5132;
  --bs-info-border-subtle: #087990;
  --bs-warning-border-subtle: #997404;
  --bs-danger-border-subtle: #842029;
  --bs-light-border-subtle: #495057;
  --bs-dark-border-subtle: #343a40;
  --bs-heading-color: inherit;
  --bs-link-color: #6ea8fe;
  --bs-link-hover-color: #8bb9fe;
  --bs-link-color-rgb: 110, 168, 254;
  --bs-link-hover-color-rgb: 139, 185, 254;
  --bs-code-color: #e685b5;
  --bs-highlight-color: #dee2e6;
  --bs-highlight-bg: #664d03;
  --bs-border-color: #495057;
  --bs-border-color-translucent: rgba(255, 255, 255, 0.15);
  --bs-form-valid-color: #75b798;
  --bs-form-valid-border-color: #75b798;
  --bs-form-invalid-color: #ea868f;
  --bs-form-invalid-border-color: #ea868f;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.icon-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 0.375rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration-color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 0.5));
  text-underline-offset: 0.25em;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.icon-link > .bi {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 1em;
  height: 1em;
  fill: currentcolor;
  -webkit-transition: 0.2s ease-in-out transform;
  transition: 0.2s ease-in-out transform;
}

@media (prefers-reduced-motion: reduce) {
  .icon-link > .bi {
    -webkit-transition: none;
    transition: none;
  }
}
.icon-link-hover:hover > .bi,
.icon-link-hover:focus-visible > .bi {
  -webkit-transform: var(--bs-icon-link-transform, translate3d(0.25em, 0, 0));
  transform: var(--bs-icon-link-transform, translate3d(0.25em, 0, 0));
}

.ratio {
  position: relative;
  width: 100%;
}

.ratio::before {
  display: block;
  padding-top: var(--bs-aspect-ratio);
  content: "";
}

.ratio > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

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

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

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

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

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

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

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

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

@media (min-width: 768px) {
  .sticky-sm-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-sm-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
@media (min-width: 1024px) {
  .sticky-md-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-md-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
@media (min-width: 1209px) {
  .sticky-lg-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-lg-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
@media (min-width: 1900px) {
  .sticky-xl-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-xl-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
@media (min-width: 2560px) {
  .sticky-xxl-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-xxl-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
.hstack {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-item-align: stretch;
  align-self: stretch;
}

.vstack {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-item-align: stretch;
  align-self: stretch;
}

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

.visually-hidden:not(caption),
.visually-hidden-focusable:not(:focus):not(:focus-within):not(caption) {
  position: absolute !important;
}

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

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

.vr {
  display: inline-block;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  width: var(--bs-border-width);
  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;
}

.object-fit-contain {
  -o-object-fit: contain !important;
  object-fit: contain !important;
}

.object-fit-cover {
  -o-object-fit: cover !important;
  object-fit: cover !important;
}

.object-fit-fill {
  -o-object-fit: fill !important;
  object-fit: fill !important;
}

.object-fit-scale {
  -o-object-fit: scale-down !important;
  object-fit: scale-down !important;
}

.object-fit-none {
  -o-object-fit: none !important;
  object-fit: 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;
}

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

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

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

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

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

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

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

.overflow-y-scroll {
  overflow-y: 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-inline-grid {
  display: inline-grid !important;
}

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

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

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

.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-inline-flex {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}

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

.shadow {
  -webkit-box-shadow: var(--bs-box-shadow) !important;
  box-shadow: var(--bs-box-shadow) !important;
}

.shadow-sm {
  -webkit-box-shadow: var(--bs-box-shadow-sm) !important;
  box-shadow: var(--bs-box-shadow-sm) !important;
}

.shadow-lg {
  -webkit-box-shadow: var(--bs-box-shadow-lg) !important;
  box-shadow: var(--bs-box-shadow-lg) !important;
}

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

.focus-ring-primary {
  --bs-focus-ring-color: rgba(
    var(--bs-primary-rgb),
    var(--bs-focus-ring-opacity)
  );
}

.focus-ring-secondary {
  --bs-focus-ring-color: rgba(
    var(--bs-secondary-rgb),
    var(--bs-focus-ring-opacity)
  );
}

.focus-ring-success {
  --bs-focus-ring-color: rgba(
    var(--bs-success-rgb),
    var(--bs-focus-ring-opacity)
  );
}

.focus-ring-info {
  --bs-focus-ring-color: rgba(var(--bs-info-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-warning {
  --bs-focus-ring-color: rgba(
    var(--bs-warning-rgb),
    var(--bs-focus-ring-opacity)
  );
}

.focus-ring-danger {
  --bs-focus-ring-color: rgba(
    var(--bs-danger-rgb),
    var(--bs-focus-ring-opacity)
  );
}

.focus-ring-light {
  --bs-focus-ring-color: rgba(
    var(--bs-light-rgb),
    var(--bs-focus-ring-opacity)
  );
}

.focus-ring-dark {
  --bs-focus-ring-color: rgba(var(--bs-dark-rgb), var(--bs-focus-ring-opacity));
}

.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 {
  -webkit-transform: translate(-50%, -50%) !important;
  transform: translate(-50%, -50%) !important;
}

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

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

.border {
  border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

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

.border-top {
  border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

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

.border-end {
  border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

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

.border-bottom {
  border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

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

.border-start {
  border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

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

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

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

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

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

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

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

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

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

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

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

.border-primary-subtle {
  border-color: var(--bs-primary-border-subtle) !important;
}

.border-secondary-subtle {
  border-color: var(--bs-secondary-border-subtle) !important;
}

.border-success-subtle {
  border-color: var(--bs-success-border-subtle) !important;
}

.border-info-subtle {
  border-color: var(--bs-info-border-subtle) !important;
}

.border-warning-subtle {
  border-color: var(--bs-warning-border-subtle) !important;
}

.border-danger-subtle {
  border-color: var(--bs-danger-border-subtle) !important;
}

.border-light-subtle {
  border-color: var(--bs-light-border-subtle) !important;
}

.border-dark-subtle {
  border-color: var(--bs-dark-border-subtle) !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;
}

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

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

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

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

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

.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 {
  -webkit-box-flex: 1 !important;
  -ms-flex: 1 1 auto !important;
  flex: 1 1 auto !important;
}

.flex-row {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}

.flex-column {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}

.flex-row-reverse {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: reverse !important;
  -ms-flex-direction: row-reverse !important;
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: reverse !important;
  -ms-flex-direction: column-reverse !important;
  flex-direction: column-reverse !important;
}

.flex-grow-0 {
  -webkit-box-flex: 0 !important;
  -ms-flex-positive: 0 !important;
  flex-grow: 0 !important;
}

.flex-grow-1 {
  -webkit-box-flex: 1 !important;
  -ms-flex-positive: 1 !important;
  flex-grow: 1 !important;
}

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

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

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

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

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

.justify-content-start {
  -webkit-box-pack: start !important;
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}

.justify-content-end {
  -webkit-box-pack: end !important;
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}

.justify-content-center {
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.justify-content-between {
  -webkit-box-pack: justify !important;
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}

.justify-content-around {
  -ms-flex-pack: distribute !important;
  justify-content: space-around !important;
}

.justify-content-evenly {
  -webkit-box-pack: space-evenly !important;
  -ms-flex-pack: space-evenly !important;
  justify-content: space-evenly !important;
}

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

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

.align-items-center {
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
}

.align-items-baseline {
  -webkit-box-align: baseline !important;
  -ms-flex-align: baseline !important;
  align-items: baseline !important;
}

.align-items-stretch {
  -webkit-box-align: stretch !important;
  -ms-flex-align: stretch !important;
  align-items: stretch !important;
}

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

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

.align-content-center {
  -ms-flex-line-pack: center !important;
  align-content: center !important;
}

.align-content-between {
  -ms-flex-line-pack: justify !important;
  align-content: space-between !important;
}

.align-content-around {
  -ms-flex-line-pack: distribute !important;
  align-content: space-around !important;
}

.align-content-stretch {
  -ms-flex-line-pack: stretch !important;
  align-content: stretch !important;
}

.align-self-auto {
  -ms-flex-item-align: auto !important;
  align-self: auto !important;
}

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

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

.align-self-center {
  -ms-flex-item-align: center !important;
  align-self: center !important;
}

.align-self-baseline {
  -ms-flex-item-align: baseline !important;
  align-self: baseline !important;
}

.align-self-stretch {
  -ms-flex-item-align: stretch !important;
  align-self: stretch !important;
}

.order-first {
  -webkit-box-ordinal-group: 0 !important;
  -ms-flex-order: -1 !important;
  order: -1 !important;
}

.order-0 {
  -webkit-box-ordinal-group: 1 !important;
  -ms-flex-order: 0 !important;
  order: 0 !important;
}

.order-1 {
  -webkit-box-ordinal-group: 2 !important;
  -ms-flex-order: 1 !important;
  order: 1 !important;
}

.order-2 {
  -webkit-box-ordinal-group: 3 !important;
  -ms-flex-order: 2 !important;
  order: 2 !important;
}

.order-3 {
  -webkit-box-ordinal-group: 4 !important;
  -ms-flex-order: 3 !important;
  order: 3 !important;
}

.order-4 {
  -webkit-box-ordinal-group: 5 !important;
  -ms-flex-order: 4 !important;
  order: 4 !important;
}

.order-5 {
  -webkit-box-ordinal-group: 6 !important;
  -ms-flex-order: 5 !important;
  order: 5 !important;
}

.order-last {
  -webkit-box-ordinal-group: 7 !important;
  -ms-flex-order: 6 !important;
  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;
}

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

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

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

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

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

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

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

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

.column-gap-0 {
  -moz-column-gap: 0 !important;
  -webkit-column-gap: 0 !important;
  column-gap: 0 !important;
}

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

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

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

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

.column-gap-5 {
  -moz-column-gap: 3rem !important;
  -webkit-column-gap: 3rem !important;
  column-gap: 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-lighter {
  font-weight: lighter !important;
}

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

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

.fw-medium {
  font-weight: 500 !important;
}

.fw-semibold {
  font-weight: 600 !important;
}

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

.fw-bolder {
  font-weight: bolder !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: var(--bs-secondary-color) !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-body-secondary {
  --bs-text-opacity: 1;
  color: var(--bs-secondary-color) !important;
}

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

.text-body-emphasis {
  --bs-text-opacity: 1;
  color: var(--bs-emphasis-color) !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;
}

.text-primary-emphasis {
  color: var(--bs-primary-text-emphasis) !important;
}

.text-secondary-emphasis {
  color: var(--bs-secondary-text-emphasis) !important;
}

.text-success-emphasis {
  color: var(--bs-success-text-emphasis) !important;
}

.text-info-emphasis {
  color: var(--bs-info-text-emphasis) !important;
}

.text-warning-emphasis {
  color: var(--bs-warning-text-emphasis) !important;
}

.text-danger-emphasis {
  color: var(--bs-danger-text-emphasis) !important;
}

.text-light-emphasis {
  color: var(--bs-light-text-emphasis) !important;
}

.text-dark-emphasis {
  color: var(--bs-dark-text-emphasis) !important;
}

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

.link-opacity-10-hover:hover {
  --bs-link-opacity: 0.1;
}

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

.link-opacity-25-hover:hover {
  --bs-link-opacity: 0.25;
}

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

.link-opacity-50-hover:hover {
  --bs-link-opacity: 0.5;
}

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

.link-opacity-75-hover:hover {
  --bs-link-opacity: 0.75;
}

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

.link-opacity-100-hover:hover {
  --bs-link-opacity: 1;
}

.link-offset-1 {
  text-underline-offset: 0.125em !important;
}

.link-offset-1-hover:hover {
  text-underline-offset: 0.125em !important;
}

.link-offset-2 {
  text-underline-offset: 0.25em !important;
}

.link-offset-2-hover:hover {
  text-underline-offset: 0.25em !important;
}

.link-offset-3 {
  text-underline-offset: 0.375em !important;
}

.link-offset-3-hover:hover {
  text-underline-offset: 0.375em !important;
}

.link-underline-primary {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-primary-rgb), var(--bs-link-underline-opacity)) !important;
}

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

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

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

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

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

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

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

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

.link-underline-opacity-0 {
  --bs-link-underline-opacity: 0;
}

.link-underline-opacity-0-hover:hover {
  --bs-link-underline-opacity: 0;
}

.link-underline-opacity-10 {
  --bs-link-underline-opacity: 0.1;
}

.link-underline-opacity-10-hover:hover {
  --bs-link-underline-opacity: 0.1;
}

.link-underline-opacity-25 {
  --bs-link-underline-opacity: 0.25;
}

.link-underline-opacity-25-hover:hover {
  --bs-link-underline-opacity: 0.25;
}

.link-underline-opacity-50 {
  --bs-link-underline-opacity: 0.5;
}

.link-underline-opacity-50-hover:hover {
  --bs-link-underline-opacity: 0.5;
}

.link-underline-opacity-75 {
  --bs-link-underline-opacity: 0.75;
}

.link-underline-opacity-75-hover:hover {
  --bs-link-underline-opacity: 0.75;
}

.link-underline-opacity-100 {
  --bs-link-underline-opacity: 1;
}

.link-underline-opacity-100-hover:hover {
  --bs-link-underline-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-body-secondary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-secondary-bg-rgb), var(--bs-bg-opacity)) !important;
}

.bg-body-tertiary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-tertiary-bg-rgb), var(--bs-bg-opacity)) !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-primary-subtle {
  background-color: var(--bs-primary-bg-subtle) !important;
}

.bg-secondary-subtle {
  background-color: var(--bs-secondary-bg-subtle) !important;
}

.bg-success-subtle {
  background-color: var(--bs-success-bg-subtle) !important;
}

.bg-info-subtle {
  background-color: var(--bs-info-bg-subtle) !important;
}

.bg-warning-subtle {
  background-color: var(--bs-warning-bg-subtle) !important;
}

.bg-danger-subtle {
  background-color: var(--bs-danger-bg-subtle) !important;
}

.bg-light-subtle {
  background-color: var(--bs-light-bg-subtle) !important;
}

.bg-dark-subtle {
  background-color: var(--bs-dark-bg-subtle) !important;
}

.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: var(--bs-border-radius) !important;
}

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

.rounded-1 {
  border-radius: var(--bs-border-radius-sm) !important;
}

.rounded-2 {
  border-radius: var(--bs-border-radius) !important;
}

.rounded-3 {
  border-radius: var(--bs-border-radius-lg) !important;
}

.rounded-4 {
  border-radius: var(--bs-border-radius-xl) !important;
}

.rounded-5 {
  border-radius: var(--bs-border-radius-xxl) !important;
}

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

.rounded-pill {
  border-radius: var(--bs-border-radius-pill) !important;
}

.rounded-top {
  border-top-left-radius: var(--bs-border-radius) !important;
  border-top-right-radius: var(--bs-border-radius) !important;
}

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

.rounded-top-1 {
  border-top-left-radius: var(--bs-border-radius-sm) !important;
  border-top-right-radius: var(--bs-border-radius-sm) !important;
}

.rounded-top-2 {
  border-top-left-radius: var(--bs-border-radius) !important;
  border-top-right-radius: var(--bs-border-radius) !important;
}

.rounded-top-3 {
  border-top-left-radius: var(--bs-border-radius-lg) !important;
  border-top-right-radius: var(--bs-border-radius-lg) !important;
}

.rounded-top-4 {
  border-top-left-radius: var(--bs-border-radius-xl) !important;
  border-top-right-radius: var(--bs-border-radius-xl) !important;
}

.rounded-top-5 {
  border-top-left-radius: var(--bs-border-radius-xxl) !important;
  border-top-right-radius: var(--bs-border-radius-xxl) !important;
}

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

.rounded-top-pill {
  border-top-left-radius: var(--bs-border-radius-pill) !important;
  border-top-right-radius: var(--bs-border-radius-pill) !important;
}

.rounded-end {
  border-top-right-radius: var(--bs-border-radius) !important;
  border-bottom-right-radius: var(--bs-border-radius) !important;
}

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

.rounded-end-1 {
  border-top-right-radius: var(--bs-border-radius-sm) !important;
  border-bottom-right-radius: var(--bs-border-radius-sm) !important;
}

.rounded-end-2 {
  border-top-right-radius: var(--bs-border-radius) !important;
  border-bottom-right-radius: var(--bs-border-radius) !important;
}

.rounded-end-3 {
  border-top-right-radius: var(--bs-border-radius-lg) !important;
  border-bottom-right-radius: var(--bs-border-radius-lg) !important;
}

.rounded-end-4 {
  border-top-right-radius: var(--bs-border-radius-xl) !important;
  border-bottom-right-radius: var(--bs-border-radius-xl) !important;
}

.rounded-end-5 {
  border-top-right-radius: var(--bs-border-radius-xxl) !important;
  border-bottom-right-radius: var(--bs-border-radius-xxl) !important;
}

.rounded-end-circle {
  border-top-right-radius: 50% !important;
  border-bottom-right-radius: 50% !important;
}

.rounded-end-pill {
  border-top-right-radius: var(--bs-border-radius-pill) !important;
  border-bottom-right-radius: var(--bs-border-radius-pill) !important;
}

.rounded-bottom {
  border-bottom-right-radius: var(--bs-border-radius) !important;
  border-bottom-left-radius: var(--bs-border-radius) !important;
}

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

.rounded-bottom-1 {
  border-bottom-right-radius: var(--bs-border-radius-sm) !important;
  border-bottom-left-radius: var(--bs-border-radius-sm) !important;
}

.rounded-bottom-2 {
  border-bottom-right-radius: var(--bs-border-radius) !important;
  border-bottom-left-radius: var(--bs-border-radius) !important;
}

.rounded-bottom-3 {
  border-bottom-right-radius: var(--bs-border-radius-lg) !important;
  border-bottom-left-radius: var(--bs-border-radius-lg) !important;
}

.rounded-bottom-4 {
  border-bottom-right-radius: var(--bs-border-radius-xl) !important;
  border-bottom-left-radius: var(--bs-border-radius-xl) !important;
}

.rounded-bottom-5 {
  border-bottom-right-radius: var(--bs-border-radius-xxl) !important;
  border-bottom-left-radius: var(--bs-border-radius-xxl) !important;
}

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

.rounded-bottom-pill {
  border-bottom-right-radius: var(--bs-border-radius-pill) !important;
  border-bottom-left-radius: var(--bs-border-radius-pill) !important;
}

.rounded-start {
  border-bottom-left-radius: var(--bs-border-radius) !important;
  border-top-left-radius: var(--bs-border-radius) !important;
}

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

.rounded-start-1 {
  border-bottom-left-radius: var(--bs-border-radius-sm) !important;
  border-top-left-radius: var(--bs-border-radius-sm) !important;
}

.rounded-start-2 {
  border-bottom-left-radius: var(--bs-border-radius) !important;
  border-top-left-radius: var(--bs-border-radius) !important;
}

.rounded-start-3 {
  border-bottom-left-radius: var(--bs-border-radius-lg) !important;
  border-top-left-radius: var(--bs-border-radius-lg) !important;
}

.rounded-start-4 {
  border-bottom-left-radius: var(--bs-border-radius-xl) !important;
  border-top-left-radius: var(--bs-border-radius-xl) !important;
}

.rounded-start-5 {
  border-bottom-left-radius: var(--bs-border-radius-xxl) !important;
  border-top-left-radius: var(--bs-border-radius-xxl) !important;
}

.rounded-start-circle {
  border-bottom-left-radius: 50% !important;
  border-top-left-radius: 50% !important;
}

.rounded-start-pill {
  border-bottom-left-radius: var(--bs-border-radius-pill) !important;
  border-top-left-radius: var(--bs-border-radius-pill) !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

.z-n1 {
  z-index: -1 !important;
}

.z-0 {
  z-index: 0 !important;
}

.z-1 {
  z-index: 1 !important;
}

.z-2 {
  z-index: 2 !important;
}

.z-3 {
  z-index: 3 !important;
}

@media (min-width: 768px) {
  .w-sm-auto {
    width: auto !important;
  }
  .float-sm-start {
    float: left !important;
  }
  .float-sm-end {
    float: right !important;
  }
  .float-sm-none {
    float: none !important;
  }
  .object-fit-sm-contain {
    -o-object-fit: contain !important;
    object-fit: contain !important;
  }
  .object-fit-sm-cover {
    -o-object-fit: cover !important;
    object-fit: cover !important;
  }
  .object-fit-sm-fill {
    -o-object-fit: fill !important;
    object-fit: fill !important;
  }
  .object-fit-sm-scale {
    -o-object-fit: scale-down !important;
    object-fit: scale-down !important;
  }
  .object-fit-sm-none {
    -o-object-fit: none !important;
    object-fit: 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-inline-grid {
    display: inline-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: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-sm-none {
    display: none !important;
  }
  .flex-sm-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-sm-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-sm-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-sm-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .flex-sm-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-sm-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-sm-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .justify-content-sm-evenly {
    -webkit-box-pack: space-evenly !important;
    -ms-flex-pack: space-evenly !important;
    justify-content: space-evenly !important;
  }
  .align-items-sm-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-sm-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-sm-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-sm-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-sm-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-sm-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-sm-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
  .order-sm-first {
    -webkit-box-ordinal-group: 0 !important;
    -ms-flex-order: -1 !important;
    order: -1 !important;
  }
  .order-sm-0 {
    -webkit-box-ordinal-group: 1 !important;
    -ms-flex-order: 0 !important;
    order: 0 !important;
  }
  .order-sm-1 {
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    order: 1 !important;
  }
  .order-sm-2 {
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    order: 2 !important;
  }
  .order-sm-3 {
    -webkit-box-ordinal-group: 4 !important;
    -ms-flex-order: 3 !important;
    order: 3 !important;
  }
  .order-sm-4 {
    -webkit-box-ordinal-group: 5 !important;
    -ms-flex-order: 4 !important;
    order: 4 !important;
  }
  .order-sm-5 {
    -webkit-box-ordinal-group: 6 !important;
    -ms-flex-order: 5 !important;
    order: 5 !important;
  }
  .order-sm-last {
    -webkit-box-ordinal-group: 7 !important;
    -ms-flex-order: 6 !important;
    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;
  }
  .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;
  }
  .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;
  }
  .row-gap-sm-0 {
    row-gap: 0 !important;
  }
  .row-gap-sm-1 {
    row-gap: 0.25rem !important;
  }
  .row-gap-sm-2 {
    row-gap: 0.5rem !important;
  }
  .row-gap-sm-3 {
    row-gap: 1rem !important;
  }
  .row-gap-sm-4 {
    row-gap: 1.5rem !important;
  }
  .row-gap-sm-5 {
    row-gap: 3rem !important;
  }
  .column-gap-sm-0 {
    -moz-column-gap: 0 !important;
    -webkit-column-gap: 0 !important;
    column-gap: 0 !important;
  }
  .column-gap-sm-1 {
    -moz-column-gap: 0.25rem !important;
    -webkit-column-gap: 0.25rem !important;
    column-gap: 0.25rem !important;
  }
  .column-gap-sm-2 {
    -moz-column-gap: 0.5rem !important;
    -webkit-column-gap: 0.5rem !important;
    column-gap: 0.5rem !important;
  }
  .column-gap-sm-3 {
    -moz-column-gap: 1rem !important;
    -webkit-column-gap: 1rem !important;
    column-gap: 1rem !important;
  }
  .column-gap-sm-4 {
    -moz-column-gap: 1.5rem !important;
    -webkit-column-gap: 1.5rem !important;
    column-gap: 1.5rem !important;
  }
  .column-gap-sm-5 {
    -moz-column-gap: 3rem !important;
    -webkit-column-gap: 3rem !important;
    column-gap: 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: 1024px) {
  .float-md-start {
    float: left !important;
  }
  .float-md-end {
    float: right !important;
  }
  .float-md-none {
    float: none !important;
  }
  .object-fit-md-contain {
    -o-object-fit: contain !important;
    object-fit: contain !important;
  }
  .object-fit-md-cover {
    -o-object-fit: cover !important;
    object-fit: cover !important;
  }
  .object-fit-md-fill {
    -o-object-fit: fill !important;
    object-fit: fill !important;
  }
  .object-fit-md-scale {
    -o-object-fit: scale-down !important;
    object-fit: scale-down !important;
  }
  .object-fit-md-none {
    -o-object-fit: none !important;
    object-fit: 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-inline-grid {
    display: inline-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: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-md-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-md-none {
    display: none !important;
  }
  .flex-md-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-md-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-md-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-md-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .flex-md-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-md-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-md-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .justify-content-md-evenly {
    -webkit-box-pack: space-evenly !important;
    -ms-flex-pack: space-evenly !important;
    justify-content: space-evenly !important;
  }
  .align-items-md-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-md-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-md-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-md-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-md-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-md-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-md-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-md-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-md-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-md-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-md-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-md-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-md-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-md-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
  .order-md-first {
    -webkit-box-ordinal-group: 0 !important;
    -ms-flex-order: -1 !important;
    order: -1 !important;
  }
  .order-md-0 {
    -webkit-box-ordinal-group: 1 !important;
    -ms-flex-order: 0 !important;
    order: 0 !important;
  }
  .order-md-1 {
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    order: 1 !important;
  }
  .order-md-2 {
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    order: 2 !important;
  }
  .order-md-3 {
    -webkit-box-ordinal-group: 4 !important;
    -ms-flex-order: 3 !important;
    order: 3 !important;
  }
  .order-md-4 {
    -webkit-box-ordinal-group: 5 !important;
    -ms-flex-order: 4 !important;
    order: 4 !important;
  }
  .order-md-5 {
    -webkit-box-ordinal-group: 6 !important;
    -ms-flex-order: 5 !important;
    order: 5 !important;
  }
  .order-md-last {
    -webkit-box-ordinal-group: 7 !important;
    -ms-flex-order: 6 !important;
    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;
  }
  .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;
  }
  .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;
  }
  .row-gap-md-0 {
    row-gap: 0 !important;
  }
  .row-gap-md-1 {
    row-gap: 0.25rem !important;
  }
  .row-gap-md-2 {
    row-gap: 0.5rem !important;
  }
  .row-gap-md-3 {
    row-gap: 1rem !important;
  }
  .row-gap-md-4 {
    row-gap: 1.5rem !important;
  }
  .row-gap-md-5 {
    row-gap: 3rem !important;
  }
  .column-gap-md-0 {
    -moz-column-gap: 0 !important;
    -webkit-column-gap: 0 !important;
    column-gap: 0 !important;
  }
  .column-gap-md-1 {
    -moz-column-gap: 0.25rem !important;
    -webkit-column-gap: 0.25rem !important;
    column-gap: 0.25rem !important;
  }
  .column-gap-md-2 {
    -moz-column-gap: 0.5rem !important;
    -webkit-column-gap: 0.5rem !important;
    column-gap: 0.5rem !important;
  }
  .column-gap-md-3 {
    -moz-column-gap: 1rem !important;
    -webkit-column-gap: 1rem !important;
    column-gap: 1rem !important;
  }
  .column-gap-md-4 {
    -moz-column-gap: 1.5rem !important;
    -webkit-column-gap: 1.5rem !important;
    column-gap: 1.5rem !important;
  }
  .column-gap-md-5 {
    -moz-column-gap: 3rem !important;
    -webkit-column-gap: 3rem !important;
    column-gap: 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: 1209px) {
  .float-lg-start {
    float: left !important;
  }
  .float-lg-end {
    float: right !important;
  }
  .float-lg-none {
    float: none !important;
  }
  .object-fit-lg-contain {
    -o-object-fit: contain !important;
    object-fit: contain !important;
  }
  .object-fit-lg-cover {
    -o-object-fit: cover !important;
    object-fit: cover !important;
  }
  .object-fit-lg-fill {
    -o-object-fit: fill !important;
    object-fit: fill !important;
  }
  .object-fit-lg-scale {
    -o-object-fit: scale-down !important;
    object-fit: scale-down !important;
  }
  .object-fit-lg-none {
    -o-object-fit: none !important;
    object-fit: 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-inline-grid {
    display: inline-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: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-lg-none {
    display: none !important;
  }
  .flex-lg-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-lg-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-lg-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-lg-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .flex-lg-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-lg-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-lg-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .justify-content-lg-evenly {
    -webkit-box-pack: space-evenly !important;
    -ms-flex-pack: space-evenly !important;
    justify-content: space-evenly !important;
  }
  .align-items-lg-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-lg-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-lg-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-lg-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-lg-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-lg-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-lg-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
  .order-lg-first {
    -webkit-box-ordinal-group: 0 !important;
    -ms-flex-order: -1 !important;
    order: -1 !important;
  }
  .order-lg-0 {
    -webkit-box-ordinal-group: 1 !important;
    -ms-flex-order: 0 !important;
    order: 0 !important;
  }
  .order-lg-1 {
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    order: 1 !important;
  }
  .order-lg-2 {
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    order: 2 !important;
  }
  .order-lg-3 {
    -webkit-box-ordinal-group: 4 !important;
    -ms-flex-order: 3 !important;
    order: 3 !important;
  }
  .order-lg-4 {
    -webkit-box-ordinal-group: 5 !important;
    -ms-flex-order: 4 !important;
    order: 4 !important;
  }
  .order-lg-5 {
    -webkit-box-ordinal-group: 6 !important;
    -ms-flex-order: 5 !important;
    order: 5 !important;
  }
  .order-lg-last {
    -webkit-box-ordinal-group: 7 !important;
    -ms-flex-order: 6 !important;
    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;
  }
  .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;
  }
  .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;
  }
  .row-gap-lg-0 {
    row-gap: 0 !important;
  }
  .row-gap-lg-1 {
    row-gap: 0.25rem !important;
  }
  .row-gap-lg-2 {
    row-gap: 0.5rem !important;
  }
  .row-gap-lg-3 {
    row-gap: 1rem !important;
  }
  .row-gap-lg-4 {
    row-gap: 1.5rem !important;
  }
  .row-gap-lg-5 {
    row-gap: 3rem !important;
  }
  .column-gap-lg-0 {
    -moz-column-gap: 0 !important;
    -webkit-column-gap: 0 !important;
    column-gap: 0 !important;
  }
  .column-gap-lg-1 {
    -moz-column-gap: 0.25rem !important;
    -webkit-column-gap: 0.25rem !important;
    column-gap: 0.25rem !important;
  }
  .column-gap-lg-2 {
    -moz-column-gap: 0.5rem !important;
    -webkit-column-gap: 0.5rem !important;
    column-gap: 0.5rem !important;
  }
  .column-gap-lg-3 {
    -moz-column-gap: 1rem !important;
    -webkit-column-gap: 1rem !important;
    column-gap: 1rem !important;
  }
  .column-gap-lg-4 {
    -moz-column-gap: 1.5rem !important;
    -webkit-column-gap: 1.5rem !important;
    column-gap: 1.5rem !important;
  }
  .column-gap-lg-5 {
    -moz-column-gap: 3rem !important;
    -webkit-column-gap: 3rem !important;
    column-gap: 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: 1900px) {
  .float-xl-start {
    float: left !important;
  }
  .float-xl-end {
    float: right !important;
  }
  .float-xl-none {
    float: none !important;
  }
  .object-fit-xl-contain {
    -o-object-fit: contain !important;
    object-fit: contain !important;
  }
  .object-fit-xl-cover {
    -o-object-fit: cover !important;
    object-fit: cover !important;
  }
  .object-fit-xl-fill {
    -o-object-fit: fill !important;
    object-fit: fill !important;
  }
  .object-fit-xl-scale {
    -o-object-fit: scale-down !important;
    object-fit: scale-down !important;
  }
  .object-fit-xl-none {
    -o-object-fit: none !important;
    object-fit: 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-inline-grid {
    display: inline-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: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-xl-none {
    display: none !important;
  }
  .flex-xl-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-xl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-xl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-xl-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .flex-xl-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xl-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-xl-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .justify-content-xl-evenly {
    -webkit-box-pack: space-evenly !important;
    -ms-flex-pack: space-evenly !important;
    justify-content: space-evenly !important;
  }
  .align-items-xl-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-xl-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-xl-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-xl-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-xl-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-xl-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-xl-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
  .order-xl-first {
    -webkit-box-ordinal-group: 0 !important;
    -ms-flex-order: -1 !important;
    order: -1 !important;
  }
  .order-xl-0 {
    -webkit-box-ordinal-group: 1 !important;
    -ms-flex-order: 0 !important;
    order: 0 !important;
  }
  .order-xl-1 {
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    order: 1 !important;
  }
  .order-xl-2 {
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    order: 2 !important;
  }
  .order-xl-3 {
    -webkit-box-ordinal-group: 4 !important;
    -ms-flex-order: 3 !important;
    order: 3 !important;
  }
  .order-xl-4 {
    -webkit-box-ordinal-group: 5 !important;
    -ms-flex-order: 4 !important;
    order: 4 !important;
  }
  .order-xl-5 {
    -webkit-box-ordinal-group: 6 !important;
    -ms-flex-order: 5 !important;
    order: 5 !important;
  }
  .order-xl-last {
    -webkit-box-ordinal-group: 7 !important;
    -ms-flex-order: 6 !important;
    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;
  }
  .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;
  }
  .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;
  }
  .row-gap-xl-0 {
    row-gap: 0 !important;
  }
  .row-gap-xl-1 {
    row-gap: 0.25rem !important;
  }
  .row-gap-xl-2 {
    row-gap: 0.5rem !important;
  }
  .row-gap-xl-3 {
    row-gap: 1rem !important;
  }
  .row-gap-xl-4 {
    row-gap: 1.5rem !important;
  }
  .row-gap-xl-5 {
    row-gap: 3rem !important;
  }
  .column-gap-xl-0 {
    -moz-column-gap: 0 !important;
    -webkit-column-gap: 0 !important;
    column-gap: 0 !important;
  }
  .column-gap-xl-1 {
    -moz-column-gap: 0.25rem !important;
    -webkit-column-gap: 0.25rem !important;
    column-gap: 0.25rem !important;
  }
  .column-gap-xl-2 {
    -moz-column-gap: 0.5rem !important;
    -webkit-column-gap: 0.5rem !important;
    column-gap: 0.5rem !important;
  }
  .column-gap-xl-3 {
    -moz-column-gap: 1rem !important;
    -webkit-column-gap: 1rem !important;
    column-gap: 1rem !important;
  }
  .column-gap-xl-4 {
    -moz-column-gap: 1.5rem !important;
    -webkit-column-gap: 1.5rem !important;
    column-gap: 1.5rem !important;
  }
  .column-gap-xl-5 {
    -moz-column-gap: 3rem !important;
    -webkit-column-gap: 3rem !important;
    column-gap: 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: 2560px) {
  .float-xxl-start {
    float: left !important;
  }
  .float-xxl-end {
    float: right !important;
  }
  .float-xxl-none {
    float: none !important;
  }
  .object-fit-xxl-contain {
    -o-object-fit: contain !important;
    object-fit: contain !important;
  }
  .object-fit-xxl-cover {
    -o-object-fit: cover !important;
    object-fit: cover !important;
  }
  .object-fit-xxl-fill {
    -o-object-fit: fill !important;
    object-fit: fill !important;
  }
  .object-fit-xxl-scale {
    -o-object-fit: scale-down !important;
    object-fit: scale-down !important;
  }
  .object-fit-xxl-none {
    -o-object-fit: none !important;
    object-fit: 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-inline-grid {
    display: inline-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: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-xxl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-xxl-none {
    display: none !important;
  }
  .flex-xxl-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-xxl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-xxl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-xxl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-xxl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-xxl-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-xxl-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-xxl-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-xxl-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .flex-xxl-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-xxl-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-xxl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xxl-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-xxl-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-xxl-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-xxl-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-xxl-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .justify-content-xxl-evenly {
    -webkit-box-pack: space-evenly !important;
    -ms-flex-pack: space-evenly !important;
    justify-content: space-evenly !important;
  }
  .align-items-xxl-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-xxl-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-xxl-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-xxl-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-xxl-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-xxl-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-xxl-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-xxl-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-xxl-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-xxl-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-xxl-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-xxl-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-xxl-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-xxl-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-xxl-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-xxl-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-xxl-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
  .order-xxl-first {
    -webkit-box-ordinal-group: 0 !important;
    -ms-flex-order: -1 !important;
    order: -1 !important;
  }
  .order-xxl-0 {
    -webkit-box-ordinal-group: 1 !important;
    -ms-flex-order: 0 !important;
    order: 0 !important;
  }
  .order-xxl-1 {
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    order: 1 !important;
  }
  .order-xxl-2 {
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    order: 2 !important;
  }
  .order-xxl-3 {
    -webkit-box-ordinal-group: 4 !important;
    -ms-flex-order: 3 !important;
    order: 3 !important;
  }
  .order-xxl-4 {
    -webkit-box-ordinal-group: 5 !important;
    -ms-flex-order: 4 !important;
    order: 4 !important;
  }
  .order-xxl-5 {
    -webkit-box-ordinal-group: 6 !important;
    -ms-flex-order: 5 !important;
    order: 5 !important;
  }
  .order-xxl-last {
    -webkit-box-ordinal-group: 7 !important;
    -ms-flex-order: 6 !important;
    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;
  }
  .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;
  }
  .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;
  }
  .row-gap-xxl-0 {
    row-gap: 0 !important;
  }
  .row-gap-xxl-1 {
    row-gap: 0.25rem !important;
  }
  .row-gap-xxl-2 {
    row-gap: 0.5rem !important;
  }
  .row-gap-xxl-3 {
    row-gap: 1rem !important;
  }
  .row-gap-xxl-4 {
    row-gap: 1.5rem !important;
  }
  .row-gap-xxl-5 {
    row-gap: 3rem !important;
  }
  .column-gap-xxl-0 {
    -moz-column-gap: 0 !important;
    -webkit-column-gap: 0 !important;
    column-gap: 0 !important;
  }
  .column-gap-xxl-1 {
    -moz-column-gap: 0.25rem !important;
    -webkit-column-gap: 0.25rem !important;
    column-gap: 0.25rem !important;
  }
  .column-gap-xxl-2 {
    -moz-column-gap: 0.5rem !important;
    -webkit-column-gap: 0.5rem !important;
    column-gap: 0.5rem !important;
  }
  .column-gap-xxl-3 {
    -moz-column-gap: 1rem !important;
    -webkit-column-gap: 1rem !important;
    column-gap: 1rem !important;
  }
  .column-gap-xxl-4 {
    -moz-column-gap: 1.5rem !important;
    -webkit-column-gap: 1.5rem !important;
    column-gap: 1.5rem !important;
  }
  .column-gap-xxl-5 {
    -moz-column-gap: 3rem !important;
    -webkit-column-gap: 3rem !important;
    column-gap: 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: 1900px) {
  .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-inline-grid {
    display: inline-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: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-print-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-print-none {
    display: none !important;
  }
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope/Manrope-Bold.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope/Manrope-ExtraBold.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 800;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope/Manrope-ExtraLight.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 200;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope/Manrope-Light.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 300;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope/Manrope-Regular.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope/Manrope-SemiBold.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 600;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope/Manrope-Medium.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 500;
}
* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-print-color-adjust: exact;
  print-color-adjust: exact;
  -webkit-tap-highlight-color: transparent;
  outline: 0;
}
*::after, *::before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

ol,
ul {
  list-style: none;
}

img {
  display: block;
}

input {
  border: none;
  padding: 0;
  margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
}
input[type=number]::-webkit-outer-spin-button, input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

textarea {
  resize: none;
}

button,
input,
textarea,
select {
  background-color: transparent;
  border: 0;
  border-radius: 0;
  outline: 0;
  cursor: pointer;
}
button::-ms-clear, button::-ms-reveal,
input::-ms-clear,
input::-ms-reveal,
textarea::-ms-clear,
textarea::-ms-reveal,
select::-ms-clear,
select::-ms-reveal {
  display: none;
}
button::-moz-focus-inner, button::-moz-focus-outer,
input::-moz-focus-inner,
input::-moz-focus-outer,
textarea::-moz-focus-inner,
textarea::-moz-focus-outer,
select::-moz-focus-inner,
select::-moz-focus-outer {
  border: 0;
}

input,
textarea {
  cursor: text;
}

input[type=radio],
input[type=checkbox] {
  cursor: pointer;
}

svg {
  pointer-events: none;
  display: block;
  height: 100%;
  width: 100%;
}

a {
  text-decoration: none;
  outline: 0;
  cursor: pointer;
  color: initial;
}

@-webkit-keyframes move {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  25% {
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  75% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
  }
}

@keyframes move {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  25% {
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  75% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
  }
}
@-webkit-keyframes hover-rotation {
  0% {
    -webkit-transform: rotate(auto);
    transform: rotate(auto);
  }
  20% {
    -webkit-transform: rotate(2deg);
    transform: rotate(2deg);
  }
  40% {
    -webkit-transform: rotate(-2deg);
    transform: rotate(-2deg);
  }
  60% {
    -webkit-transform: rotate(2deg);
    transform: rotate(2deg);
  }
  80% {
    -webkit-transform: rotate(-2deg);
    transform: rotate(-2deg);
  }
  100% {
    -webkit-transform: rotate(auto);
    transform: rotate(auto);
  }
}
@keyframes hover-rotation {
  0% {
    -webkit-transform: rotate(auto);
    transform: rotate(auto);
  }
  20% {
    -webkit-transform: rotate(2deg);
    transform: rotate(2deg);
  }
  40% {
    -webkit-transform: rotate(-2deg);
    transform: rotate(-2deg);
  }
  60% {
    -webkit-transform: rotate(2deg);
    transform: rotate(2deg);
  }
  80% {
    -webkit-transform: rotate(-2deg);
    transform: rotate(-2deg);
  }
  100% {
    -webkit-transform: rotate(auto);
    transform: rotate(auto);
  }
}
:root {
  --app-height: 100%;
}

body {
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-overflow-scrolling: touch;
  background-color: #fff;
  position: relative;
  font-family: "Manrope", sans-serif, -apple-system;
  color: #3b3742;
  overflow-x: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
body.modal-open {
  overflow: hidden;
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 768px) {
  .container {
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
  }
}
@media (min-width: 1209px) {
  .container {
    padding: 0 40px;
    width: 100%;
    margin: 0 auto;
  }
}
@media (min-width: 1900px) {
  .container {
    width: 100%;
    padding: 0;
    max-width: 1840px;
    margin: 0 auto;
  }
}

.container-small {
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 768px) {
  .container-small {
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
  }
}
@media (min-width: 1209px) {
  .container-small {
    padding: 0 40px;
    width: 100%;
    margin: 0 auto;
  }
}
@media (min-width: 1900px) {
  .container-small {
    padding: 0;
    width: 100%;
    max-width: 1710px;
    margin: 0 auto;
  }
}

.button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 20px 30px 22px 30px;
  gap: 10px;
  border-radius: 4px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(155, 0, 204)), to(rgb(155, 0, 204)));
  background: linear-gradient(180deg, rgb(155, 0, 204), rgb(155, 0, 204) 100%);
  color: rgb(255, 255, 255);
  font-family: "Manrope", sans-serif, -apple-system;
  font-size: 18px;
  font-weight: 700;
  line-height: 135%;
  letter-spacing: 0%;
  text-align: center;
  text-decoration: none !important;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}
@media (min-width: 1209px) {
  .button {
    font-size: 14px;
    font-weight: 700;
    line-height: 135%;
    padding: 14px 16px 12px 16px;
    gap: 10px;
    border-radius: 4px;
  }
}
@media (min-width: 1900px) {
  .button {
    font-size: 18px;
    font-weight: 700;
    line-height: 135%;
    padding: 20px 30px 22px 30px;
    gap: 10px;
    border-radius: 4px;
  }
}
.button svg {
  fill: rgb(255, 255, 255);
  width: 18px;
  height: 18px;
}
@media (min-width: 1209px) {
  .button svg {
    width: 14px;
    height: 14px;
  }
}
@media (min-width: 1900px) {
  .button svg {
    width: 18px;
    height: 18px;
  }
}
@media (min-width: 1209px) {
  .button:hover {
    text-decoration: none;
    color: rgb(255, 255, 255);
    background: -webkit-gradient(linear, left top, left bottom, from(rgb(155, 0, 204)), to(rgb(205, 45, 255)));
    background: linear-gradient(180deg, rgb(155, 0, 204), rgb(205, 45, 255) 100%);
  }
  .button:hover svg {
    fill: rgb(255, 255, 255);
  }
}
.button:active {
  -webkit-transform: translateY(2px);
  transform: translateY(2px);
}
.button:disabled {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(33%, rgb(161, 12, 207)), to(rgb(219, 103, 255)));
  background: linear-gradient(180deg, rgb(161, 12, 207) 33%, rgb(219, 103, 255) 100%);
  color: rgb(241, 194, 255);
}
.button:disabled svg {
  fill: rgb(241, 194, 255);
}
.button.button_inline {
  display: inline-block;
  width: 100%;
}
.button.button_block {
  display: block;
  width: 100%;
}
.button.button_border {
  -webkit-box-shadow: inset 0 0 0 2px rgb(155, 30, 194);
  box-shadow: inset 0 0 0 2px rgb(155, 30, 194);
  border: unset;
  border-radius: 4px;
  background: transparent;
  color: rgb(155, 30, 194);
}
.button.button_border svg {
  fill: rgb(155, 30, 194);
}
@media (min-width: 1209px) {
  .button.button_border:hover {
    text-decoration: none;
    color: rgb(255, 255, 255);
    -webkit-box-shadow: none;
    box-shadow: none;
    background: -webkit-gradient(linear, left top, left bottom, from(rgb(155, 0, 204)), to(rgb(205, 45, 255)));
    background: linear-gradient(180deg, rgb(155, 0, 204), rgb(205, 45, 255) 100%);
  }
  .button.button_border:hover svg {
    fill: rgb(255, 255, 255);
  }
}
.button.button_border:active {
  -webkit-transform: translateY(2px);
  transform: translateY(2px);
}
.button.button_border:disabled {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(33%, rgb(161, 12, 207)), to(rgb(219, 103, 255)));
  background: linear-gradient(180deg, rgb(161, 12, 207) 33%, rgb(219, 103, 255) 100%);
  color: rgb(241, 194, 255);
}
.button.button_border:disabled svg {
  fill: rgb(241, 194, 255);
}
.button.button_white {
  -webkit-box-shadow: inset 0 0 0 2px rgb(155, 30, 194);
  box-shadow: inset 0 0 0 2px rgb(155, 30, 194);
  border-radius: 4px;
  background: #fff;
  color: rgb(155, 30, 194);
}
.button.button_white svg {
  fill: rgb(155, 30, 194);
}
@media (min-width: 1209px) {
  .button.button_white:hover {
    text-decoration: none;
    color: rgb(255, 255, 255);
    -webkit-box-shadow: none;
    box-shadow: none;
    background: -webkit-gradient(linear, left top, left bottom, from(rgb(155, 0, 204)), to(rgb(205, 45, 255)));
    background: linear-gradient(180deg, rgb(155, 0, 204), rgb(205, 45, 255) 100%);
  }
  .button.button_white:hover svg {
    fill: rgb(255, 255, 255);
  }
}
.button.button_white:active {
  -webkit-transform: translateY(2px);
  transform: translateY(2px);
}
.button.button_white:disabled {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(33%, rgb(161, 12, 207)), to(rgb(219, 103, 255)));
  background: linear-gradient(180deg, rgb(161, 12, 207) 33%, rgb(219, 103, 255) 100%);
  color: rgb(241, 194, 255);
}
.button.button_white:disabled svg {
  fill: rgb(241, 194, 255);
}
.button.button_small {
  padding: 14px 16px 14px 16px;
  font-size: 16px;
}
@media (min-width: 1209px) {
  .button.button_small {
    padding: 12px 16px 12px 16px;
    font-size: 14px;
  }
}
@media (min-width: 1900px) {
  .button.button_small {
    padding: 14px 16px 14px 16px;
    font-size: 16px;
  }
}
.button.button_wa {
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(23, 120, 39)), to(rgb(16, 155, 39)));
  background: linear-gradient(180deg, rgb(23, 120, 39), rgb(16, 155, 39) 100%);
}
@media (min-width: 1209px) {
  .button.button_wa:hover {
    color: rgb(255, 255, 255);
    background: -webkit-gradient(linear, left top, left bottom, from(rgb(0, 141, 24)), to(rgb(0, 204, 35)));
    background: linear-gradient(180deg, rgb(0, 141, 24), rgb(0, 204, 35) 100%);
  }
  .button.button_wa:hover svg {
    fill: rgb(255, 255, 255);
  }
}
.button.button_wa:active {
  -webkit-transform: translateY(2px);
  transform: translateY(2px);
}
.button.button_grey {
  color: rgb(255, 255, 255);
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(63, 63, 63)), to(rgb(99, 99, 99)));
  background: linear-gradient(180deg, rgb(63, 63, 63), rgb(99, 99, 99) 100%);
}
@media (min-width: 1209px) {
  .button.button_grey:hover {
    text-decoration: none;
    color: rgb(255, 255, 255);
    background: -webkit-gradient(linear, left top, left bottom, from(rgb(155, 0, 204)), to(rgb(205, 45, 255)));
    background: linear-gradient(180deg, rgb(155, 0, 204), rgb(205, 45, 255) 100%);
  }
  .button.button_grey:hover svg {
    fill: rgb(255, 255, 255);
  }
}
.button.button_grey:active {
  -webkit-transform: translateY(2px);
  transform: translateY(2px);
}
.button.button_grey:disabled {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(33%, rgb(161, 12, 207)), to(rgb(219, 103, 255)));
  background: linear-gradient(180deg, rgb(161, 12, 207) 33%, rgb(219, 103, 255) 100%);
  color: rgb(241, 194, 255);
}
.button.button_grey:disabled svg {
  fill: rgb(241, 194, 255);
}
.button.vibrant-button {
  background-color: transparent;
}
.button.vibrant-button svg {
  fill: transparent;
  stroke: rgb(155, 30, 194);
}
.button.vibrant-button:active {
  -webkit-transform: translateY(2px);
  transform: translateY(2px);
  border-bottom: 0;
}
@media (min-width: 1209px) {
  .button.vibrant-button:hover {
    background-color: transparent;
  }
  .button.vibrant-button:hover svg {
    fill: transparent;
    stroke: rgb(255, 255, 255);
  }
}
.button.button_stroke svg {
  fill: transparent;
  stroke: rgb(255, 255, 255);
}
@media (min-width: 1209px) {
  .button.button_stroke:hover svg {
    fill: transparent;
    stroke: rgb(255, 255, 255);
  }
}
.button.button_stroke:disabled svg {
  fill: transparent;
  stroke: rgb(241, 194, 255);
}

.link {
  color: #9b1ec2;
  text-decoration: underline;
}
.link:hover {
  text-decoration: none;
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.spacer {
  height: 50px;
  clear: both;
}
@media (min-width: 768px) {
  .spacer {
    height: 60px;
  }
}
@media (min-width: 1209px) {
  .spacer {
    height: 80px;
  }
}

.combo-title {
  color: #1f1f1f;
}
.combo-title span {
  color: #9b1ec2;
}

.combo-title-white {
  color: #ffffff;
}
.combo-title-white span {
  color: #dc96f1;
}

.mob-color {
  color: #9b1ec2;
}
@media (min-width: 1209px) {
  .mob-color {
    color: inherit;
  }
}

.button-container-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 42px;
  width: 100%;
  position: relative;
}
@media (min-width: 1209px) {
  .button-container-wrap {
    margin-top: 82px;
  }
}
.button-container-wrap .button {
  background-color: #fff;
}

.button-container.show-more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 42px;
  width: 100%;
  position: relative;
}
@media (min-width: 1209px) {
  .button-container.show-more {
    margin-top: 82px;
  }
}
.button-container.show-more .button {
  background-color: #fff;
}
.button-container.show-more::after {
  content: "";
  position: absolute;
  top: -66px;
  left: 0;
  right: 0;
  z-index: -1;
  height: 94px;
  border-radius: 20px;
  border-bottom: 2px dotted rgba(0, 0, 0, 0.2);
}

blockquote {
  background-color: #f7f7f7;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
  padding: 40px 23px;
  border-radius: 15px;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
}
@media (min-width: 1209px) {
  blockquote {
    -webkit-box-shadow: inset 0 0 0 1px #9b1ec2;
    box-shadow: inset 0 0 0 1px #9b1ec2;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 20px;
    padding: 30px;
    border-radius: 15px;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 600;
  }
}
@media (min-width: 1900px) {
  blockquote {
    -webkit-box-shadow: inset 0 0 0 1px #9b1ec2;
    box-shadow: inset 0 0 0 1px #9b1ec2;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 30px;
    padding: 40px;
    border-radius: 15px;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 600;
  }
}
blockquote::before {
  content: "";
  position: relative;
  color: #834397;
  display: block;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 30px;
  flex: 0 0 30px;
  width: 30px;
  height: 29px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 38 36' fill='none'%3E%3Cpath d='M37.3979 0.30946L36.518 6.43404C34.2301 6.26624 32.5581 6.71369 31.5022 7.7764C30.4462 8.83911 29.8009 10.2654 29.5663 12.0552C29.3316 13.845 29.273 15.7747 29.3903 17.8442H37.3979V35.5467H22.3506V14.4883C22.3506 9.3425 23.6999 5.48318 26.3984 2.91031C29.1556 0.337427 32.8221 -0.529521 37.3979 0.30946ZM15.047 0.30946L14.167 6.43404C11.8791 6.26624 10.2072 6.71369 9.15126 7.7764C8.09531 8.83911 7.45001 10.2654 7.21535 12.0552C6.98069 13.845 6.92203 15.7747 7.03936 17.8442H15.047V35.5467H-0.000305176V14.4883C-0.000305176 9.3425 1.34896 5.48318 4.0475 2.91031C6.8047 0.337427 10.4712 -0.529521 15.047 0.30946Z' fill='%23834397'/%3E%3C/svg%3E");
}
@media (min-width: 1900px) {
  blockquote::before {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 37px;
    flex: 0 0 37px;
    width: 37px;
    height: 36px;
  }
}

.h1-title {
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.84px;
  font-weight: 700;
}
@media (min-width: 1209px) {
  .h1-title {
    font-size: 45px;
    line-height: 1.2;
    letter-spacing: -1.35px;
    font-weight: 600;
  }
}
@media (min-width: 1900px) {
  .h1-title {
    font-size: 65px;
    line-height: 1.2;
    letter-spacing: -3.25px;
    font-weight: 700;
  }
}

button[type=submit] {
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}

.form-group {
  position: relative;
  margin-bottom: 22px;
}
@media (min-width: 1209px) {
  .form-group {
    margin-bottom: 22px;
  }
}
@media (min-width: 1900px) {
  .form-group {
    margin-bottom: 22px;
  }
}
.form-group input {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "Manrope", sans-serif, -apple-system;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid rgb(209, 209, 209);
  border-radius: 4px;
  background: rgb(240, 240, 240);
  padding: 18px 22px 20px 22px;
  width: 100%;
  -webkit-transition: border 0.3s;
  transition: border 0.3s;
  font-size: 14px;
  line-height: 1.35;
}
@media (min-width: 1209px) {
  .form-group input {
    border: 1px solid rgb(209, 209, 209);
    border-radius: 4px;
    padding: 14px 18px 16px 18px;
    font-size: 14px;
    line-height: 1.35;
  }
  .form-group input:hover {
    border: 1px solid rgb(113, 43, 135);
  }
  .form-group input:focus {
    border: 1px solid rgb(113, 43, 135);
  }
}
@media (min-width: 1900px) {
  .form-group input {
    border: 1px solid rgb(209, 209, 209);
    border-radius: 4px;
    padding: 18px 22px 20px 22px;
    font-size: 15px;
    line-height: 1.35;
  }
}
.form-group-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 26px;
}
@media (min-width: 1209px) {
  .form-group-button {
    gap: 22px;
  }
}
@media (min-width: 1900px) {
  .form-group-button {
    gap: 26px;
  }
}
.form-group-button button {
  width: 100%;
}
.form-group-button .politicy {
  font-size: 12px;
  line-height: 135%;
  letter-spacing: 0%;
  text-align: left;
  color: #3b3742;
  margin-bottom: 0;
  margin-top: 0;
}
@media (min-width: 1209px) {
  .form-group-button .politicy {
    color: #3b3742;
    font-size: 12px;
    line-height: 135%;
    letter-spacing: 0%;
  }
}
.form-group-button .politicy a {
  text-decoration: underline;
}
.form-group-button .politicy a:hover {
  text-decoration: none;
}
.form-group.file {
  height: 59px;
}
@media (min-width: 1209px) {
  .form-group.file {
    height: 51px;
  }
}
.form-group.file .file-wrapper {
  position: relative;
  width: 100%;
}
.form-group.file .file-select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
}
.form-group.file .file-select label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  cursor: pointer;
  -webkit-transition: border 0.3s;
  transition: border 0.3s;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "Manrope", sans-serif, -apple-system;
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 1.35;
  border: 1px solid rgb(209, 209, 209);
  border-radius: 4px;
  background: rgb(240, 240, 240);
  padding: 18px 22px 20px 22px;
  width: 100%;
}
@media (min-width: 1209px) {
  .form-group.file .file-select label {
    border: 1px solid rgb(209, 209, 209);
    border-radius: 4px;
    padding: 14px 18px 16px 18px;
    font-size: 14px;
    line-height: 1.35;
  }
  .form-group.file .file-select label:hover {
    border: 1px solid rgb(113, 43, 135);
  }
}
@media (min-width: 1900px) {
  .form-group.file .file-select label {
    border: 1px solid rgb(209, 209, 209);
    border-radius: 4px;
    padding: 18px 22px 20px 22px;
    font-size: 15px;
    line-height: 1.35;
  }
}
.form-group.file .file-select label .icon {
  margin-left: 8px;
}
.form-group.file .file-select label .icon i {
  font-size: 14px;
  color: #666;
}
.form-group.file .file-select input {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  width: 0;
  height: 0;
}
.form-group.file .file-label span {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.form-group.file .file-preview {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "Manrope", sans-serif, -apple-system;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid rgb(209, 209, 209);
  border-radius: 4px;
  background: rgb(240, 240, 240);
  padding: 5px 22px 5px 22px;
  margin-bottom: 22px;
  width: 100%;
  height: 100%;
  font-size: 14px;
  line-height: 1.35;
}
@media (min-width: 1209px) {
  .form-group.file .file-preview {
    border: 1px solid rgb(209, 209, 209);
    border-radius: 4px;
    padding: 5px 18px 5px 18px;
    margin-bottom: 22px;
    font-size: 14px;
    line-height: 1.35;
  }
}
@media (min-width: 1900px) {
  .form-group.file .file-preview {
    border: 1px solid rgb(209, 209, 209);
    border-radius: 4px;
    padding: 5px 22px 5px 22px;
    margin-bottom: 22px;
    font-size: 15px;
    line-height: 1.35;
  }
}
.form-group.file .file-preview .file-name {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.form-group.file .file-preview .remove-file {
  background: #e74c3c;
  color: #fff;
  border: none;
  padding: 5px 10px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 110px;
  flex: 0 0 110px;
}
.form-group.file .file-preview .remove-file:hover {
  background: #c0392b;
}
.form-group.file .hidden {
  display: none;
}
.form-group.radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: unset;
  border: unset;
  gap: 5px;
  padding: 0;
  margin-bottom: 10px;
}
.form-group.radio p {
  font-size: 12px;
  line-height: 1.35;
  font-weight: 400;
}
@media (min-width: 1209px) {
  .form-group.radio p {
    font-size: 14px;
    line-height: 1.35;
    color: #3b3742;
  }
}
.form-group.radio .r-mail span,
.form-group.radio .wa span,
.form-group.radio .r-phone span,
.form-group.radio .r-telegram span {
  display: none;
}
@media (min-width: 400px) {
  .form-group.radio .r-mail span,
  .form-group.radio .wa span,
  .form-group.radio .r-phone span,
  .form-group.radio .r-telegram span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.form-group.radio label {
  border: 1px solid rgb(209, 209, 209);
  border-radius: 10px;
  background: rgb(240, 240, 240);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 16px;
  cursor: pointer;
  position: relative;
  -webkit-transition: background 0.3s, border-color 0.3s;
  transition: background 0.3s, border-color 0.3s;
}
@media (min-width: 1209px) {
  .form-group.radio label {
    border: 1px solid rgb(209, 209, 209);
  }
}
.form-group.radio label input {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  width: 0;
  height: 0;
  left: 0;
  top: 0;
}
.form-group.radio label svg,
.form-group.radio label img {
  width: 26px;
  height: 26px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 26px;
  flex: 0 0 26px;
  fill: #837f87;
}
.form-group.radio label:hover {
  background: rgb(230, 230, 230);
  border-color: rgb(180, 180, 180);
}
.form-group.radio label.checked {
  border: 1px solid transparent;
  color: #fff;
  background: #408acf;
}
.form-group.radio label.checked svg,
.form-group.radio label.checked img {
  fill: #fff;
}
.form-group.radio label.checked img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.form-group.radio label.checked:hover {
  background: #3574b3;
}
.form-group.radio label.wa.checked {
  border: 1px solid transparent;
  color: #fff;
  background: linear-gradient(48.49deg, rgb(20, 178, 47) 0%, rgb(87, 222, 111) 111.427%);
}
.form-group.radio label.wa.checked svg,
.form-group.radio label.wa.checked img {
  fill: #fff;
}
.form-group.radio label.wa.checked:hover {
  background: linear-gradient(48.49deg, rgb(15, 150, 40) 0%, rgb(70, 200, 90) 111.427%);
}
.form-group__checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 10px;
}
.form-group__checkbox label {
  margin-left: 10px;
  font-size: 14px;
  line-height: 1.2;
  color: #837f87;
}

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

.error {
  color: #dc3545;
  font-size: 14px;
  margin-top: 5px;
  display: block;
}

a.image-fnbx[data-fancybox] {
  position: relative;
  display: inline-block;
}
a.image-fnbx[data-fancybox]::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  width: 60px;
  height: 60px;
  -webkit-filter: drop-shadow(2px 4px 26px #fff);
  filter: drop-shadow(2px 4px 26px #fff);
  background: url('data:image/svg+xml;charset=UTF-8,%3Csvg width="20" height="21" viewBox="0 0 20 21" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M9 17.3818C13.4183 17.3818 17 13.8001 17 9.38184C17 4.96356 13.4183 1.38184 9 1.38184C4.58172 1.38184 1 4.96356 1 9.38184C1 13.8001 4.58172 17.3818 9 17.3818Z" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/%3E%3Cpath d="M19 19.3817L14.65 15.0317" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/%3E%3C/svg%3E') no-repeat center;
  background-size: contain;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}
a.image-fnbx[data-fancybox]::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-color: rgba(156, 30, 194, 0.2);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  border-radius: 15px;
}
@media (min-width: 1209px) {
  a.image-fnbx[data-fancybox]:hover::after {
    opacity: 1;
  }
  a.image-fnbx[data-fancybox]:hover::before {
    opacity: 1;
  }
}

.custom-radio {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #d9d9d9;
  border-radius: 2px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 20px;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  position: relative;
  cursor: pointer;
}
.custom-radio::before {
  content: "";
  border-radius: 2px;
  width: 12px;
  height: 12px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #d9d9d9;
}
.custom-radio:checked::before {
  background-color: #9b1ec2;
}

.custom-checkbox {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #d9d9d9;
  border-radius: 2px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 20px;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  position: relative;
  cursor: pointer;
}
.custom-checkbox::before {
  content: "";
  border-radius: 2px;
  width: 12px;
  height: 12px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.custom-checkbox:checked::before {
  background-color: white;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.664062 2.84615L4.14232 9L8.66406 1' stroke='black' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
}

a {
  color: inherit;
}

.link-hover {
  color: inherit;
  text-decoration: none;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
@media (min-width: 1209px) {
  .link-hover:hover {
    color: #9b1ec2;
    text-decoration: underline;
  }
}

@media (min-width: 1209px) {
  .about {
    background-color: #f7f7f7;
    border-radius: 8px;
    padding: 60px 0;
  }
}
@media (min-width: 1900px) {
  .about {
    background-color: #f7f7f7;
    border-radius: 8px;
    padding: 100px 0;
  }
}
.about__title {
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.84px;
  font-weight: 700;
  margin-bottom: 40px;
}
@media (min-width: 1209px) {
  .about__title {
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: -0.96px;
    font-weight: 600;
    margin-bottom: 30px;
  }
}
@media (min-width: 1900px) {
  .about__title {
    font-size: 45px;
    line-height: 1.2;
    letter-spacing: -1.35px;
    font-weight: 600;
    margin-bottom: 75px;
  }
}
@media (max-width: 1208px) {
  .about .container-small {
    padding: 0;
  }
}
.about__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  gap: 40px;
}
@media (min-width: 1209px) {
  .about__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 32px;
  }
}
@media (min-width: 1900px) {
  .about__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 52px;
  }
}
.about__list--item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}
.about__list--item .icon {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 56px;
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
}
.about__list--item .text {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
}
@media (min-width: 1209px) {
  .about__list--item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 14px;
  }
  .about__list--item .icon {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 40px;
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
  }
  .about__list--item .text {
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
  }
}
@media (min-width: 1900px) {
  .about__list--item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
  }
  .about__list--item .icon {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 56px;
    flex: 0 0 56px;
    width: 56px;
    height: 56px;
  }
  .about__list--item .text {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
  }
}
.about__right .video {
  overflow: hidden;
  position: relative;
  width: 100vw;
  margin: 0 -16px;
  display: block;
  text-decoration: none !important;
}
@media (min-width: 768px) {
  .about__right .video {
    margin: 0;
    width: 100%;
    border-radius: 15px;
  }
}
@media (min-width: 1209px) {
  .about__right .video {
    margin: 0;
    width: 450px;
    border-radius: 15px;
  }
  .about__right .video:hover .video__play {
    -webkit-transform: translate(-50%, -50%) scale(1.2);
    transform: translate(-50%, -50%) scale(1.2);
  }
  .about__right .video:hover .video__poster::after {
    background-color: rgba(0, 0, 0, 0.3);
  }
}
@media (min-width: 1900px) {
  .about__right .video {
    width: 722px;
    border-radius: 15px;
  }
}
.about__right .video__poster {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
  cursor: pointer;
}
.about__right .video__poster::after {
  pointer-events: none;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  content: "";
  width: 100%;
  height: 100%;
  z-index: -1;
}
.about__right .video__play {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 65px;
  height: 65px;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
@media (min-width: 768px) {
  .about__right .video__play {
    width: 100px;
    height: 100px;
  }
}
@media (min-width: 1209px) {
  .about__right .video__play {
    width: 100px;
    height: 100px;
  }
}
@media (min-width: 1900px) {
  .about__right .video__play {
    width: 144px;
    height: 144px;
  }
}
.about__right .video__text {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 20px;
  z-index: 1;
  background-color: #261f2a;
  border-radius: 10px;
  color: #fff;
  padding: 9px 18px;
}
@media (min-width: 768px) {
  .about__right .video__text {
    padding: 8px 20px;
    font-size: 16px;
    line-height: 1.07;
  }
}
@media (min-width: 1209px) {
  .about__right .video__text {
    padding: 8px 20px;
    font-size: 18px;
    line-height: 1.07;
  }
}
@media (min-width: 1900px) {
  .about__right .video__text {
    padding: 10px 30px;
    font-size: 20px;
    line-height: 1.07;
  }
}
.about__text-content--title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}
@media (min-width: 1209px) {
  .about__text-content--title {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 20px;
  }
}
@media (min-width: 1900px) {
  .about__text-content--title {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 30px;
  }
}
.about__text-content--title .icon {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 40px;
  flex: 0 0 40px;
  width: 40px;
  height: 34px;
}
@media (min-width: 1209px) {
  .about__text-content--title .icon {
    width: 40px;
    height: 34px;
  }
}
@media (min-width: 1900px) {
  .about__text-content--title .icon {
    width: 40px;
    height: 34px;
  }
}
.about__text-content--title .text {
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.84px;
  font-weight: 700;
}
@media (min-width: 1209px) {
  .about__text-content--title .text {
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: -0.72px;
    font-weight: 700;
  }
}
@media (min-width: 1900px) {
  .about__text-content--title .text {
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: -0.96px;
    font-weight: 600;
  }
}
.about__text-content--text {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
}
@media (min-width: 1900px) {
  .about__text-content--text {
    font-size: 18px;
    line-height: 1.5;
    font-weight: 400;
  }
}
.about__text-content--link {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 600;
}
@media (min-width: 1209px) {
  .about__text-content--link {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 600;
  }
}
@media (min-width: 1900px) {
  .about__text-content--link {
    font-size: 18px;
    line-height: 1.5;
    font-weight: 600;
  }
}

.articles {
  position: relative;
  padding: 40px 0;
}
.articles::after {
  content: "";
  position: absolute;
  left: -16px;
  top: 0;
  bottom: 0;
  right: -16px;
  width: 100vw;
  height: 100%;
  background-color: #f7f7f7;
  z-index: -1;
}
@media (min-width: 768px) {
  .articles {
    padding: 0;
  }
  .articles::after {
    display: none;
    content: unset;
  }
}
@media (min-width: 1900px) {
  .articles {
    padding: 0;
  }
  .articles::after {
    display: none;
    content: unset;
  }
}
.articles__title {
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.84px;
  font-weight: 700;
  margin-bottom: 30px;
}
@media (min-width: 1209px) {
  .articles__title {
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: -0.96px;
    font-weight: 600;
  }
}
@media (min-width: 1900px) {
  .articles__title {
    font-size: 45px;
    line-height: 1.2;
    letter-spacing: -1.35px;
    font-weight: 600;
    margin-bottom: 52px;
  }
}
@media (max-width: 1023px) {
  .articles .row-scroll {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    padding: 5px 0;
  }
}

.article {
  -webkit-box-shadow: 1px 2px 0px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 1px 2px 0px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  border-radius: 8px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  height: 100%;
  -webkit-transition: border-color 0.2s, -webkit-box-shadow 0.2s;
  transition: border-color 0.2s, -webkit-box-shadow 0.2s;
  transition: border-color 0.2s, box-shadow 0.2s;
  transition: border-color 0.2s, box-shadow 0.2s, -webkit-box-shadow 0.2s;
  border: 1px solid transparent;
}
@media (min-width: 1209px) {
  .article:hover {
    border-color: #9b1ec2;
    -webkit-box-shadow: 1px 2px 0px 0px transparent;
    box-shadow: 1px 2px 0px 0px transparent;
  }
  .article:hover .article__img::before {
    opacity: 1;
  }
  .article:hover .article__img::after {
    background-color: rgba(0, 0, 0, 0.1);
  }
  .article:hover .article__content--link {
    background: transparent;
    text-decoration: underline;
    color: #9b1ec2;
  }
  .article:hover .article__content--link svg {
    fill: transparent;
    stroke: #9b1ec2;
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
}
@media (min-width: 1900px) {
  .article {
    border-radius: 8px;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.article__img {
  width: 100%;
  height: 221px;
  position: relative;
}
@media (min-width: 768px) {
  .article__img {
    width: 100%;
    height: 312px;
  }
}
@media (min-width: 1900px) {
  .article__img {
    width: 100%;
    height: 312px;
  }
}
.article__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.article__img::before {
  -webkit-filter: drop-shadow(0px 0px 6px black);
  filter: drop-shadow(0px 0px 6px black);
  -webkit-transition: opacity 0.2s, -webkit-filter 0.2s;
  transition: opacity 0.2s, -webkit-filter 0.2s;
  transition: opacity 0.2s, filter 0.2s;
  transition: opacity 0.2s, filter 0.2s, -webkit-filter 0.2s;
  opacity: 0;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  content: "Подробнее";
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.8px;
  color: white;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  pointer-events: none;
  z-index: 1;
}
.article__img::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
.article__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 21px;
  padding: 20px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
@media (min-width: 1900px) {
  .article__content {
    gap: 21px;
    padding: 40px;
  }
}
.article__content--info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
  color: #9b1ec2;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
}
@media (min-width: 1209px) {
  .article__content--info {
    gap: 10px;
  }
}
@media (min-width: 1900px) {
  .article__content--info {
    gap: 20px;
  }
}
.article__content--info .with-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
}
.article__content--info .with-icon svg,
.article__content--info .with-icon img {
  width: 21px;
  height: 16px;
}
.article__content--title {
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.72px;
  font-weight: 700;
  text-decoration: none !important;
}
@media (min-width: 1209px) {
  .article__content--title {
    font-size: 22px;
    line-height: 1.2;
    font-weight: 700;
  }
}
@media (min-width: 1900px) {
  .article__content--title {
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: -0.72px;
    font-weight: 700;
  }
}
.article__content--title::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
.article__content--text {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
}
@media (min-width: 1209px) {
  .article__content--text {
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
  }
}
@media (min-width: 1900px) {
  .article__content--text {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
  }
}
.article__content--link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}
@media (min-width: 1024px) {
  .article__content--link {
    -webkit-box-shadow: unset;
    box-shadow: unset;
    border: unset;
    width: auto;
    border-radius: unset;
    padding: unset;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-top: auto;
  }
}
.article__content--link.button svg {
  width: 13px;
  height: 13px;
  fill: transparent;
  stroke: #9b1ec2;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}
.article__content--link.button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}
.article__content--link.button:hover svg {
  fill: transparent;
  stroke: #fff;
}
@media (min-width: 1024px) {
  .article__content--link.button {
    -webkit-box-shadow: unset;
    box-shadow: unset;
    border: unset;
    width: auto;
    border-radius: unset;
    padding: unset;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-top: auto;
  }
  .article__content--link.button:hover {
    background: transparent;
    text-decoration: underline;
    color: #9b1ec2;
  }
  .article__content--link.button:hover svg {
    fill: transparent;
    stroke: #9b1ec2;
  }
}

.article.blog-article .article__img {
  width: 100%;
  height: 221px;
}
@media (min-width: 768px) {
  .article.blog-article .article__img {
    width: 100%;
    height: 312px;
  }
}
@media (min-width: 1024px) {
  .article.blog-article .article__img {
    width: 100%;
    height: 270px;
  }
}
@media (min-width: 1900px) {
  .article.blog-article .article__img {
    width: 100%;
    height: 312px;
  }
}
.article.blog-article .article__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.block-1-form {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
@media (max-width: 1023px) {
  .block-1-form {
    background-image: none !important;
  }
}
@media (min-width: 1024px) {
  .block-1-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    padding: 40px;
    gap: 10px;
    border-radius: 8px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
}
@media (min-width: 1900px) {
  .block-1-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    padding: 60px;
    border-radius: 8px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
}
.block-1-form::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  background: rgba(46, 46, 46, 0.5);
  display: none;
}
@media (min-width: 1024px) {
  .block-1-form::after {
    display: block;
  }
}
@media (min-width: 1900px) {
  .block-1-form::after {
    display: block;
  }
}
@media (min-width: 1024px) {
  .block-1-form__form {
    min-width: 422px;
  }
}
.block-1-form__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 20px;
  border-radius: 8px;
  min-height: 560px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.block-1-form__content::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  background: rgba(46, 46, 46, 0.5);
}
@media (min-width: 1024px) {
  .block-1-form__content::after {
    content: unset;
    display: none;
  }
}
@media (min-width: 1900px) {
  .block-1-form__content::after {
    content: unset;
    display: none;
  }
}
@media (min-width: 1024px) {
  .block-1-form__content {
    display: block;
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
    -ms-flex-direction: unset;
    flex-direction: unset;
    -webkit-box-pack: unset;
    -ms-flex-pack: unset;
    justify-content: unset;
    -webkit-box-align: unset;
    -ms-flex-align: unset;
    align-items: unset;
    padding: unset;
    border-radius: unset;
    min-height: unset;
    overflow: unset;
    background-image: none !important;
  }
}
@media (min-width: 1900px) {
  .block-1-form__content {
    display: block;
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
    -ms-flex-direction: unset;
    flex-direction: unset;
    -webkit-box-pack: unset;
    -ms-flex-pack: unset;
    justify-content: unset;
    -webkit-box-align: unset;
    -ms-flex-align: unset;
    align-items: unset;
    padding: unset;
    border-radius: unset;
    min-height: unset;
    overflow: unset;
    background-image: none !important;
  }
}
.block-1-form__content-city {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 54px;
  background: rgba(41, 41, 41, 0.8);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 12px 15px;
}
@media (min-width: 1024px) {
  .block-1-form__content-city {
    display: none;
  }
}
.block-1-form__content-city button {
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
}
@media (min-width: 1900px) {
  .block-1-form__content-city {
    display: none;
  }
}
.block-1-form__content-city-icon {
  width: 30px;
  height: 30px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 30px;
  flex: 0 0 30px;
}
.block-1-form__content-city-icon img {
  width: 100%;
  height: 100%;
}
.block-1-form__content-city .link {
  color: #de71ff;
}
.block-1-form__content h1 {
  color: #fff;
  -webkit-filter: drop-shadow(0 2px 0 rgba(0, 0, 0, 0.3));
  filter: drop-shadow(0 2px 0 rgba(0, 0, 0, 0.3));
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -0.96px;
  font-weight: 700;
}
@media (min-width: 1209px) {
  .block-1-form__content h1 {
    font-size: 45px;
    line-height: 1.2;
    letter-spacing: -1.35px;
    font-weight: 600;
  }
}
@media (min-width: 1900px) {
  .block-1-form__content h1 {
    font-size: 65px;
    line-height: 1.2;
    letter-spacing: -3.25px;
    font-weight: 700;
  }
}
@media (min-width: 1900px) {
  .block-1-form__content h1 {
    width: 646px;
  }
}
.block-1-form__content h1 span {
  color: #de71ff;
}
.block-1-form__content .subtitle {
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  color: #dc96f1;
  margin-top: 15px;
}
@media (min-width: 1209px) {
  .block-1-form__content .subtitle {
    font-weight: 500;
    font-size: 20px;
    line-height: 135%;
    color: #fff;
    margin-top: 30px;
  }
}
@media (min-width: 1900px) {
  .block-1-form__content .subtitle {
    font-weight: 500;
    font-size: 24px;
    line-height: 135%;
    color: #fff;
    margin-top: 30px;
  }
}
.block-1-form__icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
  margin-top: 21px;
}
@media (min-width: 1209px) {
  .block-1-form__icons {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 20px;
    margin-top: 49px;
  }
}
@media (min-width: 1900px) {
  .block-1-form__icons {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 20px;
    margin-top: 49px;
  }
}
.block-1-form__icons-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 12px;
}
@media (min-width: 1024px) {
  .block-1-form__icons-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    border-radius: 8px;
    background: rgba(41, 41, 41, 0.8);
    width: auto;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 15px;
    gap: 15px;
  }
}
@media (min-width: 1209px) {
  .block-1-form__icons-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    border-radius: 8px;
    background: rgba(41, 41, 41, 0.8);
    width: 184px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 15px;
    gap: 15px;
  }
}
@media (min-width: 1900px) {
  .block-1-form__icons-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    border-radius: 8px;
    background: rgba(41, 41, 41, 0.8);
    width: 354px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 20px;
    gap: 20px;
  }
}
.block-1-form__icons-item::before {
  content: "";
  -webkit-box-flex: 0;
  -ms-flex: 0 0 10px;
  flex: 0 0 10px;
  width: 10px;
  height: 11px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAiIGhlaWdodD0iMTEiIHZpZXdCb3g9IjAgMCAxMCAxMSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNOC45MDY4OCA0LjYyMzc5QzkuNTk3NjYgNS4wMDM3MSA5LjU5NzY2IDUuOTk2MjkgOC45MDY4OCA2LjM3NjIyTDEuOTgxOTIgMTAuMTg0OUMxLjMxNTQ2IDEwLjU1MTUgMC41IDEwLjA2OTMgMC41IDkuMzA4NzNMMC41IDEuNjkxMjdDMC41IDAuOTMwNjY4IDEuMzE1NDcgMC40NDg1MDYgMS45ODE5MiAwLjgxNTA1NUw4LjkwNjg4IDQuNjIzNzlaIiBmaWxsPSIjRDlEOUQ5Ii8+PC9zdmc+");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
}
@media (min-width: 1024px) {
  .block-1-form__icons-item::before {
    display: none;
  }
}
@media (min-width: 1900px) {
  .block-1-form__icons-item::before {
    display: none;
  }
}
.block-1-form__icons-item p {
  color: #fff;
}
@media (min-width: 1024px) {
  .block-1-form__icons-item p {
    font-size: 14px;
    line-height: 120%;
  }
}
@media (min-width: 1900px) {
  .block-1-form__icons-item p {
    font-size: 18px;
    line-height: 140%;
  }
}
.block-1-form__icons-item .image {
  display: none;
}
@media (min-width: 1900px) {
  .block-1-form__icons-item .image {
    display: block;
    width: 60px;
    height: 60px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 60px;
    flex: 0 0 60px;
  }
}
.block-1-form__icons-item .image img {
  width: 100%;
  height: 100%;
}
.block-1-form__menu {
  margin-top: 30px;
  margin-bottom: 32px;
}
@media (min-width: 1024px) {
  .block-1-form__menu {
    display: none;
  }
}
@media (min-width: 1900px) {
  .block-1-form__menu {
    display: none;
  }
}
.block-1-form__menu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
}
.block-1-form__menu-list li {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 45%;
  flex: 1 1 45%;
}
.block-1-form__menu-list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  width: 100%;
  height: 64px;
  padding: 12px 16px;
  border-radius: 10px;
  background: #f0f0f0;
}
.block-1-form__form-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border-radius: 8px;
  background-color: #261f2a;
  padding: 40px 16px 54px;
}
@media (min-width: 1024px) {
  .block-1-form__form-content {
    max-width: 422px;
  }
}
@media (min-width: 1209px) {
  .block-1-form__form-content {
    max-width: 422px;
    -webkit-box-shadow: 0px 2px 0px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 2px 0px 0px rgba(0, 0, 0, 0.3);
    background: rgb(255, 255, 255);
    padding: 36px;
  }
}
@media (min-width: 1900px) {
  .block-1-form__form-content {
    max-width: 422px;
    -webkit-box-shadow: 0px 2px 0px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 2px 0px 0px rgba(0, 0, 0, 0.3);
    background: rgb(255, 255, 255);
    padding: 36px;
  }
}
.block-1-form__form-content .title {
  color: #fff;
  font-weight: 700;
  font-size: 22px;
  line-height: 110%;
  letter-spacing: -0.66px;
}
@media (min-width: 1209px) {
  .block-1-form__form-content .title {
    color: rgb(59, 55, 66);
    font-size: 24px;
    line-height: 120%;
    letter-spacing: -0.84px;
  }
}
@media (min-width: 1900px) {
  .block-1-form__form-content .title {
    color: rgb(59, 55, 66);
    font-size: 28px;
    line-height: 110%;
    letter-spacing: -0.84px;
  }
}
.block-1-form__form-content .subtitle {
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
  margin-top: 6px;
  margin-bottom: 26px;
}
@media (min-width: 1209px) {
  .block-1-form__form-content .subtitle {
    color: rgb(59, 55, 66);
    font-size: 14px;
    font-weight: 400;
    line-height: 135%;
  }
}
@media (min-width: 1900px) {
  .block-1-form__form-content .subtitle {
    color: rgb(59, 55, 66);
    font-size: 18px;
    font-weight: 400;
    line-height: 135%;
  }
}
.block-1-form__form-content .form-group.radio .wa {
  margin-left: auto;
}
.block-1-form__form-content .form-group.radio .mail span,
.block-1-form__form-content .form-group.radio .wa span {
  display: none;
}
@media (min-width: 400px) {
  .block-1-form__form-content .form-group.radio .mail span,
  .block-1-form__form-content .form-group.radio .wa span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (max-width: 1208px) {
  .block-1-form__form-content .form-group.radio p {
    color: #fff;
  }
}
@media (max-width: 1208px) {
  .block-1-form__form-content .politicy {
    color: #fff !important;
  }
  .block-1-form__form-content .politicy a {
    color: #dc96f1 !important;
  }
}

.block-1-sub__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  background: #f7f6f7;
  border-radius: 8px;
  padding: 20px;
  height: 100%;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
@media (min-width: 1024px) {
  .block-1-sub__item {
    border-radius: 15px;
    padding: 24px 24px;
  }
}
@media (min-width: 1900px) {
  .block-1-sub__item {
    border-radius: 15px;
    padding: 44px 74px;
  }
}
.block-1-sub__item__title {
  color: #9b1ec2;
  font-size: 45px;
  line-height: 1.2;
  letter-spacing: -1.35px;
  font-weight: 600;
}
@media (min-width: 1209px) {
  .block-1-sub__item__title {
    font-size: 45px;
    line-height: 1.2;
    letter-spacing: -1.35px;
    font-weight: 600;
  }
}
@media (min-width: 1900px) {
  .block-1-sub__item__title {
    font-size: 65px;
    line-height: 1.2;
    letter-spacing: -3.25px;
    font-weight: 700;
  }
}
.block-1-sub__item__text {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
}
@media (min-width: 1900px) {
  .block-1-sub__item__text {
    font-size: 22px;
    line-height: 1.35;
    font-weight: 600;
  }
}
@media (min-width: 1209px) {
  .block-1-sub.project-sub .block-1-sub__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 22px;
    padding: 24px 24px 24px 34px;
  }
}
@media (min-width: 1900px) {
  .block-1-sub.project-sub .block-1-sub__item {
    border-radius: 15px;
    padding: 44px 74px;
  }
}

.block-2.block-2-new {
  overflow: hidden;
}
.block-2.block-2-new .block-2__left {
  display: none;
}
@media (min-width: 1209px) {
  .block-2.block-2-new .block-2__left {
    display: block;
    width: 492px;
    height: 323px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    position: relative;
  }
}
@media (min-width: 1900px) {
  .block-2.block-2-new .block-2__left {
    display: block;
    width: 703px;
    height: 462px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    position: relative;
  }
}
@media (min-width: 1209px) {
  .block-2.block-2-new .block-2__left .image {
    position: absolute;
    width: 789px;
    height: 443px;
    bottom: -84px;
    right: -245px;
    pointer-events: none;
  }
}
@media (min-width: 1900px) {
  .block-2.block-2-new .block-2__left .image {
    position: absolute;
    width: 1128px;
    height: 634px;
    bottom: -121px;
    right: -350px;
    pointer-events: none;
  }
}
.block-2.block-2-new .block-2__left .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: left center;
  object-position: left center;
}

.block-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (min-width: 1209px) {
  .block-2 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background-color: #f7f7f7;
    padding: 59px 98px 59px 0;
    border-radius: 20px;
  }
}
@media (min-width: 1900px) {
  .block-2 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background-color: #f7f7f7;
    padding: 89px 138px 89px 0;
    border-radius: 20px;
  }
}
.block-2__left {
  display: none;
}
@media (min-width: 1209px) {
  .block-2__left {
    display: block;
  }
}
@media (min-width: 1900px) {
  .block-2__left {
    display: block;
  }
}
@media (min-width: 1209px) {
  .block-2__left .image {
    width: 433px;
    height: 362px;
  }
}
@media (min-width: 1900px) {
  .block-2__left .image {
    width: 703px;
    height: 462px;
  }
}
.block-2__left .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: left center;
  object-position: left center;
}
.block-2__right .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #1f1f1f;
  margin-bottom: 22px;
}
@media (min-width: 1209px) {
  .block-2__right .title {
    gap: 32px;
    margin-bottom: 32px;
  }
}
@media (min-width: 1900px) {
  .block-2__right .title {
    gap: 38px;
    margin-bottom: 38px;
  }
}
.block-2__right .title_icon {
  display: none;
}
@media (min-width: 1209px) {
  .block-2__right .title_icon {
    display: block;
    width: 44px;
    height: 36px;
  }
}
@media (min-width: 1900px) {
  .block-2__right .title_icon {
    display: block;
    width: 54px;
    height: 46px;
  }
}
.block-2__right .title_text {
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.84px;
  font-weight: 700;
}
@media (min-width: 1209px) {
  .block-2__right .title_text {
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: -0.96px;
    font-weight: 600;
  }
}
@media (min-width: 1900px) {
  .block-2__right .title_text {
    font-size: 45px;
    line-height: 1.2;
    letter-spacing: -1.35px;
    font-weight: 600;
  }
}
.block-2__right .title_text .purple {
  color: #9b1ec2;
}
.block-2__right .text {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
}
@media (min-width: 1900px) {
  .block-2__right .text {
    font-size: 18px;
    line-height: 1.6;
    font-weight: 300;
  }
}
.block-2__right .hide-content {
  display: none;
}
.block-2__right .js--more-text {
  margin-top: 20px;
  display: inline-block;
}
.block-2__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
@media (min-width: 1209px) {
  .block-2__menu {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
  }
}
@media (min-width: 1900px) {
  .block-2__menu {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    margin-top: 38px;
  }
}
.block-2__menu-item {
  background-color: #f0f0f0;
  border-radius: 4px;
  padding: 18px 26px 20px 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
@media (min-width: 1209px) {
  .block-2__menu-item {
    background-color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
  }
}
@media (min-width: 1900px) {
  .block-2__menu-item {
    background-color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
  }
}
.block-2__menu-item-icon {
  width: 20px;
  height: 20px;
}
@media (min-width: 1209px) {
  .block-2__menu-item-icon {
    width: 20px;
    height: 20px;
  }
}
@media (min-width: 1900px) {
  .block-2__menu-item-icon {
    width: 20px;
    height: 20px;
  }
}
.block-2__menu-item-text {
  color: #9b1ec2;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
}
.block-2__menu-item-text::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
@media (min-width: 1900px) {
  .block-2__menu-item-text {
    font-size: 14px;
    line-height: 1.5;
    font-weight: 500;
    color: #9b1ec2;
  }
}
.block-2__menu-item.border {
  border: 2px solid #f0f0f0 !important;
  background-color: transparent;
  text-decoration: none;
  width: 165px;
  height: 59px;
  padding: 18px 24px 20px 24px;
}
@media (min-width: 1209px) {
  .block-2__menu-item.border {
    border: 1px solid #fff !important;
    width: auto;
    height: auto;
    padding: 18px 26px 20px 26px;
  }
}
@media (min-width: 1900px) {
  .block-2__menu-item.border {
    border: 1px solid #fff !important;
    width: auto;
    height: auto;
    padding: 18px 26px 20px 26px;
  }
}
.block-2__menu-item.border br {
  display: none;
}
@media (min-width: 1209px) {
  .block-2__menu-item.border br {
    display: inline;
  }
}
@media (min-width: 1900px) {
  .block-2__menu-item.border br {
    display: inline;
  }
}
.block-2__menu-item.border .block-2__menu-item-text {
  text-decoration: underline;
  font-weight: 400;
}
.block-2__menu-item.border:hover {
  text-decoration: none;
}
.block-2__menu-item.border:hover .block-2__menu-item-text {
  text-decoration: none;
}

.block-3 {
  background-color: #261f2a;
}
.block-3 .container-small {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 38px;
  padding: 59px 16px;
}
@media (min-width: 1024px) {
  .block-3 .container-small {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 59px;
    padding: 24px;
  }
}
@media (min-width: 1900px) {
  .block-3 .container-small {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 79px;
    padding: 30px;
  }
}
.block-3__left {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media (min-width: 1024px) {
  .block-3__left {
    width: 264px;
    height: 422px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
  }
}
@media (min-width: 1900px) {
  .block-3__left {
    width: 534px;
    height: 462px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
  }
}
.block-3__left .bg-image {
  position: absolute;
  pointer-events: none;
  display: none;
}
@media (min-width: 1024px) {
  .block-3__left .bg-image {
    display: block;
    width: 100%;
    height: 100%;
  }
}
@media (min-width: 1900px) {
  .block-3__left .bg-image {
    display: block;
    width: 100%;
    height: 100%;
  }
}
.block-3__left .bg-image img {
  width: 100%;
  height: 100%;
}
@media (min-width: 1024px) {
  .block-3__left .icon {
    -ms-flex-item-align: end;
    align-self: flex-end;
    width: 54px;
    height: 47px;
    margin-bottom: 22px;
  }
}
@media (min-width: 1900px) {
  .block-3__left .icon {
    -ms-flex-item-align: end;
    align-self: flex-end;
    width: 54px;
    height: 47px;
    margin-bottom: 30px;
  }
}
.block-3__left .title {
  color: #de71ff;
  font-size: 60px;
  line-height: 107%;
  letter-spacing: -4.8px;
  font-weight: 700;
  margin-bottom: 3px;
}
@media (min-width: 1209px) {
  .block-3__left .title {
    font-size: 92px;
    line-height: 107%;
    letter-spacing: -7.36px;
    font-weight: 700;
    margin-bottom: 7px;
  }
}
@media (min-width: 1900px) {
  .block-3__left .title {
    font-size: 100px;
    line-height: 107%;
    letter-spacing: -8px;
    font-weight: 700;
    margin-bottom: 7px;
  }
}
.block-3__left .subtitle {
  color: #fff;
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -0.96px;
  font-weight: 700;
  width: 263px;
}
@media (min-width: 1024px) {
  .block-3__left .subtitle {
    text-align: right;
  }
}
@media (min-width: 1209px) {
  .block-3__left .subtitle {
    width: 193px;
    text-align: right;
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: -0.72px;
    font-weight: 700;
  }
}
@media (min-width: 1900px) {
  .block-3__left .subtitle {
    width: 193px;
    text-align: right;
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: -0.96px;
    font-weight: 600;
  }
}
.block-3__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px 22px;
}
@media (min-width: 1209px) {
  .block-3__menu {
    gap: 8px;
  }
}
@media (min-width: 1900px) {
  .block-3__menu {
    gap: 22px;
  }
}
.block-3__menu-item {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 45%;
  flex: 1 1 45%;
  width: auto;
  height: 180px;
  background-color: #312c34;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  padding: 20px;
  z-index: 1;
  overflow: hidden;
  border: 1px solid transparent;
  -webkit-transition: border-color 0.2s;
  transition: border-color 0.2s;
}
@media (min-width: 1024px) {
  .block-3__menu-item {
    -webkit-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 20px;
    width: 180px;
    height: 230px;
    background-color: #312c34;
    border-radius: 4px;
  }
  .block-3__menu-item:hover {
    border-color: #9b1ec2;
  }
  .block-3__menu-item:hover .block-3__menu-item-image {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  .block-3__menu-item:hover .block-3__menu-item-title {
    text-decoration: none;
  }
  .block-3__menu-item:hover::after {
    background-color: #fff;
    color: #261f2a;
  }
}
@media (min-width: 1900px) {
  .block-3__menu-item {
    -webkit-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
    padding: 30px;
    width: 240px;
    height: 280px;
    background-color: #312c34;
    border-radius: 4px;
  }
}
.block-3__menu-item::before {
  content: "";
  position: absolute;
  width: 255px;
  height: 130px;
  background-color: rgba(255, 255, 255, 0.2);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  left: -28px;
  top: -20px;
  z-index: -1;
  border-radius: 100%;
  -webkit-filter: blur(90px);
  filter: blur(90px);
  pointer-events: none;
}
.block-3__menu-item::after {
  position: absolute;
  right: 10px;
  bottom: 10px;
  content: "↗";
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: #9b1ec2;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: color 0.2s, background-color 0.2s;
  transition: color 0.2s, background-color 0.2s;
  font-size: 24px;
  pointer-events: none;
  line-height: 0;
}
.block-3__menu-item-image {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: -1;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}
@media (max-width: 1208px) {
  .block-3__menu-item-image {
    max-height: 102px;
  }
}
.block-3__menu-item-image img {
  width: 100%;
  height: auto;
}
@media (max-width: 1208px) {
  .block-3__menu-item-image img {
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
  }
}
.block-3__menu-item-title {
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
}
.block-3__menu-item-title::after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
@media (min-width: 1209px) {
  .block-3__menu-item-title {
    font-size: 16px;
    line-height: 135%;
    font-weight: 600;
  }
}
@media (min-width: 1900px) {
  .block-3__menu-item-title {
    font-size: 20px;
    line-height: 135%;
    font-weight: 600;
  }
}

.block-description__item h2,
.block-description__item h3 {
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.84px;
  font-weight: 700;
}
@media (min-width: 1209px) {
  .block-description__item h2,
  .block-description__item h3 {
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: -0.72px;
    font-weight: 700;
  }
}
@media (min-width: 1900px) {
  .block-description__item h2,
  .block-description__item h3 {
    font-size: 45px;
    line-height: 1.2;
    letter-spacing: -1.35px;
    font-weight: 600;
  }
}
.block-description__item p {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
}
@media (min-width: 1209px) {
  .block-description__item p {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
  }
}
@media (min-width: 1900px) {
  .block-description__item p {
    font-size: 22px;
    line-height: 1.5;
    font-weight: 400;
  }
}
@media (min-width: 768px) {
  .block-description__item.i100.i100-reverse {
    display: grid;
    grid-template-areas: ". image";
    grid-template-columns: 1fr auto;
    grid-template-rows: 1fr 1fr;
  }
}
@media (min-width: 768px) {
  .block-description__item.i100.i100-reverse picture {
    padding-right: 0;
    padding-left: 30px;
    padding-bottom: 0;
  }
}
@media (min-width: 1209px) {
  .block-description__item.i100.i100-reverse picture {
    padding-right: 0;
    padding-left: 30px;
    padding-bottom: 0;
  }
}
@media (min-width: 768px) {
  .block-description__item.i100 {
    display: grid;
    grid-template-areas: "image .";
    grid-template-columns: auto 1fr;
    grid-template-rows: 1fr 1fr;
  }
}
@media (min-width: 768px) {
  .block-description__item.i100 picture {
    margin: 0 !important;
    grid-area: image;
    grid-row: 1/-100;
    border-radius: 20px;
    padding-right: 30px;
    padding-bottom: 0;
  }
}
@media (min-width: 1209px) {
  .block-description__item.i100 picture {
    grid-area: image;
    grid-row: 1/-100;
    border-radius: 20px;
    padding-right: 30px;
    padding-bottom: 0;
  }
}
.block-description__item.i100 picture img {
  margin: 0;
  float: unset;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 8px;
  -o-object-position: center;
  object-position: center;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .block-description__item.i100 picture img {
    margin: 0;
    border-radius: 20px;
    max-width: 100%;
  }
}
.block-description__item img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 8px;
  -o-object-position: center;
  object-position: center;
}
@media (min-width: 768px) {
  .block-description__item img {
    border-radius: 20px;
    max-width: 30%;
  }
}
.block-description__item img.float-left {
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
}
@media (min-width: 1209px) {
  .block-description__item img.float-left {
    margin-right: 30px;
    margin-bottom: 30px;
  }
}
.block-description__item img.float-right {
  float: right;
  margin-left: 20px;
  margin-bottom: 20px;
}
@media (min-width: 1209px) {
  .block-description__item img.float-right {
    margin-left: 30px;
    margin-bottom: 30px;
  }
}
.block-description__item ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  list-style-type: disc;
}
@media (min-width: 1209px) {
  .block-description__item ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
    list-style-type: disc;
  }
}
@media (min-width: 1900px) {
  .block-description__item ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
    list-style-type: disc;
  }
}
.block-description__item ul li {
  position: relative;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
  margin-left: 1em;
}
@media (min-width: 1209px) {
  .block-description__item ul li {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    margin-left: 1em;
  }
}
@media (min-width: 1900px) {
  .block-description__item ul li {
    font-size: 18px;
    line-height: 1.5;
    font-weight: 400;
    margin-left: 1em;
  }
}
.block-description__item > * {
  margin-bottom: 20px;
}
@media (min-width: 1209px) {
  .block-description__item > * {
    margin-bottom: 30px;
  }
}
@media (min-width: 1900px) {
  .block-description__item > * {
    margin-bottom: 50px;
  }
}
.block-description__item > *:last-child {
  margin-bottom: 0 !important;
}
.block-description__item ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  counter-reset: count;
}
.block-description__item ol li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 22px;
  position: relative;
  padding-left: 40px;
  counter-increment: count;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
}
@media (min-width: 1209px) {
  .block-description__item ol li {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
  }
}
@media (min-width: 1900px) {
  .block-description__item ol li {
    font-size: 18px;
    line-height: 1.5;
    font-weight: 400;
  }
}
.block-description__item ol li::before {
  content: "0" counter(count);
  color: #834397;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 20px;
  line-height: 135%;
  font-weight: 700;
  width: 28px;
  height: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.block-description__item ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
}
@media (min-width: 1209px) {
  .block-description__item ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
  }
}
.block-description__item ul li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 12px;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
}
@media (min-width: 1209px) {
  .block-description__item ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 12px;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 400;
  }
}
.block-description__item ul li::before {
  content: "";
  display: block;
  background: #a530e4;
  width: 8px;
  height: 8px;
  border-radius: 50px;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}
.block-description .hr {
  width: 100%;
  height: 1px;
  margin: 30px 0;
  background-repeat: repeat-x;
  background-size: auto;
  background-position: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='2' viewBox='0 0 1840 2' fill='none'%3E%3Cpath d='M0 1H1840' stroke='black' stroke-dasharray='1 6'/%3E%3C/svg%3E");
  clear: both;
}
@media (min-width: 1900px) {
  .block-description .hr {
    margin: 40px 0;
  }
}
@media (min-width: 1900px) {
  .block-description .hr {
    margin: 60px 0;
  }
}
.block-description .hr.last {
  margin-bottom: 0;
}
.block-description blockquote {
  margin: 20px 0;
}
.block-description .info {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background-color: #f7f7f7;
  border-radius: 8px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (min-width: 1209px) {
  .block-description .info {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 20px;
    padding: 20px;
    background-color: #f7f7f7;
    border-radius: 8px;
  }
}
@media (min-width: 1900px) {
  .block-description .info {
    gap: 30px;
    padding: 30px;
    background-color: #f7f7f7;
    border-radius: 8px;
  }
}
.block-description .info__left--title {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 700;
}
@media (min-width: 1209px) {
  .block-description .info__left--title {
    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
  }
}
@media (min-width: 1900px) {
  .block-description .info__left--title {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
  }
}
.block-description .info__left--subtitle {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
}
@media (min-width: 1900px) {
  .block-description .info__left--subtitle {
    font-size: 14px;
    line-height: 1.5;
    font-weight: 600;
  }
}
@media (min-width: 1900px) {
  .block-description .info__left--subtitle {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 600;
  }
}

.spunt-calculator {
  background: #f7f6f7;
  padding: 20px 0;
}
@media (min-width: 1024px) {
  .spunt-calculator {
    padding: 30px 0;
  }
}
@media (min-width: 1900px) {
  .spunt-calculator {
    padding: 40px 0;
  }
}
@media (min-width: 1209px) {
  .spunt-calculator .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: -2px;
  }
}
@media (min-width: 1900px) {
  .spunt-calculator .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: -2px;
  }
}
.spunt-calculator__image {
  display: none;
  width: 93px;
  height: 97px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 93px;
  flex: 0 0 93px;
}
@media (min-width: 1209px) {
  .spunt-calculator__image {
    -webkit-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
    display: block;
    width: 428px;
    height: 447px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 428px;
    flex: 0 0 428px;
  }
}
@media (min-width: 1900px) {
  .spunt-calculator__image {
    -webkit-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
    display: block;
    width: 428px;
    height: 447px;
  }
}
.spunt-calculator__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}
.spunt-calculator__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 1900px) {
  .spunt-calculator__content {
    gap: 22px;
  }
}
.spunt-calculator__content--top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}
.spunt-calculator__content--top .spunt-calculator__image {
  display: block;
}
@media (min-width: 1024px) {
  .spunt-calculator__content--top .spunt-calculator__image {
    display: none;
  }
}
.spunt-calculator__title {
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: -0.66px;
  font-weight: 600;
}
@media (min-width: 1024px) {
  .spunt-calculator__title {
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: -0.96px;
    font-weight: 600;
  }
}
@media (min-width: 1900px) {
  .spunt-calculator__title {
    font-size: 45px;
    line-height: 1.2;
    letter-spacing: -1.35px;
    font-weight: 600;
  }
}
.spunt-calculator .commercial-offer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}
.spunt-calculator .commercial-offer__product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
@media (min-width: 1024px) {
  .spunt-calculator .commercial-offer__product {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    width: auto;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .spunt-calculator .commercial-offer__product > div {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 40%;
    flex: 1 1 40%;
  }
}
@media (min-width: 1900px) {
  .spunt-calculator .commercial-offer__product {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    width: auto;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .spunt-calculator .commercial-offer__product > div {
    -webkit-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
  }
}
.spunt-calculator .commercial-offer__product .product-selector {
  border-radius: 15px;
  padding: 20px;
  background: #fff;
  width: 100%;
}
@media (min-width: 1024px) {
  .spunt-calculator .commercial-offer__product .product-selector {
    padding: 20px;
    width: auto;
  }
}
@media (min-width: 1900px) {
  .spunt-calculator .commercial-offer__product .product-selector {
    padding: 30px;
    width: auto;
  }
}
.spunt-calculator .commercial-offer__product .product-selector.highlight .custom-select__selected {
  border: 1px solid #f00;
}
.spunt-calculator .commercial-offer__product .product-selector .custom-select {
  margin-bottom: 0;
}
.spunt-calculator .commercial-offer__product .product-selector .custom-select .custom-select__selected {
  background: #fff;
}
@media (min-width: 1900px) {
  .spunt-calculator .commercial-offer__product .product-selector .custom-select .custom-select__selected {
    min-width: 319px;
  }
}
.spunt-calculator .commercial-offer__product .product-info {
  border: 2px solid #fff;
  border-radius: 15px;
  padding: 20px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 1024px) {
  .spunt-calculator .commercial-offer__product .product-info {
    width: auto;
    border: 2px solid #fff;
    border-radius: 15px;
    padding: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 6px;
  }
}
@media (min-width: 1900px) {
  .spunt-calculator .commercial-offer__product .product-info {
    width: auto;
    border: 2px solid #fff;
    border-radius: 15px;
    padding: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
  }
}
.spunt-calculator .commercial-offer__product .product-info p {
  font-size: 12px;
  line-height: 1.35;
  font-weight: 400;
}
@media (min-width: 1024px) {
  .spunt-calculator .commercial-offer__product .product-info p {
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
  }
}
.spunt-calculator .commercial-offer__product .product-dimensions {
  border-radius: 15px;
  padding: 20px;
  background: #fff;
}
@media (min-width: 1900px) {
  .spunt-calculator .commercial-offer__product .product-dimensions {
    padding: 30px;
  }
}
.spunt-calculator .commercial-offer__product .product-dimensions__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 18px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.spunt-calculator .commercial-offer__product .product-dimensions__label {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
}
.spunt-calculator .commercial-offer__product .product-dimensions__input-wrapper {
  margin-bottom: unset;
}
.spunt-calculator .commercial-offer__product .product-dimensions__input-wrapper input {
  border-radius: 4px;
  padding: 18px 22px 20px 22px;
  position: relative;
  max-width: 107px;
  background-color: #fff;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
}
.spunt-calculator .commercial-offer__product .product-dimensions__input-wrapper:hover input {
  border-color: #9b1ec2;
}
.spunt-calculator .commercial-offer__product .product-dimensions__controls {
  position: absolute;
  right: 6px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4px;
}
@media (min-width: 1209px) {
  .spunt-calculator .commercial-offer__product .product-dimensions__controls button:hover svg .arrow-bg {
    fill: #9b1ec2;
  }
}
.spunt-calculator .commercial-offer__product .product-dimensions__controls button svg {
  width: 20px;
  height: 20px;
}
.spunt-calculator .commercial-offer__product .product-dimensions__controls button svg .arrow-bg {
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.spunt-calculator .commercial-offer__summary {
  border-radius: 15px;
  padding: 22px 10px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}
.spunt-calculator .commercial-offer__summary .summary-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 1024px) {
  .spunt-calculator .commercial-offer__summary .summary-info {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 25px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0px 25px;
  }
}
@media (min-width: 1900px) {
  .spunt-calculator .commercial-offer__summary .summary-info {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 58px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0px 25px;
  }
}
.spunt-calculator .commercial-offer__summary .summary-info__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 8px;
}
@media (min-width: 1024px) {
  .spunt-calculator .commercial-offer__summary .summary-info__item {
    gap: 15px;
  }
}
@media (min-width: 1900px) {
  .spunt-calculator .commercial-offer__summary .summary-info__item {
    gap: 15px;
  }
}
.spunt-calculator .commercial-offer__summary .summary-info__label {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
}
@media (min-width: 1900px) {
  .spunt-calculator .commercial-offer__summary .summary-info__label {
    font-size: 18px;
    line-height: 1.5;
    font-weight: 400;
  }
}
.spunt-calculator .commercial-offer__summary .summary-info__value {
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
}
@media (min-width: 1900px) {
  .spunt-calculator .commercial-offer__summary .summary-info__value {
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: -0.72px;
    font-weight: 700;
  }
}
.spunt-calculator .commercial-offer__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border-radius: 15px;
  padding: 10px;
  background: #3b3742;
}
@media (min-width: 1024px) {
  .spunt-calculator .commercial-offer__price {
    padding: 20px 10px;
    border-radius: 4px;
    background: #261f2a;
    gap: 20px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media (min-width: 1900px) {
  .spunt-calculator .commercial-offer__price {
    padding: 10px;
    border-radius: 4px;
    background: #261f2a;
    gap: 31px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.spunt-calculator .commercial-offer__price .price-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  padding: 20px 18px;
}
@media (min-width: 1024px) {
  .spunt-calculator .commercial-offer__price .price-info {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 20px;
    padding: unset;
  }
}
@media (min-width: 1900px) {
  .spunt-calculator .commercial-offer__price .price-info {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 30px;
    padding: unset;
  }
}
.spunt-calculator .commercial-offer__price .price-info__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 1900px) {
  .spunt-calculator .commercial-offer__price .price-info__block {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 20px;
  }
}
.spunt-calculator .commercial-offer__price .price-info__label {
  color: #cbcacb;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
}
@media (min-width: 1900px) {
  .spunt-calculator .commercial-offer__price .price-info__label {
    color: #fff;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 400;
  }
}
.spunt-calculator .commercial-offer__price .price-info__value {
  color: #fff;
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -0.96px;
  font-weight: 600;
}
@media (min-width: 1024px) {
  .spunt-calculator .commercial-offer__price .price-info__value {
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: -0.72px;
    font-weight: 700;
  }
}
@media (min-width: 1900px) {
  .spunt-calculator .commercial-offer__price .price-info__value {
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: -0.72px;
    font-weight: 700;
  }
}

.clients__title {
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.84px;
  font-weight: 700;
}
@media (min-width: 1209px) {
  .clients__title {
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: -0.96px;
    font-weight: 600;
  }
}
@media (min-width: 1900px) {
  .clients__title {
    font-size: 45px;
    line-height: 1.2;
    letter-spacing: -1.35px;
    font-weight: 600;
  }
}
.clients__item {
  -webkit-perspective: 1000px;
  perspective: 1000px;
  width: 100%;
  height: 112px;
}
@media (min-width: 1900px) {
  .clients__item {
    height: 200px;
  }
}
.clients__item .clients__inner {
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-transition: -webkit-transform 0.6s;
  transition: -webkit-transform 0.6s;
  transition: transform 0.6s;
  transition: transform 0.6s, -webkit-transform 0.6s;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.clients__item:hover .clients__inner {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
.clients__item .clients__front,
.clients__item .clients__back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border: 1px solid #bababa;
  width: 100%;
  border-radius: 8px;
  height: 112px;
  padding: 30px;
}
@media (min-width: 1900px) {
  .clients__item .clients__front,
  .clients__item .clients__back {
    height: 200px;
    padding: 48px 43px;
  }
}
.clients__item .clients__front {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: white;
}
.clients__item .clients__front img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}
.clients__item .clients__back {
  background: #f9f9f9;
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 400;
}
@media (min-width: 1900px) {
  .clients__item .clients__back {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
  }
}

.contacts {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
@media (min-width: 1024px) {
  .contacts {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
@media (min-width: 1209px) {
  .contacts {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
@media (min-width: 1900px) {
  .contacts {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
.contacts .container {
  position: relative;
  z-index: 2;
  pointer-events: none;
}
.contacts__left {
  background-color: #fff;
  margin-top: 40px;
  margin-bottom: 90px;
  z-index: 1;
  position: relative;
  pointer-events: all;
}
@media (min-width: 1024px) {
  .contacts__left {
    margin-top: unset;
    margin-bottom: unset;
    width: 420px;
    padding: 40px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 420px;
    flex: 0 0 420px;
  }
}
@media (min-width: 1900px) {
  .contacts__left {
    margin-top: unset;
    margin-bottom: unset;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 480px;
    flex: 0 0 480px;
    width: 480px;
    padding: 80px;
  }
}
.contacts__right {
  width: 100%;
}
.contacts__title {
  color: #000;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.84px;
  font-weight: 700;
  margin-bottom: 30px;
}
@media (min-width: 1024px) {
  .contacts__title {
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: -0.96px;
    font-weight: 600;
    margin-bottom: 30px;
  }
}
@media (min-width: 1900px) {
  .contacts__title {
    font-size: 45px;
    line-height: 1.2;
    letter-spacing: -1.35px;
    font-weight: 600;
    margin-bottom: 40px;
  }
}
.contacts__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 1900px) {
  .contacts__content {
    gap: 16px;
  }
}
.contacts__content a.link {
  color: #9b1ec2;
}
.contacts__content a.link.contacts__call {
  color: #000;
}
.contacts__button.desktop {
  display: none;
}
@media (min-width: 1024px) {
  .contacts__button.desktop {
    display: block;
  }
}
@media (min-width: 1900px) {
  .contacts__button.desktop {
    display: block;
  }
}
.contacts__button.mobile {
  display: block;
  margin-top: 30px;
}
@media (min-width: 1024px) {
  .contacts__button.mobile {
    margin-top: unset;
    display: none;
  }
}
@media (min-width: 1900px) {
  .contacts__button.mobile {
    margin-top: unset;
    display: none;
  }
}
.contacts__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #000;
  gap: 20px;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
}
@media (min-width: 1024px) {
  .contacts__icon {
    gap: 20px;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
  }
}
@media (min-width: 1900px) {
  .contacts__icon {
    gap: 20px;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 400;
  }
}
.contacts__icon img {
  width: 38px;
  height: 38px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 38px;
  flex: 0 0 38px;
}
@media (min-width: 1024px) {
  .contacts__icon img {
    width: 30px;
    height: 30px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 30px;
    flex: 0 0 30px;
  }
}
@media (min-width: 1900px) {
  .contacts__icon img {
    width: 30px;
    height: 30px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 30px;
    flex: 0 0 30px;
  }
}
.contacts__call {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
}
@media (min-width: 1024px) {
  .contacts__call {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 600;
  }
}
@media (min-width: 1900px) {
  .contacts__call {
    font-size: 18px;
    line-height: 1.5;
    font-weight: 600;
  }
}
.contacts__days {
  display: none;
}
@media (min-width: 1024px) {
  .contacts__days {
    display: block;
    width: 200px;
  }
}
@media (min-width: 1900px) {
  .contacts__days {
    display: block;
    width: 240px;
  }
}
.contacts__days img {
  width: 100%;
  height: auto;
}
.contacts__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
}
@media (min-width: 1024px) {
  .contacts__social {
    gap: 20px;
    margin-top: 40px;
  }
}
@media (min-width: 1900px) {
  .contacts__social {
    gap: 40px;
    margin-top: 40px;
  }
}
.contacts__social a svg {
  width: 50px;
  height: 50px;
  -webkit-transition: -webkit-filter 0.2s;
  transition: -webkit-filter 0.2s;
  transition: filter 0.2s;
  transition: filter 0.2s, -webkit-filter 0.2s;
}
@media (min-width: 1209px) {
  .contacts__social a:hover svg {
    -webkit-filter: brightness(0.8);
    filter: brightness(0.8);
  }
}
@media (min-width: 1024px) {
  .contacts__right {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
  }
}
.contacts__right .map {
  width: 100%;
  height: 414px;
  position: relative;
}
@media (min-width: 1024px) {
  .contacts__right .map {
    width: 100%;
    height: 100%;
  }
}
@media (min-width: 1900px) {
  .contacts__right .map {
    width: 100%;
    height: 100%;
  }
}
.contacts__right .map iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.contacts__right .map .overlay-map {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: transparent;
  cursor: pointer;
  z-index: 1;
}

.map {
  position: relative;
}
.map .overlay-map {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: transparent;
  cursor: pointer;
  z-index: 1;
}
.map .ymaps-2-1-79-balloon {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.map .ymaps-2-1-79-balloon__layout {
  background: unset !important;
}
.map .ymaps-2-1-79-balloon__close {
  display: none !important;
}
.map .ymaps-2-1-79-balloon__content {
  padding: 0;
  margin: 0;
  background: unset !important;
}
.map .ymaps-2-1-79-balloon__tail {
  -webkit-box-shadow: unset !important;
  box-shadow: unset !important;
  background: unset !important;
  display: block;
  position: relative;
  left: 0;
  width: 17px;
  height: 17px;
  margin-bottom: -17px;
  -webkit-transform: rotate(0deg) !important;
  transform: rotate(0deg) !important;
}
.map .ymaps-2-1-79-balloon__tail:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: #fff transparent transparent transparent;
  background-color: unset;
  bottom: 1px;
  left: 1px;
}

.footer {
  color: #fff;
}
.footer .bg-light-clr {
  background-color: #261f2a;
  padding: 50px 0;
}
@media (min-width: 1209px) {
  .footer .bg-light-clr {
    padding: 50px 0;
  }
}
@media (min-width: 1900px) {
  .footer .bg-light-clr {
    padding: 75px 0;
  }
}
.footer .bg-dark-clr {
  background-color: #1d1721;
}
@media (min-width: 1209px) {
  .footer .bg-dark-clr {
    padding: 50px 0;
  }
}
@media (min-width: 1900px) {
  .footer .bg-dark-clr {
    padding: 75px 0;
  }
}
.footer .gray {
  color: #d6d6d6;
}
.footer a {
  color: #fff;
}
@media (min-width: 1209px) {
  .footer .purple {
    color: #dc96f1;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
  }
}
@media (min-width: 1900px) {
  .footer .purple {
    color: #dc96f1;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
  }
}
.footer .link-docs {
  color: #dc96f1;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
}
@media (min-width: 1209px) {
  .footer .link-docs {
    color: #dc96f1;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 600;
  }
}
@media (min-width: 1900px) {
  .footer .link-docs {
    color: #dc96f1;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 600;
  }
}
.footer .logo {
  width: 200px;
  height: 41px;
}
@media (min-width: 1900px) {
  .footer .logo {
    width: 317px;
    height: 65px;
  }
}
.footer .list-unstyled li a {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
}
@media (min-width: 1209px) {
  .footer .list-unstyled li a {
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
  }
}
@media (min-width: 1900px) {
  .footer .list-unstyled li a {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
  }
}
.footer .city {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  color: #fff;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 600;
}
@media (min-width: 1209px) {
  .footer .city {
    gap: 15px;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 600;
  }
}
@media (min-width: 1900px) {
  .footer .city {
    gap: 15px;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 600;
  }
}
.footer .city svg {
  width: 38px;
  height: 38px;
}
.footer .city a {
  color: #dc96f1;
}
.footer p.text {
  font-size: 12px;
  line-height: 1.35;
  font-weight: 400;
}
@media (min-width: 1900px) {
  .footer p.text {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
  }
}
.footer .creators {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
}
@media (min-width: 1900px) {
  .footer .creators {
    gap: 7px;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
  }
}
.footer .creators a {
  position: relative;
}
@media (min-width: 1209px) {
  .footer .creators a:hover .icon-2 {
    width: 100%;
  }
}
.footer .creators svg {
  width: 77px;
  height: 21px;
}
.footer .creators .icon-2 {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  height: 100%;
  width: 0;
  overflow: hidden;
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
}
.footer .creators .icon-2 svg {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  max-width: none;
  max-height: none;
  width: auto;
  height: auto;
}
.footer .policity {
  display: inline-block;
  color: #dc96f1;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
}
@media (min-width: 1900px) {
  .footer .policity {
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
  }
}

@media (min-width: 1209px) {
  .gray-block {
    background-color: #f7f6f7;
  }
}
.gray-block__title {
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.84px;
  font-weight: 700;
  margin-bottom: 30px;
}
@media (min-width: 1209px) {
  .gray-block__title {
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: -0.96px;
    font-weight: 600;
    margin-bottom: 30px;
  }
}
@media (min-width: 1900px) {
  .gray-block__title {
    font-size: 45px;
    line-height: 1.2;
    letter-spacing: -1.35px;
    font-weight: 600;
    margin-bottom: 40px;
  }
}
.gray-block__text {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  margin-bottom: 30px;
}
@media (min-width: 1900px) {
  .gray-block__text {
    font-size: 18px;
    line-height: 1.5;
    font-weight: 400;
    margin-bottom: 40px;
  }
}
.gray-block__btn {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
}
@media (min-width: 1900px) {
  .gray-block__btn {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 600;
  }
}
.gray-block__img {
  width: 100%;
  height: 100%;
}
.gray-block__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

header {
  height: 79px;
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) {
  header {
    height: 96px;
  }
}
@media (min-width: 1024px) {
  header {
    height: 193px;
  }
}
@media (min-width: 1209px) {
  header {
    height: 201px;
  }
}
@media (min-width: 1900px) {
  header {
    height: 210px;
  }
}

.header {
  background: rgb(255, 255, 255);
}
.header .header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 22px 0 22px;
  gap: 20px;
}
@media (min-width: 768px) {
  .header .header__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 32px 0 29px;
    gap: 40px;
  }
}
@media (min-width: 1209px) {
  .header .header__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 32px 0 29px;
    gap: 10px;
  }
}
@media (min-width: 1900px) {
  .header .header__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 32px 0 29px;
  }
}
.header .header__inner-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}
@media (min-width: 768px) {
  .header .header__inner-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 40px;
  }
}
@media (min-width: 1209px) {
  .header .header__inner-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
  }
}
@media (min-width: 1900px) {
  .header .header__inner-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
  }
}
.header__mob-soc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: auto;
}
@media (min-width: 1024px) {
  .header__mob-soc {
    display: none;
  }
}
@media (min-width: 1900px) {
  .header__mob-soc {
    display: none;
  }
}
.header__mob-burger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 35px;
  height: 35px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.header__mob-burger svg {
  width: 25px;
  height: 22px;
}
@media (min-width: 1024px) {
  .header__mob-burger {
    display: none;
  }
}
@media (min-width: 1900px) {
  .header__mob-burger {
    display: none;
  }
}
.header__mob-menu {
  width: 300px;
  min-width: 300px;
  height: 100%;
  position: fixed;
  top: 0;
  bottom: 0;
  margin: 0;
  right: -300px;
  padding: 27px 0 6px 10px;
  -webkit-transition: right 0.3s;
  transition: right 0.3s;
  background: #261f2a;
  z-index: 2000;
}
.header__mob-menu.active {
  right: 0;
  box-shadow: -4px 0px 20px 0px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: -4px 0px 20px 0px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: -4px 0px 20px 0px rgba(0, 0, 0, 0.5);
  overflow-y: auto;
}
.header .header-fixed {
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}
.header .header-fixed.fixed {
  position: fixed;
  top: 0;
  z-index: 1000;
  background: #fff;
  left: 0;
  right: 0;
  border-bottom: 2px solid #9b00cc;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.header .header-fixed.fixed .header__bottom {
  display: none;
}
@media (min-width: 1024px) {
  .header .header-fixed.fixed .header__bottom {
    padding: 15px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-top: unset;
  }
}
@media (min-width: 1209px) {
  .header .header-fixed.fixed .header__bottom {
    padding: 15px 0;
    border-top: unset;
  }
}
@media (min-width: 1900px) {
  .header .header-fixed.fixed .header__bottom {
    padding: 15px 0;
    border-top: unset;
  }
}
.header .header-fixed.fixed.hidden {
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}
.header .header__bottom {
  display: none;
  will-change: transform;
  -webkit-transition: padding 0.1s ease-in-out;
  transition: padding 0.1s ease-in-out;
}
@media (min-width: 1024px) {
  .header .header__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    padding: 24px 0 28px;
    border-top: 1px solid rgb(217, 217, 217);
  }
}
@media (min-width: 1209px) {
  .header .header__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    padding: 24px 0 28px;
    border-top: 1px solid rgb(217, 217, 217);
  }
}
@media (min-width: 1900px) {
  .header .header__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    padding: 24px 0 28px;
    border-top: 1px solid rgb(217, 217, 217);
  }
}
@media (min-width: 1024px) {
  .header .header__bottom-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
  }
}
@media (min-width: 1209px) {
  .header .header__bottom-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
  }
}
@media (min-width: 1900px) {
  .header .header__bottom-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
  }
}
.header .header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (min-width: 1209px) {
  .header .header__logo {
    gap: 15px;
  }
}
@media (min-width: 1900px) {
  .header .header__logo {
    gap: 35px;
  }
}
.header .header__logo:hover {
  text-decoration: none;
}
.header .header__logo svg {
  display: block;
  width: 169px;
  height: 35px;
}
@media (min-width: 1209px) {
  .header .header__logo svg {
    width: 169px;
    height: 35px;
  }
}
@media (min-width: 1900px) {
  .header .header__logo svg {
    width: 229px;
    height: 47px;
  }
}
.header .header__logo-text {
  font-size: 10px;
  font-weight: 400;
  line-height: 1.2;
  color: #3b3742;
  display: none;
}
@media (min-width: 1209px) {
  .header .header__logo-text {
    width: 147px;
    display: none;
  }
}
@media (min-width: 1900px) {
  .header .header__logo-text {
    width: 147px;
    display: block;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.2;
  }
}
.header .header__city {
  display: none;
}
@media (min-width: 1024px) {
  .header .header__city {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
  }
  .header .header__city-icon {
    width: 20px;
    height: 20px;
  }
  .header .header__city-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media (min-width: 1900px) {
  .header .header__city {
    display: block;
    position: relative;
  }
  .header .header__city-icon {
    width: 30px;
    height: 30px;
  }
}
.header .header__city button:not(.button) {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  color: #3b3742;
  display: none;
}
@media (min-width: 1024px) {
  .header .header__city button:not(.button) {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    gap: 10px;
    font-size: 12px;
    line-height: 1.35;
  }
}
@media (min-width: 1900px) {
  .header .header__city button:not(.button) {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    gap: 10px;
    font-size: 16px;
    line-height: 1.35;
  }
}
.header .header__menu {
  display: none;
}
@media (min-width: 1024px) {
  .header .header__menu {
    display: block;
  }
}
@media (min-width: 1900px) {
  .header .header__menu {
    display: block;
  }
}
.header .header__menu-list {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: none;
}
@media (min-width: 1024px) {
  .header .header__menu-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
  }
  .header .header__menu-list li a {
    font-size: 14px;
    line-height: 1.35;
  }
}
@media (min-width: 1900px) {
  .header .header__menu-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 45px;
  }
  .header .header__menu-list li a {
    font-size: 16px;
    line-height: 1.35;
  }
}
.header .header__bottom-menu {
  display: none;
}
@media (min-width: 1024px) {
  .header .header__bottom-menu {
    display: block;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
  }
}
.header .header__bottom-menu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
@media (min-width: 1209px) {
  .header .header__bottom-menu-list {
    gap: 10px;
  }
}
@media (min-width: 1900px) {
  .header .header__bottom-menu-list {
    gap: 45px;
  }
}
.header .header__bottom-menu-list li {
  position: relative;
}
.header .header__bottom-menu-list li:hover .header__dropdown {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.header .header__bottom-menu-list li:hover a {
  color: #712b87;
  text-decoration: none;
}
.header .header__bottom-menu-list li:hover .header__bottom-menu-item-arrow {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.header .header__bottom-menu-list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  color: #3b3742;
}
@media (min-width: 1209px) {
  .header .header__bottom-menu-list li a {
    gap: 10px;
    font-size: 13px;
    line-height: 1.35;
  }
}
@media (min-width: 1900px) {
  .header .header__bottom-menu-list li a {
    font-size: 16px;
    line-height: 1.35;
  }
}
.header .header__bottom-menu-list li a svg {
  width: 16px;
  height: 16px;
}
@media (min-width: 1900px) {
  .header .header__bottom-menu-list li a svg {
    width: 18px;
    height: 18px;
  }
}
.header .header__bottom-menu-item-arrow {
  width: 9px;
  height: 9px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.header .header__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #F0F0F0;
  border-radius: 12px;
  -webkit-box-shadow: 0 3px 0 0 rgba(58, 58, 58, 0.3);
  box-shadow: 0 3px 0 0 rgba(58, 58, 58, 0.3);
  padding: 24px;
  min-width: 300px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transition: opacity 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
  margin-top: 36px;
}
@media (min-width: 1209px) {
  .header .header__dropdown {
    min-width: 500px;
    padding: 30px;
  }
}
@media (min-width: 1900px) {
  .header .header__dropdown {
    min-width: 966px;
    padding: 40px;
  }
}
.header .header__dropdown::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: -36px;
  left: 0;
  right: 0;
  z-index: -1;
}
.header .header__dropdown-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}
@media (min-width: 1209px) {
  .header .header__dropdown-grid {
    gap: 25px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1900px) {
  .header .header__dropdown-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 69px;
  }
}
.header .header__dropdown-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  border-radius: 8px;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
  cursor: pointer;
}
@media (min-width: 1209px) {
  .header .header__dropdown-item {
    gap: 15px;
  }
}
.header .header__dropdown-item:hover .header__dropdown-icon {
  background: #834397;
}
.header .header__dropdown-item:hover .header__dropdown-text {
  color: #712b87;
}
.header .header__dropdown-icon {
  border-radius: 6px;
  background: #5b545e;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media (min-width: 1209px) {
  .header .header__dropdown-icon {
    width: 59px;
    height: 38px;
  }
}
.header .header__dropdown-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.header .header__dropdown-text {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.3;
  color: #3b3742;
}
@media (min-width: 1209px) {
  .header .header__dropdown-text {
    font-size: 14px;
  }
}
@media (min-width: 1900px) {
  .header .header__dropdown-text {
    font-size: 15px;
  }
}
.header .header__bottom-search {
  display: none;
}
@media (min-width: 1209px) {
  .header .header__bottom-search {
    display: block;
  }
}
@media (min-width: 1900px) {
  .header .header__bottom-search {
    display: block;
  }
}
.header .header__bottom-search-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid rgb(209, 209, 209);
  border-radius: 4px;
  padding: 13px 10px 13px 10px;
  -webkit-transition: border 0.3s;
  transition: border 0.3s;
}
.header .header__bottom-search-label:focus-within {
  border: 1px solid rgb(113, 43, 135);
}
@media (min-width: 1209px) {
  .header .header__bottom-search-label {
    gap: 10px;
  }
  .header .header__bottom-search-label:hover {
    border: 1px solid rgb(113, 43, 135);
  }
}
@media (min-width: 1900px) {
  .header .header__bottom-search-label {
    padding: 13px 15px 13px 15px;
    gap: 15px;
  }
}
.header .header__bottom-search-label input {
  width: 100%;
}
.header .header__bottom-search svg {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 16px;
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
}
@media (min-width: 1209px) {
  .header .header__bottom-search svg {
    width: 16px;
    height: 16px;
  }
}
@media (min-width: 1900px) {
  .header .header__bottom-search svg {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 18px;
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
  }
}
.header .header__button {
  display: none;
}
@media (min-width: 1209px) {
  .header .header__button {
    display: block;
  }
}
.header .header__bottom-soc svg {
  width: 20px;
  height: 20px;
}
@media (min-width: 1209px) {
  .header .header__bottom-soc svg {
    width: 20px;
    height: 20px;
  }
}
@media (min-width: 1900px) {
  .header .header__bottom-soc svg {
    width: 30px;
    height: 30px;
  }
}
.header .header__bottom-soc-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  color: #3b3742;
}
@media (min-width: 1900px) {
  .header .header__bottom-soc-link {
    font-size: 18px;
    line-height: 1.35;
  }
}
.header .header__bottom-soc-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5px;
}
.header .header__bottom-soc-text span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  font-size: 10px;
  line-height: 100%;
}
@media (min-width: 1900px) {
  .header .header__bottom-soc-text span {
    font-size: 12px;
    line-height: 100%;
  }
}
.header .header__bottom-soc-text span.green-point::before {
  content: "";
  position: relative;
  display: block;
  border-radius: 50%;
  margin-right: 5px;
  background: rgb(31, 166, 53);
  width: 6.11px;
  height: 6.11px;
}
.header .header__bottom-soc-text span.green-point::after {
  content: "";
  position: absolute;
  display: block;
  border-radius: 50%;
  margin-right: 5px;
  background: rgba(31, 166, 53, 0.3);
  width: 6.11px;
  height: 6.11px;
  -webkit-animation: scale 1.5s infinite;
  animation: scale 1.5s infinite;
}

@-webkit-keyframes scale {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(2);
    transform: scale(2);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes scale {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(2);
    transform: scale(2);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.mob-menu.open-submenu .mob-menu__list {
  display: none;
}
.mob-menu.open-submenu .mob-menu__contacts {
  display: none;
}
.mob-menu__list-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4px;
}
.mob-menu__list-icon li a.item-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 17px 18px 19px 30px;
  background: #1f1823;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  color: #fff;
  gap: 10px;
  text-decoration: none;
}
.mob-menu__list-icon li a.item-icon svg {
  width: 18px;
  height: 18px;
}
.mob-menu__list-icon li a.item-icon svg.arrow {
  margin-left: auto;
  width: 9px;
  height: 9px;
}
.mob-menu__list-icon li.active .submenu {
  opacity: 1;
  pointer-events: auto;
  position: static;
  z-index: unset;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.mob-menu__list-icon li .submenu {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  z-index: -1000;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.mob-menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 36px;
  padding: 35px 0 35px 30px;
}
.mob-menu__list li {
  position: relative;
}
.mob-menu__list li::after {
  content: "";
  position: absolute;
  bottom: -18px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #352e39;
}
.mob-menu__list li:last-child::after {
  display: none;
}
.mob-menu__list li a {
  color: #fff;
}
.mob-menu .mob-menu__contacts {
  color: #fff;
  padding: 30px 38px 27px 30px;
  background-color: #322837;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}
.mob-menu .mob-menu__contacts svg {
  width: 30px;
  height: 30px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 30px;
  flex: 0 0 30px;
}
.mob-menu .mob-menu__contacts .header__bottom-soc-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 18px;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.35;
  color: #fff;
}
.mob-menu .mob-menu__contacts .header__bottom-soc-link a[href^="tel:"],
.mob-menu .mob-menu__contacts .header__bottom-soc-link a[href^="mailto:"] {
  color: #fff;
}
.mob-menu .mob-menu__contacts .header__bottom-soc-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5px;
}
.mob-menu .mob-menu__contacts .header__bottom-soc-text span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  font-size: 12px;
  line-height: 100%;
}
.mob-menu .mob-menu__contacts .header__bottom-soc-text span.green-point::before {
  content: "";
  position: relative;
  display: block;
  border-radius: 50%;
  margin-right: 5px;
  background: rgb(31, 166, 53);
  width: 6.11px;
  height: 6.11px;
}
.mob-menu .mob-menu__contacts .header__bottom-soc-text span.green-point::after {
  content: "";
  position: absolute;
  display: block;
  border-radius: 50%;
  margin-right: 5px;
  background: rgba(31, 166, 53, 0.3);
  width: 6.11px;
  height: 6.11px;
  -webkit-animation: scale 1.5s infinite;
  animation: scale 1.5s infinite;
}

main,
.header,
.footer {
  -webkit-transition: transform 0.3s;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

body.lock {
  overflow: hidden;
}
body.lock main,
body.lock .header,
body.lock .footer {
  -webkit-transform: translateX(-300px);
  transform: translateX(-300px);
}

.popup-city-overlay {
  display: none; /* Скрыт по умолчанию */
  position: absolute;
  top: 100%;
  left: 0;
  width: auto;
  height: 100%;
  z-index: 100;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.popup-city {
  border-radius: 0 8px 8px 8px;
  padding: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 22px;
  -webkit-box-shadow: 0 3px 0 0 rgba(58, 58, 58, 0.3);
  box-shadow: 0 3px 0 0 rgba(58, 58, 58, 0.3);
  background: #f0f0f0;
  min-width: 320px;
}

.popup-city-text {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 600;
  color: #000;
}

.popup-city-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 10px;
}

.button-yes,
.button-change {
  color: white;
  cursor: pointer;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.button-change {
  text-transform: unset;
}

.fixed-container {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 99;
  -webkit-box-shadow: 0 4px 70px 0 rgba(78, 68, 81, 0.2);
  box-shadow: 0 4px 70px 0 rgba(78, 68, 81, 0.2);
  background-color: #fff;
  padding: 18px 0;
  -webkit-transition: opacity 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}
.fixed-container.hidden {
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.fixed-container .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (min-width: 1209px) {
  .fixed-container .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
.fixed-container__text {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.35;
  color: #545454;
  display: none;
}
@media (min-width: 1209px) {
  .fixed-container__text {
    display: block;
  }
}
.fixed-container__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}
.fixed-container__left .button svg {
  fill: transparent;
}
.fixed-container__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}
.fixed-container__spec {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}
@media (min-width: 1209px) {
  .fixed-container__spec {
    width: 231px;
  }
}
.fixed-container__spec-image {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 58px;
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  position: relative;
}
.fixed-container__spec-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.fixed-container__spec-image::after {
  content: "";
  position: absolute;
  display: block;
  border-radius: 100%;
  left: 0;
  top: 1px;
  background: rgba(31, 166, 53, 0.2);
  width: 12px;
  height: 12px;
  -webkit-animation: scale 1.5s infinite;
  animation: scale 1.5s infinite;
}
.fixed-container__spec-name {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.35;
  color: #000;
  display: none;
}
@media (min-width: 1209px) {
  .fixed-container__spec-name {
    display: block;
  }
}
.fixed-container__spec-position {
  font-weight: 400;
  font-size: 12px;
  line-height: 1.35;
  color: #000;
  display: none;
}
@media (min-width: 1209px) {
  .fixed-container__spec-position {
    display: block;
  }
}
.fixed-container__buttons {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  display: none;
}
@media (min-width: 1900px) {
  .fixed-container__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.fixed-container__buttons .button.wa {
  color: #fff;
  background: -webkit-gradient(linear, left top, left bottom, from(#177827), to(#109b27));
  background: linear-gradient(180deg, #177827 0%, #109b27 100%);
}
.fixed-container__buttons .button.wa img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.fixed-container__buttons .button.wa:hover {
  background: -webkit-gradient(linear, left top, left bottom, from(#109b27), to(#109b27));
  background: linear-gradient(180deg, #109b27 0%, #109b27 100%);
}
.fixed-container__buttons .button.tg {
  color: #fff;
  background: -webkit-gradient(linear, left top, left bottom, from(#175e78), to(#107d9b));
  background: linear-gradient(180deg, #175e78 0%, #107d9b 100%);
}
.fixed-container__buttons .button.tg img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.fixed-container__buttons .button.tg:hover {
  background: -webkit-gradient(linear, left top, left bottom, from(#107d9b), to(#107d9b));
  background: linear-gradient(180deg, #107d9b 0%, #107d9b 100%);
}

.manufacturers-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (min-width: 1209px) {
  .manufacturers-wrapper {
    background-color: #261f2a;
    border-radius: 8px;
    padding: 60px 50px;
  }
}
@media (min-width: 1900px) {
  .manufacturers-wrapper {
    background-color: #261f2a;
    border-radius: 8px;
    padding: 129px 70px;
  }
}

.manufacturer-heading {
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.84px;
  font-weight: 700;
}
@media (min-width: 1209px) {
  .manufacturer-heading {
    letter-spacing: -1.15px;
    color: #fff;
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: -0.96px;
    font-weight: 600;
  }
}
@media (min-width: 1900px) {
  .manufacturer-heading {
    letter-spacing: -1.35px;
    color: #fff;
    font-size: 45px;
    line-height: 1.2;
    letter-spacing: -1.35px;
    font-weight: 600;
  }
}

.manufacturer-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.manufacturer-logo-wrapper {
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 80px;
  border: 1px solid #d9d9d9;
}
@media (min-width: 1209px) {
  .manufacturer-logo-wrapper {
    border-radius: 4px;
    border: none;
    min-height: 120px;
    padding: 22px;
  }
}
@media (min-width: 1900px) {
  .manufacturer-logo-wrapper {
    border-radius: 4px;
    border: none;
    min-height: 170px;
    padding: 30px;
  }
}
.manufacturer-logo-wrapper svg {
  width: 211px;
  height: 92px;
}

.manufacturer-name {
  text-align: center;
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 400;
}
@media (min-width: 1209px) {
  .manufacturer-name {
    margin-top: 8px;
    color: #fff;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 600;
  }
}
@media (min-width: 1900px) {
  .manufacturer-name {
    margin-top: 12px;
    color: #fff;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 600;
  }
}

@media (min-width: 1209px) {
  .about-page__first {
    background-color: #f7f7f7;
    border-radius: 8px;
    padding: 70px 0;
  }
}
@media (min-width: 1900px) {
  .about-page__first {
    background-color: #f7f7f7;
    border-radius: 8px;
    padding: 100px 0;
  }
}
.about-page__first__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}
@media (min-width: 1209px) {
  .about-page__first__title {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 20px;
  }
}
@media (min-width: 1900px) {
  .about-page__first__title {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 30px;
  }
}
.about-page__first__title .icon {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 40px;
  flex: 0 0 40px;
  width: 40px;
  height: 34px;
}
@media (min-width: 1900px) {
  .about-page__first__title .icon {
    width: 40px;
    height: 34px;
  }
}
.about-page__first__title .text {
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.84px;
  font-weight: 700;
}
@media (min-width: 1209px) {
  .about-page__first__title .text {
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: -0.72px;
    font-weight: 700;
  }
}
@media (min-width: 1900px) {
  .about-page__first__title .text {
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: -0.96px;
    font-weight: 600;
  }
}
.about-page__first__text {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
}
@media (min-width: 1209px) {
  .about-page__first__text {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
  }
}
@media (min-width: 1900px) {
  .about-page__first__text {
    font-size: 18px;
    line-height: 1.5;
    font-weight: 400;
  }
}
.about-page__first__link {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 600;
}
@media (min-width: 1209px) {
  .about-page__first__link {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 600;
  }
}
@media (min-width: 1900px) {
  .about-page__first__link {
    font-size: 18px;
    line-height: 1.5;
    font-weight: 600;
  }
}
.about-page__first__list--item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}
.about-page__first__list--item .icon {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 56px;
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
}
.about-page__first__list--item .text {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
}
@media (min-width: 1209px) {
  .about-page__first__list--item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
  }
  .about-page__first__list--item .icon {
    width: 56px;
    height: 56px;
  }
  .about-page__first__list--item .text {
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
  }
}
@media (min-width: 1900px) {
  .about-page__first__list--item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
  }
  .about-page__first__list--item .icon {
    width: 56px;
    height: 56px;
  }
  .about-page__first__list--item .text {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
  }
}
.about-page .video {
  overflow: hidden;
  position: relative;
  width: 100vw;
  margin: 0 -16px;
  display: block;
  text-decoration: none !important;
}
@media (min-width: 768px) {
  .about-page .video {
    width: 100%;
    border-radius: 15px;
    margin: 0 auto;
  }
}
@media (min-width: 1209px) {
  .about-page .video {
    width: 80%;
    height: 100%;
    border-radius: 15px;
    margin: 0 auto;
  }
  .about-page .video:hover .video__play {
    -webkit-transform: translate(-50%, -50%) scale(1.2);
    transform: translate(-50%, -50%) scale(1.2);
  }
  .about-page .video:hover .video__poster::after {
    background-color: rgba(0, 0, 0, 0.3);
  }
}
@media (min-width: 1440px) {
  .about-page .video {
    width: 80%;
    height: 100%;
    border-radius: 15px;
    margin: 0 auto;
  }
  .about-page .video:hover .video__play {
    -webkit-transform: translate(-50%, -50%) scale(1.2);
    transform: translate(-50%, -50%) scale(1.2);
  }
}
@media (min-width: 1900px) {
  .about-page .video {
    width: 1215px;
    height: 100%;
    border-radius: 15px;
    margin: 0 auto;
  }
}
.about-page .video__poster {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
  cursor: pointer;
}
.about-page .video__poster::after {
  pointer-events: none;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  content: "";
  width: 100%;
  height: 100%;
  z-index: -1;
}
.about-page .video__play {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 65px;
  height: 65px;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
@media (min-width: 768px) {
  .about-page .video__play {
    width: 111px;
    height: 111px;
  }
}
@media (min-width: 1209px) {
  .about-page .video__play {
    width: 144px;
    height: 144px;
  }
}
@media (min-width: 1900px) {
  .about-page .video__play {
    width: 144px;
    height: 144px;
  }
}
.about-page .video__text {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 20px;
  z-index: 1;
  background-color: #261f2a;
  border-radius: 10px;
  color: #fff;
  padding: 10px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 14px;
  line-height: 1.07;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .about-page .video__text {
    width: 250px;
    height: 52px;
    padding: 5px 16px;
    font-size: 14px;
    line-height: 1.07;
    bottom: 28px;
  }
}
@media (min-width: 1209px) {
  .about-page .video__text {
    width: 400px;
    height: 72px;
    padding: 10px 30px;
    font-size: 20px;
    line-height: 1.07;
    bottom: 48px;
  }
}
@media (min-width: 1900px) {
  .about-page .video__text {
    width: 400px;
    height: 72px;
    padding: 10px 30px;
    font-size: 20px;
    line-height: 1.07;
    bottom: 48px;
  }
}

.blog-inside {
  margin-top: -30px;
}
@media (min-width: 1209px) {
  .blog-inside {
    margin-top: 0;
  }
}
.blog-inside--info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
  color: #9b1ec2;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
  margin-bottom: 25px;
}
.blog-inside--info .with-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
}
.blog-inside--info .with-icon svg,
.blog-inside--info .with-icon img {
  width: 21px;
  height: 16px;
}
.blog-inside__image-container {
  position: relative;
  border-radius: 8px;
  height: auto;
  width: 100vw;
  margin: 0 -16px;
}
@media (min-width: 768px) {
  .blog-inside__image-container {
    margin: 0 auto;
    width: 100%;
    overflow: hidden;
  }
}
@media (min-width: 1209px) {
  .blog-inside__image-container {
    margin: 0 auto;
    height: 436px;
    width: 100%;
    overflow: hidden;
  }
}
@media (min-width: 1900px) {
  .blog-inside__image-container {
    height: 636px;
    width: 100%;
    overflow: hidden;
  }
}
.blog-inside__image-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.blog-inside__image {
  z-index: -1;
  width: 100%;
  height: 231px;
}
@media (min-width: 768px) {
  .blog-inside__image {
    width: 100%;
    height: 100%;
  }
}
@media (min-width: 1209px) {
  .blog-inside__image {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
  }
}
.blog-inside__article-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 18px;
  padding: 50px 20px;
  background: #1f1f1f;
}
@media (min-width: 1209px) {
  .blog-inside__article-content {
    gap: 10px;
    width: 419px;
    height: 100%;
    padding: 40px;
    border-radius: 8px 0px 0px 8px;
  }
}
@media (min-width: 1900px) {
  .blog-inside__article-content {
    gap: 10px;
    width: 419px;
    height: 100%;
    padding: 50px;
    border-radius: 8px 0px 0px 8px;
  }
}
.blog-inside__article-content-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.blog-inside__article-content-list-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 18px;
}
.blog-inside__article-content-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 12px;
  position: relative;
  text-decoration: none !important;
}
@media (min-width: 1209px) {
  .blog-inside__article-content-list:hover .blog-inside__article-content-list__item {
    text-decoration: none;
  }
}
.blog-inside__article-content-list__heading {
  color: #bdbbbf;
  text-align: left;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 700;
}
@media (min-width: 1209px) {
  .blog-inside__article-content-list__heading {
    font-size: 20px;
    line-height: 1.2;
    font-weight: 700;
  }
}
@media (min-width: 1900px) {
  .blog-inside__article-content-list__heading {
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: -0.72px;
    font-weight: 700;
  }
}
.blog-inside__article-content-list__number {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 28px;
  color: #834397;
  text-align: left;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
}
@media (min-width: 1209px) {
  .blog-inside__article-content-list__number {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
  }
}
@media (min-width: 1900px) {
  .blog-inside__article-content-list__number {
    font-size: 20px;
    line-height: 1.2;
    font-weight: 700;
  }
}
.blog-inside__article-content-list__item {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  color: white;
  text-align: left;
  text-decoration-line: underline;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
}
@media (min-width: 1209px) {
  .blog-inside__article-content-list__item {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
  }
}
@media (min-width: 1900px) {
  .blog-inside__article-content-list__item {
    font-size: 18px;
    line-height: 1.5;
    font-weight: 400;
  }
}
.blog-inside__article-content-list__item::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.blog-inside .road-infrastructure {
  margin-top: 50px;
}
@media (min-width: 1209px) {
  .blog-inside .road-infrastructure {
    background: #f7f6f7;
    border-radius: 15px;
    padding: 54px 34px;
    margin-top: 30px;
  }
}
@media (min-width: 1900px) {
  .blog-inside .road-infrastructure {
    background: #f7f6f7;
    border-radius: 15px;
    padding: 74px 54px;
    margin-top: 50px;
  }
}
.blog-inside .road-infrastructure__block {
  position: relative;
}
.blog-inside .road-infrastructure__block::after {
  position: relative;
  content: "";
  clear: both;
  display: block;
}
.blog-inside .road-infrastructure__block > * {
  margin-bottom: 20px;
}
@media (min-width: 1209px) {
  .blog-inside .road-infrastructure__block > * {
    margin-bottom: 30px;
  }
}
@media (min-width: 1900px) {
  .blog-inside .road-infrastructure__block > * {
    margin-bottom: 50px;
  }
}
.blog-inside .road-infrastructure__block > *:last-child {
  margin-bottom: 0 !important;
}
.blog-inside .road-infrastructure h2 {
  color: #3b3742;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.84px;
  font-weight: 700;
  clear: both;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 20px;
  margin-bottom: 20px;
}
@media (min-width: 1209px) {
  .blog-inside .road-infrastructure h2 {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
  }
}
@media (min-width: 1209px) {
  .blog-inside .road-infrastructure h2 {
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: -0.96px;
    font-weight: 600;
    margin-bottom: 30px;
  }
}
@media (min-width: 1900px) {
  .blog-inside .road-infrastructure h2 {
    font-size: 45px;
    line-height: 1.2;
    letter-spacing: -1.35px;
    font-weight: 600;
    margin-bottom: 50px;
  }
}
.blog-inside .road-infrastructure h2::before {
  content: attr(data-index);
  border: 1px solid #9b1ec2;
  border-radius: 10px;
  padding: 6px 12px;
  text-align: center;
  color: #9b1ec2;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 700;
}
@media (min-width: 1209px) {
  .blog-inside .road-infrastructure h2::before {
    font-size: 20px;
    line-height: 1.2;
    font-weight: 700;
  }
}
@media (min-width: 1900px) {
  .blog-inside .road-infrastructure h2::before {
    font-size: 22px;
    line-height: 1.2;
    font-weight: 700;
  }
}
.blog-inside .road-infrastructure__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 32px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media (min-width: 1209px) {
  .blog-inside .road-infrastructure__content {
    gap: 32px;
  }
}
.blog-inside .road-infrastructure p strong {
  color: #3b3742;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
}
@media (min-width: 1209px) {
  .blog-inside .road-infrastructure p strong {
    font-size: 18px;
    line-height: 1.5;
    font-weight: 600;
  }
}
@media (min-width: 1900px) {
  .blog-inside .road-infrastructure p strong {
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: -0.72px;
    font-weight: 700;
  }
}
.blog-inside .road-infrastructure p {
  color: #3b3742;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
}
@media (min-width: 1209px) {
  .blog-inside .road-infrastructure p {
    font-size: 18px;
    line-height: 1.5;
    font-weight: 600;
  }
}
@media (min-width: 1900px) {
  .blog-inside .road-infrastructure p {
    font-size: 22px;
    line-height: 1.5;
    font-weight: 400;
  }
}
.blog-inside .road-infrastructure p b {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 600;
}
@media (min-width: 1209px) {
  .blog-inside .road-infrastructure p b {
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: -0.72px;
    font-weight: 700;
  }
}
.blog-inside .road-infrastructure ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 5px;
}
@media (min-width: 1209px) {
  .blog-inside .road-infrastructure ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 5px;
  }
}
.blog-inside .road-infrastructure .road-infrastructure__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: unset;
  -ms-flex-align: unset;
  align-items: unset;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  counter-reset: num;
}
@media (min-width: 1209px) {
  .blog-inside .road-infrastructure .road-infrastructure__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 30px;
  }
}
@media (min-width: 1900px) {
  .blog-inside .road-infrastructure .road-infrastructure__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 50px;
  }
}
.blog-inside .road-infrastructure .road-infrastructure__list li {
  border: 1px solid #c9c9c9;
  border-radius: 8px;
  padding: 20px;
  gap: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}
@media (min-width: 1209px) {
  .blog-inside .road-infrastructure .road-infrastructure__list li {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 18px;
    padding: 20px 30px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 25%;
    flex: 1 1 25%;
  }
}
@media (min-width: 1900px) {
  .blog-inside .road-infrastructure .road-infrastructure__list li {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 18px;
    padding: 30px 40px;
  }
}
.blog-inside .road-infrastructure .road-infrastructure__list li::before {
  content: counter(num);
  counter-increment: num;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: 700;
  font-size: 32px;
  line-height: 120%;
  color: #834397;
  background: unset;
  width: unset;
  height: unset;
  border-radius: unset;
  -webkit-box-flex: unset;
  -ms-flex: unset;
  flex: unset;
}
@media (min-width: 1209px) {
  .blog-inside .road-infrastructure .road-infrastructure__list li::before {
    font-size: 45px;
    line-height: 135%;
    letter-spacing: -0.08em;
  }
}
@media (min-width: 1900px) {
  .blog-inside .road-infrastructure .road-infrastructure__list li::before {
    font-size: 55px;
    line-height: 135%;
    letter-spacing: -0.08em;
  }
}
.blog-inside .road-infrastructure .road-infrastructure__list li-text {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
}
@media (min-width: 1900px) {
  .blog-inside .road-infrastructure .road-infrastructure__list li-text {
    font-size: 22px;
    line-height: 1.5;
    font-weight: 400;
  }
}
.blog-inside .road-infrastructure ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  counter-reset: count;
}
.blog-inside .road-infrastructure ol li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 22px;
  position: relative;
  padding-left: 40px;
  counter-increment: count;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
}
@media (min-width: 1209px) {
  .blog-inside .road-infrastructure ol li {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
  }
}
@media (min-width: 1900px) {
  .blog-inside .road-infrastructure ol li {
    font-size: 18px;
    line-height: 1.5;
    font-weight: 400;
  }
}
.blog-inside .road-infrastructure ol li::before {
  content: "0" counter(count);
  color: #834397;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 20px;
  line-height: 135%;
  font-weight: 700;
  width: 28px;
  height: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.blog-inside .road-infrastructure img {
  width: 100%;
  height: auto;
  margin: 0 auto;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 8px;
  -o-object-position: center;
  object-position: center;
}
@media (min-width: 768px) {
  .blog-inside .road-infrastructure img {
    max-width: 40%;
    height: auto;
  }
}
@media (min-width: 1209px) {
  .blog-inside .road-infrastructure img {
    margin: unset;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
  }
}
@media (min-width: 1900px) {
  .blog-inside .road-infrastructure img {
    max-width: 519px;
    height: auto;
    border-radius: 8px;
  }
}
.blog-inside .road-infrastructure img.float-left {
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
}
@media (min-width: 1209px) {
  .blog-inside .road-infrastructure img.float-left {
    margin-right: 30px;
    margin-bottom: 30px;
  }
}
.blog-inside .road-infrastructure img.float-right {
  float: right;
  margin-left: 20px;
  margin-bottom: 20px;
}
@media (min-width: 1209px) {
  .blog-inside .road-infrastructure img.float-right {
    margin-left: 30px;
    margin-bottom: 30px;
  }
}
.blog-inside .road-infrastructure__action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  background: #f7f6f7;
  padding: 30px;
  width: 100%;
}
@media (min-width: 1209px) {
  .blog-inside .road-infrastructure__action {
    width: auto;
    background: #fff;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 20px;
    border-radius: 8px;
    padding: 20px;
  }
}
@media (min-width: 1900px) {
  .blog-inside .road-infrastructure__action {
    background: #fff;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 30px;
    border-radius: 8px;
    padding: 30px;
  }
}
.blog-inside .road-infrastructure__cta p {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
}
@media (min-width: 1209px) {
  .blog-inside .road-infrastructure__cta p {
    font-size: 14px;
    line-height: 1.5;
    font-weight: 600;
  }
}
@media (min-width: 1900px) {
  .blog-inside .road-infrastructure__cta p {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 600;
  }
}
.blog-inside .road-infrastructure__cta p b {
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.84px;
  font-weight: 700;
  color: #a530e4;
  display: block;
}
@media (min-width: 1209px) {
  .blog-inside .road-infrastructure__cta p b {
    margin-bottom: unset;
    color: #3b3742;
  }
}
@media (min-width: 1900px) {
  .blog-inside .road-infrastructure__cta p b {
    margin-bottom: unset;
    color: #3b3742;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
  }
}
.blog-inside .road-infrastructure__divider {
  border-radius: 50px;
  border: 1px dashed rgba(0, 0, 0, 0.3);
  margin: 30px 0;
  clear: both;
}
@media (min-width: 768px) {
  .blog-inside .road-infrastructure__divider {
    margin: 60px 0;
  }
}
@media (min-width: 768px) {
  .blog-inside .road-infrastructure__gallery {
    margin-right: 20px;
    margin-bottom: 20px;
    float: left;
  }
}
@media (min-width: 1209px) {
  .blog-inside .road-infrastructure__gallery {
    margin-right: 30px;
    margin-bottom: 30px;
    float: left;
  }
}
@media (min-width: 768px) {
  .blog-inside .road-infrastructure__gallery {
    max-width: 40%;
  }
}
@media (min-width: 1209px) {
  .blog-inside .road-infrastructure__gallery {
    max-width: 300px;
  }
}
@media (min-width: 1900px) {
  .blog-inside .road-infrastructure__gallery {
    max-width: 519px;
  }
}
.blog-inside .road-infrastructure__gallery-slider img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  border-radius: 15px;
}
.blog-inside .road-infrastructure__gallery-slider.owl-carousel .owl-nav {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  pointer-events: none;
}
.blog-inside .road-infrastructure__gallery-slider.owl-carousel .owl-nav .owl-prev {
  background-color: #9b1ec2;
  padding: 13px !important;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  pointer-events: all;
}
.blog-inside .road-infrastructure__gallery-slider.owl-carousel .owl-nav .owl-prev:hover {
  background-color: #7e1a9f;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (min-width: 1900px) {
  .blog-inside .road-infrastructure__gallery-slider.owl-carousel .owl-nav .owl-prev {
    padding: 20px !important;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
  }
}
.blog-inside .road-infrastructure__gallery-slider.owl-carousel .owl-nav .owl-prev i {
  color: #fff;
}
.blog-inside .road-infrastructure__gallery-slider.owl-carousel .owl-nav .owl-next {
  background-color: #9b1ec2;
  padding: 13px !important;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
  pointer-events: all;
}
.blog-inside .road-infrastructure__gallery-slider.owl-carousel .owl-nav .owl-next:hover {
  background-color: #7e1a9f;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (min-width: 1900px) {
  .blog-inside .road-infrastructure__gallery-slider.owl-carousel .owl-nav .owl-next {
    padding: 20px !important;
    border-bottom-left-radius: 8px;
    border-top-left-radius: 8px;
  }
}
.blog-inside .road-infrastructure__gallery-slider.owl-carousel .owl-nav .owl-next i {
  color: #fff;
}
.blog-inside .road-infrastructure__gallery-slider-sync {
  margin-top: 20px;
}
@media (min-width: 1900px) {
  .blog-inside .road-infrastructure__gallery-slider-sync {
    margin-top: 20px;
  }
}
.blog-inside .road-infrastructure__gallery-slider-sync.owl-carousel .owl-item.current {
  position: relative;
  z-index: 0;
}
.blog-inside .road-infrastructure__gallery-slider-sync.owl-carousel .owl-item.current::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: inset 0 0 0 2px #9b1ec2;
  box-shadow: inset 0 0 0 2px #9b1ec2;
  border-radius: 8px;
  top: 0;
  left: 0;
}
@media (min-width: 1900px) {
  .blog-inside .road-infrastructure__gallery-slider-sync.owl-carousel .owl-item.current::after {
    border-radius: 15px;
  }
}
.blog-inside .road-infrastructure__gallery-slider-sync--item {
  width: 100%;
  height: 50px;
  cursor: pointer;
}
@media (min-width: 768px) {
  .blog-inside .road-infrastructure__gallery-slider-sync--item {
    height: 80px;
  }
}
.blog-inside .road-infrastructure__gallery-slider-sync img {
  width: 100%;
  height: 100%;
  max-width: unset !important;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  border-radius: 8px;
}
@media (min-width: 1900px) {
  .blog-inside .road-infrastructure__gallery-slider-sync img {
    border-radius: 15px;
  }
}
.blog-inside .road-infrastructure__gallery-item {
  display: block !important;
}
.blog-inside .road-infrastructure__gallery-item img {
  width: 100%;
  height: 100%;
  max-width: unset !important;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 8px;
  -o-object-position: center;
  object-position: center;
}
.blog-inside .road-infrastructure ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
}
@media (min-width: 1209px) {
  .blog-inside .road-infrastructure ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
  }
}
.blog-inside .road-infrastructure ul li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 12px;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
}
@media (min-width: 1209px) {
  .blog-inside .road-infrastructure ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 12px;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 400;
  }
}
.blog-inside .road-infrastructure ul li::before {
  content: "";
  display: block;
  background: #a530e4;
  width: 8px;
  height: 8px;
  border-radius: 50px;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}

.blog__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  margin: 0 -16px;
  margin-bottom: 30px;
  overflow-x: scroll;
  width: 100vw;
  padding: 0 16px;
}
@media (min-width: 1209px) {
  .blog__menu {
    width: auto;
    overflow: unset;
    margin: unset;
    margin-bottom: 30px;
    padding: unset;
  }
}
@media (min-width: 1900px) {
  .blog__menu {
    width: auto;
    overflow: unset;
    margin: unset;
    margin-bottom: 30px;
    padding: unset;
  }
}
.blog__menu li {
  -webkit-box-flex: 1;
  -ms-flex: auto 0 0px;
  flex: auto 0 0;
}
.blog__menu li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  border: 2px solid #3b3742;
  border-radius: 4px;
  padding: 12px 25px 14px 25px;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
}
@media (min-width: 1209px) {
  .blog__menu li a {
    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
    padding: 15px 22px 17px 22px;
  }
}
@media (min-width: 1900px) {
  .blog__menu li a {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
    padding: 20px 40px 22px 40px;
  }
}
.blog__menu li a span {
  display: none;
}
.blog__menu li a.active {
  border: 2px solid #9b1ec2;
  color: #9b1ec2;
}
.blog__menu li a.active span {
  display: block;
}
.blog .page-bottom.show-more {
  position: relative;
}
.blog .page-bottom.show-more::before {
  content: "";
  position: absolute;
  top: -42px;
  left: 0;
  right: 0;
  z-index: -1;
  height: 94px;
  border-radius: 20px;
  border-bottom: 2px dotted rgba(0, 0, 0, 0.2);
  display: none;
}
@media (min-width: 768px) {
  .blog .page-bottom.show-more::before {
    display: block;
  }
}

.contacts-page_item {
  background-color: #f7f6f7;
  color: #000 !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  padding: 30px 20px;
  border-radius: 15px;
  gap: 30px;
}
.contacts-page_item a,
.contacts-page_item p {
  color: #000 !important;
}
@media (min-width: 1209px) {
  .contacts-page_item {
    padding: 40px 35px;
    border-radius: 15px;
    gap: 20px;
  }
}
@media (min-width: 1900px) {
  .contacts-page_item {
    padding: 60px 55px;
    border-radius: 15px;
    gap: 40px;
  }
}
.contacts-page_item--title {
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.84px;
  font-weight: 700;
}
@media (min-width: 1900px) {
  .contacts-page_item--title {
    font-size: 45px;
    line-height: 1.2;
    letter-spacing: -1.35px;
    font-weight: 600;
  }
}
.contacts-page_item--content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 15px;
}
@media (min-width: 1900px) {
  .contacts-page_item--content {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 22px;
  }
}
.contacts-page_item--dark {
  background-color: #1f1f1f;
  color: #fff !important;
}
.contacts-page_item--dark a,
.contacts-page_item--dark p {
  color: #fff !important;
}
.contacts-page_item--dark .contacts-page__icon.mail {
  color: #dc96f1 !important;
}
.contacts-page__button {
  min-width: 226px;
}
@media (min-width: 1900px) {
  .contacts-page__button {
    min-width: 226px;
  }
}
.contacts-page__button a {
  color: #ab29d4 !important;
}
@media (min-width: 1209px) {
  .contacts-page__button a:hover {
    color: #fff !important;
  }
}
.contacts-page__req {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  color: #3b3742 !important;
  display: inline;
}
@media (min-width: 1900px) {
  .contacts-page__req {
    font-size: 22px;
    line-height: 1.5;
    font-weight: 400;
  }
}
.contacts-page__req button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: middle;
  gap: 10px;
}
.contacts-page__req button svg {
  width: 20px;
  height: 20px;
  margin-left: 10px;
}
.contacts-page .company-detail {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  color: #3b3742 !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
@media (min-width: 1900px) {
  .contacts-page .company-detail {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    line-height: 1.5;
    font-weight: 400;
  }
}
.contacts-page .company-detail svg {
  width: 20px;
  height: 20px;
  margin-left: 10px;
}
.contacts-page__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
}
@media (min-width: 1900px) {
  .contacts-page__icon {
    width: 286px;
    gap: 20px;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
  }
}
.contacts-page__icon svg {
  width: 38px;
  height: 38px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 38px;
  flex: 0 0 38px;
}
@media (min-width: 1900px) {
  .contacts-page__icon svg {
    width: 40px;
    height: 40px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 40px;
    flex: 0 0 40px;
  }
}
.contacts-page__icon.mail {
  color: #9b1ec2 !important;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
}
@media (min-width: 1900px) {
  .contacts-page__icon.mail {
    font-size: 22px;
    line-height: 1.5;
    font-weight: 400;
  }
}
.contacts-page__call {
  width: auto;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 600;
  text-decoration: none;
}
@media (min-width: 1209px) {
  .contacts-page__call:hover {
    text-decoration: underline;
  }
}
@media (min-width: 1900px) {
  .contacts-page__call {
    font-size: 32px;
    line-height: 135%;
    font-weight: 600;
  }
}
.contacts-page__days {
  display: none;
}
@media (min-width: 1900px) {
  .contacts-page__days {
    display: block;
    width: 359px;
  }
}
.contacts-page .map {
  width: 100%;
  height: 414px;
  position: relative;
}
@media (min-width: 1024px) {
  .contacts-page .map {
    width: 100%;
    height: 462px;
  }
}
@media (min-width: 1900px) {
  .contacts-page .map {
    width: 100%;
    height: 462px;
  }
}
.contacts-page .map iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.contacts-page .map .overlay-map {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: transparent;
  cursor: pointer;
  z-index: 1000;
}

.copy-button {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: none;
  background: none;
  cursor: pointer;
}

.copy-status {
  font-size: 12px;
  color: #9b1ec2;
  position: absolute;
  left: calc(100% + 10px);
}

.project-inside__slider--item {
  width: 100%;
  height: 268px;
}
@media (min-width: 768px) {
  .project-inside__slider--item {
    height: 400px;
  }
}
@media (min-width: 1209px) {
  .project-inside__slider--item {
    height: 530px;
  }
}
@media (min-width: 1900px) {
  .project-inside__slider--item {
    height: 530px;
  }
}
.project-inside__slider img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  border-radius: 15px;
}
.project-inside__slider.owl-carousel .owl-nav {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  pointer-events: none;
}
.project-inside__slider.owl-carousel .owl-nav .owl-prev {
  background-color: #9b1ec2;
  padding: 13px !important;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  pointer-events: all;
}
.project-inside__slider.owl-carousel .owl-nav .owl-prev:hover {
  background-color: #7e1a9f;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (min-width: 1900px) {
  .project-inside__slider.owl-carousel .owl-nav .owl-prev {
    padding: 20px !important;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
  }
}
.project-inside__slider.owl-carousel .owl-nav .owl-prev i {
  color: #fff;
}
.project-inside__slider.owl-carousel .owl-nav .owl-next {
  background-color: #9b1ec2;
  padding: 13px !important;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
  pointer-events: all;
}
.project-inside__slider.owl-carousel .owl-nav .owl-next:hover {
  background-color: #7e1a9f;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (min-width: 1900px) {
  .project-inside__slider.owl-carousel .owl-nav .owl-next {
    padding: 20px !important;
    border-bottom-left-radius: 8px;
    border-top-left-radius: 8px;
  }
}
.project-inside__slider.owl-carousel .owl-nav .owl-next i {
  color: #fff;
}
.project-inside__slider-sync {
  margin-top: 20px;
}
@media (min-width: 1900px) {
  .project-inside__slider-sync {
    margin-top: 20px;
  }
}
.project-inside__slider-sync.owl-carousel .owl-item.current {
  position: relative;
  z-index: 0;
}
.project-inside__slider-sync.owl-carousel .owl-item.current::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: inset 0 0 0 2px #9b1ec2;
  box-shadow: inset 0 0 0 2px #9b1ec2;
  border-radius: 8px;
  top: 0;
  left: 0;
}
@media (min-width: 1900px) {
  .project-inside__slider-sync.owl-carousel .owl-item.current::after {
    border-radius: 15px;
  }
}
.project-inside__slider-sync--item {
  width: 100%;
  height: 50px;
  cursor: pointer;
}
@media (min-width: 768px) {
  .project-inside__slider-sync--item {
    height: 110px;
  }
}
.project-inside__slider-sync img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  border-radius: 8px;
}
@media (min-width: 1900px) {
  .project-inside__slider-sync img {
    border-radius: 15px;
  }
}
.project-inside .scroll-wrapper .scroll-content {
  padding: 11px 0 0;
}
.project-inside__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 33px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 100%;
}
.project-inside__info p.text {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  margin-bottom: unset;
}
.project-inside__info--params {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 14px;
}
.project-inside__info--params .flex-row-with-gap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.project-inside__info--params .flex-row-with-gap .separator-line {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
}
.project-inside__info--params .flex-row-with-gap p {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  color: black;
}
@media (min-width: 1900px) {
  .project-inside__info--params .flex-row-with-gap p {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
  }
}
@media (max-width: 1899px) {
  .project-inside__info .price .row-scroll {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    padding: 5px 0;
  }
}
.project-inside__info .price__item {
  border: 1px solid #cbcacb;
  border-radius: 4px;
  padding: 15px 15px 20px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 12px;
  position: relative;
  height: 100%;
  -webkit-transition: background-color 0.2s, border-color 0.2s;
  transition: background-color 0.2s, border-color 0.2s;
}
@media (min-width: 1209px) {
  .project-inside__info .price__item {
    gap: 12px;
    border-radius: 4px;
    padding: 35px 20px;
  }
}
.project-inside__info .price__item:hover {
  border-color: #9b1ec2;
  background-color: #9b1ec2;
}
.project-inside__info .price__item:hover .price__item--title {
  color: #fff;
}
.project-inside__info .price__item:hover .price__item--price span {
  color: #fff;
}
.project-inside__info .price__item:hover .price__item--btn {
  background-color: transparent;
  -webkit-box-shadow: 0 0 0 2px #fff;
  box-shadow: 0 0 0 2px #fff;
  color: #fff;
}
.project-inside__info .price__item:hover .price__item--btn svg {
  fill: #fff;
}
.project-inside__info .price__item--top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5px;
}
.project-inside__info .price__item--sale {
  position: absolute;
  border-radius: 16px 16px 16px 0;
  background: #3b3742;
  color: #fff;
  font-size: 10px;
  line-height: 1.35;
  font-weight: 600;
  top: -16px;
  padding: 6px 14px;
}
@media (min-width: 1209px) {
  .project-inside__info .price__item--sale {
    font-size: 12px;
    line-height: 1.35;
    font-weight: 400;
    padding: 6px 20px;
    top: -14px;
  }
}
.project-inside__info .price__item--title {
  color: #9b1ec2;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
}
@media (min-width: 1209px) {
  .project-inside__info .price__item--title {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
  }
}
.project-inside__info .price__item--price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5px;
}
.project-inside__info .price__item--price span {
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
.project-inside__info .price__item--price span:nth-child(1) {
  font-size: 22px;
  line-height: 1.2;
  font-weight: 700;
}
@media (min-width: 1209px) {
  .project-inside__info .price__item--price span:nth-child(1) {
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: -0.72px;
    font-weight: 700;
  }
}
.project-inside__info .price__item--price span:nth-child(2) {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
}
@media (min-width: 1209px) {
  .project-inside__info .price__item--price span:nth-child(2) {
    font-size: 18px;
    line-height: 1.5;
    font-weight: 600;
  }
}
.project-inside__form-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border-radius: 8px;
  background-color: #261f2a;
  padding: 40px 16px 54px;
  height: 100%;
}
@media (min-width: 1900px) {
  .project-inside__form-content {
    padding: 36px;
  }
}
.project-inside__form-content .title {
  color: #fff;
  font-weight: 700;
  font-size: 22px;
  line-height: 110%;
  letter-spacing: -0.66px;
  margin-bottom: 20px;
}
@media (min-width: 1900px) {
  .project-inside__form-content .title {
    color: #fff;
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: -0.96px;
    font-weight: 600;
    margin-bottom: 20px;
  }
}
.project-inside__form-content .subtitle {
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
  margin-top: 6px;
  margin-bottom: 26px;
}
@media (min-width: 1900px) {
  .project-inside__form-content .subtitle {
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    line-height: 135%;
  }
}
.project-inside__form-content .form-group.radio .wa {
  margin-left: auto;
}
.project-inside__form-content .form-group.radio p {
  color: #fff;
}
@media (max-width: 1208px) {
  .project-inside__form-content .form-group.radio p {
    color: #fff;
  }
}
.project-inside__form-content .politicy {
  color: #fff;
}
.project-inside__form-content .politicy a {
  color: #dc96f1;
}
@media (max-width: 1208px) {
  .project-inside__form-content .politicy a {
    color: #dc96f1;
  }
}

.job {
  margin-top: -40px;
}
.job_item {
  background-color: #f7f6f7;
  padding: 40px 20px;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media (min-width: 1024px) {
  .job_item {
    padding: 40px 30px;
    border-radius: 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
@media (min-width: 1900px) {
  .job_item {
    padding: 60px 55px 65px;
    border-radius: 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.job_item--title {
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.84px;
  font-weight: 700;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (min-width: 1024px) {
  .job_item--title {
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: -0.96px;
    font-weight: 600;
    margin-bottom: 20px;
  }
}
@media (min-width: 1900px) {
  .job_item--title {
    font-size: 45px;
    line-height: 1.2;
    letter-spacing: -1.35px;
    font-weight: 600;
    margin-bottom: 20px;
  }
}
.job_item--title svg {
  width: 36px;
  height: 36px;
  margin-right: 15px;
}
@media (min-width: 1024px) {
  .job_item--title svg {
    display: none !important;
  }
}
.job_item--title svg.close {
  display: block;
}
.job_item--title svg.open {
  display: none;
}
.job_item--salary {
  background: #fff;
  border-radius: 4px;
  padding: 12px 22px;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.84px;
  font-weight: 700;
}
@media (min-width: 1024px) {
  .job_item--salary {
    color: #a530e4;
    border-radius: 4px;
    padding: 12px 22px;
    font-size: 28px;
    line-height: 1.2;
    letter-spacing: -0.84px;
    font-weight: 700;
  }
}
@media (min-width: 1900px) {
  .job_item--salary {
    color: #a530e4;
    border-radius: 4px;
    padding: 12px 22px;
    font-size: 28px;
    line-height: 1.2;
    letter-spacing: -0.84px;
    font-weight: 700;
  }
}
.job_item--content {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media (min-width: 1024px) {
  .job_item--content {
    margin-top: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
@media (min-width: 1900px) {
  .job_item--content {
    margin-top: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.job_item--content p {
  font-size: 22px;
  line-height: 1.2;
  font-weight: 700;
}
@media (min-width: 1900px) {
  .job_item--content p {
    font-size: 22px;
    line-height: 1.2;
    font-weight: 700;
  }
}
.job_item--content ul {
  list-style-type: disc;
  margin-left: 20px;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  margin-top: 10px;
}
@media (min-width: 1900px) {
  .job_item--content ul {
    margin-top: 10px;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 400;
  }
}
@media (min-width: 1900px) {
  .job_item--content ul li {
    margin-bottom: 10px;
  }
}
@media (min-width: 1024px) {
  .job_item--content--button {
    min-width: 310px;
  }
}
@media (min-width: 1900px) {
  .job_item--content--button {
    min-width: 310px;
  }
}
.job_item--show-more {
  margin-top: 30px;
}
@media (min-width: 1024px) {
  .job_item--show-more {
    display: none;
  }
}
@media (min-width: 1900px) {
  .job_item--show-more {
    display: none;
  }
}

.mission {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 1209px) {
  .mission {
    height: 600px;
  }
}
@media (min-width: 1900px) {
  .mission {
    height: 600px;
  }
}
@media (max-width: 1208px) {
  .mission {
    background-image: none !important;
  }
}
.mission__title {
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.84px;
  font-weight: 700;
  margin-bottom: 20px;
}
@media (min-width: 1209px) {
  .mission__title {
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: -0.96px;
    font-weight: 600;
    margin-bottom: 30px;
  }
}
@media (min-width: 1900px) {
  .mission__title {
    font-size: 45px;
    line-height: 1.2;
    letter-spacing: -1.35px;
    font-weight: 600;
    margin-bottom: 40px;
  }
}
.mission__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
}
@media (min-width: 1900px) {
  .mission__text {
    font-size: 18px;
    line-height: 1.5;
    font-weight: 400;
  }
}
.mission__image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100vw;
  margin: 0 -16px;
}
@media (min-width: 768px) {
  .mission__image {
    width: 70%;
    margin: 0 auto;
  }
}
@media (min-width: 1209px) {
  .mission__image {
    z-index: -1;
    position: absolute;
    left: 0;
    bottom: 0;
    margin: 0;
    width: 664px;
    height: 640px;
    background-image: none !important;
    pointer-events: none;
  }
}
@media (min-width: 1900px) {
  .mission__image {
    z-index: -1;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 904px;
    height: 640px;
    background-image: none !important;
  }
}
.mission__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: bottom;
  object-position: bottom;
}

.project__gallery {
  gap: 30px;
  height: 623px;
  display: none;
}
@media (min-width: 768px) {
  .project__gallery {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    height: 423px;
  }
}
@media (min-width: 1900px) {
  .project__gallery {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
    height: 623px;
  }
}
.project__gallery a {
  position: relative;
}
.project__gallery .image-big {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.project__gallery .image-small {
  display: grid;
  grid-template-columns: repeat(2, minmax(100px, 1fr));
  grid-template-rows: repeat(2, minmax(100px, 1fr));
  gap: 30px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 100%;
}
@media (min-width: 768px) {
  .project__gallery .image-small {
    gap: 10px;
  }
}
@media (min-width: 1900px) {
  .project__gallery .image-small {
    gap: 30px;
  }
}
.project__gallery img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  border-radius: 15px;
}
@media (min-width: 768px) {
  .project__slider {
    display: none !important;
  }
}
.project__slider .img {
  width: 250px;
  height: 100%;
  display: inline-block;
}
@media (min-width: 360px) {
  .project__slider .img {
    width: 300px;
  }
}
@media (min-width: 450px) {
  .project__slider .img {
    width: 400px;
  }
}
.project__slider img {
  border-radius: 8px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.project__slider .owl-dots {
  position: static;
  bottom: unset;
  right: unset;
  left: unset;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 17px;
  padding: 10px 0;
  width: 100%;
  height: auto;
}
.project__slider .owl-dots .owl-dot {
  width: 14px;
  height: 14px;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 100%;
}
.project__slider .owl-dots .owl-dot.active {
  background-color: #a530e4;
}
.project__contacts__col {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 18px;
}
@media (min-width: 768px) {
  .project__contacts__col {
    background-color: #f7f7f7;
    border-radius: 20px;
    padding: 21px 10px 31px 21px;
    gap: 18px;
  }
}
@media (min-width: 1900px) {
  .project__contacts__col {
    background-color: #f7f7f7;
    border-radius: 20px;
    padding: 61px 20px 71px 61px;
    gap: 38px;
  }
}
.project__contacts__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 14px;
}
.project__contacts__item--icon {
  width: 38px;
  height: 38px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 38px;
  flex: 0 0 38px;
}
@media (min-width: 1900px) {
  .project__contacts__item--icon {
    width: 38px;
    height: 38px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 38px;
    flex: 0 0 38px;
  }
}
.project__contacts__item--content .subtext {
  color: #3b3742;
  opacity: 0.7;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 400;
}
@media (min-width: 1900px) {
  .project__contacts__item--content .subtext {
    font-size: 12px;
    line-height: 1.35;
    font-weight: 400;
  }
}
.project__contacts__item--content .text {
  color: #3b3742;
  font-size: 22px;
  line-height: 1.5;
  font-weight: 400;
}
@media (min-width: 768px) {
  .project__contacts__item--content .text {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
  }
}
@media (min-width: 1900px) {
  .project__contacts__item--content .text {
    font-size: 22px;
    line-height: 1.5;
    font-weight: 400;
  }
}
.project__contacts__button {
  margin-top: auto;
}
.project__contacts__map {
  overflow: hidden;
  width: 100vw;
  height: 477px;
  margin: 0 -16px;
}
@media (min-width: 768px) {
  .project__contacts__map {
    width: 100%;
    height: 477px;
    border-radius: 20px;
    margin: unset;
  }
}
@media (min-width: 1900px) {
  .project__contacts__map {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    margin: unset;
  }
}
.project__contacts__map iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
@media (min-width: 1900px) {
  .project__contacts__map iframe {
    border-radius: 20px;
  }
}

.questions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (min-width: 1209px) {
  .questions {
    margin-top: 50px;
  }
}
.questions_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border-bottom: 1px dotted #000;
  padding: 20px 0;
  gap: 20px;
  position: relative;
}
@media (min-width: 1209px) {
  .questions_item {
    padding: 60px 0;
    gap: 30px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .questions_item:hover .questions_item--title {
    color: #9b1ec2;
  }
  .questions_item:hover .questions_item--link {
    text-decoration: none;
  }
}
.questions_item:first-child {
  border-top: 1px dotted #000;
}
.questions_item--top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 1209px) {
  .questions_item--top {
    gap: 10px;
  }
}
.questions_item--title {
  color: #1f1f1f;
  text-decoration: none !important;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.84px;
  font-weight: 700;
}
@media (min-width: 1209px) {
  .questions_item--title {
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: -0.96px;
    font-weight: 600;
  }
  .questions_item--title:hover {
    color: #9b1ec2;
  }
}
.questions_item--title::after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.questions_item--date {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
}
@media (min-width: 1209px) {
  .questions_item--date {
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
  }
}
.questions_item--text {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
}
@media (min-width: 1209px) {
  .questions_item--text {
    font-size: 18px;
    line-height: 1.5;
    font-weight: 400;
  }
}
.questions_item--link {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 600;
}
@media (min-width: 1209px) {
  .questions_item--link {
    font-size: 18px;
    line-height: 1.5;
    font-weight: 600;
  }
  .questions_item--link:hover {
    text-decoration: none;
  }
}

.spunta-finder {
  background: #f7f6f7;
  padding: 20px 0;
  margin-bottom: 50px;
}
.spunta-finder .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 1024px) {
  .spunta-finder .container {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 10px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}
@media (min-width: 1209px) {
  .spunta-finder .container {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 10px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}
@media (min-width: 1900px) {
  .spunta-finder .container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 30px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}
@media (min-width: 1024px) {
  .spunta-finder .container .custom-select {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 40%;
    flex: 1 1 40%;
  }
}
@media (min-width: 1900px) {
  .spunta-finder .container .custom-select {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 14%;
    flex: 1 1 14%;
  }
}

.spunta-finder__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 10px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  overflow-x: scroll;
}
@media (min-width: 1024px) {
  .spunta-finder__buttons {
    overflow-x: unset;
  }
}
@media (min-width: 1900px) {
  .spunta-finder__buttons {
    overflow-x: unset;
    width: auto;
  }
}

.spunta-finder__button {
  color: black;
  cursor: pointer;
  background: white;
  border: 1px solid #d1d1d1;
  border-radius: 4px;
  text-decoration: unset !important;
  padding: 15px 18px 16px 18px;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (min-width: 1024px) {
  .spunta-finder__button {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    padding: 10px 12px 10px 12px;
  }
}
@media (min-width: 1900px) {
  .spunta-finder__button {
    -webkit-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
    padding: 15px 18px 16px 18px;
  }
}
.spunta-finder__button:hover {
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(155, 0, 204)), to(rgb(205, 45, 255)));
  background: linear-gradient(180deg, rgb(155, 0, 204), rgb(205, 45, 255) 100%);
  color: white;
  border: 1px solid rgb(155, 0, 204);
}
.spunta-finder__button.active {
  border: 1px solid #a530e4;
  color: #a530e4;
}
.spunta-finder__button.active:hover {
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(155, 0, 204)), to(rgb(205, 45, 255)));
  background: linear-gradient(180deg, rgb(155, 0, 204), rgb(205, 45, 255) 100%);
  color: white;
  border: 1px solid rgb(155, 0, 204);
}

.spunta-finder__search {
  position: relative;
  margin-bottom: unset;
}
.spunta-finder__search input {
  background-color: #fff;
}
.spunta-finder__search svg {
  width: 12px;
  height: auto;
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.spunta-finder__search input {
  width: 100%;
}
@media (min-width: 1209px) {
  .spunta-finder__search input {
    width: auto;
  }
}
@media (min-width: 1900px) {
  .spunta-finder__search input {
    width: auto;
  }
}

.equipment-list-container.products-container .equipment-card {
  -webkit-box-shadow: 1px 2px 0 0 rgba(0, 0, 0, 0.15);
  box-shadow: 1px 2px 0 0 rgba(0, 0, 0, 0.15);
}
.equipment-list-container.products-container .equipment-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border-radius: 8px;
  overflow: hidden;
  background-color: #f7f7f7;
  border: 1px solid transparent;
  -webkit-transition: border-color 0.2s, -webkit-box-shadow 0.2s;
  transition: border-color 0.2s, -webkit-box-shadow 0.2s;
  transition: border-color 0.2s, box-shadow 0.2s;
  transition: border-color 0.2s, box-shadow 0.2s, -webkit-box-shadow 0.2s;
  height: 100%;
}
@media (min-width: 1209px) {
  .equipment-list-container.products-container .equipment-card:hover {
    -webkit-box-shadow: 1px 2px 0 0 transparent;
    box-shadow: 1px 2px 0 0 transparent;
    border-color: #9b1ec2;
  }
  .equipment-list-container.products-container .equipment-card:hover .equipment-card__buttons {
    opacity: 1;
    visibility: visible;
    max-height: 200px;
  }
  .equipment-list-container.products-container .equipment-card:hover .equipment-card__buttons .button {
    text-decoration: none;
    color: rgb(255, 255, 255);
    background: -webkit-gradient(linear, left top, left bottom, from(rgb(155, 0, 204)), to(rgb(155, 0, 204)));
    background: linear-gradient(180deg, rgb(155, 0, 204), rgb(155, 0, 204) 100%);
  }
  .equipment-list-container.products-container .equipment-card:hover .equipment-card__buttons .button svg {
    fill: transparent;
    stroke: white;
  }
  .equipment-list-container.products-container .equipment-card:hover .equipment-card__buttons .button:hover {
    background: -webkit-gradient(linear, left top, left bottom, from(rgb(155, 0, 204)), to(rgb(205, 45, 255)));
    background: linear-gradient(180deg, rgb(155, 0, 204), rgb(205, 45, 255) 100%);
  }
  .equipment-list-container.products-container .equipment-card:hover .equipment-card__buttons .button.button_border {
    background: #fff !important;
    color: #9b1ec2 !important;
  }
  .equipment-list-container.products-container .equipment-card:hover .equipment-card__buttons .button.button_border svg {
    stroke: #9b1ec2 !important;
  }
  .equipment-list-container.products-container .equipment-card:hover .equipment-card__buttons .button.button_border:hover {
    background: -webkit-gradient(linear, left top, left bottom, from(rgb(155, 0, 204)), to(rgb(205, 45, 255))) !important;
    background: linear-gradient(180deg, rgb(155, 0, 204), rgb(205, 45, 255) 100%) !important;
    color: #fff !important;
  }
  .equipment-list-container.products-container .equipment-card:hover .equipment-card__buttons .button.button_border:hover svg {
    stroke: #fff !important;
  }
}
.equipment-list-container.products-container .equipment-card .machine-card {
  position: relative;
  height: 198px;
}
@media (min-width: 1209px) {
  .equipment-list-container.products-container .equipment-card .machine-card {
    height: 314px;
  }
}
.equipment-list-container.products-container .equipment-card .machine-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.equipment-list-container.products-container .equipment-card .machine-card .product-card-container {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 6px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  position: absolute;
  left: 20px;
  top: 20px;
}
.equipment-list-container.products-container .equipment-card .machine-card .product-card-container .flex-box-card {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 5px 12px 7px;
  background: #3b3742;
  border-radius: 5px;
}
.equipment-list-container.products-container .equipment-card .machine-card .product-card-container .highlighted-text {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  padding: 0;
  margin: 0;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 400;
  color: white;
}
@media (min-width: 1209px) {
  .equipment-list-container.products-container .equipment-card .machine-card .product-card-container .highlighted-text {
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
  }
}
.equipment-list-container.products-container .equipment-card .equipment-card-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 22px;
  padding: 20px;
}
@media (min-width: 1209px) {
  .equipment-list-container.products-container .equipment-card .equipment-card-container {
    gap: 22px;
    padding: 40px;
  }
}
.equipment-list-container.products-container .equipment-card .equipment-card-container .rental-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
}
.equipment-list-container.products-container .equipment-card .equipment-card-container .rental-card .product-title {
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.72px;
  font-weight: 700;
  color: black;
}
@media (min-width: 1209px) {
  .equipment-list-container.products-container .equipment-card .equipment-card-container .rental-card .product-title {
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: -0.72px;
    font-weight: 700;
  }
}
.equipment-list-container.products-container .equipment-card .equipment-card-container .rental-card .purple-text-heading {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 600;
  color: #9b1ec2;
}
.equipment-list-container.products-container .equipment-card .equipment-card-container .sales {
  border-radius: 5px;
  padding: 6px 12px;
  background: #fff;
  width: 100%;
  text-align: center;
}
@media (min-width: 1209px) {
  .equipment-list-container.products-container .equipment-card .equipment-card-container .sales {
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
  }
}
.equipment-list-container.products-container .equipment-card .equipment-card-container .data-panel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 1;
}
.equipment-list-container.products-container .equipment-card .equipment-card-container .data-panel .flex-row-with-gap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.equipment-list-container.products-container .equipment-card .equipment-card-container .data-panel .flex-row-with-gap .separator-line {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
}
.equipment-list-container.products-container .equipment-card .equipment-card-container .data-panel .flex-row-with-gap p {
  font-size: 12px;
  line-height: 1.35;
  font-weight: 400;
  color: black;
}
@media (min-width: 1209px) {
  .equipment-list-container.products-container .equipment-card .equipment-card-container .data-panel .flex-row-with-gap p {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
  }
}
.equipment-list-container.products-container .equipment-card .equipment-card-container .button {
  max-width: 220px;
}
.equipment-list-container.products-container .equipment-card__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  padding: 0 0px 20px;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .equipment-list-container.products-container .equipment-card__buttons {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media (min-width: 1209px) {
  .equipment-list-container.products-container .equipment-card__buttons {
    -webkit-transition: opacity 0.2s, max-height 0.2s;
    transition: opacity 0.2s, max-height 0.2s;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    padding: 0 0 0;
  }
}
.equipment-list-container.products-container .equipment-card__buttons .button {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
}
.equipment-list-container.products-container .equipment-card__buttons .button svg {
  fill: transparent;
}
.equipment-list-container.products-container .equipment-card__buttons .button.button_border {
  background-color: #fff;
}
.equipment-list-container.products-container .equipment-card__buttons .button.button_border svg {
  stroke: #9b1ec2;
}
.equipment-list-container.products-container .equipment-card__buttons .button.button_border:hover svg {
  stroke: #fff;
}

.projects__title {
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.84px;
  font-weight: 700;
}
@media (min-width: 1209px) {
  .projects__title {
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: -0.96px;
    font-weight: 600;
    line-height: 1.2;
  }
}
@media (min-width: 1900px) {
  .projects__title {
    font-size: 45px;
    line-height: 1.2;
    letter-spacing: -1.35px;
    font-weight: 600;
  }
}
@media (max-width: 1208px) {
  .projects .row-scroll {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}
.projects__button-load {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 auto;
  max-width: 472px;
  gap: 0 !important;
}
@media (min-width: 1209px) {
  .projects__button-load {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 auto;
    max-width: 472px;
  }
}
@media (min-width: 1900px) {
  .projects__button-load {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 auto;
    max-width: 472px;
  }
}

.projects__item {
  background-color: #261f2a;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border-radius: 8px;
  overflow: hidden;
  -webkit-transition: -webkit-box-shadow 0.2s;
  transition: -webkit-box-shadow 0.2s;
  transition: box-shadow 0.2s;
  transition: box-shadow 0.2s, -webkit-box-shadow 0.2s;
}
@media (min-width: 1209px) {
  .projects__item {
    background-color: #f7f7f7;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: сolumn;
    flex-direction: сolumn;
    border-radius: 8px;
    overflow: hidden;
  }
  .projects__item:hover {
    -webkit-box-shadow: 0px 0px 0px 1px #9b1ec2;
    box-shadow: 0px 0px 0px 1px #9b1ec2;
  }
}
@media (min-width: 1900px) {
  .projects__item {
    background-color: #f7f7f7;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    border-radius: 8px;
    overflow: hidden;
  }
}
@media (min-width: 768px) {
  .projects__item .owl-carousel {
    height: 380px;
    width: 100%;
  }
}
@media (min-width: 1209px) {
  .projects__item .owl-carousel {
    height: 380px;
    width: 100%;
  }
}
@media (min-width: 1900px) {
  .projects__item .owl-carousel {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 540px;
    flex: 0 0 540px;
    width: 540px;
    height: 100%;
  }
}
.projects__item .owl-carousel .owl-nav {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  pointer-events: none;
}
.projects__item .owl-carousel .owl-nav .owl-prev {
  background-color: #9b1ec2;
  padding: 13px !important;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  pointer-events: all;
}
@media (min-width: 1209px) {
  .projects__item .owl-carousel .owl-nav .owl-prev {
    padding: 20px !important;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
  }
  .projects__item .owl-carousel .owl-nav .owl-prev:hover {
    background-color: #7e1a9f;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}
@media (min-width: 1900px) {
  .projects__item .owl-carousel .owl-nav .owl-prev {
    padding: 20px !important;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
  }
}
.projects__item .owl-carousel .owl-nav .owl-prev i {
  color: #fff;
}
.projects__item .owl-carousel .owl-nav .owl-next {
  background-color: #9b1ec2;
  padding: 13px !important;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
  pointer-events: all;
}
@media (min-width: 1209px) {
  .projects__item .owl-carousel .owl-nav .owl-next {
    padding: 20px !important;
    border-bottom-left-radius: 8px;
    border-top-left-radius: 8px;
  }
  .projects__item .owl-carousel .owl-nav .owl-next:hover {
    background-color: #7e1a9f;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}
@media (min-width: 1900px) {
  .projects__item .owl-carousel .owl-nav .owl-next {
    padding: 20px !important;
    border-bottom-left-radius: 8px;
    border-top-left-radius: 8px;
  }
}
.projects__item .owl-carousel .owl-nav .owl-next i {
  color: #fff;
}
.projects__item .owl-carousel .owl-dots {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  width: 100%;
  height: auto;
}
.projects__item .owl-carousel .owl-dots .owl-dot {
  width: 15px;
  height: 15px;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 100%;
}
.projects__item .owl-carousel .owl-dots .owl-dot.active {
  background-color: #9b1ec2;
}
.projects__item__img {
  position: relative;
  overflow: hidden;
  display: block !important;
}
@media (min-width: 768px) {
  .projects__item__img {
    height: 380px;
    width: 100%;
  }
}
@media (min-width: 1209px) {
  .projects__item__img {
    height: 380px;
    width: 100%;
  }
}
@media (min-width: 1900px) {
  .projects__item__img {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 540px;
    flex: 0 0 540px;
    width: 540px;
    height: 100%;
  }
}
.projects__item__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-fit: center;
  object-fit: center;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.projects__item__content {
  padding: 38px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  position: relative;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
@media (min-width: 1209px) {
  .projects__item__content {
    padding: 35px 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
  }
  .projects__item__content:hover .projects__item__title {
    text-decoration: none;
    color: #9b1ec2;
  }
  .projects__item__content:hover .projects__item__link {
    text-decoration: none;
  }
}
@media (min-width: 1900px) {
  .projects__item__content {
    padding: 55px 45px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 26px;
  }
}
.projects__item__title {
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.72px;
  font-weight: 700;
}
@media (min-width: 1900px) {
  .projects__item__title {
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: -0.72px;
    font-weight: 700;
  }
}
@media (max-width: 1208px) {
  .projects__item__title {
    color: #fff;
  }
}
.projects__item__title::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.projects__item__hash {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 1;
}
@media (min-width: 1900px) {
  .projects__item__hash {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
  }
}
.projects__item__hash a {
  border: 1px solid #444444;
  border-radius: 10px;
  padding: 5px 7px;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 400;
  -webkit-transition: color 0.2s, background-color 0.2s, border-color 0.2s;
  transition: color 0.2s, background-color 0.2s, border-color 0.2s;
}
@media (min-width: 1209px) {
  .projects__item__hash a {
    background-color: #fff;
    border: 1px solid #d0d0d0;
    border-radius: 10px;
  }
  .projects__item__hash a:hover {
    border-color: #9b1ec2;
    background-color: #9b1ec2;
    color: #fff;
    text-decoration: none;
  }
}
@media (min-width: 1900px) {
  .projects__item__hash a {
    background-color: #fff;
    border: 1px solid #d0d0d0;
    border-radius: 10px;
  }
}
@media (max-width: 1208px) {
  .projects__item__hash a {
    color: #fff;
  }
}
.projects__item__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 1209px) {
  .projects__item__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 22px;
  }
}
@media (min-width: 1900px) {
  .projects__item__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 22px;
  }
}
.projects__item__info__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 14px;
}
@media (min-width: 1900px) {
  .projects__item__info__item {
    gap: 14px;
  }
}
.projects__item__info__item__image {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 20px;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
}
.projects__item__info__item__image svg .circle {
  fill: none;
}
.projects__item__info__item__image svg .circle-icon {
  fill: #fff;
}
@media (min-width: 1209px) {
  .projects__item__info__item__image {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 40px;
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
  }
  .projects__item__info__item__image svg .circle {
    fill: white;
  }
  .projects__item__info__item__image svg .circle-icon {
    fill: #000000;
  }
}
@media (min-width: 1900px) {
  .projects__item__info__item__image {
    width: 38px;
    height: 38px;
  }
  .projects__item__info__item__image svg .circle {
    fill: white;
  }
  .projects__item__info__item__image svg .circle-icon {
    fill: #000000;
  }
}
.projects__item__info__item__title {
  color: #fff;
  opacity: 0.7;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
}
@media (min-width: 1209px) {
  .projects__item__info__item__title {
    color: #3b3742;
    font-size: 12px;
    line-height: 1.35;
    font-weight: 400;
  }
}
@media (min-width: 1900px) {
  .projects__item__info__item__title {
    color: #3b3742;
    font-size: 12px;
    line-height: 1.35;
    font-weight: 400;
  }
}
.projects__item__info__item__text {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
}
@media (min-width: 1900px) {
  .projects__item__info__item__text {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
  }
}
@media (max-width: 1208px) {
  .projects__item__info__item__text {
    color: #fff;
  }
}
.projects__item__button {
  position: relative;
  z-index: 1;
}
.projects__item__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}
@media (min-width: 1900px) {
  .projects__item__link {
    border: unset;
    width: auto;
    border-radius: unset;
    padding: unset;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-top: auto;
  }
}
.projects__item__link svg {
  width: 13px;
  height: 13px;
  fill: transparent;
  stroke: #9b1ec2;
}
.projects__item__link:hover svg {
  fill: transparent;
  stroke: #fff;
}
@media (min-width: 1900px) {
  .projects__item__link {
    border: unset;
    width: auto;
    border-radius: unset;
    padding: unset;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-top: auto;
  }
  .projects__item__link:hover {
    background: transparent;
    text-decoration: underline;
    color: #9b1ec2;
  }
  .projects__item__link:hover svg {
    fill: transparent;
    stroke: #9b1ec2;
  }
}

.savings {
  background: #f7f6f7;
  border-radius: 0 15px 15px 0;
  position: relative;
  padding: 38px 0;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .savings {
    padding: 71px 0 95px;
  }
}
@media (min-width: 1900px) {
  .savings {
    padding: 111px 0 125px;
  }
}
.savings__image {
  position: absolute;
  right: -60px;
  top: 0;
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
  width: 200px;
  height: 266px;
}
@media (min-width: 1024px) {
  .savings__image {
    right: unset;
    left: -50px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 236px;
    height: 352px;
  }
}
@media (min-width: 1900px) {
  .savings__image {
    right: unset;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 296px;
    height: 442px;
  }
}
.savings__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}
.savings__promo-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
  position: relative;
  z-index: 1;
}
@media (min-width: 1024px) {
  .savings__promo-content {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 40px;
    padding-left: 190px;
  }
}
@media (min-width: 1209px) {
  .savings__promo-content {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 100px;
    padding-left: 190px;
  }
}
@media (min-width: 1900px) {
  .savings__promo-content {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 100px;
    padding-left: 316px;
  }
}
.savings__offer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 1900px) {
  .savings__offer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 25px;
  }
}
.savings__offer-text {
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -0.96px;
  font-weight: 700;
}
@media (min-width: 1024px) {
  .savings__offer-text {
    font-size: 42px;
    font-weight: 700;
  }
}
@media (min-width: 1900px) {
  .savings__offer-text {
    font-size: 45px;
    line-height: 1.2;
    letter-spacing: -1.35px;
    font-weight: 600;
  }
}
.savings__offer-highlight {
  color: #9b1ec2;
}
.savings__message {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
  max-width: 185px;
}
@media (min-width: 1024px) {
  .savings__message {
    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
    max-width: unset;
  }
}
@media (min-width: 1900px) {
  .savings__message {
    font-size: 22px;
    line-height: 1.2;
    font-weight: 700;
    max-width: unset;
  }
}
.savings__features {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 1024px) {
  .savings__features {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 30px;
  }
}
@media (min-width: 1900px) {
  .savings__features {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 100px;
  }
}
.savings__feature {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 26px;
}
@media (min-width: 1024px) {
  .savings__feature {
    gap: 14px;
  }
}
@media (min-width: 1900px) {
  .savings__feature {
    gap: 26px;
  }
}
.savings__feature-image {
  border-radius: 4px;
  width: 56px;
  height: 57px;
  background: #9b1ec2;
}
.savings__feature-image svg {
  width: 100%;
  height: 100%;
}
.savings__feature-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 1024px) {
  .savings__feature-info {
    gap: 10px;
  }
}
@media (min-width: 1900px) {
  .savings__feature-info {
    gap: 20px;
  }
}
.savings__feature-title {
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.84px;
  font-weight: 700;
}
@media (min-width: 1024px) {
  .savings__feature-title {
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: -0.72px;
    font-weight: 700;
  }
}
@media (min-width: 1900px) {
  .savings__feature-title {
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: -0.96px;
    font-weight: 600;
  }
}
.savings__feature-text {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
}
@media (min-width: 1024px) {
  .savings__feature-text {
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
  }
}
@media (min-width: 1900px) {
  .savings__feature-text {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
  }
}

.quality-section-2 .quality-card {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 100%;
  max-width: unset;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  height: 100%;
  padding: 20px 16px 16px;
}
@media (min-width: 768px) {
  .quality-section-2 .quality-card {
    min-width: 175px;
    max-width: unset;
    height: 100%;
    padding: 33px 20px 28px;
  }
}
@media (min-width: 1209px) {
  .quality-section-2 .quality-card {
    min-width: 175px;
    max-width: 375px;
    height: 100%;
    padding: 33px 20px 28px;
  }
}
@media (min-width: 1900px) {
  .quality-section-2 .quality-card {
    min-width: 275px;
    max-width: 500px;
    height: 581px;
    padding: 53px 28px 28px;
  }
}
.quality-section-2 .quality-card::after {
  content: "";
  position: absolute;
  top: 23px;
  right: 30px;
  width: 160px;
  height: 160px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzExIiBoZWlnaHQ9IjI3MCIgdmlld0JveD0iMCAwIDMxMSAyNzAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgPHBhdGggZD0iTTEgNDEuMjc0NUw3MC42ODIyIDFMMTU1LjQzMiA0OS45ODhMMSAxMzkuMjRWNDEuMjc0NVoiIHN0cm9rZT0iIzcxMkI4NyIgc3Ryb2tlLW9wYWNpdHk9IjAuMTYiIHN0cm9rZS13aWR0aD0iMC42NTU2MDEiIC8+CiAgPHBhdGggZD0iTTMxMC42MSAxMzkuMjRMMTU2LjE3NiA0OS45ODhMMjQwLjkyNiAxTDMxMC42MSA0MS4yNzQ1VjEzOS4yNFoiIHN0cm9rZT0iIzcxMkI4NyIgc3Ryb2tlLW9wYWNpdHk9IjAuMTYiIHN0cm9rZS13aWR0aD0iMC42NTU2MDEiIC8+CiAgPHBhdGggZD0iTTEgMTcwLjc5Mkw3MC42ODIyIDEzMC41MTdMMTU1LjQzMiAxNzkuNDk5TDEgMjY4Ljc1N1YxNzAuNzkyWiIgc3Ryb2tlPSIjNzEyQjg3IiBzdHJva2Utb3BhY2l0eT0iMC4xNiIgc3Ryb2tlLXdpZHRoPSIwLjY1NTYwMSIgLz4KICA8cGF0aCBkPSJNMjQxLjExMSAxMzAuNjI1TDMxMC42MSAxNzAuNzkyVjI2OC43NTdMMjQxLjExMSAyMjguNTkxVjEzMC42MjVaIiBzdHJva2U9IiM3MTJCODciIHN0cm9rZS1vcGFjaXR5PSIwLjE2IiBzdHJva2Utd2lkdGg9IjAuNjU1NjAxIiAvPgo8L3N2Zz4=");
}
@media (min-width: 1209px) {
  .quality-section-2 .quality-card::after {
    top: 23px;
    right: 30px;
    width: 260px;
    height: 220px;
  }
}
@media (min-width: 1900px) {
  .quality-section-2 .quality-card::after {
    top: 23px;
    right: 30px;
    width: 309px;
    height: 268px;
  }
}
.quality-section-2 .quality-card-image {
  margin-top: 16px;
  width: 100%;
  height: 168px;
}
@media (min-width: 768px) {
  .quality-section-2 .quality-card-image {
    margin-top: 16px;
    width: 100%;
    height: 218px;
  }
}
@media (min-width: 1209px) {
  .quality-section-2 .quality-card-image {
    margin-top: 16px;
    width: 100%;
    height: 248px;
  }
}
@media (min-width: 1900px) {
  .quality-section-2 .quality-card-image {
    width: 100%;
    height: 318px;
  }
}
.quality-section-2 .quality-card-title {
  color: #000;
}
.quality-section-2 .quality-card-description {
  color: #000;
}

.quality-heading {
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.84px;
  font-weight: 700;
  margin-bottom: 31px;
}
@media (min-width: 1209px) {
  .quality-heading {
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: -0.96px;
    font-weight: 600;
    margin-bottom: 30px;
  }
}
@media (min-width: 1900px) {
  .quality-heading {
    font-size: 45px;
    line-height: 1.2;
    letter-spacing: -1.35px;
    font-weight: 600;
    margin-bottom: 83px;
  }
}

.quality-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
@media (min-width: 1209px) {
  .quality-cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
  }
}
@media (min-width: 1900px) {
  .quality-cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 30px;
  }
}

.quality-card {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 240px;
  max-width: 275px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  border: 1px solid transparent;
  -webkit-transition: border 0.2s;
  transition: border 0.2s;
  background: #f6f5f7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 20px 16px 16px;
}
@media (min-width: 1209px) {
  .quality-card {
    min-width: 175px;
    max-width: 375px;
    padding: 33px 20px 28px;
  }
  .quality-card[data-has-link=true]:hover {
    border: 1px solid #9b1ec2;
  }
  .quality-card[data-has-link=true]:hover .quality-card-title {
    color: #9b1ec2;
  }
}
@media (min-width: 1900px) {
  .quality-card {
    min-width: 275px;
    max-width: 375px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    min-height: 433px;
    padding: 41px 28px 28px;
  }
}
.quality-card::after {
  content: "";
  position: absolute;
  top: 23px;
  right: 30px;
  width: 160px;
  height: 160px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzExIiBoZWlnaHQ9IjI3MCIgdmlld0JveD0iMCAwIDMxMSAyNzAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgPHBhdGggZD0iTTEgNDEuMjc0NUw3MC42ODIyIDFMMTU1LjQzMiA0OS45ODhMMSAxMzkuMjRWNDEuMjc0NVoiIHN0cm9rZT0iIzcxMkI4NyIgc3Ryb2tlLW9wYWNpdHk9IjAuMTYiIHN0cm9rZS13aWR0aD0iMC42NTU2MDEiIC8+CiAgPHBhdGggZD0iTTMxMC42MSAxMzkuMjRMMTU2LjE3NiA0OS45ODhMMjQwLjkyNiAxTDMxMC42MSA0MS4yNzQ1VjEzOS4yNFoiIHN0cm9rZT0iIzcxMkI4NyIgc3Ryb2tlLW9wYWNpdHk9IjAuMTYiIHN0cm9rZS13aWR0aD0iMC42NTU2MDEiIC8+CiAgPHBhdGggZD0iTTEgMTcwLjc5Mkw3MC42ODIyIDEzMC41MTdMMTU1LjQzMiAxNzkuNDk5TDEgMjY4Ljc1N1YxNzAuNzkyWiIgc3Ryb2tlPSIjNzEyQjg3IiBzdHJva2Utb3BhY2l0eT0iMC4xNiIgc3Ryb2tlLXdpZHRoPSIwLjY1NTYwMSIgLz4KICA8cGF0aCBkPSJNMjQxLjExMSAxMzAuNjI1TDMxMC42MSAxNzAuNzkyVjI2OC43NTdMMjQxLjExMSAyMjguNTkxVjEzMC42MjVaIiBzdHJva2U9IiM3MTJCODciIHN0cm9rZS1vcGFjaXR5PSIwLjE2IiBzdHJva2Utd2lkdGg9IjAuNjU1NjAxIiAvPgo8L3N2Zz4=");
}
@media (min-width: 1209px) {
  .quality-card::after {
    top: 23px;
    right: 30px;
    width: 243px;
    height: 220px;
  }
}
@media (min-width: 1900px) {
  .quality-card::after {
    top: 23px;
    right: 30px;
    width: 243px;
    height: 220px;
  }
}

.quality-card-image {
  margin-top: 16px;
  width: 100%;
  height: 168px;
}
@media (min-width: 768px) {
  .quality-card-image {
    margin-top: 16px;
    width: 100%;
    height: 188px;
  }
}
@media (min-width: 1209px) {
  .quality-card-image {
    margin-top: 16px;
    width: 100%;
    height: 218px;
  }
}
@media (min-width: 1900px) {
  .quality-card-image {
    height: 244px;
  }
}
.quality-card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: bottom;
  object-position: bottom;
  border-radius: 9px;
}

.quality-card-content {
  padding: 0 10px 0;
}
@media (min-width: 1209px) {
  .quality-card-content {
    padding: 0 10px 0;
  }
}
@media (min-width: 1900px) {
  .quality-card-content {
    padding: 0 13px 0;
  }
}

a.quality-card-title {
  text-decoration: none !important;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
a.quality-card-title::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.quality-card-title {
  display: inline-block;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 12px;
  text-decoration: none !important;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  color: #000;
}
@media (min-width: 1900px) {
  .quality-card-title {
    font-size: 22px;
    line-height: 1.2;
    font-weight: 700;
  }
}

.quality-card-description {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  color: #000;
}
@media (min-width: 1900px) {
  .quality-card-description {
    font-size: 18px;
    line-height: 135%;
  }
}

.scroll-wrapper {
  position: relative;
  overflow: visible;
}

.scrollbar-rail {
  position: relative;
  left: 3px;
  top: 0;
  height: 100%;
  height: 11px;
  width: calc(100% - 6px);
  z-index: 10;
}
.scrollbar-rail::before {
  content: "";
  position: absolute;
  left: -3px;
  top: -3px;
  bottom: -3px;
  height: 17px;
  right: -3px;
  background: #d9d9d9;
  border-radius: 8px;
  z-index: -1;
}
@media (min-width: 1209px) {
  .scrollbar-rail {
    display: none;
  }
}
.scrollbar-rail .scrollbar-thumb {
  position: absolute;
  height: 100%;
  width: 64px;
  background: #a5a5a5;
  border-radius: 8px;
  cursor: pointer;
  z-index: 1;
}
.scrollbar-rail .scrollbar-text {
  position: absolute;
  right: 5px;
  top: -3px;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 400;
  color: #5c5c5c;
  z-index: 1;
  pointer-events: none;
}

.scroll-content {
  overflow-x: auto;
  overflow-y: hidden;
  margin-top: 20px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.scroll-content::-webkit-scrollbar {
  display: none;
}
@media (min-width: 1209px) {
  .scroll-content {
    overflow: unset;
  }
}

.recall {
  background-color: #261f2a;
  padding: 40px 0;
}
@media (min-width: 768px) {
  .recall {
    padding: 0;
    overflow: hidden;
  }
}
@media (min-width: 1209px) {
  .recall {
    padding: 0;
  }
}
@media (min-width: 768px) {
  .recall.recall-1 {
    padding: 120px 0 70px;
    overflow: hidden;
  }
}
@media (min-width: 1024px) {
  .recall.recall-1 {
    padding: 120px 0;
    overflow: hidden;
  }
}
@media (min-width: 1209px) {
  .recall.recall-1 {
    padding: 10px 0;
    overflow: hidden;
  }
}
.recall.recall-1 .recall__content {
  z-index: 2;
}
.recall.recall-1 .recall__content .icon-bg {
  position: absolute;
  left: 0;
  top: -60px;
  width: 54px;
  height: 47px;
  display: block;
  pointer-events: none;
}
@media (min-width: 1209px) {
  .recall.recall-1 .recall__content .icon-bg {
    display: block;
    left: -94px;
    top: 10px;
    width: 54px;
    height: 47px;
  }
}
.recall .container-small {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
@media (min-width: 768px) {
  .recall .container-small {
    gap: 30px;
  }
}
@media (min-width: 768px) {
  .recall .container-small {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
  }
}
@media (min-width: 1209px) {
  .recall .container-small {
    padding-top: 7px;
    padding-bottom: 7px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 30px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
  }
}
@media (min-width: 1900px) {
  .recall .container-small {
    padding-top: 7px;
    padding-bottom: 7px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 50px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.recall__content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  z-index: 1;
}
@media (min-width: 768px) {
  .recall__content {
    width: 491px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
    margin-left: 0;
  }
}
@media (min-width: 1209px) {
  .recall__content {
    width: 691px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 26px;
    margin-left: 0;
  }
}
@media (min-width: 1900px) {
  .recall__content {
    width: 891px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 34px;
    margin-left: 0;
  }
}
.recall__content .bg-image {
  position: absolute;
  pointer-events: none;
  width: 282px;
  height: 245px;
  left: 77px;
  top: 380px;
}
@media (min-width: 768px) {
  .recall__content .bg-image {
    width: 434px;
    height: 362px;
    left: -54px;
    top: -40px;
  }
}
@media (min-width: 1209px) {
  .recall__content .bg-image {
    width: 434px;
    height: 362px;
    left: -54px;
    top: -40px;
  }
}
@media (min-width: 1900px) {
  .recall__content .bg-image {
    width: 534px;
    height: 462px;
    left: -94px;
    top: -80px;
  }
}
.recall__content .bg-image img {
  width: 100%;
  height: 100%;
}
.recall__content .icon-bg {
  display: none;
}
@media (min-width: 1209px) {
  .recall__content .icon-bg {
    display: block;
    position: absolute;
    left: -75px;
    top: 10px;
    width: 43px;
    height: 37px;
  }
}
@media (min-width: 1900px) {
  .recall__content .icon-bg {
    display: block;
    position: absolute;
    left: -94px;
    top: 10px;
    width: 54px;
    height: 47px;
  }
}
.recall__title {
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.84px;
  font-weight: 700;
  margin-bottom: 16px;
}
@media (min-width: 1209px) {
  .recall__title {
    margin-bottom: unset;
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: -0.96px;
    font-weight: 600;
  }
}
@media (min-width: 1900px) {
  .recall__title {
    margin-bottom: unset;
    font-size: 45px;
    line-height: 1.2;
    letter-spacing: -1.35px;
    font-weight: 600;
  }
}
.recall__subtitle {
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
}
@media (min-width: 1209px) {
  .recall__subtitle {
    font-size: 18px;
    line-height: 1.5;
    font-weight: 600;
  }
}
@media (min-width: 1900px) {
  .recall__subtitle {
    font-size: 22px;
    line-height: 1.35;
    font-weight: 600;
  }
}
.recall__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  margin-top: 34px;
}
@media (min-width: 768px) {
  .recall__list {
    margin-top: unset;
  }
}
@media (min-width: 1209px) {
  .recall__list {
    margin-top: unset;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
@media (min-width: 1900px) {
  .recall__list {
    margin-top: unset;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 40px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.recall__list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 22px;
  color: #fff;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
}
@media (min-width: 1900px) {
  .recall__list li {
    font-size: 18px;
    line-height: 1.5;
    font-weight: 400;
  }
}
.recall__list li .icon {
  width: 35px;
  height: 35px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 35px;
  flex: 0 0 35px;
}
.recall__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 33px;
  margin-top: 38px;
  padding-bottom: 40px;
}
@media (min-width: 768px) {
  .recall__bottom {
    margin-top: unset;
    padding-bottom: unset;
  }
}
@media (min-width: 1209px) {
  .recall__bottom {
    margin-top: unset;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 22px;
    padding-bottom: unset;
  }
}
@media (min-width: 1900px) {
  .recall__bottom {
    margin-top: unset;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 33px;
    padding-bottom: unset;
  }
}
.recall__bottom--text {
  color: #dc96f1;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 600;
}
@media (min-width: 1209px) {
  .recall__bottom--text {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 600;
  }
}
@media (min-width: 1900px) {
  .recall__bottom--text {
    font-size: 22px;
    line-height: 1.35;
    font-weight: 600;
  }
}
.recall__bottom--contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 14px;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}
.recall__bottom--contacts .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
}
@media (min-width: 1209px) {
  .recall__bottom--contacts .item {
    gap: 10px;
  }
}
@media (min-width: 1900px) {
  .recall__bottom--contacts .item {
    gap: 15px;
  }
}
.recall__bottom--contacts .item .icon {
  width: 25px;
  height: 25px;
}
@media (min-width: 1209px) {
  .recall__bottom--contacts .item .icon {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20px;
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
  }
}
@media (min-width: 1900px) {
  .recall__bottom--contacts .item .icon {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25px;
    flex: 0 0 25px;
    width: 25px;
    height: 25px;
  }
}
.recall__bottom--contacts .item .text {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
  color: #fff;
}
@media (min-width: 1209px) {
  .recall__bottom--contacts .item .text {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
  }
}
@media (min-width: 1900px) {
  .recall__bottom--contacts .item .text {
    font-size: 18px;
    line-height: 1.5;
    font-weight: 400;
  }
}
.recall .form-group {
  margin-bottom: 0;
}
.recall__image {
  width: 100%;
  height: auto;
  pointer-events: none;
  position: relative;
  z-index: 1;
  margin-top: -86px;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .recall__image {
    width: 402px;
    height: 491px;
    margin: 0 auto;
  }
}
@media (min-width: 1209px) {
  .recall__image {
    width: 402px;
    height: 491px;
    margin: unset;
  }
}
@media (min-width: 1900px) {
  .recall__image {
    width: 702px;
    height: 691px;
  }
}
.recall__image::after {
  content: "";
  position: absolute;
  left: -16px;
  right: -16px;
  bottom: 0;
  width: 100vw;
  height: calc(100% - 46px);
  background: #1b1320;
  z-index: -1;
}
@media (min-width: 768px) {
  .recall__image::after {
    display: none;
  }
}
.recall__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  mix-blend-mode: screen;
}

.recall-2 .container-small {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
@media (min-width: 768px) {
  .recall-2 .container-small {
    gap: 30px;
  }
}
@media (min-width: 768px) {
  .recall-2 .container-small {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 50px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
@media (min-width: 1209px) {
  .recall-2 .container-small {
    padding-top: 7px;
    padding-bottom: 7px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 30px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
@media (min-width: 1900px) {
  .recall-2 .container-small {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 50px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.recall-2 .container-small {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (min-width: 1209px) {
  .recall-2 .container-small {
    padding-top: 57px;
    padding-bottom: 57px;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
  }
}
@media (min-width: 1900px) {
  .recall-2 .container-small {
    padding-top: 7px;
    padding-bottom: 7px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 50px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.recall-2 .recall__content .icon-bg {
  display: block;
}
@media (max-width: 1899px) {
  .recall-2 .recall__content .icon-bg {
    width: 54px;
    height: 46px;
    margin-bottom: 0px;
  }
}
@media (max-width: 1208px) {
  .recall-2 .recall__content .icon-bg {
    width: 54px;
    height: 46px;
    margin-bottom: 24px;
  }
}
.recall-2 .recall__list-dot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  padding-left: 0;
}
@media (min-width: 1209px) {
  .recall-2 .recall__list-dot {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
  }
}
@media (min-width: 1900px) {
  .recall-2 .recall__list-dot {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
  }
}
.recall-2 .recall__list-dot li {
  position: relative;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 22px;
  color: #b9b9b9;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
  padding-left: 20px;
}
@media (min-width: 768px) {
  .recall-2 .recall__list-dot li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 22px;
    color: #b9b9b9;
    position: relative;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
    padding-left: 20px;
  }
  .recall-2 .recall__list-dot li.active {
    color: #fff;
  }
  .recall-2 .recall__list-dot li.active p::after {
    opacity: 1;
  }
  .recall-2 .recall__list-dot li.active p::before {
    opacity: 1;
  }
}
@media (min-width: 1209px) {
  .recall-2 .recall__list-dot li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 22px;
    color: #b9b9b9;
    position: relative;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 400;
    padding-left: 20px;
  }
  .recall-2 .recall__list-dot li.active {
    color: #fff;
  }
  .recall-2 .recall__list-dot li.active p::after {
    opacity: 1;
  }
  .recall-2 .recall__list-dot li.active p::before {
    opacity: 1;
  }
}
@media (min-width: 1900px) {
  .recall-2 .recall__list-dot li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 22px;
    color: #b9b9b9;
    position: relative;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 400;
    padding-left: 20px;
  }
  .recall-2 .recall__list-dot li.active {
    color: #fff;
  }
  .recall-2 .recall__list-dot li.active p::after {
    opacity: 1;
  }
  .recall-2 .recall__list-dot li.active p::before {
    opacity: 1;
  }
}
.recall-2 .recall__list-dot li .inserted-image {
  display: none;
  width: 100%;
  height: 177px;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  margin-left: -20px;
}
@media (max-width: 1279px) {
  .recall-2 .recall__list-dot li .inserted-image {
    height: 300px;
  }
}
@media (max-width: 767px) {
  .recall-2 .recall__list-dot li .inserted-image {
    display: block;
  }
}
.recall-2 .recall__list-dot li p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}
.recall-2 .recall__list-dot li p::after {
  content: "";
  display: block;
  height: 1px;
  background-color: #fff;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
@media (min-width: 768px) {
  .recall-2 .recall__list-dot li p::after {
    height: 1px;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0px;
    flex: 1 0 0;
    margin: 0 0px 0 12px;
  }
}
@media (min-width: 1209px) {
  .recall-2 .recall__list-dot li p::after {
    height: 1px;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0px;
    flex: 1 0 0;
    margin: 0 0px 0 12px;
  }
}
@media (min-width: 1900px) {
  .recall-2 .recall__list-dot li p::after {
    height: 1px;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0px;
    flex: 1 0 0;
    margin: 0 0px 0 12px;
  }
}
.recall-2 .recall__list-dot li p::before {
  content: "";
  width: 11px;
  height: 11px;
  position: absolute;
  right: 0%;
  border: solid #fff;
  border-width: 0 1px 1px 0;
  display: inline-block;
  padding: 1px;
  top: 50%;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  transform: translateY(-50%) rotate(-45deg);
  -webkit-transform: translateY(-50%) rotate(-45deg);
}
.recall-2 .recall__list-dot li::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border: 1px solid #dc96f1;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 7px;
}
@media (min-width: 768px) {
  .recall-2 .recall__list-dot li::before {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}
@media (min-width: 1209px) {
  .recall-2 .recall__list-dot li::before {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}
@media (min-width: 1900px) {
  .recall-2 .recall__list-dot li::before {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}
.recall-2 .recall__image {
  display: none;
}
@media (min-width: 768px) {
  .recall-2 .recall__image {
    display: block;
    width: 302px;
    height: 291px;
    position: relative;
    margin: 0;
  }
}
@media (min-width: 1209px) {
  .recall-2 .recall__image {
    display: block;
    width: 502px;
    height: 491px;
    position: relative;
  }
}
@media (min-width: 1900px) {
  .recall-2 .recall__image {
    display: block;
    width: 702px;
    height: 691px;
    position: relative;
  }
}
.recall-2 .recall__image .image-swiper {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: visible;
}
.recall-2 .recall__image .image-swiper .swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.recall-2 .recall__image .image-swiper .swiper-slide {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.recall-2 .recall__image .image-swiper .swiper-slide .slide-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}
.recall-2 .recall__image .image-swiper .swiper-slide .slide-container img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}
.recall-2 .recall__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  mix-blend-mode: unset;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.recall-2 .recall__image--content {
  position: absolute;
  left: -23px;
  bottom: 48px;
}
.recall-2 .recall__image--title {
  background-color: #1c1222;
  font-weight: 700;
}
@media (min-width: 768px) {
  .recall-2 .recall__image--title {
    font-size: 20px;
    line-height: 1.2;
    color: #fff;
    padding: 5px 10px;
  }
}
@media (min-width: 1209px) {
  .recall-2 .recall__image--title {
    font-size: 26px;
    line-height: 1.2;
    color: #fff;
    padding: 10px 20px;
  }
}
@media (min-width: 1900px) {
  .recall-2 .recall__image--title {
    font-size: 30px;
    line-height: 1.2;
    color: #fff;
    padding: 12px 22px;
  }
}
.recall-2 .recall__image--subtitle {
  display: inline-block;
  background-color: #1c1222;
}
@media (min-width: 768px) {
  .recall-2 .recall__image--subtitle {
    font-size: 12px;
    line-height: 1.35;
    color: #bfb9ca;
    padding: 0px 10px 8px;
  }
}
@media (min-width: 1209px) {
  .recall-2 .recall__image--subtitle {
    font-size: 12px;
    line-height: 1.35;
    color: #bfb9ca;
    padding: 0px 20px 14px;
  }
}
@media (min-width: 1900px) {
  .recall-2 .recall__image--subtitle {
    font-size: 14px;
    line-height: 1.35;
    color: #bfb9ca;
    padding: 0px 22px 16px;
  }
}
.recall-2 .slider-progress {
  width: 100%;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.1);
  position: absolute;
  bottom: 0;
  left: 0;
}
.recall-2 .slider-progress__bar {
  height: 100%;
  width: 0;
  background-color: rgba(255, 255, 255, 0.3);
  -webkit-transition: width linear;
  transition: width linear;
}

.recall-3 {
  padding: 50px 0 50px 0;
  overflow: unset;
}
@media (min-width: 1209px) {
  .recall-3 {
    padding: 0 0 0 0;
    overflow: unset;
  }
}
@media (min-width: 1900px) {
  .recall-3 {
    padding: 0 0 0 0;
    overflow: unset;
  }
}
@media (max-width: 1208px) {
  .recall-3 .container-small {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
}
@media (max-width: 767px) {
  .recall-3 .container-small {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
@media (max-width: 1208px) {
  .recall-3 .recall__title {
    margin-bottom: 0;
  }
}
.recall-3 .is-invalid {
  -webkit-box-shadow: inset 0 0 0 1px #dc3545 !important;
  box-shadow: inset 0 0 0 1px #dc3545 !important;
}
.recall-3 .recall__content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  z-index: 1;
}
@media (min-width: 768px) {
  .recall-3 .recall__content {
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
    margin-left: 0;
  }
}
@media (min-width: 1024px) {
  .recall-3 .recall__content {
    width: 491px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
    margin-left: 30px;
  }
}
@media (min-width: 1209px) {
  .recall-3 .recall__content {
    width: 691px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 26px;
    margin-left: 50px;
  }
}
@media (min-width: 1900px) {
  .recall-3 .recall__content {
    width: 891px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 34px;
    margin-left: 50px;
  }
}
.recall-3 .recall__content {
  gap: 30px;
}
@media (min-width: 1209px) {
  .recall-3 .recall__content {
    gap: 30px;
  }
}
@media (min-width: 1900px) {
  .recall-3 .recall__content {
    gap: 60px;
  }
}
.recall-3 .recall__list-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 1900px) {
  .recall-3 .recall__list-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
  }
}
.recall-3 .recall__list-icon li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  color: #ffffff;
  position: relative;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
}
.recall-3 .recall__list-icon li svg {
  width: 48px;
  height: 48px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 48px;
  flex: 0 0 48px;
}
@media (min-width: 1209px) {
  .recall-3 .recall__list-icon li {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    width: 385px;
  }
}
@media (min-width: 1900px) {
  .recall-3 .recall__list-icon li {
    font-size: 18px;
    line-height: 1.5;
    font-weight: 400;
    width: 585px;
  }
}
.recall-3 .recall__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  z-index: 1;
  position: relative;
  gap: 10px;
}
@media (min-width: 1209px) {
  .recall-3 .recall__bottom {
    gap: 20px;
  }
}
@media (max-width: 1208px) {
  .recall-3 .recall__bottom {
    margin-top: unset;
    padding-bottom: unset;
  }
}
.recall-3 .recall__bottom--top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
@media (min-width: 1209px) {
  .recall-3 .recall__bottom--top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 10px;
    width: 100%;
  }
}
@media (min-width: 1900px) {
  .recall-3 .recall__bottom--top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 20px;
    width: 100%;
  }
}
.recall-3 .recall__bottom .recall-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 1209px) {
  .recall-3 .recall__bottom .recall-form {
    gap: 10px;
  }
}
@media (min-width: 1900px) {
  .recall-3 .recall__bottom .recall-form {
    gap: 20px;
  }
}
@media (min-width: 1209px) {
  .recall-3 .recall__bottom .recall-form .form-group {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 250px;
    flex: 0 0 250px;
  }
}
@media (min-width: 1900px) {
  .recall-3 .recall__bottom .recall-form .form-group {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 350px;
    flex: 0 0 350px;
  }
}
.recall-3 .recall__bottom .recall-form .form-group input {
  margin-bottom: unset;
  height: 100%;
}
@media (min-width: 1209px) {
  .recall-3 .recall__bottom .recall-form .form-group input {
    margin-bottom: unset;
  }
}
@media (min-width: 1900px) {
  .recall-3 .recall__bottom .recall-form .form-group input {
    margin-bottom: unset;
  }
}
.recall-3 .recall__bottom--info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  gap: 20px;
}
@media (min-width: 1209px) {
  .recall-3 .recall__bottom--info {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 50px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
@media (min-width: 1900px) {
  .recall-3 .recall__bottom--info {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 160px;
  }
}
.recall-3 .recall__bottom--info .call {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  color: #fff;
}
.recall-3 .recall__bottom--info .call svg {
  width: 25px;
  height: 25px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25px;
  flex: 0 0 25px;
}
.recall-3 .recall__bottom--info .politicy {
  color: #fff;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 400;
}
.recall-3 .recall__bottom--info .politicy br {
  display: none;
}
@media (min-width: 1209px) {
  .recall-3 .recall__bottom--info .politicy br {
    display: inline;
  }
}
.recall-3 .recall__bottom--info .politicy a {
  color: #dc96f1;
}
.recall-3 .recall__image {
  width: 100vw;
  height: 268px;
  margin-top: -76px;
  margin-left: -16px;
  margin-right: -16px;
  overflow: hidden;
  margin-bottom: 50px;
  z-index: 1;
  pointer-events: none;
}
.recall-3 .recall__image::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: calc(100% - 26px);
  background: #1b1320;
  z-index: -1;
}
@media (min-width: 768px) {
  .recall-3 .recall__image::after {
    display: none;
  }
}
@media (min-width: 768px) {
  .recall-3 .recall__image {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 430px;
    flex: 0 0 430px;
    width: 430px;
    left: unset;
    margin: unset;
    margin-bottom: -50px;
    margin-right: -100px;
    height: 390px;
  }
}
@media (min-width: 1024px) {
  .recall-3 .recall__image {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 430px;
    flex: 0 0 430px;
    width: 430px;
    left: unset;
    margin: unset;
    margin-right: unset;
    margin-bottom: -50px;
    height: 390px;
  }
}
@media (min-width: 1209px) {
  .recall-3 .recall__image {
    position: relative;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 560px;
    flex: 0 0 560px;
    width: 560px;
    height: 445px;
    bottom: -7px;
    right: 30px;
    left: unset;
    margin: unset;
  }
}
@media (min-width: 1900px) {
  .recall-3 .recall__image {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 860px;
    flex: 0 0 860px;
    width: 860px;
    height: 745px;
    bottom: -7px;
    right: 0;
    margin: unset;
  }
}
.recall-3 .recall__image .image-1 {
  position: absolute;
  width: 255px;
  height: 182px;
  left: 20px;
  top: 58px;
}
@media (min-width: 768px) {
  .recall-3 .recall__image .image-1 {
    position: absolute;
    width: 415px;
    height: 282px;
    left: 20px;
    top: 58px;
  }
}
@media (min-width: 1209px) {
  .recall-3 .recall__image .image-1 {
    left: unset;
    width: 374px;
    height: 283px;
    right: 0;
    top: 50px;
  }
}
@media (min-width: 1900px) {
  .recall-3 .recall__image .image-1 {
    left: unset;
    width: 674px;
    height: 483px;
    right: 0;
    top: 150px;
  }
}
.recall-3 .recall__image .image-1 img {
  mix-blend-mode: exclusion;
}
.recall-3 .recall__image .image-2 {
  position: absolute;
  width: 310px;
  height: 286px;
  right: 0;
  top: 0;
}
@media (min-width: 768px) {
  .recall-3 .recall__image .image-2 {
    position: absolute;
    width: 440px;
    height: 396px;
    right: 0;
    top: 0;
  }
}
@media (min-width: 1209px) {
  .recall-3 .recall__image .image-2 {
    width: 560px;
    height: 445px;
    left: 0;
    top: 0;
  }
}
@media (min-width: 1900px) {
  .recall-3 .recall__image .image-2 {
    width: 860px;
    height: 745px;
    left: 0;
    top: 0;
  }
}
.recall-3 .recall__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  mix-blend-mode: unset;
}
.recall-3 .recall__image--content {
  position: absolute;
  left: 0px;
  top: 80px;
}
@media (min-width: 1209px) {
  .recall-3 .recall__image--content {
    top: unset;
    left: 0;
    bottom: 48px;
  }
}
@media (min-width: 1900px) {
  .recall-3 .recall__image--content {
    top: unset;
    left: 0;
    bottom: 48px;
  }
}
.recall-3 .recall__image--title {
  background-color: #000;
  font-weight: 700;
  color: #fff;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
  padding: 8px 16px;
}
@media (min-width: 1209px) {
  .recall-3 .recall__image--title {
    background-color: #1c1222;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 700;
    padding: 10px 20px;
  }
}
@media (min-width: 1900px) {
  .recall-3 .recall__image--title {
    background-color: #1c1222;
    font-size: 30px;
    line-height: 1.2;
    padding: 12px 22px;
  }
}
.recall-3 .recall__image--subtitle {
  display: inline-block;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 400;
  background-color: #000;
  color: #bfb9ca;
  padding: 0 16px 12px 16px;
}
@media (min-width: 1209px) {
  .recall-3 .recall__image--subtitle {
    background-color: #1c1222;
    font-size: 12px;
    line-height: 1.35;
    color: #bfb9ca;
    padding: 0px 20px 14px;
  }
}
@media (min-width: 1900px) {
  .recall-3 .recall__image--subtitle {
    background-color: #1c1222;
    font-size: 14px;
    line-height: 1.35;
    color: #bfb9ca;
    padding: 0px 22px 16px;
  }
}

.recall-4 {
  padding: 50px 0 50px 0;
  overflow: unset;
}
@media (min-width: 768px) {
  .recall-4 {
    padding: 56px 0 56px 0;
    overflow: unset;
  }
}
@media (min-width: 1209px) {
  .recall-4 {
    padding: 106px 0 113px 0;
    overflow: unset;
  }
}
@media (min-width: 1900px) {
  .recall-4 {
    padding: 96px 0 123px 0;
    overflow: unset;
  }
}
@media (max-width: 1208px) {
  .recall-4 .container-small {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
}
@media (max-width: 767px) {
  .recall-4 .container-small {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
@media (max-width: 1208px) {
  .recall-4 .recall__title {
    margin-bottom: 0;
  }
}
@media (min-width: 1209px) {
  .recall-4 .recall__title {
    font-size: 45px;
    line-height: 1.2;
    letter-spacing: -1.35px;
    font-weight: 600;
  }
}
@media (min-width: 1900px) {
  .recall-4 .recall__title {
    font-size: 65px;
    line-height: 1.2;
    letter-spacing: -3.25px;
    font-weight: 700;
  }
}
.recall-4 .recall__content {
  gap: 30px;
}
@media (min-width: 1209px) {
  .recall-4 .recall__content {
    gap: 40px;
  }
}
@media (min-width: 1900px) {
  .recall-4 .recall__content {
    gap: 60px;
  }
}
.recall-4 .recall__image {
  width: 100vw;
  height: 268px;
  position: relative;
  margin-top: 0;
  margin-left: -16px;
  margin-right: -16px;
  margin-top: -50px;
  margin-bottom: 50px;
  background-color: #1b1320;
}
@media (min-width: 768px) {
  .recall-4 .recall__image {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 355px;
    flex: 0 0 355px;
    width: 355px;
    height: 312px;
    margin: unset;
    margin-bottom: -56px;
    margin-right: 0;
    background-color: unset;
  }
}
@media (min-width: 1209px) {
  .recall-4 .recall__image {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 455px;
    flex: 0 0 455px;
    width: 455px;
    height: 412px;
    margin-top: -66px;
    margin-bottom: -120px;
    margin-right: 0;
    background-color: unset;
  }
}
@media (min-width: 1900px) {
  .recall-4 .recall__image {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 735px;
    flex: 0 0 735px;
    width: 735px;
    height: 667px;
    margin-top: -156px;
    margin-bottom: -130px;
    margin-right: 0;
    background-color: unset;
  }
}
.recall-4 .recall__image img {
  mix-blend-mode: unset;
  width: 100%;
  height: 100%;
}
@media (min-width: 1900px) {
  .recall-4 .recall__image img {
    margin: unset;
  }
}

@media (min-width: 768px) {
  .recall-5 {
    padding: 50px 0 50px 0;
  }
}
@media (min-width: 1209px) {
  .recall-5 {
    padding: 10px 0 10px 0;
  }
}
@media (max-width: 767px) {
  .recall-5 .container-small {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
@media (max-width: 1208px) {
  .recall-5 .recall__title {
    margin-bottom: 0;
  }
}
@media (min-width: 1900px) {
  .recall-5 .recall__title {
    font-size: 65px;
    line-height: 1.2;
    letter-spacing: -3.25px;
    font-weight: 700;
  }
}
.recall-5 .recall__content {
  gap: 30px;
}
@media (min-width: 1900px) {
  .recall-5 .recall__content {
    gap: 60px;
  }
}

.recall-6 {
  padding: 50px 0 50px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
@media (min-width: 1900px) {
  .recall-6 {
    padding: 0;
    overflow: hidden;
  }
}
@media (max-width: 767px) {
  .recall-6 .container-small {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
@media (min-width: 1900px) {
  .recall-6 .container-small {
    -webkit-box-pack: unset;
    -ms-flex-pack: unset;
    justify-content: unset;
  }
}
@media (max-width: 1208px) {
  .recall-6 .recall__title {
    margin-bottom: 0;
  }
}
@media (min-width: 1900px) {
  .recall-6 .recall__title {
    font-size: 65px;
    line-height: 1.2;
    letter-spacing: -3.25px;
    font-weight: 700;
  }
}
.recall-6 .recall__content {
  gap: 30px;
}
@media (min-width: 1900px) {
  .recall-6 .recall__content {
    gap: 60px;
  }
}
.recall-6 .recall__image {
  width: 100vw;
  height: 268px;
  position: relative;
  margin-top: -76px;
  margin-left: -16px;
  margin-right: -16px;
  overflow: hidden;
  margin-bottom: 50px;
  z-index: -1;
  -ms-flex-item-align: end;
  align-self: end;
}
@media (min-width: 768px) {
  .recall-6 .recall__image {
    width: 425px;
    height: 372px;
    position: relative;
    bottom: -77px;
    right: 0;
    margin: unset;
    background-color: unset;
  }
}
@media (min-width: 1209px) {
  .recall-6 .recall__image {
    width: 425px;
    height: 372px;
    position: relative;
    bottom: -83px;
    right: 0;
    margin: unset;
    background-color: unset;
  }
}
@media (min-width: 1900px) {
  .recall-6 .recall__image {
    width: 860px;
    height: 745px;
    position: relative;
    bottom: -6px;
    right: 0;
    margin: unset;
  }
}
.recall-6 .recall__image::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: calc(100% - 26px);
  background: #1b1320;
  z-index: -1;
}
@media (min-width: 768px) {
  .recall-6 .recall__image::after {
    display: none;
  }
}
.recall-6 .recall__image .image-1 {
  position: absolute;
  width: 255px;
  height: 182px;
  left: 20px;
  top: 58px;
}
@media (min-width: 768px) {
  .recall-6 .recall__image .image-1 {
    left: unset;
    width: 384px;
    height: 233px;
    right: 0;
    top: 20px;
  }
}
@media (min-width: 1209px) {
  .recall-6 .recall__image .image-1 {
    left: unset;
    width: 384px;
    height: 233px;
    right: 0;
    top: 20px;
  }
}
@media (min-width: 1900px) {
  .recall-6 .recall__image .image-1 {
    left: unset;
    width: 674px;
    height: 483px;
    right: 0;
    top: 150px;
  }
}
.recall-6 .recall__image .image-1 img {
  mix-blend-mode: exclusion;
}
.recall-6 .recall__image .image-2 {
  position: absolute;
  width: 310px;
  height: 286px;
  right: 0;
  top: 0;
}
@media (min-width: 768px) {
  .recall-6 .recall__image .image-2 {
    width: 300px;
    height: 355px;
    left: 110px;
    top: 0;
  }
}
@media (min-width: 1209px) {
  .recall-6 .recall__image .image-2 {
    width: 300px;
    height: 355px;
    left: 110px;
    top: 0;
  }
}
@media (min-width: 1900px) {
  .recall-6 .recall__image .image-2 {
    width: 860px;
    height: 745px;
    left: 110px;
    top: 0;
  }
}
.recall-6 .recall__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  mix-blend-mode: unset;
}
.recall-6 .recall__image--content {
  position: absolute;
  left: 0px;
  top: 80px;
}
@media (min-width: 1900px) {
  .recall-6 .recall__image--content {
    top: unset;
    left: 110px;
    bottom: 48px;
  }
}
.recall-6 .recall__image--title {
  background-color: #000;
  font-weight: 700;
  color: #fff;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
  padding: 8px 16px;
}
@media (min-width: 1900px) {
  .recall-6 .recall__image--title {
    background-color: #1c1222;
    font-size: 30px;
    line-height: 1.2;
    padding: 12px 22px;
  }
}
.recall-6 .recall__image--subtitle {
  display: inline-block;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 400;
  background-color: #000;
  color: #bfb9ca;
  padding: 0 16px 12px 16px;
}
@media (min-width: 1900px) {
  .recall-6 .recall__image--subtitle {
    background-color: #1c1222;
    font-size: 14px;
    line-height: 1.35;
    color: #bfb9ca;
    padding: 0px 22px 16px;
  }
}

.reviews-gallery-2.reviews-gallery__title {
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.84px;
  font-weight: 700;
}
@media (min-width: 1209px) {
  .reviews-gallery-2.reviews-gallery__title {
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: -0.96px;
    font-weight: 600;
  }
}
@media (min-width: 1900px) {
  .reviews-gallery-2.reviews-gallery__title {
    font-size: 45px;
    line-height: 1.2;
    letter-spacing: -1.35px;
    font-weight: 600;
  }
}
.reviews-gallery-2.reviews-gallery__content {
  position: relative;
}
.reviews-gallery-2.reviews-gallery .reviews-gallery__slider-2.owl-carousel {
  position: relative;
}
.reviews-gallery-2.reviews-gallery .reviews-gallery__slider-2.owl-carousel .owl-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 20px;
  gap: 5px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .reviews-gallery-2.reviews-gallery .reviews-gallery__slider-2.owl-carousel .owl-dots {
    gap: 7px;
  }
}
@media (min-width: 1209px) {
  .reviews-gallery-2.reviews-gallery .reviews-gallery__slider-2.owl-carousel .owl-dots {
    display: none;
  }
}
.reviews-gallery-2.reviews-gallery .reviews-gallery__slider-2.owl-carousel .owl-dots .owl-dot {
  width: 7px;
  height: 7px;
  background: rgba(156, 30, 194, 0.3);
  border-radius: 50%;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}
.reviews-gallery-2.reviews-gallery .reviews-gallery__slider-2.owl-carousel .owl-dots .owl-dot.active {
  background: #9b1ec2;
}
@media (min-width: 768px) {
  .reviews-gallery-2.reviews-gallery .reviews-gallery__slider-2.owl-carousel .owl-dots .owl-dot {
    width: 10px;
    height: 10px;
  }
}
.reviews-gallery-2.reviews-gallery .reviews-gallery__slider-2.owl-carousel .owl-stage-outer {
  overflow: visible;
}
@media (min-width: 1209px) {
  .reviews-gallery-2.reviews-gallery .reviews-gallery__slider-2.owl-carousel .owl-stage-outer {
    overflow: hidden;
  }
}
.reviews-gallery-2.reviews-gallery .card-container {
  width: 280px;
  height: 409px;
  padding: 13px 13px 14px;
  overflow: hidden;
  border: 1px solid #e3e3e3;
  border-radius: 15px;
  position: relative;
  cursor: pointer;
  -webkit-transition: border 0.2s;
  transition: border 0.2s;
}
@media (min-width: 450px) {
  .reviews-gallery-2.reviews-gallery .card-container {
    width: 344px;
    height: 494px;
    padding: 13px 13px 14px;
  }
}
@media (min-width: 768px) {
  .reviews-gallery-2.reviews-gallery .card-container {
    width: 344px;
    height: 494px;
    padding: 13px 13px 14px;
  }
}
.reviews-gallery-2.reviews-gallery .card-container__icon {
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 75px;
  height: 75px;
  background: #9b1ec2;
  border-radius: 12px;
  position: absolute;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.reviews-gallery-2.reviews-gallery .card-container__icon svg {
  width: 18px;
  height: 18px;
}
@media (min-width: 1209px) {
  .reviews-gallery-2.reviews-gallery .card-container {
    width: 284px;
    height: 434px;
    padding: 13px 13px 14px;
  }
  .reviews-gallery-2.reviews-gallery .card-container:hover {
    border: 1px solid #464646;
  }
  .reviews-gallery-2.reviews-gallery .card-container:hover .card-container__icon {
    opacity: 1;
  }
  .reviews-gallery-2.reviews-gallery .card-container:hover .card-container__image::after {
    opacity: 1;
  }
}
@media (min-width: 1900px) {
  .reviews-gallery-2.reviews-gallery .card-container {
    width: 344px;
    height: 494px;
    padding: 13px 13px 14px;
  }
  .reviews-gallery-2.reviews-gallery .card-container:hover {
    border: 1px solid #464646;
  }
  .reviews-gallery-2.reviews-gallery .card-container:hover .card-container__icon {
    opacity: 1;
  }
  .reviews-gallery-2.reviews-gallery .card-container:hover .card-container__image::after {
    opacity: 1;
  }
}
@media (min-width: 1209px) {
  .reviews-gallery-2.reviews-gallery .card-container {
    border-radius: 15px;
  }
  .reviews-gallery-2.reviews-gallery .card-container__icon {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 75px;
    height: 75px;
    border-radius: 12px;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 1;
  }
  .reviews-gallery-2.reviews-gallery .card-container__icon svg {
    width: 18px;
    height: 18px;
  }
}
@media (min-width: 1900px) {
  .reviews-gallery-2.reviews-gallery .card-container {
    border-radius: 15px;
  }
  .reviews-gallery-2.reviews-gallery .card-container__icon {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 75px;
    height: 75px;
    border-radius: 12px;
    position: absolute;
    z-index: 1;
  }
  .reviews-gallery-2.reviews-gallery .card-container__icon svg {
    width: 18px;
    height: 18px;
  }
}
.reviews-gallery-2.reviews-gallery .card-container__image {
  position: relative;
}
.reviews-gallery-2.reviews-gallery .card-container__image::after {
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  height: 265px;
  background: linear-gradient(220.68deg, rgba(68, 68, 68, 0) 48.77%, rgba(48, 48, 48, 0.3) 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  opacity: 0;
  -webkit-transition: opcity 0.2s;
  transition: opcity 0.2s;
}
.reviews-gallery-2.reviews-gallery .card-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  border-radius: 8px;
  position: relative;
  display: block;
}

.reviews-gallery__title {
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.84px;
  font-weight: 700;
}
@media (min-width: 1209px) {
  .reviews-gallery__title {
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: -0.96px;
    font-weight: 600;
  }
}
@media (min-width: 1900px) {
  .reviews-gallery__title {
    font-size: 45px;
    line-height: 1.2;
    letter-spacing: -1.35px;
    font-weight: 600;
  }
}
.reviews-gallery__content {
  position: relative;
}
.reviews-gallery__slider-nav.owl-nav {
  position: absolute;
  right: 0;
  top: 0%;
  width: auto;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: none;
  pointer-events: none;
}
@media (min-width: 1209px) {
  .reviews-gallery__slider-nav.owl-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (min-width: 1900px) {
  .reviews-gallery__slider-nav.owl-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.reviews-gallery__slider-nav.owl-nav .owl-prev {
  background-color: #9b1ec2;
  width: 60px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  pointer-events: all;
}
@media (min-width: 1209px) {
  .reviews-gallery__slider-nav.owl-nav .owl-prev {
    margin-right: 10px;
    padding: 20px !important;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
  }
  .reviews-gallery__slider-nav.owl-nav .owl-prev:hover {
    background-color: #7e1a9f;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}
@media (min-width: 1900px) {
  .reviews-gallery__slider-nav.owl-nav .owl-prev {
    margin-right: 10px;
    padding: 20px !important;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
  }
}
.reviews-gallery__slider-nav.owl-nav .owl-prev i {
  color: #fff;
}
.reviews-gallery__slider-nav.owl-nav .owl-next {
  background-color: #9b1ec2;
  width: 60px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  pointer-events: all;
}
@media (min-width: 1209px) {
  .reviews-gallery__slider-nav.owl-nav .owl-next {
    padding: 20px !important;
    border-bottom-right-radius: 8px;
    border-top-right-radius: 8px;
  }
  .reviews-gallery__slider-nav.owl-nav .owl-next:hover {
    background-color: #7e1a9f;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}
@media (min-width: 1900px) {
  .reviews-gallery__slider-nav.owl-nav .owl-next {
    padding: 20px !important;
    border-bottom-right-radius: 8px;
    border-top-right-radius: 8px;
  }
}
.reviews-gallery__slider-nav.owl-nav .owl-next i {
  color: #fff;
}
.reviews-gallery__slider-nav.owl-nav .owl-next,
.reviews-gallery__slider-nav.owl-nav .owl-prev {
  cursor: pointer;
}
.reviews-gallery__slider.owl-carousel {
  position: relative;
}
.reviews-gallery__slider.owl-carousel .owl-stage-outer {
  overflow: visible;
}
@media (min-width: 1209px) {
  .reviews-gallery__slider.owl-carousel .owl-stage-outer {
    overflow: hidden;
  }
}
.reviews-gallery__slider.owl-carousel .owl-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 20px;
  gap: 5px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .reviews-gallery__slider.owl-carousel .owl-dots {
    gap: 7px;
  }
}
@media (min-width: 1209px) {
  .reviews-gallery__slider.owl-carousel .owl-dots {
    display: none;
  }
}
.reviews-gallery__slider.owl-carousel .owl-dots .owl-dot {
  width: 7px;
  height: 7px;
  background: rgba(156, 30, 194, 0.3);
  border-radius: 50%;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}
.reviews-gallery__slider.owl-carousel .owl-dots .owl-dot.active {
  background: #9b1ec2;
}
@media (min-width: 768px) {
  .reviews-gallery__slider.owl-carousel .owl-dots .owl-dot {
    width: 10px;
    height: 10px;
  }
}
.reviews-gallery .card-container {
  width: 282px;
  height: 397px;
  padding: 13px 13px 14px;
  overflow: hidden;
  border: 1px solid #e3e3e3;
  border-radius: 15px;
  position: relative;
  cursor: pointer;
  -webkit-transition: border 0.2s;
  transition: border 0.2s;
}
.reviews-gallery .card-container__icon {
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 75px;
  height: 75px;
  background: #9b1ec2;
  border-radius: 12px;
  position: absolute;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.reviews-gallery .card-container__icon svg {
  width: 18px;
  height: 18px;
}
@media (min-width: 1209px) {
  .reviews-gallery .card-container:hover {
    border: 1px solid #464646;
  }
  .reviews-gallery .card-container:hover .card-container__icon {
    opacity: 1;
  }
  .reviews-gallery .card-container:hover .card-container__image::after {
    opacity: 1;
  }
}
@media (min-width: 1209px) {
  .reviews-gallery .card-container {
    border-radius: 15px;
  }
  .reviews-gallery .card-container__icon {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 75px;
    height: 75px;
    border-radius: 12px;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 1;
  }
  .reviews-gallery .card-container__icon svg {
    width: 18px;
    height: 18px;
  }
}
@media (min-width: 1900px) {
  .reviews-gallery .card-container {
    border-radius: 15px;
  }
  .reviews-gallery .card-container__icon {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 75px;
    height: 75px;
    border-radius: 12px;
    position: absolute;
    z-index: 1;
  }
  .reviews-gallery .card-container__icon svg {
    width: 18px;
    height: 18px;
  }
}
.reviews-gallery .card-container__image {
  position: relative;
}
.reviews-gallery .card-container__image::after {
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  height: 265px;
  background: linear-gradient(220.68deg, rgba(68, 68, 68, 0) 48.77%, rgba(48, 48, 48, 0.3) 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  opacity: 0;
  -webkit-transition: opcity 0.2s;
  transition: opcity 0.2s;
}
.reviews-gallery .card-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  border-radius: 8px;
  position: relative;
  display: block;
}

.info-block.info-block-4 h3 {
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -0.96px;
  font-weight: 600;
  margin-top: 32px;
}
@media (min-width: 1209px) {
  .info-block.info-block-4 h3 {
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: -0.72px;
    font-weight: 700;
  }
}
@media (min-width: 1900px) {
  .info-block.info-block-4 h3 {
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: -0.96px;
    font-weight: 600;
  }
}
.info-block.info-block-4 p {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
}
@media (min-width: 1209px) {
  .info-block.info-block-4 p {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
  }
}
@media (min-width: 1900px) {
  .info-block.info-block-4 p {
    font-size: 18px;
    line-height: 1.5;
    font-weight: 400;
  }
}
.info-block.info-block-reverse img {
  float: right;
  margin-right: 0;
  margin-left: 20px;
}

.info-block + .spacer {
  clear: both;
}
.info-block.info-block-reverse img {
  float: right;
}
.info-block picture {
  position: relative;
}
.info-block picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  border-radius: 10px;
  display: block;
  float: left;
  width: 100%;
  height: 244px;
  margin-right: 20px;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .info-block picture img {
    width: 50%;
    height: 366px;
  }
}
@media (min-width: 1209px) {
  .info-block picture img {
    width: 33.33%;
    height: 100%;
  }
}
@media (min-width: 1900px) {
  .info-block picture img {
    width: 33.33%;
  }
}
.info-block h2 {
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -0.96px;
  font-weight: 700;
  margin-top: 20px;
}
@media (min-width: 1900px) {
  .info-block h2 {
    font-size: 45px;
    line-height: 1.2;
    letter-spacing: -1.35px;
    font-weight: 600;
  }
}
.info-block h2:first-of-type {
  margin-top: 0;
}
.info-block h2 + p, .info-block h2 + ul, .info-block h2 + ol {
  margin-top: 20px;
}
.info-block h2 span {
  color: #9b1ec2;
}
.info-block p {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
}
@media (min-width: 1209px) {
  .info-block p {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
  }
}
@media (min-width: 1900px) {
  .info-block p {
    font-size: 18px;
    line-height: 1.5;
    font-weight: 400;
  }
}
.info-block p.combo-title {
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -0.96px;
  font-weight: 700;
}
@media (min-width: 1900px) {
  .info-block p.combo-title {
    font-size: 45px;
    line-height: 1.2;
    letter-spacing: -1.35px;
    font-weight: 600;
  }
}
.info-block p:nth-of-type(2) {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
}
@media (min-width: 1209px) {
  .info-block p:nth-of-type(2) {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
  }
}
@media (min-width: 1900px) {
  .info-block p:nth-of-type(2) {
    font-size: 18px;
    line-height: 1.5;
    font-weight: 400;
  }
}
.info-block p + p, .info-block p + ul, .info-block p + ol {
  margin-top: 20px;
}
.info-block h3 {
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -0.96px;
  font-weight: 600;
  margin-top: 32px;
}
@media (min-width: 1209px) {
  .info-block h3 {
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: -0.72px;
    font-weight: 700;
  }
}
@media (min-width: 1900px) {
  .info-block h3 {
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: -0.96px;
    font-weight: 600;
  }
}
.info-block h3 + p, .info-block h3 + ul, .info-block h3 + ol {
  margin-top: 20px;
}
.info-block h4 {
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.72px;
  font-weight: 700;
  margin-top: 32px;
}
@media (min-width: 1900px) {
  .info-block h4 {
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: -0.72px;
    font-weight: 700;
  }
}
.info-block h4 + p, .info-block h4 + ul, .info-block h4 + ol {
  margin-top: 20px;
}
.info-block ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}
@media (min-width: 1900px) {
  .info-block ul {
    gap: 10px;
  }
}
.info-block ul + p, .info-block ul + ul, .info-block ul + ol {
  margin-top: 20px;
}
.info-block ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 22px;
  position: relative;
  padding-left: 20px;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
}
@media (min-width: 1209px) {
  .info-block ul li {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
  }
}
@media (min-width: 1900px) {
  .info-block ul li {
    font-size: 18px;
    line-height: 1.5;
    font-weight: 400;
  }
}
.info-block ul li::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #834397;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 10px;
}
.info-block ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  counter-reset: count;
  margin-top: 20px;
}
.info-block ol + p, .info-block ol + ul, .info-block ol + ol {
  margin-top: 20px;
}
.info-block ol li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 22px;
  position: relative;
  padding-left: 40px;
  counter-increment: count;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
}
@media (min-width: 1209px) {
  .info-block ol li {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
  }
}
@media (min-width: 1900px) {
  .info-block ol li {
    font-size: 18px;
    line-height: 1.5;
    font-weight: 400;
  }
}
.info-block ol li::before {
  content: "0" counter(count);
  color: #834397;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 20px;
  line-height: 135%;
  font-weight: 700;
  width: 28px;
  height: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.info-block blockquote {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
  margin-top: 32px;
  clear: both;
}
@media (min-width: 1209px) {
  .info-block blockquote {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
  }
}
@media (min-width: 1900px) {
  .info-block blockquote {
    font-size: 18px;
    line-height: 1.5;
    font-weight: 400;
  }
}

.section-header {
  color: #000;
  width: 100%;
  margin-bottom: 28px;
  display: block;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.84px;
  font-weight: 700;
  text-decoration: none !important;
}
@media (min-width: 1209px) {
  .section-header {
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: -0.96px;
    font-weight: 600;
    margin-bottom: 30px;
  }
  .section-header:hover span {
    text-decoration: underline;
  }
}
@media (min-width: 1900px) {
  .section-header {
    font-size: 45px;
    line-height: 1.2;
    letter-spacing: -1.35px;
    font-weight: 600;
    margin-bottom: 68px;
  }
}

.accent-text {
  color: #9b1ec2;
}

.work-card {
  background: #261f2a;
  border-radius: 8px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  min-height: 250px;
  position: relative;
  height: 100%;
}
@media (min-width: 1209px) {
  .work-card {
    min-height: unset;
  }
  .work-card:hover .card-image img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  .work-card:hover .card-title {
    text-decoration: none;
    color: #9a3697;
  }
}
@media (min-width: 1209px) and (min-width: 431px) {
  .work-card:hover .card-title .def-mobile {
    display: none;
  }
}
@media (min-width: 1209px) {
  .work-card:hover .card-button {
    -webkit-box-shadow: none;
    box-shadow: none;
    background: -webkit-gradient(linear, left top, left bottom, from(#790d9a), to(#9a3697));
    background: linear-gradient(180deg, #790d9a 0%, #9a3697 100%);
    text-decoration: none;
  }
  .work-card:hover:active .card-button {
    -webkit-transform: translateY(3px);
    transform: translateY(3px);
  }
}
@media (min-width: 1900px) {
  .work-card {
    min-height: unset;
  }
}

.card-image {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 150px;
  flex: 0 0 150px;
  width: 150px;
  overflow: hidden;
  display: none;
}
@media (min-width: 370px) {
  .card-image {
    display: block;
  }
}
@media (min-width: 768px) {
  .card-image {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 250px;
    flex: 0 0 250px;
    width: 250px;
  }
}
@media (min-width: 1209px) {
  .card-image {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 250px;
    flex: 0 0 250px;
    width: 250px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
}
@media (min-width: 1900px) {
  .card-image {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 300px;
    flex: 0 0 300px;
    width: 300px;
  }
}
.card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}

.card-content {
  padding: 22px 15px 22px 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
@media (min-width: 768px) {
  .card-content {
    padding: 30px;
  }
}
@media (min-width: 1209px) {
  .card-content {
    padding: 30px;
  }
}
@media (min-width: 1900px) {
  .card-content {
    padding: 30px;
  }
}

.card-title {
  color: #fff;
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: -0.66px;
  font-weight: 600;
  word-break: break-word;
}
.card-title::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
@media (min-width: 768px) {
  .card-title {
    margin-bottom: 18px;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 700;
  }
}
@media (min-width: 1209px) {
  .card-title {
    margin-bottom: 18px;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 700;
  }
}
@media (min-width: 1900px) {
  .card-title {
    margin-bottom: 18px;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 700;
  }
}
@media (min-width: 431px) {
  .card-title .def-mobile {
    display: none;
  }
}

.card-description {
  color: #cbcbcb;
  margin-bottom: 10px;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 400;
}
@media (min-width: 768px) {
  .card-description {
    margin-bottom: 38px;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
  }
}
@media (min-width: 1209px) {
  .card-description {
    margin-bottom: 38px;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
  }
}
@media (min-width: 1900px) {
  .card-description {
    margin-bottom: 38px;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
  }
}

.card-button {
  background: transparent;
  color: #dc96f1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
  -webkit-transition: unset;
  transition: unset;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
  margin-top: auto;
  pointer-events: none;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 12px;
}
.card-button svg {
  width: 13px;
  height: 13px;
  stroke: #dc96f1;
}
@media (min-width: 768px) {
  .card-button {
    color: #fff;
    border-radius: 8px;
    -webkit-box-shadow: inset 0 0 0 2px #a530e4;
    box-shadow: inset 0 0 0 2px #a530e4;
    padding: 14px 26px;
    gap: 12px;
    font: 700 14px/1 "Manrope", sans-serif, -apple-system;
  }
  .card-button svg {
    width: 13px;
    height: 13px;
    stroke: #fff;
  }
  .card-button:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
    background: -webkit-gradient(linear, left top, left bottom, from(#790d9a), to(#9a3697));
    background: linear-gradient(180deg, #790d9a 0%, #9a3697 100%);
    text-decoration: none;
  }
}
@media (min-width: 1209px) {
  .card-button {
    color: #fff;
    border-radius: 8px;
    padding: 14px 26px;
    gap: 12px;
    font: 700 14px/1 "Manrope", sans-serif, -apple-system;
  }
  .card-button svg {
    width: 13px;
    height: 13px;
    stroke: #fff;
  }
  .card-button:hover {
    background: -webkit-gradient(linear, left top, left bottom, from(#790d9a), to(#9a3697));
    background: linear-gradient(180deg, #790d9a 0%, #9a3697 100%);
  }
}
@media (min-width: 1900px) {
  .card-button {
    color: #fff;
    border-radius: 8px;
    padding: 18px 26px;
    gap: 12px;
    font: 700 16px/1 "Manrope", sans-serif, -apple-system;
  }
  .card-button svg {
    width: 13px;
    height: 13px;
    stroke: #fff;
  }
}

@media (min-width: 1209px) {
  .steps .container {
    background-color: #f4f4f4;
    border-radius: 8px;
    padding: 60px 110px;
  }
}
.steps__title {
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.84px;
  font-weight: 700;
}
@media (min-width: 1209px) {
  .steps__title {
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: -0.96px;
    font-weight: 600;
  }
}
@media (min-width: 1900px) {
  .steps__title {
    font-size: 45px;
    line-height: 1.2;
    letter-spacing: -1.35px;
    font-weight: 600;
  }
}
.steps__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
}
@media (min-width: 1209px) {
  .steps__card:hover {
    text-decoration: none;
  }
  .steps__card:hover .steps__name {
    text-decoration: none;
  }
  .steps__card:hover .steps__num {
    background-color: #712b87;
    color: #fff;
  }
}
.steps__icon-wrapper {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  height: auto;
}
@media (min-width: 1209px) {
  .steps__icon-wrapper {
    height: 200px;
  }
}
.steps__icon-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.steps__num {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #fff;
  padding: 9px 11px;
  font-weight: 600;
  color: #712b87;
  border-top-right-radius: 8px;
  font-size: 18px;
}
@media (min-width: 1209px) {
  .steps__num {
    font-size: 28px;
    line-height: 110%;
    padding: 10px 13px;
  }
}
.steps__name {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
}
.steps__name::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
@media (min-width: 1209px) {
  .steps__name {
    font-size: 22px;
    line-height: 1.35;
    font-weight: 600;
  }
}

.catalog-container {
  position: relative;
  margin: 0 auto;
}

.catalog-content {
  position: relative;
}

.header-background {
  position: relative;
  width: 100%;
}

.table-section {
  position: relative;
  width: 100%;
}

.table-wrapper {
  position: relative;
}

@media (min-width: 1024px) {
  .table-container .scroll-wrapper .scrollbar-rail {
    display: none;
  }
}

.product-table {
  width: 1087px;
  border-collapse: collapse;
  background-color: #ffffff;
  border-radius: 15px 15px 0 0;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .product-table {
    width: 100%;
  }
}
@media (min-width: 1900px) {
  .product-table {
    width: 100%;
  }
}
.product-table thead {
  background-color: #f7f6f7;
}
.product-table thead th {
  color: #712b87;
  text-align: left;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
  padding: 20px;
}
@media (min-width: 1209px) {
  .product-table thead th {
    padding: 20px;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 600;
    border-right: 1px solid #e0e0e0;
  }
}
@media (min-width: 1900px) {
  .product-table thead th {
    padding: 24px;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 600;
    border-right: 1px solid #e0e0e0;
  }
}
.product-table thead th:last-child {
  border-right: none;
}
.product-table tbody tr {
  border-bottom: 1px solid #f7f6f7;
}
.product-table tbody tr:nth-child(even) {
  background-color: #f7f6f7;
}
.product-table tbody tr.hidden {
  display: none;
}
.product-table tbody tr td {
  padding: 20px;
  color: #535255;
  text-align: left;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
}
@media (min-width: 1209px) {
  .product-table tbody tr td {
    padding: 12px;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 600;
    border-right: 1px solid #e0e0e0;
  }
}
@media (min-width: 1900px) {
  .product-table tbody tr td {
    padding: 16px;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 600;
    border-right: 1px solid #e0e0e0;
  }
}
.product-table tbody tr td:last-child {
  border-right: none;
}
.product-table tbody tr .action-button {
  padding: 12px 24px;
  background-color: transparent;
  border-radius: 4px;
  color: #ab29d4;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
}
.product-table tbody tr .action-button:hover {
  background-color: rgba(160, 12, 207, 0.1);
}

.action-section {
  position: relative;
  width: 100%;
  background-color: #261f2a;
  border-radius: 8px;
  padding: 35px 20px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 38px;
  margin-top: 43px;
}
@media (min-width: 1209px) {
  .action-section {
    border-radius: 8px;
    padding: 20px 20px 22px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
  }
}
@media (min-width: 1900px) {
  .action-section {
    border-radius: 8px;
    padding: 20px 20px 22px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
  }
}
.action-section__text {
  color: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  padding-left: 84px;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
}
@media (min-width: 1209px) {
  .action-section__text {
    padding-left: unset;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 600;
  }
}
@media (min-width: 1900px) {
  .action-section__text {
    padding-left: unset;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    line-height: 1.35;
    font-weight: 600;
  }
}
.action-section__text svg {
  width: 61px;
  height: 60px;
  display: inline;
  position: absolute;
  left: 0;
}
@media (min-width: 1209px) {
  .action-section__text svg {
    width: 58px;
    height: 57px;
    position: relative;
    top: unset;
    left: unset;
  }
}
@media (min-width: 1900px) {
  .action-section__text svg {
    width: 58px;
    height: 57px;
    position: relative;
    top: unset;
    left: unset;
  }
}
.action-section__text span.desktop {
  display: none;
}
@media (min-width: 1209px) {
  .action-section__text span.desktop {
    display: contents;
  }
}
.action-section__text span.mobile {
  display: contents;
}
@media (min-width: 1209px) {
  .action-section__text span.mobile {
    display: none;
  }
}

.button-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
}
.button-group .button {
  width: 100%;
}
@media (min-width: 768px) {
  .button-group {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 20px;
    width: auto;
  }
  .button-group .button {
    width: auto;
  }
}
@media (min-width: 1209px) {
  .button-group {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 20px;
    width: auto;
  }
  .button-group .button {
    width: auto;
  }
}
@media (min-width: 1900px) {
  .button-group {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 30px;
    width: auto;
  }
  .button-group .button {
    width: auto;
  }
}

.additional-brands {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  padding: 20px;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(217, 217, 217, 0.8);
  border-radius: 8px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  backdrop-filter: blur(2px);
}
.additional-brands__inside.button.button_border {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px 6px;
  padding: 12px 20px 14px;
  position: relative;
  background-color: #ffffff;
  border-radius: 34px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-family: "Manrope", sans-serif, -apple-system;
  position: relative;
}
@media (min-width: 768px) {
  .additional-brands__inside.button.button_border {
    gap: 6px 12px;
  }
}
@media (min-width: 1209px) {
  .additional-brands__inside.button.button_border:hover svg {
    stroke: white;
  }
  .additional-brands__inside.button.button_border:hover a {
    color: #fff;
    text-decoration: none;
  }
}
@media (min-width: 1900px) {
  .additional-brands__inside.button.button_border {
    border: none;
    border-radius: 34px;
    gap: 6px 18px;
    padding: 12px 42px 14px;
  }
}
.additional-brands__inside.button.button_border svg {
  width: 20px;
  height: 9px;
  stroke: #9a1dc2;
  fill: transparent;
}
.additional-brands svg {
  width: 20px;
  height: 9px;
  stroke: #9a1dc2;
  fill: transparent;
}
.additional-brands__text {
  font-weight: 600;
  color: #9a1dc2;
  font-size: 12px;
  line-height: 16px;
}
.additional-brands__text::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
@media (min-width: 450px) {
  .additional-brands__text {
    font-size: 14px;
    line-height: 1.5;
    font-weight: 600;
  }
}
@media (min-width: 1209px) {
  .additional-brands__text {
    font-size: 16px;
    line-height: 21.4px;
  }
}
@media (min-width: 1900px) {
  .additional-brands__text {
    font-size: 20px;
    line-height: 21.4px;
  }
}

.price-update {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
}
.price-update .price-info {
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.84px;
  font-weight: 700;
}
@media (min-width: 1209px) {
  .price-update .price-info {
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: -0.96px;
    font-weight: 600;
  }
}
@media (min-width: 1900px) {
  .price-update .price-info {
    font-size: 45px;
    line-height: 1.2;
    letter-spacing: -1.35px;
    font-weight: 600;
  }
}
.price-update .price-info span {
  color: #a00ccf;
}
.price-update .file-icon {
  width: 63px;
  height: 79px;
  display: none;
}
@media (min-width: 1209px) {
  .price-update .file-icon {
    display: block;
    width: 53px;
    height: 69px;
  }
}
@media (min-width: 1900px) {
  .price-update .file-icon {
    display: block;
    width: 63px;
    height: 79px;
  }
}

.tech__title {
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -0.96px;
  font-weight: 700;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .tech__title {
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: -0.96px;
    font-weight: 600;
    margin-bottom: 30px;
  }
}
@media (min-width: 1900px) {
  .tech__title {
    font-size: 45px;
    line-height: 1.2;
    letter-spacing: -1.35px;
    font-weight: 600;
    margin-bottom: 60px;
  }
}
.tech_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
@media (min-width: 1024px) {
  .tech_item {
    gap: 20px;
  }
}
@media (min-width: 1209px) {
  .tech_item:hover .tech_item--image::after {
    opacity: 1;
  }
  .tech_item:hover .tech_item--title {
    color: #9b1ec2;
  }
}
@media (min-width: 1900px) {
  .tech_item {
    gap: 30px;
  }
}
.tech_item--image {
  width: 100%;
  height: 250px;
  position: relative;
}
@media (min-width: 1024px) {
  .tech_item--image {
    height: 200px;
  }
}
@media (min-width: 1900px) {
  .tech_item--image {
    height: 391px;
  }
}
.tech_item--image::after {
  content: "Подробнее";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(155, 30, 194, 0.3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  border-radius: 15px;
  opacity: 0;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 700;
}
@media (min-width: 1024px) {
  .tech_item--image::after {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
  }
}
@media (min-width: 1900px) {
  .tech_item--image::after {
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: -0.72px;
    font-weight: 700;
  }
}
.tech_item--image img {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.tech_item--title {
  font-size: 22px;
  line-height: 1.2;
  font-weight: 700;
  text-decoration: none !important;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
@media (min-width: 1024px) {
  .tech_item--title {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
  }
}
@media (min-width: 1900px) {
  .tech_item--title {
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: -0.72px;
    font-weight: 700;
  }
}
.tech_item--title::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.tech.tech-2 .tech_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 1024px) {
  .tech.tech-2 .tech_item {
    gap: 20px;
  }
}
@media (min-width: 1900px) {
  .tech.tech-2 .tech_item {
    gap: 30px;
  }
}
.tech.tech-2 .tech_item--image {
  width: 100%;
  height: 391px;
}
@media (min-width: 1024px) {
  .tech.tech-2 .tech_item--image {
    height: 250px;
  }
}
@media (min-width: 1209px) {
  .tech.tech-2 .tech_item--image {
    height: 300px;
  }
}
@media (min-width: 1900px) {
  .tech.tech-2 .tech_item--image {
    height: 391px;
  }
}
.tech.tech-2 .tech_item--image img {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.tech.tech-2 .tech_item--title {
  font-size: 22px;
  line-height: 1.2;
  font-weight: 700;
}
@media (min-width: 1024px) {
  .tech.tech-2 .tech_item--title {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
  }
}
@media (min-width: 1900px) {
  .tech.tech-2 .tech_item--title {
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: -0.72px;
    font-weight: 700;
  }
}

.tech-links .tech_item {
  position: relative;
}
@media (min-width: 1209px) {
  .tech-links .tech_item:hover .tech_item--title {
    color: #9b1ec2;
  }
}
.tech-links .tech_item--title::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  content: "";
  width: 100%;
  height: 100%;
}
.equipment-list-container .main-heading-text-style {
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.84px;
  font-weight: 700;
  margin-bottom: 30px;
}
@media (min-width: 1209px) {
  .equipment-list-container .main-heading-text-style {
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: -0.96px;
    font-weight: 600;
    margin-bottom: 30px;
  }
}
@media (min-width: 1900px) {
  .equipment-list-container .main-heading-text-style {
    font-size: 45px;
    line-height: 1.2;
    letter-spacing: -1.35px;
    font-weight: 600;
    margin-bottom: 85px;
  }
}
@media (max-width: 1208px) {
  .equipment-list-container .row-scroll {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}
.equipment-list-container .row-scroll .col-11.hidden {
  display: none !important;
}
.equipment-list-container .show-more {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.equipment-list-container .show-more:hidden {
  display: none !important;
}
.equipment-list-container .equipment-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border-radius: 8px;
  overflow: hidden;
  background-color: #f7f7f7;
  position: relative;
}
@media (min-width: 1209px) {
  .equipment-list-container .equipment-card:hover {
    -webkit-box-shadow: 0 0 0 1px #9b1ec2;
    box-shadow: 0 0 0 1px #9b1ec2;
  }
  .equipment-list-container .equipment-card:hover .machine-card::before {
    opacity: 1;
  }
  .equipment-list-container .equipment-card:hover .machine-card::after {
    opacity: 1;
  }
  .equipment-list-container .equipment-card:hover .rental-card a.product-title {
    color: #9b1ec2;
  }
  .equipment-list-container .equipment-card:hover .rental-card a.product-title::before {
    opacity: 1;
  }
  .equipment-list-container .equipment-card:hover .button-more {
    text-decoration: none;
    color: rgb(255, 255, 255);
    background: -webkit-gradient(linear, left top, left bottom, from(rgb(155, 0, 204)), to(rgb(205, 45, 255)));
    background: linear-gradient(180deg, rgb(155, 0, 204), rgb(205, 45, 255) 100%);
  }
  .equipment-list-container .equipment-card:hover .button-more svg {
    fill: transparent;
    stroke: white;
  }
}
.equipment-list-container .equipment-card .machine-card {
  position: relative;
  height: 198px;
}
@media (min-width: 768px) {
  .equipment-list-container .equipment-card .machine-card {
    height: 298px;
  }
}
@media (min-width: 1900px) {
  .equipment-list-container .equipment-card .machine-card {
    height: 314px;
  }
}
.equipment-list-container .equipment-card .machine-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: -webkit-filter 0.3s ease;
  transition: -webkit-filter 0.3s ease;
  transition: filter 0.3s ease;
  transition: filter 0.3s ease, -webkit-filter 0.3s ease;
}
.equipment-list-container .equipment-card .machine-card::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  background-color: rgba(156, 30, 194, 0.3);
}
.equipment-list-container .equipment-card .machine-card::before {
  -webkit-transition: opacity 0.2s, -webkit-filter 0.2s;
  transition: opacity 0.2s, -webkit-filter 0.2s;
  transition: opacity 0.2s, filter 0.2s;
  transition: opacity 0.2s, filter 0.2s, -webkit-filter 0.2s;
  opacity: 0;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  pointer-events: none;
  z-index: 1;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  content: "Подробнее";
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.8px;
  color: white;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.equipment-list-container .equipment-card .machine-card .product-card-container {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 6px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  position: absolute;
  left: 20px;
  top: 20px;
}
.equipment-list-container .equipment-card .machine-card .product-card-container .flex-box-card {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 5px 12px 7px;
  background: #3b3742;
  border-radius: 5px;
  z-index: 1;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
  text-decoration: none !important;
}
@media (min-width: 1209px) {
  .equipment-list-container .equipment-card .machine-card .product-card-container .flex-box-card:hover {
    background: #9b1ec2;
  }
}
.equipment-list-container .equipment-card .machine-card .product-card-container .highlighted-text {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  padding: 0;
  margin: 0;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 400;
  color: white;
}
@media (min-width: 1900px) {
  .equipment-list-container .equipment-card .machine-card .product-card-container .highlighted-text {
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
  }
}
.equipment-list-container .equipment-card .equipment-card .machine-card {
  position: relative;
}
.equipment-list-container .equipment-card .equipment-card-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 22px;
  padding: 20px;
}
@media (min-width: 1900px) {
  .equipment-list-container .equipment-card .equipment-card-container {
    gap: 22px;
    padding: 40px;
  }
}
.equipment-list-container .equipment-card .equipment-card-container .rental-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
}
.equipment-list-container .equipment-card .equipment-card-container .rental-card .product-title {
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.72px;
  font-weight: 700;
  color: black;
  text-decoration: none !important;
}
@media (min-width: 1900px) {
  .equipment-list-container .equipment-card .equipment-card-container .rental-card .product-title {
    font-size: 32px;
    font-weight: 600;
    letter-spacing: -0.96px;
  }
}
.equipment-list-container .equipment-card .equipment-card-container .rental-card .product-title::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
.equipment-list-container .equipment-card .equipment-card-container .rental-card .purple-text-heading {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 600;
  color: #9b1ec2;
}
.equipment-list-container .equipment-card .equipment-card-container .buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 20px;
}
.equipment-list-container .equipment-card .equipment-card-container .buttons .button-more {
  pointer-events: none;
}
.equipment-list-container .equipment-card .equipment-card-container .buttons .button-more svg {
  fill: transparent;
  stroke: white;
}
.equipment-list-container .equipment-card .equipment-card-container .buttons .vibrant-button {
  position: relative;
  z-index: 2;
}
.equipment-list-container .equipment-card .equipment-card-container .buttons .vibrant-button {
  display: none;
}
@media (min-width: 450px) {
  .equipment-list-container .equipment-card .equipment-card-container .buttons .vibrant-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.equipment-list-container .equipment-card .equipment-card-container .data-panel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 1;
}
.equipment-list-container .equipment-card .equipment-card-container .data-panel .flex-row-with-gap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.equipment-list-container .equipment-card .equipment-card-container .data-panel .flex-row-with-gap .separator-line {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
}
.equipment-list-container .equipment-card .equipment-card-container .data-panel .flex-row-with-gap p {
  font-size: 12px;
  line-height: 1.35;
  font-weight: 400;
  color: black;
}
@media (min-width: 1900px) {
  .equipment-list-container .equipment-card .equipment-card-container .data-panel .flex-row-with-gap p {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
  }
}
.equipment-list-container .equipment-card .equipment-card-container .button {
  max-width: 220px;
}

.title-page {
  padding-bottom: 50px;
}
@media (min-width: 1209px) {
  .title-page {
    padding-bottom: 30px;
  }
}
@media (min-width: 1900px) {
  .title-page {
    padding-bottom: 50px;
  }
}
.title-page .bg-gray {
  background-color: #f7f6f7;
  padding: 20px;
  margin-bottom: 0;
  position: relative;
}
@media (min-width: 1209px) {
  .title-page .bg-gray {
    padding: 20px 30px;
    margin-bottom: 0;
  }
}
@media (min-width: 1900px) {
  .title-page .bg-gray {
    padding: 30px 40px;
    margin-bottom: 0;
  }
}
.title-page .bg-gray::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -13px;
  width: 13px;
  height: 13px;
  border: 13px solid transparent;
  border-left: 13px solid #f7f6f7;
  border-top: 13px solid #f7f6f7;
}
@media (min-width: 1209px) {
  .title-page .bg-gray::before {
    bottom: -27px;
    width: 27px;
    height: 27px;
    border: 20px solid transparent;
    border-left: 20px solid #f7f6f7;
    border-top: 20px solid #f7f6f7;
  }
}
@media (min-width: 1900px) {
  .title-page .bg-gray::before {
    bottom: -27px;
    width: 27px;
    height: 27px;
    border: 20px solid transparent;
    border-left: 20px solid #f7f6f7;
    border-top: 20px solid #f7f6f7;
  }
}
.title-page__title {
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -0.96px;
  font-weight: 700;
}
@media (min-width: 1209px) {
  .title-page__title {
    font-size: 45px;
    line-height: 1.2;
    letter-spacing: -1.35px;
    font-weight: 600;
  }
}
@media (min-width: 1900px) {
  .title-page__title {
    font-size: 65px;
    line-height: 1.2;
    letter-spacing: -3.25px;
    font-weight: 700;
  }
}
@media (min-width: 1900px) {
  .title-page__title span {
    white-space: nowrap;
  }
}
.title-page__subtitle {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
  margin-top: 16px;
}
@media (min-width: 1209px) {
  .title-page__subtitle {
    font-size: 18px;
    line-height: 1.5;
    font-weight: 400;
    margin-top: 30px;
  }
}
@media (min-width: 1900px) {
  .title-page__subtitle {
    font-size: 22px;
    line-height: 1.5;
    font-weight: 400;
  }
}
.title-page__info {
  display: none;
}
@media (min-width: 1209px) {
  .title-page__info {
    display: block;
  }
}
@media (min-width: 1209px) {
  .title-page__info--block {
    background-color: #f7f6f7;
    border-radius: 8px;
    padding: 10px;
  }
  .title-page__info--block .number {
    color: #9b1ec2;
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: -0.72px;
    font-weight: 700;
    margin-bottom: 5px;
  }
  .title-page__info--block .text {
    font-size: 12px;
    line-height: 1.35;
    font-weight: 400;
  }
}
@media (min-width: 1900px) {
  .title-page__info--block {
    background-color: #f7f6f7;
    border-radius: 8px;
    padding: 20px;
  }
  .title-page__info--block .number {
    color: #9b1ec2;
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: -0.96px;
    font-weight: 600;
    margin-bottom: 5px;
  }
  .title-page__info--block .text {
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
  }
}
.title-page__rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  display: none;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
@media (min-width: 1209px) {
  .title-page__rating {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 17px;
  }
}
@media (min-width: 1209px) {
  .title-page__rating {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
}
.title-page__rating .rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 17px;
}
.title-page__rating .rating .count {
  color: #a530e4;
}
@media (min-width: 1209px) {
  .title-page__rating .rating .count {
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: -0.72px;
    font-weight: 700;
  }
}
.title-page__rating .rating .star {
  cursor: pointer;
  opacity: 0.5;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.title-page__rating .rating .star.active {
  opacity: 1;
}
.title-page__rating .reviews {
  color: #979797;
}
@media (min-width: 1209px) {
  .title-page__rating .reviews {
    font-size: 18px;
    line-height: 1.5;
    font-weight: 400;
  }
}

.breadcrumb ol {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px 33px;
  width: auto;
  position: relative;
  padding: 2px 30px 4px 0;
}
.breadcrumb ol::before {
  content: "";
  position: absolute;
  width: 1000%;
  right: 0;
  height: 100%;
  background-color: #f7f6f7;
  z-index: -1;
  border-top-right-radius: 10px;
}
.breadcrumb li {
  position: relative;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 400;
}
.breadcrumb li::after {
  content: "→";
  position: absolute;
  right: -23px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 400;
}
.breadcrumb li:last-child::after {
  display: none;
}

.modal {
  display: none;
  position: fixed;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 100;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .modal {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.modal.modal-overlay {
  width: 100%;
  height: 100%;
  background: rgba(38, 31, 42, 0.8);
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  overflow-y: scroll;
  will-change: opacity, transform;
}
.modal.modal-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.modal-content {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  width: 100%;
  margin: 0 16px;
  height: auto;
  position: relative;
  cursor: default;
  margin-top: 47px;
}
@media (min-width: 768px) {
  .modal-content {
    max-width: 594px;
    padding: 30px 30px 46px;
    right: unset;
    bottom: unset;
    height: auto;
    margin: 20px 0;
  }
}
.modal-image {
  width: 173px;
  height: 156px;
  position: absolute;
  left: -55px;
  bottom: 1px;
}
@media (min-width: 768px) {
  .modal-image {
    width: 173px;
    height: 156px;
    position: absolute;
    left: -34px;
    bottom: 1px;
  }
}
.modal-image img {
  width: 100%;
  height: 100%;
}
.modal#recall-2 .modal-image {
  width: 173px;
  height: 156px;
  position: absolute;
  left: -20px;
  bottom: 1px;
}
@media (min-width: 768px) {
  .modal#recall-2 .modal-image {
    width: 173px;
    height: 156px;
    position: absolute;
    left: -30px;
    bottom: 1px;
  }
}
.modal#recall-2 .modal-image img {
  width: 100%;
  height: 100%;
}
.modal#recall-2 .modal-header__right {
  padding-left: 147px;
  padding-right: 30px;
}
.modal-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  min-height: 100px;
  position: relative;
  z-index: 1;
  margin-top: -20px;
  padding: 30px 0;
}
.modal-header::after {
  position: absolute;
  left: -20px;
  right: -20px;
  bottom: 0;
  content: "";
  height: 80%;
  width: calc(100% + 40px);
  z-index: -1;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(217, 217, 217, 0.5)), to(rgba(255, 255, 255, 0.5)));
  background: linear-gradient(0deg, rgba(217, 217, 217, 0.5) 0%, rgba(255, 255, 255, 0.5) 100%);
}
@media (min-width: 768px) {
  .modal-header::after {
    height: 60%;
    width: calc(100% + 60px);
    left: -30px;
    right: -30px;
  }
}
@media (min-width: 768px) {
  .modal-header {
    margin-top: -30px;
  }
}
.modal-header__right {
  padding-left: 117px;
  padding-right: 30px;
}
@media (min-width: 768px) {
  .modal-header__right {
    padding-left: 143px;
    padding-right: unset;
  }
}
.modal-title {
  font-weight: 700;
  font-size: 22px;
  line-height: 110%;
  letter-spacing: -0.03em;
  color: #261f2a;
  margin-bottom: 6px;
}
.modal-subtitle {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
}
.modal-body {
  margin-top: 20px;
}
.modal-close {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  position: absolute;
  right: 0px;
  top: 0;
  width: 60px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  z-index: 2;
}
@media (min-width: 768px) {
  .modal-close {
    right: 0px;
    top: 0;
    width: 60px;
    height: 60px;
  }
  .modal-close:hover {
    opacity: 0.4;
  }
}
.modal .form-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.modal .form-content .title {
  color: #fff;
  font-weight: 700;
  font-size: 22px;
  line-height: 110%;
  letter-spacing: -0.66px;
}
@media (min-width: 768px) {
  .modal .form-content .title {
    color: rgb(59, 55, 66);
    font-size: 28px;
    line-height: 110%;
    letter-spacing: -0.84px;
  }
}
.modal .form-content .subtitle {
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
  margin-top: 6px;
  margin-bottom: 26px;
}
@media (min-width: 768px) {
  .modal .form-content .subtitle {
    color: rgb(59, 55, 66);
    font-size: 18px;
    font-weight: 400;
    line-height: 135%;
  }
}

.modal#default .modal-header,
.modal#default-2 .modal-header,
.modal#default-calc .modal-header,
.modal#modal-jobs .modal-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  min-height: 100px;
  position: relative;
  z-index: 1;
  margin-top: -20px;
  padding: 30px 0;
}
.modal#default .modal-header::after,
.modal#default-2 .modal-header::after,
.modal#default-calc .modal-header::after,
.modal#modal-jobs .modal-header::after {
  position: absolute;
  left: -20px;
  right: -20px;
  bottom: 0;
  content: "";
  height: 80%;
  width: calc(100% + 40px);
  z-index: -1;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(217, 217, 217, 0.5)), to(rgba(255, 255, 255, 0.5)));
  background: linear-gradient(0deg, rgba(217, 217, 217, 0.5) 0%, rgba(255, 255, 255, 0.5) 100%);
}
@media (min-width: 768px) {
  .modal#default .modal-header::after,
  .modal#default-2 .modal-header::after,
  .modal#default-calc .modal-header::after,
  .modal#modal-jobs .modal-header::after {
    height: 60%;
    width: calc(100% + 60px);
    left: -30px;
    right: -30px;
  }
}
@media (min-width: 768px) {
  .modal#default .modal-header,
  .modal#default-2 .modal-header,
  .modal#default-calc .modal-header,
  .modal#modal-jobs .modal-header {
    margin-top: -30px;
  }
}
.modal#default .modal-header__right,
.modal#default-2 .modal-header__right,
.modal#default-calc .modal-header__right,
.modal#modal-jobs .modal-header__right {
  padding-left: 0px;
  padding-right: 30px;
}
@media (min-width: 768px) {
  .modal#default .modal-header__right,
  .modal#default-2 .modal-header__right,
  .modal#default-calc .modal-header__right,
  .modal#modal-jobs .modal-header__right {
    padding-left: 0;
    padding-right: unset;
  }
}

.modal#calc .modal-content {
  background-color: unset;
  padding: unset;
  max-width: unset;
  overflow: hidden;
}
@media (min-width: 1600px) {
  .modal#calc .modal-content {
    max-width: 1332px;
    min-height: 812px;
  }
}
.modal#calc .modal-close {
  color: #000;
}
@media (min-width: 768px) {
  .modal#calc .modal-close {
    color: #fff;
  }
}
.modal#calc .modal-body {
  margin-top: unset;
}
.modal#calc .modal-body-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0px;
}
@media (min-width: 768px) {
  .modal#calc .modal-body-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 5px;
  }
}
.modal#calc .modal-body-content__left {
  background-color: #fff;
  padding: 30px 20px;
  border-radius: 8px;
}
@media (min-width: 768px) {
  .modal#calc .modal-body-content__left {
    padding: 45px;
    background-color: #fff;
    border-radius: 8px;
    -webkit-box-shadow: 0 3px 0 0 rgba(58, 58, 58, 0.3);
    box-shadow: 0 3px 0 0 rgba(58, 58, 58, 0.3);
    min-height: 812px;
  }
}
.modal#calc .modal-body-content__right {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
  padding: 36px;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.3);
  background: #1c1222;
}
@media (min-width: 768px) {
  .modal#calc .modal-body-content__right {
    padding: 36px;
    border-radius: 8px;
    -webkit-box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.3);
    background: #1c1222;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 422px;
    flex: 0 0 422px;
  }
}
.modal#calc .modal-body-content__right--title {
  font-size: 26px;
  font-weight: 700;
  line-height: 110%;
  letter-spacing: -0.03em;
  margin-bottom: 26px;
}
@media (min-width: 768px) {
  .modal#calc .modal-body-content__right--title {
    font-size: 26px;
    font-weight: 700;
    line-height: 110%;
    letter-spacing: -0.03em;
    margin-bottom: 26px;
  }
}
.modal#calc .modal-body-content__right--info .info {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .modal#calc .modal-body-content__right--info .info {
    font-size: 18px;
    line-height: 1.5;
    font-weight: 400;
    margin-bottom: 16px;
  }
}
.modal#calc .modal-body-content__right--info .info span:last-child.empty {
  color: #999;
}
.modal#calc .modal-body-content__right--bottom {
  position: relative;
  margin-top: auto;
}
.modal#calc .modal-body-content__right--bottom::after {
  content: "";
  position: absolute;
  right: -36px;
  top: -166px;
  width: 385px;
  height: 333px;
  background-image: url("../img/svg/bg-3Block.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.modal#calc .modal-body-content__right--bottom .icon {
  width: 40px;
  height: 34px;
  margin-bottom: 22px;
}
.modal#calc .modal-body-content__right--bottom .title {
  font-size: 22px;
  line-height: 1.2;
  font-weight: 700;
  width: 185px;
  margin-bottom: 10px;
}
.modal#calc .modal-body-content__right--bottom .subtitle {
  color: #bfb9ca;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 400;
  width: 185px;
}
.modal#calc .modal-body-content__right--bottom .button {
  width: 185px;
  color: #fff;
  margin-top: 51px;
  margin-bottom: 14px;
}
.modal#calc .modal-body-content__right--bottom .image {
  position: absolute;
  pointer-events: none;
  width: 321px;
  height: 301px;
  right: -46px;
  bottom: -36px;
}
.modal#calc .modal-body-content__right--bottom .image img {
  width: 100%;
  height: 100%;
}
.modal#calc .modal-body-content .modal-test {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}
@media (min-width: 768px) {
  .modal#calc .modal-body-content .modal-test {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 26px;
    height: 100%;
  }
}
.modal#calc .modal-body-content .modal-test__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 20px;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.84px;
  font-weight: 700;
}
@media (min-width: 768px) {
  .modal#calc .modal-body-content .modal-test__title {
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: -0.96px;
    font-weight: 600;
    gap: 27px;
  }
}
.modal#calc .modal-body-content .modal-test__title .image {
  width: 107px;
  height: 138px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 107px;
  flex: 0 0 107px;
}
@media (min-width: 768px) {
  .modal#calc .modal-body-content .modal-test__title .image {
    width: 54px;
    height: 69px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 54px;
    flex: 0 0 54px;
  }
}
.modal#calc .modal-body-content .modal-test__title .image img {
  width: 100%;
  height: 100%;
}
.modal#calc .modal-body-content .modal-test .progress-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 768px) {
  .modal#calc .modal-body-content .modal-test .progress-bar {
    gap: 16px;
  }
}
.modal#calc .modal-body-content .modal-test .progress-bar__title {
  font-size: 16px;
  line-height: 107%;
  font-weight: 500;
}
@media (min-width: 768px) {
  .modal#calc .modal-body-content .modal-test .progress-bar__title {
    font-size: 20px;
    line-height: 107%;
    font-weight: 500;
  }
}
.modal#calc .modal-body-content .modal-test .progress-bar__line {
  background-color: #000;
  border-radius: 4px;
  width: 100%;
  height: 10px;
  position: relative;
}
@media (min-width: 768px) {
  .modal#calc .modal-body-content .modal-test .progress-bar__line {
    background-color: #000;
    border-radius: 4px;
    width: 100%;
    height: 16px;
    position: relative;
  }
}
.modal#calc .modal-body-content .modal-test .progress-bar__line-fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  background-color: #a530e4;
  border-radius: 4px;
  -webkit-transition: width 0.2s ease-in-out;
  transition: width 0.2s ease-in-out;
}
.modal#calc .modal-body-content .modal-test__steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
@media (min-width: 768px) {
  .modal#calc .modal-body-content .modal-test__steps {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 26px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
}
.modal#calc .modal-body-content .modal-test .step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
@media (min-width: 768px) {
  .modal#calc .modal-body-content .modal-test .step {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 26px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
}
.modal#calc .modal-body-content .modal-test .step .product-dimensions:last-child .product-dimensions__block {
  border-bottom: 1px dotted #535355;
}
.modal#calc .modal-body-content .modal-test .step .product-dimensions__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 18px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-top: 1px dotted #535355;
  padding-top: 16px;
  padding-bottom: 16px;
}
.modal#calc .modal-body-content .modal-test .step .product-dimensions__label {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
}
.modal#calc .modal-body-content .modal-test .step .product-dimensions__input-wrapper {
  position: relative;
  max-width: 107px;
}
.modal#calc .modal-body-content .modal-test .step .product-dimensions__input-wrapper input {
  background-color: #fff;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
}
.modal#calc .modal-body-content .modal-test .step .product-dimensions__input-wrapper:hover input {
  border-color: #9b1ec2;
}
.modal#calc .modal-body-content .modal-test .step .product-dimensions__controls {
  position: absolute;
  right: 6px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4px;
}
@media (min-width: 1209px) {
  .modal#calc .modal-body-content .modal-test .step .product-dimensions__controls button:hover svg .arrow-bg {
    fill: #9b1ec2;
  }
}
.modal#calc .modal-body-content .modal-test .step .product-dimensions__controls button svg {
  width: 20px;
  height: 20px;
}
.modal#calc .modal-body-content .modal-test .step .product-dimensions__controls button svg .arrow-bg {
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.modal#calc .modal-body-content .modal-test .step__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (min-width: 768px) {
  .modal#calc .modal-body-content .modal-test .step__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 20px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.modal#calc .modal-body-content .modal-test .step__title--number {
  border: 1px solid #9b1ec2;
  border-radius: 10px;
  padding: 6px 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 700;
  color: #9b1ec2;
}
.modal#calc .modal-body-content .modal-test .step__title--text {
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -0.96px;
  font-weight: 700;
}
@media (min-width: 768px) {
  .modal#calc .modal-body-content .modal-test .step__title--text {
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: -0.96px;
    font-weight: 600;
  }
}
.modal#calc .modal-body-content .modal-test .step__result {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  border-top: 1px dotted rgba(38, 31, 42, 0.8);
  padding-top: 20px;
}
.modal#calc .modal-body-content .modal-test .step__result--title {
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: -0.66px;
  font-weight: 600;
  max-width: 436px;
}
@media (min-width: 768px) {
  .modal#calc .modal-body-content .modal-test .step__result--title {
    font-size: 22px;
    line-height: 1.2;
    font-weight: 700;
    max-width: 436px;
  }
}
.modal#calc .modal-body-content .modal-test .step__result--content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}
.modal#calc .modal-body-content .modal-test .step__result--content .image {
  width: 91px;
  height: 128px;
  display: none;
}
@media (min-width: 768px) {
  .modal#calc .modal-body-content .modal-test .step__result--content .image {
    display: block;
  }
}
.modal#calc .modal-body-content .modal-test .step__result--content .image img {
  width: 100%;
  height: 100%;
}
.modal#calc .modal-body-content .modal-test .step__result--content .form {
  width: 100%;
}
.modal#calc .modal-body-content .modal-test .step__result--content .form .form-group.radio {
  overflow-x: scroll;
  width: 100vw;
  margin: 0 -36px 20px;
  padding: 0 36px 0 36px;
}
@media (min-width: 768px) {
  .modal#calc .modal-body-content .modal-test .step__result--content .form .form-group.radio {
    overflow: hidden;
    width: auto;
    margin: 0 0 20px;
    padding: unset;
  }
}
.modal#calc .modal-body-content .modal-test .step__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (min-width: 768px) {
  .modal#calc .modal-body-content .modal-test .step__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
}
.modal#calc .modal-body-content .modal-test .step__content--head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding-bottom: 17px;
  border-bottom: 1px dotted #535355;
}
.modal#calc .modal-body-content .modal-test .step__content--head__title {
  display: none;
}
@media (min-width: 768px) {
  .modal#calc .modal-body-content .modal-test .step__content--head__title {
    display: block;
    font-size: 12px;
    line-height: 1.35;
    font-weight: 400;
    color: #9b1ec2;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
  }
  .modal#calc .modal-body-content .modal-test .step__content--head__title:nth-child(2), .modal#calc .modal-body-content .modal-test .step__content--head__title:nth-child(3) {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 181px;
    flex: 0 0 181px;
  }
}
.modal#calc .modal-body-content .modal-test .step__content--button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: auto;
  padding-top: 16px;
}
.modal#calc .modal-body-content .modal-test .step__content--button .button.button-prev {
  width: auto;
}
.modal#calc .modal-body-content .modal-test .step__content--button .button.button-prev span {
  display: none;
}
.modal#calc .modal-body-content .modal-test .step__content--button .button.button-next {
  width: 222px;
  margin-left: auto;
}
@media (min-width: 768px) {
  .modal#calc .modal-body-content .modal-test .step__content--button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: auto;
    padding-top: 16px;
  }
  .modal#calc .modal-body-content .modal-test .step__content--button .button.button-prev {
    width: 222px;
  }
  .modal#calc .modal-body-content .modal-test .step__content--button .button.button-prev span {
    display: inline;
  }
  .modal#calc .modal-body-content .modal-test .step__content--button .button.button-next {
    width: 222px;
  }
}
.modal#calc .modal-body-content .modal-test .step__content--body {
  position: relative;
}
.modal#calc .modal-body-content .modal-test .step__content--body__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  border-bottom: 1px dotted #535355;
}
.modal#calc .modal-body-content .modal-test .step__content--body__item .item-info {
  position: absolute;
  right: 0;
  top: 0;
  width: 65%;
  max-height: -webkit-fit-content;
  max-height: -moz-fit-content;
  max-height: fit-content;
  background-color: #fff;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 10px 20px;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 100;
  display: none;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  pointer-events: none;
}
@media (min-width: 1209px) {
  .modal#calc .modal-body-content .modal-test .step__content--body__item .item-info {
    padding: 10px 20px;
    border-radius: 10px;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
    display: none;
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;
    pointer-events: none;
  }
}
@media (min-width: 1900px) {
  .modal#calc .modal-body-content .modal-test .step__content--body__item .item-info {
    padding: 10px 20px;
    border-radius: 10px;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
    display: none;
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;
    pointer-events: none;
    width: 580px;
  }
}
.modal#calc .modal-body-content .modal-test .step__content--body__item .item-info.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.modal#calc .modal-body-content .modal-test .step__content--body__item .item-info.item-info-image {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 10px;
}
.modal#calc .modal-body-content .modal-test .step__content--body__item .item-info__image {
  aspect-ratio: 1/1;
  width: 100%;
  height: 100%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 30%;
  flex: 0 0 30%;
}
.modal#calc .modal-body-content .modal-test .step__content--body__item .item-info__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  border-radius: 15px;
}
.modal#calc .modal-body-content .modal-test .step__content--body__item .item-info__title {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 10px;
}
@media (min-width: 1209px) {
  .modal#calc .modal-body-content .modal-test .step__content--body__item .item-info__title {
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 700;
  }
}
.modal#calc .modal-body-content .modal-test .step__content--body__item .item-info__text {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
}
@media (min-width: 1209px) {
  .modal#calc .modal-body-content .modal-test .step__content--body__item .item-info__text {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
  }
}
.modal#calc .modal-body-content .modal-test .step__content--body__item--title {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  position: relative;
}
.modal#calc .modal-body-content .modal-test .step__content--body__item--title--info {
  position: relative;
  width: 20px;
  height: 20px;
  -webkit-box-flex: unset !important;
  -ms-flex: unset !important;
  flex: unset !important;
}
.modal#calc .modal-body-content .modal-test .step__content--body__item--title--info::after {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: background-image 0.2s;
  transition: background-image 0.2s;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 11v5m0 5a9 9 0 1 1 0-18 9 9 0 0 1 0 18zm-.05-13v.1l-.1-.1h.1z' stroke='%23545454' stroke-width='2' fill='transparent' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.modal#calc .modal-body-content .modal-test .step__content--body__item--title--info:hover::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 11v5m0 5a9 9 0 1 1 0-18 9 9 0 0 1 0 18zm-.05-13v.1l-.1-.1h.1z' stroke='%23a530e4' stroke-width='2' fill='transparent' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.modal#calc .modal-body-content .modal-test .step__content--body__item label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 10px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  cursor: pointer;
  padding-top: 17px;
  padding-bottom: 17px;
}
.modal#calc .modal-body-content .modal-test .step__content--body__item label span {
  font-size: 15px;
  line-height: 135%;
  color: #545454;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  font-weight: 700;
}
.modal#calc .modal-body-content .modal-test .step__content--body__item label span:nth-child(2), .modal#calc .modal-body-content .modal-test .step__content--body__item label span:nth-child(3) {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 40%;
  flex: 0 0 40%;
  font-weight: 400;
}
@media (min-width: 768px) {
  .modal#calc .modal-body-content .modal-test .step__content--body__item label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 10px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: 100%;
    cursor: pointer;
  }
  .modal#calc .modal-body-content .modal-test .step__content--body__item label span {
    font-weight: 400;
    font-size: 15px;
    line-height: 135%;
    color: #545454;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
  }
  .modal#calc .modal-body-content .modal-test .step__content--body__item label span:nth-child(2), .modal#calc .modal-body-content .modal-test .step__content--body__item label span:nth-child(3) {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 181px;
    flex: 0 0 181px;
  }
}
.modal#calc .modal-body-content .modal-test .step__content--body__item--another .form-group {
  margin-bottom: 0;
}
.modal#calc .modal-body-content .modal-test .step__content--body__item--another label span {
  -webkit-box-flex: unset;
  -ms-flex: unset;
  flex: unset;
}
.modal#calc .modal-body-content .modal-test .step__content--body__item--another label span:nth-child(2), .modal#calc .modal-body-content .modal-test .step__content--body__item--another label span:nth-child(3) {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
}
.modal#calc .modal-body-content .modal-test .step__content--body__item--another label span input {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .modal#calc .modal-body-content .modal-test .step__content--body__item--another label span {
    -webkit-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
  }
  .modal#calc .modal-body-content .modal-test .step__content--body__item--another label span:nth-child(2), .modal#calc .modal-body-content .modal-test .step__content--body__item--another label span:nth-child(3) {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 306px;
    flex: 0 0 306px;
  }
  .modal#calc .modal-body-content .modal-test .step__content--body__item--another label span input {
    margin-bottom: 0;
  }
}

#city-modal {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
#city-modal .city-selector-container {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 27px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
#city-modal .city-selection-title {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  color: #3b3742;
  text-align: left;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.84px;
  font-weight: 700;
}
@media (min-width: 768px) {
  #city-modal .city-selection-title {
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: -0.96px;
    font-weight: 600;
  }
}
#city-modal .form {
  width: 100%;
}
#city-modal .city-list-container {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 15px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  width: 100%;
}
@media (min-width: 768px) {
  #city-modal .city-list-container {
    gap: 30px;
  }
}
#city-modal .city-list-container a {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 230px;
  padding: 0;
  margin: 0;
  font: 500 16px/24.5px "Manrope", sans-serif, -apple-system;
  color: #3b3742;
  text-align: left;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media (min-width: 768px) {
  #city-modal .city-list-container a {
    font: 500 18px/24.5px "Manrope", sans-serif, -apple-system;
  }
}
#city-modal .city-list-container a:hover {
  color: #a530e4;
}
#city-modal .city-list-container a.active {
  font-weight: 700;
  color: #a530e4;
}

#modal-thanks .modal-content {
  min-height: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#modal-thanks h3 {
  color: #3b3742;
  text-align: center;
  margin-bottom: 14px;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.84px;
  font-weight: 700;
}
@media (min-width: 768px) {
  #modal-thanks h3 {
    margin-bottom: 30px;
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: -0.96px;
    font-weight: 600;
  }
}
#modal-thanks p {
  text-align: center;
}
@media (min-width: 1209px) {
  #modal-thanks p {
    font-size: 22px;
    line-height: 1.5;
    font-weight: 400;
  }
}

#project-item .modal-body__title {
  font-weight: 700;
  font-size: 22px;
  line-height: 110%;
  letter-spacing: -0.03em;
  color: #261f2a;
  margin-bottom: 6px;
}
#project-item .modal-body__text {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  margin-bottom: 20px;
}
#project-item .modal-body__image {
  margin: 0 auto;
  width: 300px;
  height: auto;
  margin-bottom: 20px;
}
#project-item .modal-body__image img {
  width: 100%;
  height: auto;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding: 20px 0;
  position: relative;
}
.pagination .page-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: #999;
  -webkit-box-shadow: inset 0 0 0 2px #999;
  box-shadow: inset 0 0 0 2px #999;
  border-radius: 8px;
  background: #fff;
}
@media (min-width: 768px) {
  .pagination .page-link {
    border-radius: 4px;
    width: 55px;
    height: 55px;
    -webkit-box-shadow: inset 0 0 0 2px #999;
    box-shadow: inset 0 0 0 2px #999;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
  }
}
@media (min-width: 1209px) {
  .pagination .page-link {
    border-radius: 4px;
    width: 55px;
    height: 55px;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
  }
}
@media (min-width: 1900px) {
  .pagination .page-link {
    border-radius: 4px;
    width: 66px;
    height: 66px;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
  }
}
.pagination .page-link:hover {
  color: rgb(255, 255, 255);
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(155, 0, 204)), to(rgb(205, 45, 255)));
  background: linear-gradient(180deg, rgb(155, 0, 204), rgb(205, 45, 255) 100%);
  -webkit-box-shadow: inset 0 0 0 0px #7b1fa2;
  box-shadow: inset 0 0 0 0px #7b1fa2;
}
.pagination .page-link.active {
  color: #7b1fa2;
  -webkit-box-shadow: inset 0 0 0 2px #7b1fa2;
  box-shadow: inset 0 0 0 2px #7b1fa2;
}
.pagination .page-link.active:hover {
  color: rgb(255, 255, 255);
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(155, 0, 204)), to(rgb(205, 45, 255)));
  background: linear-gradient(180deg, rgb(155, 0, 204), rgb(205, 45, 255) 100%);
  -webkit-box-shadow: inset 0 0 0 0px #7b1fa2;
  box-shadow: inset 0 0 0 0px #7b1fa2;
}
.pagination .page-link.disabled {
  pointer-events: none;
  color: #999;
  -webkit-box-shadow: inset 0 0 0 2px transparent;
  box-shadow: inset 0 0 0 2px transparent;
}

.page-bottom {
  position: relative;
}
.page-bottom.page-bottom-row::after {
  display: none;
}
.page-bottom::after {
  content: "";
  position: absolute;
  top: calc(50% - 47px);
  left: 0;
  right: 0;
  z-index: -1;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 94px;
  border-radius: 20px;
  border-bottom: 2px dotted rgba(0, 0, 0, 0.2);
}

.politicy {
  font-size: 12px;
  line-height: 135%;
  letter-spacing: 0%;
  text-align: left;
  color: #3b3742;
  margin: 0;
}
@media (min-width: 1209px) {
  .politicy {
    color: #3b3742;
    font-size: 12px;
    line-height: 135%;
    letter-spacing: 0%;
  }
}
.politicy-checkbox {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}
.politicy-checkbox input[type=checkbox] {
  margin-right: 8px;
  min-width: 16px;
  width: 16px;
  height: 16px;
}
.politicy a {
  text-decoration: underline;
}
.politicy a:hover {
  text-decoration: none;
}

.custom-select--white .custom-select__selected {
  background: #fff;
}

.select-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}

.custom-select {
  position: relative;
  width: 100%;
  cursor: pointer;
  margin-bottom: 22px;
}
.custom-select.custom-select-icon {
  margin-bottom: unset;
}
.custom-select.custom-select-icon .custom-select__selected {
  background: #fff;
}

.select-icon {
  width: 12px;
  margin-right: 15px;
}

.custom-select__selected {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.select-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}

.custom-select {
  position: relative;
  width: 100%;
  cursor: pointer;
  margin-bottom: 22px;
}

.custom-select__selected {
  width: 100%;
  border: 1px solid #d1d1d1;
  border-radius: 4px;
  padding: 18px 22px 20px 22px;
  font-weight: 400;
  font-size: 14px;
  line-height: 135%;
  background: #f0f0f0;
  color: #545454;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  z-index: 1;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: border 0.3s;
  transition: border 0.3s;
}
@media (min-width: 1209px) {
  .custom-select__selected {
    border-radius: 4px;
    padding: 14px 18px 16px 18px;
    font-weight: 400;
    font-size: 14px;
    line-height: 135%;
  }
  .custom-select__selected:hover {
    border: 1px solid rgb(113, 43, 135);
  }
  .custom-select__selected:focus {
    border: 1px solid rgb(113, 43, 135);
  }
}
@media (min-width: 1900px) {
  .custom-select__selected {
    border-radius: 4px;
    padding: 18px 22px 20px 22px;
    font-weight: 400;
    font-size: 15px;
    line-height: 135%;
  }
}

.custom-select__text {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.custom-select__dropdown {
  z-index: 3;
  display: none;
  position: absolute;
  width: 100%;
  background-color: #fff;
  border: 1px solid #d1d1d1;
  border-radius: 4px;
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 200px;
  overflow-y: auto;
}
@media (min-width: 1209px) {
  .custom-select__dropdown {
    border-radius: 4px;
    font-weight: 400;
    font-size: 14px;
    line-height: 135%;
  }
}
@media (min-width: 1900px) {
  .custom-select__dropdown {
    border-radius: 4px;
    font-weight: 400;
    font-size: 15px;
    line-height: 135%;
  }
}

.custom-select__option,
.custom-select__option-link a,
.custom-select__option label {
  padding: 10px;
  display: block;
  text-decoration: none !important;
  color: #545454;
  cursor: pointer;
}

.custom-select__option.custom-select__option-label {
  padding: 0;
}
.custom-select__option.custom-select__option-label label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.custom-select__option.custom-select__option-label label input {
  margin-right: 10px;
}

.custom-select__option:hover,
.custom-select__option-link a:hover {
  background: #f0f0f0;
}

.select-arrow {
  position: relative;
}

.select-arrow i {
  font-size: 14px;
  color: #333;
}

.custom-select__search {
  padding: 8px;
  border-bottom: 1px solid #e5e5e5;
  background-color: #fafafa;
  position: sticky;
  top: 0;
  z-index: 4;
}

.custom-select__search-input {
  width: 100%;
  padding: 6px 8px;
  font-size: 14px;
  border: 1px solid #d1d1d1;
  border-radius: 4px;
  outline: none;
}

.custom-select__search-input:focus {
  border-color: rgb(113, 43, 135);
}

.sort__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
  width: 100%;
}
@media (min-width: 1024px) {
  .sort__menu {
    width: auto;
    overflow: unset;
    margin: unset;
    margin-bottom: 30px;
    padding: unset;
  }
}
.sort__menu li {
  -webkit-box-flex: 1;
  -ms-flex: auto 0 0px;
  flex: auto 0 0;
}
.sort__menu li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  color: #3b3742 !important;
  -webkit-box-shadow: 0 0 0 2px #3b3742 !important;
  box-shadow: 0 0 0 2px #3b3742 !important;
  border-radius: 4px;
  padding: 12px 25px 14px 25px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
}
.sort__menu li a.active {
  -webkit-box-shadow: 0 0 0 2px #9b1ec2 !important;
  box-shadow: 0 0 0 2px #9b1ec2 !important;
  color: #9b1ec2 !important;
}
.sort__menu li a.active span {
  display: block;
}
@media (min-width: 1209px) {
  .sort__menu li a {
    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
    padding: 15px 22px 17px 22px;
    font-weight: 500;
  }
  .sort__menu li a:hover {
    -webkit-box-shadow: 0 0 0 2px #9b1ec2 !important;
    box-shadow: 0 0 0 2px #9b1ec2 !important;
    color: #fff !important;
  }
}
@media (min-width: 1900px) {
  .sort__menu li a {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
    font-weight: 500;
    padding: 20px 40px 22px 40px;
  }
}
.sort__menu li a span {
  display: none;
}

@media (min-width: 1900px) {
  .about-page-main .title-page__title {
    padding-right: 292px;
  }
}

.calc-page__h1 {
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -0.96px;
  font-weight: 700;
}
@media (min-width: 1900px) {
  .calc-page__h1 {
    font-size: 65px;
    line-height: 1.2;
    letter-spacing: -3.25px;
    font-weight: 700;
  }
}
.calc-page .container.calc-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.calc-page .modal-body {
  margin-top: unset;
  width: 100%;
}
.calc-page .modal-body-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5px;
}
@media (min-width: 768px) {
  .calc-page .modal-body-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 5px;
  }
}
@media (min-width: 1209px) {
  .calc-page .modal-body-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 5px;
  }
}
.calc-page .modal-body-content__left {
  background-color: #fff;
  padding: 30px 0;
  border-radius: 8px;
  width: 100%;
}
@media (min-width: 1209px) {
  .calc-page .modal-body-content__left {
    padding: 45px;
    background-color: #fff;
    border-radius: 8px;
    -webkit-box-shadow: 0 0 0 1px rgba(58, 58, 58, 0.3);
    box-shadow: 0 0 0 1px rgba(58, 58, 58, 0.3);
    min-height: 812px;
  }
}
.calc-page .modal-body-content__right {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
  padding: 36px;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.3);
  background: #1c1222;
}
@media (min-width: 1209px) {
  .calc-page .modal-body-content__right {
    padding: 36px;
    border-radius: 8px;
    -webkit-box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.3);
    background: #1c1222;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 422px;
    flex: 0 0 422px;
  }
}
.calc-page .modal-body-content__right--title {
  font-size: 26px;
  font-weight: 700;
  line-height: 110%;
  letter-spacing: -0.03em;
  margin-bottom: 26px;
}
@media (min-width: 1209px) {
  .calc-page .modal-body-content__right--title {
    font-size: 26px;
    font-weight: 700;
    line-height: 110%;
    letter-spacing: -0.03em;
    margin-bottom: 26px;
  }
}
.calc-page .modal-body-content__right--info .info {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
  margin-bottom: 16px;
}
@media (min-width: 1209px) {
  .calc-page .modal-body-content__right--info .info {
    font-size: 18px;
    line-height: 1.5;
    font-weight: 400;
    margin-bottom: 16px;
  }
}
.calc-page .modal-body-content__right--info .info span:last-child.empty {
  color: #999;
}
.calc-page .modal-body-content__right--bottom {
  position: relative;
  margin-top: auto;
  z-index: 1;
}
.calc-page .modal-body-content__right--bottom::after {
  content: "";
  position: absolute;
  right: -36px;
  top: -166px;
  width: 385px;
  height: 333px;
  background-image: url("../img/svg/bg-3Block.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.calc-page .modal-body-content__right--bottom .icon {
  width: 40px;
  height: 34px;
  margin-bottom: 22px;
}
.calc-page .modal-body-content__right--bottom .title {
  font-size: 22px;
  line-height: 1.2;
  font-weight: 700;
  width: 185px;
  margin-bottom: 10px;
}
.calc-page .modal-body-content__right--bottom .subtitle {
  color: #bfb9ca;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 400;
  width: 185px;
}
.calc-page .modal-body-content__right--bottom .button {
  width: 185px;
  color: #fff;
  margin-top: 51px;
  margin-bottom: 14px;
}
.calc-page .modal-body-content__right--bottom .image {
  position: absolute;
  pointer-events: none;
  width: 321px;
  height: 301px;
  right: -46px;
  bottom: -36px;
  z-index: -1;
}
.calc-page .modal-body-content__right--bottom .image img {
  width: 100%;
  height: 100%;
}
.calc-page .modal-body-content .modal-test {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}
@media (min-width: 1209px) {
  .calc-page .modal-body-content .modal-test {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 26px;
    height: 100%;
  }
}
.calc-page .modal-body-content .modal-test__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 20px;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.84px;
  font-weight: 700;
}
@media (min-width: 1209px) {
  .calc-page .modal-body-content .modal-test__title {
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: -0.96px;
    font-weight: 600;
    gap: 27px;
  }
}
.calc-page .modal-body-content .modal-test__title .image {
  width: 107px;
  height: 138px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 107px;
  flex: 0 0 107px;
}
@media (min-width: 1209px) {
  .calc-page .modal-body-content .modal-test__title .image {
    width: 54px;
    height: 69px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 54px;
    flex: 0 0 54px;
  }
}
.calc-page .modal-body-content .modal-test__title .image img {
  width: 100%;
  height: 100%;
}
.calc-page .modal-body-content .modal-test .progress-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 1209px) {
  .calc-page .modal-body-content .modal-test .progress-bar {
    gap: 16px;
  }
}
.calc-page .modal-body-content .modal-test .progress-bar__title {
  font-size: 16px;
  line-height: 107%;
  font-weight: 500;
}
@media (min-width: 1209px) {
  .calc-page .modal-body-content .modal-test .progress-bar__title {
    font-size: 20px;
    line-height: 107%;
    font-weight: 500;
  }
}
.calc-page .modal-body-content .modal-test .progress-bar__line {
  background-color: #000;
  border-radius: 4px;
  width: 100%;
  height: 10px;
  position: relative;
}
@media (min-width: 1209px) {
  .calc-page .modal-body-content .modal-test .progress-bar__line {
    background-color: #000;
    border-radius: 4px;
    width: 100%;
    height: 16px;
    position: relative;
  }
}
.calc-page .modal-body-content .modal-test .progress-bar__line-fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  background-color: #a530e4;
  border-radius: 4px;
  -webkit-transition: width 0.2s ease-in-out;
  transition: width 0.2s ease-in-out;
}
.calc-page .modal-body-content .modal-test__steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
@media (min-width: 1209px) {
  .calc-page .modal-body-content .modal-test__steps {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 26px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
}
.calc-page .modal-body-content .modal-test .step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
@media (min-width: 1209px) {
  .calc-page .modal-body-content .modal-test .step {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 26px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
}
.calc-page .modal-body-content .modal-test .step .product-dimensions:last-child .product-dimensions__block {
  border-bottom: 1px dotted #535355;
}
.calc-page .modal-body-content .modal-test .step .product-dimensions__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 18px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-top: 1px dotted #535355;
  padding-top: 16px;
  padding-bottom: 16px;
}
.calc-page .modal-body-content .modal-test .step .product-dimensions__label {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
}
.calc-page .modal-body-content .modal-test .step .product-dimensions__input-wrapper {
  position: relative;
  max-width: 107px;
  margin-bottom: 0;
}
.calc-page .modal-body-content .modal-test .step .product-dimensions__input-wrapper input {
  background-color: #fff;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
}
.calc-page .modal-body-content .modal-test .step .product-dimensions__input-wrapper:hover input {
  border-color: #9b1ec2;
}
.calc-page .modal-body-content .modal-test .step .product-dimensions__controls {
  position: absolute;
  right: 6px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4px;
}
@media (min-width: 1209px) {
  .calc-page .modal-body-content .modal-test .step .product-dimensions__controls button:hover svg .arrow-bg {
    fill: #9b1ec2;
  }
}
.calc-page .modal-body-content .modal-test .step .product-dimensions__controls button svg {
  width: 20px;
  height: 20px;
}
.calc-page .modal-body-content .modal-test .step .product-dimensions__controls button svg .arrow-bg {
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.calc-page .modal-body-content .modal-test .step__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (min-width: 1209px) {
  .calc-page .modal-body-content .modal-test .step__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 20px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.calc-page .modal-body-content .modal-test .step__title--number {
  border: 1px solid #9b1ec2;
  border-radius: 10px;
  padding: 6px 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 700;
  color: #9b1ec2;
}
.calc-page .modal-body-content .modal-test .step__title--text {
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: -0.66px;
  font-weight: 600;
}
@media (min-width: 1209px) {
  .calc-page .modal-body-content .modal-test .step__title--text {
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: -0.96px;
    font-weight: 600;
  }
}
.calc-page .modal-body-content .modal-test .step__result {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  border-top: 1px dotted rgba(38, 31, 42, 0.8);
  padding-top: 20px;
}
.calc-page .modal-body-content .modal-test .step__result--title {
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: -0.66px;
  font-weight: 600;
  max-width: 436px;
}
@media (min-width: 1209px) {
  .calc-page .modal-body-content .modal-test .step__result--title {
    font-size: 22px;
    line-height: 1.2;
    font-weight: 700;
    max-width: 436px;
  }
}
.calc-page .modal-body-content .modal-test .step__result--content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}
.calc-page .modal-body-content .modal-test .step__result--content .image {
  width: 91px;
  height: 128px;
  display: none;
}
@media (min-width: 1209px) {
  .calc-page .modal-body-content .modal-test .step__result--content .image {
    display: block;
  }
}
.calc-page .modal-body-content .modal-test .step__result--content .image img {
  width: 100%;
  height: 100%;
}
.calc-page .modal-body-content .modal-test .step__result--content .form {
  width: 100%;
}
.calc-page .modal-body-content .modal-test .step__result--content .form .form-group.radio {
  overflow-x: scroll;
  width: 100vw;
  margin: 0 -36px 20px;
  padding: 0 36px 0 36px;
}
@media (min-width: 1209px) {
  .calc-page .modal-body-content .modal-test .step__result--content .form .form-group.radio {
    overflow: hidden;
    width: auto;
    margin: 0 0 20px;
    padding: unset;
  }
}
.calc-page .modal-body-content .modal-test .step__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (min-width: 1209px) {
  .calc-page .modal-body-content .modal-test .step__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
}
.calc-page .modal-body-content .modal-test .step__content--head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding-bottom: 17px;
  border-bottom: 1px dotted #535355;
}
.calc-page .modal-body-content .modal-test .step__content--head__title {
  display: none;
}
@media (min-width: 1209px) {
  .calc-page .modal-body-content .modal-test .step__content--head__title {
    display: block;
    font-size: 12px;
    line-height: 1.35;
    font-weight: 400;
    color: #9b1ec2;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
  }
  .calc-page .modal-body-content .modal-test .step__content--head__title:nth-child(2), .calc-page .modal-body-content .modal-test .step__content--head__title:nth-child(3) {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 181px;
    flex: 0 0 181px;
  }
}
.calc-page .modal-body-content .modal-test .step__content--button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: auto;
  padding-top: 16px;
}
.calc-page .modal-body-content .modal-test .step__content--button .button.button-prev {
  width: auto;
}
.calc-page .modal-body-content .modal-test .step__content--button .button.button-prev span {
  display: none;
}
.calc-page .modal-body-content .modal-test .step__content--button .button.button-next {
  width: 222px;
  margin-left: auto;
}
@media (min-width: 1209px) {
  .calc-page .modal-body-content .modal-test .step__content--button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: auto;
    padding-top: 16px;
  }
  .calc-page .modal-body-content .modal-test .step__content--button .button.button-prev {
    width: 222px;
  }
  .calc-page .modal-body-content .modal-test .step__content--button .button.button-prev span {
    display: inline;
  }
  .calc-page .modal-body-content .modal-test .step__content--button .button.button-next {
    width: 222px;
  }
}
.calc-page .modal-body-content .modal-test .step__content--body {
  position: relative;
}
.calc-page .modal-body-content .modal-test .step__content--body__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  border-bottom: 1px dotted #535355;
}
.calc-page .modal-body-content .modal-test .step__content--body__item .item-info {
  position: absolute;
  right: 0;
  top: 0;
  width: 65%;
  max-height: -webkit-fit-content;
  max-height: -moz-fit-content;
  max-height: fit-content;
  background-color: #fff;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 10px 20px;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 100;
  display: none;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  pointer-events: none;
}
@media (min-width: 1209px) {
  .calc-page .modal-body-content .modal-test .step__content--body__item .item-info {
    padding: 10px 20px;
    border-radius: 10px;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
    display: none;
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;
    pointer-events: none;
  }
}
@media (min-width: 1900px) {
  .calc-page .modal-body-content .modal-test .step__content--body__item .item-info {
    padding: 10px 20px;
    border-radius: 10px;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
    display: none;
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;
    pointer-events: none;
    width: 580px;
  }
}
.calc-page .modal-body-content .modal-test .step__content--body__item .item-info.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.calc-page .modal-body-content .modal-test .step__content--body__item .item-info.item-info-image {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 10px;
}
.calc-page .modal-body-content .modal-test .step__content--body__item .item-info__image {
  aspect-ratio: 1/1;
  width: 100%;
  height: 100%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 30%;
  flex: 0 0 30%;
}
.calc-page .modal-body-content .modal-test .step__content--body__item .item-info__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  border-radius: 15px;
}
.calc-page .modal-body-content .modal-test .step__content--body__item .item-info__title {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 10px;
}
@media (min-width: 1209px) {
  .calc-page .modal-body-content .modal-test .step__content--body__item .item-info__title {
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 700;
  }
}
.calc-page .modal-body-content .modal-test .step__content--body__item .item-info__text {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
}
@media (min-width: 1209px) {
  .calc-page .modal-body-content .modal-test .step__content--body__item .item-info__text {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
  }
}
.calc-page .modal-body-content .modal-test .step__content--body__item--title {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  position: relative;
}
.calc-page .modal-body-content .modal-test .step__content--body__item--title--info {
  position: relative;
  width: 20px;
  height: 20px;
  -webkit-box-flex: unset !important;
  -ms-flex: unset !important;
  flex: unset !important;
  display: none;
}
@media (min-width: 1209px) {
  .calc-page .modal-body-content .modal-test .step__content--body__item--title--info {
    display: block;
  }
}
.calc-page .modal-body-content .modal-test .step__content--body__item--title--info::after {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: background-image 0.2s;
  transition: background-image 0.2s;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 11v5m0 5a9 9 0 1 1 0-18 9 9 0 0 1 0 18zm-.05-13v.1l-.1-.1h.1z' stroke='%23545454' stroke-width='2' fill='transparent' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.calc-page .modal-body-content .modal-test .step__content--body__item--title--info:hover::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 11v5m0 5a9 9 0 1 1 0-18 9 9 0 0 1 0 18zm-.05-13v.1l-.1-.1h.1z' stroke='%23a530e4' stroke-width='2' fill='transparent' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.calc-page .modal-body-content .modal-test .step__content--body__item label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 10px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  cursor: pointer;
  padding-top: 17px;
  padding-bottom: 17px;
}
.calc-page .modal-body-content .modal-test .step__content--body__item label span {
  font-size: 15px;
  line-height: 135%;
  color: #545454;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  font-weight: 700;
}
.calc-page .modal-body-content .modal-test .step__content--body__item label span:nth-child(2), .calc-page .modal-body-content .modal-test .step__content--body__item label span:nth-child(3) {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 80px;
  flex: 0 0 80px;
  font-weight: 400;
}
@media (min-width: 1209px) {
  .calc-page .modal-body-content .modal-test .step__content--body__item label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 10px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: 100%;
    cursor: pointer;
  }
  .calc-page .modal-body-content .modal-test .step__content--body__item label span {
    font-weight: 400;
    font-size: 15px;
    line-height: 135%;
    color: #545454;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
  }
  .calc-page .modal-body-content .modal-test .step__content--body__item label span:nth-child(2), .calc-page .modal-body-content .modal-test .step__content--body__item label span:nth-child(3) {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 181px;
    flex: 0 0 181px;
  }
}
.calc-page .modal-body-content .modal-test .step__content--body__item--another .form-group {
  margin-bottom: 0;
}
.calc-page .modal-body-content .modal-test .step__content--body__item--another label span {
  -webkit-box-flex: unset;
  -ms-flex: unset;
  flex: unset;
}
.calc-page .modal-body-content .modal-test .step__content--body__item--another label span:nth-child(2), .calc-page .modal-body-content .modal-test .step__content--body__item--another label span:nth-child(3) {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
}
.calc-page .modal-body-content .modal-test .step__content--body__item--another label span input {
  margin-bottom: 0;
}
@media (min-width: 1209px) {
  .calc-page .modal-body-content .modal-test .step__content--body__item--another label span {
    -webkit-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
  }
  .calc-page .modal-body-content .modal-test .step__content--body__item--another label span:nth-child(2), .calc-page .modal-body-content .modal-test .step__content--body__item--another label span:nth-child(3) {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 306px;
    flex: 0 0 306px;
  }
  .calc-page .modal-body-content .modal-test .step__content--body__item--another label span input {
    margin-bottom: 0;
  }
}

main {
  overflow: hidden;
}

main {
  overflow: hidden;
}

main {
  overflow: hidden;
}

main {
  overflow: hidden;
}

main {
  overflow: hidden;
}

main {
  overflow: hidden;
}

main {
  overflow: hidden;
}
main.page-8-inside .title-page__title span {
  white-space: unset;
}

@media (min-width: 1024px) {
  .block-1-form.page-8 {
    background-position: center center;
  }
}
@media (min-width: 1209px) {
  .block-1-form.page-8 {
    background-position: center center;
  }
}
@media (min-width: 1900px) {
  .block-1-form.page-8 {
    background-position: center center;
  }
}
.block-1-form.page-8 .block-1-form__form-content .title {
  margin-bottom: 26px;
}
main {
  overflow: hidden;
}

.question__content .text {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
  padding-bottom: 30px;
  border-bottom: 1px dotted #000;
}
@media (min-width: 1209px) {
  .question__content .text {
    font-size: 22px;
    line-height: 1.5;
    font-weight: 400;
  }
}
.question__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 30px;
}

.page-search .form-group-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid rgb(209, 209, 209);
  border-radius: 4px;
  padding: 13px 10px 13px 10px;
  -webkit-transition: border 0.3s;
  transition: border 0.3s;
  background-color: #fff;
}
.page-search .form-group-icon:focus-within {
  border: 1px solid rgb(113, 43, 135);
}
@media (min-width: 1209px) {
  .page-search .form-group-icon {
    gap: 10px;
  }
  .page-search .form-group-icon:hover {
    border: 1px solid rgb(113, 43, 135);
  }
}
@media (min-width: 1900px) {
  .page-search .form-group-icon {
    padding: 20px 40px 22px 40px;
    gap: 15px;
  }
}
.page-search .form-group-icon input {
  width: 100%;
  font-size: 18px;
  line-height: 1.35;
}
.page-search .form-group-icon svg {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 16px;
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
}
@media (min-width: 1209px) {
  .page-search .form-group-icon svg {
    width: 16px;
    height: 16px;
  }
}
@media (min-width: 1900px) {
  .page-search .form-group-icon svg {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20px;
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
  }
}
.page-search__filter {
  background: #f7f6f7;
  padding: 20px 0;
}
.page-search__filter-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}
.page-search__filter-title {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.35;
  color: #000;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  display: none;
}
@media (min-width: 768px) {
  .page-search__filter-title {
    display: block;
  }
}
@media (min-width: 1209px) {
  .page-search__filter-title {
    font-size: 22px;
    line-height: 1.5;
  }
}
.page-search__filter-form {
  width: 100%;
}
.page-search__filter-form form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  width: 100%;
}
.page-search__filter-form form .form-group-icon {
  width: 100%;
}
.page-search__filter-form form button.button {
  width: 204px;
}
@media (min-width: 1209px) {
  .page-search__filter-form form button.button {
    padding: 16px;
  }
}
@media (min-width: 1900px) {
  .page-search__filter-form form button.button {
    height: 66px;
    padding: 20px 30px 22px 30px;
  }
}
.page-search__results {
  margin-top: 30px;
  margin-bottom: 30px;
}
@media (min-width: 1209px) {
  .page-search__results {
    margin-top: 50px;
    margin-bottom: 50px;
  }
}
.page-search__results-title {
  color: #1f1f1f;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.05em;
  font-size: 24px;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .page-search__results-title {
    font-size: 30px;
    margin-bottom: 24px;
  }
}
@media (min-width: 1209px) {
  .page-search__results-title {
    font-size: 40px;
  }
}
@media (min-width: 1900px) {
  .page-search__results-title {
    font-size: 65px;
  }
}
.page-search__results-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 1209px) {
  .page-search__results-wrap {
    gap: 30px;
  }
}
.page-search__results .result-item {
  background: #f7f7f7;
  padding: 20px;
}
@media (min-width: 768px) {
  .page-search__results .result-item {
    padding: 30px;
  }
}
@media (min-width: 1209px) {
  .page-search__results .result-item {
    padding: 40px;
  }
}
.page-search__results .result-item__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .page-search__results .result-item__header {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
@media (min-width: 1209px) {
  .page-search__results .result-item__header {
    gap: 28px;
    margin-bottom: 24px;
  }
}
.page-search__results .result-item__title {
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #3b3742;
  font-size: 20px;
}
@media (min-width: 768px) {
  .page-search__results .result-item__title {
    font-size: 30px;
  }
}
@media (min-width: 1209px) {
  .page-search__results .result-item__title {
    font-size: 45px;
  }
}
.page-search__results .result-item__text {
  position: relative;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #3b3742;
}
@media (min-width: 768px) {
  .page-search__results .result-item__text {
    font-size: 18px;
  }
}
.page-search__results .result-item__text-short {
  display: inline;
}
.page-search__results .result-item__text-full {
  display: none;
}
.page-search__results .result-item .hidden {
  display: none;
}
.page-search__results .result-item__show-more {
  background: none;
  border: none;
  color: #9b1ec2;
  text-decoration: none;
  cursor: pointer;
  padding: 0;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .page-search__results .result-item__show-more {
    font-size: 18px;
  }
}
.page-search__results .result-item__show-more:hover {
  color: #7a1896;
}