@charset "UTF-8";
:root {
  --color-primary: #00004d;
  --color-secondary: #2b6cb0;
  --color-success: #28a745;
  --color-danger: #dc3545;
  --color-warning: #ffc107;
  --color-info: #17a2b8;
  --color-light: #f8f9fa;
  --color-gray: #cacdd0;
  --color-dark: #252729;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-link: #00004d;
  --color-text: #333;
  --color-background: #F7FAFC;
  --color-accent: #eff6fc;
  --color-highlight: #f8f693;
  --font-size-base: 16px;
  --font-size-sm: 14px;
  --font-size-lg: 20px;
}

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

:where(ul, ol):where([class]) {
  padding-left: 0;
}

:where(blockquote, figure):where([class]) {
  margin: 0;
}

:where(h1, h2, h3, h4, h5, h6, p, ul, ol, dl):where([class]) {
  margin-block: 0;
}

:where(dd[class]) {
  margin-left: 0;
}

:where(fieldset[class]) {
  margin-left: 0;
  padding: 0;
  border: none;
}

:where(ul[class]) {
  list-style: none;
}

p {
  margin-block: 0;
}

p:where(:not([class]):not(:last-child)) {
  margin-bottom: 24px;
}

img:where(:not([class])) {
  display: block;
  max-width: 100%;
}

input,
textarea,
select,
button {
  font: inherit;
}

svg *[fill] {
  fill: currentColor;
}

svg *[stroke] {
  stroke: currentColor;
}

svg * {
  -webkit-transition-property: fill, stroke;
  transition-property: fill, stroke;
}

@media (prefers-reduced-motion: reduce) {
  * {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100%;
}

html {
  height: 100%;
  scroll-behavior: smooth;
  font-size: 100%;
}

body {
  margin: 0;
  min-height: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "Roboto Condensed", sans-serif;
  font-size: var(--font-size-base);
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-text);
  background-color: var(--color-background);
  text-rendering: optimizeSpeed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

h1 {
  font-size: 40px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 16px;
}

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

a {
  color: #00004d;
  text-decoration: none;
  -webkit-transition: color all 0.2s ease-in-out;
  transition: color all 0.2s ease-in-out;
}
a:hover, a:focus {
  color: rgb(0, 0, 0.5);
  text-decoration: underline;
}

ul, ol {
  padding-left: 1.5rem;
  margin-top: 0;
  margin-bottom: 1rem;
}

li {
  margin-bottom: 0.25rem;
}

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

hr {
  margin: 1.5rem 0;
  border: 0;
  border-top: 1px solid #dee2e6;
}

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

button {
  cursor: pointer;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
}

th,
td {
  padding: 0.5rem;
  border: 1px solid #dee2e6;
  text-align: left;
}

th {
  background-color: #f8f9fa;
  font-weight: 700;
}

blockquote {
  margin: 0 0 1rem;
  padding: 1rem;
  border-left: 4px solid #00004d;
  background-color: #f8f9fa;
}
blockquote footer {
  margin-top: 0.5rem;
  font-size: 14px;
  color: #6c757d;
}
blockquote footer::before {
  content: "— ";
}

code {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 14px;
  color: #dc3545;
  background-color: #f8f9fa;
  padding: 2px 4px;
  border-radius: 0.2rem;
}

pre {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 14px;
  background-color: #f8f9fa;
  padding: 1rem;
  border-radius: 0.25rem;
  overflow-x: auto;
}
pre code {
  background-color: transparent;
  padding: 0;
  color: inherit;
}

::-moz-selection {
  background-color: rgba(0, 0, 77, 0.2);
  color: #333;
}

::selection {
  background-color: rgba(0, 0, 77, 0.2);
  color: #333;
}

:focus-visible {
  outline: 2px solid #00004d;
  outline-offset: 2px;
}

iframe,
embed,
object {
  max-width: 100%;
}

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

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

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

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

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

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

@media (min-width: 768px) {
  html {
    font-size: 106.25%;
  }
}
@media (min-width: 992px) {
  html {
    font-size: 112.5%;
  }
}
[class*=__container],
.container {
  width: 100%;
  max-width: 1370px;
  margin: 0 auto;
  padding-right: 15px;
  padding-left: 15px;
}
@media (max-width: 1199.98px) {
  [class*=__container],
  .container {
    max-width: 100%;
  }
}

[class*=__container-sm],
.container-sm {
  max-width: 570px;
}

[class*=__container-md],
.container-md {
  max-width: 750px;
}

[class*=__container-lg],
.container-lg {
  max-width: 990px;
}

[class*=__container-fluid],
.container-fluid {
  max-width: 100%;
}

[class*=__row],
.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin-right: -15px;
  margin-left: -15px;
  gap: 30px;
  height: 100%;
  min-height: 1px;
}

[class*=__col],
.col {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
  padding-right: 15px;
  padding-left: 15px;
  height: 100%;
}

[class*=__col-auto],
.col-auto {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
}

[class*=__col-1],
.col-1 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 8.3333333333%;
}

[class*=__col-2],
.col-2 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 16.6666666667%;
}

[class*=__col-3],
.col-3 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 25%;
}

[class*=__col-4],
.col-4 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 33.3333333333%;
}

[class*=__col-5],
.col-5 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 41.6666666667%;
}

[class*=__col-6],
.col-6 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 50%;
}

[class*=__col-7],
.col-7 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 58.3333333333%;
}

[class*=__col-8],
.col-8 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 66.6666666667%;
}

[class*=__col-9],
.col-9 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 75%;
}

[class*=__col-10],
.col-10 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 83.3333333333%;
}

[class*=__col-11],
.col-11 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 91.6666666667%;
}

[class*=__col-12],
.col-12 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
}

@media (min-width: 576px) {
  [class*=__container-sm],
  .container-sm {
    max-width: 570px;
  }
  [class*=__col-sm],
  .col-sm {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
  }
  [class*=__col-sm-auto],
  .col-sm-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  [class*=__col-sm-1],
  .col-sm-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.3333333333%;
  }
  [class*=__col-sm-2],
  .col-sm-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.6666666667%;
  }
  [class*=__col-sm-3],
  .col-sm-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  [class*=__col-sm-4],
  .col-sm-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.3333333333%;
  }
  [class*=__col-sm-5],
  .col-sm-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.6666666667%;
  }
  [class*=__col-sm-6],
  .col-sm-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  [class*=__col-sm-7],
  .col-sm-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.3333333333%;
  }
  [class*=__col-sm-8],
  .col-sm-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.6666666667%;
  }
  [class*=__col-sm-9],
  .col-sm-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }
  [class*=__col-sm-10],
  .col-sm-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.3333333333%;
  }
  [class*=__col-sm-11],
  .col-sm-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.6666666667%;
  }
  [class*=__col-sm-12],
  .col-sm-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  [class*=__offset-sm-0],
  .offset-sm-0 {
    margin-left: 0%;
  }
  [class*=__offset-sm-1],
  .offset-sm-1 {
    margin-left: 8.3333333333%;
  }
  [class*=__offset-sm-2],
  .offset-sm-2 {
    margin-left: 16.6666666667%;
  }
  [class*=__offset-sm-3],
  .offset-sm-3 {
    margin-left: 25%;
  }
  [class*=__offset-sm-4],
  .offset-sm-4 {
    margin-left: 33.3333333333%;
  }
  [class*=__offset-sm-5],
  .offset-sm-5 {
    margin-left: 41.6666666667%;
  }
  [class*=__offset-sm-6],
  .offset-sm-6 {
    margin-left: 50%;
  }
  [class*=__offset-sm-7],
  .offset-sm-7 {
    margin-left: 58.3333333333%;
  }
  [class*=__offset-sm-8],
  .offset-sm-8 {
    margin-left: 66.6666666667%;
  }
  [class*=__offset-sm-9],
  .offset-sm-9 {
    margin-left: 75%;
  }
  [class*=__offset-sm-10],
  .offset-sm-10 {
    margin-left: 83.3333333333%;
  }
  [class*=__offset-sm-11],
  .offset-sm-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 768px) {
  [class*=__container-md],
  .container-md {
    max-width: 750px;
  }
  [class*=__col-md],
  .col-md {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
  }
  [class*=__col-md-auto],
  .col-md-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  [class*=__col-md-1],
  .col-md-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.3333333333%;
  }
  [class*=__col-md-2],
  .col-md-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.6666666667%;
  }
  [class*=__col-md-3],
  .col-md-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  [class*=__col-md-4],
  .col-md-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.3333333333%;
  }
  [class*=__col-md-5],
  .col-md-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.6666666667%;
  }
  [class*=__col-md-6],
  .col-md-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  [class*=__col-md-7],
  .col-md-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.3333333333%;
  }
  [class*=__col-md-8],
  .col-md-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.6666666667%;
  }
  [class*=__col-md-9],
  .col-md-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }
  [class*=__col-md-10],
  .col-md-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.3333333333%;
  }
  [class*=__col-md-11],
  .col-md-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.6666666667%;
  }
  [class*=__col-md-12],
  .col-md-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  [class*=__offset-md-0],
  .offset-md-0 {
    margin-left: 0%;
  }
  [class*=__offset-md-1],
  .offset-md-1 {
    margin-left: 8.3333333333%;
  }
  [class*=__offset-md-2],
  .offset-md-2 {
    margin-left: 16.6666666667%;
  }
  [class*=__offset-md-3],
  .offset-md-3 {
    margin-left: 25%;
  }
  [class*=__offset-md-4],
  .offset-md-4 {
    margin-left: 33.3333333333%;
  }
  [class*=__offset-md-5],
  .offset-md-5 {
    margin-left: 41.6666666667%;
  }
  [class*=__offset-md-6],
  .offset-md-6 {
    margin-left: 50%;
  }
  [class*=__offset-md-7],
  .offset-md-7 {
    margin-left: 58.3333333333%;
  }
  [class*=__offset-md-8],
  .offset-md-8 {
    margin-left: 66.6666666667%;
  }
  [class*=__offset-md-9],
  .offset-md-9 {
    margin-left: 75%;
  }
  [class*=__offset-md-10],
  .offset-md-10 {
    margin-left: 83.3333333333%;
  }
  [class*=__offset-md-11],
  .offset-md-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 992px) {
  [class*=__container-lg],
  .container-lg {
    max-width: 990px;
  }
  [class*=__col-lg],
  .col-lg {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
  }
  [class*=__col-lg-auto],
  .col-lg-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  [class*=__col-lg-1],
  .col-lg-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.3333333333%;
  }
  [class*=__col-lg-2],
  .col-lg-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.6666666667%;
  }
  [class*=__col-lg-3],
  .col-lg-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  [class*=__col-lg-4],
  .col-lg-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.3333333333%;
  }
  [class*=__col-lg-5],
  .col-lg-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.6666666667%;
  }
  [class*=__col-lg-6],
  .col-lg-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  [class*=__col-lg-7],
  .col-lg-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.3333333333%;
  }
  [class*=__col-lg-8],
  .col-lg-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.6666666667%;
  }
  [class*=__col-lg-9],
  .col-lg-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }
  [class*=__col-lg-10],
  .col-lg-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.3333333333%;
  }
  [class*=__col-lg-11],
  .col-lg-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.6666666667%;
  }
  [class*=__col-lg-12],
  .col-lg-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  [class*=__offset-lg-0],
  .offset-lg-0 {
    margin-left: 0%;
  }
  [class*=__offset-lg-1],
  .offset-lg-1 {
    margin-left: 8.3333333333%;
  }
  [class*=__offset-lg-2],
  .offset-lg-2 {
    margin-left: 16.6666666667%;
  }
  [class*=__offset-lg-3],
  .offset-lg-3 {
    margin-left: 25%;
  }
  [class*=__offset-lg-4],
  .offset-lg-4 {
    margin-left: 33.3333333333%;
  }
  [class*=__offset-lg-5],
  .offset-lg-5 {
    margin-left: 41.6666666667%;
  }
  [class*=__offset-lg-6],
  .offset-lg-6 {
    margin-left: 50%;
  }
  [class*=__offset-lg-7],
  .offset-lg-7 {
    margin-left: 58.3333333333%;
  }
  [class*=__offset-lg-8],
  .offset-lg-8 {
    margin-left: 66.6666666667%;
  }
  [class*=__offset-lg-9],
  .offset-lg-9 {
    margin-left: 75%;
  }
  [class*=__offset-lg-10],
  .offset-lg-10 {
    margin-left: 83.3333333333%;
  }
  [class*=__offset-lg-11],
  .offset-lg-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 1200px) {
  [class*=__container-xl],
  .container-xl {
    max-width: 1370px;
  }
  [class*=__col-xl],
  .col-xl {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
  }
  [class*=__col-xl-auto],
  .col-xl-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  [class*=__col-xl-1],
  .col-xl-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.3333333333%;
  }
  [class*=__col-xl-2],
  .col-xl-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.6666666667%;
  }
  [class*=__col-xl-3],
  .col-xl-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  [class*=__col-xl-4],
  .col-xl-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.3333333333%;
  }
  [class*=__col-xl-5],
  .col-xl-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.6666666667%;
  }
  [class*=__col-xl-6],
  .col-xl-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  [class*=__col-xl-7],
  .col-xl-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.3333333333%;
  }
  [class*=__col-xl-8],
  .col-xl-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.6666666667%;
  }
  [class*=__col-xl-9],
  .col-xl-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }
  [class*=__col-xl-10],
  .col-xl-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.3333333333%;
  }
  [class*=__col-xl-11],
  .col-xl-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.6666666667%;
  }
  [class*=__col-xl-12],
  .col-xl-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  [class*=__offset-xl-0],
  .offset-xl-0 {
    margin-left: 0%;
  }
  [class*=__offset-xl-1],
  .offset-xl-1 {
    margin-left: 8.3333333333%;
  }
  [class*=__offset-xl-2],
  .offset-xl-2 {
    margin-left: 16.6666666667%;
  }
  [class*=__offset-xl-3],
  .offset-xl-3 {
    margin-left: 25%;
  }
  [class*=__offset-xl-4],
  .offset-xl-4 {
    margin-left: 33.3333333333%;
  }
  [class*=__offset-xl-5],
  .offset-xl-5 {
    margin-left: 41.6666666667%;
  }
  [class*=__offset-xl-6],
  .offset-xl-6 {
    margin-left: 50%;
  }
  [class*=__offset-xl-7],
  .offset-xl-7 {
    margin-left: 58.3333333333%;
  }
  [class*=__offset-xl-8],
  .offset-xl-8 {
    margin-left: 66.6666666667%;
  }
  [class*=__offset-xl-9],
  .offset-xl-9 {
    margin-left: 75%;
  }
  [class*=__offset-xl-10],
  .offset-xl-10 {
    margin-left: 83.3333333333%;
  }
  [class*=__offset-xl-11],
  .offset-xl-11 {
    margin-left: 91.6666666667%;
  }
}
[class*=__row-no-gutters],
.row-no-gutters {
  margin-right: 0;
  margin-left: 0;
}
[class*=__row-no-gutters] > [class*=__col],
[class*=__row-no-gutters] > .col,
.row-no-gutters > [class*=__col],
.row-no-gutters > .col {
  padding-right: 0;
  padding-left: 0;
}

[class*=__row-align-start],
.row-align-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

[class*=__row-align-center],
.row-align-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

[class*=__row-align-end],
.row-align-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

[class*=__row-justify-start],
.row-justify-start {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

[class*=__row-justify-center],
.row-justify-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

[class*=__row-justify-end],
.row-justify-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

[class*=__row-justify-between],
.row-justify-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

[class*=__row-justify-around],
.row-justify-around {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

[class*=__col-align-start],
.col-align-start {
  -ms-flex-item-align: start;
      align-self: flex-start;
}

[class*=__col-align-center],
.col-align-center {
  -ms-flex-item-align: center;
      align-self: center;
}

[class*=__col-align-end],
.col-align-end {
  -ms-flex-item-align: end;
      align-self: flex-end;
}

[class*=__order-1],
.order-1 {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

[class*=__order-2],
.order-2 {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

[class*=__order-3],
.order-3 {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

[class*=__order-4],
.order-4 {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
}

[class*=__order-5],
.order-5 {
  -webkit-box-ordinal-group: 6;
      -ms-flex-order: 5;
          order: 5;
}

[class*=__order-6],
.order-6 {
  -webkit-box-ordinal-group: 7;
      -ms-flex-order: 6;
          order: 6;
}

[class*=__order-7],
.order-7 {
  -webkit-box-ordinal-group: 8;
      -ms-flex-order: 7;
          order: 7;
}

[class*=__order-8],
.order-8 {
  -webkit-box-ordinal-group: 9;
      -ms-flex-order: 8;
          order: 8;
}

[class*=__order-9],
.order-9 {
  -webkit-box-ordinal-group: 10;
      -ms-flex-order: 9;
          order: 9;
}

[class*=__order-10],
.order-10 {
  -webkit-box-ordinal-group: 11;
      -ms-flex-order: 10;
          order: 10;
}

[class*=__order-11],
.order-11 {
  -webkit-box-ordinal-group: 12;
      -ms-flex-order: 11;
          order: 11;
}

[class*=__order-12],
.order-12 {
  -webkit-box-ordinal-group: 13;
      -ms-flex-order: 12;
          order: 12;
}

@media (min-width: 576px) {
  [class*=__order-sm-1],
  .order-sm-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  [class*=__order-sm-2],
  .order-sm-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  [class*=__order-sm-3],
  .order-sm-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  [class*=__order-sm-4],
  .order-sm-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  [class*=__order-sm-5],
  .order-sm-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  [class*=__order-sm-6],
  .order-sm-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  [class*=__order-sm-7],
  .order-sm-7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  [class*=__order-sm-8],
  .order-sm-8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
  [class*=__order-sm-9],
  .order-sm-9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
  [class*=__order-sm-10],
  .order-sm-10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
  [class*=__order-sm-11],
  .order-sm-11 {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }
  [class*=__order-sm-12],
  .order-sm-12 {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }
}
@media (min-width: 768px) {
  [class*=__order-md-1],
  .order-md-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  [class*=__order-md-2],
  .order-md-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  [class*=__order-md-3],
  .order-md-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  [class*=__order-md-4],
  .order-md-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  [class*=__order-md-5],
  .order-md-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  [class*=__order-md-6],
  .order-md-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  [class*=__order-md-7],
  .order-md-7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  [class*=__order-md-8],
  .order-md-8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
  [class*=__order-md-9],
  .order-md-9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
  [class*=__order-md-10],
  .order-md-10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
  [class*=__order-md-11],
  .order-md-11 {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }
  [class*=__order-md-12],
  .order-md-12 {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }
}
@media (min-width: 992px) {
  [class*=__order-lg-1],
  .order-lg-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  [class*=__order-lg-2],
  .order-lg-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  [class*=__order-lg-3],
  .order-lg-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  [class*=__order-lg-4],
  .order-lg-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  [class*=__order-lg-5],
  .order-lg-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  [class*=__order-lg-6],
  .order-lg-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  [class*=__order-lg-7],
  .order-lg-7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  [class*=__order-lg-8],
  .order-lg-8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
  [class*=__order-lg-9],
  .order-lg-9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
  [class*=__order-lg-10],
  .order-lg-10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
  [class*=__order-lg-11],
  .order-lg-11 {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }
  [class*=__order-lg-12],
  .order-lg-12 {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }
}
@media (min-width: 1200px) {
  [class*=__order-xl-1],
  .order-xl-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  [class*=__order-xl-2],
  .order-xl-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  [class*=__order-xl-3],
  .order-xl-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  [class*=__order-xl-4],
  .order-xl-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  [class*=__order-xl-5],
  .order-xl-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  [class*=__order-xl-6],
  .order-xl-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  [class*=__order-xl-7],
  .order-xl-7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  [class*=__order-xl-8],
  .order-xl-8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
  [class*=__order-xl-9],
  .order-xl-9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
  [class*=__order-xl-10],
  .order-xl-10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
  [class*=__order-xl-11],
  .order-xl-11 {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }
  [class*=__order-xl-12],
  .order-xl-12 {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }
}
[class*=__d-none],
.d-none {
  display: none !important;
}

[class*=__d-block],
.d-block {
  display: block !important;
}

[class*=__d-flex],
.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

[class*=__d-inline],
.d-inline {
  display: inline !important;
}

[class*=__d-inline-block],
.d-inline-block {
  display: inline-block !important;
}

[class*=__d-xs-none],
.d-xs-none {
  display: none !important;
}

[class*=__d-xs-block],
.d-xs-block {
  display: block !important;
}

[class*=__d-xs-flex],
.d-xs-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

[class*=__d-xs-inline],
.d-xs-inline {
  display: inline !important;
}

[class*=__d-xs-inline-block],
.d-xs-inline-block {
  display: inline-block !important;
}

@media (min-width: 576px) {
  [class*=__d-sm-none],
  .d-sm-none {
    display: none !important;
  }
  [class*=__d-sm-block],
  .d-sm-block {
    display: block !important;
  }
  [class*=__d-sm-flex],
  .d-sm-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  [class*=__d-sm-inline],
  .d-sm-inline {
    display: inline !important;
  }
  [class*=__d-sm-inline-block],
  .d-sm-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 768px) {
  [class*=__d-md-none],
  .d-md-none {
    display: none !important;
  }
  [class*=__d-md-block],
  .d-md-block {
    display: block !important;
  }
  [class*=__d-md-flex],
  .d-md-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  [class*=__d-md-inline],
  .d-md-inline {
    display: inline !important;
  }
  [class*=__d-md-inline-block],
  .d-md-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 992px) {
  [class*=__d-lg-none],
  .d-lg-none {
    display: none !important;
  }
  [class*=__d-lg-block],
  .d-lg-block {
    display: block !important;
  }
  [class*=__d-lg-flex],
  .d-lg-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  [class*=__d-lg-inline],
  .d-lg-inline {
    display: inline !important;
  }
  [class*=__d-lg-inline-block],
  .d-lg-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 1200px) {
  [class*=__d-xl-none],
  .d-xl-none {
    display: none !important;
  }
  [class*=__d-xl-block],
  .d-xl-block {
    display: block !important;
  }
  [class*=__d-xl-flex],
  .d-xl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  [class*=__d-xl-inline],
  .d-xl-inline {
    display: inline !important;
  }
  [class*=__d-xl-inline-block],
  .d-xl-inline-block {
    display: inline-block !important;
  }
}
[class*=__flex-row],
.flex-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

[class*=__flex-column],
.flex-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

[class*=__flex-row-reverse],
.flex-row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

[class*=__flex-column-reverse],
.flex-column-reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

[class*=__flex-wrap],
.flex-wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

[class*=__flex-nowrap],
.flex-nowrap {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

[class*=__flex-grow-1],
.flex-grow-1 {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

[class*=__flex-shrink-1],
.flex-shrink-1 {
  -ms-flex-negative: 1;
      flex-shrink: 1;
}

[class*=__flex-grow-0],
.flex-grow-0 {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}

[class*=__flex-shrink-0],
.flex-shrink-0 {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.grid-1 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.grid-6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}

.grid-7 {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 24px;
}

.grid-8 {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 24px;
}

.grid-9 {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 24px;
}

.grid-10 {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 24px;
}

.grid-11 {
  display: grid;
  grid-template-columns: repeat(11, 1fr);
  gap: 24px;
}

.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px 30px;
  font-size: var(--font-size-base);
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  position: relative;
  overflow: hidden;
}
.btn--primary {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: #ffffff;
}
.btn--primary:hover:not(:disabled) {
  background-color: darken-color(#00004d, 10%);
  border-color: darken-color(#00004d, 10%);
  color: rgb(229.5, 229.5, 229.5);
}
.btn--primary:focus {
  outline: none;
  -webkit-box-shadow: 0 0 0 3px rgba(0, 0, 77, 0.25);
          box-shadow: 0 0 0 3px rgba(0, 0, 77, 0.25);
}
.btn--secondary {
  background-color: var(--color-secondary);
  border-color: var(--color-secondary);
  color: #ffffff;
}
.btn--secondary:hover:not(:disabled) {
  background-color: darken-color(#2b6cb0, 10%);
  border-color: darken-color(#2b6cb0, 10%);
  color: rgb(229.5, 229.5, 229.5);
}
.btn--secondary:focus {
  outline: none;
  -webkit-box-shadow: 0 0 0 3px rgba(43, 108, 176, 0.25);
          box-shadow: 0 0 0 3px rgba(43, 108, 176, 0.25);
}
.btn--success {
  background-color: var(--color-success);
  border-color: var(--color-success);
  color: #ffffff;
}
.btn--success:hover:not(:disabled) {
  background-color: darken-color(#28a745, 10%);
  border-color: darken-color(#28a745, 10%);
  color: rgb(229.5, 229.5, 229.5);
}
.btn--success:focus {
  outline: none;
  -webkit-box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.25);
          box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.25);
}
.btn--danger {
  background-color: var(--color-danger);
  border-color: var(--color-danger);
  color: #ffffff;
}
.btn--danger:hover:not(:disabled) {
  background-color: darken-color(#dc3545, 10%);
  border-color: darken-color(#dc3545, 10%);
  color: rgb(229.5, 229.5, 229.5);
}
.btn--danger:focus {
  outline: none;
  -webkit-box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.25);
          box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.25);
}
.btn--warning {
  background-color: var(--color-warning);
  border-color: var(--color-warning);
  color: #ffffff;
}
.btn--warning:hover:not(:disabled) {
  background-color: darken-color(#ffc107, 10%);
  border-color: darken-color(#ffc107, 10%);
  color: rgb(229.5, 229.5, 229.5);
}
.btn--warning:focus {
  outline: none;
  -webkit-box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.25);
          box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.25);
}
.btn--info {
  background-color: var(--color-info);
  border-color: var(--color-info);
  color: #ffffff;
}
.btn--info:hover:not(:disabled) {
  background-color: darken-color(#17a2b8, 10%);
  border-color: darken-color(#17a2b8, 10%);
  color: rgb(229.5, 229.5, 229.5);
}
.btn--info:focus {
  outline: none;
  -webkit-box-shadow: 0 0 0 3px rgba(23, 162, 184, 0.25);
          box-shadow: 0 0 0 3px rgba(23, 162, 184, 0.25);
}
.btn--light {
  background-color: var(--color-light);
  border-color: var(--color-light);
  color: var(--color-dark);
}
.btn--light:hover:not(:disabled) {
  background-color: darken-color(#f8f9fa, 10%);
  border-color: darken-color(#f8f9fa, 10%);
  color: var(--color-dark);
}
.btn--light:focus {
  outline: none;
  -webkit-box-shadow: 0 0 0 3px rgba(248, 249, 250, 0.25);
          box-shadow: 0 0 0 3px rgba(248, 249, 250, 0.25);
}
.btn--dark {
  background-color: var(--color-dark);
  border-color: var(--color-dark);
  color: #ffffff;
}
.btn--dark:hover:not(:disabled) {
  background-color: darken-color(#252729, 10%);
  border-color: darken-color(#252729, 10%);
  color: rgb(229.5, 229.5, 229.5);
}
.btn--dark:focus {
  outline: none;
  -webkit-box-shadow: 0 0 0 3px rgba(37, 39, 41, 0.25);
          box-shadow: 0 0 0 3px rgba(37, 39, 41, 0.25);
}
.btn--sm {
  padding: spacing(1) spacing(2);
}
.btn--lg {
  padding: spacing(3) spacing(6);
  font-size: 20px;
}
.btn--outline {
  background-color: transparent;
}
.btn--outline-primary {
  color: #00004d;
  border-color: #00004d;
}
.btn--outline-primary:hover:not(:disabled) {
  background-color: #00004d;
  color: white;
}
.btn--outline-secondary {
  color: #2b6cb0;
  border-color: #2b6cb0;
}
.btn--outline-secondary:hover:not(:disabled) {
  background-color: #2b6cb0;
  color: white;
}
.btn--outline-success {
  color: #28a745;
  border-color: #28a745;
}
.btn--outline-success:hover:not(:disabled) {
  background-color: #28a745;
  color: white;
}
.btn--outline-danger {
  color: #dc3545;
  border-color: #dc3545;
}
.btn--outline-danger:hover:not(:disabled) {
  background-color: #dc3545;
  color: white;
}
.btn--outline-warning {
  color: #ffc107;
  border-color: #ffc107;
}
.btn--outline-warning:hover:not(:disabled) {
  background-color: #ffc107;
  color: white;
}
.btn--outline-info {
  color: #17a2b8;
  border-color: #17a2b8;
}
.btn--outline-info:hover:not(:disabled) {
  background-color: #17a2b8;
  color: white;
}
.btn--outline-light {
  color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn--outline-light:hover:not(:disabled) {
  background-color: #f8f9fa;
  color: var(--color-dark);
}
.btn--outline-gray {
  color: #cacdd0;
  border-color: #cacdd0;
}
.btn--outline-gray:hover:not(:disabled) {
  background-color: #cacdd0;
  color: var(--color-dark);
}
.btn--outline-dark {
  color: #252729;
  border-color: #252729;
}
.btn--outline-dark:hover:not(:disabled) {
  background-color: #252729;
  color: white;
}
.btn--outline-white {
  color: #ffffff;
  border-color: #ffffff;
}
.btn--outline-white:hover:not(:disabled) {
  background-color: #ffffff;
  color: var(--color-dark);
}
.btn--outline-black {
  color: #000000;
  border-color: #000000;
}
.btn--outline-black:hover:not(:disabled) {
  background-color: #000000;
  color: white;
}
.btn--outline-link {
  color: #00004d;
  border-color: #00004d;
}
.btn--outline-link:hover:not(:disabled) {
  background-color: #00004d;
  color: white;
}
.btn--outline-text {
  color: #333;
  border-color: #333;
}
.btn--outline-text:hover:not(:disabled) {
  background-color: #333;
  color: white;
}
.btn--outline-background {
  color: #F7FAFC;
  border-color: #F7FAFC;
}
.btn--outline-background:hover:not(:disabled) {
  background-color: #F7FAFC;
  color: var(--color-dark);
}
.btn--outline-accent {
  color: #eff6fc;
  border-color: #eff6fc;
}
.btn--outline-accent:hover:not(:disabled) {
  background-color: #eff6fc;
  color: var(--color-dark);
}
.btn--outline-highlight {
  color: #f8f693;
  border-color: #f8f693;
}
.btn--outline-highlight:hover:not(:disabled) {
  background-color: #f8f693;
  color: var(--color-dark);
}
.btn--ghost {
  background-color: transparent;
  border-color: transparent;
}
.btn--ghost-primary {
  color: #00004d;
}
.btn--ghost-primary:hover:not(:disabled) {
  background-color: rgba(0, 0, 77, 0.1);
}
.btn--ghost-secondary {
  color: #2b6cb0;
}
.btn--ghost-secondary:hover:not(:disabled) {
  background-color: rgba(43, 108, 176, 0.1);
}
.btn--ghost-success {
  color: #28a745;
}
.btn--ghost-success:hover:not(:disabled) {
  background-color: rgba(40, 167, 69, 0.1);
}
.btn--ghost-danger {
  color: #dc3545;
}
.btn--ghost-danger:hover:not(:disabled) {
  background-color: rgba(220, 53, 69, 0.1);
}
.btn--ghost-warning {
  color: #ffc107;
}
.btn--ghost-warning:hover:not(:disabled) {
  background-color: rgba(255, 193, 7, 0.1);
}
.btn--ghost-info {
  color: #17a2b8;
}
.btn--ghost-info:hover:not(:disabled) {
  background-color: rgba(23, 162, 184, 0.1);
}
.btn--ghost-light {
  color: #f8f9fa;
}
.btn--ghost-light:hover:not(:disabled) {
  background-color: rgba(248, 249, 250, 0.1);
}
.btn--ghost-gray {
  color: #cacdd0;
}
.btn--ghost-gray:hover:not(:disabled) {
  background-color: rgba(202, 205, 208, 0.1);
}
.btn--ghost-dark {
  color: #252729;
}
.btn--ghost-dark:hover:not(:disabled) {
  background-color: rgba(37, 39, 41, 0.1);
}
.btn--ghost-white {
  color: #ffffff;
}
.btn--ghost-white:hover:not(:disabled) {
  background-color: rgba(255, 255, 255, 0.1);
}
.btn--ghost-black {
  color: #000000;
}
.btn--ghost-black:hover:not(:disabled) {
  background-color: rgba(0, 0, 0, 0.1);
}
.btn--ghost-link {
  color: #00004d;
}
.btn--ghost-link:hover:not(:disabled) {
  background-color: rgba(0, 0, 77, 0.1);
}
.btn--ghost-text {
  color: #333;
}
.btn--ghost-text:hover:not(:disabled) {
  background-color: rgba(51, 51, 51, 0.1);
}
.btn--ghost-background {
  color: #F7FAFC;
}
.btn--ghost-background:hover:not(:disabled) {
  background-color: rgba(247, 250, 252, 0.1);
}
.btn--ghost-accent {
  color: #eff6fc;
}
.btn--ghost-accent:hover:not(:disabled) {
  background-color: rgba(239, 246, 252, 0.1);
}
.btn--ghost-highlight {
  color: #f8f693;
}
.btn--ghost-highlight:hover:not(:disabled) {
  background-color: rgba(248, 246, 147, 0.1);
}
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.btn--block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.btn--loading {
  color: transparent;
}
.btn--loading::after {
  content: "";
  position: absolute;
  width: 1em;
  height: 1em;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  -webkit-animation: button-spinner 0.8s linear infinite;
          animation: button-spinner 0.8s linear infinite;
}

@-webkit-keyframes button-spinner {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes button-spinner {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.section {
  padding: 50px 0px;
}
.section--accent {
  background: var(--color-accent);
}

:root {
  --color-primary: #00004d;
  --color-secondary: #2b6cb0;
  --color-success: #28a745;
  --color-danger: #dc3545;
  --color-warning: #ffc107;
  --color-info: #17a2b8;
  --color-light: #f8f9fa;
  --color-gray: #cacdd0;
  --color-dark: #252729;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-link: #00004d;
  --color-text: #333;
  --color-background: #F7FAFC;
  --color-accent: #eff6fc;
  --color-highlight: #f8f693;
  --font-size-base: 16px;
  --font-size-sm: 14px;
  --font-size-lg: 20px;
}

body.visible {
  --color-primary: #000;
  --color-secondary: #000;
  --color-success: #28a745;
  --color-danger: #dc3545;
  --color-warning: #ffc107;
  --color-info: #17a2b8;
  --color-light: #f8f9fa;
  --color-gray: #000;
  --color-dark: #000;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-link: #000;
  --color-text: #000;
  --color-background: #fff;
  --color-accent: #fff;
  --color-highlight: #fff;
  --font-size-base: 20px;
  --font-size-sm: 18px;
  --font-size-lg: 24px;
}
body.visible img {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}
body.visible .slider {
  display: none;
}

.btn {
  padding: 6px 20px;
}

.accessibility {
  display: none;
  padding: 20px 0;
  background: var(--color-white);
}
.accessibility.active {
  display: block;
}
.accessibility__container {
  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;
  gap: 30px;
}
.accessibility__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.accessibility__buttons button {
  padding: 8px 12px;
  border: 1px solid #ddd;
  background: white;
  border-radius: 4px;
  cursor: pointer;
}

.accessibility-panel {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: white;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
  -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;
}
.accessibility-panel.active {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

.accessibility-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;
  padding: 15px;
  background: #f8f9fa;
  border-bottom: 1px solid #dee2e6;
}

.accessibility-content {
  padding: 15px;
}

.accessibility-section {
  margin-bottom: 20px;
}

.accessibility-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.accessibility-buttons button {
  padding: 8px 12px;
  border: 1px solid #ddd;
  background: white;
  border-radius: 4px;
  cursor: pointer;
}
.accessibility-buttons button.active {
  background: #0066cc;
  color: white;
  border-color: #0066cc;
}

.accessibility-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.accessibility-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 10px 15px;
  background: #0066cc;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  z-index: 999;
}

body.theme-black-white {
  --color-background: white;
  --color-text: black;
  --color-primary: black;
}

body.theme-white-black {
  --color-background: black;
  --color-text: white;
  --color-primary: white;
}

body.theme-blue-beige {
  --color-background: #f5f5dc;
  --color-text: #000080;
}

body.font-normal {
  --font-size-base: 16px;
}

body.font-large {
  --font-size-base: 20px;
}

body.font-xlarge {
  --font-size-base: 24px;
}

.header {
  padding: 20px 0;
}
.header__container {
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-template-columns: auto 1fr auto auto;
  gap: 30px;
}
.header__logo {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}
.header__block {
  color: var(--color-text);
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}
.header__block i {
  width: 16px;
  text-align: center;
  margin-right: 8px;
  color: var(--color-primary);
}
.header__block a {
  border-bottom: 1px dashed var(--color-gray);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header__block a:hover {
  text-decoration: none;
  border-color: var(--color-dark);
}
.header__block a:where(:not([href])) {
  cursor: pointer;
}

.city-selector {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.check-city {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 10px;
  background: white;
  border: 1px solid var(--color-gray);
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 250px;
  z-index: 10010;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-10px);
      -ms-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.check-city.active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}
.check-city__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;
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
  background: #f8f9fa;
  border-radius: 8px 8px 0 0;
}
.check-city__header div:first-child {
  font-weight: 600;
  font-size: 14px;
}
.check-city__close {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #666;
  padding: 0;
  width: 24px;
  height: 24px;
  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;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.check-city__close:hover {
  background: #e9ecef;
  color: #333;
}
.check-city__body {
  padding: 15px 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: 10px;
}
.check-city__body a {
  padding: 8px 12px;
  color: var(--color-text);
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 14px;
}
.check-city__body a:hover {
  color: var(--color-primary);
}

@media (max-width: 768px) {
  .check-city {
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) scale(0.9);
        -ms-transform: translate(-50%, -50%) scale(0.9);
            transform: translate(-50%, -50%) scale(0.9);
    min-width: 300px;
    max-width: 90vw;
  }
  .check-city.active {
    -webkit-transform: translate(-50%, -50%) scale(1);
        -ms-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
  }
  .check-city .city-selector span a {
    font-size: 14px;
  }
}
.nav {
  background: var(--color-secondary);
  position: sticky;
  top: 0;
  z-index: 10000;
}

.menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--color-white);
  padding: 0;
  margin: 0;
}
.menu__item {
  margin: 0;
  padding: 0;
  position: relative;
}
.menu__item ul {
  display: none;
  margin: 0;
  padding: 0;
  list-style: none;
  width: 350px;
  min-width: 250px;
  max-width: 400px;
}
.menu__item:hover ul {
  display: block;
  position: absolute;
  max-width: 300px;
  min-width: 200px;
  background: #fff;
  border-left: 1px solid var(--color-gray);
  border-right: 1px solid var(--color-gray);
}
.menu__item:hover ul li {
  margin: 0;
  padding: 0;
}
.menu__item:hover ul a {
  color: var(--color-link);
  display: block;
  padding: 10px 20px;
  border-bottom: 1px solid var(--color-gray);
}
.menu__item:hover ul a::last-child {
  border-bottom: none;
}
.menu__item:hover ul a:hover {
  background: rgb(247.951, 248.35, 248.749);
  text-decoration: none;
}
.menu__link {
  font-weight: 500;
  color: inherit;
  margin: 0;
  padding: 10px 20px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}
.menu__link:hover {
  color: inherit;
  text-decoration: none;
  background: color-mix(in hsl, var(--color-secondary), white 10%);
}
.menu__link span {
  font-size: var(--font-size-base);
}
.menu__link i {
  font-size: calc(var(--font-size-sm) - 2px);
  font-weight: 100;
}

.slider {
  position: relative;
  height: 370px;
  overflow: hidden;
}
.slider__prev, .slider__next {
  position: absolute;
  top: calc(50% - 24px);
  z-index: 1000;
  background: rgba(255, 255, 255, 0.3);
  width: 48px;
  height: 48px;
  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;
  border: none;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.5);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.slider__prev:hover, .slider__next:hover {
  background: rgba(255, 255, 255, 0.5);
}
.slider__prev {
  left: 50px;
}
.slider__next {
  right: 50px;
}
.slider__item {
  height: 370px;
  overflow: hidden;
}
.slider__background {
  height: 100%;
  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;
}
.slider__background video {
  width: 100%;
}
.slider__content {
  z-index: 1000;
  color: var(--color-white);
  position: absolute;
  width: 100%;
  top: 20%;
}
.slider .slick-dots {
  position: absolute;
  bottom: 25px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}
.slider .slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slider .slick-dots li.slick-active button::after {
  background: rgba(255, 255, 255, 0.8);
}
.slider .slick-dots button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}
.slider .slick-dots button::after {
  display: block;
  content: "";
  z-index: 1000;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
}

.section__header {
  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;
  margin-bottom: 20px;
}
.section__title {
  color: var(--color-primary);
  font-size: 1.5em;
  position: relative;
}
.section__title::after {
  content: "";
  width: 130px;
  height: 3px;
  background: var(--color-primary);
  position: absolute;
  left: 0;
  bottom: -10px;
}
.section__header-link {
  border-bottom: 1px dashed var(--color-gray);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.section__header-link:hover {
  text-decoration: none;
  border-color: var(--color-dark);
}
.section__header-link::before {
  font-family: "FontAwesome";
  content: "\f18e";
  margin-right: 10px;
}
.section__body {
  height: 100%;
}
.section--icon-box .section__container {
  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;
  gap: 80px;
}
.section--breadcrumbs {
  padding: 20px 0;
}

.icon-box {
  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: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.icon-box__icon img {
  height: 48px;
}
.icon-box__title {
  color: var(--color-text);
}
.icon-box:hover {
  text-decoration: none;
}

.news {
  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;
  height: 100%;
}
.news__preview {
  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;
  border-radius: 8px;
  overflow: hidden;
  height: 150px;
}
.news__image {
  width: 100%;
}
.news__date {
  font-size: var(--font-size-sm);
  padding: 4px 0;
}
.news__date::before {
  font-family: "FontAwesome";
  content: "\f073";
  margin-right: 8px;
  font-size: calc(var(--font-size-sm) - 1px);
}
.news__description {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
  height: 2.8em;
}
.news--big {
  height: 100%;
}
.news--big .news__preview {
  border-radius: 8px 8px 0px 0px;
  height: 300px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.news--big .news__body {
  background: var(--color-white);
  padding: 20px;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.sponsor {
  background: var(--color-white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px;
  border-radius: 10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.sponsor:hover {
  text-decoration: none;
  -webkit-box-shadow: 0 5px 10px 5px rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 10px 5px rgba(0, 0, 0, 0.05);
}
.sponsor__icon {
  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: 50%;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}
.sponsor__title {
  text-align: center;
}

.footer {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 30px 0;
}
.footer h3 {
  text-transform: uppercase;
  margin-bottom: 20px;
  font-size: var(--font-size-lg);
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--color-white);
}
.footer__bottom {
  padding-top: 20px;
}
.footer__contacts a {
  color: var(--color-white);
}
.footer__menu .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--color-white);
  padding: 0;
  margin: 0;
  gap: 20px;
}
.footer__menu .menu__item {
  margin: 0;
  padding: 0;
  position: relative;
}
.footer__menu .menu__link {
  font-weight: 400;
  color: inherit;
  margin: 0;
  padding: 0;
}
.footer__menu .menu__link:hover {
  color: inherit;
  text-decoration: underline;
  background: none;
}
.footer__menu .menu__link span {
  font-size: var(--font-size-base);
}
.footer__menu .menu__link i {
  font-size: calc(var(--font-size-sm) - 2px);
  font-weight: 100;
}

.breadcrumb {
  margin: 0 0 0 0px;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
.breadcrumb li {
  position: relative;
}
.breadcrumb li::after {
  content: "\f054";
  font-family: "FontAwesome";
  position: absolute;
  right: -28px;
  top: 2px;
  font-size: calc(var(--font-size-sm) - 2px);
}
.breadcrumb li:last-child:after {
  display: none;
}

.page {
  padding: 50px 0;
}
.page__container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 24px;
}
.page__title {
  margin-bottom: 30px;
}

.sidebar-menu {
  margin: 0;
  padding: 20px 0;
  background: var(--color-white);
  color: var(--color-text);
  border: 1px solid var(--color-gray);
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: sticky;
  top: 100px;
}
.sidebar-menu__link {
  padding: 10px 20px;
  color: var(--color-text);
  display: block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.sidebar-menu__link:hover {
  background: var(--color-accent);
  text-decoration: none;
}
.sidebar-menu__link.active {
  font-weight: 600;
}

.docs {
  margin-bottom: 2rem;
}
.docs--collapsible .docs__content {
  display: none;
  background: var(--color-white);
  padding: 20px;
}
.docs__header {
  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;
  gap: 20px;
  padding: 1.25rem;
  background: var(--color-white);
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.docs__title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text);
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.docs__toggle {
  width: 24px;
  height: 24px;
  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;
}
.docs__toggle-icon {
  font-size: 1rem;
  color: var(--color-gray);
  -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;
}
.docs__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  overflow: hidden;
  -webkit-transition: height 0.3s ease;
  transition: height 0.3s ease;
}
.docs__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--color-white);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.docs__item:hover {
  -webkit-transform: translateY(-2px);
      -ms-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: #dee2e6;
}
.docs__icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 48px;
  height: 48px;
  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;
}
.docs__icon a {
  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%;
  height: 100%;
  text-decoration: none;
  color: inherit;
  -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;
}
.docs__icon a:hover {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.docs__icon i {
  font-size: 2.5rem;
}
.docs__icon i.fa-file-pdf-o {
  color: #e63946;
}
.docs__icon i.fa-file-word-o {
  color: #2b579a;
}
.docs__icon i.fa-file-excel-o {
  color: #217346;
}
.docs__icon i.fa-file-archive-o {
  color: #fd7e14;
}
.docs__icon i.fa-file-text-o {
  color: #6c757d;
}
.docs__icon i.fa-file-o {
  color: #adb5bd;
}
.docs__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
.docs__name {
  margin: 0 0 0.75rem 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #212529;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.docs__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.875rem;
  color: #6c757d;
}
.docs__info > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.375rem;
}
.docs__info a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.375rem;
  color: #0d6efd;
  text-decoration: none;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
  font-weight: 500;
}
.docs__info a:hover {
  color: #0a58ca;
  text-decoration: underline;
}
.docs__info a i {
  font-size: 0.9rem;
}
.docs__info span {
  white-space: nowrap;
}
.docs__info .fa-info-circle {
  color: #6c757d;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .docs-section {
    margin: 1.5rem 0;
  }
  .docs-section--collapsible .docs {
    padding: 1rem;
  }
  .docs-section__header {
    padding: 1rem;
  }
  .docs {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .docs__item {
    padding: 1rem;
  }
  .docs__info {
    -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: 0.5rem;
  }
}
@media (max-width: 576px) {
  .docs__item {
    -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;
    text-align: center;
  }
  .docs__icon {
    margin-bottom: 0.75rem;
  }
  .docs__title {
    text-align: center;
  }
  .docs__info {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
  .docs__info > div {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.docs-section__content:not(.docs-section__content--collapsed) .docs__item {
  -webkit-animation: fadeInUp 0.3s ease forwards;
          animation: fadeInUp 0.3s ease forwards;
}
.docs-section__content:not(.docs-section__content--collapsed) .docs__item:nth-child(1) {
  -webkit-animation-delay: 0.05s;
          animation-delay: 0.05s;
}
.docs-section__content:not(.docs-section__content--collapsed) .docs__item:nth-child(2) {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}
.docs-section__content:not(.docs-section__content--collapsed) .docs__item:nth-child(3) {
  -webkit-animation-delay: 0.15s;
          animation-delay: 0.15s;
}
.docs-section__content:not(.docs-section__content--collapsed) .docs__item:nth-child(4) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.docs-section__content:not(.docs-section__content--collapsed) .docs__item:nth-child(5) {
  -webkit-animation-delay: 0.25s;
          animation-delay: 0.25s;
}
.docs-section__content:not(.docs-section__content--collapsed) .docs__item:nth-child(6) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.docs-section__content:not(.docs-section__content--collapsed) .docs__item:nth-child(7) {
  -webkit-animation-delay: 0.35s;
          animation-delay: 0.35s;
}
.docs-section__content:not(.docs-section__content--collapsed) .docs__item:nth-child(8) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.docs-section__content:not(.docs-section__content--collapsed) .docs__item:nth-child(9) {
  -webkit-animation-delay: 0.45s;
          animation-delay: 0.45s;
}
.docs-section__content:not(.docs-section__content--collapsed) .docs__item:nth-child(10) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}