@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200;400;500;600&display=swap");
@font-face {
  font-family: "bootstrap-icons";
  src: url("fonts/Bootstrap/bootstrap-icons.woff2") format("woff2"), url("fonts/Bootstrap/bootstrap-icons.woff") format("woff");
}
img {
  max-width: 100%;
  line-height: 0;
}

input:focus, button:focus {
  outline: none;
}

/* http://meyerweb.com/eric/tools/css/reset/
 * v2.0 | 20110126
 * License: none (public domain) */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input {
  background: transparent;
  border-radius: 0;
}
input:focus, input:active {
  border-radius: 0;
}

button {
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

*:focus, *:active {
  outline: none;
}

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

sup {
  top: -0.33em;
}

sub {
  bottom: -0.25em;
}

:root {
  --blue-50: rgb(239, 246, 255);
  --blue-100: rgb(219, 234, 254);
  --blue-200: rgb(191, 219, 254);
  --blue-300: rgb(147, 197, 253);
  --blue-400: rgb(96, 165, 250);
  --blue-500: rgb(59, 130, 246);
  --blue-600: rgb(37, 99, 235);
  --blue-700: rgb(29, 78, 216);
  --blue-800: rgb(30, 64, 175);
  --blue-900: rgb(30, 58, 138);
  --gray-100: rgb(243, 244, 246);
  --gray-200: rgb(229, 231, 235);
  --gray-300: rgb(209, 213, 219);
  --gray-400: rgb(156, 163, 175);
  --gray-500: rgb(107, 114, 128);
  --gray-600: rgb(75, 85, 99);
  --gray-700: rgb(55, 65, 81);
  --gray-800: rgb(31, 41, 55);
  --black: #161D26;
  --white: white;
}

p, span {
  color: #161D26;
}

.accent {
  color: #de7a00;
}

.alert {
  margin-bottom: 20px;
}
@media (min-width: 1400px) {
  .alert {
    margin-bottom: 30px;
  }
}

:root {
  --primary: rgb(30, 64, 175);
  --secondary: rgb(156, 163, 175);
  --success: rgb(22, 163, 74);
  --info: rgb(14, 165, 233);
  --warning: rgb(234, 179, 8);
  --danger: rgb(153, 27, 27);
  --light: rgb(209, 213, 219);
  --dark: #161D26;
  --accent: #de7a00;
}

.bg-primary {
  background-color: rgb(30, 64, 175);
}

a.bg-primary:hover {
  background-color: #173083;
}

.bg-secondary {
  background-color: rgb(156, 163, 175);
}

a.bg-secondary:hover {
  background-color: #808998;
}

.bg-success {
  background-color: rgb(22, 163, 74);
}

a.bg-success:hover {
  background-color: #107636;
}

.bg-info {
  background-color: rgb(14, 165, 233);
}

a.bg-info:hover {
  background-color: #0b83b9;
}

.bg-warning {
  background-color: rgb(234, 179, 8);
}

a.bg-warning:hover {
  background-color: #b98d06;
}

.bg-danger {
  background-color: rgb(153, 27, 27);
}

a.bg-danger:hover {
  background-color: #6e1313;
}

.bg-light {
  background-color: rgb(209, 213, 219);
}

a.bg-light:hover {
  background-color: #b4bbc5;
}

.bg-dark {
  background-color: #161D26;
}

a.bg-dark:hover {
  background-color: #030406;
}

.bg-accent {
  background-color: #de7a00;
}

a.bg-accent:hover {
  background-color: #ab5e00;
}

html {
  box-sizing: border-box;
  -ms-overflow-style: scrollbar;
}

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

.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-left: 10px;
  padding-right: 10px;
}
@media (min-width: 576px) {
  .container {
    max-width: 552px;
    padding-left: 12px;
    padding-right: 12px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 738px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: 992px;
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1366px;
    padding-left: 17px;
    padding-right: 17px;
  }
}
@media (min-width: 1500px) {
  .container {
    max-width: 1464px;
    padding-left: 18px;
    padding-right: 18px;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}
@media (min-width: 576px) {
  .row {
    margin-left: -12px;
    margin-right: -12px;
  }
}
@media (min-width: 768px) {
  .row {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media (min-width: 1024px) {
  .row {
    margin-left: -16px;
    margin-right: -16px;
  }
}
@media (min-width: 1400px) {
  .row {
    margin-left: -17px;
    margin-right: -17px;
  }
}
@media (min-width: 1500px) {
  .row {
    margin-left: -18px;
    margin-right: -18px;
  }
}

.col {
  flex: 1 0 0;
}
.col-1 {
  width: 8.3333333333%;
}
.col-2 {
  width: 16.6666666667%;
}
.col-3 {
  width: 25%;
}
.col-4 {
  width: 33.3333333333%;
}
.col-5 {
  width: 41.6666666667%;
}
.col-6 {
  width: 50%;
}
.col-7 {
  width: 58.3333333333%;
}
.col-8 {
  width: 66.6666666667%;
}
.col-9 {
  width: 75%;
}
.col-10 {
  width: 83.3333333333%;
}
.col-11 {
  width: 91.6666666667%;
}
.col-12 {
  width: 100%;
}
@media (min-width: 576px) {
  .col-sm-1 {
    display: block;
    width: 8.3333333333%;
  }
}
@media (min-width: 576px) {
  .col-sm-2 {
    display: block;
    width: 16.6666666667%;
  }
}
@media (min-width: 576px) {
  .col-sm-3 {
    display: block;
    width: 25%;
  }
}
@media (min-width: 576px) {
  .col-sm-4 {
    display: block;
    width: 33.3333333333%;
  }
}
@media (min-width: 576px) {
  .col-sm-5 {
    display: block;
    width: 41.6666666667%;
  }
}
@media (min-width: 576px) {
  .col-sm-6 {
    display: block;
    width: 50%;
  }
}
@media (min-width: 576px) {
  .col-sm-7 {
    display: block;
    width: 58.3333333333%;
  }
}
@media (min-width: 576px) {
  .col-sm-8 {
    display: block;
    width: 66.6666666667%;
  }
}
@media (min-width: 576px) {
  .col-sm-9 {
    display: block;
    width: 75%;
  }
}
@media (min-width: 576px) {
  .col-sm-10 {
    display: block;
    width: 83.3333333333%;
  }
}
@media (min-width: 576px) {
  .col-sm-11 {
    display: block;
    width: 91.6666666667%;
  }
}
@media (min-width: 576px) {
  .col-sm-12 {
    display: block;
    width: 100%;
  }
}
@media (min-width: 768px) {
  .col-md-1 {
    display: block;
    width: 8.3333333333%;
  }
}
@media (min-width: 768px) {
  .col-md-2 {
    display: block;
    width: 16.6666666667%;
  }
}
@media (min-width: 768px) {
  .col-md-3 {
    display: block;
    width: 25%;
  }
}
@media (min-width: 768px) {
  .col-md-4 {
    display: block;
    width: 33.3333333333%;
  }
}
@media (min-width: 768px) {
  .col-md-5 {
    display: block;
    width: 41.6666666667%;
  }
}
@media (min-width: 768px) {
  .col-md-6 {
    display: block;
    width: 50%;
  }
}
@media (min-width: 768px) {
  .col-md-7 {
    display: block;
    width: 58.3333333333%;
  }
}
@media (min-width: 768px) {
  .col-md-8 {
    display: block;
    width: 66.6666666667%;
  }
}
@media (min-width: 768px) {
  .col-md-9 {
    display: block;
    width: 75%;
  }
}
@media (min-width: 768px) {
  .col-md-10 {
    display: block;
    width: 83.3333333333%;
  }
}
@media (min-width: 768px) {
  .col-md-11 {
    display: block;
    width: 91.6666666667%;
  }
}
@media (min-width: 768px) {
  .col-md-12 {
    display: block;
    width: 100%;
  }
}
@media (min-width: 1024px) {
  .col-lg-1 {
    display: block;
    width: 8.3333333333%;
  }
}
@media (min-width: 1024px) {
  .col-lg-2 {
    display: block;
    width: 16.6666666667%;
  }
}
@media (min-width: 1024px) {
  .col-lg-3 {
    display: block;
    width: 25%;
  }
}
@media (min-width: 1024px) {
  .col-lg-4 {
    display: block;
    width: 33.3333333333%;
  }
}
@media (min-width: 1024px) {
  .col-lg-5 {
    display: block;
    width: 41.6666666667%;
  }
}
@media (min-width: 1024px) {
  .col-lg-6 {
    display: block;
    width: 50%;
  }
}
@media (min-width: 1024px) {
  .col-lg-7 {
    display: block;
    width: 58.3333333333%;
  }
}
@media (min-width: 1024px) {
  .col-lg-8 {
    display: block;
    width: 66.6666666667%;
  }
}
@media (min-width: 1024px) {
  .col-lg-9 {
    display: block;
    width: 75%;
  }
}
@media (min-width: 1024px) {
  .col-lg-10 {
    display: block;
    width: 83.3333333333%;
  }
}
@media (min-width: 1024px) {
  .col-lg-11 {
    display: block;
    width: 91.6666666667%;
  }
}
@media (min-width: 1024px) {
  .col-lg-12 {
    display: block;
    width: 100%;
  }
}
@media (min-width: 1400px) {
  .col-xl-1 {
    display: block;
    width: 8.3333333333%;
  }
}
@media (min-width: 1400px) {
  .col-xl-2 {
    display: block;
    width: 16.6666666667%;
  }
}
@media (min-width: 1400px) {
  .col-xl-3 {
    display: block;
    width: 25%;
  }
}
@media (min-width: 1400px) {
  .col-xl-4 {
    display: block;
    width: 33.3333333333%;
  }
}
@media (min-width: 1400px) {
  .col-xl-5 {
    display: block;
    width: 41.6666666667%;
  }
}
@media (min-width: 1400px) {
  .col-xl-6 {
    display: block;
    width: 50%;
  }
}
@media (min-width: 1400px) {
  .col-xl-7 {
    display: block;
    width: 58.3333333333%;
  }
}
@media (min-width: 1400px) {
  .col-xl-8 {
    display: block;
    width: 66.6666666667%;
  }
}
@media (min-width: 1400px) {
  .col-xl-9 {
    display: block;
    width: 75%;
  }
}
@media (min-width: 1400px) {
  .col-xl-10 {
    display: block;
    width: 83.3333333333%;
  }
}
@media (min-width: 1400px) {
  .col-xl-11 {
    display: block;
    width: 91.6666666667%;
  }
}
@media (min-width: 1400px) {
  .col-xl-12 {
    display: block;
    width: 100%;
  }
}
@media (min-width: 1500px) {
  .col-xxl-1 {
    display: block;
    width: 8.3333333333%;
  }
}
@media (min-width: 1500px) {
  .col-xxl-2 {
    display: block;
    width: 16.6666666667%;
  }
}
@media (min-width: 1500px) {
  .col-xxl-3 {
    display: block;
    width: 25%;
  }
}
@media (min-width: 1500px) {
  .col-xxl-4 {
    display: block;
    width: 33.3333333333%;
  }
}
@media (min-width: 1500px) {
  .col-xxl-5 {
    display: block;
    width: 41.6666666667%;
  }
}
@media (min-width: 1500px) {
  .col-xxl-6 {
    display: block;
    width: 50%;
  }
}
@media (min-width: 1500px) {
  .col-xxl-7 {
    display: block;
    width: 58.3333333333%;
  }
}
@media (min-width: 1500px) {
  .col-xxl-8 {
    display: block;
    width: 66.6666666667%;
  }
}
@media (min-width: 1500px) {
  .col-xxl-9 {
    display: block;
    width: 75%;
  }
}
@media (min-width: 1500px) {
  .col-xxl-10 {
    display: block;
    width: 83.3333333333%;
  }
}
@media (min-width: 1500px) {
  .col-xxl-11 {
    display: block;
    width: 91.6666666667%;
  }
}
@media (min-width: 1500px) {
  .col-xxl-12 {
    display: block;
    width: 100%;
  }
}

[class^=col-],
[class*=col-] {
  display: block;
}
@media (min-width: 0) {
  [class^=col-],
[class*=col-] {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (min-width: 576px) {
  [class^=col-],
[class*=col-] {
    padding-left: 12px;
    padding-right: 12px;
  }
}
@media (min-width: 768px) {
  [class^=col-],
[class*=col-] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (min-width: 1024px) {
  [class^=col-],
[class*=col-] {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (min-width: 1400px) {
  [class^=col-],
[class*=col-] {
    padding-left: 17px;
    padding-right: 17px;
  }
}
@media (min-width: 1500px) {
  [class^=col-],
[class*=col-] {
    padding-left: 18px;
    padding-right: 18px;
  }
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.no-gutters > .col,
.no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 576px) {
  .offset-sm-1 {
    margin-left: 8.3333333333%;
  }
}

@media (min-width: 576px) {
  .offset-sm-2 {
    margin-left: 16.6666666667%;
  }
}

@media (min-width: 576px) {
  .offset-sm-3 {
    margin-left: 25%;
  }
}

@media (min-width: 576px) {
  .offset-sm-4 {
    margin-left: 33.3333333333%;
  }
}

@media (min-width: 576px) {
  .offset-sm-5 {
    margin-left: 41.6666666667%;
  }
}

@media (min-width: 576px) {
  .offset-sm-6 {
    margin-left: 50%;
  }
}

@media (min-width: 576px) {
  .offset-sm-7 {
    margin-left: 58.3333333333%;
  }
}

@media (min-width: 576px) {
  .offset-sm-8 {
    margin-left: 66.6666666667%;
  }
}

@media (min-width: 576px) {
  .offset-sm-9 {
    margin-left: 75%;
  }
}

@media (min-width: 576px) {
  .offset-sm-10 {
    margin-left: 83.3333333333%;
  }
}

@media (min-width: 576px) {
  .offset-sm-11 {
    margin-left: 91.6666666667%;
  }
}

@media (min-width: 768px) {
  .offset-md-1 {
    margin-left: 8.3333333333%;
  }
}

@media (min-width: 768px) {
  .offset-md-2 {
    margin-left: 16.6666666667%;
  }
}

@media (min-width: 768px) {
  .offset-md-3 {
    margin-left: 25%;
  }
}

@media (min-width: 768px) {
  .offset-md-4 {
    margin-left: 33.3333333333%;
  }
}

@media (min-width: 768px) {
  .offset-md-5 {
    margin-left: 41.6666666667%;
  }
}

@media (min-width: 768px) {
  .offset-md-6 {
    margin-left: 50%;
  }
}

@media (min-width: 768px) {
  .offset-md-7 {
    margin-left: 58.3333333333%;
  }
}

@media (min-width: 768px) {
  .offset-md-8 {
    margin-left: 66.6666666667%;
  }
}

@media (min-width: 768px) {
  .offset-md-9 {
    margin-left: 75%;
  }
}

@media (min-width: 768px) {
  .offset-md-10 {
    margin-left: 83.3333333333%;
  }
}

@media (min-width: 768px) {
  .offset-md-11 {
    margin-left: 91.6666666667%;
  }
}

@media (min-width: 1024px) {
  .offset-lg-1 {
    margin-left: 8.3333333333%;
  }
}

@media (min-width: 1024px) {
  .offset-lg-2 {
    margin-left: 16.6666666667%;
  }
}

@media (min-width: 1024px) {
  .offset-lg-3 {
    margin-left: 25%;
  }
}

@media (min-width: 1024px) {
  .offset-lg-4 {
    margin-left: 33.3333333333%;
  }
}

@media (min-width: 1024px) {
  .offset-lg-5 {
    margin-left: 41.6666666667%;
  }
}

@media (min-width: 1024px) {
  .offset-lg-6 {
    margin-left: 50%;
  }
}

@media (min-width: 1024px) {
  .offset-lg-7 {
    margin-left: 58.3333333333%;
  }
}

@media (min-width: 1024px) {
  .offset-lg-8 {
    margin-left: 66.6666666667%;
  }
}

@media (min-width: 1024px) {
  .offset-lg-9 {
    margin-left: 75%;
  }
}

@media (min-width: 1024px) {
  .offset-lg-10 {
    margin-left: 83.3333333333%;
  }
}

@media (min-width: 1024px) {
  .offset-lg-11 {
    margin-left: 91.6666666667%;
  }
}

@media (min-width: 1400px) {
  .offset-xl-1 {
    margin-left: 8.3333333333%;
  }
}

@media (min-width: 1400px) {
  .offset-xl-2 {
    margin-left: 16.6666666667%;
  }
}

@media (min-width: 1400px) {
  .offset-xl-3 {
    margin-left: 25%;
  }
}

@media (min-width: 1400px) {
  .offset-xl-4 {
    margin-left: 33.3333333333%;
  }
}

@media (min-width: 1400px) {
  .offset-xl-5 {
    margin-left: 41.6666666667%;
  }
}

@media (min-width: 1400px) {
  .offset-xl-6 {
    margin-left: 50%;
  }
}

@media (min-width: 1400px) {
  .offset-xl-7 {
    margin-left: 58.3333333333%;
  }
}

@media (min-width: 1400px) {
  .offset-xl-8 {
    margin-left: 66.6666666667%;
  }
}

@media (min-width: 1400px) {
  .offset-xl-9 {
    margin-left: 75%;
  }
}

@media (min-width: 1400px) {
  .offset-xl-10 {
    margin-left: 83.3333333333%;
  }
}

@media (min-width: 1400px) {
  .offset-xl-11 {
    margin-left: 91.6666666667%;
  }
}

@media (min-width: 1500px) {
  .offset-xxl-1 {
    margin-left: 8.3333333333%;
  }
}

@media (min-width: 1500px) {
  .offset-xxl-2 {
    margin-left: 16.6666666667%;
  }
}

@media (min-width: 1500px) {
  .offset-xxl-3 {
    margin-left: 25%;
  }
}

@media (min-width: 1500px) {
  .offset-xxl-4 {
    margin-left: 33.3333333333%;
  }
}

@media (min-width: 1500px) {
  .offset-xxl-5 {
    margin-left: 41.6666666667%;
  }
}

@media (min-width: 1500px) {
  .offset-xxl-6 {
    margin-left: 50%;
  }
}

@media (min-width: 1500px) {
  .offset-xxl-7 {
    margin-left: 58.3333333333%;
  }
}

@media (min-width: 1500px) {
  .offset-xxl-8 {
    margin-left: 66.6666666667%;
  }
}

@media (min-width: 1500px) {
  .offset-xxl-9 {
    margin-left: 75%;
  }
}

@media (min-width: 1500px) {
  .offset-xxl-10 {
    margin-left: 83.3333333333%;
  }
}

@media (min-width: 1500px) {
  .offset-xxl-11 {
    margin-left: 91.6666666667%;
  }
}

.uppercase, table:not(.table-bordered) th, .xs-text-uppercase, .sm-text-uppercase, .md-text-uppercase, .lg-text-uppercase {
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.lg-text-light {
  font-size: 15px;
  letter-spacing: 0.02em;
  font-weight: 200;
  line-height: 170%;
}
@media (min-width: 768px) {
  .lg-text-light {
    font-size: 16px;
  }
}
@media (min-width: 1400px) {
  .lg-text-light {
    font-size: 18px;
  }
}
@media (min-width: 1400px) {
  .lg-text-light {
    line-height: 160%;
  }
}

.lg-text-normal {
  font-size: 15px;
  letter-spacing: 0.02em;
  font-weight: 400;
  line-height: 130%;
}
@media (min-width: 768px) {
  .lg-text-normal {
    font-size: 16px;
  }
}
@media (min-width: 1400px) {
  .lg-text-normal {
    font-size: 18px;
  }
}

.lg-text-medium {
  font-size: 15px;
  letter-spacing: 0.02em;
  font-weight: 500;
  line-height: 130%;
}
@media (min-width: 768px) {
  .lg-text-medium {
    font-size: 16px;
  }
}
@media (min-width: 1400px) {
  .lg-text-medium {
    font-size: 18px;
  }
}

.lg-text-bold {
  font-size: 15px;
  letter-spacing: 0.02em;
  font-weight: 600;
  line-height: 130%;
}
@media (min-width: 768px) {
  .lg-text-bold {
    font-size: 16px;
  }
}
@media (min-width: 1400px) {
  .lg-text-bold {
    font-size: 18px;
  }
}

.lg-text-uppercase {
  font-size: 15px;
  letter-spacing: 0.02em;
  line-height: 170%;
}
@media (min-width: 768px) {
  .lg-text-uppercase {
    font-size: 16px;
  }
}
@media (min-width: 1400px) {
  .lg-text-uppercase {
    font-size: 18px;
  }
}

.md-text-light {
  font-size: 14px;
  font-weight: 200;
  line-height: 150%;
  letter-spacing: 0.04em;
}
@media (min-width: 1400px) {
  .md-text-light {
    font-size: 16px;
  }
}
@media (min-width: 1400px) {
  .md-text-light {
    line-height: 160%;
  }
}

.md-text-normal {
  font-size: 14px;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: 0.02em;
}
@media (min-width: 1400px) {
  .md-text-normal {
    font-size: 16px;
  }
}

.md-text-medium {
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0.01em;
}
@media (min-width: 1400px) {
  .md-text-medium {
    font-size: 16px;
  }
}

.md-text-bold {
  font-size: 14px;
  font-weight: 600;
  line-height: 150%;
  letter-spacing: 0.02em;
}
@media (min-width: 1400px) {
  .md-text-bold {
    font-size: 16px;
  }
}
@media (min-width: 768px) {
  .md-text-bold {
    letter-spacing: 0.04em;
  }
}

.md-text-uppercase {
  font-size: 14px;
  line-height: 170%;
  letter-spacing: 0.02em;
}
@media (min-width: 1400px) {
  .md-text-uppercase {
    font-size: 16px;
  }
}
@media (min-width: 768px) {
  .md-text-uppercase {
    letter-spacing: 0.04em;
  }
}

.sm-text-light {
  font-size: 12px;
  font-weight: 200;
  line-height: 150%;
  letter-spacing: 0.04em;
}
@media (min-width: 768px) {
  .sm-text-light {
    font-size: 14px;
  }
}
@media (min-width: 1400px) {
  .sm-text-light {
    line-height: 160%;
    letter-spacing: 0.04em;
  }
}

.sm-text-normal {
  font-size: 12px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.02em;
}
@media (min-width: 768px) {
  .sm-text-normal {
    font-size: 14px;
  }
}
@media (min-width: 1400px) {
  .sm-text-normal {
    line-height: 160%;
  }
}

.sm-text-medium {
  font-size: 12px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0.02em;
}
@media (min-width: 768px) {
  .sm-text-medium {
    font-size: 14px;
  }
}
@media (min-width: 1400px) {
  .sm-text-medium {
    line-height: 170%;
  }
}

.sm-text-bold {
  font-size: 12px;
  font-weight: 600;
  line-height: 150%;
  letter-spacing: 0.02em;
}
@media (min-width: 768px) {
  .sm-text-bold {
    font-size: 14px;
  }
}
@media (min-width: 1400px) {
  .sm-text-bold {
    line-height: 170%;
  }
}

.sm-text-uppercase {
  font-size: 12px;
  line-height: 170%;
  letter-spacing: 0.02em;
}
@media (min-width: 768px) {
  .sm-text-uppercase {
    font-size: 14px;
  }
}
@media (min-width: 768px) {
  .sm-text-uppercase {
    letter-spacing: 0.04em;
  }
}
@media (min-width: 1400px) {
  .sm-text-uppercase {
    letter-spacing: 0.06em;
  }
}

.xs-text-light {
  font-size: 10px;
  font-weight: 200;
  line-height: 170%;
  letter-spacing: 0.04em;
}
@media (min-width: 1400px) {
  .xs-text-light {
    font-size: 12px;
  }
}

.xs-text-normal {
  font-size: 10px;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: 0.02em;
}
@media (min-width: 1400px) {
  .xs-text-normal {
    font-size: 12px;
  }
}
@media (min-width: 768px) {
  .xs-text-normal {
    letter-spacing: 0.04em;
  }
}
@media (min-width: 1400px) {
  .xs-text-normal {
    line-height: 150%;
  }
}

.xs-text-medium {
  font-size: 10px;
  font-weight: 500;
  line-height: 170%;
  letter-spacing: 0.02em;
}
@media (min-width: 1400px) {
  .xs-text-medium {
    font-size: 12px;
  }
}
@media (min-width: 1400px) {
  .xs-text-medium {
    line-height: 150%;
  }
}

.xs-text-bold {
  font-size: 10px;
  font-weight: 600;
  line-height: 170%;
  letter-spacing: 0.02em;
}
@media (min-width: 1400px) {
  .xs-text-bold {
    font-size: 12px;
  }
}
@media (min-width: 768px) {
  .xs-text-bold {
    letter-spacing: 0.04em;
  }
}
@media (min-width: 1400px) {
  .xs-text-bold {
    line-height: 150%;
  }
}

.xs-text-uppercase {
  font-size: 10px;
  line-height: 170%;
  letter-spacing: 0.02em;
}
@media (min-width: 1400px) {
  .xs-text-uppercase {
    font-size: 12px;
  }
}
@media (min-width: 768px) {
  .xs-text-uppercase {
    letter-spacing: 0.04em;
  }
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--accent);
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a, .h1 a, .h2 a, .h3 a, .h4 a, .h5 a, .h6 a {
  color: var(--accent);
}
h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover, .h1 a:hover, .h2 a:hover, .h3 a:hover, .h4 a:hover, .h5 a:hover, .h6 a:hover {
  text-decoration: none;
}

h2, h3, h4, h5, h6, .h2, .h3, .h4, .h5, .h6 {
  margin-top: 0;
  margin-bottom: 0.5em;
}

h1, .h1 {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: calc(1.375rem + 1.5vw);
  letter-spacing: -0.03em;
  margin-top: 0.5rem;
  margin-bottom: 0;
}
@media (min-width: 1400px) {
  h1, .h1 {
    font-size: 2.5em;
  }
}

h2, .h2 {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: calc(1.325rem + 0.9vw);
  letter-spacing: 0.015em;
  margin-bottom: 0.75em;
}
@media (min-width: 1400px) {
  h2, .h2 {
    font-size: 2rem;
    letter-spacing: -0.01em;
  }
}

h3, .h3 {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: calc(1.3rem + 0.6vw);
  letter-spacing: 0.01em;
}
@media (min-width: 1400px) {
  h3, .h3 {
    font-size: 1.75rem;
    letter-spacing: -0.02em;
  }
}

h4, .h4 {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: calc(1.275rem + 0.3vw);
  letter-spacing: 0.015em;
}
@media (min-width: 1400px) {
  h4, .h4 {
    font-size: 1.5rem;
    letter-spacing: -0.01em;
  }
}

h5, .h5 {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: 0.015em;
}

h6, .h6 {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.015em;
}

p {
  margin-bottom: 1.4em;
}

p, div {
  font-size: 14px;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: 0.02em;
}
@media (min-width: 1400px) {
  p, div {
    font-size: 16px;
  }
}

a {
  color: #de7a00;
  line-height: 140%;
}
a:hover {
  text-decoration: none;
}

ul, ol {
  margin-bottom: 1.5em;
}

ol {
  margin-left: 25px;
}
ol li {
  margin-bottom: 1em;
  line-height: 140%;
}
ol li::marker {
  color: #161D26;
}

ul {
  position: relative;
  list-style: none;
}
ul li {
  font-size: 14px;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: 0.02em;
  margin-bottom: 0.25rem;
}
@media (min-width: 1400px) {
  ul li {
    font-size: 16px;
  }
}

ul:not(.list-unstyled) {
  padding-left: 20px;
}
ul:not(.list-unstyled) li:before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  margin-top: 0.75rem;
  display: inline-block;
  left: 0;
  background: url("/img/icons/dots.svg") no-repeat;
}

*, html, body, div, p, li {
  font-family: "Inter", sans-serif;
}

a {
  color: inherit;
  font-size: inherit;
}
a:hover {
  text-decoration: none;
}

label {
  cursor: pointer;
}

.fw-bold {
  font-weight: bold;
}

.nowrap {
  white-space: nowrap;
  font-family: inherit;
}

small, .small {
  font-size: 0.75em !important;
}

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

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

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

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

@media (min-width: 576px) {
  .text-sm-right {
    text-align: right !important;
  }
}

@media (min-width: 576px) {
  .text-sm-center {
    text-align: center !important;
  }
}

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

@media (min-width: 768px) {
  .text-md-right {
    text-align: right !important;
  }
}

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

@media (min-width: 1024px) {
  .text-lg-left {
    text-align: left !important;
  }
}

@media (min-width: 1024px) {
  .text-lg-right {
    text-align: right !important;
  }
}

@media (min-width: 1024px) {
  .text-lg-center {
    text-align: center !important;
  }
}

@media (min-width: 1400px) {
  .text-xl-left {
    text-align: left !important;
  }
}

@media (min-width: 1400px) {
  .text-xl-right {
    text-align: right !important;
  }
}

@media (min-width: 1400px) {
  .text-xl-center {
    text-align: center !important;
  }
}

@media (min-width: 1500px) {
  .text-xxl-left {
    text-align: left !important;
  }
}

@media (min-width: 1500px) {
  .text-xxl-right {
    text-align: right !important;
  }
}

@media (min-width: 1500px) {
  .text-xxl-center {
    text-align: center !important;
  }
}

.white-bg-wrapper {
  background: white;
  padding: 40px 60px;
}

.bg-black {
  background-color: #161D26;
  color: white;
}

.bg-white {
  background-color: white;
}

.bg-accent {
  background-color: #de7a00;
}

.border-top {
  border-top: 1px solid rgb(107, 114, 128);
}

.list-unstyled {
  list-style: none;
}

ul.list-inline li {
  display: inline-block;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 576px) {
  .m-sm-0 {
    margin: 0 !important;
  }
  .mt-sm-0,
.my-sm-0 {
    margin-top: 0 !important;
  }
  .mb-sm-0,
.my-sm-0 {
    margin-bottom: 0 !important;
  }
  .mr-sm-0,
.mx-sm-0 {
    margin-right: 0 !important;
  }
  .ml-sm-0,
.mx-sm-0 {
    margin-left: 0 !important;
  }
}
@media (min-width: 576px) {
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .mt-sm-1,
.my-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mb-sm-1,
.my-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .mr-sm-1,
.mx-sm-1 {
    margin-right: 0.25rem !important;
  }
  .ml-sm-1,
.mx-sm-1 {
    margin-left: 0.25rem !important;
  }
}
@media (min-width: 576px) {
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .mt-sm-2,
.my-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mb-sm-2,
.my-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .mr-sm-2,
.mx-sm-2 {
    margin-right: 0.5rem !important;
  }
  .ml-sm-2,
.mx-sm-2 {
    margin-left: 0.5rem !important;
  }
}
@media (min-width: 576px) {
  .m-sm-3 {
    margin: 1rem !important;
  }
  .mt-sm-3,
.my-sm-3 {
    margin-top: 1rem !important;
  }
  .mb-sm-3,
.my-sm-3 {
    margin-bottom: 1rem !important;
  }
  .mr-sm-3,
.mx-sm-3 {
    margin-right: 1rem !important;
  }
  .ml-sm-3,
.mx-sm-3 {
    margin-left: 1rem !important;
  }
}
@media (min-width: 576px) {
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .mt-sm-4,
.my-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mb-sm-4,
.my-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .mr-sm-4,
.mx-sm-4 {
    margin-right: 1.5rem !important;
  }
  .ml-sm-4,
.mx-sm-4 {
    margin-left: 1.5rem !important;
  }
}
@media (min-width: 576px) {
  .m-sm-5 {
    margin: 3rem !important;
  }
  .mt-sm-5,
.my-sm-5 {
    margin-top: 3rem !important;
  }
  .mb-sm-5,
.my-sm-5 {
    margin-bottom: 3rem !important;
  }
  .mr-sm-5,
.mx-sm-5 {
    margin-right: 3rem !important;
  }
  .ml-sm-5,
.mx-sm-5 {
    margin-left: 3rem !important;
  }
}
@media (min-width: 576px) {
  .p-sm-0 {
    padding: 0 !important;
  }
  .pt-sm-0,
.py-sm-0 {
    padding-top: 0 !important;
  }
  .pb-sm-0,
.py-sm-0 {
    padding-bottom: 0 !important;
  }
  .pr-sm-0,
.px-sm-0 {
    padding-right: 0 !important;
  }
  .pl-sm-0,
.px-sm-0 {
    padding-left: 0 !important;
  }
}
@media (min-width: 576px) {
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .pt-sm-1,
.py-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pb-sm-1,
.py-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pr-sm-1,
.px-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pl-sm-1,
.px-sm-1 {
    padding-left: 0.25rem !important;
  }
}
@media (min-width: 576px) {
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .pt-sm-2,
.py-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pb-sm-2,
.py-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pr-sm-2,
.px-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pl-sm-2,
.px-sm-2 {
    padding-left: 0.5rem !important;
  }
}
@media (min-width: 576px) {
  .p-sm-3 {
    padding: 1rem !important;
  }
  .pt-sm-3,
.py-sm-3 {
    padding-top: 1rem !important;
  }
  .pb-sm-3,
.py-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pr-sm-3,
.px-sm-3 {
    padding-right: 1rem !important;
  }
  .pl-sm-3,
.px-sm-3 {
    padding-left: 1rem !important;
  }
}
@media (min-width: 576px) {
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .pt-sm-4,
.py-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pb-sm-4,
.py-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pr-sm-4,
.px-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pl-sm-4,
.px-sm-4 {
    padding-left: 1.5rem !important;
  }
}
@media (min-width: 576px) {
  .p-sm-5 {
    padding: 3rem !important;
  }
  .pt-sm-5,
.py-sm-5 {
    padding-top: 3rem !important;
  }
  .pb-sm-5,
.py-sm-5 {
    padding-bottom: 3rem !important;
  }
  .pr-sm-5,
.px-sm-5 {
    padding-right: 3rem !important;
  }
  .pl-sm-5,
.px-sm-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 768px) {
  .m-md-0 {
    margin: 0 !important;
  }
  .mt-md-0,
.my-md-0 {
    margin-top: 0 !important;
  }
  .mb-md-0,
.my-md-0 {
    margin-bottom: 0 !important;
  }
  .mr-md-0,
.mx-md-0 {
    margin-right: 0 !important;
  }
  .ml-md-0,
.mx-md-0 {
    margin-left: 0 !important;
  }
}
@media (min-width: 768px) {
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .mt-md-1,
.my-md-1 {
    margin-top: 0.25rem !important;
  }
  .mb-md-1,
.my-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .mr-md-1,
.mx-md-1 {
    margin-right: 0.25rem !important;
  }
  .ml-md-1,
.mx-md-1 {
    margin-left: 0.25rem !important;
  }
}
@media (min-width: 768px) {
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .mt-md-2,
.my-md-2 {
    margin-top: 0.5rem !important;
  }
  .mb-md-2,
.my-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .mr-md-2,
.mx-md-2 {
    margin-right: 0.5rem !important;
  }
  .ml-md-2,
.mx-md-2 {
    margin-left: 0.5rem !important;
  }
}
@media (min-width: 768px) {
  .m-md-3 {
    margin: 1rem !important;
  }
  .mt-md-3,
.my-md-3 {
    margin-top: 1rem !important;
  }
  .mb-md-3,
.my-md-3 {
    margin-bottom: 1rem !important;
  }
  .mr-md-3,
.mx-md-3 {
    margin-right: 1rem !important;
  }
  .ml-md-3,
.mx-md-3 {
    margin-left: 1rem !important;
  }
}
@media (min-width: 768px) {
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .mt-md-4,
.my-md-4 {
    margin-top: 1.5rem !important;
  }
  .mb-md-4,
.my-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .mr-md-4,
.mx-md-4 {
    margin-right: 1.5rem !important;
  }
  .ml-md-4,
.mx-md-4 {
    margin-left: 1.5rem !important;
  }
}
@media (min-width: 768px) {
  .m-md-5 {
    margin: 3rem !important;
  }
  .mt-md-5,
.my-md-5 {
    margin-top: 3rem !important;
  }
  .mb-md-5,
.my-md-5 {
    margin-bottom: 3rem !important;
  }
  .mr-md-5,
.mx-md-5 {
    margin-right: 3rem !important;
  }
  .ml-md-5,
.mx-md-5 {
    margin-left: 3rem !important;
  }
}
@media (min-width: 768px) {
  .p-md-0 {
    padding: 0 !important;
  }
  .pt-md-0,
.py-md-0 {
    padding-top: 0 !important;
  }
  .pb-md-0,
.py-md-0 {
    padding-bottom: 0 !important;
  }
  .pr-md-0,
.px-md-0 {
    padding-right: 0 !important;
  }
  .pl-md-0,
.px-md-0 {
    padding-left: 0 !important;
  }
}
@media (min-width: 768px) {
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .pt-md-1,
.py-md-1 {
    padding-top: 0.25rem !important;
  }
  .pb-md-1,
.py-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pr-md-1,
.px-md-1 {
    padding-right: 0.25rem !important;
  }
  .pl-md-1,
.px-md-1 {
    padding-left: 0.25rem !important;
  }
}
@media (min-width: 768px) {
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .pt-md-2,
.py-md-2 {
    padding-top: 0.5rem !important;
  }
  .pb-md-2,
.py-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pr-md-2,
.px-md-2 {
    padding-right: 0.5rem !important;
  }
  .pl-md-2,
.px-md-2 {
    padding-left: 0.5rem !important;
  }
}
@media (min-width: 768px) {
  .p-md-3 {
    padding: 1rem !important;
  }
  .pt-md-3,
.py-md-3 {
    padding-top: 1rem !important;
  }
  .pb-md-3,
.py-md-3 {
    padding-bottom: 1rem !important;
  }
  .pr-md-3,
.px-md-3 {
    padding-right: 1rem !important;
  }
  .pl-md-3,
.px-md-3 {
    padding-left: 1rem !important;
  }
}
@media (min-width: 768px) {
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .pt-md-4,
.py-md-4 {
    padding-top: 1.5rem !important;
  }
  .pb-md-4,
.py-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pr-md-4,
.px-md-4 {
    padding-right: 1.5rem !important;
  }
  .pl-md-4,
.px-md-4 {
    padding-left: 1.5rem !important;
  }
}
@media (min-width: 768px) {
  .p-md-5 {
    padding: 3rem !important;
  }
  .pt-md-5,
.py-md-5 {
    padding-top: 3rem !important;
  }
  .pb-md-5,
.py-md-5 {
    padding-bottom: 3rem !important;
  }
  .pr-md-5,
.px-md-5 {
    padding-right: 3rem !important;
  }
  .pl-md-5,
.px-md-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 1024px) {
  .m-lg-0 {
    margin: 0 !important;
  }
  .mt-lg-0,
.my-lg-0 {
    margin-top: 0 !important;
  }
  .mb-lg-0,
.my-lg-0 {
    margin-bottom: 0 !important;
  }
  .mr-lg-0,
.mx-lg-0 {
    margin-right: 0 !important;
  }
  .ml-lg-0,
.mx-lg-0 {
    margin-left: 0 !important;
  }
}
@media (min-width: 1024px) {
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .mt-lg-1,
.my-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mb-lg-1,
.my-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .mr-lg-1,
.mx-lg-1 {
    margin-right: 0.25rem !important;
  }
  .ml-lg-1,
.mx-lg-1 {
    margin-left: 0.25rem !important;
  }
}
@media (min-width: 1024px) {
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .mt-lg-2,
.my-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mb-lg-2,
.my-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .mr-lg-2,
.mx-lg-2 {
    margin-right: 0.5rem !important;
  }
  .ml-lg-2,
.mx-lg-2 {
    margin-left: 0.5rem !important;
  }
}
@media (min-width: 1024px) {
  .m-lg-3 {
    margin: 1rem !important;
  }
  .mt-lg-3,
.my-lg-3 {
    margin-top: 1rem !important;
  }
  .mb-lg-3,
.my-lg-3 {
    margin-bottom: 1rem !important;
  }
  .mr-lg-3,
.mx-lg-3 {
    margin-right: 1rem !important;
  }
  .ml-lg-3,
.mx-lg-3 {
    margin-left: 1rem !important;
  }
}
@media (min-width: 1024px) {
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .mt-lg-4,
.my-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mb-lg-4,
.my-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .mr-lg-4,
.mx-lg-4 {
    margin-right: 1.5rem !important;
  }
  .ml-lg-4,
.mx-lg-4 {
    margin-left: 1.5rem !important;
  }
}
@media (min-width: 1024px) {
  .m-lg-5 {
    margin: 3rem !important;
  }
  .mt-lg-5,
.my-lg-5 {
    margin-top: 3rem !important;
  }
  .mb-lg-5,
.my-lg-5 {
    margin-bottom: 3rem !important;
  }
  .mr-lg-5,
.mx-lg-5 {
    margin-right: 3rem !important;
  }
  .ml-lg-5,
.mx-lg-5 {
    margin-left: 3rem !important;
  }
}
@media (min-width: 1024px) {
  .p-lg-0 {
    padding: 0 !important;
  }
  .pt-lg-0,
.py-lg-0 {
    padding-top: 0 !important;
  }
  .pb-lg-0,
.py-lg-0 {
    padding-bottom: 0 !important;
  }
  .pr-lg-0,
.px-lg-0 {
    padding-right: 0 !important;
  }
  .pl-lg-0,
.px-lg-0 {
    padding-left: 0 !important;
  }
}
@media (min-width: 1024px) {
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .pt-lg-1,
.py-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pb-lg-1,
.py-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pr-lg-1,
.px-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pl-lg-1,
.px-lg-1 {
    padding-left: 0.25rem !important;
  }
}
@media (min-width: 1024px) {
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .pt-lg-2,
.py-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pb-lg-2,
.py-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pr-lg-2,
.px-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pl-lg-2,
.px-lg-2 {
    padding-left: 0.5rem !important;
  }
}
@media (min-width: 1024px) {
  .p-lg-3 {
    padding: 1rem !important;
  }
  .pt-lg-3,
.py-lg-3 {
    padding-top: 1rem !important;
  }
  .pb-lg-3,
.py-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pr-lg-3,
.px-lg-3 {
    padding-right: 1rem !important;
  }
  .pl-lg-3,
.px-lg-3 {
    padding-left: 1rem !important;
  }
}
@media (min-width: 1024px) {
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .pt-lg-4,
.py-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pb-lg-4,
.py-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pr-lg-4,
.px-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pl-lg-4,
.px-lg-4 {
    padding-left: 1.5rem !important;
  }
}
@media (min-width: 1024px) {
  .p-lg-5 {
    padding: 3rem !important;
  }
  .pt-lg-5,
.py-lg-5 {
    padding-top: 3rem !important;
  }
  .pb-lg-5,
.py-lg-5 {
    padding-bottom: 3rem !important;
  }
  .pr-lg-5,
.px-lg-5 {
    padding-right: 3rem !important;
  }
  .pl-lg-5,
.px-lg-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 1400px) {
  .m-xl-0 {
    margin: 0 !important;
  }
  .mt-xl-0,
.my-xl-0 {
    margin-top: 0 !important;
  }
  .mb-xl-0,
.my-xl-0 {
    margin-bottom: 0 !important;
  }
  .mr-xl-0,
.mx-xl-0 {
    margin-right: 0 !important;
  }
  .ml-xl-0,
.mx-xl-0 {
    margin-left: 0 !important;
  }
}
@media (min-width: 1400px) {
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .mt-xl-1,
.my-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mb-xl-1,
.my-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mr-xl-1,
.mx-xl-1 {
    margin-right: 0.25rem !important;
  }
  .ml-xl-1,
.mx-xl-1 {
    margin-left: 0.25rem !important;
  }
}
@media (min-width: 1400px) {
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .mt-xl-2,
.my-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mb-xl-2,
.my-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mr-xl-2,
.mx-xl-2 {
    margin-right: 0.5rem !important;
  }
  .ml-xl-2,
.mx-xl-2 {
    margin-left: 0.5rem !important;
  }
}
@media (min-width: 1400px) {
  .m-xl-3 {
    margin: 1rem !important;
  }
  .mt-xl-3,
.my-xl-3 {
    margin-top: 1rem !important;
  }
  .mb-xl-3,
.my-xl-3 {
    margin-bottom: 1rem !important;
  }
  .mr-xl-3,
.mx-xl-3 {
    margin-right: 1rem !important;
  }
  .ml-xl-3,
.mx-xl-3 {
    margin-left: 1rem !important;
  }
}
@media (min-width: 1400px) {
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .mt-xl-4,
.my-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mb-xl-4,
.my-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mr-xl-4,
.mx-xl-4 {
    margin-right: 1.5rem !important;
  }
  .ml-xl-4,
.mx-xl-4 {
    margin-left: 1.5rem !important;
  }
}
@media (min-width: 1400px) {
  .m-xl-5 {
    margin: 3rem !important;
  }
  .mt-xl-5,
.my-xl-5 {
    margin-top: 3rem !important;
  }
  .mb-xl-5,
.my-xl-5 {
    margin-bottom: 3rem !important;
  }
  .mr-xl-5,
.mx-xl-5 {
    margin-right: 3rem !important;
  }
  .ml-xl-5,
.mx-xl-5 {
    margin-left: 3rem !important;
  }
}
@media (min-width: 1400px) {
  .p-xl-0 {
    padding: 0 !important;
  }
  .pt-xl-0,
.py-xl-0 {
    padding-top: 0 !important;
  }
  .pb-xl-0,
.py-xl-0 {
    padding-bottom: 0 !important;
  }
  .pr-xl-0,
.px-xl-0 {
    padding-right: 0 !important;
  }
  .pl-xl-0,
.px-xl-0 {
    padding-left: 0 !important;
  }
}
@media (min-width: 1400px) {
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .pt-xl-1,
.py-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pb-xl-1,
.py-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pr-xl-1,
.px-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pl-xl-1,
.px-xl-1 {
    padding-left: 0.25rem !important;
  }
}
@media (min-width: 1400px) {
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .pt-xl-2,
.py-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pb-xl-2,
.py-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pr-xl-2,
.px-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pl-xl-2,
.px-xl-2 {
    padding-left: 0.5rem !important;
  }
}
@media (min-width: 1400px) {
  .p-xl-3 {
    padding: 1rem !important;
  }
  .pt-xl-3,
.py-xl-3 {
    padding-top: 1rem !important;
  }
  .pb-xl-3,
.py-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pr-xl-3,
.px-xl-3 {
    padding-right: 1rem !important;
  }
  .pl-xl-3,
.px-xl-3 {
    padding-left: 1rem !important;
  }
}
@media (min-width: 1400px) {
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .pt-xl-4,
.py-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pb-xl-4,
.py-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pr-xl-4,
.px-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pl-xl-4,
.px-xl-4 {
    padding-left: 1.5rem !important;
  }
}
@media (min-width: 1400px) {
  .p-xl-5 {
    padding: 3rem !important;
  }
  .pt-xl-5,
.py-xl-5 {
    padding-top: 3rem !important;
  }
  .pb-xl-5,
.py-xl-5 {
    padding-bottom: 3rem !important;
  }
  .pr-xl-5,
.px-xl-5 {
    padding-right: 3rem !important;
  }
  .pl-xl-5,
.px-xl-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 1500px) {
  .m-xxl-0 {
    margin: 0 !important;
  }
  .mt-xxl-0,
.my-xxl-0 {
    margin-top: 0 !important;
  }
  .mb-xxl-0,
.my-xxl-0 {
    margin-bottom: 0 !important;
  }
  .mr-xxl-0,
.mx-xxl-0 {
    margin-right: 0 !important;
  }
  .ml-xxl-0,
.mx-xxl-0 {
    margin-left: 0 !important;
  }
}
@media (min-width: 1500px) {
  .m-xxl-1 {
    margin: 0.25rem !important;
  }
  .mt-xxl-1,
.my-xxl-1 {
    margin-top: 0.25rem !important;
  }
  .mb-xxl-1,
.my-xxl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mr-xxl-1,
.mx-xxl-1 {
    margin-right: 0.25rem !important;
  }
  .ml-xxl-1,
.mx-xxl-1 {
    margin-left: 0.25rem !important;
  }
}
@media (min-width: 1500px) {
  .m-xxl-2 {
    margin: 0.5rem !important;
  }
  .mt-xxl-2,
.my-xxl-2 {
    margin-top: 0.5rem !important;
  }
  .mb-xxl-2,
.my-xxl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mr-xxl-2,
.mx-xxl-2 {
    margin-right: 0.5rem !important;
  }
  .ml-xxl-2,
.mx-xxl-2 {
    margin-left: 0.5rem !important;
  }
}
@media (min-width: 1500px) {
  .m-xxl-3 {
    margin: 1rem !important;
  }
  .mt-xxl-3,
.my-xxl-3 {
    margin-top: 1rem !important;
  }
  .mb-xxl-3,
.my-xxl-3 {
    margin-bottom: 1rem !important;
  }
  .mr-xxl-3,
.mx-xxl-3 {
    margin-right: 1rem !important;
  }
  .ml-xxl-3,
.mx-xxl-3 {
    margin-left: 1rem !important;
  }
}
@media (min-width: 1500px) {
  .m-xxl-4 {
    margin: 1.5rem !important;
  }
  .mt-xxl-4,
.my-xxl-4 {
    margin-top: 1.5rem !important;
  }
  .mb-xxl-4,
.my-xxl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mr-xxl-4,
.mx-xxl-4 {
    margin-right: 1.5rem !important;
  }
  .ml-xxl-4,
.mx-xxl-4 {
    margin-left: 1.5rem !important;
  }
}
@media (min-width: 1500px) {
  .m-xxl-5 {
    margin: 3rem !important;
  }
  .mt-xxl-5,
.my-xxl-5 {
    margin-top: 3rem !important;
  }
  .mb-xxl-5,
.my-xxl-5 {
    margin-bottom: 3rem !important;
  }
  .mr-xxl-5,
.mx-xxl-5 {
    margin-right: 3rem !important;
  }
  .ml-xxl-5,
.mx-xxl-5 {
    margin-left: 3rem !important;
  }
}
@media (min-width: 1500px) {
  .p-xxl-0 {
    padding: 0 !important;
  }
  .pt-xxl-0,
.py-xxl-0 {
    padding-top: 0 !important;
  }
  .pb-xxl-0,
.py-xxl-0 {
    padding-bottom: 0 !important;
  }
  .pr-xxl-0,
.px-xxl-0 {
    padding-right: 0 !important;
  }
  .pl-xxl-0,
.px-xxl-0 {
    padding-left: 0 !important;
  }
}
@media (min-width: 1500px) {
  .p-xxl-1 {
    padding: 0.25rem !important;
  }
  .pt-xxl-1,
.py-xxl-1 {
    padding-top: 0.25rem !important;
  }
  .pb-xxl-1,
.py-xxl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pr-xxl-1,
.px-xxl-1 {
    padding-right: 0.25rem !important;
  }
  .pl-xxl-1,
.px-xxl-1 {
    padding-left: 0.25rem !important;
  }
}
@media (min-width: 1500px) {
  .p-xxl-2 {
    padding: 0.5rem !important;
  }
  .pt-xxl-2,
.py-xxl-2 {
    padding-top: 0.5rem !important;
  }
  .pb-xxl-2,
.py-xxl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pr-xxl-2,
.px-xxl-2 {
    padding-right: 0.5rem !important;
  }
  .pl-xxl-2,
.px-xxl-2 {
    padding-left: 0.5rem !important;
  }
}
@media (min-width: 1500px) {
  .p-xxl-3 {
    padding: 1rem !important;
  }
  .pt-xxl-3,
.py-xxl-3 {
    padding-top: 1rem !important;
  }
  .pb-xxl-3,
.py-xxl-3 {
    padding-bottom: 1rem !important;
  }
  .pr-xxl-3,
.px-xxl-3 {
    padding-right: 1rem !important;
  }
  .pl-xxl-3,
.px-xxl-3 {
    padding-left: 1rem !important;
  }
}
@media (min-width: 1500px) {
  .p-xxl-4 {
    padding: 1.5rem !important;
  }
  .pt-xxl-4,
.py-xxl-4 {
    padding-top: 1.5rem !important;
  }
  .pb-xxl-4,
.py-xxl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pr-xxl-4,
.px-xxl-4 {
    padding-right: 1.5rem !important;
  }
  .pl-xxl-4,
.px-xxl-4 {
    padding-left: 1.5rem !important;
  }
}
@media (min-width: 1500px) {
  .p-xxl-5 {
    padding: 3rem !important;
  }
  .pt-xxl-5,
.py-xxl-5 {
    padding-top: 3rem !important;
  }
  .pb-xxl-5,
.py-xxl-5 {
    padding-bottom: 3rem !important;
  }
  .pr-xxl-5,
.px-xxl-5 {
    padding-right: 3rem !important;
  }
  .pl-xxl-5,
.px-xxl-5 {
    padding-left: 3rem !important;
  }
}
.hidden {
  visibility: hidden;
}

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

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

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

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

@media (min-width: 576px) {
  .d-sm-block {
    display: block !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-none {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .d-md-block {
    display: block !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-none {
    display: none !important;
  }
}
@media (min-width: 1024px) {
  .d-lg-block {
    display: block !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-none {
    display: none !important;
  }
}
@media (min-width: 1400px) {
  .d-xl-block {
    display: block !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-none {
    display: none !important;
  }
}
@media (min-width: 1500px) {
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-inline-block {
    display: inline-block !important;
  }
  .d-xxl-flex {
    display: flex !important;
  }
  .d-xxl-none {
    display: none !important;
  }
}
.flex-row-sa {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.rounded-2 {
  border-radius: 4px;
}

.fade-enter-active,
.fade-leave-active {
  transition: opacity 0.5s cubic-bezier(0.35, 0, 0, 1.01);
}

.fade-enter,
.fade-leave-to {
  opacity: 0;
}

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

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

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

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

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

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

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

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

@media (min-width: 576px) {
  .order-sm-first {
    order: -1 !important;
  }
}

@media (min-width: 576px) {
  .order-sm-0 {
    order: 0 !important;
  }
}

@media (min-width: 576px) {
  .order-sm-1 {
    order: 1 !important;
  }
}

@media (min-width: 576px) {
  .order-sm-2 {
    order: 2 !important;
  }
}

@media (min-width: 576px) {
  .order-sm-3 {
    order: 3 !important;
  }
}

@media (min-width: 576px) {
  .order-sm-4 {
    order: 4 !important;
  }
}

@media (min-width: 576px) {
  .order-sm-5 {
    order: 5 !important;
  }
}

@media (min-width: 576px) {
  .order-sm-last {
    order: 6 !important;
  }
}

@media (min-width: 768px) {
  .order-md-first {
    order: -1 !important;
  }
}

@media (min-width: 768px) {
  .order-md-0 {
    order: 0 !important;
  }
}

@media (min-width: 768px) {
  .order-md-1 {
    order: 1 !important;
  }
}

@media (min-width: 768px) {
  .order-md-2 {
    order: 2 !important;
  }
}

@media (min-width: 768px) {
  .order-md-3 {
    order: 3 !important;
  }
}

@media (min-width: 768px) {
  .order-md-4 {
    order: 4 !important;
  }
}

@media (min-width: 768px) {
  .order-md-5 {
    order: 5 !important;
  }
}

@media (min-width: 768px) {
  .order-md-last {
    order: 6 !important;
  }
}

@media (min-width: 1024px) {
  .order-lg-first {
    order: -1 !important;
  }
}

@media (min-width: 1024px) {
  .order-lg-0 {
    order: 0 !important;
  }
}

@media (min-width: 1024px) {
  .order-lg-1 {
    order: 1 !important;
  }
}

@media (min-width: 1024px) {
  .order-lg-2 {
    order: 2 !important;
  }
}

@media (min-width: 1024px) {
  .order-lg-3 {
    order: 3 !important;
  }
}

@media (min-width: 1024px) {
  .order-lg-4 {
    order: 4 !important;
  }
}

@media (min-width: 1024px) {
  .order-lg-5 {
    order: 5 !important;
  }
}

@media (min-width: 1024px) {
  .order-lg-last {
    order: 6 !important;
  }
}

@media (min-width: 1400px) {
  .order-xl-first {
    order: -1 !important;
  }
}

@media (min-width: 1400px) {
  .order-xl-0 {
    order: 0 !important;
  }
}

@media (min-width: 1400px) {
  .order-xl-1 {
    order: 1 !important;
  }
}

@media (min-width: 1400px) {
  .order-xl-2 {
    order: 2 !important;
  }
}

@media (min-width: 1400px) {
  .order-xl-3 {
    order: 3 !important;
  }
}

@media (min-width: 1400px) {
  .order-xl-4 {
    order: 4 !important;
  }
}

@media (min-width: 1400px) {
  .order-xl-5 {
    order: 5 !important;
  }
}

@media (min-width: 1400px) {
  .order-xl-last {
    order: 6 !important;
  }
}

@media (min-width: 1500px) {
  .order-xxl-first {
    order: -1 !important;
  }
}

@media (min-width: 1500px) {
  .order-xxl-0 {
    order: 0 !important;
  }
}

@media (min-width: 1500px) {
  .order-xxl-1 {
    order: 1 !important;
  }
}

@media (min-width: 1500px) {
  .order-xxl-2 {
    order: 2 !important;
  }
}

@media (min-width: 1500px) {
  .order-xxl-3 {
    order: 3 !important;
  }
}

@media (min-width: 1500px) {
  .order-xxl-4 {
    order: 4 !important;
  }
}

@media (min-width: 1500px) {
  .order-xxl-5 {
    order: 5 !important;
  }
}

@media (min-width: 1500px) {
  .order-xxl-last {
    order: 6 !important;
  }
}

.w-100 {
  width: 100%;
}

.h-100 {
  height: 100%;
}

.w-50__exclude-gutter {
  width: calc(50% - 20px);
}
@media (min-width: 576px) {
  .w-50__exclude-gutter {
    width: calc(50% - 24px);
  }
}
@media (min-width: 768px) {
  .w-50__exclude-gutter {
    width: calc(50% - 30px);
  }
}
@media (min-width: 1024px) {
  .w-50__exclude-gutter {
    width: calc(50% - 32px);
  }
}
@media (min-width: 1400px) {
  .w-50__exclude-gutter {
    width: calc(50% - 34px);
  }
}
@media (min-width: 1500px) {
  .w-50__exclude-gutter {
    width: calc(50% - 36px);
  }
}

.w-50__include-gutter {
  width: calc(50% + 20px);
}
@media (min-width: 576px) {
  .w-50__include-gutter {
    width: calc(50% + 24px);
  }
}
@media (min-width: 768px) {
  .w-50__include-gutter {
    width: calc(50% + 30px);
  }
}
@media (min-width: 1024px) {
  .w-50__include-gutter {
    width: calc(50% + 32px);
  }
}
@media (min-width: 1400px) {
  .w-50__include-gutter {
    width: calc(50% + 34px);
  }
}
@media (min-width: 1500px) {
  .w-50__include-gutter {
    width: calc(50% + 36px);
  }
}

.alert {
  position: relative;
  padding: 16px 24px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  line-height: 150%;
  letter-spacing: 0.02em;
}
@media (min-width: 1400px) {
  .alert {
    font-size: 16px;
  }
}
@media (min-width: 768px) {
  .alert {
    letter-spacing: 0.04em;
  }
}

.alert-primary {
  background-color: rgb(186, 230, 253);
  border-color: rgb(125, 211, 252);
  color: rgb(30, 64, 175);
  font-weight: bold;
}

.badge {
  display: inline-block;
  padding: 0.35em 0.65em;
  color: white;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.375em;
  text-decoration: none;
}
.badge:empty {
  display: none;
}

h1 .badge, h2 .badge, h3 .badge, h4 .badge, h5 .badge, h6 .badge, .h1 .badge, .h2 .badge, .h3 .badge, .h4 .badge, .h5 .badge, .h6 .badge {
  font-size: 0.75em;
}

.btn-blue-rounded, .btn {
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  text-decoration: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0.01em;
}
@media (min-width: 1400px) {
  .btn-blue-rounded, .btn {
    font-size: 16px;
  }
}
.btn-blue-rounded:hover, .btn:hover {
  text-decoration: none;
}
.btn-blue-rounded:focus, .btn:focus {
  outline: none;
}

.btn {
  color: white;
  background-color: transparent;
  border: 4px solid transparent;
  padding: 0.375em 0.75em;
  border-radius: 4px;
  transition: background-color 0.5s cubic-bezier(0.35, 0, 0, 1.01);
}
.btn:hover {
  transition: background-color 0.5s cubic-bezier(0.35, 0, 0, 1.01);
}
.btn.btn-primary {
  background-color: rgb(37, 99, 235);
}
.btn.btn-primary:hover {
  background-color: rgb(29, 78, 216);
}
.btn.btn-primary-inverse {
  background: var(--white);
  border: 2px solid var(--blue-600);
  color: var(--blue-600);
}
.btn.btn-primary-inverse:hover {
  background-color: var(--blue-600);
  color: var(--white);
}

input {
  font-size: 12px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0.02em;
  border: 1px solid var(--gray-400);
  padding: 14px 16px;
  width: 100%;
  transition: border-color 0.5s cubic-bezier(0.35, 0, 0, 1.01);
}
@media (min-width: 768px) {
  input {
    font-size: 14px;
  }
}
@media (min-width: 1400px) {
  input {
    line-height: 170%;
  }
}
input:focus, input:active {
  border-color: var(--gray-800);
  transition: border-color 0.5s cubic-bezier(0.35, 0, 0, 1.01);
}
input::-moz-placeholder {
  color: var(--gray-400);
}
input:-ms-input-placeholder {
  color: var(--gray-400);
}
input::placeholder {
  color: var(--gray-400);
}

.component__input__add-bs-icon-to-label, .component__input__phone__label, .component__input__name__label, .component__input__email__label {
  position: relative;
}
.component__input__add-bs-icon-to-label:after, .component__input__phone__label:after, .component__input__name__label:after, .component__input__email__label:after {
  color: var(--gray-800);
  display: inline-block;
  position: absolute;
  font-family: "bootstrap-icons", serif !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -0.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.component__input__add-bs-icon-to-label input, .component__input__phone__label input, .component__input__name__label input, .component__input__email__label input {
  padding-left: 45px !important;
}

.component__label:after {
  color: var(--gray-800);
}

.component__dark .component__label:after {
  color: var(--gray-400);
}
.component__dark .component__input {
  color: var(--gray-400);
  border-color: var(--gray-800);
  transition: border-color 0.5s cubic-bezier(0.35, 0, 0, 1.01);
}
.component__dark .component__input:focus, .component__dark .component__input:active {
  border-color: var(--gray-800);
  transition: border-color 0.5s cubic-bezier(0.35, 0, 0, 1.01);
}
.component__dark .component__input::-moz-placeholder {
  color: var(--gray-800);
}
.component__dark .component__input:-ms-input-placeholder {
  color: var(--gray-800);
}
.component__dark .component__input::placeholder {
  color: var(--gray-800);
}

.component__input__email__label:after {
  content: "\f32c";
  top: 3px;
  left: 16px;
}

.component__input__name__label:after {
  content: "\f4e1";
  top: 3px;
  left: 16px;
}

.component__input__phone__label:after {
  content: "\f5c1";
  top: 3px;
  left: 16px;
}

table {
  width: 100%;
  margin-bottom: 1.5em;
}
table th, table td {
  color: var(--black);
  padding: 0.5em;
}
table th {
  font-size: 12px;
  font-weight: 600;
  line-height: 150%;
  letter-spacing: 0.02em;
}
@media (min-width: 768px) {
  table th {
    font-size: 14px;
  }
}
@media (min-width: 1400px) {
  table th {
    line-height: 170%;
  }
}
table td {
  font-size: 12px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.02em;
  text-align: right;
}
@media (min-width: 768px) {
  table td {
    font-size: 14px;
  }
}
@media (min-width: 1400px) {
  table td {
    line-height: 160%;
  }
}
table td a {
  color: var(--black);
  transition: color 0.5s cubic-bezier(0.35, 0, 0, 1.01);
}
table td a:hover {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.5s cubic-bezier(0.35, 0, 0, 1.01);
}

table:not(.table-bordered) {
  border-spacing: 0 10px;
  border-collapse: separate;
}
table:not(.table-bordered) th {
  font-size: 12px;
  line-height: 170%;
  letter-spacing: 0.02em;
  text-align: left;
  vertical-align: bottom;
}
@media (min-width: 768px) {
  table:not(.table-bordered) th {
    font-size: 14px;
  }
}
@media (min-width: 768px) {
  table:not(.table-bordered) th {
    letter-spacing: 0.04em;
  }
}
@media (min-width: 1400px) {
  table:not(.table-bordered) th {
    letter-spacing: 0.06em;
  }
}
table:not(.table-bordered) th[scope=row] {
  background: white;
  text-align: left;
  vertical-align: middle;
  padding-left: 20px;
}
table:not(.table-bordered) td {
  text-align: left;
  vertical-align: middle;
  background: white;
  padding: 12px 20px;
}

table.table-bordered > :not(caption) > * {
  border-width: 1px 0;
  border-color: var(--gray-400);
  border-style: solid;
}
table.table-bordered > :not(caption) > * > * {
  border-width: 0 1px;
  border-color: var(--gray-400);
  border-style: solid;
}

.header-top-line {
  display: grid;
  grid-template-columns: 123px 150px 150px 150px 150px auto auto;
  grid-column-gap: 30px;
}
.header-top-line .header-top-line__menu-item {
  font-size: 10px;
  font-weight: 600;
  line-height: 170%;
  letter-spacing: 0.02em;
  text-align: center;
  margin-top: 10px;
}
@media (min-width: 1400px) {
  .header-top-line .header-top-line__menu-item {
    font-size: 12px;
  }
}
@media (min-width: 768px) {
  .header-top-line .header-top-line__menu-item {
    letter-spacing: 0.04em;
  }
}
@media (min-width: 1400px) {
  .header-top-line .header-top-line__menu-item {
    line-height: 150%;
  }
}
.header-top-line .header-top-line__menu-item a {
  text-decoration: none;
}
.header-top-line .header-top-line__work-time,
.header-top-line .header-top-line__phones {
  align-self: center;
}
.header-top-line .header-top-line__work-time {
  font-size: 10px;
  font-weight: 500;
  line-height: 170%;
  letter-spacing: 0.02em;
  margin-bottom: 0;
  text-align: center;
}
@media (min-width: 1400px) {
  .header-top-line .header-top-line__work-time {
    font-size: 12px;
  }
}
@media (min-width: 1400px) {
  .header-top-line .header-top-line__work-time {
    line-height: 150%;
  }
}
.header-top-line .header-top-line__phones {
  text-align: right;
}
.header-top-line .header-top-line__phones a {
  text-decoration: none;
}
.header-top-line .header-top-line__phones .phone-800 {
  font-size: 20px;
  font-weight: 600;
}

.bottom-menu {
  display: flex;
  flex-direction: row;
}
.bottom-menu .bottom-menu__item {
  display: flex;
  justify-content: space-around;
  width: 100%;
  font-size: 12px;
  font-weight: 600;
  line-height: 150%;
  letter-spacing: 0.02em;
}
@media (min-width: 768px) {
  .bottom-menu .bottom-menu__item {
    font-size: 14px;
  }
}
@media (min-width: 1400px) {
  .bottom-menu .bottom-menu__item {
    line-height: 170%;
  }
}
.bottom-menu .bottom-menu__item a {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-decoration: none;
}
.bottom-menu .bottom-menu__item a:hover {
  color: var(--accent);
}
.bottom-menu .bottom-menu__item img {
  width: 27px;
  display: inline-block;
  margin-right: 5px;
}

.breadcrumb {
  display: flex;
  font-size: 12px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.02em;
  list-style: none;
  padding: 0.6rem 1rem;
  margin-bottom: 30px;
  margin-top: 20px;
  margin-left: 0;
  background: var(--gray-100);
  color: var(--gray-500);
}
@media (min-width: 768px) {
  .breadcrumb {
    font-size: 14px;
  }
}
@media (min-width: 1400px) {
  .breadcrumb {
    line-height: 160%;
  }
}
.breadcrumb li {
  margin-bottom: 0;
  font-size: 10px;
  font-weight: 500;
  line-height: 170%;
  letter-spacing: 0.02em;
}
@media (min-width: 1400px) {
  .breadcrumb li {
    font-size: 12px;
  }
}
@media (min-width: 1400px) {
  .breadcrumb li {
    line-height: 150%;
  }
}

.breadcrumbs_separator {
  margin: -1px 7px;
}

.left-sidebar, .right-sidebar {
  margin-top: 20px;
}
.left-sidebar p, .right-sidebar p {
  margin-bottom: 0.75em;
  line-height: 90%;
}
.left-sidebar .kns ul, .left-sidebar .livnevka ul, .left-sidebar .ochistka ul, .left-sidebar .last-news ul, .left-sidebar .menu-right_sidebar-container ul, .right-sidebar .kns ul, .right-sidebar .livnevka ul, .right-sidebar .ochistka ul, .right-sidebar .last-news ul, .right-sidebar .menu-right_sidebar-container ul {
  padding-left: 15px;
  margin-bottom: 0.5rem;
}
.left-sidebar .kns ul li, .left-sidebar .livnevka ul li, .left-sidebar .ochistka ul li, .left-sidebar .last-news ul li, .left-sidebar .menu-right_sidebar-container ul li, .right-sidebar .kns ul li, .right-sidebar .livnevka ul li, .right-sidebar .ochistka ul li, .right-sidebar .last-news ul li, .right-sidebar .menu-right_sidebar-container ul li {
  list-style-image: url("/img/icons/icon_bullet10.png");
  line-height: 90%;
}
.left-sidebar .kns ul li:before, .left-sidebar .livnevka ul li:before, .left-sidebar .ochistka ul li:before, .left-sidebar .last-news ul li:before, .left-sidebar .menu-right_sidebar-container ul li:before, .right-sidebar .kns ul li:before, .right-sidebar .livnevka ul li:before, .right-sidebar .ochistka ul li:before, .right-sidebar .last-news ul li:before, .right-sidebar .menu-right_sidebar-container ul li:before {
  content: "";
  display: none;
}
.left-sidebar .kns ul li a, .left-sidebar .livnevka ul li a, .left-sidebar .ochistka ul li a, .left-sidebar .last-news ul li a, .left-sidebar .menu-right_sidebar-container ul li a, .right-sidebar .kns ul li a, .right-sidebar .livnevka ul li a, .right-sidebar .ochistka ul li a, .right-sidebar .last-news ul li a, .right-sidebar .menu-right_sidebar-container ul li a {
  text-decoration: none;
}
.left-sidebar .kns ul li a:hover, .left-sidebar .livnevka ul li a:hover, .left-sidebar .ochistka ul li a:hover, .left-sidebar .last-news ul li a:hover, .left-sidebar .menu-right_sidebar-container ul li a:hover, .right-sidebar .kns ul li a:hover, .right-sidebar .livnevka ul li a:hover, .right-sidebar .ochistka ul li a:hover, .right-sidebar .last-news ul li a:hover, .right-sidebar .menu-right_sidebar-container ul li a:hover {
  color: var(--accent);
}
.left-sidebar h6, .right-sidebar h6 {
  font-size: 12px;
  font-weight: 600;
  line-height: 150%;
  letter-spacing: 0.02em;
}
@media (min-width: 768px) {
  .left-sidebar h6, .right-sidebar h6 {
    font-size: 14px;
  }
}
@media (min-width: 1400px) {
  .left-sidebar h6, .right-sidebar h6 {
    line-height: 170%;
  }
}
.left-sidebar li a, .left-sidebar p, .right-sidebar li a, .right-sidebar p {
  font-size: 10px;
  font-weight: 500;
  line-height: 170%;
  letter-spacing: 0.02em;
  line-height: 80%;
}
@media (min-width: 1400px) {
  .left-sidebar li a, .left-sidebar p, .right-sidebar li a, .right-sidebar p {
    font-size: 12px;
  }
}
@media (min-width: 1400px) {
  .left-sidebar li a, .left-sidebar p, .right-sidebar li a, .right-sidebar p {
    line-height: 150%;
  }
}
.left-sidebar nav ul, .right-sidebar nav ul {
  padding-left: 0;
}
.left-sidebar nav ul li, .right-sidebar nav ul li {
  margin-bottom: 0;
}
.left-sidebar nav ul li:before, .right-sidebar nav ul li:before {
  display: none;
}
.left-sidebar nav ul li a, .right-sidebar nav ul li a {
  font-size: 10px;
  font-weight: 600;
  line-height: 170%;
  letter-spacing: 0.02em;
  text-decoration: none;
}
@media (min-width: 1400px) {
  .left-sidebar nav ul li a, .right-sidebar nav ul li a {
    font-size: 12px;
  }
}
@media (min-width: 768px) {
  .left-sidebar nav ul li a, .right-sidebar nav ul li a {
    letter-spacing: 0.04em;
  }
}
@media (min-width: 1400px) {
  .left-sidebar nav ul li a, .right-sidebar nav ul li a {
    line-height: 150%;
  }
}
.left-sidebar nav ul li a:hover, .right-sidebar nav ul li a:hover {
  color: var(--accent);
}

.before-footer-shortcode p, .before-footer-shortcode li {
  font-size: 12px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.02em;
}
@media (min-width: 768px) {
  .before-footer-shortcode p, .before-footer-shortcode li {
    font-size: 14px;
  }
}
@media (min-width: 1400px) {
  .before-footer-shortcode p, .before-footer-shortcode li {
    line-height: 160%;
  }
}
.before-footer-shortcode ul li:before {
  margin-top: 0.5em;
}

.inpage-links {
  margin-bottom: 20px;
}
.inpage-links p, .inpage-links li, .inpage-links a {
  font-size: 12px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0.02em;
}
@media (min-width: 768px) {
  .inpage-links p, .inpage-links li, .inpage-links a {
    font-size: 14px;
  }
}
@media (min-width: 1400px) {
  .inpage-links p, .inpage-links li, .inpage-links a {
    line-height: 170%;
  }
}
.inpage-links p {
  margin-bottom: 10px;
}
.inpage-links a {
  text-decoration: none;
}
.inpage-links a:hover {
  color: var(--accent);
}

.kns-news-shortcode p {
  font-size: 12px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.02em;
}
@media (min-width: 768px) {
  .kns-news-shortcode p {
    font-size: 14px;
  }
}
@media (min-width: 1400px) {
  .kns-news-shortcode p {
    line-height: 160%;
  }
}

.links-ochistka * {
  font-size: 10px;
  font-weight: 600;
  line-height: 170%;
  letter-spacing: 0.02em;
}
@media (min-width: 1400px) {
  .links-ochistka * {
    font-size: 12px;
  }
}
@media (min-width: 768px) {
  .links-ochistka * {
    letter-spacing: 0.04em;
  }
}
@media (min-width: 1400px) {
  .links-ochistka * {
    line-height: 150%;
  }
}

.fp_news-list {
  margin-bottom: 5px;
}
.fp_news-list li {
  margin-bottom: 0;
}
.fp_news-list a {
  font-size: 12px;
  font-weight: 600;
  line-height: 150%;
  letter-spacing: 0.02em;
  text-decoration: none;
}
@media (min-width: 768px) {
  .fp_news-list a {
    font-size: 14px;
  }
}
@media (min-width: 1400px) {
  .fp_news-list a {
    line-height: 170%;
  }
}
.fp_news-list a:hover {
  color: var(--accent);
}

footer {
  padding-bottom: 20px;
}
footer a {
  text-decoration: none;
}
footer ul li {
  margin-bottom: 0.25em;
  line-height: 1;
}
footer ul li a {
  font-size: 10px;
  font-weight: 500;
  line-height: 170%;
  letter-spacing: 0.02em;
  line-height: 140%;
}
@media (min-width: 1400px) {
  footer ul li a {
    font-size: 12px;
  }
}
@media (min-width: 1400px) {
  footer ul li a {
    line-height: 150%;
  }
}
footer ul li a:hover {
  color: var(--accent);
}
footer .copy {
  margin-top: 20px;
  font-size: 10px;
  font-weight: 500;
  line-height: 170%;
  letter-spacing: 0.02em;
  color: var(--secondary);
}
@media (min-width: 1400px) {
  footer .copy {
    font-size: 12px;
  }
}
@media (min-width: 1400px) {
  footer .copy {
    line-height: 150%;
  }
}
footer .privacy-links a {
  font-size: 10px;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: 0.02em;
}
@media (min-width: 1400px) {
  footer .privacy-links a {
    font-size: 12px;
  }
}
@media (min-width: 768px) {
  footer .privacy-links a {
    letter-spacing: 0.04em;
  }
}
@media (min-width: 1400px) {
  footer .privacy-links a {
    line-height: 150%;
  }
}
footer .privacy-links a:hover {
  color: var(--accent);
}

.to-top {
  margin-bottom: 50px;
  display: inline-block;
}

body {
  background: var(--white);
  color: var(--black);
}

html, body {
  scroll-behavior: smooth;
}

.border-left-dotted {
  border-left: 1px dotted rgb(156, 163, 175);
}

.border-right-dotted {
  border-right: 1px dotted rgb(156, 163, 175);
}
/*# sourceMappingURL=styles.css.map */
