/*
 *
 * Fundaments */
/**
 *
 * BOXING: GENERAL
 *
 */
html {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
}

body {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
}

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

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

/**
 *
 * BOXING: VARS
 *
 */
/**
 *
 * COLORS: VARS
 *
 */
/**
 *
 * TYPOGRAPHY: VARS
 *
 */
/**
 *
 * COLORS: FUNCTIONS
 *
 */
/**
 *
 * COLORS: GENERAL
 *
 */
html {
  background: #b72a1e;
}

body {
  background: #ffffff;
  color: #333333;
}

::selection {
  background: #b72a1e;
  color: #ffffff;
}

a {
  color: #b72a1e;
}

/*
 *
 * Font colors */
.fc--neutrals-0 {
  color: #ffffff !important;
  fill: #ffffff !important;
}

.fc--primary-1 {
  color: #b72a1e !important;
  fill: #b72a1e !important;
}

.fc--secondary-1 {
  color: #f8e080 !important;
  fill: #f8e080 !important;
}

.fc--light-1 {
  color: #f0f0e4 !important;
  fill: #f0f0e4 !important;
}

.fc--dark-1 {
  color: #f0f0e4 !important;
  fill: #202020 !important;
}

/*
 *
 * Background colors */
.bgc--neutrals-0 {
  background: #ffffff;
}

.bgc--primary-1 {
  background: #b72a1e;
}

.bgc--secondary-1 {
  background: #f8e080;
}

.bgc--light-1 {
  background: #f0f0e4;
}

.bgc--dark-1 {
  background: #f0f0e4;
}

.bgc--light-texture {
  background-color: #f0f0e4;
  background-image: url("/resources/graphics/static/bg--texture.jpg");
  background-repeat: repeat;
  background-size: 500px;
}

/**
 *
 * TYPOGRAPHY: GENERAL
 *
 */
html {
  font-size: 16px;
  text-size-adjust: 100%;
}

body {
  font-family: "Montserrat", Helvetica, Arial, serif;
  font-size: 16px;
  line-height: 1.7;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizelegibility;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

p {
  margin: 0 0 15px;
}
p:last-child {
  margin-bottom: 0;
}

@font-face {
  font-family: "specialBd";
  font-weight: 700;
  src: url("/resources/fonts/static/FntBd.woff2") format("woff2"), url("/resources/fonts/static/FntBd.woff") format("woff");
}
/*
 *
 * Media Queries
 *
 */
/*
 * Layout 01 & Layout 02 - - - 0px - 767px */
@media all and (max-width: 767px) {
  body {
    font-size: 15px;
  }
}
/*
 * Layout 01 - - - 0px - 419px */
/*
 * Layout 02 - - - 420px - 767px */
/*
 * Layout 03 - - - 768px - 1023px */
/*
 * Layout 04 - - - 1024px - 1179px */
/*
 * Layout 05 - - - 1180px - ... */
/*
 *
 * Atoms */
.card {
  display: flex;
  width: 100%;
  position: relative;
  flex-direction: column;
}
.card .card__link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  text-indent: -9999px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 100;
}
.card .card__visual {
  flex-grow: 0;
  width: 100%;
  height: 0;
  padding-top: 110%;
  overflow: hidden;
  border-radius: 8px;
  position: relative;
}
.card .card__visual img,
.card .card__visual picture,
.card .card__visual video {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
  object-position: center center;
}
.card .card__content {
  flex-grow: 1;
  width: 100%;
  padding: 20px 10px;
  font-size: 12.8px;
  line-height: 1.8;
  text-align: left;
}
.card .card__actions {
  display: flex;
  justify-content: flex-start;
  flex-grow: 0;
  width: 100%;
  padding: 0px 10px;
}

/*
 *
 * Media Queries
 *
 */
/*
 * Layout 01 & Layout 02 - - - 0px - 767px */
/*
 * Layout 01 - - - 0px - 419px */
@media all and (max-width: 419px) {
  .card .card__visual {
    padding-top: 100%;
  }
}
/*
 * Layout 02 - - - 420px - 767px */
/*
 * Layout 03 - - - 768px - 1023px */
/*
 * Layout 04 - - - 1024px - 1179px */
/*
 * Layout 05 - - - 1180px - ... */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  overflow: hidden;
  background: #b72a1e;
  border: 2px solid #b72a1e;
  border-radius: 40px;
  color: #ffffff;
  fill: #ffffff;
  font-family: "Montserrat", Helvetica, Arial, serif;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 600;
  text-align: center;
  text-transform: none;
  text-decoration: none;
  position: relative;
  transition: all 150ms;
  gap: 8px;
  appearance: none;
  outline: none;
  cursor: pointer;
}
.btn span {
  display: block;
  position: relative;
  z-index: 2;
}
.btn i {
  font-style: normal;
}
.btn svg {
  display: block;
  flex-shrink: 0;
  flex-grow: 0;
  width: 14px;
  height: 14px;
}
.btn:hover {
  background: #cc3326;
  border-color: #cc3326;
  color: #ffffff;
  fill: #ffffff;
}
.btn:active, .btn:focus {
  outline: none;
}
.btn {
  /*
  *
  * Define sizes */
}
.btn.size-s {
  padding: 11px 25px;
  font-size: 12.8px;
}
.btn {
  /*
  *
  * Define variations */
}
.btn.type-full {
  display: flex;
  width: 100%;
}
.btn.type-bordered {
  background: transparent;
  color: #b72a1e;
}
.btn.type-bordered:hover {
  background-color: #cc3326;
  border-color: #cc3326;
  color: #f0f0e4;
  fill: #f0f0e4;
}
.btn.type-disabled {
  filter: grayscale(1);
  opacity: 0.25;
  pointer-events: none;
}
.btn {
  /*
  *
  * Define color variations */
}
.btn.color-dark-1 {
  background-color: #202020;
  border-color: #202020;
}
.btn.color-dark-1.type-bordered {
  background: transparent;
  color: #202020;
}
.btn.color-dark-1:hover, .btn.color-dark-1.type-bordered:hover {
  background-color: #b72a1e;
  border-color: #b72a1e;
  color: #ffffff;
  fill: #ffffff;
}
.btn.color-neutrals-0 {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #b72a1e;
  fill: #b72a1e;
}
.btn.color-neutrals-0.type-bordered {
  background: transparent;
  color: #ffffff;
}
.btn.color-neutrals-0:hover, .btn.color-neutrals-0.type-bordered:hover {
  background-color: #b72a1e;
  border-color: #b72a1e;
  color: #ffffff;
  fill: #ffffff;
}

/*
 *
 * Media Queries
 *
 */
/*
 * Layout 01 & Layout 02 - - - 0px - 767px */
@media all and (max-width: 767px) {
  .btn {
    display: flex;
    width: 100%;
    font-size: 14px;
  }
  .btn::after {
    display: none;
  }
}
/*
 * Layout 01 - - - 0px - 419px */
/*
 * Layout 02 - - - 420px - 767px */
/*
 * Layout 03 - - - 768px - 1023px */
/*
 * Layout 04 - - - 1024px - 1179px */
/*
 * Layout 05 - - - 1180px - ... */
.brand {
  width: 200px;
}
.brand a {
  display: block;
  text-decoration: none;
}
.brand svg,
.brand img {
  display: block;
  width: 100%;
  height: auto;
  fill: #b72a1e;
  transition: all 150ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

/*
 *
 * Media Queries
 *
 */
/*
 * Layout 01 & Layout 02 - - - 0px - 767px */
@media all and (max-width: 767px) {
  .brand {
    width: 148px;
  }
}
/*
  * Layout 01 & Layout 02 & Layout 03 - - - 0px - 1023px */
/*
  * Layout 01 - - - 0px - 419px */
/*
  * Layout 02 - - - 420px - 767px */
/*
  * Layout 03 - - - 768px - 1023px */
@media all and (min-width: 768px) and (max-width: 1023px) {
  .brand {
    width: 180px;
  }
}
/*
  * Layout 04 - - - 1024px - 1279px */
@media all and (min-width: 1024px) and (max-width: 1279px) {
  .brand {
    width: 200px;
  }
}
/*
  * Layout 05 - - - 1280px - ... */
.heading {
  padding: 0;
  margin: 0;
  font-family: "specialBd", Helvetica, Arial, serif;
  line-height: 1;
  font-weight: 700;
  /*
  *
  *
  *
  * Define sizes */
}
.heading.size-l {
  font-size: 55px;
  line-height: 0.95;
}
.heading.size-m {
  font-size: 50px;
}
.heading.size-s {
  font-size: 28px;
}
.heading.size-xs {
  font-size: 20px;
}
.heading {
  /*
  *
  *
  *
  * Define spacings */
}
.heading.spacing-xxs {
  margin: 0 0 5px;
}
.heading.spacing-xs {
  margin: 0 0 10px;
}
.heading.spacing-s {
  margin: 0 0 15px;
}
.heading.spacing-m {
  margin: 0 0 20px;
}
.heading.spacing-l {
  margin: 0 0 25px;
}
.heading.spacing-xl {
  margin: 0 0 30px;
}
.heading.spacing-xxl {
  margin: 0 0 35px;
}
.heading {
  /*
  *
  *
  *
  * Define variations */
}
.heading.font-main {
  font-family: "Montserrat", Helvetica, Arial, serif;
}
.heading.text-wide {
  font-family: "Montserrat", Helvetica, Arial, serif;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  opacity: 0.75;
}
.heading.text-spacing {
  letter-spacing: 3px;
}
.heading.text-upper {
  text-transform: uppercase;
}

/*
 *
 * Media Queries
 *
 */
/*
 * Layout 01 & Layout 02 - - - 0px - 767px */
/*
 * Layout 01 - - - 0px - 419px */
@media all and (max-width: 419px) {
  .heading.size-l {
    font-size: 39px;
  }
  .heading.size-m {
    font-size: 35px;
  }
  .heading.size-s {
    font-size: 23px;
  }
  .heading.size-xs {
    font-size: 18px;
  }
}
/*
 * Layout 02 - - - 420px - 767px */
@media all and (min-width: 420px) and (max-width: 767px) {
  .heading.size-l {
    font-size: 42px;
  }
  .heading.size-m {
    font-size: 37px;
  }
  .heading.size-s {
    font-size: 24px;
  }
  .heading.size-xs {
    font-size: 18px;
  }
}
/*
 * Layout 03 - - - 768px - 1023px */
@media all and (min-width: 768px) and (max-width: 1023px) {
  .heading.size-l {
    font-size: 47px;
  }
  .heading.size-m {
    font-size: 40px;
  }
  .heading.size-s {
    font-size: 25px;
  }
  .heading.size-xs {
    font-size: 18px;
  }
}
/*
 * Layout 04 - - - 1024px - 1179px */
@media all and (min-width: 1024px) and (max-width: 1279px) {
  .heading.size-l {
    font-size: 49px;
  }
  .heading.size-m {
    font-size: 44px;
  }
  .heading.size-s {
    font-size: 27px;
  }
  .heading.size-xs {
    font-size: 18px;
  }
}
/*
 * Layout 05 - - - 1180px - ... */
.offcanvas {
  display: flex;
  align-items: center;
  color: #202020;
  font-family: "Montserrat", Helvetica, Arial, serif;
  font-size: 16px;
  line-height: 1.2;
  text-decoration: none;
}
.offcanvas .offcanvas__text {
  display: block;
  margin: 0 10px 0 0;
  transition: all 150ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.offcanvas .offcanvas__symbol {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  flex-grow: 0;
  width: 40px;
  height: 40px;
  cursor: pointer;
  padding: 0;
  position: relative;
}
.offcanvas .offcanvas__symbol span {
  display: block;
  width: 23px;
  height: 1px;
  background-color: #202020;
  position: relative;
  transition: all 150ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -webkit-touch-callout: none;
}
.offcanvas .offcanvas__symbol span::before, .offcanvas .offcanvas__symbol span::after {
  content: "";
  width: 100%;
  height: 100%;
  background: #202020;
  position: absolute;
  right: 0;
  transition: transform 200ms;
}
.offcanvas .offcanvas__symbol span::before {
  width: 18px;
  transform: translate(0, -8px);
}
.offcanvas .offcanvas__symbol span::after {
  width: 28px;
  transform: translate(0, 8px);
}
.offcanvas:hover {
  color: #202020;
}
.offcanvas:hover .offcanvas__symbol span,
.offcanvas:hover .offcanvas__symbol span::before,
.offcanvas:hover .offcanvas__symbol span::after {
  background-color: #202020;
}
.offcanvas--is-open .offcanvas .offcanvas__symbol span {
  background-color: transparent !important;
}
.offcanvas--is-open .offcanvas .offcanvas__symbol span::before {
  width: 28px;
  transform: translate(0, 0) rotate(45deg);
}
.offcanvas--is-open .offcanvas .offcanvas__symbol span::after {
  width: 28px;
  transform: translate(0, 0) rotate(-45deg);
}

/*
 *
 * Media Queries
 *
 */
/*
 * CUSTOM Layout */
@media all and (width <= 450px) {
  .offcanvas .offcanvas__text {
    display: none;
  }
}
/*
 * Layout 04 - - - 1024px - 1179px */
/*
 * Layout 01 & Layout 02 - - - 0px - 767px */
/*
  * Layout 01 & Layout 02 & Layout 03 - - - 0px - 1023px */
/*
  * Layout 01 - - - 0px - 419px */
/*
  * Layout 02 - - - 420px - 767px */
/*
  * Layout 03 - - - 768px - 1023px */
/*
  * Layout 04 - - - 1024px - 1279px */
/*
  * Layout 05 - - - 1280px - ... */
.paragraph {
  /*
  *
  *
  *
  * Define sizes */
}
.paragraph.size-l {
  font-size: 18px;
}
.paragraph.size-s {
  font-size: 14px;
  line-height: 1.5;
}
.paragraph.size-xs {
  font-size: 12px;
  line-height: 1.2;
}
.paragraph {
  /*
  *
  *
  *
  * Define spacings */
}
.paragraph.spacing-0 {
  margin: 0;
}
.paragraph.spacing-xxs {
  margin: 0 0 5px;
}
.paragraph.spacing-xs {
  margin: 0 0 10px;
}
.paragraph.spacing-s {
  margin: 0 0 15px;
}
.paragraph.spacing-m {
  margin: 0 0 20px;
}
.paragraph.spacing-l {
  margin: 0 0 25px;
}
.paragraph.spacing-xl {
  margin: 0 0 30px;
}
.paragraph.spacing-xxl {
  margin: 0 0 35px;
}
.paragraph.spacing-xxxl {
  margin: 0 0 50px;
}
.paragraph {
  /*
  *
  *
  *
  * Define weights */
}
.paragraph.weight-300 {
  font-weight: 300;
}
.paragraph.weight-700 {
  font-weight: 700;
}
.paragraph.weight-900 {
  font-weight: 900;
}
.paragraph {
  /*
  *
  *
  *
  * Define variations */
}
.paragraph.text-upper {
  text-transform: uppercase;
}

/**
 *
 * SYMBOLS
 *
 */
.link {
  display: inline-flex;
  align-items: center;
  padding: 8px 0;
  background: none;
  border: none;
  border-radius: 0;
  color: #b72a1e;
  font-family: "specialBd", Helvetica, Arial, serif;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  cursor: pointer;
  appearance: none;
}
.link span {
  display: block;
}
.link::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #b72a1e;
  position: absolute;
  left: 0;
  bottom: 0;
  transform: scale3d(1, 1, 1) translate(0, 0);
  transform-origin: 0% 50%;
  transition: all 450ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.link:hover::before {
  transform: scale3d(1.1, 1, 1) translate(0, 0);
}
.link {
  /*
   *
   * Define sizes */
}
.link.size-s {
  font-size: 12.8px;
}
.link {
  /*
   *
   * Define color variations */
}
.link.color-dark-1 {
  color: #202020;
}
.link.color-dark-1::before {
  background: #202020;
}

/*
 *
 * Media Queries
 *
 */
/*
 * Layout 01 & Layout 02 - - - 0px - 767px */
@media all and (max-width: 767px) {
  .link {
    font-size: 14px;
  }
}
/*
 * Layout 01 - - - 0px - 419px */
/*
 * Layout 02 - - - 420px - 767px */
/*
 * Layout 03 - - - 768px - 1023px */
/*
 * Layout 03 - - - 1024px - 1179px */
/*
 * Layout 04 - - - 1180px - ... */
.actions {
  width: 100%;
  margin: 35px 0;
}
.actions:first-child {
  margin-top: 0;
}
.actions:last-child {
  margin-bottom: 0;
}
.actions .actions__inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -5px -16px;
}
.actions .actions__inner a {
  margin: 5px 16px;
}
.actions {
  /*
   *
   * Define alignments */
}
.actions.align-center .actions__inner {
  justify-content: center;
}
.actions.align-right .actions__inner {
  justify-content: flex-end;
}
.actions.align-limited .actions__inner {
  justify-content: center;
}
.actions {
  /*
   *
   * Parent alignments */
}
.limited .actions .actions__inner {
  justify-content: center;
}
.limited.align-left .actions .actions__inner {
  justify-content: flex-start;
}
.limited.align-leftcentered .actions .actions__inner {
  justify-content: flex-start;
}

/*
 *
 * Media Queries
 *
 */
/*
 * Layout 01 & Layout 02 - - - 0px - 767px */
@media all and (max-width: 767px) {
  .actions {
    margin: 20px 0;
  }
  .actions:first-child {
    margin-top: 0;
  }
  .actions:last-child {
    margin-bottom: 0;
  }
  .actions .actions__inner {
    justify-content: center;
  }
  .actions.align-limited .actions__inner {
    justify-content: center;
  }
  .limited .actions .actions__inner {
    justify-content: center;
  }
}
.offerBox {
  display: flex;
  justify-content: space-between;
  width: 100%;
  overflow: hidden;
  background: #f5f5eb;
  border-radius: 20px;
  flex-direction: column;
}
.bgc--light-1 .offerBox {
  background: #ffffff;
}
.offerBox .offerBox__label {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  flex-grow: 0;
  min-height: 42px;
  padding: 6px 0;
  background: #b72a1e;
  color: #ffffff;
  fill: #ffffff;
  font-family: "specialBd", Helvetica, Arial, serif;
  font-size: 15px;
  line-height: 1.1;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}
.offerBox .offerBox__label svg {
  display: block;
  width: 20px;
  height: 20px;
}
.offerBox .offerBox__label span {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  padding: 7px 10px;
}
.offerBox .offerBox__label.type-high {
  min-height: 70px;
  background: #b72a1e;
  color: #ffffff;
}
.offerBox .offerBox__label.type-medium {
  background: #202020;
  color: #202020;
  color: #f0f0e4;
  fill: #f0f0e4;
}
.offerBox .offerBox__label.type-low {
  background: #7f7f7f;
  color: #ffffff;
  fill: #ffffff;
}
.offerBox .offerBox__visual {
  flex-shrink: 0;
  flex-grow: 0;
  width: 100%;
  height: 170px;
  margin-top: -1px;
  overflow: hidden;
  position: relative;
}
.offerBox .offerBox__visual img {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
  object-position: center center;
}
.offerBox .offerBox__content {
  flex-shrink: 0;
  flex-grow: 1;
  padding: 35px 30px;
}
.offerBox .offerBox__actions {
  display: flex;
  align-content: space-between;
  justify-content: center;
  flex-wrap: wrap;
  flex-shrink: 0;
  flex-grow: 0;
  min-height: 150px;
  padding: 0 30px 35px;
  margin: 0;
  gap: 12px;
}
.offerBox .offerBox__roundup {
  width: 100%;
  margin: 0 0 8px;
  font-size: 12.8px;
  line-height: 1.4;
  text-align: left;
}

/*
 *
 * Media Queries
 *
 */
/*
 * Layout 01 & Layout 02 - - - 0px - 767px */
@media all and (max-width: 767px) {
  .offerBox .offerBox__visual {
    height: 120px;
  }
  .offerBox .offerBox__content {
    padding: 20px;
  }
  .offerBox .offerBox__actions {
    padding-left: 20px;
    padding-right: 20px;
  }
  .offerBox .offerBox__label.type-high {
    min-height: 58px;
  }
}
/*
 * Layout 01 - - - 0px - 419px */
@media all and (max-width: 419px) {
  .offerBox .offerBox__visual {
    height: 190px;
  }
}
/*
 * Layout 02 - - - 420px - 767px */
@media all and (min-width: 420px) and (max-width: 767px) {
  .offerBox .offerBox__visual {
    height: 190px;
  }
}
/*
 * Layout 03 - - - 768px - 1023px */
/*
 * Layout 04 - - - 1024px - 1179px */
@media all and (min-width: 1024px) and (max-width: 1279px) {
  .offerBox .offerBox__visual {
    height: 170px;
  }
  .offerBox .offerBox__label.type-high {
    min-height: 61px;
  }
}
/*
 * Layout 05 - - - 1180px - ... */
/*
 * Layout 05 - - - 1180px - ... */
@media all and (min-width: 1280px) and (width <= 1400px) {
  .offerBox .offerBox__label.type-high {
    min-height: 61px;
  }
}
.testimonial {
  display: flex;
  align-items: center;
  padding: 20px;
  background: #ffffff;
  border-radius: 20px;
  position: relative;
}
.testimonial .testimonial__visual {
  flex-shrink: 0;
  flex-grow: 0;
  width: 80px;
  height: 80px;
  overflow: hidden;
  border-radius: 50%;
  position: relative;
}
.testimonial .testimonial__visual img,
.testimonial .testimonial__visual picture {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
  object-position: center center;
}
.testimonial .testimonial__content {
  flex-grow: 1;
  padding: 0 20px 0 25px;
  font-size: 14px;
  line-height: 1.4;
}
.testimonial .testimonial__sign {
  padding: 10px 15px;
  color: #b72a1e;
  font-family: "specialBd", Helvetica, Arial, serif;
  font-size: 54px;
  line-height: 1;
  font-weight: 700;
  text-align: right;
  position: absolute;
  right: 0;
  top: 0;
}

/*
 *
 * Media Queries
 *
 */
/*
 * Layout 01 & Layout 02 - - - 0px - 767px */
@media all and (max-width: 767px) {
  .testimonial {
    align-items: flex-start;
    padding: 15px;
  }
  .testimonial .testimonial__content {
    padding-left: 15px;
  }
}
/*
 * Layout 01 - - - 0px - 419px */
/*
 * Layout 02 - - - 420px - 767px */
/*
 * Layout 03 - - - 768px - 1023px */
/*
 * Layout 04 - - - 1024px - 1179px */
/*
 * Layout 05 - - - 1180px - ... */
.extraLinks ul {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
.extraLinks li {
  margin: 0 0 0 10px;
  font-size: 12.8px;
  line-height: 1.2;
  font-weight: 500;
}
.extraLinks a {
  color: #ffffff;
  text-decoration: none;
}
.extraLinks a:hover {
  text-decoration: underline;
}

/*
 *
 * Media Queries
 *
 */
/*
 * Layout 01 & Layout 02 - - - 0px - 767px */
@media all and (max-width: 767px) {
  .extraLinks {
    width: 100%;
  }
  .extraLinks ul {
    justify-content: center;
    width: 100%;
  }
  .extraLinks a {
    color: #202020;
  }
}
/*
 * Layout 01 - - - 0px - 419px */
/*
 * Layout 02 - - - 420px - 767px */
/*
 * Layout 03 - - - 768px - 1023px */
/*
 * Layout 04 - - - 1024px - 1179px */
/*
 * Layout 05 - - - 1180px - ... */
.list {
  width: 100%;
  margin: 20px 0;
}
.list:first-child {
  margin-top: 0;
}
.list:last-child {
  margin-bottom: 0;
}
.list ul {
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
}
.list ul li {
  width: 100%;
  padding: 0 0 0 28px;
  margin: 15px 0 0;
  line-height: 1.5;
  position: relative;
}
.list ul li:first-child {
  margin-top: 0;
}
.list ul li::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background: #b72a1e;
  border-radius: 50%;
  position: absolute;
  left: 5px;
  top: 9px;
}
.list ol {
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: orderedlist;
}
.list ol li {
  width: 100%;
  padding: 0 0 0 28px;
  margin: 15px 0 0;
  line-height: 1.5;
  position: relative;
  counter-increment: orderedlist;
}
.list ol li:first-child {
  margin-top: 0;
}
.list ol li::before {
  content: counter(orderedlist) ". ";
  display: block;
  color: #b72a1e;
  font-family: "specialBd", Helvetica, Arial, serif;
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
  position: absolute;
  left: 0;
  top: 1px;
}

.visual {
  width: 100%;
  margin: 35px 0;
  overflow: hidden;
  border-radius: 20px;
  position: relative;
}
.visual:first-child {
  margin-top: 0;
}
.visual:last-child {
  margin-bottom: 0;
}
.visual img,
.visual picture {
  display: block;
  width: 100%;
}

.videoplayer {
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  margin: 35px 0;
  overflow: hidden;
  border-radius: 20px;
  position: relative;
}
.videoplayer:first-child {
  margin-top: 0;
}
.videoplayer:last-child {
  margin-bottom: 0;
}
.videoplayer iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

input[type=text],
input[type=email],
input[type=number],
input[type=date],
textarea {
  display: flex;
  width: 100%;
  height: 52px;
  padding: 10px 15px;
  background: #f5f5eb;
  border: 1px solid #f5f5eb;
  border-radius: 12px;
  color: #202020;
  font-family: "Montserrat", Helvetica, Arial, serif;
  font-size: 12px;
  line-height: 1.2;
  box-shadow: none;
  appearance: none;
}
.bgc--light-1 input[type=text],
.bgc--light-1 input[type=email],
.bgc--light-1 input[type=number],
.bgc--light-1 input[type=date],
.bgc--light-1 textarea {
  background-color: #ffffff;
  border: 1px solid #dbdbcc;
}
input[type=text]:focus, input[type=text]:active,
input[type=email]:focus,
input[type=email]:active,
input[type=number]:focus,
input[type=number]:active,
input[type=date]:focus,
input[type=date]:active,
textarea:focus,
textarea:active {
  outline: none;
  border-color: #999999;
}
.is-invalid input[type=text]:focus, .is-invalid input[type=text]:active,
.is-invalid input[type=email]:focus,
.is-invalid input[type=email]:active,
.is-invalid input[type=number]:focus,
.is-invalid input[type=number]:active,
.is-invalid input[type=date]:focus,
.is-invalid input[type=date]:active,
.is-invalid textarea:focus,
.is-invalid textarea:active {
  border-color: #d8393c;
}
.bgc--light-1 input[type=text],
.bgc--light-1 input[type=email],
.bgc--light-1 input[type=number],
.bgc--light-1 input[type=date],
.bgc--light-1 textarea {
  background: #ffffff;
  border-color: #ffffff;
}
.is-invalid input[type=text],
.is-invalid input[type=email],
.is-invalid input[type=number],
.is-invalid input[type=date],
.is-invalid textarea {
  background: #f0c6c6;
  border-color: #d8393c;
}

textarea {
  height: 150px;
  padding-top: 18px;
  padding-bottom: 18px;
}

::placeholder {
  letter-spacing: 1.5px;
  color: #b2b2b2;
  font-size: 10px;
  text-transform: uppercase;
}

.is-invalid ::placeholder {
  color: #d8393c;
}

.select {
  display: flex;
  overflow: hidden;
  background: transparent;
  background-color: #f5f5eb;
  background-size: auto 12px;
  border: 1px solid #f5f5eb;
  border-radius: 10px;
  position: relative;
  cursor: pointer;
}
.bgc--light-1 .select {
  background-color: #ffffff;
  border: 1px solid #dbdbcc;
}
.select select {
  width: 130%;
  height: 50px;
  padding: 5px 40px 5px 15px;
  background: transparent;
  border: none;
  border-radius: 0;
  color: #202020;
  font-family: "Montserrat", Helvetica, Arial, serif;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 400;
  appearance: none;
  cursor: pointer;
}
.select select:focus, .select select:active {
  outline: none;
}
.select .select__icon {
  margin-top: -5px;
  position: absolute;
  right: 15px;
  top: 50%;
  z-index: 2;
  pointer-events: none;
}
.select .select__icon svg {
  display: block;
  width: 10px;
  height: 10px;
  fill: #7f7f7f;
}
.is-invalid .select {
  background-color: #f0c6c6;
  border-color: #d8393c;
}
.select {
  /*
  *
  * Define variantions */
}
.select.type-subtle {
  border: none;
}

.checkbox {
  overflow: hidden;
  position: relative;
}
.checkbox input {
  position: absolute;
  left: -1000px;
  top: 0;
}
.checkbox label {
  display: block;
  width: 100%;
  min-height: 22px;
  padding: 3px 0 0 30px;
  font-family: "Montserrat", Helvetica, Arial, serif;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 400;
  user-select: none;
  cursor: pointer;
}
.checkbox label::before, .checkbox label::after {
  content: "";
  display: block;
  position: absolute;
}
.checkbox label::before {
  width: 22px;
  height: 22px;
  background: #f5f5eb;
  border: 1px solid #999999;
  border-radius: 0px;
  left: 0;
  top: 0;
}
.checkbox label::after {
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='14' height='12' viewBox='0 0 16 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.389.443a1.522 1.522 0 0 1 2.146 0c.62.602.62 1.546 0 2.149l-9.231 8.965c-.31.3-.65.443-1.073.443-.424 0-.764-.142-1.073-.443L.465 7.971a1.473 1.473 0 0 1 0-2.15 1.522 1.522 0 0 1 2.146 0l2.62 2.545L13.389.443z' fill='%23b72a1e'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center center;
  opacity: 0;
  left: 4px;
  top: 4px;
}
.checkbox input:checked + label::after {
  opacity: 1;
}
.checkbox {
  /*
   *
   * Define color variations */
}
.checkbox.color-neutrals-0 label::before {
  border-color: #ffffff;
}
.checkbox.color-neutrals-0 label::after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='14' height='12' viewBox='0 0 16 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.389.443a1.522 1.522 0 0 1 2.146 0c.62.602.62 1.546 0 2.149l-9.231 8.965c-.31.3-.65.443-1.073.443-.424 0-.764-.142-1.073-.443L.465 7.971a1.473 1.473 0 0 1 0-2.15 1.522 1.522 0 0 1 2.146 0l2.62 2.545L13.389.443z' fill='%23ffffff'/%3E%3C/svg%3E");
}
.is-invalid .checkbox label {
  color: #d8393c;
}
.is-invalid .checkbox label::before {
  background: #f0c6c6;
  border-color: #d8393c;
}

.checkboxes {
  display: flex;
  flex-wrap: wrap;
  margin: -8px;
}
.checkboxes .checkbox {
  margin: 8px;
}
.checkboxes.spacing-t-xs {
  margin-top: 0;
}

.radio {
  overflow: hidden;
  position: relative;
}
.radio input {
  position: absolute;
  left: -1000px;
  top: 0;
}
.radio label {
  display: block;
  width: 100%;
  min-height: 22px;
  padding: 3px 0 0 30px;
  font-family: "Montserrat", Helvetica, Arial, serif;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 400;
  user-select: none;
  cursor: pointer;
}
.radio label::before, .radio label::after {
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
}
.radio label::before {
  width: 22px;
  height: 22px;
  background: #f5f5eb;
  border: 1px solid #999999;
  left: 0;
  top: 0;
}
.radio label::after {
  width: 14px;
  height: 14px;
  background: #b72a1e;
  opacity: 0;
  left: 4px;
  top: 4px;
}
.radio input:checked + label::after {
  opacity: 1;
}
.radio {
  /*
   *
   * Define color variations */
}
.radio.color-neutrals-0 label::before {
  border-color: #ffffff;
}
.radio.color-neutrals-0 label::after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='14' height='12' viewBox='0 0 16 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.389.443a1.522 1.522 0 0 1 2.146 0c.62.602.62 1.546 0 2.149l-9.231 8.965c-.31.3-.65.443-1.073.443-.424 0-.764-.142-1.073-.443L.465 7.971a1.473 1.473 0 0 1 0-2.15 1.522 1.522 0 0 1 2.146 0l2.62 2.545L13.389.443z' fill='%23ffffff'/%3E%3C/svg%3E");
}
.is-invalid .radio label {
  color: #d8393c;
}
.is-invalid .radio label::before {
  background: #f0c6c6;
  border-color: #d8393c;
}

.checkboxes {
  display: flex;
  flex-wrap: wrap;
  margin: -8px;
}
.checkboxes .checkbox {
  margin: 8px;
}
.checkboxes.spacing-t-xs {
  margin-top: 0;
}

.radios {
  width: 100%;
}
.radios .radios__inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.info {
  display: inline-block;
  padding: 0;
  margin: 0;
  background: none;
  border: none;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  outline: none;
  transform: translate(0, 1px);
}
.info svg {
  display: block;
  width: 12px;
  height: 12px;
  fill: inherit;
}

/*
 *
 * Molecules */
.accordeon {
  width: 100%;
  margin: 45px 0;
}
.accordeon .accordeon__inner {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}
.accordeon .accordeon__item {
  width: 100%;
  margin: 15px 0 0;
}
.accordeon .accordeon__item:first-child {
  margin-top: 0;
}
.accordeon .accordeon__heading {
  width: 100%;
  padding: 18px 50px 18px 25px;
  background: #f5f5eb;
  border-radius: 50px;
  position: relative;
  cursor: pointer;
  user-select: none;
}
.accordeon .accordeon__heading .heading {
  font-size: 18px;
  line-height: 1;
}
.bgc--light-1 .accordeon .accordeon__heading {
  background: #f5f5eb;
}
.accordeon .accordeon__heading::after {
  content: "+";
  display: block;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  position: absolute;
  right: 25px;
  top: 14px;
}
.accordeon .accordeon__content {
  display: none;
  width: 100%;
  padding: 20px 25px;
  font-size: 14px;
  line-height: 1.5;
}
.accordeon:first-child {
  margin-top: 0;
}
.accordeon:last-child {
  margin-bottom: 0;
}
.accordeon {
  /*
   *
   * Define states */
}
.accordeon .accordeon__item.state-open .accordeon__heading {
  color: var(--color-primary-1);
}
.accordeon .accordeon__item.state-open .accordeon__heading::after {
  content: "-";
}
.accordeon .accordeon__item.state-open .accordeon__content {
  display: block;
}

/*
 *
 * Media Queries
 *
 */
/*
 * Layout 01 & Layout 02 - - - 0px - 767px */
@media all and (max-width: 767px) {
  .accordeon .accordeon__heading .heading {
    font-size: 15px;
  }
}
/*
 * Layout 01 - - - 0px - 419px */
/*
 * Layout 02 - - - 420px - 767px */
/*
 * Layout 03 - - - 768px - 1023px */
/*
 * Layout 04 - - - 1024px - 1179px */
/*
 * Layout 05 - - - 1180px - ... */
.block {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%;
  position: relative;
}
.block .block__visual {
  width: 50%;
  overflow: hidden;
  position: relative;
  left: 0;
  top: 0;
  z-index: 2;
}
.block .block__visual img,
.block .block__visual picture {
  display: block;
  width: 100%;
  border-radius: 20px;
}
.block .block__visualHolder {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.block .block__visualHolder img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
  object-position: center center;
}
.block .block__content {
  display: flex;
  align-items: center;
  width: 50%;
  position: relative;
}
.block .block__play {
  font-size: 0;
  line-height: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 10;
  transform: translate(-50%, -50%);
}
.block .block__in {
  width: 100%;
  padding: 0px 0 0px 110px;
  position: relative;
  z-index: 2;
}
.block .block__shape {
  width: 3000px;
  height: 100%;
  position: absolute;
  left: 40%;
  right: auto;
  top: 0;
  z-index: -1;
}
.block .block__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  width: auto;
  margin: 20px -10px -10px;
}
.block .block__actions a {
  margin: 10px;
}
.block .block__tags {
  margin: 0 0 25px;
}
.block .block__centered {
  width: 100%;
  max-width: 580px;
  margin: 25px auto;
  text-align: center;
}
.block .block__centered:first-child {
  margin-top: 0;
}
.block .block__centered:last-child {
  margin-bottom: 0;
}
.block .block__partner {
  width: 100%;
  max-width: 120px;
  margin: 0 0 30px;
}
.block .block__partner img {
  display: block;
  width: 100%;
}
.block {
  /*
   *
   * Define variations */
}
.block.type-alt .block__visual {
  order: 2;
  left: auto;
  right: 0;
}
.block.type-alt .block__content {
  order: 1;
}
.block.type-alt .block__in {
  padding: 0px 110px 0px 0;
}

/*
 *
 * Media Queries
 *
 */
/*
 * Layout 01 & Layout 02 - - - 0px - 767px */
@media all and (max-width: 767px) {
  .block .block__visual {
    order: 1;
    width: 100%;
    height: 0;
    padding-top: 100%;
    overflow: hidden;
    position: relative;
  }
  .block .block__visual img {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    object-fit: cover;
    object-position: center 40%;
  }
  .block .block__visualHolder {
    width: auto;
    left: -20px;
    right: -20px;
  }
  .block .block__content {
    order: 2;
    width: 100%;
  }
  .block .block__in {
    width: 100%;
    padding: 25px 0 0;
  }
  .block .block__subbrand svg {
    max-width: 140px;
  }
  .block.type-alt .block__visual {
    order: 1;
  }
  .block.type-alt .block__content {
    order: 2;
  }
  .block.type-alt .block__in {
    padding: 40px 0;
  }
}
/*
 * Layout 01 - - - 0px - 419px */
/*
 * Layout 02 - - - 420px - 767px */
@media all and (min-width: 420px) and (max-width: 767px) {
  .block .block__visual {
    padding-top: 70%;
  }
}
/*
 * Layout 03 - - - 768px - 1023px */
@media all and (min-width: 768px) and (max-width: 1023px) {
  .block {
    align-items: flex-start;
  }
  .block .block__content {
    width: 55%;
  }
  .block .block__visual {
    width: 45%;
  }
  .block .block__in {
    padding: 0 0 0 25px;
  }
  .block.type-alt .block__in {
    padding: 0 25px 0 0;
  }
  .block.type-alt .block__visual {
    margin-left: auto;
  }
}
/*
 * Layout 03 - - - 1024px - 1179px */
@media all and (min-width: 1024px) and (max-width: 1279px) {
  .block .block__in {
    padding: 0 0 0 70px;
  }
  .block.type-alt .block__in {
    padding: 0 70px 0 0;
  }
}
/*
 * Layout 04 - - - 1180px - ... */
.cards {
  width: 100%;
}
.cards .cards__inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}
.cards .cards__list {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.cards .cards__item {
  display: flex;
  width: 100%;
  text-align: center;
}
.cards {
  /*
   *
   * Define size variations */
  /*
   *
   * Define variations */
}
.cards.grid-l .cards__list {
  grid-template-columns: repeat(2, 1fr);
}
.cards.grid-s .cards__list {
  grid-template-columns: repeat(4, 1fr);
}
.cards.grid-xs .cards__inner {
  max-width: none;
}
.cards.grid-xs .cards__list {
  grid-template-columns: repeat(5, 1fr);
}
.cards {
  /*
   *
   * Slick styling */
}
.cards.type-carousel .cards__inner {
  max-width: none;
}
.cards.type-carousel .cards__list {
  display: block;
}
.cards.type-carousel .cards__list .cards__item {
  padding-right: 16px;
}
.cards .slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}
.cards .slick-dots button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  text-indent: -9999px;
  position: relative;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}
.cards .slick-dots button::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background: #cccccc;
  border-radius: 50%;
}
.bgc--light-1 .cards .slick-dots button::before {
  background: #dbdbcc;
}
.cards .slick-dots .slick-active button::before {
  background: #b72a1e;
}
.cards .slick-arrow {
  width: 46px;
  height: 46px;
  background-color: #ffffff;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 12px;
  border: none;
  border-radius: 50%;
  text-indent: -9999px;
  position: absolute;
  top: 40%;
  z-index: 100;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}
.cards .slick-arrow.slick-prev {
  background-image: url("/resources/svg/build/arrow-l.svg");
  left: -5px;
  transform: translate(-50%, -50%);
}
.cards .slick-arrow.slick-next {
  background-image: url("/resources/svg/build/arrow-r.svg");
  right: -5px;
  transform: translate(50%, -50%);
}
.cards .slick-arrow.slick-disabled {
  opacity: 0.2;
  cursor: default;
}

/*
 *
 * Media Queries
 *
 */
/*
 * Layout 01 & Layout 02 - - - 0px - 767px */
@media all and (width <= 539px) {
  .cards .cards__list, .cards.grid-l .cards__list, .cards.grid-s .cards__list, .cards.grid-xs .cards__list {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media all and (width >= 540px) and (max-width: 767px) {
  .cards .cards__list, .cards.grid-l .cards__list, .cards.grid-s .cards__list, .cards.grid-xs .cards__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
/*
  * Layout 01 & Layout 02 & Layout 03 - - - 0px - 1023px */
/*
  * Layout 01 - - - 0px - 419px */
@media all and (max-width: 419px) {
  .cards.type-carousel .cards__item {
    width: 254px;
  }
  .cards.slick-prev {
    left: -5px;
  }
  .cards.slick-next {
    right: -5px;
  }
}
/*
  * Layout 02 - - - 420px - 767px */
/*
  * Layout 03 - - - 768px - 1023px */
@media all and (min-width: 768px) and (max-width: 1023px) {
  .cards .cards__list, .cards.grid-s .cards__list, .cards.grid-xs .cards__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
/*
  * Layout 04 - - - 1024px - ... */
@media all and (min-width: 1024px) {
  .cards.grid-l.count-1 .cards__list, .cards.grid-m.count-1 .cards__list, .cards.grid-m.count-2 .cards__list, .cards.grid-s.count-1 .cards__list, .cards.grid-s.count-2 .cards__list {
    justify-content: center;
    grid-template-columns: repeat(auto-fit, 36%);
  }
  .cards.grid-s.count-3 .cards__list {
    justify-content: center;
    grid-template-columns: repeat(auto-fit, 30%);
  }
  .cards.grid-xs.count-1 .cards__list, .cards.grid-xs.count-2 .cards__list, .cards.grid-xs.count-3 .cards__list, .cards.grid-xs.count-4 .cards__list {
    justify-content: center;
    grid-template-columns: repeat(auto-fit, 25%);
  }
}
.contentSection .contentSection__inner {
  padding-top: 100px;
  padding-bottom: 100px;
}
.contentSection .contentSection__limited {
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
  text-align: center;
}
.contentSection .contentSection__limited.size-m {
  max-width: 680px;
}
.contentSection .contentSection__limited.size-l {
  max-width: 800px;
}
.contentSection .contentSection__limited.spacing-l {
  margin-bottom: 50px;
}
.contentSection .contentSection__limited.spacing-xl {
  margin-bottom: 80px;
}
.contentSection .contentSection__limited.align-left {
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}
.contentSection {
  /*
  *
  *
  *
  * Define variations */
}
.contentSection.padding-t-0 .contentSection__inner {
  padding-top: 0;
}
.contentSection.padding-b-0 .contentSection__inner {
  padding-bottom: 0;
}
.contentSection.padding-t-xs .contentSection__inner {
  padding-top: 25px;
}
.contentSection.padding-b-xs .contentSection__inner {
  padding-bottom: 25px;
}
.contentSection.padding-t-s .contentSection__inner {
  padding-top: 50px;
}
.contentSection.padding-b-s .contentSection__inner {
  padding-bottom: 50px;
}
.contentSection.padding-t-l .contentSection__inner {
  padding-top: 150px;
}
.contentSection.padding-b-l .contentSection__inner {
  padding-bottom: 150px;
}

/*
 *
 * Media Queries
 *
 */
/*
 * Layout 01 & Layout 02 - - - 0px - 767px */
@media all and (max-width: 767px) {
  .contentSection .contentSection__limited {
    max-width: none;
    text-align: left;
  }
  .contentSection .contentSection__limited.size-m {
    max-width: none;
  }
  .contentSection .contentSection__limited.size-l {
    max-width: none;
  }
}
/*
 * Layout 01 - - - 0px - 419px */
@media all and (max-width: 419px) {
  .contentSection .contentSection__inner {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .contentSection.padding-t-s .contentSection__inner {
    padding-top: 25px;
  }
  .contentSection.padding-b-s .contentSection__inner {
    padding-bottom: 25px;
  }
  .contentSection.padding-t-l .contentSection__inner {
    padding-top: 70px;
  }
  .contentSection.padding-b-l .contentSection__inner {
    padding-bottom: 70px;
  }
}
/*
 * Layout 02 - - - 420px - 767px */
@media all and (min-width: 420px) and (max-width: 767px) {
  .contentSection .contentSection__inner {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .contentSection.padding-t-s .contentSection__inner {
    padding-top: 40px;
  }
  .contentSection.padding-b-s .contentSection__inner {
    padding-bottom: 40px;
  }
  .contentSection.padding-t-l .contentSection__inner {
    padding-top: 80px;
  }
  .contentSection.padding-b-l .contentSection__inner {
    padding-bottom: 80px;
  }
}
/*
 * Layout 03 - - - 768px - 1023px */
@media all and (min-width: 768px) and (max-width: 1023px) {
  .contentSection .contentSection__inner {
    padding-top: 55px;
    padding-bottom: 55px;
  }
  .contentSection.padding-t-s .contentSection__inner {
    padding-top: 55px;
  }
  .contentSection.padding-b-s .contentSection__inner {
    padding-bottom: 55px;
  }
  .contentSection.padding-t-l .contentSection__inner {
    padding-top: 110px;
  }
  .contentSection.padding-b-l .contentSection__inner {
    padding-bottom: 110px;
  }
}
/*
 * Layout 04 - - - 1024px - 1179px */
/*
 * Layout 05 - - - 1180px - ... */
.breadcrumbs {
  width: 100%;
}
.breadcrumbs .breadcrumbs__inner {
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
}
.breadcrumbs ul {
  display: flex;
  align-items: center;
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
}
.breadcrumbs li {
  padding: 0 0 0 20px;
  margin: 0 0 0 10px;
  color: #7f7f7f;
  font-size: 12px;
  line-height: 1.2;
  position: relative;
}
.breadcrumbs li:first-child {
  padding-left: 0;
  margin-left: 0;
}
.breadcrumbs li:first-child::before {
  display: none;
}
.breadcrumbs li::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background-image: url("../../svg/build/arrow-r-w.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  opacity: 0.5;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
}
.breadcrumbs a {
  display: block;
  color: #ffffff;
  fill: #ffffff;
  text-decoration: underline;
  transition: all 250ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.breadcrumbs a[aria-current=page] {
  font-weight: 700;
  text-decoration: none;
  pointer-events: none;
}
.breadcrumbs span {
  display: block;
  padding: 3px 0 0;
}
.breadcrumbs svg {
  display: block;
  width: 14px;
  height: 14px;
}
.header--is-scrolled .breadcrumbs li::before {
  background-image: url("../../svg/build/arrow-r.svg");
  opacity: 0.25;
}
.header--is-scrolled .breadcrumbs a {
  color: #202020;
  fill: #202020;
}

.socials .socials__list {
  margin: 0 -5px;
}
.socials .socials__list ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
.socials .socials__list li {
  margin: 5px !important;
}
.socials .socials__list a {
  display: block;
  padding: 8px;
  text-decoration: none;
}
.socials .socials__list svg {
  display: block;
  width: 16px;
  height: 16px;
}
.socials {
  /*
   *
   * Define variations */
}
.socials.type-circle .socials__list a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  background: #f0f0e4;
  border-radius: 50%;
  fill: #b72a1e;
  transition: all 250ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.socials.type-circle .socials__list a:hover {
  background: #ffffff;
  fill: #b72a1e;
}

/*
 *
 * Media Queries
 *
 */
/*
 * Layout 01 & Layout 02 - - - 0px - 767px */
@media all and (max-width: 767px) {
  .socials .socials__list ul {
    justify-content: flex-start;
  }
}
.navigation ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  list-style: none;
  padding: 0;
  margin: 0;
}
.navigation li {
  margin: 0 0 0 58px;
  font-family: "specialBd", Helvetica, Arial, serif;
  position: relative;
}
.navigation li:first-child {
  margin-left: 0;
}
.navigation .navigation__link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.1;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  text-decoration: none;
  position: relative;
  transition: all 150ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.navigation .navigation__link::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #ffffff;
  position: absolute;
  left: 0;
  bottom: 0;
  transform: scale3d(0, 1, 1);
  transform-origin: 0% 50%;
  transition: all 350ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.navigation .navigation__link.is-active {
  color: #ffffff;
  fill: #ffffff;
}
.navigation .navigation__link.is-active::after {
  transform: scale3d(1, 1, 1);
}
.navigation svg {
  display: block;
  width: 7px;
  height: 7px;
  margin: 0 0 0 8px;
  fill: #ffffff;
  position: relative;
  top: 0px;
  transition: all 150ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.navigation .navigation__sub {
  display: none;
  flex-wrap: wrap;
  width: 100%;
  min-width: 250px;
  margin: 0;
  background: #ffffff;
  position: absolute;
  left: 0;
  top: 100%;
  box-shadow: 0 15px 20px rgba(0, 0, 0, 0.05);
}
.navigation .navigation__sub li {
  width: 100%;
  margin: 0;
  border-top: 1px solid #f0f0e4;
  font-family: "Montserrat", Helvetica, Arial, serif;
  font-weight: 400;
  text-align: left;
  text-transform: none;
}
.navigation .navigation__sub li:first-child {
  border-top: none;
}
.navigation .navigation__sub .navigation__link {
  justify-content: flex-start;
  padding: 24px 15px;
  color: #202020;
  font-size: 12px;
}
.navigation .navigation__sub .navigation__link::after {
  display: none;
}
.navigation .navigation__sub .navigation__link:hover {
  background: #f0f0e4;
}
.navigation .navigation__sub .navigation__link.is-active {
  background: #f0f0e4;
  font-weight: 700;
}
.navigation .navigation__accordeonTrigger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 49px;
  height: 49px;
  background: transparent;
  color: #202020;
  fill: #202020;
  font-size: 15px;
  line-height: 1.2;
  text-decoration: none;
  position: absolute;
  right: -15px;
  top: 0;
  z-index: 100;
  transform-origin: 50% 50%;
}
.navigation .navigation__accordeonTrigger svg {
  display: block;
  width: 10px;
  height: 10px;
  margin: 0;
  fill: #202020;
  top: 0;
}

/*
 *
 * Media Queries
 *
 */
/*
 * Layout 01 & Layout 02 & Layout 03 - - - 0px - 1023px */
@media all and (max-width: 1279px) {
  .navigation .navigation__accordeonTrigger {
    display: flex;
  }
  .navigation ul {
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
  }
  .navigation li {
    width: 100%;
    margin: 10px 0 0;
    font-size: 16px;
    text-align: left;
  }
  .navigation li:first-child {
    margin-top: 0;
    border-top: none;
  }
  .navigation .navigation__link {
    display: inline-block;
    width: 100%;
    padding: 17px 10px 17px 0;
    color: #202020;
    font-size: 16px;
    font-weight: 700;
  }
  .navigation .navigation__link svg {
    display: none;
  }
  .navigation .navigation__link::after {
    display: none;
  }
  .navigation .navigation__link.is-active {
    color: #202020;
  }
  .navigation .navigation__sub {
    display: none;
    width: auto;
    min-width: initial;
    margin: 0 -20px;
    background: #f5f5eb;
    position: relative;
    left: 0;
    top: 0;
    box-shadow: none;
  }
  .navigation .navigation__sub li {
    border-top-color: #f0f0e4;
  }
  .navigation .navigation__sub .navigation__link {
    display: block;
    padding-left: 25px;
    text-align: left;
    position: relative;
  }
  .navigation .navigation__sub .navigation__link:hover {
    background: #f0f0e4;
  }
  .navigation .navigation__sub .navigation__link.is-active, .navigation .navigation__sub .navigation__link.is-active:hover {
    background: #f0f0e4;
  }
  .navigation .is-open .navigation__sub {
    display: block;
  }
  .navigation .is-open .navigation__accordeonTrigger {
    transform: rotate(180deg);
  }
}
/*
 * Layout 01 & Layout 02 - - - 0px - 1023px */
@media all and (min-width: 1280px) {
  .navigation ul li:hover .navigation__sub {
    display: block;
  }
}
/*
 * Layout 01 - - - 0px - 419px */
/*
 * Layout 02 - - - 420px - 767px */
/*
 * Layout 03 - - - 768px - 1023px */
/*
 * Layout 04 - - - 1024px - 1179px */
/*
 * Layout 05 - - - 1180px - ... */
/*
 * Layout 04 - - - 1024px - ... */
@media all and (min-width: 1024px) {
  .header--is-scrolled .navigation .navigation__link {
    color: #202020;
  }
  .header--is-scrolled .navigation .navigation__link.is-active {
    color: #b72a1e;
  }
  .header--is-scrolled .navigation .navigation__link.is-active::after {
    background: #b72a1e;
  }
  .header--is-scrolled .navigation svg {
    fill: #202020;
  }
}
/*
 * Layout 05 - - - 1180px - ... */
@media all and (min-width: 1280px) and (width <= 1400px) {
  .navigation li {
    margin-left: 50px;
  }
  .navigation li:first-child {
    margin-left: 0;
  }
  .navigation .navigation__link {
    font-size: 12.8px;
  }
}
.hero {
  display: flex;
  width: 100%;
  min-height: 100vh;
  margin-top: -150px;
  color: #ffffff;
  fill: #ffffff;
  position: relative;
}
.hero .hero__visual {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
}
.hero .hero__visual .hero__darken {
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0.15;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}
.hero .hero__visual img {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
  object-position: right center;
  z-index: 1;
}
.hero .hero__visual::before, .hero .hero__visual::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 2;
}
.hero .hero__visual::before {
  width: 75%;
  height: 100%;
  background-image: linear-gradient(to right, #202020, rgba(32, 32, 32, 0));
  opacity: 0.25;
  left: 0;
  top: 0;
}
.hero .hero__visual::after {
  width: 100%;
  height: 50%;
  background-image: linear-gradient(to bottom, #202020, rgba(32, 32, 32, 0));
  opacity: 0.55;
  left: 0;
  top: 0;
}
.hero .hero__content {
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
}
.hero .hero__content .hero__inner {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  padding-top: 139px;
  position: relative;
  z-index: 10;
}
.hero .hero__mobileActions {
  display: none;
  align-items: center;
  justify-content: center;
  width: auto;
  width: 100%;
  padding: 15px 0px;
  position: absolute;
  left: 0;
  bottom: 100%;
  gap: 8px;
}
.hero .hero__mobileActions.type-compact {
  flex-wrap: wrap;
}
.hero .hero__mobileActions .btn.size-s {
  padding-left: 10px;
  padding-right: 10px;
}
.hero .hero__box {
  width: 100%;
  max-width: 550px;
  padding: 55px 50px 55px 0;
  position: relative;
}
.hero .hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 20;
  transform: translate(-50%, 0);
}
.hero .hero__scroll a {
  display: block;
  padding: 25px;
}
.hero .hero__scroll svg {
  display: block;
  width: 20px;
  height: 20px;
  fill: #f0f0e4;
  animation: scroll-arrow 2s infinite;
}
.hero {
  /*
   *
   * Define variations */
}
.hero.next-intro .hero__box {
  padding-bottom: 150px;
}
.hero.next-intro .hero__scroll {
  bottom: 55px;
}

@keyframes scroll-arrow {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(5px);
  }
  40% {
    transform: translateY(-1px);
  }
  60% {
    transform: translateY(3px);
  }
}
/*
 *
 * Media Queries
 *
 */
/*
 * Layout 01 & Layout 02 - - - 0px - 767px */
@media all and (max-width: 419px) {
  .hero .hero__content .hero__inner {
    padding-left: 10px;
    padding-right: 10px;
  }
}
/*
  * Layout 01 & Layout 02 - - - 0px - 768px */
@media all and (max-width: 767px) {
  .hero {
    flex-wrap: wrap;
    min-height: initial;
    margin-top: 0;
  }
  .hero .hero__visual {
    order: 1;
    width: 100%;
    position: relative;
  }
  .hero .hero__content {
    order: 2;
    width: 100%;
    padding: 0 0 20px;
  }
  .hero .hero__content .hero__inner {
    width: 100%;
    padding-top: 0;
    margin: 0;
  }
  .hero .hero__content h1,
  .hero .hero__content h2 {
    color: #b72a1e;
  }
  .hero .hero__content .actions .actions__inner {
    flex-wrap: nowrap;
    margin: 0;
    gap: 8px;
  }
  .hero .hero__content .actions .btn {
    flex-grow: 1;
    width: auto;
    padding-left: 10px;
    padding-right: 10px;
    margin: 0;
  }
  .hero .hero__content .actions .btn svg {
    display: none;
  }
  .hero .hero__scroll {
    display: none;
    padding-bottom: 30px;
  }
  .hero .hero__box {
    max-width: none;
    padding: 30px 25px;
    margin-top: -40px;
    background: #ffffff;
    color: #202020;
    fill: #202020;
  }
  .hero .hero__box::before {
    display: none;
  }
  .hero.next-intro .hero__box {
    padding: 30px 25px;
  }
  .hero.type-alt .hero__box {
    padding: 0;
  }
}
/*
  * Layout 01 - - - 0px - 419px */
@media all and (max-width: 419px) {
  .hero .hero__box {
    padding: 25px 20px;
  }
  .hero .hero__box::before {
    display: none;
  }
  .hero .hero__visual {
    height: 300px;
  }
  .hero .hero__mobileActions {
    display: flex;
  }
}
/*
  * Layout 02 - - - 420px - 767px */
@media all and (min-width: 420px) and (max-width: 767px) {
  .hero .hero__visual {
    height: 370px;
  }
  .hero .hero__mobileActions {
    display: flex;
  }
}
/*
  * Layout 03 - - - 768px - 1023px */
@media all and (min-width: 768px) and (max-width: 1023px) {
  .hero .hero__box {
    max-width: 440px;
    padding: 45px 0 75px;
  }
  .hero.type-alt .hero__box, .hero.next-intro .hero__box {
    padding: 45px 0 75px;
  }
}
/*
  * Layout 04 - - - 1024px - 1279px */
@media all and (min-width: 1024px) and (max-width: 1279px) {
  .hero .hero__inner {
    margin-right: -30px;
  }
  .hero .hero__box {
    padding: 50px 0 75px;
  }
  .hero .hero__box::before {
    width: 60px;
  }
  .hero.type-alt .hero__inner {
    margin-left: -30px;
    margin-right: 0;
  }
  .hero.type-alt .hero__box {
    padding: 50px 0 75px;
  }
  .hero.next-intro .hero__box {
    padding: 50px 0 75px;
  }
}
/*
  * Layout 05 - - - 1280px - ... */
.limited {
  width: 100%;
}
.limited .limited__inner {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}
.limited {
  /*
   *
   * Define variations */
}
.limited.size-m .limited__inner {
  max-width: 680px;
}
.limited.size-l .limited__inner {
  max-width: 800px;
}
.limited.align-left .limited__inner {
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}
.limited.align-leftcentered .limited__inner {
  text-align: left;
}

/*
 *
 * Media Queries
 *
 */
/*
 * Layout 01 & Layout 02 - - - 0px - 767px */
@media all and (max-width: 767px) {
  .limited .limited__inner {
    max-width: none;
    text-align: left;
  }
  .limited .limited__inner.size-m {
    max-width: none;
  }
  .limited .limited__inner.size-l {
    max-width: none;
  }
}
.intro {
  width: 100%;
  position: relative;
  z-index: 2;
}
.intro .intro__holder {
  overflow: hidden;
  position: relative;
}
.intro .intro__inner {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.intro .intro__headline {
  width: 50%;
  padding: 0 25px 0 0px;
  position: relative;
}
.intro .intro__content {
  width: 50%;
  padding: 10px 0 0 25px;
}
.intro .intro__shape {
  width: 1850px;
  opacity: 0.05;
  position: absolute;
  right: 100%;
  top: 100%;
  transform: translate(750px, -200px);
}
.intro .intro__shape svg {
  width: 100%;
  fill: #202020;
}
.intro .intro__divider {
  display: none;
  width: 100%;
  overflow: hidden;
}
.intro .intro__divider svg {
  display: block;
  width: 100%;
  fill: inherit;
}
.intro {
  /*
   *
   * Define variations */
}
.intro.has-hero {
  margin-top: -55px;
}
.intro.has-hero .intro__divider {
  display: block;
}

/*
 *
 * Media Queries
 *
 */
/*
 * Layout 01 & Layout 02 - - - 0px - 767px */
@media all and (max-width: 767px) {
  .intro .intro__headline {
    width: 100%;
    padding: 0 0 15px;
  }
  .intro .intro__headline::before {
    width: 30px;
    top: 22px;
  }
  .intro .intro__content {
    width: 100%;
    padding: 0;
  }
  .intro {
    /*
     *
     * Define variations */
  }
  .intro.has-hero {
    margin-top: 0;
  }
}
/*
 * Layout 01 - - - 0px - 419px */
/*
 * Layout 02 - - - 420px - 767px */
/*
 * Layout 03 - - - 768px - 1023px */
@media all and (min-width: 768px) and (max-width: 1023px) {
  .intro .intro__headline {
    padding: 0 30px 0 0;
  }
  .intro .intro__headline::before {
    width: 30px;
    top: 22px;
  }
  .intro .intro__content {
    padding: 0 0 0 10px;
  }
}
/*
 * Layout 04 - - - 1024px - 1179px */
/*
 * Layout 05 - - - 1180px - ... */
.fancy {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 450px;
  overflow: hidden;
  position: relative;
}
.fancy .fancy__visual {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.fancy .fancy__visual img,
.fancy .fancy__visual picture {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
  object-position: center center;
}
.fancy .fancy__content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  width: 100%;
  fill: #b72a1e;
  position: relative;
  z-index: 2;
  gap: 16px;
}
.fancy .fancy__content svg {
  display: block;
  width: 150px;
}
.fancy .fancy__item {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 16px;
  flex-shrink: 0;
  flex-grow: 0;
  padding: 8px 1px;
  animation: fancy-scroll 35000ms linear 0ms infinite;
}

@keyframes fancy-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
/*
 *
 * Media Queries
 *
 */
/*
 * Layout 01 & Layout 02 - - - 0px - 767px */
@media all and (max-width: 767px) {
  .fancy {
    height: 320px;
  }
  .fancy .fancy__content svg {
    display: block;
    width: 105px;
  }
}
/*
 * Layout 01 - - - 0px - 419px */
/*
 * Layout 02 - - - 420px - 767px */
/*
 * Layout 03 - - - 768px - 1023px */
/*
 * Layout 04 - - - 1024px - 1179px */
/*
 * Layout 05 - - - 1180px - ... */
.language ul {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 22px;
}
.language li {
  font-family: "specialBd", Helvetica, Arial, serif;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
}
.language li.is-active {
  pointer-events: none;
  cursor: default;
}
.language li.is-active a {
  text-decoration: none;
}
.language a {
  color: #ffffff;
  text-decoration: underline;
}
.header--is-scrolled .language a {
  color: #202020;
}

/*
 *
 * Media Queries
 *

/*
 * Layout 01 & Layout 02 & Layout 03 - - - 0px - 1023px */
@media all and (max-width: 1279px) {
  .language li {
    font-size: 17px;
  }
  .language a {
    color: #202020;
  }
}
.partners {
  width: 100%;
}
.partners .partners__list {
  width: 100%;
}
.partners .partners__item {
  padding: 8px;
}
.partners .partners__box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 15px 10px;
  border-radius: 20px;
  position: relative;
}
.partners .partners__box a {
  display: block;
  width: 100%;
  height: 100%;
  text-indent: -9999px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}
.partners .partners__box img,
.partners .partners__box picture {
  display: block;
  width: 100%;
  max-width: 128px;
  position: relative;
  z-index: 1;
}
.partners .slick-arrow {
  width: 46px;
  height: 46px;
  background-color: #ffffff;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 12px;
  border: none;
  border-radius: 50%;
  text-indent: -9999px;
  position: absolute;
  top: 50%;
  z-index: 100;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}
.partners .slick-arrow.slick-prev {
  background-image: url("/resources/svg/build/arrow-l.svg");
  left: -5px;
  transform: translate(-50%, -50%);
}
.partners .slick-arrow.slick-next {
  background-image: url("/resources/svg/build/arrow-r.svg");
  right: -5px;
  transform: translate(50%, -50%);
}
.partners .slick-arrow.slick-disabled {
  opacity: 0.2;
  cursor: default;
}

/*
 *
 * Media Queries
 *
 */
/*
 * Layout 01 & Layout 02 - - - 0px - 767px */
@media all and (max-width: 767px) {
  .partners .partners__box img,
  .partners .partners__box picture {
    max-width: 84px;
  }
}
/*
 * Layout 01 - - - 0px - 419px */
/*
 * Layout 02 - - - 420px - 767px */
/*
 * Layout 03 - - - 768px - 1023px */
/*
 * Layout 04 - - - 1024px - 1179px */
/*
 * Layout 05 - - - 1180px - ... */
.banner {
  display: flex;
  width: 100%;
  min-height: 320px;
  overflow: hidden;
  border-radius: 20px;
  color: #ffffff;
  position: relative;
}
.banner p a {
  color: #ffffff;
}
.banner .banner__visual {
  width: 100%;
  height: 100%;
  background: #b72a1e;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.banner .banner__visual::before {
  content: "";
  display: block;
  width: 75%;
  height: 100%;
  background-image: linear-gradient(to right, #202020, rgba(32, 32, 32, 0));
  opacity: 0.55;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
}
.banner .banner__visual img,
.banner .banner__visual picture {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
  object-position: right center;
}
.banner .banner__content {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 580px;
  position: relative;
  z-index: 2;
}
.banner .banner__box {
  width: 100%;
  padding: 35px 50px;
}

/*
 *
 * Media Queries
 *
 */
/*
 * Layout 01 & Layout 02 - - - 0px - 767px */
@media all and (max-width: 767px) {
  .banner {
    min-height: 320px;
  }
  .banner .banner__box {
    padding: 35px 30px;
  }
}
/*
 * Layout 01 - - - 0px - 419px */
/*
 * Layout 02 - - - 420px - 767px */
/*
 * Layout 03 - - - 768px - 1023px */
/*
 * Layout 04 - - - 1024px - 1179px */
/*
 * Layout 05 - - - 1180px - ... */
.offer {
  width: 100%;
}
.offer .offer__inner {
  width: 100%;
}
.offer .offer__list {
  width: 100%;
  max-width: 1330px;
  margin: 0 auto;
}
.offer .offer__item {
  display: flex !important;
  padding: 24px 8px 0;
}
.offer .offer__item.type-high {
  padding-top: 0;
}
.offer .offerBox__usps {
  font-size: 12.8px;
  line-height: 1.5;
}
.offer .offerBox__usps ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.offer .offerBox__usps li {
  padding: 3px 0 0 28px;
  margin: 16px 0 0;
  position: relative;
}
.offer .offerBox__usps li:first-child {
  margin-top: 0;
}
.offer .offerBox__uspIcon {
  position: absolute;
  left: 0;
  top: 4px;
}
.offer .offerBox__uspIcon svg {
  display: block;
  width: 18px;
  height: 18px;
}
.offer {
  /*
   *
   * Slick styling */
}
.offer .slick-list {
  overflow: visible;
}
.offer .slick-track {
  display: flex;
}
.offer .slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}
.offer .slick-dots button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  text-indent: -9999px;
  position: relative;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}
.offer .slick-dots button::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background: #cccccc;
  border-radius: 50%;
}
.bgc--light-1 .offer .slick-dots button::before {
  background: #dbdbcc;
}
.offer .slick-dots .slick-active button::before {
  background: #b72a1e;
}
.offer .slick-arrow {
  width: 46px;
  height: 46px;
  background-color: #f5f5eb;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 12px;
  border: none;
  border-radius: 50%;
  text-indent: -9999px;
  position: absolute;
  top: 50%;
  z-index: 100;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}
.offer .slick-arrow.slick-prev {
  background-image: url("/resources/svg/build/arrow-l.svg");
  left: 10px;
  transform: translate(-50%, -50%);
}
.offer .slick-arrow.slick-next {
  background-image: url("/resources/svg/build/arrow-r.svg");
  right: 10px;
  transform: translate(50%, -50%);
}
.offer .slick-arrow.slick-disabled {
  opacity: 0.2;
  cursor: default;
}
.offer .slick-slide {
  height: auto;
  float: none;
}

/*
 *
 * Media Queries
 *
 */
/*
 * Layout 01 & Layout 02 - - - 0px - 767px */
@media all and (max-width: 767px) {
  .offer .offer__item {
    width: 300px;
    padding: 12px 8px 0;
  }
  .offer .offer__item.type-high {
    padding-top: 0;
  }
  .offer .slick-arrow.slick-prev {
    left: 15px;
  }
  .offer .slick-arrow.slick-next {
    right: 15px;
  }
}
/*
 * Layout 01 - - - 0px - 419px */
/*
 * Layout 02 - - - 420px - 767px */
/*
 * Layout 03 - - - 768px - 1023px */
/*
 * Layout 04 - - - 1024px - 1179px */
@media all and (min-width: 1024px) and (max-width: 1279px) {
  .offer .offer__item {
    padding: 15px 10px 0;
  }
  .offer .offer__item.type-high {
    padding-top: 0;
  }
}
/*
 * Layout 05 - - - 1180px - ... */
@media all and (min-width: 1280px) and (width <= 1400px) {
  .offer .offer__item {
    padding: 15px 10px 0;
  }
  .offer .offer__item.type-high {
    padding-top: 0;
  }
}
.testimonials {
  width: 100%;
}
.testimonials .testimonials__inner {
  display: flex;
}
.testimonials .testimonials__content {
  display: flex;
  align-items: center;
  flex-grow: 1;
  padding: 0 75px 0 0;
}
.testimonials .testimonials__box {
  width: 100%;
  max-width: 530px;
}
.testimonials .testimonials__list {
  flex-shrink: 0;
  flex-grow: 0;
  width: 520px;
}
.testimonials .testimonials__item {
  padding: 10px 0;
}

/*
 *
 * Media Queries
 *
 */
/*
 * Layout 01 & Layout 02 - - - 0px - 1023px */
@media all and (max-width: 1023px) {
  .testimonials .testimonials__inner {
    flex-wrap: wrap;
  }
  .testimonials .testimonials__content {
    width: 100%;
    padding: 0;
  }
  .testimonials .testimonials__box {
    max-width: none;
  }
  .testimonials .testimonials__list {
    width: 100%;
    margin: 25px 0 0;
  }
  .testimonials .testimonials__item {
    padding: 10px 0;
  }
}
/*
 * Layout 01 - - - 0px - 419px */
/*
 * Layout 02 - - - 420px - 767px */
/*
 * Layout 03 - - - 768px - 1023px */
/*
 * Layout 04 - - - 1024px - 1179px */
@media all and (min-width: 1024px) and (max-width: 1279px) {
  .testimonials .testimonials__list {
    width: 440px;
  }
}
/*
 * Layout 05 - - - 1180px - ... */
.longtext {
  width: 100%;
}
.longtext .longtext__inner {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.form {
  width: 100%;
  margin: 50px auto;
  text-align: left;
}
.form:first-child {
  margin-top: 0;
}
.form:last-child {
  margin-bottom: 0;
}
.form form {
  width: 100%;
}
.form .form__inner {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}
.form .form__fields {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
}
.form .form__field {
  width: 100%;
  padding: 5px;
  margin: 5px 0;
}
.form .form__field .label,
.form .form__field .form__label {
  display: block;
  margin: 0 0 4px;
  text-align: left;
}
.form .form__field .label label,
.form .form__field .form__label label {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 12.8px;
  line-height: 1.2;
  font-weight: 700;
  opacity: 1;
}
.form .form__field .label label sup,
.form .form__field .form__label label sup {
  opacity: 0.5;
}
.form .form__field .label p,
.form .form__field .form__label p {
  font-size: 10px;
  line-height: 1.2;
  opacity: 0.5;
}
.form .form__field.size-1 {
  width: 0.8333333333%;
}
.form .form__field.size-2 {
  width: 1.6666666667%;
}
.form .form__field.size-3 {
  width: 2.5%;
}
.form .form__field.size-4 {
  width: 3.3333333333%;
}
.form .form__field.size-5 {
  width: 4.1666666667%;
}
.form .form__field.size-6 {
  width: 5%;
}
.form .form__field.size-7 {
  width: 5.8333333333%;
}
.form .form__field.size-8 {
  width: 6.6666666667%;
}
.form .form__field.size-9 {
  width: 7.5%;
}
.form .form__field.size-10 {
  width: 8.3333333333%;
}
.form .form__field.size-11 {
  width: 9.1666666667%;
}
.form .form__field.size-12 {
  width: 10%;
}
.form .form__field.size-13 {
  width: 10.8333333333%;
}
.form .form__field.size-14 {
  width: 11.6666666667%;
}
.form .form__field.size-15 {
  width: 12.5%;
}
.form .form__field.size-16 {
  width: 13.3333333333%;
}
.form .form__field.size-17 {
  width: 14.1666666667%;
}
.form .form__field.size-18 {
  width: 15%;
}
.form .form__field.size-19 {
  width: 15.8333333333%;
}
.form .form__field.size-20 {
  width: 16.6666666667%;
}
.form .form__field.size-21 {
  width: 17.5%;
}
.form .form__field.size-22 {
  width: 18.3333333333%;
}
.form .form__field.size-23 {
  width: 19.1666666667%;
}
.form .form__field.size-24 {
  width: 20%;
}
.form .form__field.size-25 {
  width: 20.8333333333%;
}
.form .form__field.size-26 {
  width: 21.6666666667%;
}
.form .form__field.size-27 {
  width: 22.5%;
}
.form .form__field.size-28 {
  width: 23.3333333333%;
}
.form .form__field.size-29 {
  width: 24.1666666667%;
}
.form .form__field.size-30 {
  width: 25%;
}
.form .form__field.size-31 {
  width: 25.8333333333%;
}
.form .form__field.size-32 {
  width: 26.6666666667%;
}
.form .form__field.size-33 {
  width: 27.5%;
}
.form .form__field.size-34 {
  width: 28.3333333333%;
}
.form .form__field.size-35 {
  width: 29.1666666667%;
}
.form .form__field.size-36 {
  width: 30%;
}
.form .form__field.size-37 {
  width: 30.8333333333%;
}
.form .form__field.size-38 {
  width: 31.6666666667%;
}
.form .form__field.size-39 {
  width: 32.5%;
}
.form .form__field.size-40 {
  width: 33.3333333333%;
}
.form .form__field.size-41 {
  width: 34.1666666667%;
}
.form .form__field.size-42 {
  width: 35%;
}
.form .form__field.size-43 {
  width: 35.8333333333%;
}
.form .form__field.size-44 {
  width: 36.6666666667%;
}
.form .form__field.size-45 {
  width: 37.5%;
}
.form .form__field.size-46 {
  width: 38.3333333333%;
}
.form .form__field.size-47 {
  width: 39.1666666667%;
}
.form .form__field.size-48 {
  width: 40%;
}
.form .form__field.size-49 {
  width: 40.8333333333%;
}
.form .form__field.size-50 {
  width: 41.6666666667%;
}
.form .form__field.size-51 {
  width: 42.5%;
}
.form .form__field.size-52 {
  width: 43.3333333333%;
}
.form .form__field.size-53 {
  width: 44.1666666667%;
}
.form .form__field.size-54 {
  width: 45%;
}
.form .form__field.size-55 {
  width: 45.8333333333%;
}
.form .form__field.size-56 {
  width: 46.6666666667%;
}
.form .form__field.size-57 {
  width: 47.5%;
}
.form .form__field.size-58 {
  width: 48.3333333333%;
}
.form .form__field.size-59 {
  width: 49.1666666667%;
}
.form .form__field.size-60 {
  width: 50%;
}
.form .form__field.size-61 {
  width: 50.8333333333%;
}
.form .form__field.size-62 {
  width: 51.6666666667%;
}
.form .form__field.size-63 {
  width: 52.5%;
}
.form .form__field.size-64 {
  width: 53.3333333333%;
}
.form .form__field.size-65 {
  width: 54.1666666667%;
}
.form .form__field.size-66 {
  width: 55%;
}
.form .form__field.size-67 {
  width: 55.8333333333%;
}
.form .form__field.size-68 {
  width: 56.6666666667%;
}
.form .form__field.size-69 {
  width: 57.5%;
}
.form .form__field.size-70 {
  width: 58.3333333333%;
}
.form .form__field.size-71 {
  width: 59.1666666667%;
}
.form .form__field.size-72 {
  width: 60%;
}
.form .form__field.size-73 {
  width: 60.8333333333%;
}
.form .form__field.size-74 {
  width: 61.6666666667%;
}
.form .form__field.size-75 {
  width: 62.5%;
}
.form .form__field.size-76 {
  width: 63.3333333333%;
}
.form .form__field.size-77 {
  width: 64.1666666667%;
}
.form .form__field.size-78 {
  width: 65%;
}
.form .form__field.size-79 {
  width: 65.8333333333%;
}
.form .form__field.size-80 {
  width: 66.6666666667%;
}
.form .form__field.size-81 {
  width: 67.5%;
}
.form .form__field.size-82 {
  width: 68.3333333333%;
}
.form .form__field.size-83 {
  width: 69.1666666667%;
}
.form .form__field.size-84 {
  width: 70%;
}
.form .form__field.size-85 {
  width: 70.8333333333%;
}
.form .form__field.size-86 {
  width: 71.6666666667%;
}
.form .form__field.size-87 {
  width: 72.5%;
}
.form .form__field.size-88 {
  width: 73.3333333333%;
}
.form .form__field.size-89 {
  width: 74.1666666667%;
}
.form .form__field.size-90 {
  width: 75%;
}
.form .form__field.size-91 {
  width: 75.8333333333%;
}
.form .form__field.size-92 {
  width: 76.6666666667%;
}
.form .form__field.size-93 {
  width: 77.5%;
}
.form .form__field.size-94 {
  width: 78.3333333333%;
}
.form .form__field.size-95 {
  width: 79.1666666667%;
}
.form .form__field.size-96 {
  width: 80%;
}
.form .form__field.size-97 {
  width: 80.8333333333%;
}
.form .form__field.size-98 {
  width: 81.6666666667%;
}
.form .form__field.size-99 {
  width: 82.5%;
}
.form .form__field.size-100 {
  width: 83.3333333333%;
}
.form .form__field.size-101 {
  width: 84.1666666667%;
}
.form .form__field.size-102 {
  width: 85%;
}
.form .form__field.size-103 {
  width: 85.8333333333%;
}
.form .form__field.size-104 {
  width: 86.6666666667%;
}
.form .form__field.size-105 {
  width: 87.5%;
}
.form .form__field.size-106 {
  width: 88.3333333333%;
}
.form .form__field.size-107 {
  width: 89.1666666667%;
}
.form .form__field.size-108 {
  width: 90%;
}
.form .form__field.size-109 {
  width: 90.8333333333%;
}
.form .form__field.size-110 {
  width: 91.6666666667%;
}
.form .form__field.size-111 {
  width: 92.5%;
}
.form .form__field.size-112 {
  width: 93.3333333333%;
}
.form .form__field.size-113 {
  width: 94.1666666667%;
}
.form .form__field.size-114 {
  width: 95%;
}
.form .form__field.size-115 {
  width: 95.8333333333%;
}
.form .form__field.size-116 {
  width: 96.6666666667%;
}
.form .form__field.size-117 {
  width: 97.5%;
}
.form .form__field.size-118 {
  width: 98.3333333333%;
}
.form .form__field.size-119 {
  width: 99.1666666667%;
}
.form .form__field.size-120 {
  width: 100%;
}
.form .form__field.spacing-l {
  margin-top: 25px;
}
.form .form__field.spacing-xl {
  margin-top: 40px;
}
.form .form__field.type-special-label {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 14px;
}
.form .form__field.type-cta {
  display: flex;
  justify-content: center;
}
.form .form__error {
  display: none;
  margin: 4px 0 0;
  color: #d8393c;
  font-size: 12px;
  line-height: 1.2;
}
.form .form__navigate {
  margin: 10px 0 0;
}
.form {
  /*
   *
   * Define variations */
}
.form.spacing-s {
  margin: 15px 0;
}
.form.spacing-s:first-child {
  margin-top: 0;
}
.form.spacing-s:last-child {
  margin-bottom: 0;
}

.is-invalid .form__error {
  display: block;
}

/*
 *
 * Media Queries
 *
 */
/*
 * Layout 01 & Layout 02 - - - 0px - 767px */
@media all and (max-width: 767px) {
  .form .form__field.size-1 {
    width: 100%;
  }
  .form .form__field.size-2 {
    width: 100%;
  }
  .form .form__field.size-3 {
    width: 100%;
  }
  .form .form__field.size-4 {
    width: 100%;
  }
  .form .form__field.size-5 {
    width: 100%;
  }
  .form .form__field.size-6 {
    width: 100%;
  }
  .form .form__field.size-7 {
    width: 100%;
  }
  .form .form__field.size-8 {
    width: 100%;
  }
  .form .form__field.size-9 {
    width: 100%;
  }
  .form .form__field.size-10 {
    width: 100%;
  }
  .form .form__field.size-11 {
    width: 100%;
  }
  .form .form__field.size-12 {
    width: 100%;
  }
  .form .form__field.size-13 {
    width: 100%;
  }
  .form .form__field.size-14 {
    width: 100%;
  }
  .form .form__field.size-15 {
    width: 100%;
  }
  .form .form__field.size-16 {
    width: 100%;
  }
  .form .form__field.size-17 {
    width: 100%;
  }
  .form .form__field.size-18 {
    width: 100%;
  }
  .form .form__field.size-19 {
    width: 100%;
  }
  .form .form__field.size-20 {
    width: 100%;
  }
  .form .form__field.size-21 {
    width: 100%;
  }
  .form .form__field.size-22 {
    width: 100%;
  }
  .form .form__field.size-23 {
    width: 100%;
  }
  .form .form__field.size-24 {
    width: 100%;
  }
  .form .form__field.size-25 {
    width: 100%;
  }
  .form .form__field.size-26 {
    width: 100%;
  }
  .form .form__field.size-27 {
    width: 100%;
  }
  .form .form__field.size-28 {
    width: 100%;
  }
  .form .form__field.size-29 {
    width: 100%;
  }
  .form .form__field.size-30 {
    width: 100%;
  }
  .form .form__field.size-31 {
    width: 100%;
  }
  .form .form__field.size-32 {
    width: 100%;
  }
  .form .form__field.size-33 {
    width: 100%;
  }
  .form .form__field.size-34 {
    width: 100%;
  }
  .form .form__field.size-35 {
    width: 100%;
  }
  .form .form__field.size-36 {
    width: 100%;
  }
  .form .form__field.size-37 {
    width: 100%;
  }
  .form .form__field.size-38 {
    width: 100%;
  }
  .form .form__field.size-39 {
    width: 100%;
  }
  .form .form__field.size-40 {
    width: 100%;
  }
  .form .form__field.size-41 {
    width: 100%;
  }
  .form .form__field.size-42 {
    width: 100%;
  }
  .form .form__field.size-43 {
    width: 100%;
  }
  .form .form__field.size-44 {
    width: 100%;
  }
  .form .form__field.size-45 {
    width: 100%;
  }
  .form .form__field.size-46 {
    width: 100%;
  }
  .form .form__field.size-47 {
    width: 100%;
  }
  .form .form__field.size-48 {
    width: 100%;
  }
  .form .form__field.size-49 {
    width: 100%;
  }
  .form .form__field.size-50 {
    width: 100%;
  }
  .form .form__field.size-51 {
    width: 100%;
  }
  .form .form__field.size-52 {
    width: 100%;
  }
  .form .form__field.size-53 {
    width: 100%;
  }
  .form .form__field.size-54 {
    width: 100%;
  }
  .form .form__field.size-55 {
    width: 100%;
  }
  .form .form__field.size-56 {
    width: 100%;
  }
  .form .form__field.size-57 {
    width: 100%;
  }
  .form .form__field.size-58 {
    width: 100%;
  }
  .form .form__field.size-59 {
    width: 100%;
  }
  .form .form__field.size-60 {
    width: 100%;
  }
  .form .form__field.size-61 {
    width: 100%;
  }
  .form .form__field.size-62 {
    width: 100%;
  }
  .form .form__field.size-63 {
    width: 100%;
  }
  .form .form__field.size-64 {
    width: 100%;
  }
  .form .form__field.size-65 {
    width: 100%;
  }
  .form .form__field.size-66 {
    width: 100%;
  }
  .form .form__field.size-67 {
    width: 100%;
  }
  .form .form__field.size-68 {
    width: 100%;
  }
  .form .form__field.size-69 {
    width: 100%;
  }
  .form .form__field.size-70 {
    width: 100%;
  }
  .form .form__field.size-71 {
    width: 100%;
  }
  .form .form__field.size-72 {
    width: 100%;
  }
  .form .form__field.size-73 {
    width: 100%;
  }
  .form .form__field.size-74 {
    width: 100%;
  }
  .form .form__field.size-75 {
    width: 100%;
  }
  .form .form__field.size-76 {
    width: 100%;
  }
  .form .form__field.size-77 {
    width: 100%;
  }
  .form .form__field.size-78 {
    width: 100%;
  }
  .form .form__field.size-79 {
    width: 100%;
  }
  .form .form__field.size-80 {
    width: 100%;
  }
  .form .form__field.size-81 {
    width: 100%;
  }
  .form .form__field.size-82 {
    width: 100%;
  }
  .form .form__field.size-83 {
    width: 100%;
  }
  .form .form__field.size-84 {
    width: 100%;
  }
  .form .form__field.size-85 {
    width: 100%;
  }
  .form .form__field.size-86 {
    width: 100%;
  }
  .form .form__field.size-87 {
    width: 100%;
  }
  .form .form__field.size-88 {
    width: 100%;
  }
  .form .form__field.size-89 {
    width: 100%;
  }
  .form .form__field.size-90 {
    width: 100%;
  }
  .form .form__field.size-91 {
    width: 100%;
  }
  .form .form__field.size-92 {
    width: 100%;
  }
  .form .form__field.size-93 {
    width: 100%;
  }
  .form .form__field.size-94 {
    width: 100%;
  }
  .form .form__field.size-95 {
    width: 100%;
  }
  .form .form__field.size-96 {
    width: 100%;
  }
  .form .form__field.size-97 {
    width: 100%;
  }
  .form .form__field.size-98 {
    width: 100%;
  }
  .form .form__field.size-99 {
    width: 100%;
  }
  .form .form__field.size-100 {
    width: 100%;
  }
  .form .form__field.size-101 {
    width: 100%;
  }
  .form .form__field.size-102 {
    width: 100%;
  }
  .form .form__field.size-103 {
    width: 100%;
  }
  .form .form__field.size-104 {
    width: 100%;
  }
  .form .form__field.size-105 {
    width: 100%;
  }
  .form .form__field.size-106 {
    width: 100%;
  }
  .form .form__field.size-107 {
    width: 100%;
  }
  .form .form__field.size-108 {
    width: 100%;
  }
  .form .form__field.size-109 {
    width: 100%;
  }
  .form .form__field.size-110 {
    width: 100%;
  }
  .form .form__field.size-111 {
    width: 100%;
  }
  .form .form__field.size-112 {
    width: 100%;
  }
  .form .form__field.size-113 {
    width: 100%;
  }
  .form .form__field.size-114 {
    width: 100%;
  }
  .form .form__field.size-115 {
    width: 100%;
  }
  .form .form__field.size-116 {
    width: 100%;
  }
  .form .form__field.size-117 {
    width: 100%;
  }
  .form .form__field.size-118 {
    width: 100%;
  }
  .form .form__field.size-119 {
    width: 100%;
  }
  .form .form__field.size-120 {
    width: 100%;
  }
  .form .form__field.type-special-label {
    align-items: center;
    justify-content: flex-start;
    padding-bottom: 0;
  }
  .form .form__textDivider {
    justify-content: flex-start;
  }
}
.imageGallery {
  width: 100%;
}
.imageGallery .imageGallery__inner {
  display: grid;
  width: 100%;
  gap: 16px;
  grid-template-columns: repeat(5, 1fr);
}
.imageGallery .imageGallery__item {
  width: 100%;
  height: 0;
  padding-top: 110%;
  overflow: hidden;
  border-radius: 20px;
  position: relative;
}
.imageGallery .imageGallery__item a {
  display: block;
  text-decoration: none;
}
.imageGallery .imageGallery__item img,
.imageGallery .imageGallery__item picture {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
  object-position: center center;
}

/*
 *
 * Media Queries
 *
 */
/*
 * Layout 01 & Layout 02 - - - 0px - 767px */
/*
 * Layout 01 - - - 0px - 419px */
@media all and (max-width: 419px) {
  .imageGallery .imageGallery__inner {
    gap: 4px;
    grid-template-columns: repeat(2, 1fr);
  }
  .imageGallery .imageGallery__item {
    padding-top: 120%;
    border-radius: 8px;
  }
}
/*
 * Layout 02 - - - 420px - 767px */
@media all and (min-width: 420px) and (max-width: 767px) {
  .imageGallery .imageGallery__inner {
    gap: 8px;
    grid-template-columns: repeat(3, 1fr);
  }
  .imageGallery .imageGallery__item {
    padding-top: 100%;
    border-radius: 8px;
  }
}
/*
 * Layout 03 - - - 768px - 1023px */
@media all and (min-width: 768px) and (max-width: 1023px) {
  .imageGallery .imageGallery__inner {
    gap: 12px;
    grid-template-columns: repeat(4, 1fr);
  }
}
/*
 * Layout 04 - - - 1024px - 1179px */
/*
 * Layout 05 - - - 1180px - ... */
.infoWindow {
  display: none;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
}
.infoWindow .infoWindow__box {
  width: 100%;
  max-width: 450px;
  padding: 45px 40px;
  overflow: auto;
  background: #ffffff;
  position: relative;
  z-index: 2;
  transform: translate3d(100%, 0, 0);
  transition: all 150ms cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
.infoWindow .infoWindow__darken {
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1;
  cursor: pointer;
  transition: all 250ms cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
.infoWindow .infoWindow__conceal {
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 10;
  transform: translate(100%, 0);
  transition: all 150ms cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
.infoWindow .infoWindow__conceal button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: none;
  border: none;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  cursor: pointer;
}
.infoWindow .infoWindow__conceal svg {
  display: block;
  width: 12px;
  height: 12px;
  fill: #202020;
}
.infoWindow {
  /*
   *
   * Define states */
}
.infoWindow.is-active {
  display: flex;
}
.infoWindow.is-visible .infoWindow__darken {
  opacity: 0.85;
  transition: all 275ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.infoWindow.is-visible .infoWindow__box {
  transform: translate3d(0, 0, 0);
  transition: all 150ms 75ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.infoWindow.is-visible .infoWindow__conceal {
  opacity: 1;
  transform: translate(0, 0);
  transition: all 150ms 75ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

/*
 *
 * Media Queries
 *
 */
/*
 * Layout 01 & Layout 02 - - - 0px - 767px */
@media all and (max-width: 767px) {
  .infoWindow {
    padding: 35px;
  }
  .infoWindow .infoWindow__box {
    max-width: none;
  }
  .infoWindow .infoWindow__conceal {
    right: 35px;
    top: 35px;
  }
}
/*
 * Layout 01 - - - 0px - 419px */
/*
 * Layout 02 - - - 420px - 767px */
/*
 * Layout 03 - - - 768px - 1023px */
/*
 * Layout 04 - - - 1024px - 1179px */
/*
 * Layout 05 - - - 1180px - ... */
/*
 *
 * Organisms */
.section {
  width: 100%;
  position: relative;
}
.section .section__inner {
  width: 100%;
  max-width: 1400px;
  padding-left: 35px;
  padding-right: 35px;
  margin: 0 auto;
}
.section.no-max .section__inner {
  max-width: 1900px;
}
.section.overflow-hidden {
  overflow: hidden;
}

/*
 *
 * Media Queries
 *
 */
/*
 * Layout 01 & Layout 02 - - - 0px - 767px */
@media all and (max-width: 767px) {
  .section .section__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
/*
  * Layout 01 & Layout 02 & Layout 03 - - - 0px - 1023px */
/*
  * Layout 01 - - - 0px - 419px */
/*
  * Layout 02 - - - 420px - 767px */
/*
  * Layout 03 - - - 768px - 1023px */
@media all and (min-width: 768px) and (max-width: 1023px) {
  .section .section__inner {
    padding-left: 25px;
    padding-right: 25px;
  }
}
/*
  * Layout 04 - - - 1024px - 1279px */
@media all and (min-width: 1024px) and (max-width: 1279px) {
  .section .section__inner {
    padding-left: 30px;
    padding-right: 30px;
  }
}
/*
  * Layout 05 - - - 1280px - ... */
.preheader {
  width: 100%;
  border-top: 8px solid #b72a1e;
  position: relative;
}
.preheader::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0.08;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  transform-origin: 50% 0%;
  transition: all 250ms cubic-bezier(0.47, 0, 0.745, 0.715);
}
.header--is-scrolled .preheader::after {
  background: #ffffff;
  opacity: 1;
  transform: scale3d(1, 1, 1);
  transition: all 250ms cubic-bezier(0.39, 0.575, 0.565, 1);
}
.preheader .preheader__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 5px;
  padding-bottom: 5px;
  position: relative;
  z-index: 10;
}
.preheader .preheader__extraLinks {
  padding-right: 30px;
  margin-right: 28px;
  position: relative;
}
.preheader .preheader__extraLinks::before {
  content: "";
  display: block;
  width: 1px;
  height: 14px;
  background: #ffffff;
  opacity: 0.5;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
}
.header--is-scrolled .preheader .preheader__extraLinks a {
  color: #202020;
}
.header--is-scrolled .preheader .preheader__extraLinks::before {
  background: #202020;
}
.preheader .preheader__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.preheader .preheader__actions .socials svg {
  fill: #ffffff;
}
.header--is-scrolled .preheader .preheader__actions .socials svg {
  fill: #202020;
}
.preheader .preheader__language {
  padding-left: 30px;
  margin-left: 28px;
  position: relative;
}
.preheader .preheader__language::before {
  content: "";
  display: block;
  width: 1px;
  height: 14px;
  background: #ffffff;
  opacity: 0.5;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
}
.header--is-scrolled .preheader .preheader__language::before {
  background: #202020;
}

.header {
  width: 100%;
  position: relative;
}
.header::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #ffffff;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  transform: scale3d(1, 0, 1);
  transform-origin: 50% 0%;
  transition: all 250ms cubic-bezier(0.47, 0, 0.745, 0.715);
}
.header--is-scrolled .header::after {
  transform: scale3d(1, 1, 1);
  transition: all 250ms cubic-bezier(0.39, 0.575, 0.565, 1);
}
.header .header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 15px;
  padding-bottom: 15px;
  position: relative;
  z-index: 10;
}
.header .header__brand {
  flex-shrink: 0;
  flex-grow: 0;
}
.header .header__brand svg {
  fill: #ffffff;
}
.header--is-scrolled .header .header__brand svg {
  fill: #b72a1e;
}
.header .header__extra {
  display: none;
  width: 100%;
}
.header .header__extraBlock {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  margin: 20px 0 0;
}
.header .header__extraBlock:first-child {
  margin-top: 0;
}
.header .header__actions {
  display: none;
}
.header .header__extraLinks {
  width: 100%;
}

/*
 *
 * Media Queries
 *

/*
 * Layout 01 & Layout 02 & Layout 03 - - - 0px - 1023px */
@media all and (max-width: 1279px) {
  .offcanvas--is-open {
    overflow: hidden;
  }
  .header {
    width: 100%;
    height: 100%;
    overflow: auto;
    background: #ffffff;
    position: fixed;
    left: 100%;
    top: 0;
    z-index: 1000;
    transition: all 240ms cubic-bezier(0.895, 0.03, 0.685, 0.22);
  }
  .header::after {
    display: none;
  }
  .offcanvas--is-open .header {
    transform: translate3d(-100%, 0, 0);
    transition: all 280ms cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  .header .header__inner {
    padding-top: 65px;
    padding-bottom: 30px;
  }
  .header .header__brand {
    display: none;
  }
  .header .header__navigation {
    width: 100%;
  }
  .header .header__extra {
    display: block;
    margin: 25px 0 0;
  }
  .header .header__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    margin: 32px 0 0;
  }
  .header .header__socials {
    display: flex;
    justify-content: center;
    order: 2;
    width: 100%;
  }
  .header .header__language {
    display: flex;
    justify-content: center;
    order: 1;
    width: 100%;
    margin: 16px 0;
  }
}
/*
  * Layout 01 & Layout 02 - - - 0px - 767px */
/*
  * Layout 01 - - - 0px - 419px */
/*
  * Layout 02 - - - 420px - 767px */
/*
  * Layout 03 - - - 768px - 1023px */
@media all and (min-width: 768px) and (max-width: 1023px) {
  .header {
    width: 400px;
  }
}
/*
  * Layout 04 - - - 1024px - 1279px */
@media all and (min-width: 1024px) and (max-width: 1279px) {
  .header {
    width: 450px;
  }
}
/*
  * Layout 05 - - - 1280px - ... */
.topbar {
  display: none;
  background: #ffffff;
  left: 0;
  top: 0;
  z-index: 1001;
}
.topbar .topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
  position: relative;
  z-index: 10;
}
.topbar .topbar__brand {
  flex-shrink: 0;
  flex-grow: 0;
  position: relative;
}
.topbar .topbar__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-grow: 1;
  margin-right: -10px;
}
.offcanvas--is-open .topbar {
  background: #ffffff;
}

/*
 *
 * Media Queries
 *
 */
/*
 * Layout 01 & Layout 02 & Layout 03 - - - 0px - 1023px */
@media all and (max-width: 1279px) {
  .topbar {
    display: block;
  }
}
/*
 * Layout 01 - - - 0px - 419px */
/*
 * Layout 02 - - - 420px - 767px */
/*
 * Layout 03 - - - 768px - 1023px */
/*
 * Layout 04 - - - 1024px - 1179px */
/*
 * Layout 05 - - - 1180px - ... */
.wrapper {
  width: 100%;
}
.wrapper .wrapper__inner {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding-top: 0;
}
.wrapper .wrapper__preheader {
  flex-shrink: 0;
  flex-grow: 0;
  width: 100%;
  position: relative;
  z-index: 100;
}
.wrapper .wrapper__header {
  flex-shrink: 0;
  flex-grow: 0;
  width: 100%;
  position: sticky;
  left: 0;
  top: 0;
  z-index: 1000;
}
.wrapper .wrapper__content {
  flex-shrink: 0;
  flex-grow: 1;
  width: 100%;
}
.wrapper .wrapper__footer {
  flex-shrink: 0;
  flex-grow: 0;
  width: 100%;
}

/*
 *
 * Media Queries
 *
 */
/*
 * Layout 01 & Layout 02 & Layout 03 - - - 0px - 1023px */
@media all and (max-width: 1279px) {
  .wrapper .wrapper__preheader {
    display: none;
  }
}
/*
 * Layout 01 - - - 0px - 419px */
/*
 * Layout 02 - - - 420px - 767px */
/*
 * Layout 03 - - - 768px - 1023px */
/*
 * Layout 04 - - - 1024px - 1179px */
/*
 * Layout 05 - - - 1180px - ... */
.footer {
  width: 100%;
  margin-top: 1px;
  color: #f0f0e4;
  font-size: 14px;
}
.footer .footer__fancy {
  width: 100%;
  margin-bottom: -50px;
}
.footer .footer__holder {
  background: #b72a1e;
  position: relative;
  z-index: 10;
}
.footer .footer__divider {
  margin-bottom: -1px;
  position: relative;
  z-index: 10;
}
.footer .footer__divider svg {
  display: block;
  width: 100%;
  fill: #b72a1e;
}
.footer .brand {
  margin: 0 0 35px;
}
.footer .brand svg {
  fill: #f0f0e4;
}
.footer .footer__main {
  width: 100%;
}
.footer .footer__main .footer__inner {
  display: flex;
  justify-content: flex-start;
  padding-top: 95px;
  padding-bottom: 95px;
}
.footer .footer__secondary {
  background: rgba(32, 32, 32, 0.1);
  font-size: 12px;
  line-height: 1.2;
}
.footer .footer__secondary .footer__inner {
  padding-top: 15px;
  padding-bottom: 15px;
}
.footer .footer__secondary .footer__inner a {
  color: #f0f0e4;
  cursor: pointer;
  text-decoration: underline;
}
.footer .footer__info {
  flex-shrink: 0;
  flex-grow: 0;
}
.footer .footer__info a {
  color: #f0f0e4;
}
.footer .footer__columns {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  flex-grow: 1;
  padding: 0 0 0 180px;
}
.footer .footer__column {
  padding: 0 0 0 55px;
}
.footer .footer__column:first-child {
  width: 60%;
  padding-left: 0;
}
.footer .footer__column ul.linkList {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .footer__column ul.linkList li {
  width: 50%;
}
.footer .footer__column ul.linkList li a {
  display: block;
  padding: 2px 10px 2px 0;
  color: #f0f0e4;
}
.footer .footer__column .footer__heading {
  margin-bottom: 18px;
  font-size: 26px;
}

/*
 *
 * Media Queries
 *
 */
@media all and (width <= 380px) {
  .footer .footer__column ul.linkList li {
    width: 100%;
  }
}
/*
 * Layout 01 & Layout 02 - - - 0px - 767px */
@media all and (max-width: 767px) {
  .footer {
    font-size: 12px;
  }
  .footer .brand {
    margin: 0 0 15px;
  }
  .footer .footer__main .footer__inner {
    flex-wrap: wrap;
    padding-top: 55px;
    padding-bottom: 40px;
  }
  .footer .footer__column {
    width: 100%;
    padding: 0;
    margin: 45px 0 0;
  }
  .footer .footer__column:first-child {
    width: 100%;
    margin-top: 0;
  }
  .footer .footer__heading {
    margin-bottom: 10px;
  }
}
/*
  * Layout 01 & Layout 02 & Layout 03 - - - 0px - 1279px */
@media all and (max-width: 1279px) {
  .footer .footer__main .footer__inner {
    flex-wrap: wrap;
  }
  .footer .footer__columns {
    padding: 0;
    margin: 45px 0 0;
  }
}
/*
  * Layout 01 - - - 0px - 419px */
/*
  * Layout 02 - - - 420px - 767px */
/*
  * Layout 03 & Layout 04 - - - 768px - 1270px */
@media all and (min-width: 768px) and (max-width: 1279px) {
  .footer {
    font-size: 12px;
  }
  .footer .footer__main .footer__inner {
    padding-top: 55px;
    padding-bottom: 55px;
  }
  .footer .footer__columns {
    justify-content: flex-start;
    width: 100%;
  }
}
/*
  * Layout 04 - - - 1024px - 1279px */
/*
  * Layout 05 - - - 1280px - ... */