/*------------------------------------*\
    #TABLE OF CONTENTS
\*------------------------------------*/
/**
 * ABSTRACTS..............................Declarations of Sass variables & mixins
 * BASE...................................Default element styles
 * LAYOUT.................................Layout-specific styles
 * COMPONENTS.............................Component styles
 * UTILITIES..............................Utility classes
 */
/*------------------------------------*\
    #ABSTRACTS
\*------------------------------------*/
/*------------------------------------*\
    #VARIABLES
\*------------------------------------*/
/*------------------------------------*\
     #COLORS
\*------------------------------------*/
/* CI Haring IMMOBILIEN
$color-ci: #c00418 (rot group: #c00418;)
$color-ci-bright: #c00418;
 */
/* CI Haring IMMOBILIEN */
/*------------------------------------*\
    #TYPOGRAPHY
\*------------------------------------*/
/**
 * Font Family
 */
@font-face {
  font-family: "DINProRegular";
  src: url("../fonts/DINPro-Regular.otf") format("opentype");
}

@font-face {
  font-family: "DINProMedium";
  src: url("../fonts/DINPro-Medium.otf") format("opentype");
}

@font-face {
  font-family: "DINProBold";
  src: url("../fonts/DINPro-Bold.otf") format("opentype");
  font-weight: bold;
}

@font-face {
  font-family: "UtopiaRegular";
  /**src: url("../fonts/DINPro-Regular.otf") format("opentype");**/
  src: url("../fonts/Utopia-Regular.otf") format("opentype");
}

@font-face {
  font-family: "UtopiaMedium";
  /**src: url("../fonts/DINPro-Medium.otf") format("opentype");**/
  src: url("../fonts/Utopia-Regular.otf") format("opentype");
}

@font-face {
  font-family: "UtopiaBold";
  /**src: url("../fonts/DINPro-Bold.otf") format("opentype");**/
  src: url("../fonts/Utopia-Semibold.otf") format("opentype");
  font-weight: bold;
}

@font-face {
  font-family: "UtopiaItalic";
  src: url("../fonts/Utopia-Italic.otf") format("opentype");
}

/*------------------------------------*\
    #BREAKPOINTS
\*------------------------------------*/
/*------------------------------------*\
    #BASE
\*------------------------------------*/
/*!
 * Bootstrap Reboot v5.0.0-beta2 (https://getbootstrap.com/)
 * Copyright 2011-2021 The Bootstrap Authors
 * Copyright 2011-2021 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 * Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md)
 */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  font-family: Arial;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

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

hr {
  margin: 1rem 0;
  color: inherit;
  background-color: currentColor;
  border: 0;
  opacity: 0.25;
}

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

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

h1 {
  font-size: calc(1.375rem + 1.5vw);
}

@media (min-width: 1200px) {
  h1 {
    font-size: 2.5rem;
  }
}

h2 {
  font-size: calc(1.325rem + 0.9vw);
}

@media (min-width: 1200px) {
  h2 {
    font-size: 2rem;
  }
}

h3 {
  font-size: calc(1.3rem + 0.6vw);
}

@media (min-width: 1200px) {
  h3 {
    font-size: 1.75rem;
  }
}

h4 {
  font-size: calc(1.275rem + 0.3vw);
}

@media (min-width: 1200px) {
  h4 {
    font-size: 1.5rem;
  }
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

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

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

#checkbox-accept-nl {
	appearance: none;
}

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

ol,
ul {
  padding-left: 2rem;
}

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

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

dt {
  font-weight: 700;
}

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

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 0.875em;
}

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: #0d6efd;
  text-decoration: underline;
}

a:hover {
  color: #0a58ca;
}

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

pre,
code,
kbd,
samp {
  font-family: "Courier New";
  font-size: 1em;
  direction: ltr;
  unicode-bidi: bidi-override;
}

pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  font-size: 0.875em;
}

pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

code {
  font-size: 0.875em;
  color: #d63384;
  word-wrap: break-word;
}

a > code {
  color: inherit;
}

kbd {
  padding: 0.2rem 0.4rem;
  font-size: 0.875em;
  color: #fff;
  background-color: #212529;
  border-radius: 0.2rem;
}

kbd kbd {
  padding: 0;
  font-size: 1em;
  font-weight: 700;
}

figure {
  margin: 0 0 1rem;
}

img,
svg {
  vertical-align: middle;
}

table {
  caption-side: bottom;
  border-collapse: collapse;
}

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

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

thead,
tbody,
tfoot,
tr,
td,
th {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}

label {
  display: inline-block;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

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

button,
select {
  text-transform: none;
}

[role="button"] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}

[list]::-webkit-calendar-picker-indicator {
  display: none;
}

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

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

::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

textarea {
  resize: vertical;
}

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

legend {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: calc(1.275rem + 0.3vw);
  line-height: inherit;
}

@media (min-width: 1200px) {
  legend {
    font-size: 1.5rem;
  }
}

legend + * {
  clear: left;
}

::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
  padding: 0;
}

::-webkit-inner-spin-button {
  height: auto;
}

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

/* rtl:raw:
[type="tel"],
[type="url"],
[type="email"],
[type="number"] {
  direction: ltr;
}
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
  padding: 0;
}

::file-selector-button {
  font: inherit;
}

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

output {
  display: inline-block;
}

iframe {
  border: 0;
}

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

progress {
  vertical-align: baseline;
}

[hidden] {
  display: none !important;
}

/*!
 * Bootstrap Grid v5.0.0-beta2 (https://getbootstrap.com/)
 * Copyright 2011-2021 The Bootstrap Authors
 * Copyright 2011-2021 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
.container,
.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl {
  width: 100%;
  padding-right: var(--bs-gutter-x, 21px);
  padding-left: var(--bs-gutter-x, 21px);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container,
  .container-sm {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container,
  .container-sm,
  .container-md {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container,
  .container-sm,
  .container-md,
  .container-lg {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl {
    max-width: 1140px;
  }
}

@media (min-width: 1600px) {
  .container,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl,
  .container-xxl {
    max-width: 1200px;
  }
}

.row {
  --bs-gutter-x: 42px;
  --bs-gutter-y: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: calc(var(--bs-gutter-y) * -1);
  margin-right: calc(var(--bs-gutter-x) / -2);
  margin-left: calc(var(--bs-gutter-x) / -2);
}

.row > * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) / 2);
  padding-left: calc(var(--bs-gutter-x) / 2);
  margin-top: var(--bs-gutter-y);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.g-0,
.gx-0 {
  --bs-gutter-x: 0;
}

.g-0,
.gy-0 {
  --bs-gutter-y: 0;
}

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

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

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

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

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

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

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

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

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

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

@media (min-width: 576px) {
  .col-sm {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
  }
  .row-cols-sm-auto > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-sm-1 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-sm-2 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-sm-3 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333%;
  }
  .row-cols-sm-4 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-sm-5 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-sm-6 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66667%;
  }
  .col-sm-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 8.33333%;
  }
  .col-sm-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66667%;
  }
  .col-sm-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333%;
  }
  .col-sm-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 41.66667%;
  }
  .col-sm-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 58.33333%;
  }
  .col-sm-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66667%;
  }
  .col-sm-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 83.33333%;
  }
  .col-sm-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 91.66667%;
  }
  .col-sm-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.33333%;
  }
  .offset-sm-2 {
    margin-left: 16.66667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333%;
  }
  .offset-sm-5 {
    margin-left: 41.66667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333%;
  }
  .offset-sm-8 {
    margin-left: 66.66667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333%;
  }
  .offset-sm-11 {
    margin-left: 91.66667%;
  }
  .g-sm-0,
  .gx-sm-0 {
    --bs-gutter-x: 0;
  }
  .g-sm-0,
  .gy-sm-0 {
    --bs-gutter-y: 0;
  }
  .g-sm-1,
  .gx-sm-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-sm-1,
  .gy-sm-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-sm-2,
  .gx-sm-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-sm-2,
  .gy-sm-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-sm-3,
  .gx-sm-3 {
    --bs-gutter-x: 1rem;
  }
  .g-sm-3,
  .gy-sm-3 {
    --bs-gutter-y: 1rem;
  }
  .g-sm-4,
  .gx-sm-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-sm-4,
  .gy-sm-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-sm-5,
  .gx-sm-5 {
    --bs-gutter-x: 3rem;
  }
  .g-sm-5,
  .gy-sm-5 {
    --bs-gutter-y: 3rem;
  }
}

@media (min-width: 768px) {
  .col-md {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
  }
  .row-cols-md-auto > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-md-1 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-md-2 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-md-3 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333%;
  }
  .row-cols-md-4 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-md-5 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-md-6 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66667%;
  }
  .col-md-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 8.33333%;
  }
  .col-md-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66667%;
  }
  .col-md-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333%;
  }
  .col-md-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 41.66667%;
  }
  .col-md-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 58.33333%;
  }
  .col-md-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66667%;
  }
  .col-md-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 83.33333%;
  }
  .col-md-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 91.66667%;
  }
  .col-md-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.33333%;
  }
  .offset-md-2 {
    margin-left: 16.66667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333%;
  }
  .offset-md-5 {
    margin-left: 41.66667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333%;
  }
  .offset-md-8 {
    margin-left: 66.66667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333%;
  }
  .offset-md-11 {
    margin-left: 91.66667%;
  }
  .g-md-0,
  .gx-md-0 {
    --bs-gutter-x: 0;
  }
  .g-md-0,
  .gy-md-0 {
    --bs-gutter-y: 0;
  }
  .g-md-1,
  .gx-md-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-md-1,
  .gy-md-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-md-2,
  .gx-md-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-md-2,
  .gy-md-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-md-3,
  .gx-md-3 {
    --bs-gutter-x: 1rem;
  }
  .g-md-3,
  .gy-md-3 {
    --bs-gutter-y: 1rem;
  }
  .g-md-4,
  .gx-md-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-md-4,
  .gy-md-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-md-5,
  .gx-md-5 {
    --bs-gutter-x: 3rem;
  }
  .g-md-5,
  .gy-md-5 {
    --bs-gutter-y: 3rem;
  }
}

@media (min-width: 992px) {
  .col-lg {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
  }
  .row-cols-lg-auto > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-lg-1 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-lg-2 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-lg-3 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333%;
  }
  .row-cols-lg-4 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-lg-5 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-lg-6 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66667%;
  }
  .col-lg-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 8.33333%;
  }
  .col-lg-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66667%;
  }
  .col-lg-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333%;
  }
  .col-lg-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 41.66667%;
  }
  .col-lg-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 58.33333%;
  }
  .col-lg-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66667%;
  }
  .col-lg-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 83.33333%;
  }
  .col-lg-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 91.66667%;
  }
  .col-lg-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.33333%;
  }
  .offset-lg-2 {
    margin-left: 16.66667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333%;
  }
  .offset-lg-5 {
    margin-left: 41.66667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333%;
  }
  .offset-lg-8 {
    margin-left: 66.66667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333%;
  }
  .offset-lg-11 {
    margin-left: 91.66667%;
  }
  .g-lg-0,
  .gx-lg-0 {
    --bs-gutter-x: 0;
  }
  .g-lg-0,
  .gy-lg-0 {
    --bs-gutter-y: 0;
  }
  .g-lg-1,
  .gx-lg-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-lg-1,
  .gy-lg-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-lg-2,
  .gx-lg-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-lg-2,
  .gy-lg-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-lg-3,
  .gx-lg-3 {
    --bs-gutter-x: 1rem;
  }
  .g-lg-3,
  .gy-lg-3 {
    --bs-gutter-y: 1rem;
  }
  .g-lg-4,
  .gx-lg-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-lg-4,
  .gy-lg-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-lg-5,
  .gx-lg-5 {
    --bs-gutter-x: 3rem;
  }
  .g-lg-5,
  .gy-lg-5 {
    --bs-gutter-y: 3rem;
  }
}

@media (min-width: 1200px) {
  .col-xl {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
  }
  .row-cols-xl-auto > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xl-1 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xl-2 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xl-3 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333%;
  }
  .row-cols-xl-4 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xl-5 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xl-6 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66667%;
  }
  .col-xl-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 8.33333%;
  }
  .col-xl-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66667%;
  }
  .col-xl-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333%;
  }
  .col-xl-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 41.66667%;
  }
  .col-xl-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 58.33333%;
  }
  .col-xl-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66667%;
  }
  .col-xl-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 83.33333%;
  }
  .col-xl-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 91.66667%;
  }
  .col-xl-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.33333%;
  }
  .offset-xl-2 {
    margin-left: 16.66667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333%;
  }
  .offset-xl-5 {
    margin-left: 41.66667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333%;
  }
  .offset-xl-8 {
    margin-left: 66.66667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333%;
  }
  .offset-xl-11 {
    margin-left: 91.66667%;
  }
  .g-xl-0,
  .gx-xl-0 {
    --bs-gutter-x: 0;
  }
  .g-xl-0,
  .gy-xl-0 {
    --bs-gutter-y: 0;
  }
  .g-xl-1,
  .gx-xl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xl-1,
  .gy-xl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xl-2,
  .gx-xl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xl-2,
  .gy-xl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xl-3,
  .gx-xl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xl-3,
  .gy-xl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xl-4,
  .gx-xl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xl-4,
  .gy-xl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xl-5,
  .gx-xl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xl-5,
  .gy-xl-5 {
    --bs-gutter-y: 3rem;
  }
}

@media (min-width: 1600px) {
  .col-xxl {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
  }
  .row-cols-xxl-auto > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xxl-1 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xxl-2 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xxl-3 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333%;
  }
  .row-cols-xxl-4 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xxl-5 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xxl-6 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66667%;
  }
  .col-xxl-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .col-xxl-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 8.33333%;
  }
  .col-xxl-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66667%;
  }
  .col-xxl-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333%;
  }
  .col-xxl-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 41.66667%;
  }
  .col-xxl-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 58.33333%;
  }
  .col-xxl-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66667%;
  }
  .col-xxl-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 83.33333%;
  }
  .col-xxl-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 91.66667%;
  }
  .col-xxl-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.33333%;
  }
  .offset-xxl-2 {
    margin-left: 16.66667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.33333%;
  }
  .offset-xxl-5 {
    margin-left: 41.66667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.33333%;
  }
  .offset-xxl-8 {
    margin-left: 66.66667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.33333%;
  }
  .offset-xxl-11 {
    margin-left: 91.66667%;
  }
  .g-xxl-0,
  .gx-xxl-0 {
    --bs-gutter-x: 0;
  }
  .g-xxl-0,
  .gy-xxl-0 {
    --bs-gutter-y: 0;
  }
  .g-xxl-1,
  .gx-xxl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xxl-1,
  .gy-xxl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xxl-2,
  .gx-xxl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xxl-2,
  .gy-xxl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xxl-3,
  .gx-xxl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xxl-3,
  .gy-xxl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xxl-4,
  .gx-xxl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xxl-4,
  .gy-xxl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xxl-5,
  .gx-xxl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xxl-5,
  .gy-xxl-5 {
    --bs-gutter-y: 3rem;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.align-self-auto {
  -ms-flex-item-align: auto !important;
  -ms-grid-row-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;
  -ms-grid-row-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;
  -ms-grid-row-align: stretch !important;
  align-self: stretch !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 576px) {
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-grid {
    display: -ms-grid !important;
    display: grid !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-sm-none {
    display: none !important;
  }
  .flex-sm-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-sm-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-sm-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-sm-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .flex-sm-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-sm-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-sm-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .justify-content-sm-evenly {
    -webkit-box-pack: space-evenly !important;
    -ms-flex-pack: space-evenly !important;
    justify-content: space-evenly !important;
  }
  .align-items-sm-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-sm-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-sm-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-sm-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-sm-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    -ms-flex-item-align: auto !important;
    -ms-grid-row-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;
    -ms-grid-row-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;
    -ms-grid-row-align: stretch !important;
    align-self: stretch !important;
  }
  .order-sm-first {
    -webkit-box-ordinal-group: 0 !important;
    -ms-flex-order: -1 !important;
    order: -1 !important;
  }
  .order-sm-0 {
    -webkit-box-ordinal-group: 1 !important;
    -ms-flex-order: 0 !important;
    order: 0 !important;
  }
  .order-sm-1 {
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    order: 1 !important;
  }
  .order-sm-2 {
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    order: 2 !important;
  }
  .order-sm-3 {
    -webkit-box-ordinal-group: 4 !important;
    -ms-flex-order: 3 !important;
    order: 3 !important;
  }
  .order-sm-4 {
    -webkit-box-ordinal-group: 5 !important;
    -ms-flex-order: 4 !important;
    order: 4 !important;
  }
  .order-sm-5 {
    -webkit-box-ordinal-group: 6 !important;
    -ms-flex-order: 5 !important;
    order: 5 !important;
  }
  .order-sm-last {
    -webkit-box-ordinal-group: 7 !important;
    -ms-flex-order: 6 !important;
    order: 6 !important;
  }
  .m-sm-0 {
    margin: 0 !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 3rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-sm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-sm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-sm-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-sm-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-sm-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-sm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-sm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-sm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-sm-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-sm-0 {
    margin-top: 0 !important;
  }
  .mt-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mt-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mt-sm-3 {
    margin-top: 1rem !important;
  }
  .mt-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mt-sm-5 {
    margin-top: 3rem !important;
  }
  .mt-sm-auto {
    margin-top: auto !important;
  }
  .me-sm-0 {
    margin-right: 0 !important;
  }
  .me-sm-1 {
    margin-right: 0.25rem !important;
  }
  .me-sm-2 {
    margin-right: 0.5rem !important;
  }
  .me-sm-3 {
    margin-right: 1rem !important;
  }
  .me-sm-4 {
    margin-right: 1.5rem !important;
  }
  .me-sm-5 {
    margin-right: 3rem !important;
  }
  .me-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-0 {
    margin-bottom: 0 !important;
  }
  .mb-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-sm-3 {
    margin-bottom: 1rem !important;
  }
  .mb-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-sm-5 {
    margin-bottom: 3rem !important;
  }
  .mb-sm-auto {
    margin-bottom: auto !important;
  }
  .ms-sm-0 {
    margin-left: 0 !important;
  }
  .ms-sm-1 {
    margin-left: 0.25rem !important;
  }
  .ms-sm-2 {
    margin-left: 0.5rem !important;
  }
  .ms-sm-3 {
    margin-left: 1rem !important;
  }
  .ms-sm-4 {
    margin-left: 1.5rem !important;
  }
  .ms-sm-5 {
    margin-left: 3rem !important;
  }
  .ms-sm-auto {
    margin-left: auto !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 3rem !important;
  }
  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-sm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-sm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-sm-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-sm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-sm-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-sm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-sm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-sm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-sm-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-sm-0 {
    padding-top: 0 !important;
  }
  .pt-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pt-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pt-sm-3 {
    padding-top: 1rem !important;
  }
  .pt-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pt-sm-5 {
    padding-top: 3rem !important;
  }
  .pe-sm-0 {
    padding-right: 0 !important;
  }
  .pe-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pe-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pe-sm-3 {
    padding-right: 1rem !important;
  }
  .pe-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pe-sm-5 {
    padding-right: 3rem !important;
  }
  .pb-sm-0 {
    padding-bottom: 0 !important;
  }
  .pb-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pb-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-sm-5 {
    padding-bottom: 3rem !important;
  }
  .ps-sm-0 {
    padding-left: 0 !important;
  }
  .ps-sm-1 {
    padding-left: 0.25rem !important;
  }
  .ps-sm-2 {
    padding-left: 0.5rem !important;
  }
  .ps-sm-3 {
    padding-left: 1rem !important;
  }
  .ps-sm-4 {
    padding-left: 1.5rem !important;
  }
  .ps-sm-5 {
    padding-left: 3rem !important;
  }
}

@media (min-width: 768px) {
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-grid {
    display: -ms-grid !important;
    display: grid !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-md-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-md-none {
    display: none !important;
  }
  .flex-md-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-md-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-md-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-md-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .flex-md-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-md-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-md-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .justify-content-md-evenly {
    -webkit-box-pack: space-evenly !important;
    -ms-flex-pack: space-evenly !important;
    justify-content: space-evenly !important;
  }
  .align-items-md-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-md-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-md-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-md-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-md-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-md-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-md-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-md-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-md-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-md-auto {
    -ms-flex-item-align: auto !important;
    -ms-grid-row-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;
    -ms-grid-row-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;
    -ms-grid-row-align: stretch !important;
    align-self: stretch !important;
  }
  .order-md-first {
    -webkit-box-ordinal-group: 0 !important;
    -ms-flex-order: -1 !important;
    order: -1 !important;
  }
  .order-md-0 {
    -webkit-box-ordinal-group: 1 !important;
    -ms-flex-order: 0 !important;
    order: 0 !important;
  }
  .order-md-1 {
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    order: 1 !important;
  }
  .order-md-2 {
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    order: 2 !important;
  }
  .order-md-3 {
    -webkit-box-ordinal-group: 4 !important;
    -ms-flex-order: 3 !important;
    order: 3 !important;
  }
  .order-md-4 {
    -webkit-box-ordinal-group: 5 !important;
    -ms-flex-order: 4 !important;
    order: 4 !important;
  }
  .order-md-5 {
    -webkit-box-ordinal-group: 6 !important;
    -ms-flex-order: 5 !important;
    order: 5 !important;
  }
  .order-md-last {
    -webkit-box-ordinal-group: 7 !important;
    -ms-flex-order: 6 !important;
    order: 6 !important;
  }
  .m-md-0 {
    margin: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-md-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-md-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-md-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-md-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-md-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-md-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-md-0 {
    margin-top: 0 !important;
  }
  .mt-md-1 {
    margin-top: 0.25rem !important;
  }
  .mt-md-2 {
    margin-top: 0.5rem !important;
  }
  .mt-md-3 {
    margin-top: 1rem !important;
  }
  .mt-md-4 {
    margin-top: 1.5rem !important;
  }
  .mt-md-5 {
    margin-top: 3rem !important;
  }
  .mt-md-auto {
    margin-top: auto !important;
  }
  .me-md-0 {
    margin-right: 0 !important;
  }
  .me-md-1 {
    margin-right: 0.25rem !important;
  }
  .me-md-2 {
    margin-right: 0.5rem !important;
  }
  .me-md-3 {
    margin-right: 1rem !important;
  }
  .me-md-4 {
    margin-right: 1.5rem !important;
  }
  .me-md-5 {
    margin-right: 3rem !important;
  }
  .me-md-auto {
    margin-right: auto !important;
  }
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
  .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-md-3 {
    margin-bottom: 1rem !important;
  }
  .mb-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-md-5 {
    margin-bottom: 3rem !important;
  }
  .mb-md-auto {
    margin-bottom: auto !important;
  }
  .ms-md-0 {
    margin-left: 0 !important;
  }
  .ms-md-1 {
    margin-left: 0.25rem !important;
  }
  .ms-md-2 {
    margin-left: 0.5rem !important;
  }
  .ms-md-3 {
    margin-left: 1rem !important;
  }
  .ms-md-4 {
    margin-left: 1.5rem !important;
  }
  .ms-md-5 {
    margin-left: 3rem !important;
  }
  .ms-md-auto {
    margin-left: auto !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-md-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-md-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-md-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-md-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-md-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-md-0 {
    padding-top: 0 !important;
  }
  .pt-md-1 {
    padding-top: 0.25rem !important;
  }
  .pt-md-2 {
    padding-top: 0.5rem !important;
  }
  .pt-md-3 {
    padding-top: 1rem !important;
  }
  .pt-md-4 {
    padding-top: 1.5rem !important;
  }
  .pt-md-5 {
    padding-top: 3rem !important;
  }
  .pe-md-0 {
    padding-right: 0 !important;
  }
  .pe-md-1 {
    padding-right: 0.25rem !important;
  }
  .pe-md-2 {
    padding-right: 0.5rem !important;
  }
  .pe-md-3 {
    padding-right: 1rem !important;
  }
  .pe-md-4 {
    padding-right: 1.5rem !important;
  }
  .pe-md-5 {
    padding-right: 3rem !important;
  }
  .pb-md-0 {
    padding-bottom: 0 !important;
  }
  .pb-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-md-3 {
    padding-bottom: 1rem !important;
  }
  .pb-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-md-5 {
    padding-bottom: 3rem !important;
  }
  .ps-md-0 {
    padding-left: 0 !important;
  }
  .ps-md-1 {
    padding-left: 0.25rem !important;
  }
  .ps-md-2 {
    padding-left: 0.5rem !important;
  }
  .ps-md-3 {
    padding-left: 1rem !important;
  }
  .ps-md-4 {
    padding-left: 1.5rem !important;
  }
  .ps-md-5 {
    padding-left: 3rem !important;
  }
}

@media (min-width: 992px) {
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-grid {
    display: -ms-grid !important;
    display: grid !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-lg-none {
    display: none !important;
  }
  .flex-lg-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-lg-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-lg-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-lg-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .flex-lg-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-lg-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-lg-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .justify-content-lg-evenly {
    -webkit-box-pack: space-evenly !important;
    -ms-flex-pack: space-evenly !important;
    justify-content: space-evenly !important;
  }
  .align-items-lg-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-lg-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-lg-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-lg-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-lg-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    -ms-flex-item-align: auto !important;
    -ms-grid-row-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;
    -ms-grid-row-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;
    -ms-grid-row-align: stretch !important;
    align-self: stretch !important;
  }
  .order-lg-first {
    -webkit-box-ordinal-group: 0 !important;
    -ms-flex-order: -1 !important;
    order: -1 !important;
  }
  .order-lg-0 {
    -webkit-box-ordinal-group: 1 !important;
    -ms-flex-order: 0 !important;
    order: 0 !important;
  }
  .order-lg-1 {
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    order: 1 !important;
  }
  .order-lg-2 {
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    order: 2 !important;
  }
  .order-lg-3 {
    -webkit-box-ordinal-group: 4 !important;
    -ms-flex-order: 3 !important;
    order: 3 !important;
  }
  .order-lg-4 {
    -webkit-box-ordinal-group: 5 !important;
    -ms-flex-order: 4 !important;
    order: 4 !important;
  }
  .order-lg-5 {
    -webkit-box-ordinal-group: 6 !important;
    -ms-flex-order: 5 !important;
    order: 5 !important;
  }
  .order-lg-last {
    -webkit-box-ordinal-group: 7 !important;
    -ms-flex-order: 6 !important;
    order: 6 !important;
  }
  .m-lg-0 {
    margin: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 3rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-lg-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-lg-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-lg-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-lg-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-lg-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-lg-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-lg-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-lg-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-lg-0 {
    margin-top: 0 !important;
  }
  .mt-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mt-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mt-lg-3 {
    margin-top: 1rem !important;
  }
  .mt-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mt-lg-5 {
    margin-top: 3rem !important;
  }
  .mt-lg-auto {
    margin-top: auto !important;
  }
  .me-lg-0 {
    margin-right: 0 !important;
  }
  .me-lg-1 {
    margin-right: 0.25rem !important;
  }
  .me-lg-2 {
    margin-right: 0.5rem !important;
  }
  .me-lg-3 {
    margin-right: 1rem !important;
  }
  .me-lg-4 {
    margin-right: 1.5rem !important;
  }
  .me-lg-5 {
    margin-right: 3rem !important;
  }
  .me-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-lg-3 {
    margin-bottom: 1rem !important;
  }
  .mb-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-lg-5 {
    margin-bottom: 3rem !important;
  }
  .mb-lg-auto {
    margin-bottom: auto !important;
  }
  .ms-lg-0 {
    margin-left: 0 !important;
  }
  .ms-lg-1 {
    margin-left: 0.25rem !important;
  }
  .ms-lg-2 {
    margin-left: 0.5rem !important;
  }
  .ms-lg-3 {
    margin-left: 1rem !important;
  }
  .ms-lg-4 {
    margin-left: 1.5rem !important;
  }
  .ms-lg-5 {
    margin-left: 3rem !important;
  }
  .ms-lg-auto {
    margin-left: auto !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-lg-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-lg-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-lg-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-lg-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-lg-0 {
    padding-top: 0 !important;
  }
  .pt-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pt-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pt-lg-3 {
    padding-top: 1rem !important;
  }
  .pt-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pt-lg-5 {
    padding-top: 3rem !important;
  }
  .pe-lg-0 {
    padding-right: 0 !important;
  }
  .pe-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pe-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pe-lg-3 {
    padding-right: 1rem !important;
  }
  .pe-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pe-lg-5 {
    padding-right: 3rem !important;
  }
  .pb-lg-0 {
    padding-bottom: 0 !important;
  }
  .pb-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pb-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-lg-5 {
    padding-bottom: 3rem !important;
  }
  .ps-lg-0 {
    padding-left: 0 !important;
  }
  .ps-lg-1 {
    padding-left: 0.25rem !important;
  }
  .ps-lg-2 {
    padding-left: 0.5rem !important;
  }
  .ps-lg-3 {
    padding-left: 1rem !important;
  }
  .ps-lg-4 {
    padding-left: 1.5rem !important;
  }
  .ps-lg-5 {
    padding-left: 3rem !important;
  }
}

@media (min-width: 1200px) {
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-grid {
    display: -ms-grid !important;
    display: grid !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-xl-none {
    display: none !important;
  }
  .flex-xl-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-xl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-xl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-xl-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .flex-xl-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xl-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-xl-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .justify-content-xl-evenly {
    -webkit-box-pack: space-evenly !important;
    -ms-flex-pack: space-evenly !important;
    justify-content: space-evenly !important;
  }
  .align-items-xl-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-xl-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-xl-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-xl-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-xl-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    -ms-flex-item-align: auto !important;
    -ms-grid-row-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;
    -ms-grid-row-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;
    -ms-grid-row-align: stretch !important;
    align-self: stretch !important;
  }
  .order-xl-first {
    -webkit-box-ordinal-group: 0 !important;
    -ms-flex-order: -1 !important;
    order: -1 !important;
  }
  .order-xl-0 {
    -webkit-box-ordinal-group: 1 !important;
    -ms-flex-order: 0 !important;
    order: 0 !important;
  }
  .order-xl-1 {
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    order: 1 !important;
  }
  .order-xl-2 {
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    order: 2 !important;
  }
  .order-xl-3 {
    -webkit-box-ordinal-group: 4 !important;
    -ms-flex-order: 3 !important;
    order: 3 !important;
  }
  .order-xl-4 {
    -webkit-box-ordinal-group: 5 !important;
    -ms-flex-order: 4 !important;
    order: 4 !important;
  }
  .order-xl-5 {
    -webkit-box-ordinal-group: 6 !important;
    -ms-flex-order: 5 !important;
    order: 5 !important;
  }
  .order-xl-last {
    -webkit-box-ordinal-group: 7 !important;
    -ms-flex-order: 6 !important;
    order: 6 !important;
  }
  .m-xl-0 {
    margin: 0 !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 3rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xl-0 {
    margin-top: 0 !important;
  }
  .mt-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xl-3 {
    margin-top: 1rem !important;
  }
  .mt-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xl-5 {
    margin-top: 3rem !important;
  }
  .mt-xl-auto {
    margin-top: auto !important;
  }
  .me-xl-0 {
    margin-right: 0 !important;
  }
  .me-xl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xl-3 {
    margin-right: 1rem !important;
  }
  .me-xl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xl-5 {
    margin-right: 3rem !important;
  }
  .me-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xl-auto {
    margin-bottom: auto !important;
  }
  .ms-xl-0 {
    margin-left: 0 !important;
  }
  .ms-xl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xl-3 {
    margin-left: 1rem !important;
  }
  .ms-xl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xl-5 {
    margin-left: 3rem !important;
  }
  .ms-xl-auto {
    margin-left: auto !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 3rem !important;
  }
  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-xl-0 {
    padding-top: 0 !important;
  }
  .pt-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xl-3 {
    padding-top: 1rem !important;
  }
  .pt-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xl-5 {
    padding-top: 3rem !important;
  }
  .pe-xl-0 {
    padding-right: 0 !important;
  }
  .pe-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xl-3 {
    padding-right: 1rem !important;
  }
  .pe-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xl-5 {
    padding-right: 3rem !important;
  }
  .pb-xl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xl-5 {
    padding-bottom: 3rem !important;
  }
  .ps-xl-0 {
    padding-left: 0 !important;
  }
  .ps-xl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xl-3 {
    padding-left: 1rem !important;
  }
  .ps-xl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xl-5 {
    padding-left: 3rem !important;
  }
}

@media (min-width: 1600px) {
  .d-xxl-inline {
    display: inline !important;
  }
  .d-xxl-inline-block {
    display: inline-block !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-grid {
    display: -ms-grid !important;
    display: grid !important;
  }
  .d-xxl-table {
    display: table !important;
  }
  .d-xxl-table-row {
    display: table-row !important;
  }
  .d-xxl-table-cell {
    display: table-cell !important;
  }
  .d-xxl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-xxl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-xxl-none {
    display: none !important;
  }
  .flex-xxl-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-xxl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-xxl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-xxl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-xxl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-xxl-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-xxl-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-xxl-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-xxl-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .flex-xxl-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-xxl-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-xxl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xxl-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-xxl-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-xxl-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-xxl-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-xxl-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .justify-content-xxl-evenly {
    -webkit-box-pack: space-evenly !important;
    -ms-flex-pack: space-evenly !important;
    justify-content: space-evenly !important;
  }
  .align-items-xxl-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-xxl-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-xxl-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-xxl-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-xxl-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-xxl-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-xxl-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-xxl-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-xxl-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-xxl-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-xxl-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-xxl-auto {
    -ms-flex-item-align: auto !important;
    -ms-grid-row-align: auto !important;
    align-self: auto !important;
  }
  .align-self-xxl-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-xxl-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-xxl-center {
    -ms-flex-item-align: center !important;
    -ms-grid-row-align: center !important;
    align-self: center !important;
  }
  .align-self-xxl-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-xxl-stretch {
    -ms-flex-item-align: stretch !important;
    -ms-grid-row-align: stretch !important;
    align-self: stretch !important;
  }
  .order-xxl-first {
    -webkit-box-ordinal-group: 0 !important;
    -ms-flex-order: -1 !important;
    order: -1 !important;
  }
  .order-xxl-0 {
    -webkit-box-ordinal-group: 1 !important;
    -ms-flex-order: 0 !important;
    order: 0 !important;
  }
  .order-xxl-1 {
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    order: 1 !important;
  }
  .order-xxl-2 {
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    order: 2 !important;
  }
  .order-xxl-3 {
    -webkit-box-ordinal-group: 4 !important;
    -ms-flex-order: 3 !important;
    order: 3 !important;
  }
  .order-xxl-4 {
    -webkit-box-ordinal-group: 5 !important;
    -ms-flex-order: 4 !important;
    order: 4 !important;
  }
  .order-xxl-5 {
    -webkit-box-ordinal-group: 6 !important;
    -ms-flex-order: 5 !important;
    order: 5 !important;
  }
  .order-xxl-last {
    -webkit-box-ordinal-group: 7 !important;
    -ms-flex-order: 6 !important;
    order: 6 !important;
  }
  .m-xxl-0 {
    margin: 0 !important;
  }
  .m-xxl-1 {
    margin: 0.25rem !important;
  }
  .m-xxl-2 {
    margin: 0.5rem !important;
  }
  .m-xxl-3 {
    margin: 1rem !important;
  }
  .m-xxl-4 {
    margin: 1.5rem !important;
  }
  .m-xxl-5 {
    margin: 3rem !important;
  }
  .m-xxl-auto {
    margin: auto !important;
  }
  .mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xxl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xxl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xxl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xxl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xxl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xxl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xxl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xxl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xxl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xxl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xxl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xxl-0 {
    margin-top: 0 !important;
  }
  .mt-xxl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xxl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xxl-3 {
    margin-top: 1rem !important;
  }
  .mt-xxl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xxl-5 {
    margin-top: 3rem !important;
  }
  .mt-xxl-auto {
    margin-top: auto !important;
  }
  .me-xxl-0 {
    margin-right: 0 !important;
  }
  .me-xxl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xxl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xxl-3 {
    margin-right: 1rem !important;
  }
  .me-xxl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xxl-5 {
    margin-right: 3rem !important;
  }
  .me-xxl-auto {
    margin-right: auto !important;
  }
  .mb-xxl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xxl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xxl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xxl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xxl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xxl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xxl-auto {
    margin-bottom: auto !important;
  }
  .ms-xxl-0 {
    margin-left: 0 !important;
  }
  .ms-xxl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xxl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xxl-3 {
    margin-left: 1rem !important;
  }
  .ms-xxl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xxl-5 {
    margin-left: 3rem !important;
  }
  .ms-xxl-auto {
    margin-left: auto !important;
  }
  .p-xxl-0 {
    padding: 0 !important;
  }
  .p-xxl-1 {
    padding: 0.25rem !important;
  }
  .p-xxl-2 {
    padding: 0.5rem !important;
  }
  .p-xxl-3 {
    padding: 1rem !important;
  }
  .p-xxl-4 {
    padding: 1.5rem !important;
  }
  .p-xxl-5 {
    padding: 3rem !important;
  }
  .px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xxl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xxl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xxl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xxl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xxl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xxl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xxl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xxl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-xxl-0 {
    padding-top: 0 !important;
  }
  .pt-xxl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xxl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xxl-3 {
    padding-top: 1rem !important;
  }
  .pt-xxl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xxl-5 {
    padding-top: 3rem !important;
  }
  .pe-xxl-0 {
    padding-right: 0 !important;
  }
  .pe-xxl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xxl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xxl-3 {
    padding-right: 1rem !important;
  }
  .pe-xxl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xxl-5 {
    padding-right: 3rem !important;
  }
  .pb-xxl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xxl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xxl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xxl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xxl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xxl-5 {
    padding-bottom: 3rem !important;
  }
  .ps-xxl-0 {
    padding-left: 0 !important;
  }
  .ps-xxl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xxl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xxl-3 {
    padding-left: 1rem !important;
  }
  .ps-xxl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xxl-5 {
    padding-left: 3rem !important;
  }
}

@media print {
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-grid {
    display: -ms-grid !important;
    display: grid !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-print-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-print-none {
    display: none !important;
  }
}
/*------------------------------------*\
    #BODY
\*------------------------------------*/
/**
 * HTML base styles
 * 1) Set the html element's height to at least 100% of the viewport.
 *    This is used to achieve a sticky footer
 */
html {
  min-height: 100vh;
  /* 1 */
}

/**
 * Body base styles
 * 1) Set the body element's height to at least 100% of the viewport.
 *    This is used to achieve a sticky footer
 */
body {
  min-height: 100vh;
  /* 1 */
  font-family: "DINProRegular", "Arial", sans-serif;
  background-color: #fff;
  color: #000;
  font-size: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media screen and (min-width: 1200px) {
  body {
    font-size: 1rem;
  }
}

.row-extra-bottom {
  margin-bottom: 20px;
}

@media (min-width: 992px) {
  .row-extra-bottom {
    margin-bottom: 60px;
  }
}

.row-extra-top-on-desktop {
  margin-top: 20px;
}

@media (min-width: 992px) {
  .row-extra-top-on-desktop {
    margin-top: 50px;
  }
}

.wow {
  visibility: hidden;
}

/*------------------------------------*\
    #HEADINGS
\*------------------------------------*/
h1 {
  font-family: "UtopiaItalic", sans-serif;
  font-size: 30px;
  margin: 2.5rem 0 1.5rem 0;
}

/***
@media screen and (min-width: 1200px) {
  h1 {
    font-size: 24px;
  }
}
***/

h2 {
  font-family: "UtopiaRegular", sans-serif;
  font-size: 28px;
  margin: 2.2rem 0 1.2rem 0;
}

@media screen and (min-width: 1200px) {
  h2 {
    font-size: 22px;
  }
}

h2.centered {
  text-align: center;
  font-family: "UtopiaBold", sans-serif;
}

h3 {
  font-family: "UtopiaBold", sans-serif;
  font-size: 24px;
  margin: 2rem 0 1rem 0;
}

@media screen and (min-width: 1200px) {
  h3 {
    font-size: 20px;
  }
}

h4 {
  font-family: "UtopiaRegular", "Arial", sans-serif;
}

h5 {
  font-family: "UtopiaRegular", "Arial", sans-serif;
}

h6 {
  font-family: "UtopiaRegular", "Arial", sans-serif;
}

/*------------------------------------*\
    #TEXT
\*------------------------------------*/
/**
 * Paragraph base styles
 */
p {
  margin-bottom: 16px;
}

a {
  color: #c00418;
  text-decoration: underline;
  outline: 0;
}

a:hover,
a:focus {
  color: #000;
}

a:active {
  color: #2a2c33;
}

p.download-icon {
}
p.download-icon a.bigger {
  display: inline-block;
  font-family: "UtopiaBold", sans-serif;
  font-size: 22px;
  background: transparent url("../images/icon-download.png") center top
    no-repeat;
  background-size: 40px;
  padding: 45px 0 0 0;
}

a.red {
  color: #c00418;
}

a.red:hover,
a.red:focus {
  color: #2a2c33;
}

/**
strong {
  font-family: "DINProBold", sans-serif;
}
**/
/**
 * Blockquote base styles
 */
blockquote {
  font-style: italic;
  border-left: 1px solid #000;
  color: #000;
  padding-left: 1rem;
  margin-bottom: 12px;
}

/**
 * Horizontal rule base styles
 */
hr {
  border: 0;
  height: 1px;
  background: #000;
  opacity: 1;
  margin: 1rem 0;
}

/**
 * Selection styles
 */
::-moz-selection {
  color: #fff;
  background: #c00418;
  /* Gecko Browsers */
}

::selection {
  color: #fff;
  background: #c00418;
  /* WebKit/Blink Browsers */
}

/**
 * Code base styles
 */
code {
  display: inline-block;
  background: #000;
  border: 1px solid #000;
  padding: 0.2rem 0.5rem;
  line-height: 1.2;
  font-size: 0.85rem;
}

/**
 * Preformatted text base styles
 */
pre {
  background: #000;
  border: 1px solid #000;
  padding: 1rem;
  overflow-x: auto;
  /**
	 * Remove border from code within preformatted text block
	 */
}

pre code {
  border: 0;
}

figure {
  margin-top: 10px;
}

@media (min-width: 768px) {
  figure {
    margin-top: 6px;
  }
}

figure img {
  width: 100%;
  height: auto;
}

figure figcaption {
  text-align: left;
  color: #828693;
  margin-top: 10px;
}

@media (min-width: 768px) {
  figure figcaption {
    margin-top: 15px;
  }
}

.block .container ul {
  list-style: none;
  padding-left: 1em;
}

.block .container ul li {
  margin-bottom: 14px;
}

.block .container ul li::before {
  content: "\25AA";
  color: #c00418;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

ol {
  list-style: none;
  counter-reset: my-awesome-counter;
  padding-left: 0;
}

ol li {
  counter-increment: my-awesome-counter;
  margin-bottom: 14px;
}

ol li::before {
  content: counter(my-awesome-counter) ". ";
  color: #c00418;
  font-weight: bold;
  padding-right: 6px;
}

ol li::marker {
  padding-right: -6px;
}

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

.block {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 25px 0;
  padding: 25px 0;
}

@media screen and (min-width: 576px) {
  .block {
    margin: 30px 0;
    padding: 30px 0;
  }
}

@media screen and (min-width: 768px) {
  .block {
    margin: 35px 0;
    padding: 35px 0;
  }
}

@media screen and (min-width: 992px) {
  .block {
    margin: 40px 0;
    padding: 40px 0;
  }
}

.block.remove-container-margin {
  margin: 0;
}

.block.remove-top-margin {
  margin-top: 0;
}

.block.remove-bottom-margin {
  margin-bottom: 0;
}

.block.remove-container-padding {
  padding: 0;
}

.block.remove-top-padding {
  padding-top: 0;
}

.block.remove-bottom-padding {
  padding-bottom: 0;
}

.block.gray {
  background-color: #ededed;
  /***
    padding: 45px 0;
    @media screen and (min-width: $breakSmall) {
      padding: 50px 0;
    }
    @media screen and (min-width: $breakMedium) {
      padding: 55px 0;
    }
    @media screen and (min-width: $breakLarge) {
      padding: 60px 0;
    }
    ***/
}

@media screen and (max-width: 1199.98px) {
  .block.gray-on-mobile {
    background-color: #ededed;
  }
}

@media screen and (min-width: 1200px) {
  .block .container .container-narrower {
    margin-left: 220px;
    margin-right: 220px;
  }
}

.block .container .container-narrower.gray {
  background-color: #ededed;
  padding-top: 20px;
  padding-bottom: 20px;
}

@media screen and (min-width: 1200px) {
  .block .container .container-narrower.gray {
    margin-left: 0;
    margin-right: 0;
    padding-left: 220px;
    padding-right: 220px;
  }
}

@media screen and (min-width: 1200px) {
  .hide-on-desktop {
    display: none;
  }
}

@media screen and (max-width: 1199.98px) {
  .hide-on-mobile {
    display: none;
  }
}

/*------------------------------------*\
    #COMPONENTS
\*------------------------------------*/
header {
  background-color: #ededed;
  width: 100%;
  height: auto;
  position: relative;
}

header.show-sticky {
  -webkit-animation: mymove 300ms linear;
  animation: mymove 300ms linear;
  position: fixed;
  margin-bottom: 72px;
  z-index: 999;
}

@-webkit-keyframes mymove {
  from {
    top: -72px;
  }
  to {
    top: 0px;
  }
}

@keyframes mymove {
  from {
    top: -72px;
  }
  to {
    top: 0px;
  }
}

header .container {
  margin: 0 auto;
  -webkit-transition: padding 0.4s linear;
  transition: padding 0.4s linear;
}

@media screen and (min-width: 575.98px) {
  header .container {
    -webkit-transition: padding 0.4s linear;
    transition: padding 0.4s linear;
  }
}

@media screen and (min-width: 1200px) {
  header .container {
    max-width: 100%;
  }
}

header .container #nav-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

header .container #nav-wrapper #nav-logo {
  position: fixed;
  overflow: visible;
  z-index: 9999;
  top: 0;
  padding: 14px 20px;
  background-color: #fff;
  -webkit-box-shadow: 0px 5px 5px 0 rgba(30, 31, 29, 0.15);
  box-shadow: 0px 5px 5px 0 rgba(30, 31, 29, 0.15);
}

@media screen and (max-width: 1199.98px) {
  header .container #nav-wrapper #nav-logo {
    display: none;
  }
}

header .container #nav-wrapper #nav-logo a img {
  width: 139px;
  height: 92px;
}

header .container #nav-wrapper #mobile-nav-logo {
  padding-top: 24px;
}

header .container #nav-wrapper #mobile-nav-logo img {
  height: 30px;
}

@media screen and (min-width: 420px) {
  header .container #nav-wrapper #mobile-nav-logo {
    padding-top: 18px;
  }
  header .container #nav-wrapper #mobile-nav-logo img {
    height: 40px;
  }
}

@media screen and (min-width: 576px) {
  header .container #nav-wrapper #mobile-nav-logo {
    padding-top: 12px;
  }
  header .container #nav-wrapper #mobile-nav-logo img {
    height: 50px;
  }
}

@media screen and (max-width: 1199.98px) {
  header .container #nav-wrapper #mobile-nav-logo {
    display: block !important;
  }
}

/*++A*/
header .container #nav-wrapper #nav-wrapper-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  transition: all 0.4s linear;
  -webkit-transition: all 0.4s linear;
  -moz-transition: all 0.4s linear;
}

@media screen and (min-width: 1200px) {
  header .container #nav-wrapper #nav-wrapper-right {
    margin-right: auto;
  }
}

@media screen and (max-width: 1199.98px) {
  header .container #nav-wrapper #nav-wrapper-right #nav-menu {
    display: none;
  }
}

header .container #nav-wrapper #nav-wrapper-right #nav-menu nav ul.primary {
  list-style-type: none;
  margin: 0;
}

header .container #nav-wrapper #nav-wrapper-right #nav-menu nav ul.primary li {
  float: left;
  font-size: 15px;
  padding: 25px 14px;
}

header
  .container
  #nav-wrapper
  #nav-wrapper-right
  #nav-menu
  nav
  ul.primary
  li
  ul.sub-menu
  li {
  padding: 10px 20px;
}

header
  .container
  #nav-wrapper
  #nav-wrapper-right
  #nav-menu
  nav
  ul.primary
  li
  a {
  font-family: "UtopiaMedium", "Arial", sans-serif;
  text-transform: none;
  color: #000;
  text-decoration: none;
  display: block;
  /**padding: 25px 16px;**/
  position: relative;
}

header
  .container
  #nav-wrapper
  #nav-wrapper-right
  #nav-menu
  nav
  ul.primary
  li.current-menu-parent
  a,
header
  .container
  #nav-wrapper
  #nav-wrapper-right
  #nav-menu
  nav
  ul.primary
  li.current_page_item
  a,
header
  .container
  #nav-wrapper
  #nav-wrapper-right
  #nav-menu
  nav
  ul.primary
  li:hover
  a {
  /****
  background-color: #c00418;
  color: #fff;
  ****/
}

header
  .container
  #nav-wrapper
  #nav-wrapper-right
  #nav-menu
  nav
  ul.primary
  li.wpml-ls-item-de
  a {
  /**padding: 25px 10px;**/
}

header
  .container
  #nav-wrapper
  #nav-wrapper-right
  #nav-menu
  nav
  ul.primary
  li.wpml-ls-item-de
  a
  span {
  /***
  background: transparent url("../images/flag_de.svg") center center no-repeat;
  display: inline-block;
  width: 34px;
  height: 22px;
  background-size: contain;
  ***/
}

header
  .container
  #nav-wrapper
  #nav-wrapper-right
  #nav-menu
  nav
  ul.primary
  li.wpml-ls-item-en
  a {
  /**padding: 25px 10px;**/
}

header
  .container
  #nav-wrapper
  #nav-wrapper-right
  #nav-menu
  nav
  ul.primary
  li.wpml-ls-item-en
  a
  span {
  /***
  background: transparent url("../images/flag_en.svg") center center no-repeat;
  display: inline-block;
  width: 34px;
  height: 22px;
  background-size: contain;
  ***/
}

header
  .container
  #nav-wrapper
  #nav-wrapper-right
  #nav-menu
  nav
  ul.primary
  li
  ul.sub-menu {
  list-style-type: none;
  display: none;
  position: absolute;
  margin: 0;
  padding: 0;
  background-color: #cbcdcd;
  z-index: 99;
}

header
  .container
  #nav-wrapper
  #nav-wrapper-right
  #nav-menu
  nav
  ul.primary
  li
  ul.sub-menu
  li {
  margin: 0;
  line-height: 26px;
  display: inherit;
  border-top: 1px solid #cbcdcd;
}

header
  .container
  #nav-wrapper
  #nav-wrapper-right
  #nav-menu
  nav
  ul.primary
  li
  ul.sub-menu
  li
  a {
  width: auto;
  font-family: "UtopiaMedium", "Arial", sans-serif;
  text-decoration: none;
  text-transform: none;
  outline: none;
  color: #000;
  background-color: #cbcdcd;
  display: inline-block;
}

/****
header .container #nav-wrapper #nav-wrapper-right #nav-menu nav ul.primary li ul.sub-menu li a:hover {
  background-color: #c00418;
}

header .container #nav-wrapper #nav-wrapper-right #nav-menu nav ul.primary li ul.sub-menu li.current_page_item a {
  background-color: #c00418;
  color: #fff;
}
****/
header
  .container
  #nav-wrapper
  #nav-wrapper-right
  #nav-menu
  nav
  ul.primary
  li:hover
  a {
  /**background-color: #c00418;**/
}
header
  .container
  #nav-wrapper
  #nav-wrapper-right
  #nav-menu
  nav
  ul.primary
  li
  a::before,
div.projects-navigation:not(.team) ul li a::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 3px;
  bottom: 0;
  left: 0;
  background-color: #c00418;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
header
  .container
  #nav-wrapper
  #nav-wrapper-right
  #nav-menu
  nav
  ul.primary
  li
  ul.sub-menu
  li
  a::before {
  background-color: #c00418;
}

header
  .container
  #nav-wrapper
  #nav-wrapper-right
  #nav-menu
  nav
  ul.primary
  li.current-menu-parent
  > a::before,
header
  .container
  #nav-wrapper
  #nav-wrapper-right
  #nav-menu
  nav
  ul.primary
  li.current_page_item
  > a::before,
header
  .container
  #nav-wrapper
  #nav-wrapper-right
  #nav-menu
  nav
  ul.primary
  li
  > a:hover::before,
div.projects-navigation ul li.current_page_item > a::before,
div.projects-navigation ul li > a:hover::before {
  transform: scaleX(1);
}

header
  .container
  #nav-wrapper
  #nav-wrapper-right
  #nav-menu
  nav
  ul.primary
  li:hover
  ul.sub-menu {
  /*display: -webkit-box;
  display: -ms-flexbox;*/
  display: grid;
}

/***
header .container #nav-wrapper #nav-wrapper-right #nav-menu nav ul.primary li.current_page_item a {
  background-color: #c00418;
  color: #fff;
}
***/

header
  .container
  #nav-wrapper
  #nav-wrapper-right
  #nav-menu
  nav
  ul.primary#menu-navmainde
  li#menu-item-666,
header
  .container
  #nav-wrapper
  #nav-wrapper-right
  #nav-menu
  nav
  ul.primary#menu-navmainen
  li#menu-item-666 {
  position: relative;
}

header
  .container
  #nav-wrapper
  #nav-wrapper-right
  #nav-menu
  nav
  ul.primary#menu-navmainde
  li#menu-item-666
  ul.sub-menu,
header
  .container
  #nav-wrapper
  #nav-wrapper-right
  #nav-menu
  nav
  ul.primary#menu-navmainen
  li#menu-item-666
  ul.sub-menu {
  width: 100%;
}

header .container #nav-wrapper #nav-wrapper-right #open-menu-wrapper {
  display: block !important;
  padding: 30px;
}

@media screen and (min-width: 1200px) {
  header .container #nav-wrapper #nav-wrapper-right #open-menu-wrapper {
    display: none !important;
  }
}

header
  .container
  #nav-wrapper
  #nav-wrapper-right
  #open-menu-wrapper
  a.open-menu {
  background: transparent url("../images/icon-menue-mobile.svg") center center
    no-repeat;
  display: block;
  cursor: pointer;
  width: 26px;
  height: 17px;
}

header
  .container
  #nav-wrapper
  #nav-wrapper-right
  #open-menu-wrapper
  a.open-menu.open {
  width: 20px;
  height: 21px;
  background-image: url("../images/icon-menue-mobile-open.svg");
}
/*++E*/

/*--A*/
header #mobile-menu {
  z-index: 999999;
  position: relative;
}

header #mobile-menu .container {
  padding-top: 0;
  padding-bottom: 0;
}

@media screen and (max-width: 420px) {
  header #mobile-menu .container {
    padding: 0;
  }
}

header #mobile-menu .container nav ul {
  list-style-type: none;
  margin: 0 0 30px 0;
  padding: 0;
}

header #mobile-menu .container nav ul li {
  padding: 0;
  margin: 0;
  border-top: 1px solid #e5e5e5;
}

header #mobile-menu .container nav ul li.menu-item-has-children > a {
  float: left;
  width: 90%;
}

header
  #mobile-menu
  .container
  nav
  ul
  li.menu-item-has-children
  > button.toggle-btn {
  display: block;
  z-index: 1;
}

header #mobile-menu .container nav ul li button.toggle-btn {
  cursor: pointer;
  outline: 0;
  border: none;
  height: 45px;
  padding: 0 5%;
  background: #aaa url("../images/icon-menu-mobile-sub.svg") center center
    no-repeat;
}

header #mobile-menu .container nav ul li button.toggle-btn.open {
  background-image: url("../images/icon-menu-mobile-sub-open.svg");
}

header #mobile-menu .container nav ul li a {
  display: block;
  font-family: "UtopiaMedium", "Arial", sans-serif;
  background-color: #aaa;
  color: #fff;
  text-decoration: none;
  padding: 6px 24px 10px 24px;
  height: 45px;
  outline: none;
}

header
  #mobile-menu
  .container
  nav
  ul
  li.current-menu-parent
  > button.toggle-btn,
header #mobile-menu .container nav ul li:hover > a,
header #mobile-menu .container nav ul li:hover > button.toggle-btn {
  background-color: #c00418;
}

header #mobile-menu .container nav ul li.current-menu-parent a,
header #mobile-menu .container nav ul li.current_page_item a {
  background-color: #c00418;
  color: #fff;
}

header #mobile-menu .container nav ul li.wpml-ls-item-de a {
  /*font-size: 0;*/
  padding: 12px 24px 10px 24px;
}

header #mobile-menu .container nav ul li.wpml-ls-item-de a span {
  /***
  background: transparent url("../images/flag_de.svg") center center no-repeat;
  display: inline-block;
  width: 34px;
  height: 22px;
  background-size: contain;
  ***/
}

header #mobile-menu .container nav ul li.wpml-ls-item-en a {
  /*font-size: 0;*/
  padding: 12px 24px 10px 24px;
}

header #mobile-menu .container nav ul li.wpml-ls-item-en a span {
  /***
  background: transparent url("../images/flag_en.svg") center center no-repeat;
  display: inline-block;
  width: 34px;
  height: 22px;
  background-size: contain;
  ***/
}

header #mobile-menu .container nav ul li ul.sub-menu {
  display: none;
  background-color: #fff;
  margin: 0;
}

header #mobile-menu .container nav ul li ul.sub-menu li a {
  background-color: #6d6d6d;
  color: #fff;
}

header #mobile-menu .container nav ul li ul.sub-menu li:hover a {
  background-color: #c00418;
}

header #mobile-menu .container nav ul li ul.sub-menu li.current_page_item a {
  background-color: #c00418;
  color: #fff;
}

.wpml-ls-menu-item .wpml-ls-flag {
  width: 34px !important;
  height: 23px !important;
}
/*--E*/
/*--FooterA*/
footer {
  font-family: "UtopiaRegular", "Arial", sans-serif;
}

footer #footer-wrapper-top {
  background-color: #ededed;
  margin-top: 30px;
  padding: 20px 0 25px 0;
}

footer #footer-wrapper-top h4 {
  text-transform: uppercase;
  font-size: 1.2rem;
  margin-bottom: 16px;
}

@media screen and (max-width: 991.98px) {
  footer #footer-wrapper-top h4 {
    margin-top: 30px;
  }
}

footer #footer-wrapper-top nav ul {
  margin: 0;
  padding: 0;
}

footer #footer-wrapper-top nav ul li {
  list-style-type: none;
}

footer #footer-wrapper-top nav ul li a {
  color: #000;
  text-decoration: none;
}

footer #footer-wrapper-top nav ul li:hover > a {
  color: #c00418;
}
footer #footer-wrapper-top nav ul li:first-child {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 16px;
  text-transform: uppercase;
}

@media screen and (max-width: 991.98px) {
  footer #footer-wrapper-top nav ul li:first-child {
    margin-top: 30px;
  }
}

footer #footer-wrapper-top nav ul#menu-navfootercol1de li:nth-child(1) a,
footer #footer-wrapper-top nav ul#menu-navfootercol2de li:nth-child(1) a,
footer #footer-wrapper-top nav ul#menu-navfootercol3de li:nth-child(1) a,
footer #footer-wrapper-top nav ul#menu-navfootercol3de li:nth-child(2) a,
footer #footer-wrapper-top nav ul#menu-navfootercol3de li:nth-child(3) a,
footer #footer-wrapper-top nav ul#menu-navfootercol3de li:nth-child(4) a,
footer #footer-wrapper-top nav ul#menu-navfootercol1en li:nth-child(1) a,
footer #footer-wrapper-top nav ul#menu-navfootercol2en li:nth-child(1) a,
footer #footer-wrapper-top nav ul#menu-navfootercol2en li:nth-child(2) a,
footer #footer-wrapper-top nav ul#menu-navfootercol3en li:nth-child(1) a,
footer #footer-wrapper-top nav ul#menu-navfootercol3en li:nth-child(2) a,
footer #footer-wrapper-top nav ul#menu-navfootercol3en li:nth-child(3) a,
footer #footer-wrapper-top nav ul#menu-navfootercol3en li:nth-child(4) a {
  position: relative;
}
footer
  #footer-wrapper-top
  nav
  ul#menu-navfootercol1de
  li:nth-child(1)
  a::before,
footer
  #footer-wrapper-top
  nav
  ul#menu-navfootercol2de
  li:nth-child(1)
  a::before,
footer
  #footer-wrapper-top
  nav
  ul#menu-navfootercol3de
  li:nth-child(1)
  a::before,
footer
  #footer-wrapper-top
  nav
  ul#menu-navfootercol3de
  li:nth-child(2)
  a::before,
footer
  #footer-wrapper-top
  nav
  ul#menu-navfootercol3de
  li:nth-child(3)
  a::before,
footer
  #footer-wrapper-top
  nav
  ul#menu-navfootercol3de
  li:nth-child(4)
  a::before,
footer
  #footer-wrapper-top
  nav
  ul#menu-navfootercol1en
  li:nth-child(1)
  a::before,
footer
  #footer-wrapper-top
  nav
  ul#menu-navfootercol2en
  li:nth-child(1)
  a::before,
footer
  #footer-wrapper-top
  nav
  ul#menu-navfootercol2en
  li:nth-child(2)
  a::before,
footer
  #footer-wrapper-top
  nav
  ul#menu-navfootercol3en
  li:nth-child(1)
  a::before,
footer
  #footer-wrapper-top
  nav
  ul#menu-navfootercol3en
  li:nth-child(2)
  a::before,
footer
  #footer-wrapper-top
  nav
  ul#menu-navfootercol3en
  li:nth-child(3)
  a::before,
footer
  #footer-wrapper-top
  nav
  ul#menu-navfootercol3en
  li:nth-child(4)
  a::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 3px;
  bottom: 0;
  left: 0;
  background-color: #c00418;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
footer
  #footer-wrapper-top
  nav
  ul#menu-navfootercol1de
  li:nth-child(1)
  a:hover::before,
footer
  #footer-wrapper-top
  nav
  ul#menu-navfootercol1de
  li:nth-child(1).current-menu-item
  a::before,
footer
  #footer-wrapper-top
  nav
  ul#menu-navfootercol2de
  li:nth-child(1)
  a:hover::before,
footer
  #footer-wrapper-top
  nav
  ul#menu-navfootercol2de
  li:nth-child(1).current-menu-item
  a::before,
footer
  #footer-wrapper-top
  nav
  ul#menu-navfootercol3de
  li:nth-child(1)
  a:hover::before,
footer
  #footer-wrapper-top
  nav
  ul#menu-navfootercol3de
  li:nth-child(1).current-menu-item
  a::before,
footer
  #footer-wrapper-top
  nav
  ul#menu-navfootercol3de
  li:nth-child(2)
  a:hover::before,
footer
  #footer-wrapper-top
  nav
  ul#menu-navfootercol3de
  li:nth-child(2).current-menu-item
  a::before,
footer
  #footer-wrapper-top
  nav
  ul#menu-navfootercol3de
  li:nth-child(3)
  a:hover::before,
footer
  #footer-wrapper-top
  nav
  ul#menu-navfootercol3de
  li:nth-child(3).current-menu-item
  a::before,
footer
  #footer-wrapper-top
  nav
  ul#menu-navfootercol3de
  li:nth-child(4)
  a:hover::before,
footer
  #footer-wrapper-top
  nav
  ul#menu-navfootercol3de
  li:nth-child(4).current-menu-item
  a::before,
footer
  #footer-wrapper-top
  nav
  ul#menu-navfootercol1en
  li:nth-child(1)
  a:hover::before,
footer
  #footer-wrapper-top
  nav
  ul#menu-navfootercol1en
  li:nth-child(1).current-menu-item
  a::before,
footer
  #footer-wrapper-top
  nav
  ul#menu-navfootercol2en
  li:nth-child(1)
  a:hover::before,
footer
  #footer-wrapper-top
  nav
  ul#menu-navfootercol2en
  li:nth-child(1).current-menu-item
  a::before,
footer
  #footer-wrapper-top
  nav
  ul#menu-navfootercol3en
  li:nth-child(1)
  a:hover::before,
footer
  #footer-wrapper-top
  nav
  ul#menu-navfootercol3en
  li:nth-child(1).current-menu-item
  a::before,
footer
  #footer-wrapper-top
  nav
  ul#menu-navfootercol3en
  li:nth-child(2)
  a:hover::before,
footer
  #footer-wrapper-top
  nav
  ul#menu-navfootercol3en
  li:nth-child(2).current-menu-item
  a::before,
footer
  #footer-wrapper-top
  nav
  ul#menu-navfootercol3en
  li:nth-child(3)
  a:hover::before,
footer
  #footer-wrapper-top
  nav
  ul#menu-navfootercol3en
  li:nth-child(3).current-menu-item
  a::before,
footer
  #footer-wrapper-top
  nav
  ul#menu-navfootercol3en
  li:nth-child(4)
  a:hover::before,
footer
  #footer-wrapper-top
  nav
  ul#menu-navfootercol3en
  li:nth-child(4).current-menu-item
  a::before {
  transform: scaleX(1);
}

footer #footer-wrapper-top nav ul li.current_page_item a {
  color: #c00418;
}

footer
  #footer-wrapper-top
  nav
  ul#menu-navfootercol1de
  li:nth-child(1).current_page_item
  a,
footer
  #footer-wrapper-top
  nav
  ul#menu-navfootercol2de
  li:nth-child(1).current_page_item
  a,
footer
  #footer-wrapper-top
  nav
  ul#menu-navfootercol2de
  li:nth-child(2).current_page_item
  a,
footer
  #footer-wrapper-top
  nav
  ul#menu-navfootercol3de
  li:nth-child(1).current_page_item
  a,
footer
  #footer-wrapper-top
  nav
  ul#menu-navfootercol3de
  li:nth-child(2).current_page_item
  a,
footer
  #footer-wrapper-top
  nav
  ul#menu-navfootercol1en
  li:nth-child(1).current_page_item
  a,
footer
  #footer-wrapper-top
  nav
  ul#menu-navfootercol2en
  li:nth-child(1).current_page_item
  a,
footer
  #footer-wrapper-top
  nav
  ul#menu-navfootercol2en
  li:nth-child(2).current_page_item
  a,
footer
  #footer-wrapper-top
  nav
  ul#menu-navfootercol3en
  li:nth-child(1).current_page_item
  a,
footer
  #footer-wrapper-top
  nav
  ul#menu-navfootercol3en
  li:nth-child(2).current_page_item
  a,
footer #footer-wrapper-top nav ul#menu-navfootercol1de li:nth-child(1) a:hover,
footer #footer-wrapper-top nav ul#menu-navfootercol2de li:nth-child(1) a:hover,
footer #footer-wrapper-top nav ul#menu-navfootercol3de li:nth-child(1) a:hover,
footer #footer-wrapper-top nav ul#menu-navfootercol3de li:nth-child(2) a:hover,
footer #footer-wrapper-top nav ul#menu-navfootercol1en li:nth-child(1) a:hover,
footer #footer-wrapper-top nav ul#menu-navfootercol2en li:nth-child(1) a:hover,
footer #footer-wrapper-top nav ul#menu-navfootercol3en li:nth-child(1) a:hover,
footer #footer-wrapper-top nav ul#menu-navfootercol3en li:nth-child(2) a:hover {
  color: #000;
}

footer #footer-wrapper-top nav ul li.footer-nav-item-big {
  text-transform: uppercase;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.2;
}

@media screen and (max-width: 991.98px) {
  footer #footer-wrapper-top nav ul.footer-nav-big {
    margin-top: 30px;
  }
}

footer #footer-wrapper-top nav ul.footer-nav-big li {
  text-transform: uppercase;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 16px;
}

footer #footer-wrapper-center_parting_line {
  background-color: #ededed;
}

footer #footer-wrapper-center_parting_line .white_parting_line {
  height: 2px;
  background-color: #fff;
}

footer #footer-wrapper-center {
  background-color: #ededed;
  padding: 30px 0;
}

footer #footer-wrapper-center nav ul {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (min-width: 992px) {
  footer #footer-wrapper-center nav ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

footer #footer-wrapper-center nav ul li {
  list-style-type: none;
}

footer #footer-wrapper-center nav ul li a {
  color: #000;
  text-decoration: none;
  position: relative;
}

footer #footer-wrapper-center nav ul.footer-nav-big-horizontal li a::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 3px;
  bottom: 0;
  left: 0;
  background-color: #c00418;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

footer
  #footer-wrapper-center
  nav
  ul.footer-nav-big-horizontal
  li
  a:hover::before,
footer
  #footer-wrapper-center
  nav
  ul.footer-nav-big-horizontal
  li.current-menu-item
  a::before {
  transform: scaleX(1);
}

/***
footer #footer-wrapper-center nav ul li:hover > a {
  color: #e02438;
} 

footer #footer-wrapper-center nav ul li.current_page_item a {
  color: #c00418;
}***/

footer #footer-wrapper-center nav ul.footer-nav-big-horizontal li {
  text-transform: uppercase;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.2;
  margin-top: 4px;
}
@media screen and (min-width: 992px) {
  footer #footer-wrapper-center nav ul.footer-nav-big-horizontal li {
    width: 30%;
  }
}

footer #footer-wrapper-center ul {
  margin: 0;
  padding: 0;
}

footer #footer-wrapper-center ul.footer-nav-sm-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-start;
  align-items: self-end;
  font-size: 1.2rem;
  text-transform: uppercase;
}
@media screen and (min-width: 992px) {
  footer #footer-wrapper-center ul.footer-nav-sm-links {
    justify-content: flex-start;
    gap: 15px;
  }
}

footer #footer-wrapper-center ul.footer-nav-sm-links li {
  color: #000;
  list-style-type: none;
  margin: 0 0 0 10px;
}

footer #footer-wrapper-center ul.footer-nav-sm-links li:first-child {
  font-size: 0.9em;
  margin: 0;
}

footer #footer-wrapper-center ul.footer-nav-sm-links li a img {
  width: auto;
  height: 21px;
}

footer #footer-wrapper-bottom {
  padding: 32px 0;
}

footer #footer-wrapper-bottom p {
  margin: 0;
  text-align: center;
}

footer #footer-wrapper-bottom p strong {
  font-weight: bold;
}

/*--FooterE*/

#stickybuttons {
  position: fixed;
  z-index: 99999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  top: 30%;
}

@media screen and (orientation: landscape) {
  #stickybuttons {
    top: 20%;
  }
}

#stickybuttons.hide-initial {
  display: none;
}

#stickybuttons div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #c00418;
  padding: 2px 10px 2px 0;
  -webkit-box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.15);
  position: relative;
  -webkit-transition: right ease 0.7s;
  transition: right ease 0.7s;
  border-bottom: 1px solid #fff;
}

#stickybuttons div:hover {
  background-color: #3c3c3b;
}

#stickybuttons div span {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 40px;
  min-width: 40px;
  height: 35px;
}

#stickybuttons div span img {
  width: 20px;
}

#stickybuttons div a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  text-decoration: none;
  margin: 0 20px 0 20px;
  font-size: 1rem;
  line-height: 1rem;
  white-space: nowrap;
}

@media screen and (max-width: 420px) {
  #stickybuttons div a {
    word-wrap: break-word;
    font-size: 1rem;
    line-height: 1rem;
  }
}

@media screen and (min-width: 576px) {
  #stickybuttons div a {
    font-size: 1.1rem;
    line-height: 1.3rem;
  }
}

@media screen and (min-width: 768px) {
  #stickybuttons div a {
    font-size: 1.2rem;
    line-height: 1.2rem;
  }
}

@media screen and (min-width: 992px) {
  #stickybuttons div a {
    font-size: 1.3rem;
    line-height: 1.3rem;
  }
}

/*------------------------------------*\
    #BUTTONS
\*------------------------------------*/
/**
 * Button and submit inputs reset
 * 1) These should be styled using c-btn
 */
.btn {
  font-family: "DINProRegular", "Arial", sans-serif;
  border: none;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: normal;
  text-align: center;
  text-decoration: none;
  color: #000;
  display: inline-table;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background-color: #666;
  color: #fff;
  cursor: pointer;
  padding: 8px 16px;
}

@media (min-width: 768px) {
  .btn {
    padding: 9px 18px;
  }
}

@media (min-width: 992px) {
  .btn {
    padding: 10px 20px;
  }
}

@media (min-width: 1200px) {
  .btn {
    padding: 10px 20px;
  }
}

.btn:hover,
.btn:focus,
.btn:focus-visible {
  background-color: #3c3c3b;
}

.btn.btn-primary {
  background-color: #c00418;
  color: #fff;
}

.btn.btn-primary:hover,
.btn.btn-primary:focus {
  background-color: #3c3c3b;
}

.btn.btn-secondary {
  font-weight: normal;
  background-color: #3c3c3b;
  color: #fff;
}

.btn.btn-secondary:hover,
.btn.btn-secondary:focus {
  background-color: #666;
  color: #fff;
}

.btn.btn-cta {
  border: 2px solid #c00418;
  border-radius: 10px;
  padding: 20px 50px;
  text-transform: uppercase;
  color: #fff;
  background-image: none;
  background: #c00418;
  padding: 20px;
  width: 100%;
}

@media (min-width: 576px) {
  .btn.btn-cta {
    width: auto;
    padding: 20px 40px;
  }
}

@media (min-width: 992px) {
  .btn.btn-cta {
    padding: 20px 70px;
  }
}

.btn.btn-cta:hover {
  background-color: #d60025;
  border-color: #d60025;
  color: #fff;
}

.btn.btn-white {
  background-color: #fff;
  border-color: #fff;
  color: #c00418;
}

.btn.btn-white:hover {
  background-color: #e9e9ea;
  border-color: #e9e9ea;
  color: #2a2c33;
}

.btn.btn-back {
  border: none;
  color: #c00418;
  font-weight: normal;
  padding: 5px 5px 5px 30px;
  background: transparent url("../images/icon-arrow-back.svg") center center
    no-repeat;
  background-position-x: 0;
}

.btn.btn-back:hover {
  color: #2a2c33;
  background-image: url("../images/icon-arrow-back-hover.svg");
}

.btn.btn-cta-next {
  border: none;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: underline;
  color: #c00418;
  padding: 5px 5px 5px 15px;
  background: transparent url("../images/icon-arrow-next.svg") center center
    no-repeat;
  background-position-x: 0;
}

.btn.btn-cta-next:hover {
  color: #2a2c33;
  background-image: url("../images/icon-arrow-next-hover.svg");
}

.btn.btn-reset {
  font-family: "DINProRegular", "Arial", sans-serif;
  font-weight: normal;
  color: #c00418;
  background-color: transparent;
  border: none;
  text-decoration: underline;
}

.btn.btn-reset:hover,
.btn.btn-reset:focus {
  color: #2a2c33;
  border: none;
}

.btn.btn-fullwidth {
  width: 100%;
}

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

.btn-group {
  padding: 20px 0 30px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.btn-group .btn {
  margin: 0 0 20px 0;
}

@media (min-width: 768px) {
  .btn-group {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .btn-group .btn {
    margin: 0;
  }
  .btn-group .btn:not(:last-child) {
    margin: 0 40px 0 0;
  }
}

.btn-group.btn-group-centered {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (min-width: 768px) {
  .btn-group.btn-group-centered .btn {
    margin: 0 10px 0 10px;
  }
}

.btn-group.btn-group-right {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.btn-group.btn-group-right .btn {
  margin: 10px 0;
  width: 100%;
}

@media (min-width: 768px) {
  .btn-group.btn-group-right {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: column;
    -ms-flex-align: column;
    align-items: column;
  }
  .btn-group.btn-group-right .btn {
    margin: 0 10px 0 10px;
    width: auto;
  }
}

.btn-group.btn-group-blocked {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media (min-width: 420px) {
  .btn-group.btn-group-blocked {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

@media (max-width: 420px) {
  .btn-group.btn-group-blocked .btn {
    margin-right: 0;
    width: 100%;
  }
}

.btn-group.btn-group-simple {
  display: block;
}

.btn-group.btn-group-top-more-space {
  padding-top: 40px;
}

.btn-group-profile-data-special {
  padding: 0 0 20px 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (min-width: 992px) {
  .btn-group-profile-data-special {
    padding: 40px 0 30px 0;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}

@media (max-width: 991.98px) {
  .btn-group-profile-data-special .btn-secondary {
    text-indent: -9999999999px;
    width: 30px;
    max-width: 30px;
    height: 30px;
    border-radius: 7px;
    background: #2a2c33 url("../images/icon-plus-white.svg") center center
      no-repeat;
    padding: 0;
  }
}

@media (min-width: 992px) {
  .btn-group-profile-data-special p {
    visibility: hidden;
  }
}

.btn-switch {
  display: inline-block;
  width: 66px;
  height: 37px;
  cursor: pointer;
  background: transparent url("../images/icon-switch-off.svg") center center
    no-repeat;
}

.btn-switch.active {
  background-image: url("../images/icon-switch-on.svg");
}

@media (max-width: 767.98px) {
  .form-box-immosearch .input-holder {
    margin-bottom: 0;
  }
}

.form-box-immosearch .input-holder.text,
.form-box-immosearch .input-holder.select,
.form-box-immosearch .input-holder.number {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.form-box-immosearch .input-holder.text label,
.form-box-immosearch .input-holder.select label,
.form-box-immosearch .input-holder.number label {
  margin-bottom: 8px;
  font-weight: bold;
}

@media (max-width: 767.98px) {
  .form-box-immosearch .input-holder.text label.hide-label-on-mobile,
  .form-box-immosearch .input-holder.select label.hide-label-on-mobile,
  .form-box-immosearch .input-holder.number label.hide-label-on-mobile {
    display: none;
  }
}

.form-box-immosearch .input-holder.number .wrapper-half-inputs {
  -webkit-box-shadow: 0px 5px 5px 0 rgba(30, 31, 29, 0.1);
  box-shadow: 0px 5px 5px 0 rgba(30, 31, 29, 0.1);
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.form-box-immosearch .input-holder.number .wrapper-half-inputs span {
  background-color: #fff;
  border-right: 1px solid #3c3c3b;
  font-size: 14px;
  padding: 0 20px;
  width: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 50px;
}

@media (min-width: 1200px) {
  .form-box-immosearch .input-holder.number .wrapper-half-inputs span {
    height: 35px;
  }
}

.form-box-immosearch .input-holder.number .wrapper-half-inputs .input-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  width: 100%;
  height: 50px;
}

@media (min-width: 1200px) {
  .form-box-immosearch .input-holder.number .wrapper-half-inputs .input-group {
    height: 35px;
  }
}

.form-box-immosearch
  .input-holder.number
  .wrapper-half-inputs
  .input-group
  input[type="text"] {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.form-box-immosearch
  .input-holder.number
  .wrapper-half-inputs
  .input-group
  .input-group-addon {
  background-color: #fff;
}

.form-box-immosearch
  .input-holder.number
  .wrapper-half-inputs
  .input-group
  .input-group-addon
  a {
  width: 40px;
  height: 25px;
}

@media (min-width: 1200px) {
  .form-box-immosearch
    .input-holder.number
    .wrapper-half-inputs
    .input-group
    .input-group-addon
    a {
    height: 17px;
  }
}

.form-box-immosearch
  .input-holder.number
  .wrapper-half-inputs
  .input-group
  .input-group-addon
  a
  i {
  color: #000;
  width: 30px !important;
  margin-top: -15px;
}

@media (min-width: 1200px) {
  .form-box-immosearch
    .input-holder.number
    .wrapper-half-inputs
    .input-group
    .input-group-addon
    a
    i {
    margin-top: -12px;
  }
}

.form-box-immosearch
  .input-holder.number
  .wrapper-half-inputs
  .input-group
  .input-group-addon
  a:hover
  i {
  color: #c00418;
}

.form-box-immosearch input[type="text"],
.form-box-immosearch input[type="email"],
.form-box-immosearch input[type="password"],
.form-box-immosearch input[type="date"],
.form-box-immosearch input[type="tel"],
.form-box-immosearch input[type="number"],
.form-box-immosearch input[type="checkbox"] + label::before,
.form-box-immosearch select,
.form-box-immosearch textarea {
  border-color: #fff !important;
}

.form-box-footer .input-holder.email {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.form-box-footer .input-holder.email input[type="email"] {
  height: 38px;
}

.form-box-footer .input-holder.email input[type="submit"] {
  font-size: 0;
  background: #3c3c3b url("../images/icon-arrow-right-white.svg") center center
    no-repeat;
  background-size: 13px 20px;
  width: 38px;
  height: 38px;
  margin: 0;
}

.form-box-footer .input-holder.email input[type="submit"]:hover {
  background-color: #c00418;
}

.form-box-small,
.form-box-anfrage {
  max-width: 100%;
  margin: 6px 0;
}

@media (min-width: 768px) {
  .form-box-small,
  .form-box-anfrage {
    margin: 8px 0;
    max-width: 80%;
  }
}

@media (min-width: 992px) {
  .form-box-small,
  .form-box-anfrage {
    margin: 9px 0;
    max-width: 65%;
  }
}

@media (min-width: 1200px) {
  .form-box-small,
  .form-box-anfrage {
    margin: 10px 0;
    max-width: 55%;
  }
}

.form-box-small .input-holder {
  margin: 2px 0;
}

@media (min-width: 768px) {
  .form-box-small .input-holder {
    margin: 3px 0;
  }
}

@media (min-width: 992px) {
  .form-box-small .input-holder {
    margin: 4px 0;
  }
}

@media (min-width: 1200px) {
  .form-box-small .input-holder {
    margin: 5px 0;
  }
}

.form-box-small input[type="text"],
.form-box-small input[type="email"],
.form-box-small input[type="password"],
.form-box-small input[type="date"],
.form-box-small input[type="tel"],
.form-box-small select,
.form-box-small textarea {
  border-color: #fff;
}

.input-holder {
  /***margin: 10px 0 0 0;***/
  margin: 0;
}

@media (min-width: 1200px) {
  .input-holder {
    /***margin: 10px 0 0 0;***/
    margin: 0;
  }
}

div#search-filter .input-holder {
  margin: 10px 0 0 0;
}

@media (min-width: 1200px) {
  div#search-filter .input-holder {
    margin: 10px 0 0 0;
  }
}

.input-holder br {
  display: none;
  visibility: hidden;
}

.input-holder.text,
.input-holder.textarea,
.input-holder.email,
.input-holder.password,
.input-holder.select,
.input-holder.tel,
.input-holder.date,
.input-holder.linktext,
.input-holder.text p,
.input-holder.textarea p,
.input-holder.email p,
.input-holder.password p,
.input-holder.select p,
.input-holder.tel p,
.input-holder.date p,
.input-holder.linktext p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
}

@media screen and (min-width: 1200px) {
  .input-holder.text,
  .input-holder.textarea,
  .input-holder.email,
  .input-holder.password,
  .input-holder.select,
  .input-holder.tel,
  .input-holder.date,
  .input-holder.linktext,
  .input-holder.text p,
  .input-holder.textarea p,
  .input-holder.email p,
  .input-holder.password p,
  .input-holder.select p,
  .input-holder.tel p,
  .input-holder.date p,
  .input-holder.linktext p {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

.input-holder.text label,
.input-holder.textarea label,
.input-holder.email label,
.input-holder.password label,
.input-holder.select label,
.input-holder.tel label,
.input-holder.date label,
.input-holder.linktext label {
  display: block;
  color: #000;
  text-align: left;
  margin: 8px 0 4px 0;
}

@media screen and (min-width: 768px) {
  .input-holder.text label,
  .input-holder.textarea label,
  .input-holder.email label,
  .input-holder.password label,
  .input-holder.select label,
  .input-holder.tel label,
  .input-holder.date label,
  .input-holder.linktext label {
    margin: 6px 0 4px 0;
  }
}

@media screen and (min-width: 1200px) {
  .input-holder.text label,
  .input-holder.textarea label,
  .input-holder.email label,
  .input-holder.password label,
  .input-holder.select label,
  .input-holder.tel label,
  .input-holder.date label,
  .input-holder.linktext label {
    margin: 5px 0 4px 0;
    min-width: 110px;
  }
}

.input-holder.text.disabled label,
.input-holder.textarea.disabled label,
.input-holder.email.disabled label,
.input-holder.password.disabled label,
.input-holder.select.disabled label,
.input-holder.tel.disabled label,
.input-holder.date.disabled label,
.input-holder.linktext.disabled label {
  color: #828693;
}

.input-holder.mandatory-hint {
  margin: 30px 0 0 0;
}

@media screen and (min-width: 1200px) {
  .input-holder.mandatory-hint {
    margin: 20px 0 0 140px !important;
  }
}

.input-holder.checkbox {
  margin: 30px 0 0 0;
}

@media screen and (min-width: 1200px) {
  .input-holder.checkbox {
    margin: 20px 0 0 0;
  }
}

.input-holder.checkbox label,
.input-holder.checkbox span.wpcf7-list-item-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  text-align: left;
  cursor: pointer;
}

.input-holder.checkbox input[type="checkbox"] {
  width: 0;
  height: 0;
  position: absolute;
  z-index: 00000;
  margin: 20px 0 0 4px;
  z-index: 0;
}

.input-holder.checkbox input[type="checkbox"] + label::before,
.input-holder.checkbox input[type="checkbox"] + span::before {
  width: 24px;
  height: 24px;
  display: block;
  content: "";
  margin: 4px 14px 0 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border: solid 1px #3c3c3b;
  background-color: #fff;
  -webkit-box-shadow: 0px 5px 5px 0 rgba(30, 31, 29, 0.1);
  box-shadow: 0px 5px 5px 0 rgba(30, 31, 29, 0.1);
  z-index: 2;
}

@media screen and (min-width: 1200px) {
  .input-holder.checkbox input[type="checkbox"] + label::before,
  .input-holder.checkbox input[type="checkbox"] + span::before {
    margin-top: 0;
  }
}

.input-holder.checkbox input[type="checkbox"]:checked + label::before,
.input-holder.checkbox input[type="checkbox"]:checked + span::before {
  background: #c00418 url("../images/icon-check-white.svg") no-repeat center
    center;
}

.input-holder.radio label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.input-holder.radio input[type="radio"] {
  display: none;
}

.input-holder.radio input[type="radio"] + label::before {
  width: 13px;
  height: 13px;
  border: 1px solid #c00418;
  border-radius: 7px;
  display: block;
  content: "";
  margin-right: 10px;
}

.input-holder.radio input[type="radio"]:checked + label::before {
  border: solid 1px #c00418;
  background: #c00418;
}

.input-holder.buttons {
  margin: 30px 0 0 0;
}

@media screen and (min-width: 1200px) {
  .input-holder.buttons {
    margin: 20px 0 0 0;
  }
}

@media screen and (max-width: 1199.98px) {
  .input-holder.buttons input {
    width: 100%;
  }
}

@media screen and (min-width: 1200px) {
  .input-holder.indentantion-left {
    margin-left: 110px;
  }
}

.input-holder.linktext p {
  text-align: left;
  font-weight: bold;
}

.input-holder.less-margin {
  margin: 12px 0;
}

.input-holder.extra-margin-top {
  margin-top: 35px;
}

@media (max-width: 767.98px) {
  .input-holder.linebreak-on-mobile span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="date"],
input[type="tel"],
input[type="number"],
select,
textarea {
  width: 100%;
  -webkit-box-shadow: 0px 5px 5px 0 rgba(30, 31, 29, 0.1);
  box-shadow: 0px 5px 5px 0 rgba(30, 31, 29, 0.1);
  background-color: #fff;
  color: #000;
  border: 1px solid #3c3c3b;
  outline: none;
  padding: 9px 14px 8px 14px;
}

@media screen and (min-width: 1200px) {
  input[type="text"],
  input[type="email"],
  input[type="password"],
  input[type="date"],
  input[type="tel"],
  input[type="number"],
  select,
  textarea {
    padding: 5px 14px 6px 14px;
  }
}

select {
  background: #fff url("../images/icon-selectbox.png") center right no-repeat;
  background-position-x: calc(100% - 18px);
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #000;
}

select option {
  color: #000;
}

select.filter {
  background-color: #ededed;
  border: none;
}

select:invalid,
select option[value=""] {
  color: #666;
}

input[type="date"] {
  cursor: pointer;
}

input[type="date"]:disabled {
  color: #828693;
  cursor: default;
}

input[type="submit"] {
  margin-top: 8px;
  white-space: normal;
  word-break: break-word;
}

::-webkit-input-placeholder {
  color: #828693;
  font-weight: normal;
}

:-ms-input-placeholder {
  color: #828693;
  font-weight: normal;
}

::-ms-input-placeholder {
  color: #828693;
  font-weight: normal;
}

::placeholder {
  color: #828693;
  font-weight: normal;
}

span.mandatory {
  color: #c00418;
  padding-left: 3px;
}

/* Finanzierungsrechner */
.financing-example-label {
  width: 100%;
  padding-right: 14%;
  text-align: center;
}

@media screen and (min-width: 992px) {
  .financing-example-label {
    text-align: left;
    padding: 0;
    width: 60%;
  }
}

.financing-example-label p {
  margin: 0;
}

.financing-example-input-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  width: 100%;
  -webkit-box-shadow: 0px 5px 5px 0 rgba(30, 31, 29, 0.1);
  box-shadow: 0px 5px 5px 0 rgba(30, 31, 29, 0.1);
  border: 1px solid #3c3c3b;
  padding: 9px 14px 8px 14px;
  margin: 10px 0 20px 0;
}

@media screen and (min-width: 992px) {
  .financing-example-input-wrapper {
    margin: 10px 0;
  }
}

.financing-example-input-wrapper input[type="text"].financing-example {
  text-align: center;
  font-weight: bold;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 0;
}

.financing-example-input-wrapper span {
  color: #828693;
  font-weight: normal;
  width: 20%;
  text-align: right;
}

.error-msg {
  display: none;
  color: red;
  padding-bottom: 10px;
  margin-left: 0;
}

@media screen and (min-width: 992px) {
  .error-msg {
    margin-left: 50%;
  }
}

.checkbox-group-box .checkbox-group-box-label p {
  font-weight: bold;
  text-align: left;
  margin: 20px 0 12px 0;
}

@media screen and (min-width: 768px) {
  .checkbox-group-box .checkbox-group-box-label p {
    margin: 16px 0 8px 0;
  }
}

.checkbox-group-box .checkbox-group-box-checkboxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 10px;
}

@media screen and (min-width: 768px) {
  .checkbox-group-box .checkbox-group-box-checkboxes {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

@media screen and (min-width: 992px) {
  .checkbox-group-box .checkbox-group-box-checkboxes {
    margin-right: 40%;
  }
}

@media screen and (min-width: 768px) {
  .checkbox-group-box .checkbox-group-box-checkboxes .input-holder {
    width: 25%;
    margin: 0 !important;
  }
}

@media screen and (min-width: 768px) {
  .checkbox-group-box .checkbox-group-box-checkboxes .input-holder label {
    font-size: 15px;
  }
}

@media screen and (min-width: 768px) {
  .checkbox-group-box
    .checkbox-group-box-checkboxes
    .input-holder
    label::before {
    width: 22px !important;
    height: 22px !important;
    margin: 0px 5px 0 0 !important;
  }
}

.checkbox-group-box .checkbox-group-box-checkboxes .input-holder.checkbox {
  margin: 0 35px 10px 0;
}

.checkbox-group-box
  .checkbox-group-box-checkboxes
  .input-holder.checkbox
  input[type="checkbox"] {
  display: none;
}

#jetztanfragen h3 {
  margin: 2.5rem 0 1.5rem 0;
  font-family: "UtopiaItalic", sans-serif;
}

/* CF7 Overrides... */
.wpcf7-list-item {
  margin: 0;
}

.wpcf7-form-control-wrap {
  width: 100%;
}

.wpcf7 form.sent .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
  background-color: #fff;
  margin: 10px 0 0 0;
}

#footer-wrapper-top .wpcf7 .ajax-loader {
  position: absolute;
  margin: 45px 0 0 0;
}

a.datenschutz-link {
  display: inline-block;
  top: -2px;
  position: relative;
  padding-left: 38px;
  text-align: left;
}

a.datenschutz-link:hover,
a.datenschutz-link:active,
a.datenschutz-link:visited {
  color: #c00418;
}

a.datenschutz-link-box {
  display: inline !important;
  top: -2px;
  position: relative;
  text-align: left;
}

a.datenschutz-link-box:hover,
a.datenschutz-link-box:active,
a.datenschutz-link-box:visited {
  color: #c00418;
}

.mc4wp-error {
  border: 1px solid red;
  padding: 8px 10px 8px 10px;
  margin-top: 20px;
  background-color: #fff;
  color: red;
}

.mc4wp-error p {
  margin: 0;
}

.mc4wp-success {
  border: 1px solid green;
  padding: 8px 10px 8px 10px;
  margin-top: 20px;
  background-color: #fff;
  color: green;
}

.mc4wp-success p {
  margin: 0;
}

.mc4wp-notice {
  border: 1px solid black;
  padding: 8px 10px 8px 10px;
  margin-top: 20px;
  background-color: yellow;
  color: black;
}

.mc4wp-notice p {
  margin: 0;
}

.textbox > h2.centered {
  text-align: center;
}

.textbox .row img {
  width: 100%;
  height: auto;
}

/*TBA*/
.teaserbox {
  min-height: 340px;
}

.teaserbox.text,
.teaserbox.formular {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 60px 30px;
  text-align: center;
  background-color: #ededed;
  color: #000;
}

@media screen and (min-width: 768px) {
  .teaserbox.text,
  .teaserbox.formular {
    padding: 20px 30px;
  }
}

.teaserbox.text.black,
.teaserbox.formular.black {
  background-color: #3c3c3b;
  color: #fff;
}

.teaserbox.text.black {
  align-items: flex-start;
  text-align: left;
}

.teaserbox.text.white,
.teaserbox.formular.white {
  background-color: #fff;
  color: #000;
}

.teaserbox.text.white {
  align-items: flex-start;
  text-align: left;
}

.teaserbox.text.white p {
  text-align: left;
}

.teaserbox.text.white p::before {
  font-size: 18px;
  display: block;
  margin: 10px 0 20px;
  text-align: center;
  color: grey;
}

.teaserbox.text.ci,
.teaserbox.formular.ci {
  background-color: #c00418;
  color: #fff;
}

.teaserbox.text.ci p a,
.teaserbox.formular.ci p a {
  color: #fff;
  text-decoration: none;
}

.teaserbox.text.ci p a:hover,
.teaserbox.formular.ci p a:hover {
  text-decoration: underline;
}

.teaserbox.text h2,
.teaserbox.formular h2 {
  font-family: "UtopiaItalic", "Arial", sans-serif;
  margin: 0;
}

.teaserbox.text h3,
.teaserbox.formular h3 {
  font-family: "UtopiaItalic", "Arial", sans-serif;
  margin: 0;
}

/***
.teaserbox.text h3::before, .teaserbox.formular h3::before {
  content: '\2014\A';
  font-size: 18px;
  white-space: pre;
  display: block;
  margin: 10px 0 20px;
  text-align: center;
}
***/

.teaserbox.text div.grey-seperator-line {
  background-color: #fff;
  height: 1px;
  width: 100%;
  margin-top: 20px;
}
.teaserbox.text.white div.grey-seperator-line {
  background-color: #ededed;
}

.teaserbox.text p,
.teaserbox.formular p {
  margin: 0 0 5px 0;
  font-family: "DINProRegular", sans-serif;
}

.teaserbox.text p:first-of-type,
.teaserbox.formular p:first-of-type {
  margin-top: 20px;
}

.teaserbox.text p:last-child,
.teaserbox.formular p:last-child {
  margin-bottom: 0;
}

.teaserbox.image {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.teaserbox.image h2 {
  border-top: 4px solid #000;
  margin: 35px 0 0 0;
  padding: 13px 0 0 30px;
  display: inline-block;
  /**text-transform: uppercase;**/
  font-size: 25px;
}

.teaserbox.formular {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-color: transparent;
}

.teaserbox.formular h2 {
  margin: 0;
}

.teaserbox.formular h3::before {
  font-size: 14px;
  margin: 0;
}

.teaserbox a {
  display: block;
}

a {
  text-decoration: none;
}

a .teaserbox {
  visibility: visible;
  -webkit-transition: all 0.1s linear;
  transition: all 0.1s linear;
}

a .teaserbox.image h2 {
  font-family: "UtopiaItalic", sans-serif;
  color: #000;
}

a:hover {
  text-decoration: none;
}

a:hover .teaserbox {
  -webkit-box-shadow: 0 15px 20px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 15px 20px 0 rgba(0, 0, 0, 0.2);
}

a:hover .teaserbox.image h2 {
  border-top-color: #c00418;
  color: #c00418;
}

.teaserbox.blog {
  background-color: #ededed;
  min-height: auto;
}

.teaserbox.blog a {
  color: #000;
  text-decoration: none;
}

.teaserbox.blog a:hover {
  color: #000;
  text-decoration: none;
}

.teaserbox.blog a .blog-image {
  background-size: cover;
  background-repeat: no-repeat;
  display: block;
  height: 305px;
}

@media screen and (min-width: 768px) {
  .teaserbox.blog a .blog-image {
    height: 205px;
  }
}

.teaserbox.blog a .blog-image-2 {
  height: 385px;
  max-height: 385px;
  display: block;
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .teaserbox.blog a .blog-image-2 {
    height: 285px;
    max-height: 285px;
  }
}

.teaserbox.blog a .blog-image-2 img {
  height: 385px;
  max-height: 385px;
  width: auto;
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .teaserbox.blog a .blog-image-2 img {
    height: 285px;
    max-height: 285px;
  }
}

.teaserbox.blog a .blog-infos {
  display: block;
  padding: 20px 17px;
}

.teaserbox.blog a .blog-infos h3 {
  margin-top: 0;
}

.teaserbox.blog a .blog-infos p span {
  color: #c00418;
}

.teaserbox.press {
  background-color: #ededed;
}

.teaserbox.press a {
  color: #000;
  text-decoration: none;
}

.teaserbox.press a:hover {
  color: #000;
  text-decoration: none;
}

.teaserbox.press a .blog-image img {
  width: 100%;
  height: auto;
}

.teaserbox.press a .blog-infos {
  display: block;
  padding: 20px 17px;
}

.teaserbox.press a .blog-infos h3 {
  margin-top: 0;
  word-wrap: break-word;
}

.teaserbox.press a .blog-infos p span {
  color: #c00418;
}
/*TBE*/

@media screen and (max-width: 767.98px) {
  .container.full-width-on-mobile {
    max-height: auto;
    padding-left: 0;
    padding-right: 0;
  }
}

.container .imagebox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 300px;
}

@media screen and (min-width: 768px) {
  .container .imagebox {
    height: 250px;
  }
}

@media screen and (min-width: 992px) {
  .container .imagebox {
    height: 350px;
  }
}

.container .imagebox img {
  height: 300px;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .container .imagebox img {
    height: 250px;
  }
}

@media screen and (min-width: 992px) {
  .container .imagebox img {
    height: 350px;
  }
}

.projects-navigation ul {
  list-style-type: none;
  margin: 0;
  padding: 0 !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .projects-navigation ul {
    margin: 0 50px;
  }
}

@media screen and (min-width: 992px) {
  .projects-navigation ul {
    margin: 0 100px;
  }
}

@media screen and (min-width: 1200px) {
  .projects-navigation ul {
    margin: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

.projects-navigation ul li {
  margin: 0;
  width: 100%;
  position: relative;
}

@media screen and (min-width: 1200px) {
  .projects-navigation ul li {
    margin: 0 30px 0 0;
    width: auto;
  }
}

.projects-navigation ul li::before {
  content: "" !important;
  margin: 0 !important;
  width: auto !important;
  display: block !important;
}

.projects-navigation ul li.current_page_item a {
  color: #c00418;
}

.projects-navigation ul li a {
  text-decoration: none;
  color: #c00418;
  /**
  background-color: #3c3c3b;
  display: inline-block;
  padding: 6px 20px;
  **/
  display: inline-block;
  width: 100%;
  font-size: 20px;
  font-family: "UtopiaBold", sans-serif;
}

@media screen and (max-width: 419.98px) {
  .projects-navigation ul li a {
    word-wrap: anywhere;
  }
}

@media screen and (min-width: 1200px) {
  .projects-navigation ul li a {
    width: auto;
    font-size: 16px;
  }
}

.projects-navigation ul li a:hover {
  /**background-color: #c00418;**/
  color: #c00418;
  text-decoration: none;
}

.projects-navigation ul li select,
.projects-navigation ul li select option {
  font-family: "UtopiaBold" !important;
}

.projects-navigation ul li select {
  width: 100%;
  -webkit-box-shadow: none;
  box-shadow: none;
  font-size: 20px;
  padding: 8px 13px;
}

@media screen and (max-width: 419.98px) {
  .projects-navigation ul li select {
    word-wrap: anywhere;
  }
}

@media screen and (min-width: 1200px) {
  .projects-navigation ul li select {
    font-size: 16px;
    padding: 10px;
  }
}

@media screen and (min-width: 1200px) {
  .projects-navigation ul li select.ort {
    width: 200px;
  }
}

@media screen and (min-width: 1200px) {
  .projects-navigation ul li select.plz {
    width: 100px;
  }
}

.projects-navigation ul.sub-navigation li a {
  background-color: #6d6d6d;
}

@media screen and (min-width: 1200px) {
  .projects-navigation ul.sub-navigation li a {
    font-size: 14px;
  }
}

.projects-navigation ul.sub-navigation li a:hover {
  background-color: #c00418;
}

.projects-navigation ul.sub-navigation li.current_page_item a {
  background-color: #c00418;
}

@media screen and (min-width: 1200px) {
  .projects-navigation.short ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

@media screen and (min-width: 1200px) {
  .projects-navigation.short ul li {
    margin-right: 10px;
  }
}

.projectbox-wrapper {
  position: relative;
}

@media screen and (min-width: 768px) {
  .projectbox-wrapper {
    margin: 0 -10px;
  }
}

.projectbox-wrapper .projectbox {
  position: relative;
  float: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 0 0 22px 0;
  width: 100%;
  min-height: 450px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .projectbox-wrapper .projectbox {
    margin: 0 1.5% 22px 1.5%;
    width: 47%;
    min-height: 350px;
  }
}

@media screen and (min-width: 992px) {
  .projectbox-wrapper .projectbox {
    margin: 0 1% 22px 1%;
    width: 31.333%;
    min-height: 350px;
  }
}

.projectbox-wrapper .projectbox.short {
  min-height: 415px;
}

@media screen and (min-width: 768px) {
  .projectbox-wrapper .projectbox.short {
    min-height: 312px;
  }
}

@media screen and (min-width: 992px) {
  .projectbox-wrapper .projectbox.short {
    min-height: 312px;
  }
}

.projectbox-wrapper .projectbox a {
  text-decoration: none;
}

.projectbox-wrapper .projectbox .project-image {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 335px;
}

@media screen and (min-width: 768px) {
  .projectbox-wrapper .projectbox .project-image {
    height: 235px;
  }
}

.projectbox-wrapper .projectbox h4 {
  margin: 0;
  padding: 8px 20px;
  font-size: 16px;
  text-transform: uppercase;
  color: #000;
  background-color: #ededed;
  font-family: "UtopiaBold", sans-serif;
}

div.project-description-separator {
  display: block;
  height: 1px;
  background-color: #fff;
}

.projectbox-wrapper .projectbox h5 {
  font-family: "UtopiaItalic", sans-serif;
  font-size: 20px;
  color: #000;
  background-color: #ededed;
  margin: 0;
  padding: 16px 0 0 0;
}

.projectbox-wrapper .projectbox p {
  margin: 0;
  padding: 10px 20px 14px 20px;
  font-size: 16px;
  line-height: 20px;
  color: #000;
  background-color: #ededed;
}

.projectbox-wrapper .projectbox p span.address-street {
  font-family: "UtopiaItalic", sans-serif;
}
.projectbox-wrapper .projectbox p span.address-city {
  font-family: "UtopiaRegular", sans-serif;
}

.projectbox-wrapper .projectbox.text {
  background-color: #ededed;
  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;
}

.projectbox-wrapper .projectbox.text p {
  background-color: #ededed;
  color: #000;
  text-align: center;
  text-transform: none;
  padding: 0 30px;
  font-weight: bold;
  font-size: 1.2em;
}

.projectbox-wrapper .projectbox .pb_overlay {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: visibility 0s, opacity 0.5s linear;
  transition: visibility 0s, opacity 0.5s linear;
  position: absolute;
  color: #fff;
  height: 335px !important;
}

@media screen and (min-width: 768px) {
  .projectbox-wrapper .projectbox .pb_overlay {
    height: 235px !important;
  }
}

.projectbox-wrapper .projectbox .pb_overlay .pb_overlay_content {
  text-align: center;
  padding-top: 90px;
}

@media screen and (min-width: 768px) {
  .projectbox-wrapper .projectbox .pb_overlay .pb_overlay_content {
    padding-top: 40px;
  }
}

.projectbox-wrapper .projectbox .pb_overlay .pb_overlay_content h3 {
  font-family: "UtopiaRegular", "Arial", sans-serif;
  font-size: 1em;
  text-transform: uppercase;
}

.projectbox-wrapper .projectbox .pb_overlay .pb_overlay_content p {
  font-family: "UtopiaRegular", "Arial", sans-serif;
  background-color: transparent;
  text-transform: none;
  padding: 20px 0 0 0;
}

.projectbox-wrapper
  .projectbox
  .pb_overlay
  .pb_overlay_content.pb_overlay_team {
  text-align: left;
  padding: 22px;
}

.projectbox-wrapper
  .projectbox
  .pb_overlay
  .pb_overlay_content.pb_overlay_team
  p {
  text-transform: none;
  padding: 0;
}

.projectbox-wrapper
  .projectbox
  .pb_overlay
  .pb_overlay_content.pb_overlay_team
  p
  a {
  color: #fff;
}

.projectbox-wrapper
  .projectbox
  .pb_overlay
  .pb_overlay_content.pb_overlay_team
  p
  a:hover {
  color: #fff;
}

.projectbox-wrapper
  .projectbox
  .pb_overlay
  .pb_overlay_content.pb_overlay_team
  p
  a.mail {
  text-decoration: underline;
}

.projectbox-wrapper
  .projectbox
  .pb_overlay
  .pb_overlay_content.pb_overlay_team
  p.rolle {
  text-transform: uppercase;
  padding-bottom: 4px;
}

.projectbox-wrapper
  .projectbox
  .pb_overlay
  .pb_overlay_content.pb_overlay_team
  p.description {
  line-height: 1.2em;
  padding-bottom: 12px;
}

.projectbox-wrapper .projectbox:hover .pb_overlay {
  visibility: visible;
  opacity: 1;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8);
}

.projectbox-wrapper .projectbox:hover .pb_overlay .pb_overlay_content h3,
.projectbox-wrapper .projectbox:hover .pb_overlay .pb_overlay_content p {
  color: #000;
}

h2.project-subtitle {
  text-align: center;
  font-family: "UtopiaItalic", sans-serif;
  margin: 0 0 10px 0;
  padding: 0 0 30px 0;
  border-bottom: 1px solid #000;
}

h2.project-subtitle span {
  display: block;
  font-weight: normal;
  font-family: "UtopiaRegular", sans-serif;
  margin: 0;
  padding: 10px 0 0 0;
}

h2.project-subtitle-uppercase {
  text-transform: uppercase;
}

.project-page-keydata {
  padding-top: 10px;
  text-align: center;
}

.project-page-keydata p {
  font-size: 25px;
  font-family: "UtopiaRegular", sans-serif;
}

@media screen and (min-width: 1200px) {
  .project-page-keydata p {
    font-size: 25px;
  }
}

.project-page-keydata p span {
  display: block;
  font-size: 18px;
}

@media screen and (min-width: 1200px) {
  .project-page-keydata p span {
    font-size: 16px;
	white-space: nowrap;
  }
}

p.project-toggle-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0;
}

p.project-toggle-title button.project-toggle-info-btn {
  cursor: pointer;
  outline: 0;
  border: none;
  height: 18px;
  width: 32px;
  background: transparent url("../images/arrow-toggle-open.png") center center
    no-repeat;
}

p.project-toggle-title button.project-toggle-info-btn.open {
  background-image: url("../images/arrow-toggle-close.png");
}

#project-toggle-info-area {
  height: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: visibility 0s linear 200ms, opacity 200ms;
  transition: visibility 0s linear 200ms, opacity 200ms;
}

#project-toggle-info-area.open {
  padding-top: 30px;
  height: auto;
  visibility: visible;
  opacity: 1;
  -webkit-transition: visibility 0s linear 0s, opacity 500ms;
  transition: visibility 0s linear 0s, opacity 500ms;
}

.imagescroller section .slick-prev {
  background: transparent url("../images/arrow-scroll-left.png") center center
    no-repeat !important;
  background-size: 22px 39px !important;
  width: 22px !important;
  height: 39px !important;
  left: 0 !important;
}

.imagescroller section .slick-next {
  background: transparent url("../images/arrow-scroll-right.png") center center
    no-repeat !important;
  background-size: 22px 39px !important;
  width: 22px !important;
  height: 39px !important;
  right: 0 !important;
}

.imagescroller section .slick-list {
  margin: 0 30px;
}

.imagescroller section .slick-slide {
  padding: 20px !important;
}

.imagescroller section.slider-object-images .slick-slide {
  max-height: 240px !important;
}

.slick-slider .slick-track {
  line-height: 0 !important;
}

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

.slick-slide {
  height: auto;
}

.slick-initialized .slick-slide {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.slick-slider .slick-track .slick-slide > div {
  width: 100% !important;
}

.project-list-filter span.irs-with-grid {
  width: 90%;
  margin: 10px 0;
}

@media screen and (min-width: 992px) {
  .project-list-filter span.irs-with-grid {
    width: 70%;
    margin: 10px 0;
  }
}

@media screen and (min-width: 1200px) {
  .project-list-filter span.irs-with-grid {
    width: 18%;
    margin: 0;
  }
}

@media screen and (min-width: 1200px) {
  .project-list-filter label.extra-space {
    margin-right: 10px;
  }
}

@media screen and (min-width: 1200px) {
  .project-list-filter label.extra-space-left {
    margin-right: 10px;
    margin-left: 20px;
  }
}

@media screen and (min-width: 1200px) {
  .project-list-filter select.extra-space-left {
    margin-left: 20px;
  }
}

.project-list-filter select {
  background-position-x: calc(100% - 12px);
  width: auto;
  padding-right: 30px;
  padding-left: 6px;
  font-size: 14px;
}

@media screen and (max-width: 1199.98px) {
  .project-list-filter select {
    margin-top: 20px;
    width: 80%;
    margin: 10px 10%;
  }
}

.project-list-filter .input-holder.checkbox {
  margin-top: 0;
}

@media screen and (max-width: 1199.98px) {
  .project-list-filter .input-holder.checkbox {
    margin: 20px;
  }
}

.project-list-filter .irs-grid {
  display: none !important;
}

.project-list-filter .irs--round .irs-handle {
  border: 5px solid #fff;
  background-color: #c00418;
}

.project-list-filter .irs--round .irs-handle:hover {
  background-color: #c00418;
  cursor: pointer;
}

.project-list-filter .irs--round .irs-from,
.project-list-filter .irs--round .irs-to,
.project-list-filter .irs--round .irs-single,
.project-list-filter .irs--round .irs-bar {
  background-color: #c00418;
}

.project-list-filter .irs--round .irs-from::before,
.project-list-filter .irs--round .irs-to::before,
.project-list-filter .irs--round .irs-single::before {
  border-top-color: #c00418;
}

.project-list-result .list-desktop {
  display: block;
}

@media screen and (max-width: 1199.98px) {
  .project-list-result .list-desktop {
    display: none;
  }
}

.project-list-result .list-desktop table {
  width: 100%;
  border-collapse: collapse;
}

.project-list-result .list-desktop table thead {
  background-color: #ededed;
  font-weight: bold;
}

.project-list-result .list-desktop table thead tr th {
  padding: 10px 0;
}

.project-list-result .list-desktop table thead tr th .sort-info {
  display: inline-block;
  width: 8px;
  height: 12px;
  margin-left: 6px;
}

.project-list-result .list-desktop table thead tr th.sortable {
  cursor: pointer;
}

.project-list-result
  .list-desktop
  table
  thead
  tr
  th.tablesorter-headerUnSorted
  .sort-info {
  background: transparent url("../images/arrow-sort-unsorted.svg") center center
    no-repeat;
}

.project-list-result
  .list-desktop
  table
  thead
  tr
  th.tablesorter-headerAsc
  .sort-info {
  background: transparent url("../images/arrow-sort-asc.svg") center center
    no-repeat;
}

.project-list-result
  .list-desktop
  table
  thead
  tr
  th.tablesorter-headerDesc
  .sort-info {
  background: transparent url("../images/arrow-sort-desc.svg") center center
    no-repeat;
}

.project-list-result .list-desktop table tbody tr {
  height: 100%;
}

.project-list-result .list-desktop table tbody tr td {
  padding: 8px 0;
}

.project-list-result .list-desktop table tbody tr td:first-child {
  padding-left: 8px;
}

.project-list-result .list-desktop table tbody tr td a {
  color: #000;
  text-decoration: none;
  display: table;
  width: 100%;
  height: 100%;
}

.project-list-result .list-desktop table tbody tr td a span {
  display: table-cell;
  vertical-align: middle;
}

.project-list-result .list-desktop table tbody tr td a span img {
  max-height: 120px;
  max-width: 130px;
  width: auto;
}

.project-list-result .list-desktop table tbody tr td a:focus {
  outline: 0;
}

.project-list-result .list-desktop table tbody tr:nth-child(even) {
  background-color: #ededed;
}

.project-list-result .list-desktop table tbody tr:hover:not(.unavailable) {
  outline: none;
  background-color: #c00418 !important;
}

.project-list-result .list-desktop table tbody tr:hover:not(.unavailable) a {
  color: #fff;
}

.project-list-result .list-desktop table tbody tr.unavailable td {
  color: #666;
}

.project-list-result .list-desktop table tbody tr.unavailable td img {
  max-height: 120px;
  width: auto;
}

.project-list-result .list-desktop table tbody tr.initially-unvisible {
  display: none;
}

.project-list-result .list-mobile {
  display: block;
}

@media screen and (min-width: 1200px) {
  .project-list-result .list-mobile {
    display: none;
  }
}

.project-list-result .list-mobile .project-row {
  padding: 10px 20px;
  font-size: 16px;
}

@media screen and (min-width: 576px) {
  .project-list-result .list-mobile .project-row {
    font-size: 18px;
  }
}

@media screen and (min-width: 768px) {
  .project-list-result .list-mobile .project-row {
    font-size: 20px;
  }
}

@media screen and (min-width: 992px) {
  .project-list-result .list-mobile .project-row {
    font-size: 22px;
  }
}

.project-list-result .list-mobile .project-row:hover:not(.unavailable) {
  outline: none;
  background-color: #c00418 !important;
}

.project-list-result .list-mobile .project-row:hover:not(.unavailable) a,
.project-list-result .list-mobile .project-row:hover:not(.unavailable) .price {
  color: #fff;
}

.project-list-result .list-mobile .project-row:nth-child(even) {
  background-color: #ededed;
}

.project-list-result .list-mobile .project-row > span,
.project-list-result .list-mobile .project-row > a > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.project-list-result .list-mobile .project-row > span.immosearch,
.project-list-result .list-mobile .project-row > a > span.immosearch {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.project-list-result .list-mobile .project-row a {
  color: #000;
  text-decoration: none;
}

.project-list-result .list-mobile .project-row span.project-col-1 {
  width: 33%;
  padding-right: 20px;
}

@media screen and (min-width: 576px) {
  .project-list-result .list-mobile .project-row span.project-col-1 {
    width: 34%;
  }
}

@media screen and (min-width: 768px) {
  .project-list-result .list-mobile .project-row span.project-col-1 {
    width: 20%;
  }
}

@media screen and (min-width: 992px) {
  .project-list-result .list-mobile .project-row span.project-col-1 {
    width: 15%;
  }
}

.project-list-result .list-mobile .project-row span.project-col-1.immosearch {
  width: 140px;
}

.project-list-result .list-mobile .project-row span.project-col-2 {
  width: 50%;
}

@media screen and (min-width: 576px) {
  .project-list-result .list-mobile .project-row span.project-col-2 {
    width: 70%;
  }
}

@media screen and (min-width: 768px) {
  .project-list-result .list-mobile .project-row span.project-col-2 {
    width: 65%;
  }
}

@media screen and (min-width: 992px) {
  .project-list-result .list-mobile .project-row span.project-col-2 {
    width: 70%;
  }
}

.project-list-result .list-mobile .project-row span.project-col-2 > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media screen and (min-width: 576px) {
  .project-list-result .list-mobile .project-row span.project-col-2 > span {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

@media screen and (min-width: 576px) {
  .project-list-result
    .list-mobile
    .project-row
    span.project-col-2
    > span
    span:not(:first-child)::before {
    content: "|";
    padding: 0 10px;
  }
}

.project-list-result
  .list-mobile
  .project-row
  span.project-col-2
  > span
  span.price {
  color: #c00418;
}

.project-list-result .list-mobile .project-row span.project-col-2.immosearch {
  width: auto;
}

.project-list-result
  .list-mobile
  .project-row:nth-child(even)
  span.project-col-2
  > span
  span:not(:first-child)::before {
  color: #fff;
}

.project-list-result
  .list-mobile
  .project-row:nth-child(odd)
  span.project-col-2
  > span
  span:not(:first-child)::before {
  color: #ededed;
}

.project-list-result .list-mobile .project-row span.project-col-3 {
  padding-left: 20px;
  text-align: right;
  width: 17%;
}

@media screen and (min-width: 576px) {
  .project-list-result .list-mobile .project-row span.project-col-3 {
    width: 16%;
  }
}

@media screen and (min-width: 768px) {
  .project-list-result .list-mobile .project-row span.project-col-3 {
    width: 15%;
  }
}

@media screen and (min-width: 992px) {
  .project-list-result .list-mobile .project-row span.project-col-3 {
    width: 15%;
  }
}

.project-list-result .list-mobile .project-row.initially-unvisible {
  display: none;
}

.project-list-result p.show-all-results {
  margin: 40px 0 0 0;
  padding: 0;
  text-align: center;
}

.project-list-result p.show-all-results a {
  font-weight: bold;
  text-decoration: none;
  padding-right: 30px;
  color: #c00418;
  background: transparent url("../images/arrow-show-all-results.svg") center
    right no-repeat;
}

.project-list-result p.show-all-results a:hover {
  color: #3c3c3b;
  background-image: url("../images/arrow-show-all-results-hover.svg");
}

.pager-navi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 70px 0;
}

@media screen and (min-width: 1200px) {
  .pager-navi {
    margin: 50px 0;
  }
}

.pager-navi span,
.pager-navi a {
  margin: 0 15px;
}

.pager-navi span.current {
  color: #c00418;
}

.pager-navi span.prev,
.pager-navi span.next {
  color: #a2a2a2;
}

.pager-navi a {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.pager-navi a:hover {
  color: #c00418;
}

/*------------------------------------*\
    #EXTERNALS
\*------------------------------------*/
.slick-slide {
  padding: 0 !important;
}

.slick-dots {
  bottom: 15px !important;
}

.slick-dots li button::before {
  font-size: 30px !important;
}

.slick-dotted.slick-slider {
  margin-bottom: 0 !important;
}

@media screen and (min-width: 768px) {
  .slick-dotted.slick-slider {
    margin-bottom: -8px !important;
  }
}

.slick-dots li button::before {
  opacity: 0.5 !important;
  color: #c00418 !important;
  font-size: 50px !important;
}

.slick-dots li.slick-active button::before {
  opacity: 1 !important;
}
/*# sourceMappingURL=style.css.map */

#BorlabsCookieBox ._brlbs-box-plus ._brlbs-legal {
  display: block !important;
}

#BorlabsCookieBox .cookie-logo {
  height: auto !important;
  max-width: 110px !important;
}

div.title-full-width {
  font-family: "UtopiaRegular", "Arial", sans-serif;
  color: #000000;
  font-size: 4vw;
  text-align: center;
  text-transform: uppercase;
  line-height: 1em;
  padding: 20px 0;
}


@media screen and (max-width: 768px) {
	div.title-full-width {
		font-size: 8vw;
	}
}

h2.project-interested {
  font-family: "UtopiaItalic", "Arial", sans-serif;
}

.environ-box-wrapper {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

@media screen and (min-width: 768px) {
  .environ-box-wrapper {
    margin: 0 -10px;
  }
}

.environ-box-wrapper .environ-box {
  position: relative;
  float: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 0 0 22px 0;
  width: 100%;
  min-height: auto;
  background-color: #e2e2e2;
  padding: 30px 20px;
  text-align: center;
  justify-content: center;
}
/***/
@media screen and (min-width: 768px) {
  .environ-box-wrapper .environ-box {
    margin: 0 1.5% 22px 1.5%;
    width: 47%;
    min-height: 350px;
    padding: 20px;
  }
}
/***/
@media screen and (min-width: 1200px) {
  .environ-box-wrapper .environ-box {
    margin: 0 1% 22px 1%;
    width: 31.333%;
    min-height: 300px;
  }
}

div.environ-box h3 {
  font-family: "UtopiaRegular", sans-serif;
  margin-top: 0;
}
div.environ-box p {
  margin-bottom: 0;
  font-size: 16px;
}

a.jump2 {
  font-weight: bold;
}
a.jump2:hover {
  text-decoration: underline;
}
a.jump2:visited {
  color: #c00418;
}

a.toplist-toggle-button-open,
a.toplist-toggle-button-close {
  font-family: "UtopiaItalic", sans-serif;
  position: relative;
  display: inline-block;
  cursor: pointer;
  text-align: center;
  text-transform: uppercase;
  padding-right: 30px;
}
@media screen and (min-width: 1200px) {
  a.toplist-toggle-button-open,
  a.toplist-toggle-button-close {
    font-size: 1.2rem;
  }
}

a.toplist-toggle-button-open:hover,
a.toplist-toggle-button-close:hover {
  text-decoration: underline;
}
a.toplist-toggle-button-open {
  background: transparent url("../images/arrow-toplist-toggle-closed.svg")
    center right no-repeat;
}
a.toplist-toggle-button-close {
  background: transparent url("../images/arrow-toplist-toggle-open.svg") center
    right no-repeat;
}

/*#nav-menu .rightside ul.sub-menu {
  position: absolute;
  right: 0;
}*/

#nav-menu li.wpml-ls-item:last-child {
  position: absolute;
  right: 0;
}

#nav-menu li.wpml-ls-item:nth-last-child(2) {
  position: absolute;
  right: 50px;
}

#nav-menu li.wpml-ls-item:not(:last-child)::after {
  content: "|";
  padding: 0 10px;
  color: #c00418;
  position: absolute;
  right: -25%;
  top: 50%;
  transform: translateY(-50%);
}

li.wpml-ls-current-language a::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 3px;
  bottom: 0;
  left: 0;
  background-color: #c00418;
  transform: scaleX(1) !important;
  transition: transform 0.3s ease;
}

/***
a.toplist-toggle-button:after {
	content: '';
	width: 36px;
	height: 24px;
	position: absolute;
	background-image: url("../images/arrow-show-all-results.svg");
	background-repeat: no-repeat;
	background-position-y: center;
	background-position-x: right;
}
***/

.projects-navigation.team ul li a:hover,
.projects-navigation.team ul li.current_page_item a {
  background-color: #f0f0f0;
}

.projects-navigation.team ul {
  margin: 0;
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 992px) {
  .projects-navigation.team ul {
    flex-direction: row;
  }
}

@media screen and (min-width: 1200px) {
  .projects-navigation.short ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

.projects-navigation.team ul li a img {
  height: 110px;
  width: auto;
}

.projects-navigation.team ul li:first-child a img {
  height: 75px;
  margin: 18px 28px;
}

.projects-navigation.team ul li a {
  text-decoration: none;
  text-align: center;
  background-color: #fff;
  display: inline-block;
  padding: 6px 20px;
  width: 100%;
}

@media screen and (min-width: 1200px) {
  .projects-navigation.team ul li a {
    padding: 10px;
    width: auto;
  }
}

.projectbox-wrapper.team
  .projectbox
  .pb_overlay
  .pb_overlay_content.pb_overlay_team
  p {
  color: #000;
}

.projectbox-wrapper.team .projectbox:hover .pb_overlay {
  background-color: rgba(255, 255, 255, 0.8);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.projectbox-wrapper
  .projectbox
  .pb_overlay
  .pb_overlay_content.pb_overlay_team {
  text-align: center;
  padding: 22px;
}

.projectbox-wrapper.team
  .projectbox
  .pb_overlay
  .pb_overlay_content.pb_overlay_team
  p
  a,
.projectbox-wrapper.team
  .projectbox
  .pb_overlay
  .pb_overlay_content.pb_overlay_team
  p
  a:hover {
  color: #000;
}

header.show-sticky {
    z-index: 999999 !important;
}

#stickybuttons {
    z-index:999998 !important;
}

.error404 {
	.block {
		.container {
			.textbox {
				display: flex;
				justify-content: center;
				align-items: center;
				flex-direction: column;
				
				figure {
					width: 250px;
					height: 100%;
				}
				
				.textbox-inner {
					.page-links {
						display: flex;
						justify-content:center;
						align-items: center;
						gap: 20px;
						margin-top: 30px;
					}
				}
			}
		}
	}
}

.project-info-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	border-bottom: 1px solid #000000;
	margin-bottom: 20px;
	
	h1 {
		margin-bottom: 10px;
	}
	
	h2 {
		margin-top: 0;
		margin-bottom: 45px;
	}
}

.tops-stiege-info {
	.slick-list {
		overflow: visible;
	}
	
	.slick-track {
		width: 100% !important;
		
		.slick-slide {
			max-height: 100% !important;
			width: 100% !important;
			
			.hi {
				max-height: 450px;
				overflow: hidden;
			}
		}
	}
}

h1.centered {
	text-align: center;
}

h2.border-bottom {
	border-bottom: 1px solid #000000;
	margin: 0;
	padding-bottom: 35px;
}

.read-more-text {
	max-height: 250px;
	overflow: hidden;
	position: relative;
	height: 100%;
	--fadeText: 130px;
	
	&:after {
		content: '';
		width: 100%;
		height: var(--fadeText);
		background: linear-gradient(to top, #ffffff, #ffffff00);
		display: block;
		position: absolute;
		bottom: 0;
	}
}

.read-more-btn {
	margin-top: 20px;
}

.contact-float-btn {
	position: fixed;
	top: 12%;
	right: 0;
	z-index: 99999;
	display: flex;
	gap: 8px;
	
	img {
		width: 20px;
		height: 20px;
	}
}


.project-title-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid #000;
	
	.project-subtitle {
		text-align: left;
		font-size: 25px;
		font-weight: 700;
		margin: 0;
		display: flex;
		gap: 10px;
		flex-wrap: wrap;
		
		.mobile-project-divider {
			width: 100%;
			display: none;
		}
		
		p {
			margin-bottom: 0;
		}
	}
	
	.project-subtitle-type {
		margin: 10px 0 0 0;
	}
	
	.provision-info {
		background-color: #ebebeb;
		padding: 5px 20px;
		max-width: 350px;
		display: flex;
		align-items: center;
		justify-content: center;
		flex-direction: column;
		
		.red-txt {
			color: #c00418;
		}
		
		.first {
			font-size: 27px;
			text-transform: uppercase;
			font-family: "UtopiaBold", sans-serif;
		}
		
		p {
			margin-bottom: 0;
			text-align: center;
		}
	}
}

.mobile-provision-info {
	display: none;
}

.mobile-promocode-txt {
	display: none;
}

@media screen and (max-width: 768px) {
	.project-title-wrapper {
		
		.project-subtitle {
			.divider {
				display: none;
			}
			
			.mobile-project-divider {
				margin: 2px 0;
			}
		}
		
		.project-subtitle-type {
			font-size: 18px;
			margin-bottom: 10px;
		}
		
		.provision-info {
			display: none;
		}
	}
	
	.mobile-provision-info {
			background-color: #ebebeb;
			padding: 5px 20px;
			display: flex;
			align-items: center;
			justify-content: center;
			flex-direction: column;
			margin-top: 50px;

			.red-txt {
				color: #c00418;
			}

			.first {
				font-size: 30px;
				text-transform: uppercase;
				font-family: "UtopiaBold", sans-serif;
			}

			p {
				margin-bottom: 0;
				text-align: center;
			}
		}
	
	.mobile-promocode-txt {
		display: block;
		width: 100%;
		text-align: center;
		font-family: "UtopiaBold", sans-serif;
		font-size: 25px;
		border-bottom: 1px solid #000;
		padding: 10px 0;
	}
	
}

.project-page-keydata {
	.project-keydata-inner {
		display: grid;
		grid-template-columns: .6fr .3fr;
		justify-content: space-between;
		align-items: center;
		
		.promocode-txt {
			max-width: 310px;
			width: 100%;
			text-align: center;
			margin-top: -10px;
			font-family: "UtopiaBold", sans-serif;
			font-size: 20px;
		}
		
		.project-space {
			display: flex;
			justify-content: center;
			align-items: center;
			flex-wrap: wrap;
			gap: 3rem;
		}
	}
}

@media screen and (max-width: 1024px) {
	.project-page-keydata {
		.project-keydata-inner {
			.project-space {
				gap: 10px;
			}
		}
	}
}

@media screen and (max-width: 768px) {
	.project-page-keydata {
		
		.project-keydata-inner {
			grid-template-columns: 1fr;
			.promocode-txt {
				display: none;
			}
		}
	}
}

.fs-content {
	display: flex;
	flex-direction: column;
	gap: 10px;
	position: absolute;
	z-index: 10;
	bottom: 5%;
	height: 65vh !important;
	
	h1 {
		font-size: 70px;
		font-family: "UtopiaBold", sans-serif;
		color: #ffffff;
		margin: 0;
	}
	
	h2 {
		color: #ffffff;
		font-size: 45px;
		margin: 0;
	}
	
	.hero_text {
		height: auto !important;
		padding: 30px 0 4px 0;
		
		p {
			color: #ffffff;
			font-size: 25px;
			font-weight: medium;
			line-height: 1.5;
			margin-bottom: 0px;
		}
	}
	
	.btn {
		width: fit-content;
      padding: 20px 20px 23px 20px;
	}
	
	.hero_text_2 {
		margin-top: 100px;
		height: auto !important;
		display: none;
		p {
			color: #ffffff;
			font-size: 20px;
			font-style: italic;
			font-weight: medium;
			margin-bottom: 30px;
		}
		
	}
	
	.features-container {
			display: grid;
			grid-template-columns: .3fr .4fr;
			height: auto !important;
			margin-top: 130px;
			h1 {
				font-size: 70px;
			}
			span {
				color: #ffffff;
				font-size: 20px;
				font-weight: medium;
				margin-bottom: 30px;
				display: flex;
				align-items: center;
				gap: 10px;
				line-height: 1.1;
				
				img {
					width: 18px;
					height: 18px !important;
					object-fit: contain !important;
				}
			}
		}
}

@media screen and (min-width: 2560px) {
	.fs-content {
		height: 62vh !important;
		gap: 30px;
		
		h1 {
			font-size: 110px;
		}
		
		h2 {
			font-size: 75px;
		}
		
		.hero_text {
			p {
				font-size: 40px;
			}
		}
		
		.btn {
			font-size: 30px;
			padding: 40px;
		}
		
		.features-container {
			grid-template-columns: .5fr .5fr;
			
			span {
				font-size: 30px;
				
				img {
					width: 30px;
					height: 31px !important;
				}
			}
		}
	}
}

@media screen and (min-width: 1920px) {
	.fs-content {
		height: 60vh !important;
		
		h1 {
			font-size: 90px;
		}
		
		h2 {
			font-size: 55px;
		}
		
		.hero_text {
			p {
				font-size: 35px;
			}
		}
		
		.btn {
			font-size: 25px;
			padding: 30px;
		}
		
		.features-container {
			grid-template-columns: .4fr .4fr;
			
			span {
				font-size: 25px;
				
				img {
					width: 25px;
					height: 26px !important;
				}
			}
		}
	}
}

@media screen and (max-width: 1024px) {
	.fs-content {
		height: 69vh !important;
		
		.features-container {
			grid-template-columns: .4fr .4fr;
		}
	}
}

.scroll-down-hero {
	position: absolute;
	bottom: 20px;
	left: 50%;
	cursor: pointer;
	z-index: 10;
}

.header.slider {
	.hero-img-overlay {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgb(0,0,0);
		background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.45) 35%, rgba(255,255,255,0) 100%);
		z-index: 5;
	}
	
	.slick-dots {
		li {
			button {
				&:before {
					color: #fff !important;
				}
			}
		}
		
	}
	
	.slick-list {
		height: 81vh !important;
		
		.slick-track {
			height: 100%;
			
			.slick-slide > div > div {
				display: flex !important;
				justify-content: center;
			}
			
			div {
				height: 100%;
			}
			
			img {
				height: 100%;
				object-fit: cover;
			}
		}
	}
}

@media screen and (max-width: 500px) {
	.header.slider {
		
		.fs-content {
			h1 {
				font-size: 35px;
			}
			
			h2 {
				font-size: 27px;
			}
			
			.hero_text {
				p {
					font-size: 20px;
				}
			}
			
			a {
				margin-top: 0;
				font-size: 16px;
			}
			
			.hero_text_2 {
				margin-top: 50px;
				
				p {
					font-size: 16px;
				}
			}
			
			.features-container {
				grid-template-columns: 1fr;
				margin-top: 80px;
				
				span {
					font-size: 16px;
					
					img {
						width: 16px;
						height: 17px !important;
					}
				}
			}
		}
	}
}

.home-slider {
	.imagescroller {
	.slick-prev {
		left: 0 !important;
		width: 25px !important;
	}
	
	.slick-next {
		right: 0 !important;
		width: 25px !important;
	}
	
	.slick-list {
		margin: 0 30px;
	
		.slick-track {
			gap: 30px;
			
			img {
				  height: 235px;
				  object-fit: cover;
				}
			
			.project-info {
				background: #ededed50;
				text-align: center;
				padding: 5px 0 15px 0;
				
				p {
					text-transform: uppercase;
					color: #000000;
					line-height: 1 !important;
					padding: 5px 0;
					border-bottom: 1px solid #ffffff;
					font-family: "UtopiaRegular", sans-serif;
					font-size: 17px;
				}
				
				h3 {
					color: #000000;
					margin: 0;
					font-style: italic;
				}
				
			}
		}
	}
}
}


@media screen and (max-width: 500px) {
	.home-slider {
		.imagescroller {
		.slick-prev {
			top: 90%;
			left: 30px;
		}
		
		.slick-next {
			top: 90%;
			right: 30px;
		}
		
		.slick-list {
			margin: 0;
			
			.slick-track {
				gap: 0;
				
				h3 {
					font-size: 20px;
				}
			}
		}
	}
	}
	
}

/* Related Filter Pages Grid */
.related-filter-pages-grid {
    margin-top: 30px;
    margin-bottom: 60px;
}

.related-filter-pages-grid .row {
    row-gap: 0;
}

@media (max-width: 991px) {
    .related-filter-pages-grid .row {
        row-gap: 30px;
    }
}

@media (max-width: 767px) {
    .related-filter-pages-grid .row {
        row-gap: 20px;
    }
}

.filter-page-card {
    background: #f8f8f8;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
    height: 100%;
}

.filter-page-card:hover {
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.filter-page-link {
    display: block;
    padding: 30px;
    text-decoration: none;
    color: inherit;
    position: relative;
    height: 100%;
}

.filter-page-link h3 {
    color: #c00418;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
  margin-top: 0px;
    line-height: 1.3;
}

.filter-page-description {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 0;
}

.filter-page-arrow {
    position: absolute;
    bottom: 30px;
    right: 30px;
    color: #c00418;
    font-size: 24px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.filter-page-card:hover .filter-page-arrow {
    transform: translateX(5px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .filter-page-link {
        padding: 20px;
    }
    
    .filter-page-link h3 {
        font-size: 18px;
    }
    
    .filter-page-arrow {
        bottom: 20px;
        right: 20px;
    }
}