body {
  background: #E1E6EB;
  font-size: 1.8rem;
  min-width: 320px;
  position: relative;
  margin: 0;
  padding: 0;
}

@media (min-width: 768px) {
  body {
    padding: 4rem 2rem 0;
  }
}

button:-moz-focusring,
[type='button']:-moz-focusring,
[type='reset']:-moz-focusring,
[type='submit']:-moz-focusring {
  outline: 0.3rem solid #7D8C96;
  outline-offset: 0.5rem;
}

:focus {
  outline: 0.3rem solid #7D8C96;
  outline-offset: 0.5rem;
}

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

@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/ibm-plex-sans-v19-latin-regular.woff2") format("woff2");
}

@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/ibm-plex-sans-v19-latin-600.woff2") format("woff2");
}

@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/ibm-plex-sans-v19-latin-700.woff2") format("woff2");
}

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

a {
  text-decoration: none;
}

strong, b {
  font-weight: 600;
}

h1, h2, h3, h4, h5, h6, p, figure, legend {
  margin: 0;
}

ul, ol {
  margin: 0;
  padding: 0;
}

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

::-moz-selection {
  background-color: #46555f;
  color: #fff;
}

::selection {
  background-color: #46555f;
  color: #fff;
}

html {
  color: #46555f;
  font-family: "IBM Plex Sans";
  font-size: 62.5%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-weight: normal;
  line-height: 1.4;
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
  scroll-behavior: smooth;
}

.header {
  background-color: #2D3C46;
  position: relative;
  display: flex;
}

.header__logo img {
  height: 4.5rem;
  width: auto;
}

@media (min-width: 768px) {
  .header__logo img {
    height: 6rem;
  }
}

.header__text {
  color: #fff;
  display: flex;
  font-size: 1.2rem;
  gap: 0.8rem;
  line-height: 3rem;
  padding-right: 1rem;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.header__text svg {
  position: relative;
  top: 0.4rem;
}

.header__toggle {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #2D3C46;
  border: 0;
  color: #fff;
  cursor: pointer;
  order: -1;
  padding: 0;
  transition: all 0.2s;
  width: 4.5rem;
}

.header--open .header__toggle {
  background: #fff;
  color: #DC0028;
}

.header__toggle svg {
  width: 2.2rem;
}

@media (min-width: 1024px) {
  .header__toggle {
    display: none;
  }
}

@media (max-width: 1023px) {
  .header__nav {
    background-color: #fff;
    box-shadow: 1px 3px 5px rgba(0, 0, 0, 0.2);
    left: 0;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 6rem;
    width: 26.8rem;
    z-index: 2;
  }
  .header--open .header__nav {
    opacity: 1;
    pointer-events: auto;
    transition: opacity 0.2s;
  }
  .header__nav__ul {
    list-style: none;
  }
  .header__nav__li {
    font-size: 1.5rem;
  }
  .header__nav__li:not(:last-child) {
    border-bottom: 1px solid #E1E6EB;
  }
  .header__nav__a {
    color: #46555f;
    display: inline-block;
    padding: 1rem 1.5rem;
  }
  .header__nav__a:focus, .header__nav__a:hover {
    color: #DC0028;
    font-weight: 700;
  }
}

@media (min-width: 1024px) {
  .header__nav__ul {
    display: flex;
    list-style: none;
    margin-left: 1rem;
  }
  .header__nav__li {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 4rem;
    text-transform: uppercase;
    margin-top: 2rem;
  }
  .header__nav__a {
    background-color: transparent;
    color: #fff;
    display: inline-block;
    padding: 0 1.5rem;
    transition: all 0.2s;
  }
  .header__nav__a:hover, .header__nav__a:focus {
    background-color: #fff;
    color: #DC0028;
  }
}

.footer {
  background-color: #2D3C46;
  color: #fff;
  display: flex;
  flex-direction: column;
  font-size: 1.4rem;
  padding: 4rem 3rem;
  position: relative;
}

@media (min-width: 768px) {
  .footer {
    flex-direction: row;
    padding: 3rem 5rem;
    gap: 6rem;
  }
}

@media (max-width: 767px) {
  .footer__social {
    margin-bottom: 4rem;
  }
}

.footer__social__nav {
  display: flex;
  gap: 1.5rem;
  padding-top: 1.5rem;
}

.footer__social__a {
  display: inline-block;
}

.footer__social__text {
  text-transform: uppercase;
}

.footer__widget {
  width: 14rem;
}

@media (max-width: 767px) {
  .footer__widget {
    margin-bottom: 5rem;
  }
}

@media (min-width: 768px) {
  .footer__nav {
    bottom: 2rem;
    position: absolute;
    right: 3rem;
  }
}

.footer__nav__ul {
  display: flex;
  list-style: none;
}

.footer__nav__li:not(:last-child) {
  padding-right: 2.5rem;
  position: relative;
}

.footer__nav__li:not(:last-child)::after {
  background-color: #fff;
  bottom: 0.2rem;
  content: '';
  position: absolute;
  right: 1.25rem;
  top: 0.2rem;
  width: 0.1rem;
}

.footer__nav__a {
  border-bottom: 1px solid transparent;
  color: #fff;
  display: inline-block;
  transition: border-bottom 0.2s;
}

.footer__nav__a:hover, .footer__nav__a:focus {
  border-bottom: 1px solid currentColor;
}

.page {
  background-color: #fff;
  max-width: 108rem;
  margin: 0 auto;
}

.content {
  padding-top: 4rem;
}

@media (min-width: 768px) {
  .content {
    padding-top: 6rem;
  }
}

.content__block {
  margin-bottom: 4rem;
  padding-left: 3rem;
  padding-right: 3rem;
}

@media (min-width: 768px) {
  .content__block {
    margin-bottom: 8rem;
    padding-left: 5rem;
    padding-right: 5rem;
  }
}

@media (min-width: 768px) {
  .content__block--mb-4 {
    margin-bottom: 4rem;
  }
}

.content__block--line-bottom {
  padding-bottom: 4rem;
  position: relative;
}

.content__block--line-bottom::after {
  background-color: #e1e6eb;
  bottom: 0;
  content: '';
  height: 0.1rem;
  left: 3rem;
  position: absolute;
  right: 3rem;
}

@media (min-width: 768px) {
  .content__block--line-bottom::after {
    left: 1.5rem;
    right: 1.5rem;
  }
}

@media (min-width: 768px) {
  .content__block--line-bottom {
    padding-bottom: 8rem;
  }
}

.headline {
  color: #46555f;
  font-weight: 700;
}

.headline--1 {
  font-size: 2.8rem;
  line-height: 4rem;
}

@media (min-width: 768px) {
  .headline--1 {
    font-size: 4rem;
    line-height: 6rem;
  }
}

.headline--2 {
  font-size: 2.2rem;
  line-height: 3.12rem;
}

@media (min-width: 414px) {
  .headline--2 {
    font-size: 2.4rem;
    line-height: 3.12rem;
  }
}

.headline--3 {
  font-size: 2rem;
  line-height: 2.6rem;
}

@media (min-width: 414px) {
  .headline--3 {
    font-size: 2.2rem;
    line-height: 2.86rem;
  }
}

.headline--4 {
  font-size: 1.8rem;
  line-height: 2.34rem;
}

@media (min-width: 414px) {
  .headline--4 {
    font-size: 2rem;
    line-height: 2.6rem;
  }
}

.button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #DC0028;
  border-radius: 0;
  border: 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-family: "IBM Plex Sans";
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.38;
  padding: 1.36rem 2rem;
  text-align: center;
  transition: box-shadow 0.2s;
  width: 100%;
}

.button:not([disabled]):hover, .button:not([disabled]):focus {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.button[disabled] {
  cursor: not-allowed;
  opacity: 0.5;
}

@media (min-width: 768px) {
  .button {
    font-size: 2.2rem;
    padding: 1.84rem 3rem;
  }
}

.button-container {
  max-width: 41rem;
}

.button-container p {
  font-size: 1.4rem;
  color: #7D8C96;
  font-weight: 600;
  padding-top: 1rem;
  text-align: center;
}

@media (min-width: 768px) {
  .button-container p {
    font-size: 1.6rem;
  }
}

.content__block > .button-container {
  max-width: 100%;
  text-align: center;
  margin: -2rem 0;
}

.content__block > .button-container .button {
  max-width: 41rem;
}

.link {
  color: #46555f;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  -webkit-text-decoration-color: #DC0028;
          text-decoration-color: #DC0028;
  transition: color 0.2s;
}

.link:hover {
  color: #DC0028;
}

.richtext__hintbox {
  border: 1px solid #7D8C96;
  padding: 2rem;
}

.richtext__hintbox:not(:last-child) {
  margin-bottom: 3rem;
}

.richtext .headline {
  margin-bottom: 3rem;
}

.richtext .headline--4 {
  margin-bottom: 2rem;
}

.richtext .headline:not(:first-child) {
  padding-top: 1rem;
}

.richtext .headline + .headline {
  margin-top: -1rem;
  padding-top: 0;
}

.richtext .headline--2 + .headline--4 {
  padding-top: 1rem;
}

.richtext p,
.richtext li {
  font-size: 1.6rem;
  line-height: 2.5rem;
}

.richtext p:not(:last-child),
.richtext li:not(:last-child) {
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .richtext p,
  .richtext li {
    font-size: 1.8rem;
  }
}

@media (min-width: 768px) {
  .richtext p.small {
    font-size: 1.6rem;
    line-height: 2.08rem;
  }
}

.richtext p.large {
  font-size: 2.2rem;
  line-height: 3.12rem;
}

@media (min-width: 414px) {
  .richtext p.large {
    font-size: 2.4rem;
    line-height: 3.12rem;
  }
}

.richtext ul,
.richtext ol {
  padding-left: 2.5rem;
}

.richtext ul:not(:last-child),
.richtext ol:not(:last-child) {
  margin-bottom: 3rem;
}

.richtext ul {
  list-style: none;
}

.richtext ul li {
  position: relative;
}

.richtext ul li::before {
  background: #46555f;
  border-radius: 100vh;
  content: '';
  height: 0.4rem;
  left: -1.6rem;
  position: absolute;
  top: 1.1rem;
  width: 0.4rem;
}

.richtext ul.list-small li {
  margin-bottom: 0;
}

.richtext ol.list-index {
  padding-left: 2rem;
}

@media (min-width: 768px) {
  .richtext ol.list-index {
    padding-left: 3.5rem;
  }
}

.richtext ol.list-index li {
  font-size: 1.6rem;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .richtext ol.list-index li {
    font-size: 2.2rem;
    line-height: 1.4;
  }
}

.richtext ol.list-index li:not(:last-child) {
  margin-bottom: 2rem;
}

.richtext ol.list-index li a {
  color: #46555f;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
  transition: color 0.2s;
}

.richtext ol.list-index li a:focus, .richtext ol.list-index li a:hover {
  color: #DC0028;
}

@media (max-width: 767px) {
  .table-container {
    overflow-x: auto;
    width: 100%;
  }
}

.table-container:not(:last-child),
.table:not(:last-child) {
  margin-bottom: 3rem;
}

.table {
  border: 0;
  border-collapse: collapse;
  border-left: 1px solid #AAB9C3;
  border-top: 1px solid #AAB9C3;
  margin: 0;
  padding: 0;
  width: 100%;
}

.table th,
.table td {
  padding: 1rem 1.2rem;
  border-bottom: 1px solid #AAB9C3;
  border-right: 1px solid #AAB9C3;
}

.table th {
  background-color: #46555f;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.82rem;
  text-align: left;
}

@media (min-width: 414px) {
  .table th {
    font-size: 1.8rem;
    line-height: 2.34rem;
  }
}

.table td {
  font-size: 1.2rem;
  line-height: 1.56rem;
}

@media (min-width: 414px) {
  .table td {
    font-size: 1.6rem;
    line-height: 2.08rem;
  }
}

.stage {
  position: relative;
}

.stage__inner {
  margin: 0 auto;
  max-width: 32rem;
}

@media (min-width: 768px) {
  .stage__inner {
    max-width: 41rem;
  }
}

@media (min-width: 1024px) {
  .stage__inner {
    display: flex;
    flex-direction: column;
    margin: 0;
    max-width: 60%;
    padding-left: 4rem;
  }
}

.stage__headline {
  margin: 0 -1.5rem 3.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .stage__headline {
    margin: 0 -5rem 4rem;
  }
}

@media (min-width: 1024px) {
  .stage__headline {
    margin: 0 0 6rem;
    text-align: left;
  }
}

@media (max-width: 1023px) {
  .stage__img {
    max-width: 27rem;
    margin: 0 auto 4.5rem;
    width: 80%;
  }
}

@media (min-width: 1024px) {
  .stage__img {
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    position: absolute;
    right: 0;
    top: 0;
    width: 40%;
  }
}

@media (max-width: 1023px) {
  .stage__button {
    margin-bottom: 4rem;
    text-align: center;
  }
}

@media (min-width: 1024px) {
  .stage__button {
    margin-top: 8rem;
    order: 1;
    max-width: 41rem;
  }
}

.stage__button__subline {
  font-size: 1.4rem;
  color: #7D8C96;
  font-weight: 600;
  padding-top: 1rem;
  text-align: center;
}

@media (min-width: 768px) {
  .stage__button__subline {
    font-size: 1.6rem;
  }
}

.stage__list {
  list-style: none;
}

.stage__list__li {
  font-size: 1.6rem;
  padding-left: 4rem;
  position: relative;
}

@media (min-width: 768px) {
  .stage__list__li {
    font-size: 2rem;
    padding-left: 5.5rem;
  }
}

.stage__list__li:not(:last-child) {
  margin-bottom: 1.7rem;
}

@media (min-width: 768px) {
  .stage__list__li:not(:last-child) {
    margin-bottom: 2.7rem;
  }
}

.stage__list__li::before {
  content: '';
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M18.907 5.795a10 10 0 1 0 5.985 7.74 1.25 1.25 0 0 1 2.473-.367 12.5 12.5 0 1 1-7.481-9.675 1.25 1.25 0 0 1-.977 2.302Z' fill='%2346555F'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='m9.116 14.99 4.487 4.488a1.245 1.245 0 0 0 1.763 0l11.1-11.1a1.245 1.245 0 0 0 0-1.762 1.245 1.245 0 0 0-1.763 0L14.491 16.828l-3.613-3.6a1.245 1.245 0 1 0-1.762 1.763Z' fill='%2346555F'/%3E%3C/svg%3E");
  width: 3rem;
  height: 3rem;
  position: absolute;
  left: 0;
  top: -0.4rem;
}

@media (min-width: 768px) {
  .stage__list__li::before {
    height: 4rem;
    top: -0.6rem;
    width: 4rem;
  }
}

@media (min-width: 1024px) {
  .text-image__cols {
    display: flex;
    flex-wrap: wrap;
    gap: 7.5rem;
  }
}

.richtext + .text-image__cols,
.text-image__cols + .richtext {
  margin-top: 3rem;
}

@media (min-width: 1024px) {
  .text-image__col-text,
  .text-image__col-image {
    flex: 1 1 0;
  }
}

.text-image__col-image {
  margin: 4rem -3rem;
}

@media (min-width: 768px) {
  .text-image__col-image {
    margin: 4rem -5rem;
  }
}

@media (min-width: 1024px) {
  .text-image__col-image {
    margin: 0;
  }
}

.text-image__col-image .text-image__col-image__table {
  padding: 0 3rem;
}

@media (min-width: 768px) {
  .text-image__col-image .text-image__col-image__table {
    padding: 0 5rem;
  }
}

@media (min-width: 1024px) {
  .text-image__col-image .text-image__col-image__table {
    padding: 0;
  }
}

@media (min-width: 1024px) {
  .text-image__col-image--right {
    order: 1;
  }
}

@media (max-width: 1023px) {
  .text-image__img {
    aspect-ratio: 5/2;
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
  }
}

.text-image__button {
  text-align: center;
  margin: 5rem 0 6rem;
}

.text-image__button:last-child {
  margin-bottom: 0;
}

.text-image__button .button {
  max-width: 32rem;
}

@media (min-width: 768px) {
  .text-image__button .button {
    max-width: 41rem;
  }
}

.hd-modal {
  position: fixed;
  z-index: 100;
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  align-items: flex-end;
  justify-content: center;
  padding: 24px 16px 91px;
  margin-top: 6vh;
}

@media (min-width: 768px) {
  .hd-modal {
    z-index: 9004 !important;
    margin-top: 140px;
    align-items: center;
  }
}

.hd-modal.hd-modal--custom,
.hd-modal.hd-modal--sliders {
  align-items: flex-start;
}

.hd-modal__overlay {
  position: fixed;
  z-index: 9998;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0f1d2e;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.hd-modal__container {
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.2), 0 16px 24px rgba(0, 0, 0, 0.14), 0 6px 30px rgba(0, 0, 0, 0.12);
  position: relative;
  z-index: 9999;
  width: 100%;
  max-width: 568px;
  padding: 40px 16px 16px;
  background-color: #fff;
  border-radius: 4px;
  overflow: scroll;
}

@media (min-width: 768px) {
  .hd-modal__container {
    max-height: 90%;
  }
}

.hd-modal.hd-modal--sliders .hd-modal__container {
  overflow: visible;
  padding: 0;
  max-width: 768px;
}

@media (min-width: 983px) {
  .hd-modal.hd-modal--sliders .hd-modal__container {
    height: 475px;
  }
}

.hd-modal__header {
  display: flex;
  margin-bottom: 4px;
}

.hd-modal.hd-modal--sliders .hd-modal__header {
  display: none;
}

.hd-modal__title {
  font-size: 1.25rem;
  line-height: 1.6;
  font-weight: 700;
}

.hd-modal__body {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 8px;
}

.hd-modal.hd-modal--sliders .hd-modal__body {
  margin-bottom: 0;
}

.hd-modal.hd-modal--sliders .hd-modal__body,
.hd-modal.hd-modal--sliders iframe {
  width: 100%;
  height: 100%;
}

.hd-modal.hd-modal--sliders .homeday-sliders {
  border: 0;
  height: 475px;
}

.hd-modal__close-button {
  position: absolute;
  right: 16px;
  top: 16px;
  width: 24px;
  height: 24px;
  padding: 0;
  background: rgba(255, 255, 255, 0.1);
  border: 0;
  cursor: pointer;
}

.hd-modal.hd-modal--sliders .hd-modal__close-button {
  top: -24px;
  width: 24px;
  height: 24px;
  right: 0;
  background: #000;
}

.container {
  flex-grow: 1;
  margin: 0 auto;
  position: relative;
  width: auto;
  max-width: 782px !important;
}

.icon-grid__headline {
  margin-bottom: 3rem;
}

.icon-grid__items {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

@media (min-width: 768px) {
  .icon-grid__items {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4rem;
  }
}

@media (min-width: 1024px) {
  .icon-grid__items {
    gap: 0;
  }
}

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

@media (min-width: 768px) {
  .icon-grid__item {
    flex: 1 1 0;
  }
}

@media (min-width: 1024px) {
  .icon-grid__item {
    padding: 0 2.5rem;
  }
}

.icon-grid__item-icon {
  padding: 2rem 0;
}

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