@charset "UTF-8";
.background-black {
  background-color: #000;
}

.color-black {
  color: #000;
}

.background-white {
  background-color: #fff;
}

.color-white {
  color: #fff;
}

.background-primary {
  background-color: #DE3B42;
}

.color-primary {
  color: #DE3B42;
}

.background-secondary {
  background-color: #005eb8;
}

.color-secondary {
  color: #005eb8;
}

.background-text {
  background-color: #4D4D4D;
}

.color-text {
  color: #4D4D4D;
}

.background-light-grey {
  background-color: #F1F2F3;
}

.color-light-grey {
  color: #F1F2F3;
}

.color-inherit {
  color: inherit !important;
}

.full-cover {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.full-cover--fit {
  -o-object-fit: cover;
     object-fit: cover;
}
.full-cover--fit-contain {
  -o-object-fit: contain;
     object-fit: contain;
}
.full-cover img {
  width: inherit;
  height: inherit;
  -o-object-fit: inherit;
     object-fit: inherit;
}

.z-inherit {
  z-index: inherit;
}

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

.z-10 {
  z-index: 10;
}

.z-20 {
  z-index: 20;
}

.z-80 {
  z-index: 80;
}

.z-100 {
  z-index: 100;
}

/*!
 * Bootstrap v4.4.1 (https://getbootstrap.com/)
 * Copyright 2011-2019 The Bootstrap Authors
 * Copyright 2011-2019 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
:root {
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #DE3B42;
  --secondary: #005eb8;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

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

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: left;
  background-color: #fff;
}

[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0 !important;
}

hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
  overflow: visible;
}

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

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

abbr[title],
abbr[data-original-title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

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

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

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

dt {
  font-weight: 700;
}

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

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: #DE3B42;
  text-decoration: none;
  background-color: transparent;
}
a:hover {
  color: #af1d24;
  text-decoration: underline;
}

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

pre,
code,
kbd,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em;
}

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
}

figure {
  margin: 0 0 1rem;
}

img {
  vertical-align: middle;
  border-style: none;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
}

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #6c757d;
  text-align: left;
  caption-side: bottom;
}

th {
  text-align: inherit;
}

label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

button {
  border-radius: 0;
}

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

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

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

select {
  word-wrap: normal;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

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

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type=radio],
input[type=checkbox] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
}

input[type=date],
input[type=time],
input[type=datetime-local],
input[type=month] {
  -webkit-appearance: listbox;
}

textarea {
  overflow: auto;
  resize: vertical;
}

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

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

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

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

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

output {
  display: inline-block;
}

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

template {
  display: none;
}

[hidden] {
  display: none !important;
}

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

h1, .h1 {
  font-size: 2.5rem;
}

h2, .h2 {
  font-size: 2rem;
}

h3, .h3 {
  font-size: 1.75rem;
}

h4, .h4 {
  font-size: 1.5rem;
}

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

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

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

.display-1 {
  font-size: 6rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-2 {
  font-size: 5.5rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-3 {
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-4 {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
}

hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

small,
.small {
  font-size: 80%;
  font-weight: 400;
}

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

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

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

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

.initialism {
  font-size: 90%;
  text-transform: uppercase;
}

.blockquote {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.blockquote-footer {
  display: block;
  font-size: 80%;
  color: #6c757d;
}
.blockquote-footer::before {
  content: "— ";
}

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

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

.figure {
  display: inline-block;
}

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

.figure-caption {
  font-size: 90%;
  color: #6c757d;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

.container-fluid, .container-xl, .container-lg, .container-md, .container-sm {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container-sm, .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1140px;
  }
}
.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

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

.col-xl,
.col-xl-auto, .col-xl-12, .col-xl-11, .col-xl-10, .col-xl-9, .col-xl-8, .col-xl-7, .col-xl-6, .col-xl-5, .col-xl-4, .col-xl-3, .col-xl-2, .col-xl-1, .col-lg,
.col-lg-auto, .col-lg-12, .col-lg-11, .col-lg-10, .col-lg-9, .col-lg-8, .col-lg-7, .col-lg-6, .col-lg-5, .col-lg-4, .col-lg-3, .col-lg-2, .col-lg-1, .col-md,
.col-md-auto, .col-md-12, .col-md-11, .col-md-10, .col-md-9, .col-md-8, .col-md-7, .col-md-6, .col-md-5, .col-md-4, .col-md-3, .col-md-2, .col-md-1, .col-sm,
.col-sm-auto, .col-sm-12, .col-sm-11, .col-sm-10, .col-sm-9, .col-sm-8, .col-sm-7, .col-sm-6, .col-sm-5, .col-sm-4, .col-sm-3, .col-sm-2, .col-sm-1, .col,
.col-auto, .col-12, .col-11, .col-10, .col-9, .col-8, .col-7, .col-6, .col-5, .col-4, .col-3, .col-2, .col-1 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.col {
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  max-width: 100%;
}

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

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

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

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

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

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

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

.col-1 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 8.3333333333%;
          flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%;
}

.col-2 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16.6666666667%;
          flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

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

.col-4 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.3333333333%;
          flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.col-5 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 41.6666666667%;
          flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%;
}

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

.col-7 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 58.3333333333%;
          flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%;
}

.col-8 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 66.6666666667%;
          flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
}

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

.col-10 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 83.3333333333%;
          flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%;
}

.col-11 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 91.6666666667%;
          flex: 0 0 91.6666666667%;
  max-width: 91.6666666667%;
}

.col-12 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 100%;
}

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

.order-last {
  -webkit-box-ordinal-group: 14;
      -ms-flex-order: 13;
          order: 13;
}

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

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

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

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

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

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

.order-6 {
  -webkit-box-ordinal-group: 7;
      -ms-flex-order: 6;
          order: 6;
}

.order-7 {
  -webkit-box-ordinal-group: 8;
      -ms-flex-order: 7;
          order: 7;
}

.order-8 {
  -webkit-box-ordinal-group: 9;
      -ms-flex-order: 8;
          order: 8;
}

.order-9 {
  -webkit-box-ordinal-group: 10;
      -ms-flex-order: 9;
          order: 9;
}

.order-10 {
  -webkit-box-ordinal-group: 11;
      -ms-flex-order: 10;
          order: 10;
}

.order-11 {
  -webkit-box-ordinal-group: 12;
      -ms-flex-order: 11;
          order: 11;
}

.order-12 {
  -webkit-box-ordinal-group: 13;
      -ms-flex-order: 12;
          order: 12;
}

.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) {
  .col-sm {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-sm-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-sm-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-sm-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333333333%;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row-cols-sm-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-sm-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
            flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-sm-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.6666666667%;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-sm-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-sm-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.3333333333%;
            flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-sm-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.6666666667%;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-sm-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333333333%;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-sm-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.6666666667%;
            flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-sm-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.3333333333%;
            flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-sm-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.6666666667%;
            flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-sm-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.3333333333%;
            flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-sm-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.6666666667%;
            flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-sm-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .order-sm-first {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-sm-last {
    -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
            order: 13;
  }
  .order-sm-0 {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  .order-sm-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .order-sm-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .order-sm-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .order-sm-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .order-sm-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .order-sm-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .order-sm-7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  .order-sm-8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
  .order-sm-9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
  .order-sm-10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
  .order-sm-11 {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }
  .order-sm-12 {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.3333333333%;
  }
  .offset-sm-2 {
    margin-left: 16.6666666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.3333333333%;
  }
  .offset-sm-5 {
    margin-left: 41.6666666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.3333333333%;
  }
  .offset-sm-8 {
    margin-left: 66.6666666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.3333333333%;
  }
  .offset-sm-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 768px) {
  .col-md {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-md-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-md-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-md-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333333333%;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row-cols-md-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-md-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
            flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-md-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.6666666667%;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-md-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-md-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.3333333333%;
            flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-md-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.6666666667%;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-md-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333333333%;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-md-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.6666666667%;
            flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-md-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.3333333333%;
            flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-md-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.6666666667%;
            flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-md-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.3333333333%;
            flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-md-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.6666666667%;
            flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-md-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .order-md-first {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-md-last {
    -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
            order: 13;
  }
  .order-md-0 {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  .order-md-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .order-md-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .order-md-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .order-md-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .order-md-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .order-md-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .order-md-7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  .order-md-8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
  .order-md-9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
  .order-md-10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
  .order-md-11 {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }
  .order-md-12 {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.3333333333%;
  }
  .offset-md-2 {
    margin-left: 16.6666666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.3333333333%;
  }
  .offset-md-5 {
    margin-left: 41.6666666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.3333333333%;
  }
  .offset-md-8 {
    margin-left: 66.6666666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.3333333333%;
  }
  .offset-md-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-lg-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-lg-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-lg-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333333333%;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row-cols-lg-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-lg-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
            flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-lg-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.6666666667%;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-lg-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-lg-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.3333333333%;
            flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-lg-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.6666666667%;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-lg-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333333333%;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-lg-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.6666666667%;
            flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-lg-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.3333333333%;
            flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-lg-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.6666666667%;
            flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-lg-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.3333333333%;
            flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-lg-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.6666666667%;
            flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-lg-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .order-lg-first {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-lg-last {
    -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
            order: 13;
  }
  .order-lg-0 {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  .order-lg-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .order-lg-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .order-lg-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .order-lg-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .order-lg-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .order-lg-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .order-lg-7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  .order-lg-8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
  .order-lg-9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
  .order-lg-10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
  .order-lg-11 {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }
  .order-lg-12 {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.3333333333%;
  }
  .offset-lg-2 {
    margin-left: 16.6666666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.3333333333%;
  }
  .offset-lg-5 {
    margin-left: 41.6666666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.3333333333%;
  }
  .offset-lg-8 {
    margin-left: 66.6666666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.3333333333%;
  }
  .offset-lg-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-xl-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-xl-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-xl-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333333333%;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row-cols-xl-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-xl-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
            flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-xl-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.6666666667%;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-xl-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-xl-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.3333333333%;
            flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-xl-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.6666666667%;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-xl-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333333333%;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-xl-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.6666666667%;
            flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-xl-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.3333333333%;
            flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-xl-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.6666666667%;
            flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-xl-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.3333333333%;
            flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-xl-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.6666666667%;
            flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-xl-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xl-first {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-xl-last {
    -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
            order: 13;
  }
  .order-xl-0 {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  .order-xl-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .order-xl-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .order-xl-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .order-xl-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .order-xl-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .order-xl-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .order-xl-7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  .order-xl-8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
  .order-xl-9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
  .order-xl-10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
  .order-xl-11 {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }
  .order-xl-12 {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.3333333333%;
  }
  .offset-xl-2 {
    margin-left: 16.6666666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.3333333333%;
  }
  .offset-xl-5 {
    margin-left: 41.6666666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.3333333333%;
  }
  .offset-xl-8 {
    margin-left: 66.6666666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.3333333333%;
  }
  .offset-xl-11 {
    margin-left: 91.6666666667%;
  }
}
.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;
}

.bg-primary {
  background-color: #DE3B42 !important;
}

a.bg-primary:hover, a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
  background-color: #c52128 !important;
}

.bg-secondary {
  background-color: #005eb8 !important;
}

a.bg-secondary:hover, a.bg-secondary:focus,
button.bg-secondary:hover,
button.bg-secondary:focus {
  background-color: #004485 !important;
}

.bg-success {
  background-color: #28a745 !important;
}

a.bg-success:hover, a.bg-success:focus,
button.bg-success:hover,
button.bg-success:focus {
  background-color: #1e7e34 !important;
}

.bg-info {
  background-color: #17a2b8 !important;
}

a.bg-info:hover, a.bg-info:focus,
button.bg-info:hover,
button.bg-info:focus {
  background-color: #117a8b !important;
}

.bg-warning {
  background-color: #ffc107 !important;
}

a.bg-warning:hover, a.bg-warning:focus,
button.bg-warning:hover,
button.bg-warning:focus {
  background-color: #d39e00 !important;
}

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

a.bg-danger:hover, a.bg-danger:focus,
button.bg-danger:hover,
button.bg-danger:focus {
  background-color: #bd2130 !important;
}

.bg-light {
  background-color: #f8f9fa !important;
}

a.bg-light:hover, a.bg-light:focus,
button.bg-light:hover,
button.bg-light:focus {
  background-color: #dae0e5 !important;
}

.bg-dark {
  background-color: #343a40 !important;
}

a.bg-dark:hover, a.bg-dark:focus,
button.bg-dark:hover,
button.bg-dark:focus {
  background-color: #1d2124 !important;
}

.bg-white {
  background-color: #fff !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.border-info {
  border-color: #17a2b8 !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-md-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media print {
  .d-print-none {
    display: none !important;
  }
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-print-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}
.embed-responsive::before {
  display: block;
  content: "";
}
.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.embed-responsive-21by9::before {
  padding-top: 42.8571428571%;
}

.embed-responsive-16by9::before {
  padding-top: 56.25%;
}

.embed-responsive-4by3::before {
  padding-top: 75%;
}

.embed-responsive-1by1::before {
  padding-top: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 576px) {
  .flex-sm-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .flex-sm-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .flex-sm-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }
  .flex-sm-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }
  .flex-sm-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }
  .justify-content-sm-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .justify-content-sm-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .justify-content-sm-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }
  .align-items-sm-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .align-items-sm-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .align-items-sm-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .align-items-sm-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .align-items-sm-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .align-content-sm-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }
  .align-content-sm-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }
  .align-content-sm-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }
  .align-content-sm-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }
  .align-content-sm-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }
  .align-content-sm-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }
  .align-self-sm-auto {
    -ms-flex-item-align: auto !important;
        align-self: auto !important;
  }
  .align-self-sm-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }
  .align-self-sm-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }
  .align-self-sm-center {
    -ms-flex-item-align: center !important;
        align-self: center !important;
  }
  .align-self-sm-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }
  .align-self-sm-stretch {
    -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
  }
}
@media (min-width: 768px) {
  .flex-md-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .flex-md-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .flex-md-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .flex-md-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }
  .flex-md-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }
  .flex-md-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }
  .justify-content-md-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .justify-content-md-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .justify-content-md-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .justify-content-md-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .justify-content-md-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }
  .align-items-md-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .align-items-md-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .align-items-md-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .align-items-md-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .align-items-md-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .align-content-md-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }
  .align-content-md-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }
  .align-content-md-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }
  .align-content-md-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }
  .align-content-md-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }
  .align-content-md-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }
  .align-self-md-auto {
    -ms-flex-item-align: auto !important;
        align-self: auto !important;
  }
  .align-self-md-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }
  .align-self-md-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }
  .align-self-md-center {
    -ms-flex-item-align: center !important;
        align-self: center !important;
  }
  .align-self-md-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }
  .align-self-md-stretch {
    -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
  }
}
@media (min-width: 992px) {
  .flex-lg-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .flex-lg-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .flex-lg-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }
  .flex-lg-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }
  .flex-lg-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }
  .justify-content-lg-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .justify-content-lg-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .justify-content-lg-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }
  .align-items-lg-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .align-items-lg-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .align-items-lg-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .align-items-lg-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .align-items-lg-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .align-content-lg-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }
  .align-content-lg-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }
  .align-content-lg-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }
  .align-content-lg-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }
  .align-content-lg-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }
  .align-content-lg-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }
  .align-self-lg-auto {
    -ms-flex-item-align: auto !important;
        align-self: auto !important;
  }
  .align-self-lg-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }
  .align-self-lg-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }
  .align-self-lg-center {
    -ms-flex-item-align: center !important;
        align-self: center !important;
  }
  .align-self-lg-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }
  .align-self-lg-stretch {
    -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
  }
}
@media (min-width: 1200px) {
  .flex-xl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .flex-xl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .flex-xl-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }
  .flex-xl-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }
  .flex-xl-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }
  .justify-content-xl-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .justify-content-xl-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .justify-content-xl-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }
  .align-items-xl-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .align-items-xl-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .align-items-xl-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .align-items-xl-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .align-items-xl-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .align-content-xl-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }
  .align-content-xl-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }
  .align-content-xl-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }
  .align-content-xl-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }
  .align-content-xl-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }
  .align-content-xl-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }
  .align-self-xl-auto {
    -ms-flex-item-align: auto !important;
        align-self: auto !important;
  }
  .align-self-xl-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }
  .align-self-xl-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }
  .align-self-xl-center {
    -ms-flex-item-align: center !important;
        align-self: center !important;
  }
  .align-self-xl-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }
  .align-self-xl-stretch {
    -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
  }
}
.float-left {
  float: left !important;
}

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

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

@media (min-width: 576px) {
  .float-sm-left {
    float: left !important;
  }
  .float-sm-right {
    float: right !important;
  }
  .float-sm-none {
    float: none !important;
  }
}
@media (min-width: 768px) {
  .float-md-left {
    float: left !important;
  }
  .float-md-right {
    float: right !important;
  }
  .float-md-none {
    float: none !important;
  }
}
@media (min-width: 992px) {
  .float-lg-left {
    float: left !important;
  }
  .float-lg-right {
    float: right !important;
  }
  .float-lg-none {
    float: none !important;
  }
}
@media (min-width: 1200px) {
  .float-xl-left {
    float: left !important;
  }
  .float-xl-right {
    float: right !important;
  }
  .float-xl-none {
    float: none !important;
  }
}
.overflow-auto {
  overflow: auto !important;
}

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

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

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

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

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

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

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

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

@supports (position: sticky) {
  .sticky-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: auto;
  content: "";
  background-color: rgba(0, 0, 0, 0);
}

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

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

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

.mb-0,
.my-0 {
  margin-bottom: 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;
}

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

.mb-1,
.my-1 {
  margin-bottom: 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;
}

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

.mb-2,
.my-2 {
  margin-bottom: 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;
}

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

.mb-3,
.my-3 {
  margin-bottom: 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;
}

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

.mb-4,
.my-4 {
  margin-bottom: 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;
}

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

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

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

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

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

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

.pb-0,
.py-0 {
  padding-bottom: 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;
}

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

.pb-1,
.py-1 {
  padding-bottom: 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;
}

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

.pb-2,
.py-2 {
  padding-bottom: 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;
}

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

.pb-3,
.py-3 {
  padding-bottom: 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;
}

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

.pb-4,
.py-4 {
  padding-bottom: 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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 576px) {
  .m-sm-0 {
    margin: 0 !important;
  }
  .mt-sm-0,
.my-sm-0 {
    margin-top: 0 !important;
  }
  .mr-sm-0,
.mx-sm-0 {
    margin-right: 0 !important;
  }
  .mb-sm-0,
.my-sm-0 {
    margin-bottom: 0 !important;
  }
  .ml-sm-0,
.mx-sm-0 {
    margin-left: 0 !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .mt-sm-1,
.my-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mr-sm-1,
.mx-sm-1 {
    margin-right: 0.25rem !important;
  }
  .mb-sm-1,
.my-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-sm-1,
.mx-sm-1 {
    margin-left: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .mt-sm-2,
.my-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mr-sm-2,
.mx-sm-2 {
    margin-right: 0.5rem !important;
  }
  .mb-sm-2,
.my-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-sm-2,
.mx-sm-2 {
    margin-left: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .mt-sm-3,
.my-sm-3 {
    margin-top: 1rem !important;
  }
  .mr-sm-3,
.mx-sm-3 {
    margin-right: 1rem !important;
  }
  .mb-sm-3,
.my-sm-3 {
    margin-bottom: 1rem !important;
  }
  .ml-sm-3,
.mx-sm-3 {
    margin-left: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .mt-sm-4,
.my-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mr-sm-4,
.mx-sm-4 {
    margin-right: 1.5rem !important;
  }
  .mb-sm-4,
.my-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-sm-4,
.mx-sm-4 {
    margin-left: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 3rem !important;
  }
  .mt-sm-5,
.my-sm-5 {
    margin-top: 3rem !important;
  }
  .mr-sm-5,
.mx-sm-5 {
    margin-right: 3rem !important;
  }
  .mb-sm-5,
.my-sm-5 {
    margin-bottom: 3rem !important;
  }
  .ml-sm-5,
.mx-sm-5 {
    margin-left: 3rem !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .pt-sm-0,
.py-sm-0 {
    padding-top: 0 !important;
  }
  .pr-sm-0,
.px-sm-0 {
    padding-right: 0 !important;
  }
  .pb-sm-0,
.py-sm-0 {
    padding-bottom: 0 !important;
  }
  .pl-sm-0,
.px-sm-0 {
    padding-left: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .pt-sm-1,
.py-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pr-sm-1,
.px-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pb-sm-1,
.py-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-sm-1,
.px-sm-1 {
    padding-left: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .pt-sm-2,
.py-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pr-sm-2,
.px-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pb-sm-2,
.py-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-sm-2,
.px-sm-2 {
    padding-left: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .pt-sm-3,
.py-sm-3 {
    padding-top: 1rem !important;
  }
  .pr-sm-3,
.px-sm-3 {
    padding-right: 1rem !important;
  }
  .pb-sm-3,
.py-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pl-sm-3,
.px-sm-3 {
    padding-left: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .pt-sm-4,
.py-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pr-sm-4,
.px-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pb-sm-4,
.py-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-sm-4,
.px-sm-4 {
    padding-left: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 3rem !important;
  }
  .pt-sm-5,
.py-sm-5 {
    padding-top: 3rem !important;
  }
  .pr-sm-5,
.px-sm-5 {
    padding-right: 3rem !important;
  }
  .pb-sm-5,
.py-sm-5 {
    padding-bottom: 3rem !important;
  }
  .pl-sm-5,
.px-sm-5 {
    padding-left: 3rem !important;
  }
  .m-sm-n1 {
    margin: -0.25rem !important;
  }
  .mt-sm-n1,
.my-sm-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-sm-n1,
.mx-sm-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-sm-n1,
.my-sm-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-sm-n1,
.mx-sm-n1 {
    margin-left: -0.25rem !important;
  }
  .m-sm-n2 {
    margin: -0.5rem !important;
  }
  .mt-sm-n2,
.my-sm-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-sm-n2,
.mx-sm-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-sm-n2,
.my-sm-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-sm-n2,
.mx-sm-n2 {
    margin-left: -0.5rem !important;
  }
  .m-sm-n3 {
    margin: -1rem !important;
  }
  .mt-sm-n3,
.my-sm-n3 {
    margin-top: -1rem !important;
  }
  .mr-sm-n3,
.mx-sm-n3 {
    margin-right: -1rem !important;
  }
  .mb-sm-n3,
.my-sm-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-sm-n3,
.mx-sm-n3 {
    margin-left: -1rem !important;
  }
  .m-sm-n4 {
    margin: -1.5rem !important;
  }
  .mt-sm-n4,
.my-sm-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-sm-n4,
.mx-sm-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-sm-n4,
.my-sm-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-sm-n4,
.mx-sm-n4 {
    margin-left: -1.5rem !important;
  }
  .m-sm-n5 {
    margin: -3rem !important;
  }
  .mt-sm-n5,
.my-sm-n5 {
    margin-top: -3rem !important;
  }
  .mr-sm-n5,
.mx-sm-n5 {
    margin-right: -3rem !important;
  }
  .mb-sm-n5,
.my-sm-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-sm-n5,
.mx-sm-n5 {
    margin-left: -3rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mt-sm-auto,
.my-sm-auto {
    margin-top: auto !important;
  }
  .mr-sm-auto,
.mx-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-auto,
.my-sm-auto {
    margin-bottom: auto !important;
  }
  .ml-sm-auto,
.mx-sm-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 768px) {
  .m-md-0 {
    margin: 0 !important;
  }
  .mt-md-0,
.my-md-0 {
    margin-top: 0 !important;
  }
  .mr-md-0,
.mx-md-0 {
    margin-right: 0 !important;
  }
  .mb-md-0,
.my-md-0 {
    margin-bottom: 0 !important;
  }
  .ml-md-0,
.mx-md-0 {
    margin-left: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .mt-md-1,
.my-md-1 {
    margin-top: 0.25rem !important;
  }
  .mr-md-1,
.mx-md-1 {
    margin-right: 0.25rem !important;
  }
  .mb-md-1,
.my-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-md-1,
.mx-md-1 {
    margin-left: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .mt-md-2,
.my-md-2 {
    margin-top: 0.5rem !important;
  }
  .mr-md-2,
.mx-md-2 {
    margin-right: 0.5rem !important;
  }
  .mb-md-2,
.my-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-md-2,
.mx-md-2 {
    margin-left: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .mt-md-3,
.my-md-3 {
    margin-top: 1rem !important;
  }
  .mr-md-3,
.mx-md-3 {
    margin-right: 1rem !important;
  }
  .mb-md-3,
.my-md-3 {
    margin-bottom: 1rem !important;
  }
  .ml-md-3,
.mx-md-3 {
    margin-left: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .mt-md-4,
.my-md-4 {
    margin-top: 1.5rem !important;
  }
  .mr-md-4,
.mx-md-4 {
    margin-right: 1.5rem !important;
  }
  .mb-md-4,
.my-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-md-4,
.mx-md-4 {
    margin-left: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .mt-md-5,
.my-md-5 {
    margin-top: 3rem !important;
  }
  .mr-md-5,
.mx-md-5 {
    margin-right: 3rem !important;
  }
  .mb-md-5,
.my-md-5 {
    margin-bottom: 3rem !important;
  }
  .ml-md-5,
.mx-md-5 {
    margin-left: 3rem !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .pt-md-0,
.py-md-0 {
    padding-top: 0 !important;
  }
  .pr-md-0,
.px-md-0 {
    padding-right: 0 !important;
  }
  .pb-md-0,
.py-md-0 {
    padding-bottom: 0 !important;
  }
  .pl-md-0,
.px-md-0 {
    padding-left: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .pt-md-1,
.py-md-1 {
    padding-top: 0.25rem !important;
  }
  .pr-md-1,
.px-md-1 {
    padding-right: 0.25rem !important;
  }
  .pb-md-1,
.py-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-md-1,
.px-md-1 {
    padding-left: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .pt-md-2,
.py-md-2 {
    padding-top: 0.5rem !important;
  }
  .pr-md-2,
.px-md-2 {
    padding-right: 0.5rem !important;
  }
  .pb-md-2,
.py-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-md-2,
.px-md-2 {
    padding-left: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .pt-md-3,
.py-md-3 {
    padding-top: 1rem !important;
  }
  .pr-md-3,
.px-md-3 {
    padding-right: 1rem !important;
  }
  .pb-md-3,
.py-md-3 {
    padding-bottom: 1rem !important;
  }
  .pl-md-3,
.px-md-3 {
    padding-left: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .pt-md-4,
.py-md-4 {
    padding-top: 1.5rem !important;
  }
  .pr-md-4,
.px-md-4 {
    padding-right: 1.5rem !important;
  }
  .pb-md-4,
.py-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-md-4,
.px-md-4 {
    padding-left: 1.5rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .pt-md-5,
.py-md-5 {
    padding-top: 3rem !important;
  }
  .pr-md-5,
.px-md-5 {
    padding-right: 3rem !important;
  }
  .pb-md-5,
.py-md-5 {
    padding-bottom: 3rem !important;
  }
  .pl-md-5,
.px-md-5 {
    padding-left: 3rem !important;
  }
  .m-md-n1 {
    margin: -0.25rem !important;
  }
  .mt-md-n1,
.my-md-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-md-n1,
.mx-md-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-md-n1,
.my-md-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-md-n1,
.mx-md-n1 {
    margin-left: -0.25rem !important;
  }
  .m-md-n2 {
    margin: -0.5rem !important;
  }
  .mt-md-n2,
.my-md-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-md-n2,
.mx-md-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-md-n2,
.my-md-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-md-n2,
.mx-md-n2 {
    margin-left: -0.5rem !important;
  }
  .m-md-n3 {
    margin: -1rem !important;
  }
  .mt-md-n3,
.my-md-n3 {
    margin-top: -1rem !important;
  }
  .mr-md-n3,
.mx-md-n3 {
    margin-right: -1rem !important;
  }
  .mb-md-n3,
.my-md-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-md-n3,
.mx-md-n3 {
    margin-left: -1rem !important;
  }
  .m-md-n4 {
    margin: -1.5rem !important;
  }
  .mt-md-n4,
.my-md-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-md-n4,
.mx-md-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-md-n4,
.my-md-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-md-n4,
.mx-md-n4 {
    margin-left: -1.5rem !important;
  }
  .m-md-n5 {
    margin: -3rem !important;
  }
  .mt-md-n5,
.my-md-n5 {
    margin-top: -3rem !important;
  }
  .mr-md-n5,
.mx-md-n5 {
    margin-right: -3rem !important;
  }
  .mb-md-n5,
.my-md-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-md-n5,
.mx-md-n5 {
    margin-left: -3rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mt-md-auto,
.my-md-auto {
    margin-top: auto !important;
  }
  .mr-md-auto,
.mx-md-auto {
    margin-right: auto !important;
  }
  .mb-md-auto,
.my-md-auto {
    margin-bottom: auto !important;
  }
  .ml-md-auto,
.mx-md-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 992px) {
  .m-lg-0 {
    margin: 0 !important;
  }
  .mt-lg-0,
.my-lg-0 {
    margin-top: 0 !important;
  }
  .mr-lg-0,
.mx-lg-0 {
    margin-right: 0 !important;
  }
  .mb-lg-0,
.my-lg-0 {
    margin-bottom: 0 !important;
  }
  .ml-lg-0,
.mx-lg-0 {
    margin-left: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .mt-lg-1,
.my-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mr-lg-1,
.mx-lg-1 {
    margin-right: 0.25rem !important;
  }
  .mb-lg-1,
.my-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-lg-1,
.mx-lg-1 {
    margin-left: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .mt-lg-2,
.my-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mr-lg-2,
.mx-lg-2 {
    margin-right: 0.5rem !important;
  }
  .mb-lg-2,
.my-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-lg-2,
.mx-lg-2 {
    margin-left: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .mt-lg-3,
.my-lg-3 {
    margin-top: 1rem !important;
  }
  .mr-lg-3,
.mx-lg-3 {
    margin-right: 1rem !important;
  }
  .mb-lg-3,
.my-lg-3 {
    margin-bottom: 1rem !important;
  }
  .ml-lg-3,
.mx-lg-3 {
    margin-left: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .mt-lg-4,
.my-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mr-lg-4,
.mx-lg-4 {
    margin-right: 1.5rem !important;
  }
  .mb-lg-4,
.my-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-lg-4,
.mx-lg-4 {
    margin-left: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 3rem !important;
  }
  .mt-lg-5,
.my-lg-5 {
    margin-top: 3rem !important;
  }
  .mr-lg-5,
.mx-lg-5 {
    margin-right: 3rem !important;
  }
  .mb-lg-5,
.my-lg-5 {
    margin-bottom: 3rem !important;
  }
  .ml-lg-5,
.mx-lg-5 {
    margin-left: 3rem !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .pt-lg-0,
.py-lg-0 {
    padding-top: 0 !important;
  }
  .pr-lg-0,
.px-lg-0 {
    padding-right: 0 !important;
  }
  .pb-lg-0,
.py-lg-0 {
    padding-bottom: 0 !important;
  }
  .pl-lg-0,
.px-lg-0 {
    padding-left: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .pt-lg-1,
.py-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pr-lg-1,
.px-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pb-lg-1,
.py-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-lg-1,
.px-lg-1 {
    padding-left: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .pt-lg-2,
.py-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pr-lg-2,
.px-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pb-lg-2,
.py-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-lg-2,
.px-lg-2 {
    padding-left: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .pt-lg-3,
.py-lg-3 {
    padding-top: 1rem !important;
  }
  .pr-lg-3,
.px-lg-3 {
    padding-right: 1rem !important;
  }
  .pb-lg-3,
.py-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pl-lg-3,
.px-lg-3 {
    padding-left: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .pt-lg-4,
.py-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pr-lg-4,
.px-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pb-lg-4,
.py-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-lg-4,
.px-lg-4 {
    padding-left: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
  .pt-lg-5,
.py-lg-5 {
    padding-top: 3rem !important;
  }
  .pr-lg-5,
.px-lg-5 {
    padding-right: 3rem !important;
  }
  .pb-lg-5,
.py-lg-5 {
    padding-bottom: 3rem !important;
  }
  .pl-lg-5,
.px-lg-5 {
    padding-left: 3rem !important;
  }
  .m-lg-n1 {
    margin: -0.25rem !important;
  }
  .mt-lg-n1,
.my-lg-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-lg-n1,
.mx-lg-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-lg-n1,
.my-lg-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-lg-n1,
.mx-lg-n1 {
    margin-left: -0.25rem !important;
  }
  .m-lg-n2 {
    margin: -0.5rem !important;
  }
  .mt-lg-n2,
.my-lg-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-lg-n2,
.mx-lg-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-lg-n2,
.my-lg-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-lg-n2,
.mx-lg-n2 {
    margin-left: -0.5rem !important;
  }
  .m-lg-n3 {
    margin: -1rem !important;
  }
  .mt-lg-n3,
.my-lg-n3 {
    margin-top: -1rem !important;
  }
  .mr-lg-n3,
.mx-lg-n3 {
    margin-right: -1rem !important;
  }
  .mb-lg-n3,
.my-lg-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-lg-n3,
.mx-lg-n3 {
    margin-left: -1rem !important;
  }
  .m-lg-n4 {
    margin: -1.5rem !important;
  }
  .mt-lg-n4,
.my-lg-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-lg-n4,
.mx-lg-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-lg-n4,
.my-lg-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-lg-n4,
.mx-lg-n4 {
    margin-left: -1.5rem !important;
  }
  .m-lg-n5 {
    margin: -3rem !important;
  }
  .mt-lg-n5,
.my-lg-n5 {
    margin-top: -3rem !important;
  }
  .mr-lg-n5,
.mx-lg-n5 {
    margin-right: -3rem !important;
  }
  .mb-lg-n5,
.my-lg-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-lg-n5,
.mx-lg-n5 {
    margin-left: -3rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mt-lg-auto,
.my-lg-auto {
    margin-top: auto !important;
  }
  .mr-lg-auto,
.mx-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-auto,
.my-lg-auto {
    margin-bottom: auto !important;
  }
  .ml-lg-auto,
.mx-lg-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1200px) {
  .m-xl-0 {
    margin: 0 !important;
  }
  .mt-xl-0,
.my-xl-0 {
    margin-top: 0 !important;
  }
  .mr-xl-0,
.mx-xl-0 {
    margin-right: 0 !important;
  }
  .mb-xl-0,
.my-xl-0 {
    margin-bottom: 0 !important;
  }
  .ml-xl-0,
.mx-xl-0 {
    margin-left: 0 !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .mt-xl-1,
.my-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mr-xl-1,
.mx-xl-1 {
    margin-right: 0.25rem !important;
  }
  .mb-xl-1,
.my-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-xl-1,
.mx-xl-1 {
    margin-left: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .mt-xl-2,
.my-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mr-xl-2,
.mx-xl-2 {
    margin-right: 0.5rem !important;
  }
  .mb-xl-2,
.my-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-xl-2,
.mx-xl-2 {
    margin-left: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .mt-xl-3,
.my-xl-3 {
    margin-top: 1rem !important;
  }
  .mr-xl-3,
.mx-xl-3 {
    margin-right: 1rem !important;
  }
  .mb-xl-3,
.my-xl-3 {
    margin-bottom: 1rem !important;
  }
  .ml-xl-3,
.mx-xl-3 {
    margin-left: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .mt-xl-4,
.my-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mr-xl-4,
.mx-xl-4 {
    margin-right: 1.5rem !important;
  }
  .mb-xl-4,
.my-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-xl-4,
.mx-xl-4 {
    margin-left: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 3rem !important;
  }
  .mt-xl-5,
.my-xl-5 {
    margin-top: 3rem !important;
  }
  .mr-xl-5,
.mx-xl-5 {
    margin-right: 3rem !important;
  }
  .mb-xl-5,
.my-xl-5 {
    margin-bottom: 3rem !important;
  }
  .ml-xl-5,
.mx-xl-5 {
    margin-left: 3rem !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .pt-xl-0,
.py-xl-0 {
    padding-top: 0 !important;
  }
  .pr-xl-0,
.px-xl-0 {
    padding-right: 0 !important;
  }
  .pb-xl-0,
.py-xl-0 {
    padding-bottom: 0 !important;
  }
  .pl-xl-0,
.px-xl-0 {
    padding-left: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .pt-xl-1,
.py-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pr-xl-1,
.px-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pb-xl-1,
.py-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-xl-1,
.px-xl-1 {
    padding-left: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .pt-xl-2,
.py-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pr-xl-2,
.px-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pb-xl-2,
.py-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-xl-2,
.px-xl-2 {
    padding-left: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .pt-xl-3,
.py-xl-3 {
    padding-top: 1rem !important;
  }
  .pr-xl-3,
.px-xl-3 {
    padding-right: 1rem !important;
  }
  .pb-xl-3,
.py-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pl-xl-3,
.px-xl-3 {
    padding-left: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .pt-xl-4,
.py-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pr-xl-4,
.px-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pb-xl-4,
.py-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-xl-4,
.px-xl-4 {
    padding-left: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 3rem !important;
  }
  .pt-xl-5,
.py-xl-5 {
    padding-top: 3rem !important;
  }
  .pr-xl-5,
.px-xl-5 {
    padding-right: 3rem !important;
  }
  .pb-xl-5,
.py-xl-5 {
    padding-bottom: 3rem !important;
  }
  .pl-xl-5,
.px-xl-5 {
    padding-left: 3rem !important;
  }
  .m-xl-n1 {
    margin: -0.25rem !important;
  }
  .mt-xl-n1,
.my-xl-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-xl-n1,
.mx-xl-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-xl-n1,
.my-xl-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-xl-n1,
.mx-xl-n1 {
    margin-left: -0.25rem !important;
  }
  .m-xl-n2 {
    margin: -0.5rem !important;
  }
  .mt-xl-n2,
.my-xl-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-xl-n2,
.mx-xl-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-xl-n2,
.my-xl-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-xl-n2,
.mx-xl-n2 {
    margin-left: -0.5rem !important;
  }
  .m-xl-n3 {
    margin: -1rem !important;
  }
  .mt-xl-n3,
.my-xl-n3 {
    margin-top: -1rem !important;
  }
  .mr-xl-n3,
.mx-xl-n3 {
    margin-right: -1rem !important;
  }
  .mb-xl-n3,
.my-xl-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-xl-n3,
.mx-xl-n3 {
    margin-left: -1rem !important;
  }
  .m-xl-n4 {
    margin: -1.5rem !important;
  }
  .mt-xl-n4,
.my-xl-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-xl-n4,
.mx-xl-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-xl-n4,
.my-xl-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-xl-n4,
.mx-xl-n4 {
    margin-left: -1.5rem !important;
  }
  .m-xl-n5 {
    margin: -3rem !important;
  }
  .mt-xl-n5,
.my-xl-n5 {
    margin-top: -3rem !important;
  }
  .mr-xl-n5,
.mx-xl-n5 {
    margin-right: -3rem !important;
  }
  .mb-xl-n5,
.my-xl-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-xl-n5,
.mx-xl-n5 {
    margin-left: -3rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mt-xl-auto,
.my-xl-auto {
    margin-top: auto !important;
  }
  .mr-xl-auto,
.mx-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-auto,
.my-xl-auto {
    margin-bottom: auto !important;
  }
  .ml-xl-auto,
.mx-xl-auto {
    margin-left: auto !important;
  }
}
.text-monospace {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
}

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

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

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

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

.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;
  }
  .text-sm-right {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important;
  }
  .text-md-right {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important;
  }
  .text-lg-right {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .text-xl-left {
    text-align: left !important;
  }
  .text-xl-right {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}
.text-lowercase {
  text-transform: lowercase !important;
}

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

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

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

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

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

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

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

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

.text-white {
  color: #fff !important;
}

.text-primary {
  color: #DE3B42 !important;
}

a.text-primary:hover, a.text-primary:focus {
  color: #af1d24 !important;
}

.text-secondary {
  color: #005eb8 !important;
}

a.text-secondary:hover, a.text-secondary:focus {
  color: #00376c !important;
}

.text-success {
  color: #28a745 !important;
}

a.text-success:hover, a.text-success:focus {
  color: #19692c !important;
}

.text-info {
  color: #17a2b8 !important;
}

a.text-info:hover, a.text-info:focus {
  color: #0f6674 !important;
}

.text-warning {
  color: #ffc107 !important;
}

a.text-warning:hover, a.text-warning:focus {
  color: #ba8b00 !important;
}

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

a.text-danger:hover, a.text-danger:focus {
  color: #a71d2a !important;
}

.text-light {
  color: #f8f9fa !important;
}

a.text-light:hover, a.text-light:focus {
  color: #cbd3da !important;
}

.text-dark {
  color: #343a40 !important;
}

a.text-dark:hover, a.text-dark:focus {
  color: #121416 !important;
}

.text-body {
  color: #212529 !important;
}

.text-muted {
  color: #6c757d !important;
}

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

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

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

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

.text-break {
  word-break: break-word !important;
  overflow-wrap: break-word !important;
}

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

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

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

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

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

/* Slider */
/* Icons */
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 12px;
  width: 12px;
  margin-right: 10px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  display: block;
  height: 10px;
  width: 10px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: transparent;
  border: solid 2px #DE3B42;
  content: "";
  border-radius: 50%;
  width: 10px;
  height: 10px;
  opacity: 1;
}
.slick-dots li.slick-active button:before {
  background-color: #DE3B42;
}

.slider--publications .slick-dots {
  text-align: left;
  bottom: 30px;
}
.slider--publications .slick-dots li button:before {
  background-color: transparent;
  content: "";
}

.slider--feedback .slick-dots {
  text-align: center;
  bottom: 30px;
  left: 0;
}
.slider--feedback .slick-dots li button:before {
  background-color: transparent;
  content: "";
}
.slider--feedback .slick-dots button {
  background-color: white;
}

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.mfp-container:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #CCC;
}

.mfp-preloader a:hover {
  color: #FFF;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  -webkit-box-shadow: none;
          box-shadow: none;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
}

.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
}

.mfp-arrow:before,
.mfp-arrow:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}

.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:after {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}

.mfp-arrow-right:before {
  border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 90vw;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}

.mfp-figure:after {
  content: "";
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }
  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}
@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    -ms-transform: scale(0.75);
        transform: scale(0.75);
  }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    -ms-transform-origin: 0;
        transform-origin: 0;
  }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    -ms-transform-origin: 100%;
        transform-origin: 100%;
  }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}
/*
	We now manage margins and paddings using the BS utilities. Add more as necessary here:
*/
.m-0 {
  margin: 0px !important;
}

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

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

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

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

.m-sm {
  margin: 15px !important;
}

.mt-sm,
.my-sm {
  margin-top: 15px !important;
}

.mr-sm,
.mx-sm {
  margin-right: 15px !important;
}

.mb-sm,
.my-sm {
  margin-bottom: 15px !important;
}

.ml-sm,
.mx-sm {
  margin-left: 15px !important;
}

.m-md {
  margin: 50px !important;
}

.mt-md,
.my-md {
  margin-top: 50px !important;
}

.mr-md,
.mx-md {
  margin-right: 50px !important;
}

.mb-md,
.my-md {
  margin-bottom: 50px !important;
}

.ml-md,
.mx-md {
  margin-left: 50px !important;
}

.m-lg {
  margin: 80px !important;
}

.mt-lg,
.my-lg {
  margin-top: 80px !important;
}

.mr-lg,
.mx-lg {
  margin-right: 80px !important;
}

.mb-lg,
.my-lg {
  margin-bottom: 80px !important;
}

.ml-lg,
.mx-lg {
  margin-left: 80px !important;
}

.m-15 {
  margin: 15px !important;
}

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

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

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

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

.m-30 {
  margin: 30px !important;
}

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

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

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

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

.m-40 {
  margin: 40px !important;
}

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

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

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

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

.m-50 {
  margin: 50px !important;
}

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

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

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

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

.m-60 {
  margin: 60px !important;
}

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

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

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

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

.m-70 {
  margin: 70px !important;
}

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

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

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

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

.m-80 {
  margin: 80px !important;
}

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

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

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

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

.m-90 {
  margin: 90px !important;
}

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

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

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

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

.m-100 {
  margin: 100px !important;
}

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

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

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

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

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

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

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

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

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

.p-sm {
  padding: 15px !important;
}

.pt-sm,
.py-sm {
  padding-top: 15px !important;
}

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

.pb-sm,
.py-sm {
  padding-bottom: 15px !important;
}

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

.p-md {
  padding: 50px !important;
}

.pt-md,
.py-md {
  padding-top: 50px !important;
}

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

.pb-md,
.py-md {
  padding-bottom: 50px !important;
}

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

.p-lg {
  padding: 80px !important;
}

.pt-lg,
.py-lg {
  padding-top: 80px !important;
}

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

.pb-lg,
.py-lg {
  padding-bottom: 80px !important;
}

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

.p-15 {
  padding: 15px !important;
}

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

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

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

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

.p-30 {
  padding: 30px !important;
}

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

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

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

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

.p-40 {
  padding: 40px !important;
}

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

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

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

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

.p-50 {
  padding: 50px !important;
}

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

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

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

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

.p-60 {
  padding: 60px !important;
}

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

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

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

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

.p-70 {
  padding: 70px !important;
}

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

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

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

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

.p-80 {
  padding: 80px !important;
}

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

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

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

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

.p-90 {
  padding: 90px !important;
}

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

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

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

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

.p-100 {
  padding: 100px !important;
}

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

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

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

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

@media (min-width: 576px) {
  .m-sm-0 {
    margin: 0px !important;
  }
  .mt-sm-0,
.my-sm-0 {
    margin-top: 0px !important;
  }
  .mr-sm-0,
.mx-sm-0 {
    margin-right: 0px !important;
  }
  .mb-sm-0,
.my-sm-0 {
    margin-bottom: 0px !important;
  }
  .ml-sm-0,
.mx-sm-0 {
    margin-left: 0px !important;
  }
  .m-sm-sm {
    margin: 15px !important;
  }
  .mt-sm-sm,
.my-sm-sm {
    margin-top: 15px !important;
  }
  .mr-sm-sm,
.mx-sm-sm {
    margin-right: 15px !important;
  }
  .mb-sm-sm,
.my-sm-sm {
    margin-bottom: 15px !important;
  }
  .ml-sm-sm,
.mx-sm-sm {
    margin-left: 15px !important;
  }
  .m-sm-md {
    margin: 50px !important;
  }
  .mt-sm-md,
.my-sm-md {
    margin-top: 50px !important;
  }
  .mr-sm-md,
.mx-sm-md {
    margin-right: 50px !important;
  }
  .mb-sm-md,
.my-sm-md {
    margin-bottom: 50px !important;
  }
  .ml-sm-md,
.mx-sm-md {
    margin-left: 50px !important;
  }
  .m-sm-lg {
    margin: 80px !important;
  }
  .mt-sm-lg,
.my-sm-lg {
    margin-top: 80px !important;
  }
  .mr-sm-lg,
.mx-sm-lg {
    margin-right: 80px !important;
  }
  .mb-sm-lg,
.my-sm-lg {
    margin-bottom: 80px !important;
  }
  .ml-sm-lg,
.mx-sm-lg {
    margin-left: 80px !important;
  }
  .m-sm-15 {
    margin: 15px !important;
  }
  .mt-sm-15,
.my-sm-15 {
    margin-top: 15px !important;
  }
  .mr-sm-15,
.mx-sm-15 {
    margin-right: 15px !important;
  }
  .mb-sm-15,
.my-sm-15 {
    margin-bottom: 15px !important;
  }
  .ml-sm-15,
.mx-sm-15 {
    margin-left: 15px !important;
  }
  .m-sm-30 {
    margin: 30px !important;
  }
  .mt-sm-30,
.my-sm-30 {
    margin-top: 30px !important;
  }
  .mr-sm-30,
.mx-sm-30 {
    margin-right: 30px !important;
  }
  .mb-sm-30,
.my-sm-30 {
    margin-bottom: 30px !important;
  }
  .ml-sm-30,
.mx-sm-30 {
    margin-left: 30px !important;
  }
  .m-sm-40 {
    margin: 40px !important;
  }
  .mt-sm-40,
.my-sm-40 {
    margin-top: 40px !important;
  }
  .mr-sm-40,
.mx-sm-40 {
    margin-right: 40px !important;
  }
  .mb-sm-40,
.my-sm-40 {
    margin-bottom: 40px !important;
  }
  .ml-sm-40,
.mx-sm-40 {
    margin-left: 40px !important;
  }
  .m-sm-50 {
    margin: 50px !important;
  }
  .mt-sm-50,
.my-sm-50 {
    margin-top: 50px !important;
  }
  .mr-sm-50,
.mx-sm-50 {
    margin-right: 50px !important;
  }
  .mb-sm-50,
.my-sm-50 {
    margin-bottom: 50px !important;
  }
  .ml-sm-50,
.mx-sm-50 {
    margin-left: 50px !important;
  }
  .m-sm-60 {
    margin: 60px !important;
  }
  .mt-sm-60,
.my-sm-60 {
    margin-top: 60px !important;
  }
  .mr-sm-60,
.mx-sm-60 {
    margin-right: 60px !important;
  }
  .mb-sm-60,
.my-sm-60 {
    margin-bottom: 60px !important;
  }
  .ml-sm-60,
.mx-sm-60 {
    margin-left: 60px !important;
  }
  .m-sm-70 {
    margin: 70px !important;
  }
  .mt-sm-70,
.my-sm-70 {
    margin-top: 70px !important;
  }
  .mr-sm-70,
.mx-sm-70 {
    margin-right: 70px !important;
  }
  .mb-sm-70,
.my-sm-70 {
    margin-bottom: 70px !important;
  }
  .ml-sm-70,
.mx-sm-70 {
    margin-left: 70px !important;
  }
  .m-sm-80 {
    margin: 80px !important;
  }
  .mt-sm-80,
.my-sm-80 {
    margin-top: 80px !important;
  }
  .mr-sm-80,
.mx-sm-80 {
    margin-right: 80px !important;
  }
  .mb-sm-80,
.my-sm-80 {
    margin-bottom: 80px !important;
  }
  .ml-sm-80,
.mx-sm-80 {
    margin-left: 80px !important;
  }
  .m-sm-90 {
    margin: 90px !important;
  }
  .mt-sm-90,
.my-sm-90 {
    margin-top: 90px !important;
  }
  .mr-sm-90,
.mx-sm-90 {
    margin-right: 90px !important;
  }
  .mb-sm-90,
.my-sm-90 {
    margin-bottom: 90px !important;
  }
  .ml-sm-90,
.mx-sm-90 {
    margin-left: 90px !important;
  }
  .m-sm-100 {
    margin: 100px !important;
  }
  .mt-sm-100,
.my-sm-100 {
    margin-top: 100px !important;
  }
  .mr-sm-100,
.mx-sm-100 {
    margin-right: 100px !important;
  }
  .mb-sm-100,
.my-sm-100 {
    margin-bottom: 100px !important;
  }
  .ml-sm-100,
.mx-sm-100 {
    margin-left: 100px !important;
  }
  .p-sm-0 {
    padding: 0px !important;
  }
  .pt-sm-0,
.py-sm-0 {
    padding-top: 0px !important;
  }
  .pr-sm-0,
.px-sm-0 {
    padding-right: 0px !important;
  }
  .pb-sm-0,
.py-sm-0 {
    padding-bottom: 0px !important;
  }
  .pl-sm-0,
.px-sm-0 {
    padding-left: 0px !important;
  }
  .p-sm-sm {
    padding: 15px !important;
  }
  .pt-sm-sm,
.py-sm-sm {
    padding-top: 15px !important;
  }
  .pr-sm-sm,
.px-sm-sm {
    padding-right: 15px !important;
  }
  .pb-sm-sm,
.py-sm-sm {
    padding-bottom: 15px !important;
  }
  .pl-sm-sm,
.px-sm-sm {
    padding-left: 15px !important;
  }
  .p-sm-md {
    padding: 50px !important;
  }
  .pt-sm-md,
.py-sm-md {
    padding-top: 50px !important;
  }
  .pr-sm-md,
.px-sm-md {
    padding-right: 50px !important;
  }
  .pb-sm-md,
.py-sm-md {
    padding-bottom: 50px !important;
  }
  .pl-sm-md,
.px-sm-md {
    padding-left: 50px !important;
  }
  .p-sm-lg {
    padding: 80px !important;
  }
  .pt-sm-lg,
.py-sm-lg {
    padding-top: 80px !important;
  }
  .pr-sm-lg,
.px-sm-lg {
    padding-right: 80px !important;
  }
  .pb-sm-lg,
.py-sm-lg {
    padding-bottom: 80px !important;
  }
  .pl-sm-lg,
.px-sm-lg {
    padding-left: 80px !important;
  }
  .p-sm-15 {
    padding: 15px !important;
  }
  .pt-sm-15,
.py-sm-15 {
    padding-top: 15px !important;
  }
  .pr-sm-15,
.px-sm-15 {
    padding-right: 15px !important;
  }
  .pb-sm-15,
.py-sm-15 {
    padding-bottom: 15px !important;
  }
  .pl-sm-15,
.px-sm-15 {
    padding-left: 15px !important;
  }
  .p-sm-30 {
    padding: 30px !important;
  }
  .pt-sm-30,
.py-sm-30 {
    padding-top: 30px !important;
  }
  .pr-sm-30,
.px-sm-30 {
    padding-right: 30px !important;
  }
  .pb-sm-30,
.py-sm-30 {
    padding-bottom: 30px !important;
  }
  .pl-sm-30,
.px-sm-30 {
    padding-left: 30px !important;
  }
  .p-sm-40 {
    padding: 40px !important;
  }
  .pt-sm-40,
.py-sm-40 {
    padding-top: 40px !important;
  }
  .pr-sm-40,
.px-sm-40 {
    padding-right: 40px !important;
  }
  .pb-sm-40,
.py-sm-40 {
    padding-bottom: 40px !important;
  }
  .pl-sm-40,
.px-sm-40 {
    padding-left: 40px !important;
  }
  .p-sm-50 {
    padding: 50px !important;
  }
  .pt-sm-50,
.py-sm-50 {
    padding-top: 50px !important;
  }
  .pr-sm-50,
.px-sm-50 {
    padding-right: 50px !important;
  }
  .pb-sm-50,
.py-sm-50 {
    padding-bottom: 50px !important;
  }
  .pl-sm-50,
.px-sm-50 {
    padding-left: 50px !important;
  }
  .p-sm-60 {
    padding: 60px !important;
  }
  .pt-sm-60,
.py-sm-60 {
    padding-top: 60px !important;
  }
  .pr-sm-60,
.px-sm-60 {
    padding-right: 60px !important;
  }
  .pb-sm-60,
.py-sm-60 {
    padding-bottom: 60px !important;
  }
  .pl-sm-60,
.px-sm-60 {
    padding-left: 60px !important;
  }
  .p-sm-70 {
    padding: 70px !important;
  }
  .pt-sm-70,
.py-sm-70 {
    padding-top: 70px !important;
  }
  .pr-sm-70,
.px-sm-70 {
    padding-right: 70px !important;
  }
  .pb-sm-70,
.py-sm-70 {
    padding-bottom: 70px !important;
  }
  .pl-sm-70,
.px-sm-70 {
    padding-left: 70px !important;
  }
  .p-sm-80 {
    padding: 80px !important;
  }
  .pt-sm-80,
.py-sm-80 {
    padding-top: 80px !important;
  }
  .pr-sm-80,
.px-sm-80 {
    padding-right: 80px !important;
  }
  .pb-sm-80,
.py-sm-80 {
    padding-bottom: 80px !important;
  }
  .pl-sm-80,
.px-sm-80 {
    padding-left: 80px !important;
  }
  .p-sm-90 {
    padding: 90px !important;
  }
  .pt-sm-90,
.py-sm-90 {
    padding-top: 90px !important;
  }
  .pr-sm-90,
.px-sm-90 {
    padding-right: 90px !important;
  }
  .pb-sm-90,
.py-sm-90 {
    padding-bottom: 90px !important;
  }
  .pl-sm-90,
.px-sm-90 {
    padding-left: 90px !important;
  }
  .p-sm-100 {
    padding: 100px !important;
  }
  .pt-sm-100,
.py-sm-100 {
    padding-top: 100px !important;
  }
  .pr-sm-100,
.px-sm-100 {
    padding-right: 100px !important;
  }
  .pb-sm-100,
.py-sm-100 {
    padding-bottom: 100px !important;
  }
  .pl-sm-100,
.px-sm-100 {
    padding-left: 100px !important;
  }
}
@media (min-width: 768px) {
  .m-md-0 {
    margin: 0px !important;
  }
  .mt-md-0,
.my-md-0 {
    margin-top: 0px !important;
  }
  .mr-md-0,
.mx-md-0 {
    margin-right: 0px !important;
  }
  .mb-md-0,
.my-md-0 {
    margin-bottom: 0px !important;
  }
  .ml-md-0,
.mx-md-0 {
    margin-left: 0px !important;
  }
  .m-md-sm {
    margin: 15px !important;
  }
  .mt-md-sm,
.my-md-sm {
    margin-top: 15px !important;
  }
  .mr-md-sm,
.mx-md-sm {
    margin-right: 15px !important;
  }
  .mb-md-sm,
.my-md-sm {
    margin-bottom: 15px !important;
  }
  .ml-md-sm,
.mx-md-sm {
    margin-left: 15px !important;
  }
  .m-md-md {
    margin: 50px !important;
  }
  .mt-md-md,
.my-md-md {
    margin-top: 50px !important;
  }
  .mr-md-md,
.mx-md-md {
    margin-right: 50px !important;
  }
  .mb-md-md,
.my-md-md {
    margin-bottom: 50px !important;
  }
  .ml-md-md,
.mx-md-md {
    margin-left: 50px !important;
  }
  .m-md-lg {
    margin: 80px !important;
  }
  .mt-md-lg,
.my-md-lg {
    margin-top: 80px !important;
  }
  .mr-md-lg,
.mx-md-lg {
    margin-right: 80px !important;
  }
  .mb-md-lg,
.my-md-lg {
    margin-bottom: 80px !important;
  }
  .ml-md-lg,
.mx-md-lg {
    margin-left: 80px !important;
  }
  .m-md-15 {
    margin: 15px !important;
  }
  .mt-md-15,
.my-md-15 {
    margin-top: 15px !important;
  }
  .mr-md-15,
.mx-md-15 {
    margin-right: 15px !important;
  }
  .mb-md-15,
.my-md-15 {
    margin-bottom: 15px !important;
  }
  .ml-md-15,
.mx-md-15 {
    margin-left: 15px !important;
  }
  .m-md-30 {
    margin: 30px !important;
  }
  .mt-md-30,
.my-md-30 {
    margin-top: 30px !important;
  }
  .mr-md-30,
.mx-md-30 {
    margin-right: 30px !important;
  }
  .mb-md-30,
.my-md-30 {
    margin-bottom: 30px !important;
  }
  .ml-md-30,
.mx-md-30 {
    margin-left: 30px !important;
  }
  .m-md-40 {
    margin: 40px !important;
  }
  .mt-md-40,
.my-md-40 {
    margin-top: 40px !important;
  }
  .mr-md-40,
.mx-md-40 {
    margin-right: 40px !important;
  }
  .mb-md-40,
.my-md-40 {
    margin-bottom: 40px !important;
  }
  .ml-md-40,
.mx-md-40 {
    margin-left: 40px !important;
  }
  .m-md-50 {
    margin: 50px !important;
  }
  .mt-md-50,
.my-md-50 {
    margin-top: 50px !important;
  }
  .mr-md-50,
.mx-md-50 {
    margin-right: 50px !important;
  }
  .mb-md-50,
.my-md-50 {
    margin-bottom: 50px !important;
  }
  .ml-md-50,
.mx-md-50 {
    margin-left: 50px !important;
  }
  .m-md-60 {
    margin: 60px !important;
  }
  .mt-md-60,
.my-md-60 {
    margin-top: 60px !important;
  }
  .mr-md-60,
.mx-md-60 {
    margin-right: 60px !important;
  }
  .mb-md-60,
.my-md-60 {
    margin-bottom: 60px !important;
  }
  .ml-md-60,
.mx-md-60 {
    margin-left: 60px !important;
  }
  .m-md-70 {
    margin: 70px !important;
  }
  .mt-md-70,
.my-md-70 {
    margin-top: 70px !important;
  }
  .mr-md-70,
.mx-md-70 {
    margin-right: 70px !important;
  }
  .mb-md-70,
.my-md-70 {
    margin-bottom: 70px !important;
  }
  .ml-md-70,
.mx-md-70 {
    margin-left: 70px !important;
  }
  .m-md-80 {
    margin: 80px !important;
  }
  .mt-md-80,
.my-md-80 {
    margin-top: 80px !important;
  }
  .mr-md-80,
.mx-md-80 {
    margin-right: 80px !important;
  }
  .mb-md-80,
.my-md-80 {
    margin-bottom: 80px !important;
  }
  .ml-md-80,
.mx-md-80 {
    margin-left: 80px !important;
  }
  .m-md-90 {
    margin: 90px !important;
  }
  .mt-md-90,
.my-md-90 {
    margin-top: 90px !important;
  }
  .mr-md-90,
.mx-md-90 {
    margin-right: 90px !important;
  }
  .mb-md-90,
.my-md-90 {
    margin-bottom: 90px !important;
  }
  .ml-md-90,
.mx-md-90 {
    margin-left: 90px !important;
  }
  .m-md-100 {
    margin: 100px !important;
  }
  .mt-md-100,
.my-md-100 {
    margin-top: 100px !important;
  }
  .mr-md-100,
.mx-md-100 {
    margin-right: 100px !important;
  }
  .mb-md-100,
.my-md-100 {
    margin-bottom: 100px !important;
  }
  .ml-md-100,
.mx-md-100 {
    margin-left: 100px !important;
  }
  .p-md-0 {
    padding: 0px !important;
  }
  .pt-md-0,
.py-md-0 {
    padding-top: 0px !important;
  }
  .pr-md-0,
.px-md-0 {
    padding-right: 0px !important;
  }
  .pb-md-0,
.py-md-0 {
    padding-bottom: 0px !important;
  }
  .pl-md-0,
.px-md-0 {
    padding-left: 0px !important;
  }
  .p-md-sm {
    padding: 15px !important;
  }
  .pt-md-sm,
.py-md-sm {
    padding-top: 15px !important;
  }
  .pr-md-sm,
.px-md-sm {
    padding-right: 15px !important;
  }
  .pb-md-sm,
.py-md-sm {
    padding-bottom: 15px !important;
  }
  .pl-md-sm,
.px-md-sm {
    padding-left: 15px !important;
  }
  .p-md-md {
    padding: 50px !important;
  }
  .pt-md-md,
.py-md-md {
    padding-top: 50px !important;
  }
  .pr-md-md,
.px-md-md {
    padding-right: 50px !important;
  }
  .pb-md-md,
.py-md-md {
    padding-bottom: 50px !important;
  }
  .pl-md-md,
.px-md-md {
    padding-left: 50px !important;
  }
  .p-md-lg {
    padding: 80px !important;
  }
  .pt-md-lg,
.py-md-lg {
    padding-top: 80px !important;
  }
  .pr-md-lg,
.px-md-lg {
    padding-right: 80px !important;
  }
  .pb-md-lg,
.py-md-lg {
    padding-bottom: 80px !important;
  }
  .pl-md-lg,
.px-md-lg {
    padding-left: 80px !important;
  }
  .p-md-15 {
    padding: 15px !important;
  }
  .pt-md-15,
.py-md-15 {
    padding-top: 15px !important;
  }
  .pr-md-15,
.px-md-15 {
    padding-right: 15px !important;
  }
  .pb-md-15,
.py-md-15 {
    padding-bottom: 15px !important;
  }
  .pl-md-15,
.px-md-15 {
    padding-left: 15px !important;
  }
  .p-md-30 {
    padding: 30px !important;
  }
  .pt-md-30,
.py-md-30 {
    padding-top: 30px !important;
  }
  .pr-md-30,
.px-md-30 {
    padding-right: 30px !important;
  }
  .pb-md-30,
.py-md-30 {
    padding-bottom: 30px !important;
  }
  .pl-md-30,
.px-md-30 {
    padding-left: 30px !important;
  }
  .p-md-40 {
    padding: 40px !important;
  }
  .pt-md-40,
.py-md-40 {
    padding-top: 40px !important;
  }
  .pr-md-40,
.px-md-40 {
    padding-right: 40px !important;
  }
  .pb-md-40,
.py-md-40 {
    padding-bottom: 40px !important;
  }
  .pl-md-40,
.px-md-40 {
    padding-left: 40px !important;
  }
  .p-md-50 {
    padding: 50px !important;
  }
  .pt-md-50,
.py-md-50 {
    padding-top: 50px !important;
  }
  .pr-md-50,
.px-md-50 {
    padding-right: 50px !important;
  }
  .pb-md-50,
.py-md-50 {
    padding-bottom: 50px !important;
  }
  .pl-md-50,
.px-md-50 {
    padding-left: 50px !important;
  }
  .p-md-60 {
    padding: 60px !important;
  }
  .pt-md-60,
.py-md-60 {
    padding-top: 60px !important;
  }
  .pr-md-60,
.px-md-60 {
    padding-right: 60px !important;
  }
  .pb-md-60,
.py-md-60 {
    padding-bottom: 60px !important;
  }
  .pl-md-60,
.px-md-60 {
    padding-left: 60px !important;
  }
  .p-md-70 {
    padding: 70px !important;
  }
  .pt-md-70,
.py-md-70 {
    padding-top: 70px !important;
  }
  .pr-md-70,
.px-md-70 {
    padding-right: 70px !important;
  }
  .pb-md-70,
.py-md-70 {
    padding-bottom: 70px !important;
  }
  .pl-md-70,
.px-md-70 {
    padding-left: 70px !important;
  }
  .p-md-80 {
    padding: 80px !important;
  }
  .pt-md-80,
.py-md-80 {
    padding-top: 80px !important;
  }
  .pr-md-80,
.px-md-80 {
    padding-right: 80px !important;
  }
  .pb-md-80,
.py-md-80 {
    padding-bottom: 80px !important;
  }
  .pl-md-80,
.px-md-80 {
    padding-left: 80px !important;
  }
  .p-md-90 {
    padding: 90px !important;
  }
  .pt-md-90,
.py-md-90 {
    padding-top: 90px !important;
  }
  .pr-md-90,
.px-md-90 {
    padding-right: 90px !important;
  }
  .pb-md-90,
.py-md-90 {
    padding-bottom: 90px !important;
  }
  .pl-md-90,
.px-md-90 {
    padding-left: 90px !important;
  }
  .p-md-100 {
    padding: 100px !important;
  }
  .pt-md-100,
.py-md-100 {
    padding-top: 100px !important;
  }
  .pr-md-100,
.px-md-100 {
    padding-right: 100px !important;
  }
  .pb-md-100,
.py-md-100 {
    padding-bottom: 100px !important;
  }
  .pl-md-100,
.px-md-100 {
    padding-left: 100px !important;
  }
}
@media (min-width: 992px) {
  .m-lg-0 {
    margin: 0px !important;
  }
  .mt-lg-0,
.my-lg-0 {
    margin-top: 0px !important;
  }
  .mr-lg-0,
.mx-lg-0 {
    margin-right: 0px !important;
  }
  .mb-lg-0,
.my-lg-0 {
    margin-bottom: 0px !important;
  }
  .ml-lg-0,
.mx-lg-0 {
    margin-left: 0px !important;
  }
  .m-lg-sm {
    margin: 15px !important;
  }
  .mt-lg-sm,
.my-lg-sm {
    margin-top: 15px !important;
  }
  .mr-lg-sm,
.mx-lg-sm {
    margin-right: 15px !important;
  }
  .mb-lg-sm,
.my-lg-sm {
    margin-bottom: 15px !important;
  }
  .ml-lg-sm,
.mx-lg-sm {
    margin-left: 15px !important;
  }
  .m-lg-md {
    margin: 50px !important;
  }
  .mt-lg-md,
.my-lg-md {
    margin-top: 50px !important;
  }
  .mr-lg-md,
.mx-lg-md {
    margin-right: 50px !important;
  }
  .mb-lg-md,
.my-lg-md {
    margin-bottom: 50px !important;
  }
  .ml-lg-md,
.mx-lg-md {
    margin-left: 50px !important;
  }
  .m-lg-lg {
    margin: 80px !important;
  }
  .mt-lg-lg,
.my-lg-lg {
    margin-top: 80px !important;
  }
  .mr-lg-lg,
.mx-lg-lg {
    margin-right: 80px !important;
  }
  .mb-lg-lg,
.my-lg-lg {
    margin-bottom: 80px !important;
  }
  .ml-lg-lg,
.mx-lg-lg {
    margin-left: 80px !important;
  }
  .m-lg-15 {
    margin: 15px !important;
  }
  .mt-lg-15,
.my-lg-15 {
    margin-top: 15px !important;
  }
  .mr-lg-15,
.mx-lg-15 {
    margin-right: 15px !important;
  }
  .mb-lg-15,
.my-lg-15 {
    margin-bottom: 15px !important;
  }
  .ml-lg-15,
.mx-lg-15 {
    margin-left: 15px !important;
  }
  .m-lg-30 {
    margin: 30px !important;
  }
  .mt-lg-30,
.my-lg-30 {
    margin-top: 30px !important;
  }
  .mr-lg-30,
.mx-lg-30 {
    margin-right: 30px !important;
  }
  .mb-lg-30,
.my-lg-30 {
    margin-bottom: 30px !important;
  }
  .ml-lg-30,
.mx-lg-30 {
    margin-left: 30px !important;
  }
  .m-lg-40 {
    margin: 40px !important;
  }
  .mt-lg-40,
.my-lg-40 {
    margin-top: 40px !important;
  }
  .mr-lg-40,
.mx-lg-40 {
    margin-right: 40px !important;
  }
  .mb-lg-40,
.my-lg-40 {
    margin-bottom: 40px !important;
  }
  .ml-lg-40,
.mx-lg-40 {
    margin-left: 40px !important;
  }
  .m-lg-50 {
    margin: 50px !important;
  }
  .mt-lg-50,
.my-lg-50 {
    margin-top: 50px !important;
  }
  .mr-lg-50,
.mx-lg-50 {
    margin-right: 50px !important;
  }
  .mb-lg-50,
.my-lg-50 {
    margin-bottom: 50px !important;
  }
  .ml-lg-50,
.mx-lg-50 {
    margin-left: 50px !important;
  }
  .m-lg-60 {
    margin: 60px !important;
  }
  .mt-lg-60,
.my-lg-60 {
    margin-top: 60px !important;
  }
  .mr-lg-60,
.mx-lg-60 {
    margin-right: 60px !important;
  }
  .mb-lg-60,
.my-lg-60 {
    margin-bottom: 60px !important;
  }
  .ml-lg-60,
.mx-lg-60 {
    margin-left: 60px !important;
  }
  .m-lg-70 {
    margin: 70px !important;
  }
  .mt-lg-70,
.my-lg-70 {
    margin-top: 70px !important;
  }
  .mr-lg-70,
.mx-lg-70 {
    margin-right: 70px !important;
  }
  .mb-lg-70,
.my-lg-70 {
    margin-bottom: 70px !important;
  }
  .ml-lg-70,
.mx-lg-70 {
    margin-left: 70px !important;
  }
  .m-lg-80 {
    margin: 80px !important;
  }
  .mt-lg-80,
.my-lg-80 {
    margin-top: 80px !important;
  }
  .mr-lg-80,
.mx-lg-80 {
    margin-right: 80px !important;
  }
  .mb-lg-80,
.my-lg-80 {
    margin-bottom: 80px !important;
  }
  .ml-lg-80,
.mx-lg-80 {
    margin-left: 80px !important;
  }
  .m-lg-90 {
    margin: 90px !important;
  }
  .mt-lg-90,
.my-lg-90 {
    margin-top: 90px !important;
  }
  .mr-lg-90,
.mx-lg-90 {
    margin-right: 90px !important;
  }
  .mb-lg-90,
.my-lg-90 {
    margin-bottom: 90px !important;
  }
  .ml-lg-90,
.mx-lg-90 {
    margin-left: 90px !important;
  }
  .m-lg-100 {
    margin: 100px !important;
  }
  .mt-lg-100,
.my-lg-100 {
    margin-top: 100px !important;
  }
  .mr-lg-100,
.mx-lg-100 {
    margin-right: 100px !important;
  }
  .mb-lg-100,
.my-lg-100 {
    margin-bottom: 100px !important;
  }
  .ml-lg-100,
.mx-lg-100 {
    margin-left: 100px !important;
  }
  .p-lg-0 {
    padding: 0px !important;
  }
  .pt-lg-0,
.py-lg-0 {
    padding-top: 0px !important;
  }
  .pr-lg-0,
.px-lg-0 {
    padding-right: 0px !important;
  }
  .pb-lg-0,
.py-lg-0 {
    padding-bottom: 0px !important;
  }
  .pl-lg-0,
.px-lg-0 {
    padding-left: 0px !important;
  }
  .p-lg-sm {
    padding: 15px !important;
  }
  .pt-lg-sm,
.py-lg-sm {
    padding-top: 15px !important;
  }
  .pr-lg-sm,
.px-lg-sm {
    padding-right: 15px !important;
  }
  .pb-lg-sm,
.py-lg-sm {
    padding-bottom: 15px !important;
  }
  .pl-lg-sm,
.px-lg-sm {
    padding-left: 15px !important;
  }
  .p-lg-md {
    padding: 50px !important;
  }
  .pt-lg-md,
.py-lg-md {
    padding-top: 50px !important;
  }
  .pr-lg-md,
.px-lg-md {
    padding-right: 50px !important;
  }
  .pb-lg-md,
.py-lg-md {
    padding-bottom: 50px !important;
  }
  .pl-lg-md,
.px-lg-md {
    padding-left: 50px !important;
  }
  .p-lg-lg {
    padding: 80px !important;
  }
  .pt-lg-lg,
.py-lg-lg {
    padding-top: 80px !important;
  }
  .pr-lg-lg,
.px-lg-lg {
    padding-right: 80px !important;
  }
  .pb-lg-lg,
.py-lg-lg {
    padding-bottom: 80px !important;
  }
  .pl-lg-lg,
.px-lg-lg {
    padding-left: 80px !important;
  }
  .p-lg-15 {
    padding: 15px !important;
  }
  .pt-lg-15,
.py-lg-15 {
    padding-top: 15px !important;
  }
  .pr-lg-15,
.px-lg-15 {
    padding-right: 15px !important;
  }
  .pb-lg-15,
.py-lg-15 {
    padding-bottom: 15px !important;
  }
  .pl-lg-15,
.px-lg-15 {
    padding-left: 15px !important;
  }
  .p-lg-30 {
    padding: 30px !important;
  }
  .pt-lg-30,
.py-lg-30 {
    padding-top: 30px !important;
  }
  .pr-lg-30,
.px-lg-30 {
    padding-right: 30px !important;
  }
  .pb-lg-30,
.py-lg-30 {
    padding-bottom: 30px !important;
  }
  .pl-lg-30,
.px-lg-30 {
    padding-left: 30px !important;
  }
  .p-lg-40 {
    padding: 40px !important;
  }
  .pt-lg-40,
.py-lg-40 {
    padding-top: 40px !important;
  }
  .pr-lg-40,
.px-lg-40 {
    padding-right: 40px !important;
  }
  .pb-lg-40,
.py-lg-40 {
    padding-bottom: 40px !important;
  }
  .pl-lg-40,
.px-lg-40 {
    padding-left: 40px !important;
  }
  .p-lg-50 {
    padding: 50px !important;
  }
  .pt-lg-50,
.py-lg-50 {
    padding-top: 50px !important;
  }
  .pr-lg-50,
.px-lg-50 {
    padding-right: 50px !important;
  }
  .pb-lg-50,
.py-lg-50 {
    padding-bottom: 50px !important;
  }
  .pl-lg-50,
.px-lg-50 {
    padding-left: 50px !important;
  }
  .p-lg-60 {
    padding: 60px !important;
  }
  .pt-lg-60,
.py-lg-60 {
    padding-top: 60px !important;
  }
  .pr-lg-60,
.px-lg-60 {
    padding-right: 60px !important;
  }
  .pb-lg-60,
.py-lg-60 {
    padding-bottom: 60px !important;
  }
  .pl-lg-60,
.px-lg-60 {
    padding-left: 60px !important;
  }
  .p-lg-70 {
    padding: 70px !important;
  }
  .pt-lg-70,
.py-lg-70 {
    padding-top: 70px !important;
  }
  .pr-lg-70,
.px-lg-70 {
    padding-right: 70px !important;
  }
  .pb-lg-70,
.py-lg-70 {
    padding-bottom: 70px !important;
  }
  .pl-lg-70,
.px-lg-70 {
    padding-left: 70px !important;
  }
  .p-lg-80 {
    padding: 80px !important;
  }
  .pt-lg-80,
.py-lg-80 {
    padding-top: 80px !important;
  }
  .pr-lg-80,
.px-lg-80 {
    padding-right: 80px !important;
  }
  .pb-lg-80,
.py-lg-80 {
    padding-bottom: 80px !important;
  }
  .pl-lg-80,
.px-lg-80 {
    padding-left: 80px !important;
  }
  .p-lg-90 {
    padding: 90px !important;
  }
  .pt-lg-90,
.py-lg-90 {
    padding-top: 90px !important;
  }
  .pr-lg-90,
.px-lg-90 {
    padding-right: 90px !important;
  }
  .pb-lg-90,
.py-lg-90 {
    padding-bottom: 90px !important;
  }
  .pl-lg-90,
.px-lg-90 {
    padding-left: 90px !important;
  }
  .p-lg-100 {
    padding: 100px !important;
  }
  .pt-lg-100,
.py-lg-100 {
    padding-top: 100px !important;
  }
  .pr-lg-100,
.px-lg-100 {
    padding-right: 100px !important;
  }
  .pb-lg-100,
.py-lg-100 {
    padding-bottom: 100px !important;
  }
  .pl-lg-100,
.px-lg-100 {
    padding-left: 100px !important;
  }
}
@media (min-width: 1200px) {
  .m-xl-0 {
    margin: 0px !important;
  }
  .mt-xl-0,
.my-xl-0 {
    margin-top: 0px !important;
  }
  .mr-xl-0,
.mx-xl-0 {
    margin-right: 0px !important;
  }
  .mb-xl-0,
.my-xl-0 {
    margin-bottom: 0px !important;
  }
  .ml-xl-0,
.mx-xl-0 {
    margin-left: 0px !important;
  }
  .m-xl-sm {
    margin: 15px !important;
  }
  .mt-xl-sm,
.my-xl-sm {
    margin-top: 15px !important;
  }
  .mr-xl-sm,
.mx-xl-sm {
    margin-right: 15px !important;
  }
  .mb-xl-sm,
.my-xl-sm {
    margin-bottom: 15px !important;
  }
  .ml-xl-sm,
.mx-xl-sm {
    margin-left: 15px !important;
  }
  .m-xl-md {
    margin: 50px !important;
  }
  .mt-xl-md,
.my-xl-md {
    margin-top: 50px !important;
  }
  .mr-xl-md,
.mx-xl-md {
    margin-right: 50px !important;
  }
  .mb-xl-md,
.my-xl-md {
    margin-bottom: 50px !important;
  }
  .ml-xl-md,
.mx-xl-md {
    margin-left: 50px !important;
  }
  .m-xl-lg {
    margin: 80px !important;
  }
  .mt-xl-lg,
.my-xl-lg {
    margin-top: 80px !important;
  }
  .mr-xl-lg,
.mx-xl-lg {
    margin-right: 80px !important;
  }
  .mb-xl-lg,
.my-xl-lg {
    margin-bottom: 80px !important;
  }
  .ml-xl-lg,
.mx-xl-lg {
    margin-left: 80px !important;
  }
  .m-xl-15 {
    margin: 15px !important;
  }
  .mt-xl-15,
.my-xl-15 {
    margin-top: 15px !important;
  }
  .mr-xl-15,
.mx-xl-15 {
    margin-right: 15px !important;
  }
  .mb-xl-15,
.my-xl-15 {
    margin-bottom: 15px !important;
  }
  .ml-xl-15,
.mx-xl-15 {
    margin-left: 15px !important;
  }
  .m-xl-30 {
    margin: 30px !important;
  }
  .mt-xl-30,
.my-xl-30 {
    margin-top: 30px !important;
  }
  .mr-xl-30,
.mx-xl-30 {
    margin-right: 30px !important;
  }
  .mb-xl-30,
.my-xl-30 {
    margin-bottom: 30px !important;
  }
  .ml-xl-30,
.mx-xl-30 {
    margin-left: 30px !important;
  }
  .m-xl-40 {
    margin: 40px !important;
  }
  .mt-xl-40,
.my-xl-40 {
    margin-top: 40px !important;
  }
  .mr-xl-40,
.mx-xl-40 {
    margin-right: 40px !important;
  }
  .mb-xl-40,
.my-xl-40 {
    margin-bottom: 40px !important;
  }
  .ml-xl-40,
.mx-xl-40 {
    margin-left: 40px !important;
  }
  .m-xl-50 {
    margin: 50px !important;
  }
  .mt-xl-50,
.my-xl-50 {
    margin-top: 50px !important;
  }
  .mr-xl-50,
.mx-xl-50 {
    margin-right: 50px !important;
  }
  .mb-xl-50,
.my-xl-50 {
    margin-bottom: 50px !important;
  }
  .ml-xl-50,
.mx-xl-50 {
    margin-left: 50px !important;
  }
  .m-xl-60 {
    margin: 60px !important;
  }
  .mt-xl-60,
.my-xl-60 {
    margin-top: 60px !important;
  }
  .mr-xl-60,
.mx-xl-60 {
    margin-right: 60px !important;
  }
  .mb-xl-60,
.my-xl-60 {
    margin-bottom: 60px !important;
  }
  .ml-xl-60,
.mx-xl-60 {
    margin-left: 60px !important;
  }
  .m-xl-70 {
    margin: 70px !important;
  }
  .mt-xl-70,
.my-xl-70 {
    margin-top: 70px !important;
  }
  .mr-xl-70,
.mx-xl-70 {
    margin-right: 70px !important;
  }
  .mb-xl-70,
.my-xl-70 {
    margin-bottom: 70px !important;
  }
  .ml-xl-70,
.mx-xl-70 {
    margin-left: 70px !important;
  }
  .m-xl-80 {
    margin: 80px !important;
  }
  .mt-xl-80,
.my-xl-80 {
    margin-top: 80px !important;
  }
  .mr-xl-80,
.mx-xl-80 {
    margin-right: 80px !important;
  }
  .mb-xl-80,
.my-xl-80 {
    margin-bottom: 80px !important;
  }
  .ml-xl-80,
.mx-xl-80 {
    margin-left: 80px !important;
  }
  .m-xl-90 {
    margin: 90px !important;
  }
  .mt-xl-90,
.my-xl-90 {
    margin-top: 90px !important;
  }
  .mr-xl-90,
.mx-xl-90 {
    margin-right: 90px !important;
  }
  .mb-xl-90,
.my-xl-90 {
    margin-bottom: 90px !important;
  }
  .ml-xl-90,
.mx-xl-90 {
    margin-left: 90px !important;
  }
  .m-xl-100 {
    margin: 100px !important;
  }
  .mt-xl-100,
.my-xl-100 {
    margin-top: 100px !important;
  }
  .mr-xl-100,
.mx-xl-100 {
    margin-right: 100px !important;
  }
  .mb-xl-100,
.my-xl-100 {
    margin-bottom: 100px !important;
  }
  .ml-xl-100,
.mx-xl-100 {
    margin-left: 100px !important;
  }
  .p-xl-0 {
    padding: 0px !important;
  }
  .pt-xl-0,
.py-xl-0 {
    padding-top: 0px !important;
  }
  .pr-xl-0,
.px-xl-0 {
    padding-right: 0px !important;
  }
  .pb-xl-0,
.py-xl-0 {
    padding-bottom: 0px !important;
  }
  .pl-xl-0,
.px-xl-0 {
    padding-left: 0px !important;
  }
  .p-xl-sm {
    padding: 15px !important;
  }
  .pt-xl-sm,
.py-xl-sm {
    padding-top: 15px !important;
  }
  .pr-xl-sm,
.px-xl-sm {
    padding-right: 15px !important;
  }
  .pb-xl-sm,
.py-xl-sm {
    padding-bottom: 15px !important;
  }
  .pl-xl-sm,
.px-xl-sm {
    padding-left: 15px !important;
  }
  .p-xl-md {
    padding: 50px !important;
  }
  .pt-xl-md,
.py-xl-md {
    padding-top: 50px !important;
  }
  .pr-xl-md,
.px-xl-md {
    padding-right: 50px !important;
  }
  .pb-xl-md,
.py-xl-md {
    padding-bottom: 50px !important;
  }
  .pl-xl-md,
.px-xl-md {
    padding-left: 50px !important;
  }
  .p-xl-lg {
    padding: 80px !important;
  }
  .pt-xl-lg,
.py-xl-lg {
    padding-top: 80px !important;
  }
  .pr-xl-lg,
.px-xl-lg {
    padding-right: 80px !important;
  }
  .pb-xl-lg,
.py-xl-lg {
    padding-bottom: 80px !important;
  }
  .pl-xl-lg,
.px-xl-lg {
    padding-left: 80px !important;
  }
  .p-xl-15 {
    padding: 15px !important;
  }
  .pt-xl-15,
.py-xl-15 {
    padding-top: 15px !important;
  }
  .pr-xl-15,
.px-xl-15 {
    padding-right: 15px !important;
  }
  .pb-xl-15,
.py-xl-15 {
    padding-bottom: 15px !important;
  }
  .pl-xl-15,
.px-xl-15 {
    padding-left: 15px !important;
  }
  .p-xl-30 {
    padding: 30px !important;
  }
  .pt-xl-30,
.py-xl-30 {
    padding-top: 30px !important;
  }
  .pr-xl-30,
.px-xl-30 {
    padding-right: 30px !important;
  }
  .pb-xl-30,
.py-xl-30 {
    padding-bottom: 30px !important;
  }
  .pl-xl-30,
.px-xl-30 {
    padding-left: 30px !important;
  }
  .p-xl-40 {
    padding: 40px !important;
  }
  .pt-xl-40,
.py-xl-40 {
    padding-top: 40px !important;
  }
  .pr-xl-40,
.px-xl-40 {
    padding-right: 40px !important;
  }
  .pb-xl-40,
.py-xl-40 {
    padding-bottom: 40px !important;
  }
  .pl-xl-40,
.px-xl-40 {
    padding-left: 40px !important;
  }
  .p-xl-50 {
    padding: 50px !important;
  }
  .pt-xl-50,
.py-xl-50 {
    padding-top: 50px !important;
  }
  .pr-xl-50,
.px-xl-50 {
    padding-right: 50px !important;
  }
  .pb-xl-50,
.py-xl-50 {
    padding-bottom: 50px !important;
  }
  .pl-xl-50,
.px-xl-50 {
    padding-left: 50px !important;
  }
  .p-xl-60 {
    padding: 60px !important;
  }
  .pt-xl-60,
.py-xl-60 {
    padding-top: 60px !important;
  }
  .pr-xl-60,
.px-xl-60 {
    padding-right: 60px !important;
  }
  .pb-xl-60,
.py-xl-60 {
    padding-bottom: 60px !important;
  }
  .pl-xl-60,
.px-xl-60 {
    padding-left: 60px !important;
  }
  .p-xl-70 {
    padding: 70px !important;
  }
  .pt-xl-70,
.py-xl-70 {
    padding-top: 70px !important;
  }
  .pr-xl-70,
.px-xl-70 {
    padding-right: 70px !important;
  }
  .pb-xl-70,
.py-xl-70 {
    padding-bottom: 70px !important;
  }
  .pl-xl-70,
.px-xl-70 {
    padding-left: 70px !important;
  }
  .p-xl-80 {
    padding: 80px !important;
  }
  .pt-xl-80,
.py-xl-80 {
    padding-top: 80px !important;
  }
  .pr-xl-80,
.px-xl-80 {
    padding-right: 80px !important;
  }
  .pb-xl-80,
.py-xl-80 {
    padding-bottom: 80px !important;
  }
  .pl-xl-80,
.px-xl-80 {
    padding-left: 80px !important;
  }
  .p-xl-90 {
    padding: 90px !important;
  }
  .pt-xl-90,
.py-xl-90 {
    padding-top: 90px !important;
  }
  .pr-xl-90,
.px-xl-90 {
    padding-right: 90px !important;
  }
  .pb-xl-90,
.py-xl-90 {
    padding-bottom: 90px !important;
  }
  .pl-xl-90,
.px-xl-90 {
    padding-left: 90px !important;
  }
  .p-xl-100 {
    padding: 100px !important;
  }
  .pt-xl-100,
.py-xl-100 {
    padding-top: 100px !important;
  }
  .pr-xl-100,
.px-xl-100 {
    padding-right: 100px !important;
  }
  .pb-xl-100,
.py-xl-100 {
    padding-bottom: 100px !important;
  }
  .pl-xl-100,
.px-xl-100 {
    padding-left: 100px !important;
  }
}
@media (max-width: 991.98px) {
  .pb-lg,
.py-lg {
    padding-bottom: 50px !important;
  }
  .pt-lg,
.py-lg {
    padding-top: 50px !important;
  }
  .mb-lg,
.my-lg {
    margin-bottom: 50px !important;
  }
  .mt-lg,
.my-lg {
    margin-top: 50px !important;
  }
  .mb-md,
.my-md {
    margin-bottom: 30px !important;
  }
  .mt-md,
.my-md {
    margin-top: 30px !important;
  }
}
@media (max-width: 767.98px) {
  .pb-lg,
.py-lg {
    padding-bottom: 30px !important;
  }
  .pt-lg,
.py-lg {
    padding-top: 30px !important;
  }
  .mb-lg,
.my-lg {
    margin-bottom: 30px !important;
  }
  .mt-lg,
.my-lg {
    margin-top: 30px !important;
  }
  .mb-md,
.my-md {
    margin-bottom: 20px !important;
  }
  .mt-md,
.my-md {
    margin-top: 20px !important;
  }
}
.my-no-bottom {
  margin-bottom: 0 !important;
}

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

.overlay--container {
  position: relative;
  z-index: 0;
}

.overlay--content-over {
  position: relative;
  z-index: 1;
}

[class^=overlay].overlay--light {
  opacity: 0.5;
}
[class^=overlay].overlay--lighter {
  opacity: 0.25;
}
[class^=overlay].overlay--dark {
  opacity: 0.75;
}
[class^=overlay].overlay--darker {
  opacity: 0.9;
}

.overlay--full {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: black;
  opacity: 0.7;
}

.overlay--top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  opacity: 0.7;
  background: -webkit-gradient(linear, left top, left bottom, from(#000000), to(rgba(0, 0, 0, 0)));
  background: -o-linear-gradient(top, #000000 0%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
}

.overlay--bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  opacity: 0.7;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(#000000));
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, #000000 100%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
}

.overlay--left {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 40%;
  opacity: 0.7;
  background: -webkit-gradient(linear, left top, right top, from(#000000), to(rgba(0, 0, 0, 0)));
  background: -o-linear-gradient(left, #000000 0%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(90deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
}
@media (max-width: 767px) {
  .overlay--left {
    right: 0;
  }
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  font-family: "Roboto", "Helvetica", sans-serif;
}

@media screen and (min-width: 1600px) {
  .container {
    max-width: 1500px;
  }
}
@media screen and (min-width: 1440px) {
  .container {
    max-width: 1400px;
  }
}
.top-nav {
  background-color: white;
  width: 100%;
  padding: 25px;
}
.top-nav.fixed-header {
  position: fixed;
  top: -100px;
  left: 0;
  right: 0;
  height: auto;
  background-color: white;
  -webkit-box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1);
  -webkit-transition: -webkit-transform 0.4s ease-out;
  transition: -webkit-transform 0.4s ease-out;
  -o-transition: transform 0.4s ease-out;
  transition: transform 0.4s ease-out;
  transition: transform 0.4s ease-out, -webkit-transform 0.4s ease-out;
  z-index: 9;
}
@media (prefers-reduced-motion: reduce) {
  .top-nav.fixed-header {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}
.top-nav.transform-none {
  -ms-transform: translateY(100px); /* IE 9 */
  -webkit-transform: translateY(100px); /* Safari */
  transform: translateY(100px); /* Safari */
  -webkit-transition: -webkit-transform 0.4s ease-out;
  transition: -webkit-transform 0.4s ease-out;
  -o-transition: transform 0.4s ease-out;
  transition: transform 0.4s ease-out;
  transition: transform 0.4s ease-out, -webkit-transform 0.4s ease-out;
}
@media (prefers-reduced-motion: reduce) {
  .top-nav.transform-none {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}
.top-nav__logo img {
  width: 201px;
}
.top-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.top-nav ul > li {
  padding: 0;
  text-indent: 0;
}
.top-nav ul li {
  position: relative;
  display: inline-block;
}
.top-nav ul li a {
  display: inline-block;
  padding: 15px;
  color: #000000;
  font-weight: 400;
  font-size: 1.25rem;
  position: relative;
}
.top-nav ul li a:hover {
  text-decoration: none;
  color: #005eb8;
}
.top-nav ul li.current_page_item a, .top-nav ul li.current-page-ancestor a {
  color: #005eb8;
}

.menu-main-container {
  padding-top: 40px;
}

@media screen and (min-width: 768px) {
  .mobile-menu-button-wrapper {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .mobile-menu-button-wrapper {
    position: relative;
    z-index: 10;
  }
  .site-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    height: 100vh;
    width: 330px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    background-color: #000000;
    padding: 50px;
    -webkit-transform: translateX(331px);
        -ms-transform: translateX(331px);
            transform: translateX(331px);
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    opacity: 0;
    z-index: 9;
  }
  .site-menu.is-active {
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
  .site-menu ul li {
    display: block;
  }
  .site-menu ul li a {
    display: block;
    color: white !important;
  }
}
.site-footer {
  background-color: #000000;
  padding-top: 50px;
  padding-bottom: 40px;
}
.site-footer img {
  max-width: 260px;
}
.site-footer h4 {
  margin-bottom: 25px;
}
.site-footer p, .site-footer a {
  font-size: 16px !important;
  line-height: 1.35;
  color: white;
}
.site-footer a {
  position: relative;
  font-weight: 400;
}
.site-footer a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0px;
  height: 1px;
  background-color: transparent;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.site-footer a:hover, .site-footer a:focus {
  color: white !important;
  text-decoration: none;
}
.site-footer a:hover::after, .site-footer a:focus::after {
  width: 100%;
  background-color: #DE3B42;
}
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  -webkit-column-count: 2;
     -moz-column-count: 2;
          column-count: 2;
}
.site-footer ul li {
  padding: 0;
  margin: 0;
  margin-bottom: 10px;
}
.site-footer .copyright .container {
  position: relative;
  padding-top: 40px;
}
.site-footer .copyright .container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 15px;
  right: 15px;
  height: 1px;
  background-color: rgba(151, 151, 151, 0.3);
}
.site-footer .copyright p {
  font-size: 0.875rem;
  line-height: 1.42;
}

.title {
  font-family: "Roboto", "Helvetica", sans-serif;
}
.title--xs {
  font-size: 16px;
  line-height: 1.125;
}
.title--sm {
  font-size: 24px;
  line-height: 1.0833333333;
}
.title--md {
  font-size: 30px;
  line-height: 1.0666666667;
}
.title--lg {
  font-size: 42px;
  letter-spacing: -1px;
  line-height: 1;
}
.title--xl {
  font-size: 64px;
  letter-spacing: -1px;
  line-height: 1;
}

.text {
  font-family: "Roboto", "Helvetica", sans-serif;
}

.font-sans {
  font-family: "Roboto", "Helvetica", sans-serif !important;
}

.font-serif {
  font-family: "Roboto", "Helvetica", sans-serif !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1 {
  font-family: "Roboto", "Helvetica", sans-serif;
  font-weight: 300;
  line-height: 1.1;
  text-transform: initial;
  color: #000000;
}

h1,
.h1 {
  font-size: 60px;
  letter-spacing: -1px;
  line-height: 1;
}

h2 {
  font-size: 45px;
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 20px;
}

h3 {
  font-size: 37px;
  line-height: 1.0666666667;
  font-weight: 300;
}

h4 {
  font-size: 25px;
  line-height: 1.08;
  font-weight: 400;
}

p + h2,
p + h3,
p + h4,
ul + h2,
ul + h3,
ul + h4 {
  margin-top: 35px;
  margin-bottom: 15px;
}

@media screen and (max-width: 991px) {
  h1,
.h1 {
    font-size: 42px;
  }
  h2 {
    font-size: 32px;
  }
  h3 {
    font-size: 24px;
  }
  h4 {
    font-size: 20px;
  }
}
@media screen and (max-width: 550px) {
  h1,
.h1 {
    font-size: 34px;
  }
  h2 {
    font-size: 28px;
  }
  h3 {
    font-size: 22px;
  }
  h4 {
    font-size: 18px;
  }
}
::-moz-selection { /* Code for Firefox */
  color: white;
  background: #005eb8;
  padding: 10px;
}

::selection {
  color: white;
  background: #005eb8;
  padding: 10px;
}

#content-wrap {
  position: relative;
}

.single .main {
  min-height: calc(100vh - 500px);
}

a.post-edit-link {
  position: fixed;
  z-index: 999;
  bottom: 0;
  background: #DE3B42;
  color: white;
  padding: 10px 15px;
}

.intro {
  font-size: 28px;
  color: #000000;
}

@media (min-width: 768px) {
  .split-list {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
  }
}
p,
ul,
ol,
li {
  font-size: 19px;
  line-height: 1.35;
  font-weight: 300;
  color: #4D4D4D;
}
p b, p strong,
ul b,
ul strong,
ol b,
ol strong,
li b,
li strong {
  font-weight: 500 !important;
}
p a:not(.button),
ul a:not(.button),
ol a:not(.button),
li a:not(.button) {
  font-size: 19px;
  line-height: 1.35;
  font-weight: 300;
  color: #005eb8;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
p a:not(.button):hover, p a:not(.button):focus,
ul a:not(.button):hover,
ul a:not(.button):focus,
ol a:not(.button):hover,
ol a:not(.button):focus,
li a:not(.button):hover,
li a:not(.button):focus {
  color: #004485;
}

.main ul {
  padding-left: 28px;
}
.main ul li::marker {
  color: #005eb8;
}

blockquote {
  position: relative;
  margin: 40px 0px;
  padding: 15px 0;
  padding-left: 30px;
  border-left: 4px solid #005eb8;
}
blockquote p {
  font-family: "Roboto", "Helvetica", sans-serif;
  font-size: 28px; /* 28px */
  font-size: 1.75rem; /* 28px */
  line-height: 1.28571;
  font-weight: 300;
  text-transform: initial;
  color: #000000;
  margin: 0;
}
blockquote cite {
  font-family: "Roboto", "Helvetica", sans-serif;
  font-size: 11px; /* 11px */
  font-size: 0.6875rem; /* 11px */
  line-height: 1.4545454545; /* 16px */
  text-transform: uppercase;
  font-style: normal;
  letter-spacing: 0.85px;
  color: #005eb8;
}

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

.alignleft {
  float: left;
  margin-right: 30px;
}

.alignright {
  float: right;
  margin-left: 30px;
}

.aligncenter {
  display: block;
  margin: 0 auto;
}

table td, table th {
  padding: 10px;
  border: 1px solid #000000;
}
table td a, table th a {
  word-break: break-all;
}
table th {
  font-weight: 300;
}
table tr:nth-child(even) td {
  background-color: #F1F2F3;
}

.table-wrapper {
  display: block;
  max-width: 100%;
  overflow-x: auto;
  margin-bottom: 20px;
}

.document-item {
  position: relative;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  padding: 40px;
  padding-bottom: 30px;
  overflow: hidden;
}
.document-item h3, .document-item h4 {
  margin-bottom: 2px;
  word-break: break-word;
}
.document-item__date {
  font-size: 14px;
}
.document-item__buttons {
  margin-top: 8px;
}
.document-item__new {
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: rotate(45deg) translate(37px, -20px);
      -ms-transform: rotate(45deg) translate(37px, -20px);
          transform: rotate(45deg) translate(37px, -20px);
  font-size: 11px;
  line-height: 1;
  letter-spacing: 1.2px;
  font-weight: 300;
  text-align: center;
  text-transform: uppercase;
  color: white;
  background-color: #DE3B42;
  padding: 6px 50px;
}

.document-item-popup {
  position: relative;
  width: 95vw;
  height: auto;
  max-width: 700px;
  max-height: 90vh;
  background-color: white;
  margin: 0 auto;
  padding: 55px 70px;
}
.document-item-popup .document-item__date {
  display: block;
  margin-bottom: 20px;
}
@media screen and (max-width: 575px) {
  .document-item-popup {
    padding: 45px 30px;
  }
}

.button {
  display: inline-block;
  background-color: #000000;
  border: 2px solid #000000;
  border-radius: 2em;
  font-size: 0.9375rem;
  font-weight: 400;
  text-decoration: none;
  line-height: 1;
  color: white;
  white-space: nowrap;
  padding: 20px 50px;
  margin-top: 15px;
  margin-right: 18px;
  margin-bottom: 15px;
  cursor: pointer;
  -webkit-transition: 0.3s all ease-in-out;
  -o-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}
.button:hover, .button:focus {
  border-color: #DE3B42;
  background-color: #DE3B42;
  color: white;
  text-decoration: none;
}
.button--small {
  font-size: 0.875rem;
  padding: 16px 18px;
  margin: 8px 8px 8px 0;
}
.button--ghost {
  background-color: transparent;
  color: #000000;
}
.button--ghost:hover, .button--ghost:focus {
  border-color: #000000;
  background-color: #000000;
  color: white;
}
.button--ghost-white {
  background-color: transparent;
  color: white;
  border-color: white;
}
.button--ghost-white:hover, .button--ghost-white:focus {
  border-color: white;
  background-color: white;
  color: #000000;
}
.button--download {
  position: relative;
  padding-right: 50px;
}
.button--download::after {
  content: "";
  position: absolute;
  top: 7px;
  right: 8px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: white;
  background-image: url("../img/icon__download.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 15px;
}
.button--logout {
  position: relative;
  padding-right: 100px;
  padding-left: 26px;
  padding-top: 21px;
  padding-bottom: 19px;
}
.button--logout::after {
  content: "";
  position: absolute;
  top: 9px;
  right: 12px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid white;
  background-color: white;
  background-image: url("../img/icon__user.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 15px;
}
.button--logout.white {
  background-color: white;
  border-color: white;
  color: #005eb8;
}
.button--logout.white::after {
  border-color: #005eb8;
  background-image: url("../img/icon__user--white.svg");
  background-color: #005eb8;
}
.button--logout.white:hover {
  background-color: #005eb8;
  color: white;
}
.button--logout.white:hover::after {
  border-color: white;
}
.button--logout.blue {
  background-color: #005eb8;
  border-color: #005eb8;
  color: white;
}
.button--logout.blue::after {
  border-color: #005eb8;
  background-image: url("../img/icon__user.svg");
  background-color: white;
}
.button--logout.blue:hover {
  background-color: white;
  color: #005eb8;
}
.button--logout.blue:hover::after {
  border-color: #005eb8;
}

.external-link {
  position: relative;
  display: block;
  padding: 15px 0 13px 0;
  padding-left: 55px;
  color: #4D4D4D !important;
}
.external-link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #000000;
  background-image: url("../img/icon__external.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 15px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.external-link:hover, .external-link:focus {
  text-decoration: none;
  color: #000000 !important;
}

.hamburger {
  background: none;
  border: none;
  outline: none;
}
.hamburger:focus, .hamburger:hover {
  outline: none;
}

.hamburger-box {
  width: 30px;
  height: 12px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 31px;
  height: 2px;
  border-radius: 3px;
  background-color: #000000;
  position: absolute;
  transition-property: -webkit-transform;
  -webkit-transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.15s;
       -o-transition-duration: 0.15s;
          transition-duration: 0.15s;
  -webkit-transition-timing-function: ease;
       -o-transition-timing-function: ease;
          transition-timing-function: ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -8px;
}

.hamburger-inner::after {
  bottom: -8px;
}

.hamburger-inner:hover,
.hamburger-inner:hover::before,
.hamburger-inner:hover::after {
  background-color: #DE3B42;
}

/*
 * Squeeze
 */
.hamburger--squeeze .hamburger-inner {
  -webkit-transition-duration: 0.1s;
       -o-transition-duration: 0.1s;
          transition-duration: 0.1s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
       -o-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
          transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze .hamburger-inner::before {
  -webkit-transition: top 0.1s 0.14s ease, opacity 0.1s ease;
  -o-transition: top 0.1s 0.14s ease, opacity 0.1s ease;
  transition: top 0.1s 0.14s ease, opacity 0.1s ease;
}
.hamburger--squeeze .hamburger-inner::after {
  transition: bottom 0.1s 0.14s ease, -webkit-transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -webkit-transition: bottom 0.1s 0.14s ease, -webkit-transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition: bottom 0.1s 0.14s ease, transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.14s ease, transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.14s ease, transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze.is-active .hamburger-inner {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
      transform: rotate(45deg);
  -webkit-transition-delay: 0.14s;
       -o-transition-delay: 0.14s;
          transition-delay: 0.14s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
       -o-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--squeeze.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  -webkit-transition: top 0.1s ease, opacity 0.1s 0.14s ease;
  -o-transition: top 0.1s ease, opacity 0.1s 0.14s ease;
  transition: top 0.1s ease, opacity 0.1s 0.14s ease;
}
.hamburger--squeeze.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
      transform: rotate(-90deg);
  transition: bottom 0.1s ease, -webkit-transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transition: bottom 0.1s ease, -webkit-transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: bottom 0.1s ease, transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.mobile-menu-button-wrapper.is-active .hamburger-inner,
.mobile-menu-button-wrapper.is-active .hamburger-inner::before,
.mobile-menu-button-wrapper.is-active .hamburger-inner::after {
  background-color: white;
}

.mobile-menu-button-wrapper.is-active.submenu-active .hamburger-inner,
.mobile-menu-button-wrapper.is-active.submenu-active .hamburger-inner::before,
.mobile-menu-button-wrapper.is-active.submenu-active .hamburger-inner::after {
  background-color: white;
}

img.alignleft {
  float: left;
  margin-right: 30px;
}

img.alignright {
  float: right;
  margin-left: 30px;
}

img.logo-divider {
  max-width: 90%;
}

img.aligncenter {
  display: block;
  margin: 0 auto;
}

img.responsive {
  width: 100%;
  height: auto;
}

.img-background {
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}
.img-background--cover {
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}
.img-background--contain {
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}

.object-fit--cover {
  background-size: cover;
  background-position: center center;
}
.object-fit--cover img {
  -o-object-fit: cover;
     object-fit: cover;
}
.object-fit--contain {
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
.object-fit--contain img {
  -o-object-fit: contain;
     object-fit: contain;
}
.object-fit--circle img {
  border-radius: 50%;
}
.object-fit.not-compatible img {
  opacity: 0;
}

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

.bleed-right {
  width: calc(100% + 50vw - (1300px - 30px) / 2);
  max-width: none;
}

.responsive-img {
  height: 0;
  position: relative;
}
.responsive-img img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.homepage-banner {
  position: relative;
  z-index: 0;
  overflow: hidden;
  height: calc(100vh - 111px);
}
.homepage-banner .slide {
  position: relative;
}
.homepage-banner .slide__image {
  height: calc(100vh - 111px);
  width: 100%;
}
.homepage-banner .slide__image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.homepage-banner .slide__content {
  position: absolute;
  bottom: 80px;
  left: 0;
  right: 0;
  z-index: 2;
}
.homepage-banner .slide__content h2 {
  margin-bottom: 20px;
}
.homepage-banner .slide__content p {
  font-size: 22px;
  line-height: 1.3;
}
.homepage-banner .slide__overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0.8;
  background-image: -o-linear-gradient(57deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 80%);
  background-image: linear-gradient(33deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 80%);
  z-index: 1;
}

.page-template-tpl-community h1 span {
  display: block;
  font-size: 2.0625rem;
}

.page-template-tpl-resources .back-link {
  position: relative;
  font-size: 0.875rem;
  text-transform: uppercase;
  color: white;
  padding-left: 18px;
}
.page-template-tpl-resources .back-link::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 12px;
  height: 8px;
  background-image: url("../img/icon__arrow--white.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}
.page-template-tpl-resources .back-link:hover {
  opacity: 0.75;
  text-decoration: none;
}
.page-template-tpl-resources .button--logout {
  float: right;
  margin: 0;
  margin-top: -18px;
}
@media screen and (max-width: 550px) {
  .page-template-tpl-resources .py-60 {
    padding-top: 40px !important;
  }
  .page-template-tpl-resources .row {
    text-align: center;
  }
  .page-template-tpl-resources .button--logout {
    float: none;
    margin-top: 10px;
  }
}

@media screen and (max-width: 767px) and (min-height: 600px) {
  .homepage-banner {
    height: calc(80vh - 111px);
  }
  .homepage-banner .slide__image {
    height: calc(80vh - 111px);
  }
  .homepage-banner .slide__content {
    bottom: 20px;
  }
  .homepage-banner .slide__content p {
    font-size: 1rem;
  }
  .homepage-banner .slide__overlay {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(25%, rgba(0, 0, 0, 0)), to(#000));
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 25%, #000 100%);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 25%, #000 100%);
  }
}
.sidebar {
  background-color: #F1F2F3;
  padding: 55px 50px;
  margin-left: 50px;
}
.sidebar h3 {
  font-size: 2rem;
  line-height: 1.125;
  margin-bottom: 15px;
}
.sidebar__menu {
  list-style: none;
  padding-left: 0 !important;
}
.sidebar__menu li a {
  position: relative;
  display: inline-block;
  font-family: "Roboto", "Helvetica", sans-serif;
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.3;
  text-transform: initial;
  color: #000000;
  padding: 7px 0;
}
.sidebar__menu li a::after {
  content: "";
  position: absolute;
  bottom: 7px;
  left: 0;
  width: 0px;
  height: 1px;
  background-color: transparent;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.sidebar__menu li a:hover, .sidebar__menu li a:focus {
  color: #000000;
  text-decoration: none;
}
.sidebar__menu li a:hover::after, .sidebar__menu li a:focus::after {
  width: 100%;
  background-color: #B6C626;
}
.sidebar__menu .current_page_item a::after,
.sidebar__menu .current_page_ancestor a::after {
  width: 100%;
  background-color: #B6C626;
}
.sidebar__menu .children {
  list-style: none;
  padding-left: 15px;
}
.sidebar__menu .children li a {
  font-size: 1rem;
  font-weight: 400;
  text-transform: none;
  color: #000000;
  opacity: 0.7;
}
.sidebar__menu .children li a:hover, .sidebar__menu .children li a:focus {
  font-weight: 300;
  opacity: 1;
}
.sidebar__menu .children li a::after {
  display: none;
}
.sidebar__menu .children .current_page_item a {
  font-weight: 300;
  opacity: 1;
}

.sidebar__menu .page-item-192,
.sidebar__menu .page-item-20 {
  display: none;
}
.sidebar__menu .page-item-216 .children {
  display: none;
}

.logged-in .sidebar__menu .page-item-192,
.logged-in .sidebar__menu .page-item-20 {
  display: block;
}
.logged-in .sidebar__menu .page-item-22 {
  display: none;
}

@media screen and (max-width: 991px) {
  .sidebar {
    margin-left: 0;
  }
}
.searchandfilter ul {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
  margin-bottom: 30px;
}
.searchandfilter ul li {
  display: inline-block;
  margin-right: 15px;
}

#search-filter-form-208 ul li {
  max-width: 33%;
}

.sf-input-select,
.sf-input-text {
  background-color: white;
  border: 2px solid #000000;
  font-size: 14px;
  line-height: 1.1;
  color: #000000;
  padding: 15px 10px;
  width: 280px;
  max-width: 100%;
}

.sf-input-text {
  background-image: url("../img/icon__search.svg");
  background-size: 17px;
  background-position: calc(100% - 12px) center;
  background-repeat: no-repeat;
}

.sf-input-select {
  padding: 16px 10px;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background-image: url("../img/icon__arrow.svg");
  background-repeat: no-repeat;
  background-size: 10px;
  background-position: calc(100% - 12px) center;
}
.sf-input-select::-ms-expand {
  display: none;
}

@media screen and (max-width: 991px) {
  #search-filter-form-208 ul li {
    width: calc(33.3333333333% - 15px);
  }
  #search-filter-form-208 ul li:last-child {
    margin-right: 0;
  }
  #search-filter-form-208 ul li label {
    display: block;
  }
  #search-filter-form-208 ul li select, #search-filter-form-208 ul li input {
    width: 100%;
    min-width: auto;
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  #search-filter-form-208 ul li {
    display: block;
    width: 100%;
    max-width: 100%;
    margin-right: 0;
  }
}
.form-wrapper p {
  color: white !important;
}
.form-wrapper p a:not(.button) {
  color: white !important;
}

.login-password,
.login-username {
  display: inline-block;
  width: calc(50% - 92.5px - 15px);
  margin-right: 12px !important;
}
.login-password label,
.login-username label {
  display: none;
}
.login-password input,
.login-username input {
  display: block;
  width: 100% !important;
  outline: none !important;
  border: none !important;
  border-radius: 0 !important;
  background-color: white !important;
  padding: 15px 17px !important;
  color: #4D4D4D;
  line-height: 1.1;
}

.login-remember {
  display: none !important;
}

.login-submit {
  position: relative;
  display: inline-block;
  float: right;
  text-align: right;
  width: 185px;
  margin-top: -5px !important;
}
.login-submit input {
  margin: 0;
}
.login-submit .button {
  padding-right: 100px;
  padding-left: 26px;
  background-color: #005eb8;
  border-color: white;
  color: white;
}
.login-submit .button:hover {
  background-color: white;
  color: #005eb8;
}
.login-submit .button:hover::after {
  border-color: white;
}
.login-submit::after {
  content: "";
  position: absolute;
  top: 11px;
  right: 12px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid white;
  background-color: white;
  background-image: url("../img/icon__user.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 15px;
  border-color: white;
  background-color: white;
}

@media screen and (max-width: 767px) {
  .login-username,
.login-password {
    display: block;
    width: 100%;
    margin-right: 0 !important;
  }
  .login-username label,
.login-password label {
    display: none !important;
  }
  .login-submit {
    margin-top: 0 !important;
  }
  .login-register-lost-password {
    margin-top: 19px !important;
  }
}
@media screen and (max-width: 400px) {
  .login-submit {
    display: block;
    width: 100%;
  }
  .login-submit .button {
    width: 100%;
    text-align: left;
  }
  .login-register-lost-password {
    margin-top: 80px !important;
  }
}
.wppb-error {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
}
.wppb-error p {
  color: white !important;
}

.slick-prev:before,
.slick-next:before {
  content: "";
  display: inline-block;
  border-bottom: solid white 1px;
  border-left: solid white 1px;
  height: 12px;
  width: 12px;
}

.slick-next:before {
  -webkit-transform: rotate(-135deg);
      -ms-transform: rotate(-135deg);
          transform: rotate(-135deg);
}

.slick-prev:before {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.slick-dots {
  position: absolute;
  bottom: 30px;
  right: 20px;
  width: auto;
}
.slick-dots li button {
  background-color: transparent;
}
.slick-dots li button:before {
  border: 1px solid #DE3B42;
}
.slick-dots li.slick-active button:before {
  background-color: #DE3B42;
}

.gallery-slider {
  margin-bottom: 65px;
  position: relative;
}
.gallery-slider .slick-slide > div {
  width: 100%;
  padding-bottom: 55%;
  position: relative;
}
.gallery-slider .slick-slide img {
  position: absolute;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.gallery-slider .slick-slide img.contain {
  -o-object-fit: contain;
     object-fit: contain;
}
.gallery-slider__full {
  position: relative;
  background: #000000;
}
.gallery-slider__full-nav {
  position: absolute;
  bottom: 23%;
  width: 100%;
  left: 0;
  text-align: center;
  z-index: 9;
}
.gallery-slider__full-nav .pages {
  display: inline-block;
  color: white;
}
.gallery-slider__full-nav .slick-prev,
.gallery-slider__full-nav .slick-next {
  position: relative;
  display: inline-block;
  left: auto;
  right: auto;
  top: auto;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}
.gallery-slider__full-nav .slick-prev:before,
.gallery-slider__full-nav .slick-next:before {
  height: 9px;
  width: 9px;
}
.gallery-slider__thumb .slick-next,
.gallery-slider__thumb .slick-prev {
  height: 100%;
  width: 36px;
  background-color: rgba(36, 36, 36, 0.45);
  background-color: #242424;
  z-index: 1;
  opacity: 0.65;
  -webkit-transition: opacity 0.2s linear;
  -o-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
.gallery-slider__thumb .slick-next:hover,
.gallery-slider__thumb .slick-prev:hover {
  opacity: 1;
}
.gallery-slider__thumb .slick-prev {
  left: 0;
}
.gallery-slider__thumb .slick-next {
  right: 0;
}
.gallery-slider__thumb .slick-slide {
  cursor: pointer;
}
.gallery-slider__thumb .slick-slide > div:before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background: white;
  opacity: 0.6;
  z-index: 1;
  -webkit-transition: opacity 0.2s linear;
  -o-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
.gallery-slider__thumb .slick-slide:hover > div:before {
  opacity: 0.3;
}
.gallery-slider__thumb .slick-slide.slick-current > div:before {
  opacity: 0;
}

/* Styles for dialog window */
.magnific-dialog {
  position: relative;
  background: white;
  padding: 50px 70px;
  width: 720px;
  max-width: 80vw;
  margin: 40px auto;
}

.mfp-video-wrapper .mfp-content {
  width: 90vw;
}

/**
 * Fade-zoom animation for first dialog
 */
/* start state */
.my-mfp-zoom-in .magnific-dialog {
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  -o-transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  -webkit-transform: scale(0.8);
      -ms-transform: scale(0.8);
          transform: scale(0.8);
}

/* animate in */
.my-mfp-zoom-in.mfp-ready .magnific-dialog {
  opacity: 1;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

/* animate out */
.my-mfp-zoom-in.mfp-removing .magnific-dialog {
  -webkit-transform: scale(0.8);
      -ms-transform: scale(0.8);
          transform: scale(0.8);
  opacity: 0;
}

/* Dark overlay, start state */
.my-mfp-zoom-in.mfp-bg {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-out;
  -o-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}

/* animate in */
.my-mfp-zoom-in.mfp-ready.mfp-bg {
  opacity: 0.8;
}

/* animate out */
.my-mfp-zoom-in.mfp-removing.mfp-bg {
  opacity: 0;
}

.tabs .page-tabs {
  display: block;
  padding: 0;
  margin: 0;
}
.tabs .page-tabs li {
  display: inline-block;
  padding: 0 25px 0 0;
  margin-bottom: 12px;
}
.tabs .page-tabs li a {
  position: relative;
  font-size: 1rem;
  font-weight: 300;
  color: white;
  opacity: 0.7;
}
.tabs .page-tabs li a::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  height: 1px;
  background-color: transparent;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.tabs .page-tabs li.active a, .tabs .page-tabs li:hover a, .tabs .page-tabs li:focus a {
  opacity: 1;
  text-decoration: none;
  outline: none;
}
.tabs .page-tabs li.active a::after, .tabs .page-tabs li:hover a::after, .tabs .page-tabs li:focus a::after {
  background-color: white;
}
.tabs .page-tabs li:first-child {
  padding-left: 0;
}
.tabs .page-tabs li:last-child {
  padding-right: 0;
}
.tabs .page-tabs .page-20 {
  display: none;
}

.logged-in .tabs .page-tabs .page-20 {
  display: inline-block;
}

.pagination {
  margin: 30px 0;
}
.pagination a, .pagination span {
  display: inline-block;
  width: 34px;
  height: 34px;
  font-family: "Roboto", "Helvetica", sans-serif;
  font-size: 16px;
  line-height: 1;
  color: black;
  text-align: center;
  border: 2px solid black;
  padding: 8px 4px;
  margin: 5px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.pagination a:hover, .pagination a:focus, .pagination span:hover, .pagination span:focus {
  background-color: black;
  color: white;
}
.pagination .current {
  background-color: black;
  color: white;
}

/*
NOTIFICATIONS
*/
.notification.cookies-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: white;
  padding: 30px 50px 10px;
  color: #000000;
  -webkit-box-shadow: rgba(100, 100, 111, 0.5) 0px 7px 29px 0px;
          box-shadow: rgba(100, 100, 111, 0.5) 0px 7px 29px 0px;
}
.notification.cookies-bar .notification__content {
  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;
}
.notification.cookies-bar .notification__content .notification__text {
  max-width: 75%;
  margin-right: 40px;
}
.notification.cookies-bar .notification__content .notification__text p, .notification.cookies-bar .notification__content .notification__text p a {
  font-size: 15px;
  line-height: 20px;
  color: #000000;
}
.notification.cookies-bar .notification__content a:not(.button) {
  color: #000000;
  text-decoration: underline;
}
.notification.cookies-bar .notification__content a:not(.button):hover, .notification.cookies-bar .notification__content a:not(.button):focus {
  color: #DE3B42;
}
.notification.cookies-bar .notification__content .buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.notification.cookies-bar .notification__content .buttons .button {
  padding: 14px 30px;
  font-size: 11px;
}
@media (max-width: 991px) {
  .notification.cookies-bar .buttons {
    display: block;
    margin-top: 30px;
  }
  .notification.cookies-bar .buttons .button {
    margin-bottom: 15px;
  }
}
@media (max-width: 575px) {
  .notification.cookies-bar {
    padding: 30px 30px 5px;
  }
  .notification.cookies-bar .notification__content {
    display: block;
  }
  .notification.cookies-bar .notification__content .notification__text {
    margin-right: 0px;
    max-width: 100%;
  }
  .notification.cookies-bar .buttons {
    display: block !important;
  }
  .notification.cookies-bar .buttons .button {
    margin-left: 0 !important;
    margin-right: 30px;
    margin-top: 5px;
    margin-bottom: 5px;
  }
}

.notification.popup {
  position: fixed;
  z-index: 90;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: white;
  border-top: 8px solid #DE3B42;
  padding: 50px;
  -webkit-box-shadow: rgba(100, 100, 111, 0.5) 0px 7px 29px 0px;
          box-shadow: rgba(100, 100, 111, 0.5) 0px 7px 29px 0px;
}
.notification.popup .close-button {
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
}

.switch {
  display: inline-block;
  height: 34px;
  position: relative;
  width: 60px;
}

.switch input {
  display: none;
}

.slider {
  background-color: #ccc;
  bottom: 0;
  cursor: pointer;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.slider:before {
  background-color: #fff;
  bottom: 4px;
  content: "";
  height: 26px;
  left: 4px;
  position: absolute;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  width: 26px;
}

input:checked + .slider {
  background-color: #66bb6a;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
      -ms-transform: translateX(26px);
          transform: translateX(26px);
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.off-screen {
  opacity: 1;
}
.off-screen.off-screen--from-left, .off-screen.off-screen--from-right, .off-screen.off-screen--fade {
  -webkit-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}

.off-screen--fade-up {
  -ms-transform: translateY(0); /* IE 9 */
  -webkit-transform: translateY(0); /* Safari */
  transform: translateY(0); /* Safari */
  opacity: 1;
  -webkit-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}
.off-screen--fade-up.off-screen--hide {
  -ms-transform: translateY(30px); /* IE 9 */
  -webkit-transform: translateY(30px); /* Safari */
  transform: translateY(30px); /* Safari */
  opacity: 0;
}

.off-screen--from-left {
  -ms-transform: translateX(0); /* IE 9 */
  -webkit-transform: translateX(0); /* Safari */
  transform: translateX(0); /* Safari */
  opacity: 1;
  -webkit-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}
.off-screen--from-left.off-screen--hide {
  -ms-transform: translateX(70px); /* IE 9 */
  -webkit-transform: translateX(70px); /* Safari */
  transform: translateX(70px); /* Safari */
  opacity: 0;
}

.off-screen--hide.off-screen--from-left {
  -ms-transform: translateX(-150px); /* IE 9 */
  -webkit-transform: translateX(-150px); /* Safari */
  transform: translateX(-150px); /* Safari */
  opacity: 0;
}
.off-screen--hide.off-screen--from-right {
  -ms-transform: translateX(150px); /* IE 9 */
  -webkit-transform: translateX(150px); /* Safari */
  transform: translateX(150px); /* Safari */
  opacity: 0;
}
.off-screen--hide.off-screen--from-bottom {
  -ms-transform: translateY(150px); /* IE 9 */
  -webkit-transform: translateY(150px); /* Safari */
  transform: translateY(150px); /* Safari */
  opacity: 0;
}
.off-screen--hide.off-screen--fade {
  opacity: 0;
}

.off-screen--alternate > div > div {
  -ms-transform: translate(0, 0); /* IE 9 */
  -webkit-transform: translate(0, 0); /* Safari */
  transform: translate(0, 0); /* Safari */
  opacity: 1;
  -webkit-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}
.off-screen--alternate > div.off-screen--hide:nth-child(even) div:nth-child(1) {
  -ms-transform: translateX(150px); /* IE 9 */
  -webkit-transform: translateX(150px); /* Safari */
  transform: translateX(150px); /* Safari */
  opacity: 0;
}
.off-screen--alternate > div.off-screen--hide:nth-child(even) div:nth-child(2) {
  -ms-transform: translateX(-150px); /* IE 9 */
  -webkit-transform: translateX(-150px); /* Safari */
  transform: translateX(-150px); /* Safari */
  opacity: 0;
}
.off-screen--alternate > div.off-screen--hide:nth-child(odd) div:nth-child(1) {
  -ms-transform: translateX(-150px); /* IE 9 */
  -webkit-transform: translateX(-150px); /* Safari */
  transform: translateX(-150px); /* Safari */
  opacity: 0;
}
.off-screen--alternate > div.off-screen--hide:nth-child(odd) div:nth-child(2) {
  -ms-transform: translateX(150px); /* IE 9 */
  -webkit-transform: translateX(150px); /* Safari */
  transform: translateX(150px); /* Safari */
  opacity: 0;
}

.off-screen--sequential > * {
  -ms-transform: translateY(0); /* IE 9 */
  -webkit-transform: translateY(0); /* Safari */
  transform: translateY(0); /* Safari */
  opacity: 1;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.off-screen--sequential.off-screen--hide > * {
  -ms-transform: translateY(30px); /* IE 9 */
  -webkit-transform: translateY(30px); /* Safari */
  transform: translateY(30px); /* Safari */
  opacity: 0;
}

.off-screen--sequential > *:nth-child(1) {
  -webkit-transition-delay: 0s;
       -o-transition-delay: 0s;
          transition-delay: 0s;
}

.off-screen--sequential > *:nth-child(2) {
  -webkit-transition-delay: 0.2s;
       -o-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.off-screen--sequential > *:nth-child(3) {
  -webkit-transition-delay: 0.4s;
       -o-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.off-screen--sequential > *:nth-child(4) {
  -webkit-transition-delay: 0.6s;
       -o-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.off-screen--sequential > *:nth-child(5) {
  -webkit-transition-delay: 0.8s;
       -o-transition-delay: 0.8s;
          transition-delay: 0.8s;
}

.off-screen--sequential > *:nth-child(6) {
  -webkit-transition-delay: 1s;
       -o-transition-delay: 1s;
          transition-delay: 1s;
}

.off-screen--sequential > *:nth-child(7) {
  -webkit-transition-delay: 1.2s;
       -o-transition-delay: 1.2s;
          transition-delay: 1.2s;
}

.off-screen--sequential > *:nth-child(8) {
  -webkit-transition-delay: 1.4s;
       -o-transition-delay: 1.4s;
          transition-delay: 1.4s;
}

.off-screen--sequential > *:nth-child(9) {
  -webkit-transition-delay: 1.6s;
       -o-transition-delay: 1.6s;
          transition-delay: 1.6s;
}

.off-screen--sequential > *:nth-child(10) {
  -webkit-transition-delay: 1.8s;
       -o-transition-delay: 1.8s;
          transition-delay: 1.8s;
}

.off-screen--sequential > *:nth-child(11) {
  -webkit-transition-delay: 2s;
       -o-transition-delay: 2s;
          transition-delay: 2s;
}

.off-screen--sequential > *:nth-child(12) {
  -webkit-transition-delay: 2.2s;
       -o-transition-delay: 2.2s;
          transition-delay: 2.2s;
}

.off-screen--sequential > *:nth-child(13) {
  -webkit-transition-delay: 2.4s;
       -o-transition-delay: 2.4s;
          transition-delay: 2.4s;
}

.off-screen--sequential > *:nth-child(14) {
  -webkit-transition-delay: 2.6s;
       -o-transition-delay: 2.6s;
          transition-delay: 2.6s;
}

.off-screen--sequential > *:nth-child(15) {
  -webkit-transition-delay: 2.8s;
       -o-transition-delay: 2.8s;
          transition-delay: 2.8s;
}

.homepage-services {
  background-color: #000000;
  padding: 95px 0;
}
.homepage-services h2 {
  margin-bottom: 15px;
}
.homepage-services .container .row:nth-child(2) {
  margin-bottom: 20px;
}

.block--recent-news,
.block--recent-documents,
.block--useful-links {
  padding: 30px 0;
}

.block--recent-news .news-list {
  padding-left: 0;
  list-style-type: none;
}
.block--recent-news .news-list li a {
  position: relative;
  display: inline-block;
  font-family: "Roboto", "Helvetica", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.3;
  text-transform: initial;
  color: #000000;
  padding: 7px 0;
  padding-left: 26px;
}
.block--recent-news .news-list li a::after {
  content: "";
  position: absolute;
  bottom: 7px;
  left: 0;
  width: 0px;
  height: 1px;
  background-color: transparent;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.block--recent-news .news-list li a:hover, .block--recent-news .news-list li a:focus {
  color: #000000;
  text-decoration: none;
}
.block--recent-news .news-list li a:hover::after, .block--recent-news .news-list li a:focus::after {
  width: 100%;
  background-color: #B6C626;
}
.block--recent-news .news-list li a::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 17px;
  height: 17px;
  background-image: url("../img/icon__arrow-right.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.block--useful-links .useful-links {
  padding-left: 0;
  list-style: none;
}

.page-id-9 h1 {
  display: none;
}

.page-template-tpl-full-width h1 {
  margin-bottom: 25px;
  margin-left: 15px;
}
.page-template-tpl-full-width h2 {
  margin-bottom: 20px;
}
.page-template-tpl-full-width #block-1 h2 {
  font-size: 60px;
}
.page-template-tpl-full-width #block-1 .intro {
  font-size: 22px;
}
.page-template-tpl-full-width #block-2 .sidebar__menu li a {
  font-weight: 400;
  padding-left: 26px;
}
.page-template-tpl-full-width #block-2 .sidebar__menu li a::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 17px;
  height: 17px;
  background-image: url("../img/icon__arrow-right.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.page-template-default h1 {
  margin-bottom: 25px;
}

.page-template-tpl-community-home h1 {
  margin-bottom: 25px;
  margin-left: 15px;
}

@media screen and (max-width: 992px) {
  .page-template-tpl-full-width #block-1 h2 {
    font-size: 2.625rem;
  }
  .page-template-tpl-full-width #block-1 .intro {
    font-size: 1.375rem;
  }
}
@media screen and (max-width: 550px) {
  .page-template-tpl-full-width #block-1 h2 {
    font-size: 2.125rem;
  }
  .page-template-tpl-full-width #block-1 .intro {
    font-size: 1.125rem;
  }
}
.accordion__title {
  padding-right: 50px;
}
.accordion__item {
  border-bottom: 1px solid #DE3B42;
}
.accordion__trigger {
  position: relative;
  padding: 28px 30px;
  cursor: pointer;
}
.accordion__content--wrapper .accordion__content {
  padding: 0 15px 0 30px;
}
.accordion__trigger-icon {
  position: absolute;
  top: 28px;
  right: 30px;
  width: 14px;
  height: 14px;
}
.accordion__plus {
  position: absolute;
  top: 14px;
  right: 0;
  width: 14px;
  height: 14px;
  /* Vertical line */
  /* horizontal line */
}
.accordion__plus:before, .accordion__plus:after {
  content: "";
  position: absolute;
  background-color: #DE3B42;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.accordion__plus:before {
  top: 0;
  left: 6px;
  width: 2px;
  height: 100%;
}
.accordion__plus:after {
  top: 6px;
  left: 0;
  width: 100%;
  height: 2px;
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
}
.accordion .open .accordion__trigger-icon svg {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.accordion .open .accordion__plus:before {
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.block--gallery .gallery__item.object-fit img {
  width: 100%;
  height: 20vw;
  min-height: 240px;
}
.block--gallery--slider .gallery__item.object-fit img {
  height: 30vw;
  max-height: 500px;
}

.block--text-image {
  padding: 50px 0;
}
.block--text-image#block-1 {
  padding-top: 0;
}
.block--text-image .text-wrapper {
  padding-left: 60px;
}
.block--text-image .text-wrapper.right {
  padding-right: 60px;
  padding-left: 15px;
}
.block--text-image .text-wrapper .list-sitemap {
  list-style: none !important;
  padding-left: 0 !important;
}
.block--text-image .video-icon {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  -webkit-transform: translate3d(-50%, -50%, 0);
          transform: translate3d(-50%, -50%, 0);
}
.block--text-image .video-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: -webkit-gradient(linear, left top, right top, color-stop(0, rgba(255, 255, 255, 0)), color-stop(70%, rgba(255, 255, 255, 0)), color-stop(71%, #b9c449), to(#b9c449));
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0) 70%, #b9c449 71%, #b9c449 100%);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0) 70%, #b9c449 71%, #b9c449 100%);
  -webkit-animation-name: spin;
  animation-name: spin;
  -webkit-animation-duration: 4s;
  animation-duration: 4s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}
.block--text-image .video-icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent url("../img/icon-video.svg") no-repeat scroll center center;
  background-size: cover;
}

@-webkit-keyframes spin {
  from {
    -webkit-transform: translate3d(-50%, -50%, 0) rotate(0deg);
            transform: translate3d(-50%, -50%, 0) rotate(0deg);
  }
  to {
    -webkit-transform: translate3d(-50%, -50%, 0) rotate(360deg);
            transform: translate3d(-50%, -50%, 0) rotate(360deg);
  }
}

@keyframes spin {
  from {
    -webkit-transform: translate3d(-50%, -50%, 0) rotate(0deg);
            transform: translate3d(-50%, -50%, 0) rotate(0deg);
  }
  to {
    -webkit-transform: translate3d(-50%, -50%, 0) rotate(360deg);
            transform: translate3d(-50%, -50%, 0) rotate(360deg);
  }
}
@media (max-width: 767px) {
  .block--text-image {
    padding: 30px 0;
  }
  .block--text-image__content__image {
    min-height: 250px;
  }
  .block--text-image .image-text__image {
    margin-bottom: 35px;
  }
  .block--text-image .text-wrapper {
    padding-left: 15px;
  }
}

/*# sourceMappingURL=screen.css.map*/