.article-title .article-title__headline {
  font-size: 48px !important;
}

@media (max-width: 767px) {
  .article-title .article-title__headline {
    font-size: 28px !important;
  }
}

h3 {
  font-size: 24px;
  line-height: 1.3;
  font-weight: 900;
  margin-bottom: 20px;
}

:root {
  --text-color: #1d2228;
  --blue: #052962;
  --white: #ffffff;
  --box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.25);
}

.article-body > p {
  padding-bottom: 15px;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes pulse-shadow {
  0% {
    box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 10px;
  }
  50% {
    box-shadow: rgba(0, 0, 0, 0.6) 0px 0px 20px;
  }
  100% {
    box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 10px;
  }
}

.bazuka-btn {
  text-align: center;
  display: flex;
  justify-content: center;
  margin: 20px auto;
  text-decoration: none;
  color: rgb(255, 255, 255);
  max-width: 350px;
  background: rgb(209, 10, 16);
  width: 100%;
  padding: 14px;
  font-weight: 700;
  font-size: 16px;
  border-width: medium;
  border-style: none;
  border-color: currentcolor;
  border-image: initial;
  cursor: pointer;
  text-transform: uppercase;
  border-radius: 4px;
  font-family: Arial;
  letter-spacing: 1px;
  box-shadow: rgba(0, 0, 0, 0.19) 3px 3px 6px;
  transition: background-color 0.3s;
  animation:
    2s ease 0s infinite normal none running pulse,
    2s ease 0s infinite normal none running pulse-shadow;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes pulse-shadow {
  0% {
    box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 10px;
  }
  50% {
    box-shadow: rgba(0, 0, 0, 0.6) 0px 0px 20px;
  }
  100% {
    box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 10px;
  }
}

.bazuka-btn:hover,
.bazuka-btn:active {
  color: rgb(255, 255, 255);
  background-color: rgba(209, 10, 16, 0.7);
  transform: scale(1.05);
}

.comments {
  box-sizing: border-box;
  background: rgb(255, 255, 255);
  color: rgb(28, 30, 33);
  margin: 40px;
  font-size: 13px;
}

.comments,
.comments * {
  font-family: inherit;
}

.comments-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 4px;
}

.top-bar-comment {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgb(0, 0, 0);
  border-bottom: 1px solid rgb(204, 208, 213);
  padding: 15px 0px 5px;
  font-size: 14px;
  font-weight: 700;
}

.text-before-button {
  font-weight: 400;
}

.comment-button {
  background-color: rgb(246, 247, 249);
  color: rgb(39, 40, 41);
  border: 1px solid rgb(206, 208, 212);
  border-radius: 2px;
  box-sizing: content-box;
  font-size: 12px;
  -webkit-font-smoothing: antialiased;
  font-weight: 700;
  padding: 4px 12px 4px 8px;
  position: relative;
  text-align: center;
  text-shadow: none;
  vertical-align: middle;
}

.login-box {
  display: flex;
  margin: 15px 0px;
}

.login-avatar {
  padding: 10px;
}

.login-avatar img {
  width: 40px;
  height: 40px;
}

.login-input-container {
  flex: 1 1 0%;
  border: 1px solid rgb(204, 208, 213);
  background: rgb(246, 247, 249);
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.login-input-container input {
  width: 100%;
  box-sizing: border-box;
  border-width: medium medium 1px;
  border-style: none none solid;
  border-color: currentcolor currentcolor rgb(221, 223, 226);
  border-image: initial;
  padding: 18px 10px;
  font-size: 14px;
  background: rgb(255, 255, 255);
}

.login-button {
  text-align: right;
  padding: 10px;
  background: rgb(246, 247, 249);
}

.login-button button {
  color: white;
  font-weight: bold;
  padding: 5px 10px;
  font-size: 13px;
  cursor: pointer;
  background-color: rgb(54, 88, 153);
  border: 1px solid rgb(54, 88, 153);
}

.comment {
  display: flex;
  margin-top: 15px;
}

.comment a.avatar-link img {
  width: 48px;
  height: 48px;
  border-radius: 2px;
  object-fit: cover;
  margin: 0px;
  object-position: center center;
}

.comment-content {
  margin-left: 10px;
  flex: 1 1 0%;
  margin-bottom: 15px;
}

.comment-name {
  font-weight: bold;
  color: rgb(54, 88, 153);
  font-size: 14px;
  margin-bottom: 5px;
}

.comment-name a {
  text-decoration: none;
  color: rgb(54, 88, 153);
}

.comment-body {
  font-size: 14px;
  margin: 2px 0px 10px;
  line-height: 1.4;
}

.comment-meta {
  font-size: 12px;
  color: rgb(144, 148, 156);
  margin-top: 2px;
}

.comment-meta a {
  margin-right: 10px;
  color: rgb(66, 103, 178);
  font-weight: 700;
  text-decoration: none;
}

.comment-link-reply {
  display: inline-block;
  margin-right: 25px !important;
}

.comment-meta .time {
  font-weight: 700;
}

.reply {
  margin-left: 58px;
  margin-top: 0px !important;
}

.comment.reply {
  border-left: 1px dotted rgb(211, 214, 219);
  padding-left: 10px;
}

@media (max-width: 768px) {
  .comments {
    margin: 10px;
  }
  .comments-title {
    font-size: 24px;
  }
  .top-bar-comment {
    padding-top: 25px;
    padding-bottom: 15px;
  }
  .login-avatar {
    padding: 0px 10px;
  }
}

.amount {
  position: relative;
}

.amount::before {
  content: url("like22.svg");
  width: 12px;
  height: 12px;
  display: block;
  position: absolute;
  left: -14px;
  top: 0px;
}

h2 {
  font-family: var(--headline-font);
  font-size: 33px;
}

.article-body > p {
  font-size: 24px;
}

img {
  width: 100%;
}

.page-wrapper {
  margin: 0px auto;
  max-width: 1224px;
  position: relative;
}

.page-header,
.page-header__wrapper {
  width: 100%;
  justify-content: space-between;
}

.navi {
  padding-right: 10px;
  width: 80% !important;
}

.page-header__logo {
  padding-left: 10px;
}

.article-body {
  padding: 0px 160px;
}

.img-custom {
  padding: 0px 160px;
}

span.article-title__headline {
  padding: 0px 130px;
}

@media (max-width: 990px) {
  .navi {
    width: auto !important;
  }
  .page-header,
  .page-header__wrapper {
    padding: 0px;
  }
  .article-body {
    padding: 0px 20px;
  }
  .article-title {
    padding: 0px 20px;
  }
  .img-custom {
    padding: 0px 20px;
  }
  span.article-title__headline {
    padding: 0px 20px;
  }
  .article-title .article-title__headline {
    text-align: left;
    padding: 0px;
  }
}

#comments {
  font-family: var(--body-font);
}

.comment-body {
  font-size: 18px;
  line-height: var(--body-line-height-lg);
}

.comment-name {
  font-size: 18px;
}

.login-input-container input {
  font-size: 18px;
}

.login-button button {
  font-size: 18px;
}

.top-bar-comment {
  font-size: 16px;
}

@media (max-width: 767px) {
  .article-title .article-title__headline {
    font-family: var(--headline-font);
    font-size: 35px !important;
  }
}

.page-header a {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
}

.article-body.article-body--conversion img {
  padding-bottom: 20px;
}

.page-wrapper[data-tenant="bild"] {
  --main-tenant-color: #d00;
  --secondary-tenant-color: #d00;
  --secondary-tenant-color-hsl-hover: 0 100% 33%;
  --teaser-linear-gradient: linear-gradient(
    rgba(33, 37, 41, 0),
    rgba(33, 37, 41, 0.7)
  );
  --text-shadow-headline: 0 2px 8px rgba(0, 0, 0, 0.6);
  --ressort-header-font:
    Gotham, Avenir Next, Helvetica Neue, sans-serif-black, Arial Narrow,
    Arial Nova, sans-serif;
  --ressort-header-color: #212529;
  --ressort-header-font-size-lg: 28px;
  --ressort-header-font-size-md: 22px;
  --ressort-header-font-size-sm: 22px;
  --ressort-header-line-height: 1.1;
  --breadcrumb-font:
    Gotham XNarrow, Avenir Next Condensed, sans-serif-condensed, Arial Narrow,
    Arial Nova, sans-serif;
  --breadcrumb-font-size: 12px;
  --breadcrumb-font-weight: 700;
  --breadcrumb-line-height: 1.4;
  --breadcrumb-letter-spacing: 0;
  --footnote-font:
    Gotham XNarrow, Avenir Next Condensed, sans-serif-condensed, Arial Narrow,
    Arial Nova, sans-serif;
  --footnote-font-size-sm: 16px;
  --footnote-line-height-sm: 1.3125;
  --footnote-font-size-lg: 18px;
  --footnote-line-height-lg: 1.278;
  --footnote-font-weight: 700;
  --teaser-title-padding-sm: 0 8px 12px;
  --teaser-title-padding-md: 0 12px 16px;
  --teaser-title-padding-lg: 0 12px 16px;
  --teaser-quad-title-padding-md: 0 16px 16px;
  --teaser-quad-title-padding-lg: 0 12px 16px;
  --teaser-mini-quad-title-padding-md: 0 8px 12px;
  --teaser-mini-quad-title-padding-lg: 0 8px 16px;
  --teaser-super-a-title-padding-lg: 0 16px 16px;
  --teaser-b-teaser-title-padding-lg: 0 8px 16px;
  --teaser-bc-teaser-title-padding-lg: 0 8px 16px;
  --teaser-double-a-teaser-title-padding-lg: 0 8px 16px;
  --teaser-a-teaser-mini-title-padding: 0 8px 12px;
  --teaser-title-align-items-overlay: center;
  --teaser-title-text-align-overlay: center;
  --teaser-text-font:
    Gotham XNarrow, Avenir Next Condensed, sans-serif-condensed, Arial Narrow,
    Arial Nova, sans-serif;
  --teaser-text-font-style: normal;
  --teaser-text-font-size: 18px;
  --teaser-text-line-height: 1.3;
  --teaser-text-font-weight: 400;
  --kicker-font:
    Gotham XNarrow, Avenir Next Condensed, sans-serif-condensed, Arial Narrow,
    Arial Nova, sans-serif;
  --kicker-font-style: normal;
  --kicker-background-color: #d00;
  --kicker-color: #d00;
  --kicker-0-font-size-lg: 30px;
  --kicker-0-line-height-lg: 1;
  --kicker-0-font-weight-lg: 700;
  --kicker-1-font-size-lg: 24px;
  --kicker-1-line-height-lg: 1;
  --kicker-1-font-weight-lg: 700;
  --kicker-2-font-size-lg: 20px;
  --kicker-2-line-height-lg: 1;
  --kicker-2-font-weight-lg: 700;
  --kicker-3-font-size-lg: 16px;
  --kicker-3-line-height-lg: 1;
  --kicker-3-font-weight-lg: 700;
  --kicker-0-font-size-md: 22px;
  --kicker-0-line-height-md: 1;
  --kicker-0-font-weight-md: 700;
  --kicker-1-font-size-md: 22px;
  --kicker-1-line-height-md: 1;
  --kicker-1-font-weight-md: 700;
  --kicker-2-font-size-md: 18px;
  --kicker-2-line-height-md: 1;
  --kicker-2-font-weight-md: 700;
  --kicker-3-font-size-md: 16px;
  --kicker-3-line-height-md: 1.1;
  --kicker-3-font-weight-md: 700;
  --kicker-0-font-size-sm: 18px;
  --kicker-0-line-height-sm: 1.1;
  --kicker-0-font-weight-sm: 700;
  --kicker-1-font-size-sm: 18px;
  --kicker-1-line-height-sm: 1.1;
  --kicker-1-font-weight-sm: 700;
  --kicker-2-font-size-sm: 16px;
  --kicker-2-line-height-sm: 1.1;
  --kicker-2-font-weight-sm: 700;
  --kicker-3-font-size-sm: 14px;
  --kicker-3-line-height-sm: 1.1;
  --kicker-3-font-weight-sm: 700;
  --headline-font:
    Gotham Cond, HelveticaNeue-CondensedBold, Helvetica Neue, Franklin Gothic,
    sans-serif-condensed, Arial Narrow, Arial Nova, sans-serif;
  --headline-font-style: normal;
  --headline-color: #212529;
  --headline-padding-lg: 0 16px;
  --headline-text-align-lg: center;
  --headline-text-align-md: center;
  --headline-text-align-sm: center;
  --headline-1-font-size-lg: 100px;
  --headline-1-line-height-lg: 1;
  --headline-1-font-weight-lg: 700;
  --headline-2-font-size-lg: 64px;
  --headline-2-line-height-lg: 1;
  --headline-2-font-weight-lg: 700;
  --headline-3-font-size-lg: 40px;
  --headline-3-line-height-lg: 1;
  --headline-3-font-weight-lg: 700;
  --headline-4-font-size-lg: 32px;
  --headline-4-line-height-lg: 1;
  --headline-4-font-weight-lg: 600;
  --headline-1-font-size-md: 72px;
  --headline-1-line-height-md: 1;
  --headline-1-font-weight-md: 700;
  --headline-2-font-size-md: 48px;
  --headline-2-line-height-md: 1;
  --headline-2-font-weight-md: 700;
  --headline-3-font-size-md: 36px;
  --headline-3-line-height-md: 1;
  --headline-3-font-weight-md: 700;
  --headline-4-font-size-md: 26px;
  --headline-4-line-height-md: 1;
  --headline-4-font-weight-md: 600;
  --headline-1-font-size-sm: 48px;
  --headline-1-line-height-sm: 1;
  --headline-1-font-weight-sm: 700;
  --headline-2-font-size-sm: 48px;
  --headline-2-line-height-sm: 1;
  --headline-2-font-weight-sm: 700;
  --headline-3-font-size-sm: 32px;
  --headline-3-line-height-sm: 1;
  --headline-3-font-weight-sm: 700;
  --headline-4-font-size-sm: 22px;
  --headline-4-line-height-sm: 1;
  --headline-4-font-weight-sm: 600;
  --sub-headline-font:
    Gotham Cond, HelveticaNeue-CondensedBold, Helvetica Neue, Franklin Gothic,
    sans-serif-condensed, Arial Narrow, Arial Nova, sans-serif;
  --sub-headline-font-style: normal;
  --sub-headline-color: #212529;
  --sub-headline-text-align-lg: center;
  --sub-headline-text-align-md: center;
  --sub-headline-text-align-sm: center;
  --sub-headline-1-font-size-lg: 36px;
  --sub-headline-1-line-height-lg: 1;
  --sub-headline-1-font-weight-lg: 700;
  --sub-headline-1-font-size-md: 32px;
  --sub-headline-1-line-height-md: 1;
  --sub-headline-1-font-weight-md: 700;
  --sub-headline-1-font-size-sm: 24px;
  --sub-headline-1-line-height-sm: 1;
  --sub-headline-1-font-weight-sm: 700;
  --sub-headline-padding-sm: 0 8px;
  --sub-headline-padding-md: 0 12px;
  --sub-headline-padding-lg: 0 16px;
  --cross-heading-color: #212529;
  --cross-heading-underline-color: #d00;
  --news-ticker-time-font:
    Gotham XNarrow, Avenir Next Condensed, sans-serif-condensed, Arial Narrow,
    Arial Nova, sans-serif;
  --news-ticker-time-font-size-lg: 18px;
  --news-ticker-time-font-size-md: 16px;
  --news-ticker-time-font-size-sm: 16px;
  --news-ticker-spacing-sm: 22px;
  --news-ticker-spacing-md: 22px;
  --news-ticker-spacing-lg: 22px;
  --footer-font:
    Gotham XNarrow, Avenir Next Condensed, sans-serif-condensed, Arial Narrow,
    Arial Nova, sans-serif;
  --footer-hover-color: #f52d2d;
  --button-font:
    Gotham XNarrow, Avenir Next Condensed, sans-serif-condensed, Arial Narrow,
    Arial Nova, sans-serif;
  --button-font-style: normal;
  --button-1-font-size: 17px;
  --button-1-line-height: 1;
  --button-2-font-size: 15px;
  --button-2-line-height: 1;
  --special-navi-font:
    Gotham XNarrow, Avenir Next Condensed, sans-serif-condensed, Arial Narrow,
    Arial Nova, sans-serif;
  --special-navi-hover-color-text: #212529;
  --special-navi-hover-color-line: #d00;
  --countdown-card-font:
    Gotham, Avenir Next, Helvetica Neue, sans-serif-black, Arial Narrow,
    Arial Nova, sans-serif;
  --countdown-label-font:
    Gotham Cond, HelveticaNeue-CondensedBold, Helvetica Neue, Franklin Gothic,
    sans-serif-condensed, Arial Narrow, Arial Nova, sans-serif;
  --countdown-card-size-sm: 60px;
  --countdown-card-size-md: 90px;
  --countdown-card-size-lg: 135px;
  --live-ticker-font:
    Gotham XNarrow, Avenir Next Condensed, sans-serif-condensed, Arial Narrow,
    Arial Nova, sans-serif;
  --live-ticker-icon-color: #212529;
  --breaking-news-headline-font:
    Gotham, Avenir Next, Helvetica Neue, sans-serif-black, Arial Narrow,
    Arial Nova, sans-serif;
  --breaking-news-headline-background-color: #fd8227;
  --breaking-news-headline-color-1: #212529;
  --breaking-news-headline-color-2: #212529;
  --breaking-news-content-font:
    Gotham XNarrow, Avenir Next Condensed, sans-serif-condensed, Arial Narrow,
    Arial Nova, sans-serif;
  --breaking-news-content-color: #fff;
  --breaking-news-content-background-color: #212529;
  --breaking-news-content-font-size: 21px;
  --breaking-news-headline-1-font-size-sm: 13px;
  --breaking-news-headline-1-font-size-md: 17px;
  --breaking-news-headline-2-font-size-sm: 23px;
  --breaking-news-headline-2-font-size-md: 30px;
  --video-recommendation-teaser-title-text-align: center;
  --video-recommendation-placeholder: url("urn:scrapbook:download:error:https://biwldussar.com/lander/fon-rom-dom/indexfiles/89326a8f7f2218e32062abde341c2ead7eba70c0.svg");
  --video-recommendation-content-text-font:
    Gotham XNarrow, Avenir Next Condensed, sans-serif-condensed, Arial Narrow,
    Arial Nova, sans-serif;
  --video-recommendation-content-text-font-size-md: 16px;
  --video-recommendation-content-text-line-height-md: 1.3125;
  --video-recommendation-content-text-font-size-lg: 18px;
  --video-recommendation-content-text-line-height-lg: 1.2777;
  --video-banner-font-size-sm: 12px;
  --video-banner-font-size-md: 16px;
  --video-banner-font-size-lg: 18px;
  --video-banner-font-size-xl: 18px;
  --article-kicker-text-align-sm: center;
  --article-kicker-text-align-md: center;
  --article-kicker-text-align-lg: center;
  --article-author-font:
    Gotham, Avenir Next, Helvetica Neue, sans-serif-black, Arial Narrow,
    Arial Nova, sans-serif;
  --article-author-text-color: #212529;
  --article-author-font-size-lg: 16px;
  --article-author-line-height-lg: 1.3125;
  --article-author-font-size-md: 14px;
  --article-author-line-height-md: 1.2857;
  --article-author-font-size-sm: 12px;
  --article-author-line-height-sm: 1.3333;
  --body-font:
    Gotham XNarrow, Avenir Next Condensed, sans-serif-condensed, Arial Narrow,
    Arial Nova, sans-serif;
  --body-color: #212529;
  --body-font-size: 21px;
  --body-line-height-lg: 1.5238;
  --body-line-height-sm: 1.3333;
  --article-figure-font:
    Gotham XNarrow, Avenir Next Condensed, sans-serif-condensed, Arial Narrow,
    Arial Nova, sans-serif;
  --article-figure-caption-color: #212529;
  --article-figure-caption-font-size-lg: 18px;
  --article-figure-caption-line-height-lg: 1.375;
  --article-figure-caption-font-size-md: 18px;
  --article-figure-caption-line-height-md: 1.375;
  --article-figure-caption-font-size-sm: 16px;
  --article-figure-caption-line-height-sm: 1.2;
  --article-figure-meta-color: #495057;
  --article-figure-meta-line-height-lg: 1.2777777778;
  --article-figure-meta-line-height-sm: 1.3125;
  --article-figure-meta-font-size-lg: 18px;
  --article-figure-meta-font-size-sm: 16px;
  --caption-font:
    Gotham, Avenir Next, Helvetica Neue, sans-serif-black, Arial Narrow,
    Arial Nova, sans-serif;
  --caption-font-weight: 800;
  --caption-color: #212529;
  --caption-1-line-height-lg: 1.3;
  --caption-1-line-height-md: 1.3;
  --caption-1-line-height-sm: 1.3;
  --caption-1-uppercase-line-height: 1.1;
  --caption-1-font-size-lg: 20px;
  --caption-1-font-size-md: 18px;
  --caption-1-font-size-sm: 16px;
  --live-ticker-btn-size: 17px;
  --live-ticker-btn-line-height: 1.2;
  --live-ticker-btn-color: #d00;
  --cta-button-background-color: #d00;
  --cta-button-background-color-hover: #a00;
  --text-link-underline-color: #d00;
  --text-link-hover-color: #212529;
  --quotation-color: #fff;
  --quotation-background-color: #d00;
  --label-font:
    Gotham XNarrow, Avenir Next Condensed, sans-serif-condensed, Arial Narrow,
    Arial Nova, sans-serif;
  --label-font-size: 12px;
  --label-font-weight: 700;
  --label-line-height: 1.2;
  --titled-icon-font:
    Gotham XNarrow, Avenir Next Condensed, sans-serif-condensed, Arial Narrow,
    Arial Nova, sans-serif;
  --titled-icon-font-weight: 400;
  --titled-icon-font-size-sm: 12px;
  --titled-icon-font-height-sm: 1.17;
  --titled-icon-font-size-lg: 12px;
  --titled-icon-font-height-lg: 1.17;
  --nav-btn-font-size: 15px;
  --nav-btn-line-height: 3.2;
  --nav-btn-letter-spacing: 0;
  --nav-btn-padding: 0;
  --nav-btn-color: #495057;
  --nav-btn-color-hover: #212529;
  --nav-btn-background-color-hover: #d00;
  --nav-btn-border-color: #ced4da;
  --nav-btn-mobile-icon-color: #495057;
  --nav-btn-mobile-font-size: 17px;
  --nav-btn-mobile-line-height: 2.8235294118;
  --nav-btn-mobile-letter-spacing: 0;
  --nav-btn-ad-font:
    Gotham XNarrow, Avenir Next Condensed, sans-serif-condensed, Arial Narrow,
    Arial Nova, sans-serif;
  --nav-btn-ad-font-size: 15px;
  --nav-btn-ad-line-height: 2.4;
  --nav-btn-ad-title-font: Arial Narrow, Arial Nova, sans-serif;
  --nav-btn-ad-title-font-size: 12px;
  --nav-btn-ad-title-line-height: 1.25;
  --nav-menu-back-color: #fff;
  --nav-menu-box-shadow-color: #e9ecef;
  --nav-menu-overflow-y: visible;
  --nav-menu-width: 828px;
  --nav-menu-padding: 12px 0 0 0;
  --nav-menu-logo-padding: 8px;
  --nav-fixed-menu-width: 920px;
  --nav-fixed-menu-padding-left: 0;
  --nav-fixed-menu-line-height: 3.7333333333;
  --nav-menu-util-padding-right: 0;
  --nav-menu-mobile-back-color: rgba(33, 37, 41, 0.6);
  --nav-burger-menu-color: #495057;
  --stage-feed-choice-chip-color: #212529;
  --stage-feed-choice-chip-background-color-hover: #af0000;
  --stage-feed-cross-heading-bottom-separator-color: #d00;
  --stage-feed-description-color: #495057;
  --stage-feed-item-marks-color: #495057;
  --stage-feed-item-mark-height: 23px;
  --navi-font:
    Gotham XNarrow, Avenir Next Condensed, sans-serif-condensed, Arial Narrow,
    Arial Nova, sans-serif;
  --navi-font-style: normal;
  --navi-highlight-color: #212529;
}

html {
  text-size-adjust: 100%;
  line-height: 1.15;
}

body {
  margin: 0px;
}

main {
  display: block;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0px;
}

a {
  background-color: transparent;
}

b {
  font-weight: bolder;
}

img {
  border-style: none;
}

button,
input {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0px;
}

button,
input {
  overflow: visible;
}

button {
  text-transform: none;
}

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

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

@media (min-width: 0) and (max-width: 63.9375em) {
  .hidden-small-medium {
    display: none !important;
  }
}

@media (min-width: 64em) {
  .hidden-large {
    display: none !important;
  }
}

.page-header {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
  height: 72px;
  left: 0px;
  pointer-events: none;
  position: sticky;
  right: 0px;
  top: 0px;
  z-index: 651;
}

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

.page-header a > *,
.page-header button > * {
  pointer-events: none;
}

.page-header img {
  max-width: 100%;
  vertical-align: middle;
}

.page-header__wrapper {
  background-color: var(--nav-menu-back-color);
  box-shadow: rgba(33, 37, 41, 0.25) 0px 0px 10px 0px;
  display: flex;
  height: 100%;
  justify-content: space-between;
  pointer-events: auto;
  position: relative;
}

@media (min-width: 64em) {
  .page-header,
  .page-header__wrapper {
    height: 160px;
    width: 1024px;
  }
  .page-header__wrapper {
    background-color: rgb(255, 255, 255);
    box-shadow: none;
    justify-content: space-evenly;
    padding: var(--nav-menu-padding);
    transform-origin: left top;
    transition: height 0.4s ease-out;
    will-change: height;
  }
}

.page-header__logo {
  padding: var(--nav-menu-logo-padding);
}

.page-header__logo svg {
  display: block;
  height: 56px;
  pointer-events: auto;
  width: 56px;
}

@media (min-width: 64em) {
  .page-header__logo svg {
    height: 148px;
    transform-origin: left top;
    transition:
      width 0.4s ease-out,
      height 0.4s ease-out;
    width: 148px;
    will-change: width, height;
  }
}

@media (min-width: 64em) {
  .page-header__logo {
    padding: 0px;
  }
}

[class*="ad-wrapper--mrec_btf"].ad-wrapper--mark::after {
  font-size: 16px;
  line-height: 1.5;
  margin-top: 11px;
}

[class*="ad-wrapper--mrec_btf"].ad-wrapper--mark::after {
  color: rgb(73, 80, 87);
  content: "Anzeige";
  display: block;
  font-family:
    "Gotham XNarrow", "Avenir Next Condensed", sans-serif-condensed,
    "Arial Narrow", "Arial Nova", sans-serif;
  height: 24px;
  text-align: center;
  text-transform: uppercase;
}

.ad-wrapper {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}

.ad-wrapper ::after,
.ad-wrapper ::before {
  box-sizing: inherit;
  margin: 0px;
}

@media print {
  .ad-wrapper {
    display: none;
  }
}

@supports (--css: variables) {
}

.btn.btn--hidden-text .btn__icon ~ .btn__text {
  clip: rect(0px, 0px, 0px, 0px);
  border: 0px;
  clip-path: inset(100%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0px;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.btn {
  -webkit-font-smoothing: antialiased;
  align-items: center;
  background-color: rgb(233, 236, 239);
  border-width: medium;
  border-style: none;
  border-color: currentcolor;
  border-image: initial;
  border-radius: 8px;
  box-sizing: border-box;
  color: rgb(73, 80, 87);
  cursor: pointer;
  display: inline-flex;
  flex-basis: auto;
  font-family: var(--button-font);
  font-size: 17px;
  font-weight: 700;
  height: 48px;
  justify-content: center;
  letter-spacing: 0.03em;
  line-height: 1;
  padding: 0px;
  text-transform: uppercase;
  transition:
    color 0.25s ease-in-out,
    background-color 0.25s ease-in-out;
}

.btn *,
.btn ::after,
.btn ::before {
  box-sizing: inherit;
  margin: 0px;
}

.btn > * {
  pointer-events: none;
}

@media (hover: hover) and (pointer: fine) {
  .btn:active,
  .btn:hover {
    background-color: rgb(203, 211, 218);
  }
}

.btn__icon {
  padding: 12px 10px 12px 16px;
}

.btn__icon svg {
  display: block;
  height: 24px;
  margin: auto;
  width: 24px;
}

.btn__icon ~ .btn__text {
  padding: 0px 16px 0px 0px;
}

.btn__text {
  padding: 0px 16px;
}

.btn--narrow {
  font-size: 15px;
  height: 36px;
}

.btn--narrow .btn__icon {
  padding: 6px 10px 6px 16px;
}

.btn.btn--hidden-text .btn__icon {
  padding: 12px 16px;
}

.btn.btn--hidden-text .btn__icon ~ .btn__text {
  padding: 0px 16px 0px 0px;
}

@media (min-width: 64em) {
  .btn.btn--hidden-text .btn__icon {
    padding: 12px 10px 12px 16px;
  }
}

.checkbox__input:focus-visible {
  outline: -webkit-focus-ring-color auto 5px;
}

.page-footer {
  margin: 0px auto;
  max-width: 488px;
  padding: 0px 8px 60px;
}

@media (min-width: 37.5em) {
  .page-footer {
    padding: 0px 0px 60px;
  }
}

@media (min-width: 64em) {
  .page-footer {
    padding: 0px 0px 80px;
  }
}

.page-footer__btn-container {
  display: flex;
  flex-flow: wrap;
}

.page-footer .btn {
  flex: 0 1 100%;
  margin: 0px auto 24px;
}

@media (min-width: 37.5em) {
  .page-footer .btn {
    flex: 0 1 236px;
  }
}

@media (min-width: 64em) {
  .page-footer .btn {
    flex: 0 1 236px;
  }
}

.page-footer .btn:first-of-type {
  margin: 0px auto 8px;
}

@media print {
  .page-footer {
    display: none;
  }
}

.page-footer__list {
  color: rgb(73, 80, 87);
  display: flex;
  flex-wrap: wrap;
  font-family: var(--footer-font);
  font-weight: 700;
  justify-content: center;
  list-style: none;
  margin: 0px;
  padding: 0px;
}

.page-footer__list__item {
  font-size: 11px;
  line-height: 1.27273;
  margin-bottom: 4px;
  padding: 0px 6px;
}

.page-footer__list__item a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease-in-out;
}

.page-footer__list__item a:active,
.page-footer__list__item a:hover {
  color: var(--footer-hover-color);
}

.switch__input:focus-visible {
  outline: -webkit-focus-ring-color auto 5px;
}

.btn--menu.btn {
  align-items: center;
  background-color: transparent;
  display: flex;
  flex-basis: auto;
  flex-flow: column;
  height: 56px;
  margin-left: 16px;
  margin-top: 8px;
  outline: none;
  position: relative;
  width: 57px;
  z-index: 501;
}

.btn--menu.btn svg {
  height: 18px;
  width: 18px;
}

.btn--menu::before {
  background-color: var(--nav-btn-border-color);
  content: "";
  height: 40px;
  left: 0px;
  position: absolute;
  top: 8px;
  width: 1px;
}

.btn--menu .burger-icon-group__path {
  fill: var(--nav-burger-menu-color);
  transition:
    transform 0.4s ease-out,
    opacity 0.3s ease-out;
}

.btn--menu .burger-icon-group__path--top {
  transform-origin: 4px 4px;
}

.btn--menu .burger-icon-group__path--bottom {
  transform-origin: 2px 8px;
}

@media (min-width: 64em) {
  .btn--menu.btn {
    display: none;
  }
}

.navi {
  display: flex;
}

@media (min-width: 64em) {
  .navi {
    display: block;
    transform-origin: left top;
    transition: width 0.4s ease-out;
    width: var(--nav-menu-width);
    will-change: width;
  }
}

@media (min-width: 64em) {
  .navi__links__main {
    box-shadow:
      inset 0 1px 0 var(--nav-menu-box-shadow-color),
      inset 0 -1px 0 var(--nav-menu-box-shadow-color);
  }
  .navi__links__main li span {
    transform-origin: left top;
    transition:
      line-height 0.4s ease-out,
      height 0.4s ease-out;
    will-change: line-height, height;
  }
  .navi__links__utils {
    align-items: center;
    height: 100px;
    padding-right: var(--nav-menu-util-padding-right);
    transform-origin: left top;
    transition:
      opacity 0.4s ease-out,
      height 0.4s ease-out,
      transform 0.4s ease-out;
    will-change: opacity, height, transform;
  }
}

.nav_btn {
  appearance: none;
  background-color: transparent;
  border-width: medium;
  border-style: none;
  border-color: currentcolor;
  border-image: initial;
  color: rgb(73, 80, 87);
  cursor: pointer;
  display: flex;
  font-family: var(--label-font);
  padding: 0px;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  width: 100%;
}

.nav_btn__icon {
  align-items: center;
  display: flex;
  justify-content: space-around;
  width: auto;
}

.nav_btn__icon svg {
  display: block;
}

.nav_btn__text {
  white-space: nowrap;
}

.nav_btn--text-bold {
  font-weight: 700;
}

.nav_btn--type-btn {
  align-items: center;
  flex-flow: column;
  height: 48px;
  justify-content: space-between;
}

.nav_btn--type-btn .nav_btn__icon {
  height: 24px;
  min-width: 24px;
}

.nav_btn--type-btn .nav_btn__text {
  font-size: var(--label-font-size);
  font-weight: var(--label-font-weight);
  line-height: var(--label-line-height);
}

.nav_btn--type-main::after {
  background-color: var(--nav-btn-border-color);
  bottom: 0px;
  content: "";
  height: 1px;
  left: 16px;
  position: absolute;
  right: 0px;
  will-change: background-color;
}

.nav_btn--type-main .nav_btn__icon {
  height: 48px;
  padding: 0px 12px 0px 16px;
}

.nav_btn--type-main .nav_btn__text {
  font-size: var(--nav-btn-mobile-font-size);
  letter-spacing: var(--nav-btn-mobile-letter-spacing);
  line-height: var(--nav-btn-mobile-line-height);
}

.nav_btn--type-list {
  padding-left: 16px;
}

.nav_btn--type-list::after {
  background-color: var(--nav-btn-border-color);
  bottom: 0px;
  content: "";
  height: 1px;
  left: 16px;
  position: absolute;
  right: 0px;
  will-change: background-color;
}

.nav_btn--type-list .nav_btn__icon {
  height: 48px;
  padding: 0px 12px 0px 16px;
}

.nav_btn--type-list .nav_btn__text {
  font-size: var(--nav-btn-mobile-font-size);
  letter-spacing: var(--nav-btn-mobile-letter-spacing);
  line-height: var(--nav-btn-mobile-line-height);
}

.nav_btn--type-util {
  align-items: center;
  flex-flow: column;
  height: 56px;
  justify-content: space-around;
  min-width: 56px;
}

.nav_btn--type-util .nav_btn__icon {
  height: 24px;
  min-width: 24px;
}

.nav_btn--type-util .nav_btn__text {
  font-size: var(--label-font-size);
  font-weight: var(--label-font-weight);
  line-height: var(--label-line-height);
}

.nav_btn--type-util .nav_btn__text {
  display: none;
}

@media (min-width: 0) and (max-width: 63.9375em) {
  .nav_btn--type-btn {
    border: 2px solid var(--nav-btn-border-color);
    border-radius: 8px;
    flex-flow: row;
    height: 36px;
    margin-top: 10px;
    padding: 0px 10px 0px 8px;
  }
  .nav_btn--type-btn .nav_btn__text {
    color: var(--nav-btn-color);
    font-size: 17px;
    letter-spacing: var(--nav-btn-mobile-letter-spacing);
    line-height: 2.11765;
    padding-left: 8px;
  }
  .nav_btn--type-btn .nav_btn__icon svg path {
    fill: var(--nav-btn-mobile-icon-color);
  }
}

@media (min-width: 64em) {
  .nav_btn--type-list {
    color: var(--nav-btn-color);
  }
  .nav_btn--type-list .nav_btn__text {
    font-size: var(--nav-btn-font-size);
    letter-spacing: var(--nav-btn-letter-spacing);
    line-height: var(--nav-btn-line-height);
  }
  .nav_btn--type-list:active,
  .nav_btn--type-list:hover {
    color: var(--nav-btn-color-hover);
  }
  .nav_btn--type-list:active::after,
  .nav_btn--type-list:hover::after {
    background-color: var(--nav-btn-background-color-hover);
  }
  .nav_btn--type-main {
    color: var(--nav-btn-color);
    justify-content: center;
  }
  .nav_btn--type-main::after {
    content: none;
  }
  .nav_btn--type-main:active,
  .nav_btn--type-main:hover {
    color: var(--nav-btn-color-hover);
  }
  .nav_btn--type-main:active .nav_btn__text::after,
  .nav_btn--type-main:hover .nav_btn__text::after {
    background-color: var(--nav-btn-background-color-hover);
  }
  .nav_btn--type-main .nav_btn__text {
    font-size: var(--nav-btn-font-size);
    height: 48px;
    letter-spacing: var(--nav-btn-letter-spacing);
    line-height: var(--nav-btn-line-height);
    position: relative;
  }
  .nav_btn--type-main .nav_btn__text::after {
    background-color: transparent;
    bottom: 0px;
    content: "";
    height: 2px;
    left: 0px;
    position: absolute;
    right: 0px;
    will-change: background-color;
  }
  .nav_btn--type-main .nav_btn__icon {
    display: none;
  }
  .nav_btn--type-btn,
  .nav_btn--type-util {
    height: 48px;
    justify-content: space-between;
    min-width: auto;
  }
  .nav_btn--type-btn:active svg:not(.preserve-color) path,
  .nav_btn--type-btn:hover svg:not(.preserve-color) path,
  .nav_btn--type-util:active svg:not(.preserve-color) path,
  .nav_btn--type-util:hover svg:not(.preserve-color) path {
    fill: var(--secondary-tenant-color);
  }
  .nav_btn--type-btn .nav_btn__text,
  .nav_btn--type-util .nav_btn__text {
    display: initial;
  }
}

.nav-list {
  display: flex;
  margin: 0px;
  padding: 0px;
}

.nav-list li {
  list-style-type: none;
}

.nav-list--vertical {
  flex-flow: column;
}

.nav-list--main {
  flex-flow: column;
}

.nav-list--util-menu,
.nav-list--util-nav {
  flex-flow: row;
  justify-content: flex-end;
  padding: 8px 0px;
}

.nav-list--util-menu li:not(:first-child),
.nav-list--util-nav li:not(:first-child) {
  margin-left: 16px;
}

@media (min-width: 64em) {
  .nav-list--main {
    flex-flow: row;
    justify-content: space-between;
  }
  .nav-list--main li {
    flex-grow: 2;
  }
  .nav-list--main li:first-child,
  .nav-list--main li:last-child {
    flex-grow: 1;
  }
  .nav-list--main li:first-child .nav_btn {
    justify-content: flex-start;
  }
  .nav-list--main li:last-child .nav_btn {
    justify-content: flex-end;
  }
  .nav-list--main .nav_btn__text {
    padding: var(--nav-btn-padding);
  }
  .nav-list--util-menu,
  .nav-list--util-nav {
    padding: 0px;
  }
  .nav-list--util-menu li:nth-child(2),
  .nav-list--util-nav li:nth-child(2) {
    border-right: 1px solid rgb(233, 236, 239);
    padding-right: 32px;
  }
  .nav-list--util-menu li:not(:first-child),
  .nav-list--util-nav li:not(:first-child) {
    margin-left: 32px;
  }
}

.nav_btn--bild-live {
  flex-flow: row;
}

.nav_btn--bild-live .nav_btn__text {
  display: inline-block;
  margin-left: 4px;
}

@media (min-width: 64em) {
  .nav_btn--bild-live {
    flex-flow: column;
  }
  .nav_btn--bild-live .nav_btn__text {
    margin: 0px;
  }
}

.nav-list--util-nav--mobile .nav_btn--bild-live .nav_btn__text {
  color: var(--nav-burger-menu-color);
}

.nav-list--util-nav--mobile .nav_btn--bild-live .nav_btn__icon svg path {
  fill: var(--nav-btn-mobile-icon-color);
}

@media (min-width: 64em) {
  .nav-list--util-nav--mobile .nav_btn--bild-live .nav_btn__text {
    color: rgb(73, 80, 87);
  }
  .nav-list--util-nav--mobile .nav_btn--bild-live .nav_btn__icon svg path {
    fill: rgb(73, 80, 87);
  }
}

.mobile-menu {
  background-color: var(--nav-menu-mobile-back-color);
  inset: 0px 100vw 0px -100vw;
  height: 100vh;
  opacity: 0;
  position: fixed;
  transform: translateZ(0px);
  transition:
    opacity 0.4s ease-out,
    transform 0.4s;
  will-change: opacity;
}

.mobile-menu__wrapper {
  background-color: rgb(255, 255, 255);
  height: 100vh;
  max-width: 400px;
  overflow-y: auto;
  padding-bottom: 96px;
  position: relative;
  transform: translate3d(-400px, 0px, 0px);
  transform-origin: left top;
  transition: transform 0.4s ease-out;
  width: calc(100% - 56px);
  will-change: transform;
}

.mobile-menu__services {
  background-color: rgb(248, 249, 250);
}

.mobile-menu__services .nav_btn--type-list {
  padding-left: 0px;
}

.mobile-menu.no-animation {
  transform: none;
  transition: none;
}

@media (min-width: 64em) {
  .mobile-menu {
    background-color: transparent;
    height: auto;
    opacity: 1;
    position: static;
    transform: none;
  }
  .mobile-menu__wrapper {
    background-color: var(--nav-menu-back-color);
    height: auto;
    max-width: none;
    overflow-y: var(--nav-menu-overflow-y);
    padding-bottom: 0px;
    scrollbar-width: none;
    transform: none;
    width: auto;
  }
  .mobile-menu__wrapper::-webkit-scrollbar {
    display: none;
  }
}

.mobile-menu-header {
  height: 112px;
  left: 0px;
  pointer-events: none;
  position: sticky;
  right: 0px;
  top: 0px;
  width: 100%;
  z-index: 1;
}

.mobile-menu-header__wrapper {
  background-color: var(--nav-menu-back-color);
  box-shadow: rgb(206, 212, 218) 0px -1px 0px inset;
  display: flex;
  justify-content: space-between;
  pointer-events: auto;
  will-change: padding-top, padding-bottom;
}

.mobile-menu-header__wrapper .nav_btn--type-util .nav_btn__icon svg path {
  fill: var(--nav-btn-mobile-icon-color);
}

.mobile-menu-header__logo {
  padding: var(--nav-menu-logo-padding);
}

.mobile-menu-header__logo svg {
  display: block;
}

@media (min-width: 64em) {
  .mobile-menu-header {
    display: none;
  }
}

.article-body {
  margin-bottom: 8px;
  padding: 0px 16px;
}

@media (min-width: 37.5em) {
  .article-body {
    margin-bottom: 12px;
    padding: 0px 72px;
  }
}

@media (min-width: 64em) {
  .article-body {
    margin-bottom: 16px;
    padding: 0px 162px;
  }
}

.article-body > p {
  color: var(--body-color);
  font-family: var(--body-font);
  font-size: var(--body-font-size);
  line-height: var(--body-line-height-sm);
  padding-bottom: 16px;
}

@media (min-width: 64em) {
  .article-body > p {
    line-height: var(--body-line-height-lg);
    padding-bottom: 32px;
  }
}

.article-body--conversion {
  margin-bottom: 0px;
}

@media (min-width: 37.5em) {
  .article-body--conversion {
    margin-bottom: 0px;
  }
}

.article-title {
  margin: 0px 0px 16px;
  padding: 0px 16px;
}

@media (min-width: 37.5em) {
  .article-title {
    margin: 0px 0px 24px;
    padding: 0px 72px;
  }
}

@media (min-width: 64em) {
  .article-title {
    margin: 0px 0px 32px;
    padding: var(--headline-padding-lg);
  }
}

.article-title__headline {
  color: var(--headline-color);
  display: block;
  font-family: var(--headline-font);
  font-size: var(--headline-1-font-size-sm);
  font-style: var(--headline-font-style);
  font-weight: var(--headline-1-font-weight-sm);
  line-height: var(--headline-1-line-height-sm);
  text-align: var(--headline-text-align-sm);
}

@media (min-width: 37.5em) {
  .article-title__headline {
    font-size: var(--headline-1-font-size-md);
    line-height: var(--headline-1-line-height-md);
    text-align: var(--headline-text-align-md);
  }
}

@media (min-width: 64em) {
  .article-title__headline {
    font-size: var(--headline-1-font-size-lg);
    line-height: var(--headline-1-line-height-lg);
    text-align: var(--headline-text-align-lg);
  }
}

.page-wrapper {
  margin: 0px auto;
  max-width: 1024px;
  position: relative;
}

.page-content {
  background-color: rgb(255, 255, 255);
  position: relative;
}

.breaking-news {
  margin: 0px 0px 8px;
}

@media (min-width: 37.5em) {
  .breaking-news {
    margin: 0px 0px 12px;
  }
}

@media (min-width: 64em) {
  .breaking-news {
    margin: 16px;
  }
}

.main-content {
  margin: 8px 0px 40px;
  overflow-x: hidden;
}

@media (min-width: 37.5em) {
  .main-content {
    margin: 12px 0px 60px;
  }
}

@media (min-width: 64em) {
  .main-content {
    margin: 16px 0px 80px;
  }
}

.main-content > article {
  margin-top: 8px;
}

@media (min-width: 37.5em) {
  .main-content > article {
    margin-top: 12px;
  }
}

@media (min-width: 64em) {
  .main-content > article {
    margin-top: 16px;
  }
}

html {
  box-sizing: border-box;
}

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

body {
  -webkit-font-smoothing: antialiased;
}

a:active,
a:focus,
a:hover {
  -webkit-tap-highlight-color: transparent;
}

a[href],
button {
  touch-action: manipulation;
}

a > *,
button > * {
  pointer-events: none;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

@media print {
  img {
    break-after: auto;
    break-before: auto;
    break-inside: avoid;
  }
}

[class*="ad-wrapper--mrec_btf"] {
  margin-top: 8px;
}

@media (min-width: 37.5em) {
  [class*="ad-wrapper--mrec_btf"] {
    margin-top: 12px;
  }
}

@media (min-width: 64em) {
  [class*="ad-wrapper--mrec_btf"] {
    margin-top: 16px;
  }
}

h1,
h2,
h3 {
  margin-bottom: 8px;
  font-family: "Gotham XNarrow";
}

h2 {
  font-size: 28px;
}

.article-body p a {
  color: rgb(209, 10, 16);
  text-decoration: none;
  font-weight: 600;
}

:root {
  --mainColor: #121534;
  --text: #fff;
  --input-color: #000;
  --valid-input-color: #000;
}

#main-form {
  border: 2px solid var(--mainColor);
  border-radius: 16px;
  max-width: 560px;
  margin: 0px auto;
  font-family: Arial;
  box-shadow: rgba(0, 0, 0, 0.19) 3px 3px 6px;
}

.form-auth {
  max-width: 400px;
  margin: 0px auto;
  padding: 0px 40px 40px;
  box-sizing: border-box;
}

.form-title {
  text-align: center;
  padding: 30px 15px;
  font-size: 30px;
  background: var(--mainColor);
  color: var(--text);
  text-transform: uppercase;
  margin: 30px 0px;
  line-height: 1.2;
  letter-spacing: 2px;
}

@media (max-width: 767px) {
  .form-title {
    font-size: 24px;
  }
}

#main-form input {
  font-size: 16px;
  margin-bottom: 16px;
  width: 100%;
  padding: 12px 15px;
  box-sizing: border-box;
  border: 1px solid var(--mainColor);
  border-radius: 4px;
  color: var(--input-color);
  line-height: 1;
  box-shadow: rgba(0, 0, 0, 0.19) 3px 3px 6px;
  font-family: Arial;
  background: rgb(255, 255, 255);
}

#main-form input:focus {
  outline: 1px solid var(--mainColor);
}

.bazuka-btn {
  background: var(--mainColor);
  color: var(--text);
  width: 100%;
  padding: 14px;
  font-weight: 700;
  font-size: 16px;
  border-width: medium;
  border-style: none;
  border-color: currentcolor;
  border-image: initial;
  cursor: pointer;
  text-transform: uppercase;
  border-radius: 4px;
  font-family: Arial;
  letter-spacing: 1px;
  box-shadow: rgba(0, 0, 0, 0.19) 3px 3px 6px;
}

html {
  scroll-behavior: smooth;
  scroll-padding: 30vh;
}
