/* Source common/css/styles/screen/accessibility.scss */

.visible_for_screen_reader {
  border: 0;
  clip: rect(0.0625rem, 0.0625rem, 0.0625rem, 0.0625rem);
  height: 0.0625rem;
  left: -624.9375rem;
  overflow: hidden;
  padding: 0;
  position: absolute;
  top: -624.9375rem;
  width: 0.0625rem;
}

abbr {
  text-decoration: none;
}

/* Source common/css/styles/screen/accordion.scss */

[role=tablist] {
  margin-bottom: 1.368em;
}

* + [role=tablist] {
  margin-top: 1.368em;
}

[role=tab] {
  align-items: center;
  border-top: 0.125rem solid #B0C700;
  cursor: pointer;
  display: flex;
  font-size: 100%;
  margin: 0 0 0.342em;
  min-width: 100%;
  padding: 0.456em 0;
}
[role=tab] .title {
  flex-basis: 100%;
  margin-right: 0.684em;
  overflow: hidden;
  text-overflow: ellipsis;
}
[role=tab] .icon {
  display: block;
  fill: #013382;
  height: 1.5rem;
  transform: rotate(90deg);
  width: 1.5rem;
}
[role=tab][aria-expanded=true] {
  border-color: #013382;
}
[role=tab][aria-expanded=true] .icon {
  transform: rotate(-90deg);
}
[role=tab]:focus {
  border-color: #013382;
  outline: 0;
}
[role=tab]:focus .title {
  color: #013382;
}

[role=tabpanel] {
  height: auto;
  margin: 0;
  max-height: 0;
  overflow: hidden;
}
[role=tabpanel][aria-hidden=false] {
  margin: 1.368em 0;
  max-height: none;
}
[role=tabpanel].animated {
  transition: all 600ms;
}

/* Source common/css/styles/screen/address.scss */

.contact_wrapper {
  display: flex;
  flex-wrap: wrap;
}
.contact_wrapper p {
  margin-right: 2.052em;
}
.contact_wrapper .postal_address > span {
  display: block;
}

.contact {
  display: flex;
}
.contact strong {
  font-weight: 400;
  min-width: 1.5625rem;
}

.address .button_overview {
  margin-bottom: 1.368em;
}

.individual_address {
  margin: 1.368em 0;
}
.individual_address .logo_company {
  width: 12.5rem;
  display: block;
}
@media (min-width: 20rem) {
  .individual_address .logo_company {
    width: calc(12.5rem + 6.25 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .individual_address .logo_company {
    width: 18.75rem;
  }
}

/* Source common/css/styles/screen/animation.scss */

[data-animated] {
  opacity: 0;
  transform: translateY(1.5625rem);
  transition: all 1200ms ease-out;
}
[data-animated].animated {
  opacity: 1;
  transform: translateY(0);
}

[data-delay="1"] {
  transition-delay: 600ms;
}

[data-delay="2"] {
  transition-delay: 900ms;
}

/* Source common/css/styles/screen/aside.scss */


/* Source common/css/styles/screen/atikon_address.scss */

.atikon_logo {
  height: 100%;
}

/* Source common/css/styles/screen/author.scss */

.author_ver {
  display: inline-block;
  fill: #a0a0a0;
  height: 4.6875rem;
  line-height: 4.6875rem;
  position: absolute;
  right: 0.2em;
  top: 0;
  width: 0.5625rem;
}

/* Source common/css/styles/screen/breadcrumbs.scss */

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0.684em;
}
.breadcrumbs p {
  margin: 0 0.342em 0 0;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
}
.breadcrumbs .separator {
  margin: 0 0.342em;
}

/* Source common/css/styles/screen/button.scss */

.button {
  background-color: transparent;
  border: 0;
  color: #013382;
  display: inline-block;
  text-decoration: none;
  transition: background 300ms, border 300ms, color 300ms;
  user-select: none;
}
.button > span {
  min-height: 2.75rem;
  align-items: center;
  display: flex;
  justify-content: center;
}
@media (min-width: 20rem) {
  .button > span {
    min-height: calc(2.75rem + 0 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .button > span {
    min-height: 2.75rem;
  }
}
.button .icon {
  fill: #013382;
  flex-shrink: 0;
  height: 2.25rem;
  transition: fill 300ms;
  width: 2.25rem;
  margin-left: 0.684em;
}
.button .text {
  font-weight: 500;
}
.button.light_button {
  color: #fff;
}
.button.light_button .icon {
  fill: #fff;
}
.button:hover .icon, .button:focus .icon, .button:active .icon, .button.active .icon {
  fill: #B0C700;
}
.button:hover .icon .first_dot, .button:focus .icon .first_dot, .button:active .icon .first_dot, .button.active .icon .first_dot {
  animation: jump 300ms linear;
}
.button:hover .icon .second_dot, .button:focus .icon .second_dot, .button:active .icon .second_dot, .button.active .icon .second_dot {
  animation: jump 300ms linear 150ms;
}
.button:hover .icon .third_dot, .button:focus .icon .third_dot, .button:active .icon .third_dot, .button.active .icon .third_dot {
  animation: jump 300ms linear 300ms;
}
.button:hover .icon.no_color_change, .button:focus .icon.no_color_change, .button:active .icon.no_color_change, .button.active .icon.no_color_change {
  fill: #013382;
}
.button:hover.light_button .icon, .button:focus.light_button .icon, .button:active.light_button .icon, .button.active.light_button .icon {
  fill: #fff;
}
.button.bottom_spacing {
  margin-bottom: 0.684em;
}

.button_overview {
  display: flex;
  flex-wrap: wrap;
}
.button_overview .button {
  margin-right: 2.052em;
}

/* Source common/css/styles/screen/bypass_blocks.scss */

.bypass_blocks {
  left: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  z-index: 6000;
}
.bypass_blocks li {
  display: block;
  width: 20rem;
}
.bypass_blocks a {
  background: #fff;
  color: #013382;
  display: inline-block;
  font-size: 85%;
  height: 0.0625rem;
  left: -624.9375rem;
  overflow: hidden;
  padding: 0.342em;
  position: absolute;
  text-decoration: underline;
  top: -624.9375rem;
  width: 0.0625rem;
}
.bypass_blocks a:focus {
  color: #013382;
  height: auto;
  left: 0.342em;
  top: 0.342em;
  width: auto;
}

/* Source common/css/styles/screen/company_logo.scss */

.company_logo {
  width: 10.4375rem;
  display: block;
  max-width: 16.125rem;
  transition: all 300ms ease-out;
}
@media (min-width: 20rem) {
  .company_logo {
    width: calc(10.4375rem + 5.6875 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .company_logo {
    width: 16.125rem;
  }
}
.scrolled_down .company_logo {
  max-width: 10.4375rem;
}

/* Source common/css/styles/screen/contact_person.scss */


/* Source common/css/styles/screen/cookie_banner.scss */

.cookie_banner {
  align-items: center;
  background: #fff;
  border-top: 0.125rem solid #B0C700;
  bottom: 0;
  display: flex;
  flex-direction: column;
  font-size: 85%;
  left: 0;
  position: fixed;
  right: 0;
  text-align: center;
  z-index: 9000;
}
@media (min-width: 35rem) {
  .cookie_banner {
    flex-direction: row;
    text-align: left;
  }
}
.cookie_banner p {
  font-size: 85%;
  margin: 0;
  padding: 0.912em 0.684em 0.912em 1.368em;
  width: 100%;
}
.cookie_banner .close {
  cursor: pointer;
  flex: 1 0 auto;
  margin-bottom: 0.684em;
}
@media (min-width: 35rem) {
  .cookie_banner .close {
    margin: 0 0.684em;
  }
}
.cookie_banner .close > span {
  min-height: 2.5rem;
}
@media (min-width: 20rem) {
  .cookie_banner .close > span {
    min-height: calc(2.5rem + 0 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .cookie_banner .close > span {
    min-height: 2.5rem;
  }
}
.cookie_banner .close .text {
  hyphens: none;
  padding: 0 0.2736em;
}

/* Source common/css/styles/screen/disclaimer.scss */

.disclaimer {
  background: #f1f3f5;
  color: #566378;
  font-size: 85%;
  margin: 1.368em 0;
  padding: 0.912em 1.368em;
}
.disclaimer a {
  display: inline;
}

/* Source common/css/styles/screen/downloads.scss */

.download_overview {
  margin-bottom: 2.736em;
}
.download_overview .entry {
  background-color: #B0C700;
  border-bottom-right-radius: 2.4375rem;
  border-top-left-radius: 2.4375rem;
  box-shadow: 0 0.375rem 0.375rem 0 rgba(0, 0, 0, 0.16);
  flex-grow: 1;
  margin-bottom: 1.368em;
  overflow: hidden;
  padding: 2.052em 2.052em;
  position: relative;
  transition: all 300ms ease-out;
}
.download_overview .entry:before {
  bottom: 0;
  content: "";
  height: 1.1875rem;
  left: 0;
  position: absolute;
  right: 0;
  transform: translateY(100%);
  transition: all 300ms ease-out;
}
.download_overview .entry .title {
  padding-top: 0;
}
.download_overview .entry .text {
  color: #013382;
}
.download_overview .entry .links_wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.download_overview .entry .links_wrapper a {
  align-items: center;
  display: flex;
  font-weight: 500;
  justify-content: flex-start;
  margin-right: 1.368em;
  margin-top: 0.684em;
  text-decoration: none;
}
.download_overview .entry .links_wrapper a .icon {
  height: 1.5625rem;
  min-width: 1.5625rem;
  width: 1.5625rem;
  display: block;
  fill: #013382;
  margin-right: 0.912em;
  transition: all 300ms ease-out;
}
@media (min-width: 20rem) {
  .download_overview .entry .links_wrapper a .icon {
    height: calc(1.5625rem + 0.8125 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .download_overview .entry .links_wrapper a .icon {
    height: 2.375rem;
  }
}
@media (min-width: 20rem) {
  .download_overview .entry .links_wrapper a .icon {
    min-width: calc(1.5625rem + 0.8125 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .download_overview .entry .links_wrapper a .icon {
    min-width: 2.375rem;
  }
}
@media (min-width: 20rem) {
  .download_overview .entry .links_wrapper a .icon {
    width: calc(1.5625rem + 0.8125 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .download_overview .entry .links_wrapper a .icon {
    width: 2.375rem;
  }
}
.download_overview .entry .links_wrapper a:hover .icon, .download_overview .entry .links_wrapper a:focus .icon {
  fill: #013382;
  transform: scale(0.9) rotate(-5deg);
}

/* Source common/css/styles/screen/dropdown_menu.scss */

.dropdown_menu {
  display: none;
}
@media (min-width: 75rem) {
  .dropdown_menu {
    align-items: stretch;
    display: flex;
    flex-grow: 1;
    justify-content: flex-end;
  }
}
.dropdown_menu > ul {
  align-items: stretch;
  display: flex;
  margin-left: 0.912em;
  position: relative;
}
.dropdown_menu > ul li {
  position: relative;
}
.dropdown_menu > ul li:hover > a:after, .dropdown_menu > ul li.hover > a:after {
  left: 0;
  right: 0;
}
.dropdown_menu > ul li:hover > ul, .dropdown_menu > ul li.hover > ul {
  visibility: visible;
}
.dropdown_menu > ul li .icon {
  box-sizing: content-box;
  display: inline-block;
  height: 0.625rem;
  padding-left: 0.684em;
  width: 0.625rem;
}
.dropdown_menu > ul > li {
  align-items: stretch;
  display: flex;
  padding: 0 0.684em;
}
.dropdown_menu > ul > li > a {
  letter-spacing: calc((0.875rem + 0.375 * (100vw - 20rem) / (73.75)) / 1000 * 40);
  font-size: 0.875rem;
  align-items: center;
  align-self: center;
  color: #013382;
  display: flex;
  font-size: 105%;
  font-weight: 500;
  hyphens: none;
  padding: 0.456em 0;
  position: relative;
  text-decoration: none;
  white-space: nowrap;
}
@media (min-width: 20rem) {
  .dropdown_menu > ul > li > a {
    font-size: calc(0.875rem + 0.375 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .dropdown_menu > ul > li > a {
    font-size: 1.25rem;
  }
}
.dropdown_menu > ul > li > a.active:after {
  left: 0;
  right: 0;
}
.dropdown_menu > ul > li > a:after {
  background-color: #B0C700;
  border-radius: 0.125rem;
  bottom: 0;
  content: "";
  height: 0.125rem;
  left: 50%;
  position: absolute;
  right: 50%;
  transition: all 300ms ease-out;
}
.dropdown_menu > ul > li ul {
  background-color: rgba(1, 51, 130, 0.9);
  left: 0;
  padding: 0.684em 0;
  position: absolute;
  top: 100%;
  visibility: hidden;
  z-index: 1000;
}
.dropdown_menu > ul > li ul:target {
  visibility: visible;
}
.dropdown_menu > ul > li ul a {
  color: #fff;
  display: flex;
  hyphens: none;
  justify-content: space-between;
  padding: 0.2736em 0.912em;
  text-decoration: none;
  white-space: nowrap;
  width: 100%;
}
.dropdown_menu > ul > li ul a .title {
  align-items: center;
  bottom: 0;
  display: flex;
  justify-content: flex-start;
  position: absolute;
  top: 0;
}
.dropdown_menu > ul > li ul a:after {
  color: transparent;
  content: attr(title);
  display: flex;
  font-weight: 700;
  overflow: hidden;
  position: relative;
  visibility: hidden;
}
.dropdown_menu > ul > li ul a:hover {
  font-weight: 700;
}
.dropdown_menu > ul > li ul a:focus {
  outline-offset: -0.125rem;
}
.dropdown_menu > ul > li ul a.active {
  font-weight: 700;
}
.dropdown_menu > ul > li:nth-last-child(2) ul {
  left: auto;
  right: 0;
}
.dropdown_menu > ul > li:last-child {
  padding: 0 0 0 0.912em;
}
.dropdown_menu > ul > li:last-child ul {
  left: auto;
  right: 0;
}

/* Source common/css/styles/screen/footer.scss */

footer {
  overflow: hidden;
  position: relative;
  padding-top: 6.84em;
}
@media (min-width: 61.875rem) {
  footer {
    padding-top: 13.68em;
  }
}

.footer_content {
  position: relative;
  z-index: 1;
}
.footer_content:before {
  background-color: rgba(1, 51, 130, 0.9);
  bottom: -100vw;
  content: "";
  left: -50vw;
  position: absolute;
  right: -50vw;
  top: 100%;
  transform: translateY(-6.84em);
  z-index: -1;
}
.footer_content .footer_address {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 1.368em;
}
.footer_content .footer_address a {
  color: #566378;
}
.footer_content .footer_address .company_logo_footer {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: center;
  margin-bottom: 1.368em;
  max-width: 12.8125rem;
}
.footer_content .footer_address .company_name {
  font-weight: 700;
  margin-bottom: 1.368em;
}
.footer_content .footer_address .company_name .addition {
  display: block;
}
.footer_content .footer_address .contact_wrapper p {
  margin-bottom: 1.368em;
}
.footer_content .footer_address .contact_wrapper p:last-child {
  margin-bottom: 0;
}

.related_links {
  position: relative;
  z-index: 2;
}
.related_links ul {
  font-size: 85%;
  display: flex;
  color: #fff;
  justify-content: flex-start;
  padding: 3.42em 0 0.912em 0;
}
.related_links ul a {
  color: #fff;
}
.related_links ul a:hover, .related_links ul a:focus, .related_links ul a:active {
  color: #fff;
}
.related_links ul a.active {
  text-decoration: none;
}
.related_links ul .divider {
  margin: 0 0.3em;
}

.footer_background {
  background-position: center center;
  background-size: cover;
  bottom: 0;
  height: auto;
  left: 0;
  margin: 1.368em auto 0 auto;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
.footer_background:after {
  background-color: #EBD9C4;
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0.3;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
.footer_background .triangle_wrapper {
  bottom: auto;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: translateY(-100%);
}
.footer_background .triangle_wrapper .triangle {
  height: 5.625rem;
  position: relative;
  transform-origin: top right;
  transform: rotate(-5deg);
}
@media (min-width: 20rem) {
  .footer_background .triangle_wrapper .triangle {
    height: calc(5.625rem + 8.5 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .footer_background .triangle_wrapper .triangle {
    height: 14.125rem;
  }
}
.footer_background .triangle_wrapper .triangle:before {
  background-color: #fff;
  top: -50vw;
  box-shadow: 0 0.3125rem 1.25rem 0 rgba(1, 51, 130, 0.39) inset;
  content: "";
  left: -50vw;
  position: absolute;
  right: -50vw;
  bottom: 0;
}

/* Source common/css/styles/screen/form.scss */

.file {
  display: flex;
  flex-basis: 65%;
  margin: 0 0 0.912em;
  position: relative;
  height: 2.75rem;
}
@media (min-width: 20rem) {
  .file {
    height: calc(2.75rem + 0 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .file {
    height: 2.75rem;
  }
}
.file.error .file_name {
  border-color: #013382;
}
.file .file_name {
  background: #fff;
  border: 0.125rem solid #f1f3f5;
  color: #566378;
  flex: 0 1 100%;
  overflow: hidden;
  padding: 0 0.684em;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 8.125rem;
  line-height: 2.5rem;
  height: 2.75rem;
}
@media (min-width: 20rem) {
  .file .file_name {
    line-height: calc(2.5rem + 0 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .file .file_name {
    line-height: 2.5rem;
  }
}
@media (min-width: 20rem) {
  .file .file_name {
    height: calc(2.75rem + 0 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .file .file_name {
    height: 2.75rem;
  }
}
.file .file_button {
  background-color: #013382;
  color: #fff;
  display: flex;
  flex: 1 0 auto;
  font-weight: 500;
  padding: 0 1.368em;
  transition: all 150ms ease-out;
  z-index: 10;
}
.file .file_button > span {
  min-height: 2.75rem;
  align-items: center;
  display: flex;
  justify-content: center;
}
@media (min-width: 20rem) {
  .file .file_button > span {
    min-height: calc(2.75rem + 0 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .file .file_button > span {
    min-height: 2.75rem;
  }
}
.file .file_button:focus, .file .file_button:active, .file .file_button.focus {
  background-color: #B0C700;
  color: #013382;
}
.file [type=file] {
  bottom: 0;
  color: transparent;
  cursor: pointer;
  display: block;
  left: 0;
  margin: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 20;
  height: 2.75rem;
}
@media (min-width: 20rem) {
  .file [type=file] {
    height: calc(2.75rem + 0 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .file [type=file] {
    height: 2.75rem;
  }
}
.file [type=file]:hover ~ .file_button {
  background-color: #B0C700;
  color: #013382;
}
.file [type=file]:active ~ .file_button {
  background-color: #B0C700;
  color: #013382;
}

@media (min-width: 35rem) {
  .formular .button_wrapper {
    text-align: right;
  }
}

button {
  cursor: pointer;
  margin: 0.684em 0;
  outline: 0;
  overflow: hidden;
  width: 100%;
  height: 2.75rem;
}
@media (min-width: 20rem) {
  button {
    height: calc(2.75rem + 0 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  button {
    height: 2.75rem;
  }
}
@media (min-width: 35rem) {
  button {
    width: auto;
  }
}
button::-moz-focus-inner {
  border: 0;
}

/* Source common/css/styles/screen/grid.scss */

.container {
  margin: 0 auto;
  max-width: 100rem;
  min-width: 20rem;
  padding: 0 0.9375rem;
}
@media (min-width: 20rem) {
  .container {
    padding: 0 calc(0.9375rem + 2.1875 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .container {
    padding: 0 3.125rem;
  }
}

.row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-left: -0.46875rem;
  margin-right: -0.46875rem;
}
@media (min-width: 20rem) {
  .row {
    margin: 0 calc((-0.9375rem / 2) - (2.1875 / 2) * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .row {
    margin: 0 -1.5625rem;
  }
}
.row.no_column_margin {
  margin-left: 0;
  margin-right: 0;
}
.row.no_column_margin > [class*=span] {
  padding-left: 0;
  padding-right: 0;
}
.row.half_column_margin {
  margin-left: -0.234375rem;
  margin-right: -0.234375rem;
}
@media (min-width: 20rem) {
  .row.half_column_margin {
    margin: 0 calc((-0.9375rem / 4) - (2.1875 / 4) * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .row.half_column_margin {
    margin: 0 -0.78125rem;
  }
}
.row.half_column_margin > [class*=span] {
  padding-left: 0.234375rem;
  padding-right: 0.234375rem;
}
@media (min-width: 20rem) {
  .row.half_column_margin > [class*=span] {
    padding: 0 calc((0.9375rem / 4) + (2.1875 / 4) * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .row.half_column_margin > [class*=span] {
    padding: 0 0.78125rem;
  }
}

@media (min-width: 20rem) {
  .row.around_xsmall {
    justify-content: space-around;
  }
  .row.between_xsmall {
    justify-content: space-between;
  }
  .row.start_xsmall {
    justify-content: flex-start;
  }
  .row.center_xsmall {
    justify-content: center;
  }
  .row.end_xsmall {
    justify-content: flex-end;
  }
  .row.top_xsmall {
    align-items: flex-start;
  }
  .row.middle_xsmall {
    align-items: center;
  }
  .row.bottom_xsmall {
    align-items: flex-end;
  }
  .row.baseline_xsmall {
    align-items: baseline;
  }
  .row.reverse_xsmall {
    flex-direction: row-reverse;
  }
}
@media (min-width: 30rem) {
  .row.around_small {
    justify-content: space-around;
  }
  .row.between_small {
    justify-content: space-between;
  }
  .row.start_small {
    justify-content: flex-start;
  }
  .row.center_small {
    justify-content: center;
  }
  .row.end_small {
    justify-content: flex-end;
  }
  .row.top_small {
    align-items: flex-start;
  }
  .row.middle_small {
    align-items: center;
  }
  .row.bottom_small {
    align-items: flex-end;
  }
  .row.baseline_small {
    align-items: baseline;
  }
  .row.reverse_small {
    flex-direction: row-reverse;
  }
}
@media (min-width: 35rem) {
  .row.around_medium {
    justify-content: space-around;
  }
  .row.between_medium {
    justify-content: space-between;
  }
  .row.start_medium {
    justify-content: flex-start;
  }
  .row.center_medium {
    justify-content: center;
  }
  .row.end_medium {
    justify-content: flex-end;
  }
  .row.top_medium {
    align-items: flex-start;
  }
  .row.middle_medium {
    align-items: center;
  }
  .row.bottom_medium {
    align-items: flex-end;
  }
  .row.baseline_medium {
    align-items: baseline;
  }
  .row.reverse_medium {
    flex-direction: row-reverse;
  }
}
@media (min-width: 47.5rem) {
  .row.around_large {
    justify-content: space-around;
  }
  .row.between_large {
    justify-content: space-between;
  }
  .row.start_large {
    justify-content: flex-start;
  }
  .row.center_large {
    justify-content: center;
  }
  .row.end_large {
    justify-content: flex-end;
  }
  .row.top_large {
    align-items: flex-start;
  }
  .row.middle_large {
    align-items: center;
  }
  .row.bottom_large {
    align-items: flex-end;
  }
  .row.baseline_large {
    align-items: baseline;
  }
  .row.reverse_large {
    flex-direction: row-reverse;
  }
}
@media (min-width: 61.875rem) {
  .row.around_xlarge {
    justify-content: space-around;
  }
  .row.between_xlarge {
    justify-content: space-between;
  }
  .row.start_xlarge {
    justify-content: flex-start;
  }
  .row.center_xlarge {
    justify-content: center;
  }
  .row.end_xlarge {
    justify-content: flex-end;
  }
  .row.top_xlarge {
    align-items: flex-start;
  }
  .row.middle_xlarge {
    align-items: center;
  }
  .row.bottom_xlarge {
    align-items: flex-end;
  }
  .row.baseline_xlarge {
    align-items: baseline;
  }
  .row.reverse_xlarge {
    flex-direction: row-reverse;
  }
}
@media (min-width: 75rem) {
  .row.around_xxlarge {
    justify-content: space-around;
  }
  .row.between_xxlarge {
    justify-content: space-between;
  }
  .row.start_xxlarge {
    justify-content: flex-start;
  }
  .row.center_xxlarge {
    justify-content: center;
  }
  .row.end_xxlarge {
    justify-content: flex-end;
  }
  .row.top_xxlarge {
    align-items: flex-start;
  }
  .row.middle_xxlarge {
    align-items: center;
  }
  .row.bottom_xxlarge {
    align-items: flex-end;
  }
  .row.baseline_xxlarge {
    align-items: baseline;
  }
  .row.reverse_xxlarge {
    flex-direction: row-reverse;
  }
}
@media (min-width: 93.75rem) {
  .row.around_xxxlarge {
    justify-content: space-around;
  }
  .row.between_xxxlarge {
    justify-content: space-between;
  }
  .row.start_xxxlarge {
    justify-content: flex-start;
  }
  .row.center_xxxlarge {
    justify-content: center;
  }
  .row.end_xxxlarge {
    justify-content: flex-end;
  }
  .row.top_xxxlarge {
    align-items: flex-start;
  }
  .row.middle_xxxlarge {
    align-items: center;
  }
  .row.bottom_xxxlarge {
    align-items: flex-end;
  }
  .row.baseline_xxxlarge {
    align-items: baseline;
  }
  .row.reverse_xxxlarge {
    flex-direction: row-reverse;
  }
}
[class*=span] {
  flex-basis: 100%;
  max-width: 100%;
  padding-left: 0.46875rem;
  padding-right: 0.46875rem;
}
@media (min-width: 20rem) {
  [class*=span] {
    padding: 0 calc((0.9375rem / 2) + (2.1875 / 2) * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  [class*=span] {
    padding: 0 1.5625rem;
  }
}
[class*=span].span_column {
  display: flex;
  flex-direction: column;
}

@media (min-width: 20rem) {
  .span1_xsmall {
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .order1_xsmall {
    order: 1;
  }
}
@media (min-width: 20rem) {
  .span2_xsmall {
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .order2_xsmall {
    order: 2;
  }
}
@media (min-width: 20rem) {
  .span3_xsmall {
    flex-basis: 25%;
    max-width: 25%;
  }

  .order3_xsmall {
    order: 3;
  }
}
@media (min-width: 20rem) {
  .span4_xsmall {
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .order4_xsmall {
    order: 4;
  }
}
@media (min-width: 20rem) {
  .span5_xsmall {
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .order5_xsmall {
    order: 5;
  }
}
@media (min-width: 20rem) {
  .span6_xsmall {
    flex-basis: 50%;
    max-width: 50%;
  }

  .order6_xsmall {
    order: 6;
  }
}
@media (min-width: 20rem) {
  .span7_xsmall {
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .order7_xsmall {
    order: 7;
  }
}
@media (min-width: 20rem) {
  .span8_xsmall {
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .order8_xsmall {
    order: 8;
  }
}
@media (min-width: 20rem) {
  .span9_xsmall {
    flex-basis: 75%;
    max-width: 75%;
  }

  .order9_xsmall {
    order: 9;
  }
}
@media (min-width: 20rem) {
  .span10_xsmall {
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .order10_xsmall {
    order: 10;
  }
}
@media (min-width: 20rem) {
  .span11_xsmall {
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .order11_xsmall {
    order: 11;
  }
}
@media (min-width: 20rem) {
  .span12_xsmall {
    flex-basis: 100%;
    max-width: 100%;
  }

  .order12_xsmall {
    order: 12;
  }
}
@media (min-width: 30rem) {
  .span1_small {
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .order1_small {
    order: 1;
  }
}
@media (min-width: 30rem) {
  .span2_small {
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .order2_small {
    order: 2;
  }
}
@media (min-width: 30rem) {
  .span3_small {
    flex-basis: 25%;
    max-width: 25%;
  }

  .order3_small {
    order: 3;
  }
}
@media (min-width: 30rem) {
  .span4_small {
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .order4_small {
    order: 4;
  }
}
@media (min-width: 30rem) {
  .span5_small {
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .order5_small {
    order: 5;
  }
}
@media (min-width: 30rem) {
  .span6_small {
    flex-basis: 50%;
    max-width: 50%;
  }

  .order6_small {
    order: 6;
  }
}
@media (min-width: 30rem) {
  .span7_small {
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .order7_small {
    order: 7;
  }
}
@media (min-width: 30rem) {
  .span8_small {
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .order8_small {
    order: 8;
  }
}
@media (min-width: 30rem) {
  .span9_small {
    flex-basis: 75%;
    max-width: 75%;
  }

  .order9_small {
    order: 9;
  }
}
@media (min-width: 30rem) {
  .span10_small {
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .order10_small {
    order: 10;
  }
}
@media (min-width: 30rem) {
  .span11_small {
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .order11_small {
    order: 11;
  }
}
@media (min-width: 30rem) {
  .span12_small {
    flex-basis: 100%;
    max-width: 100%;
  }

  .order12_small {
    order: 12;
  }
}
@media (min-width: 35rem) {
  .span1_medium {
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .order1_medium {
    order: 1;
  }
}
@media (min-width: 35rem) {
  .span2_medium {
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .order2_medium {
    order: 2;
  }
}
@media (min-width: 35rem) {
  .span3_medium {
    flex-basis: 25%;
    max-width: 25%;
  }

  .order3_medium {
    order: 3;
  }
}
@media (min-width: 35rem) {
  .span4_medium {
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .order4_medium {
    order: 4;
  }
}
@media (min-width: 35rem) {
  .span5_medium {
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .order5_medium {
    order: 5;
  }
}
@media (min-width: 35rem) {
  .span6_medium {
    flex-basis: 50%;
    max-width: 50%;
  }

  .order6_medium {
    order: 6;
  }
}
@media (min-width: 35rem) {
  .span7_medium {
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .order7_medium {
    order: 7;
  }
}
@media (min-width: 35rem) {
  .span8_medium {
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .order8_medium {
    order: 8;
  }
}
@media (min-width: 35rem) {
  .span9_medium {
    flex-basis: 75%;
    max-width: 75%;
  }

  .order9_medium {
    order: 9;
  }
}
@media (min-width: 35rem) {
  .span10_medium {
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .order10_medium {
    order: 10;
  }
}
@media (min-width: 35rem) {
  .span11_medium {
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .order11_medium {
    order: 11;
  }
}
@media (min-width: 35rem) {
  .span12_medium {
    flex-basis: 100%;
    max-width: 100%;
  }

  .order12_medium {
    order: 12;
  }
}
@media (min-width: 47.5rem) {
  .span1_large {
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .order1_large {
    order: 1;
  }
}
@media (min-width: 47.5rem) {
  .span2_large {
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .order2_large {
    order: 2;
  }
}
@media (min-width: 47.5rem) {
  .span3_large {
    flex-basis: 25%;
    max-width: 25%;
  }

  .order3_large {
    order: 3;
  }
}
@media (min-width: 47.5rem) {
  .span4_large {
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .order4_large {
    order: 4;
  }
}
@media (min-width: 47.5rem) {
  .span5_large {
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .order5_large {
    order: 5;
  }
}
@media (min-width: 47.5rem) {
  .span6_large {
    flex-basis: 50%;
    max-width: 50%;
  }

  .order6_large {
    order: 6;
  }
}
@media (min-width: 47.5rem) {
  .span7_large {
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .order7_large {
    order: 7;
  }
}
@media (min-width: 47.5rem) {
  .span8_large {
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .order8_large {
    order: 8;
  }
}
@media (min-width: 47.5rem) {
  .span9_large {
    flex-basis: 75%;
    max-width: 75%;
  }

  .order9_large {
    order: 9;
  }
}
@media (min-width: 47.5rem) {
  .span10_large {
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .order10_large {
    order: 10;
  }
}
@media (min-width: 47.5rem) {
  .span11_large {
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .order11_large {
    order: 11;
  }
}
@media (min-width: 47.5rem) {
  .span12_large {
    flex-basis: 100%;
    max-width: 100%;
  }

  .order12_large {
    order: 12;
  }
}
@media (min-width: 61.875rem) {
  .span1_xlarge {
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .order1_xlarge {
    order: 1;
  }
}
@media (min-width: 61.875rem) {
  .span2_xlarge {
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .order2_xlarge {
    order: 2;
  }
}
@media (min-width: 61.875rem) {
  .span3_xlarge {
    flex-basis: 25%;
    max-width: 25%;
  }

  .order3_xlarge {
    order: 3;
  }
}
@media (min-width: 61.875rem) {
  .span4_xlarge {
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .order4_xlarge {
    order: 4;
  }
}
@media (min-width: 61.875rem) {
  .span5_xlarge {
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .order5_xlarge {
    order: 5;
  }
}
@media (min-width: 61.875rem) {
  .span6_xlarge {
    flex-basis: 50%;
    max-width: 50%;
  }

  .order6_xlarge {
    order: 6;
  }
}
@media (min-width: 61.875rem) {
  .span7_xlarge {
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .order7_xlarge {
    order: 7;
  }
}
@media (min-width: 61.875rem) {
  .span8_xlarge {
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .order8_xlarge {
    order: 8;
  }
}
@media (min-width: 61.875rem) {
  .span9_xlarge {
    flex-basis: 75%;
    max-width: 75%;
  }

  .order9_xlarge {
    order: 9;
  }
}
@media (min-width: 61.875rem) {
  .span10_xlarge {
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .order10_xlarge {
    order: 10;
  }
}
@media (min-width: 61.875rem) {
  .span11_xlarge {
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .order11_xlarge {
    order: 11;
  }
}
@media (min-width: 61.875rem) {
  .span12_xlarge {
    flex-basis: 100%;
    max-width: 100%;
  }

  .order12_xlarge {
    order: 12;
  }
}
@media (min-width: 75rem) {
  .span1_xxlarge {
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .order1_xxlarge {
    order: 1;
  }
}
@media (min-width: 75rem) {
  .span2_xxlarge {
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .order2_xxlarge {
    order: 2;
  }
}
@media (min-width: 75rem) {
  .span3_xxlarge {
    flex-basis: 25%;
    max-width: 25%;
  }

  .order3_xxlarge {
    order: 3;
  }
}
@media (min-width: 75rem) {
  .span4_xxlarge {
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .order4_xxlarge {
    order: 4;
  }
}
@media (min-width: 75rem) {
  .span5_xxlarge {
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .order5_xxlarge {
    order: 5;
  }
}
@media (min-width: 75rem) {
  .span6_xxlarge {
    flex-basis: 50%;
    max-width: 50%;
  }

  .order6_xxlarge {
    order: 6;
  }
}
@media (min-width: 75rem) {
  .span7_xxlarge {
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .order7_xxlarge {
    order: 7;
  }
}
@media (min-width: 75rem) {
  .span8_xxlarge {
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .order8_xxlarge {
    order: 8;
  }
}
@media (min-width: 75rem) {
  .span9_xxlarge {
    flex-basis: 75%;
    max-width: 75%;
  }

  .order9_xxlarge {
    order: 9;
  }
}
@media (min-width: 75rem) {
  .span10_xxlarge {
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .order10_xxlarge {
    order: 10;
  }
}
@media (min-width: 75rem) {
  .span11_xxlarge {
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .order11_xxlarge {
    order: 11;
  }
}
@media (min-width: 75rem) {
  .span12_xxlarge {
    flex-basis: 100%;
    max-width: 100%;
  }

  .order12_xxlarge {
    order: 12;
  }
}
@media (min-width: 93.75rem) {
  .span1_xxxlarge {
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .order1_xxxlarge {
    order: 1;
  }
}
@media (min-width: 93.75rem) {
  .span2_xxxlarge {
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .order2_xxxlarge {
    order: 2;
  }
}
@media (min-width: 93.75rem) {
  .span3_xxxlarge {
    flex-basis: 25%;
    max-width: 25%;
  }

  .order3_xxxlarge {
    order: 3;
  }
}
@media (min-width: 93.75rem) {
  .span4_xxxlarge {
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .order4_xxxlarge {
    order: 4;
  }
}
@media (min-width: 93.75rem) {
  .span5_xxxlarge {
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .order5_xxxlarge {
    order: 5;
  }
}
@media (min-width: 93.75rem) {
  .span6_xxxlarge {
    flex-basis: 50%;
    max-width: 50%;
  }

  .order6_xxxlarge {
    order: 6;
  }
}
@media (min-width: 93.75rem) {
  .span7_xxxlarge {
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .order7_xxxlarge {
    order: 7;
  }
}
@media (min-width: 93.75rem) {
  .span8_xxxlarge {
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .order8_xxxlarge {
    order: 8;
  }
}
@media (min-width: 93.75rem) {
  .span9_xxxlarge {
    flex-basis: 75%;
    max-width: 75%;
  }

  .order9_xxxlarge {
    order: 9;
  }
}
@media (min-width: 93.75rem) {
  .span10_xxxlarge {
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .order10_xxxlarge {
    order: 10;
  }
}
@media (min-width: 93.75rem) {
  .span11_xxxlarge {
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .order11_xxxlarge {
    order: 11;
  }
}
@media (min-width: 93.75rem) {
  .span12_xxxlarge {
    flex-basis: 100%;
    max-width: 100%;
  }

  .order12_xxxlarge {
    order: 12;
  }
}

/* Source common/css/styles/screen/header.scss */

header {
  position: relative;
}

.top_header_wrapper {
  background-color: rgba(255, 255, 255, 0.9);
  left: 0;
  padding: 1.368em 0;
  position: fixed;
  right: 0;
  top: 0;
  transition: background 300ms ease-out;
  z-index: 100;
}
.top_header_wrapper .top_header {
  align-items: stretch;
  display: flex;
  justify-content: space-between;
}
.startpage .top_header_wrapper {
  background-color: transparent;
}
.scrolled_down .top_header_wrapper {
  background-color: rgba(255, 255, 255, 0.9);
}

.navigation {
  align-items: stretch;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media (min-width: 30rem) {
  .navigation {
    flex-direction: row;
  }
}

.header_content {
  bottom: 5.625rem;
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  left: 0;
  position: absolute;
  right: 0;
  top: auto;
  z-index: 10;
}
@media (min-width: 20rem) {
  .header_content {
    bottom: calc(5.625rem + 8.5 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .header_content {
    bottom: 14.125rem;
  }
}
.header_content .company_logo_icon {
  width: 6.5625rem;
  display: block;
}
@media (min-width: 20rem) {
  .header_content .company_logo_icon {
    width: calc(6.5625rem + 11.4375 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .header_content .company_logo_icon {
    width: 18rem;
  }
}
.header_content .slogan {
  background-color: rgba(1, 51, 130, 0.6);
  margin: 2.052em 0 1.368em;
  padding: 0.912em;
}
@media (min-width: 61.875rem) {
  .header_content .slogan {
    padding: 0.912em 2.736em;
  }
}
.header_content .slogan h1 {
  letter-spacing: calc((0.9375rem + 1.9375 * (100vw - 20rem) / (73.75)) / 1000 * 40);
  font-size: 0.9375rem;
  color: #fff;
  line-height: 1.7;
  margin: 0;
  text-align: center;
}
@media (min-width: 20rem) {
  .header_content .slogan h1 {
    font-size: calc(0.9375rem + 1.9375 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .header_content .slogan h1 {
    font-size: 2.875rem;
  }
}
.header_content .slogan h1:before {
  display: none;
}
.header_content .slogan h1 .small_slogan {
  letter-spacing: calc((0.8125rem + 1.1875 * (100vw - 20rem) / (73.75)) / 1000 * 40);
  font-size: 0.8125rem;
  display: block;
}
@media (min-width: 20rem) {
  .header_content .slogan h1 .small_slogan {
    font-size: calc(0.8125rem + 1.1875 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .header_content .slogan h1 .small_slogan {
    font-size: 2rem;
  }
}
.header_content .video_link {
  letter-spacing: calc((1rem + 0.5625 * (100vw - 20rem) / (73.75)) / 1000 * 40);
  font-size: 1rem;
  align-items: center;
  color: #fff;
  display: flex;
  justify-content: center;
  text-decoration: none;
  text-transform: uppercase;
}
@media (min-width: 20rem) {
  .header_content .video_link {
    font-size: calc(1rem + 0.5625 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .header_content .video_link {
    font-size: 1.5625rem;
  }
}
.header_content .video_link .icon {
  height: 2.4375rem;
  min-width: 2.4375rem;
  width: 2.4375rem;
  fill: #fff;
  margin: 0 0.912em;
  transition: all 300ms ease-out;
}
@media (min-width: 20rem) {
  .header_content .video_link .icon {
    height: calc(2.4375rem + 1.1875 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .header_content .video_link .icon {
    height: 3.625rem;
  }
}
@media (min-width: 20rem) {
  .header_content .video_link .icon {
    min-width: calc(2.4375rem + 1.1875 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .header_content .video_link .icon {
    min-width: 3.625rem;
  }
}
@media (min-width: 20rem) {
  .header_content .video_link .icon {
    width: calc(2.4375rem + 1.1875 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .header_content .video_link .icon {
    width: 3.625rem;
  }
}
.header_content .video_link:hover .icon {
  fill: #B0C700;
  transform: scale(0.9) rotate(-5deg);
}

.header_icons {
  align-items: center;
  bottom: 6vw;
  display: flex;
  justify-content: flex-end;
  position: absolute;
  right: 1.368em;
  z-index: 10;
}
@media (min-width: 100rem) {
  .header_icons {
    bottom: 5.472em;
    right: 2.736em;
  }
}
.header_icons .bottom_link .icon {
  width: 1.8125rem;
  min-width: 1.8125rem;
  height: 1.8125rem;
  display: block;
  margin-left: 1.368em;
}
@media (min-width: 20rem) {
  .header_icons .bottom_link .icon {
    width: calc(1.8125rem + 1.125 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .header_icons .bottom_link .icon {
    width: 2.9375rem;
  }
}
@media (min-width: 20rem) {
  .header_icons .bottom_link .icon {
    min-width: calc(1.8125rem + 1.125 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .header_icons .bottom_link .icon {
    min-width: 2.9375rem;
  }
}
@media (min-width: 20rem) {
  .header_icons .bottom_link .icon {
    height: calc(1.8125rem + 1.125 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .header_icons .bottom_link .icon {
    height: 2.9375rem;
  }
}
.header_icons .bottom_link .icon .arrow {
  fill: #013382;
  transition: all 300ms ease-out;
}
.header_icons .bottom_link:hover .icon .arrow {
  fill: #B0C700;
}
.header_icons .bottom_link:hover .icon .arrow.first_arrow {
  transform: translateY(0.3125rem);
}

/* Source common/css/styles/screen/header_background.scss */

.header_background {
  background-position: center center;
  background-size: cover;
  height: 40vw;
  margin: 0 auto;
  max-height: 50rem;
  min-height: 21.875rem;
  overflow: hidden;
  position: relative;
  width: 100%;
  z-index: 1;
}
.header_background:after {
  background-color: #EBD9C4;
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0.3;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
.startpage .header_background {
  background-position: 30% 0%;
  height: 105vh;
  max-height: 81.25rem;
  min-height: 37.5rem;
}
@media (min-width: 47.5rem) {
  .startpage .header_background {
    background-position: bottom center;
    min-height: 46.875rem;
  }
}
@media (min-width: 75rem) {
  .startpage .header_background {
    min-height: 59.375rem;
  }
}
.startpage .header_background:before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 100%);
  bottom: 13.68em;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}
.startpage .header_background:after {
  background-color: #566378;
}
.header_background .triangle_wrapper {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: auto;
}
.header_background .triangle_wrapper .triangle {
  height: 5.625rem;
  position: relative;
  transform-origin: top right;
  transform: rotate(-5deg);
}
@media (min-width: 20rem) {
  .header_background .triangle_wrapper .triangle {
    height: calc(5.625rem + 8.5 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .header_background .triangle_wrapper .triangle {
    height: 14.125rem;
  }
}
.header_background .triangle_wrapper .triangle:before {
  background-color: #fff;
  bottom: -50vw;
  box-shadow: 0 0.3125rem 1.25rem 0 rgba(1, 51, 130, 0.39) inset;
  content: "";
  left: -50vw;
  position: absolute;
  right: -50vw;
  top: 0;
}

/* Source common/css/styles/screen/infolist_arbeitnehmer_online.scss */

.a_online_secure_login {
  margin-bottom: 1.368em;
}

.img_container.arbeitnehmer_online_svg_2_small {
  max-width: 18.125rem;
}
@media (min-width: 47.5rem) {
  .img_container.arbeitnehmer_online_svg_2_small {
    display: none;
  }
}
.img_container.arbeitnehmer_online_svg_2_small .svg_resize {
  padding-bottom: 634.4827586207%;
}
.img_container.arbeitnehmer_online_svg_2 {
  margin: 0 0 1.368em;
  max-width: 28.125rem;
}
@media (min-width: 47.5rem) {
  .img_container.arbeitnehmer_online_svg_2 {
    display: block;
  }
}
.img_container.arbeitnehmer_online_svg_2 .svg_resize {
  padding-bottom: 148.8888888889%;
}

.arbeitnehmer_online_svg_2_small {
  display: block;
  margin: 1.368em auto;
}

.arbeitnehmer_online_svg_2 {
  display: none;
}

.arbeitnehmer_online_2_headline {
  fill: #013382;
  font-family: "Raleway", sans-serif;
  font-size: 90%;
  text-anchor: middle;
}
@media (min-width: 47.5rem) {
  .arbeitnehmer_online_2_headline {
    font-size: 80%;
  }
}
.arbeitnehmer_online_2_headline .strong {
  fill: #013382;
  font-weight: 700;
}

.arbeitnehmer_online_text {
  fill: #566378;
  font-family: "Raleway", sans-serif;
  font-size: 90%;
  text-anchor: middle;
}
@media (min-width: 47.5rem) {
  .arbeitnehmer_online_text {
    font-size: 80%;
  }
}

.arbeitnehmer_online_company_logo {
  fill: #566378;
}

.arbeitnehmer_online_icon {
  fill: #013382;
  transition: 300ms;
}

.arbeitnehmer_online_button .normal {
  display: block;
}
.arbeitnehmer_online_button .hover {
  display: none;
}
.arbeitnehmer_online_button:hover .normal {
  display: none;
}
.arbeitnehmer_online_button:hover .hover {
  display: block;
}
.arbeitnehmer_online_button:hover .arbeitnehmer_online_euro_icon,
.arbeitnehmer_online_button:hover .arbeitnehmer_online_warning_icon,
.arbeitnehmer_online_button:hover .arbeitnehmer_online_check_icon {
  fill: #013382;
}
.arbeitnehmer_online_button:hover .arbeitnehmer_online_icon {
  fill: #B0C700;
}

.arbeitnehmer_online_lines {
  fill: #013382;
}

/* Source common/css/styles/screen/infolist_download_pdf.scss */

.infolist_download {
  align-items: baseline;
  background: #f1f3f5;
  color: #566378;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 1.368em;
  padding: 1.368em;
}
.infolist_download .infolist_title {
  font-weight: 700;
}
.infolist_download p {
  margin-right: 1.368em;
}

/* Source common/css/styles/screen/infolist_top_link.scss */

.infolist_top_link {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin: 1.368em 0 0.684em 0;
}
.infolist_top_link a {
  align-items: center;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.infolist_top_link a .icon {
  display: block;
  height: 2.75rem;
  margin-left: 1.368em;
  min-width: 2.75rem;
  width: 2.75rem;
  transform: rotate(-180deg);
}
.infolist_top_link a .icon .arrow {
  fill: #013382;
  transition: all 300ms ease-out;
}
.infolist_top_link a:hover .icon .arrow {
  fill: #B0C700;
}
.infolist_top_link a:hover .icon .arrow.first_arrow {
  transform: translateY(0.3125rem);
}

/* Source common/css/styles/screen/infolist_u_online.scss */

.u_online_secure_login {
  margin-bottom: 1.368em;
}

.u_online_overview {
  margin: 1.368em 0 0 0;
}

.img_container.u_online_svg_2_small {
  max-width: 18.125rem;
}
@media (min-width: 47.5rem) {
  .img_container.u_online_svg_2_small {
    display: none;
  }
}
.img_container.u_online_svg_2_small .svg_resize {
  padding-bottom: 634.4827586207%;
}
.img_container.u_online_svg_2 {
  margin: 0 0 1.368em;
  max-width: 28.125rem;
}
@media (min-width: 47.5rem) {
  .img_container.u_online_svg_2 {
    display: block;
  }
}
.img_container.u_online_svg_2 .svg_resize {
  padding-bottom: 148.8888888889%;
}

.u_online_svg_2_small {
  display: block;
  margin: 1.368em auto;
}

.u_online_svg_2 {
  display: none;
}

.u_online_2_headline {
  fill: #013382;
  font-family: "Raleway", sans-serif;
  font-size: 90%;
  text-anchor: middle;
}
@media (min-width: 47.5rem) {
  .u_online_2_headline {
    font-size: 80%;
  }
}
.u_online_2_headline .strong {
  fill: #013382;
  font-weight: 700;
}

.u_online_text {
  fill: #566378;
  font-family: "Raleway", sans-serif;
  font-size: 90%;
  text-anchor: middle;
}
@media (min-width: 47.5rem) {
  .u_online_text {
    font-size: 80%;
  }
}

.u_online_company_logo {
  fill: #566378;
}

.u_online_warning_icon {
  fill: #B0C700;
  transition: 300ms;
}

.u_online_euro_icon,
.u_online_check_icon {
  fill: #B0C700;
  transition: 300ms;
}

.u_online_icon {
  fill: #013382;
  transition: 300ms;
}

.u_online_button .normal {
  display: block;
}
.u_online_button .hover {
  display: none;
}
.u_online_button:hover .normal {
  display: none;
}
.u_online_button:hover .hover {
  display: block;
}
.u_online_button:hover .u_online_euro_icon,
.u_online_button:hover .u_online_warning_icon,
.u_online_button:hover .u_online_check_icon {
  fill: #013382;
}
.u_online_button:hover .u_online_icon {
  fill: #B0C700;
}

.u_online_lines {
  fill: #013382;
}

.u_online_benefits_flow h2 {
  margin-left: auto;
  margin-right: auto;
  max-width: 30rem;
  text-align: center;
}
.u_online_benefits_flow ul {
  list-style: none;
}
.u_online_benefits_flow .table_cell.text {
  margin: 0 auto;
  max-width: 20rem;
}
.u_online_benefits_flow .arrow_large {
  display: none;
}
.u_online_benefits_flow .arrow_small {
  display: block;
  height: 4rem;
  margin: 0 auto;
  width: 1.875rem;
}
.u_online_benefits_flow .flow_text {
  display: none;
}
.u_online_benefits_flow .u_online_arrow_main_color {
  fill: #B0C700;
}
.u_online_benefits_flow .u_online_arrow_main_color_medium {
  fill: #B0C700;
}
.u_online_benefits_flow .header {
  display: table;
  margin: 0.684em auto;
  max-width: 20rem;
  text-align: right;
}
.u_online_benefits_flow .header .text {
  display: table-cell;
  margin: 0;
  padding: 0 0.684em 0 0;
  vertical-align: middle;
}
.u_online_benefits_flow .header .arrow_small {
  transform: rotate(180deg);
}
.u_online_benefits_flow .footer {
  display: table;
  margin: 0.684em auto;
  max-width: 20rem;
}
.u_online_benefits_flow .footer .text {
  display: table-cell;
  margin: 0;
  padding: 0 0 0 0.684em;
  vertical-align: middle;
}
.u_online_benefits_flow .description {
  margin: 0 auto;
}
.u_online_benefits_flow .description ul {
  list-style: none;
  margin: 1.368em;
}
.u_online_benefits_flow .description li {
  margin: 0.684em 0;
  padding-left: 2.125rem;
  position: relative;
}
.u_online_benefits_flow .description li:before {
  background-color: #B0C700;
  background-image: url("../../common/images/u_online/check.svg");
  content: "";
  display: block;
  height: 1.5rem;
  left: 0;
  position: absolute;
  width: 1.5rem;
}
.u_online_benefits_flow .lock {
  background: #f1f3f5;
  display: table;
  margin: 0 auto 0.684em;
  padding: 1.368em;
}
.u_online_benefits_flow .lock .text {
  display: table-cell;
  padding-left: 1.368em;
  vertical-align: middle;
}
.u_online_benefits_flow .lock:before {
  background: url("../../common/images/u_online/lock.svg") no-repeat 50% 50%;
  content: "";
  display: table-cell;
  height: 1.75rem;
  width: 1.75rem;
}
.u_online_benefits_flow .benefits_button {
  border: 0;
  cursor: pointer;
  display: table;
  margin: 0 auto;
  min-width: 14.375rem;
  text-decoration: none;
}
.u_online_benefits_flow .benefits_button > span {
  display: table-cell;
}
.u_online_benefits_flow .benefits_button .text {
  border-bottom-width: 0.25rem;
  border-color: #013382;
  border-left-width: 0.125rem;
  border-radius: 0.375rem 0 0 0.375rem;
  border-style: solid;
  border-top-width: 0.125rem;
  color: #566378;
  display: block;
  font-size: 130%;
  font-weight: 500;
  margin-right: 0.375rem;
  padding: 0 1.368em;
  text-align: center;
  text-transform: uppercase;
  transition: border 300ms;
  line-height: 2.75rem;
}
@media (min-width: 20rem) {
  .u_online_benefits_flow .benefits_button .text {
    line-height: calc(2.75rem + 0 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .u_online_benefits_flow .benefits_button .text {
    line-height: 2.75rem;
  }
}
.u_online_benefits_flow .benefits_button:after {
  background-color: #013382;
  background-image: url("../../common/images/u_online/button_arrow.svg");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 60%;
  border-radius: 0 0.375rem 0.375rem 0;
  content: "";
  display: table-cell;
  position: relative;
  transition: background-color 300ms;
  vertical-align: middle;
  z-index: 1;
  height: 2.75rem;
  width: 2.75rem;
}
@media (min-width: 20rem) {
  .u_online_benefits_flow .benefits_button:after {
    height: calc(2.75rem + 0 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .u_online_benefits_flow .benefits_button:after {
    height: 2.75rem;
  }
}
@media (min-width: 20rem) {
  .u_online_benefits_flow .benefits_button:after {
    width: calc(2.75rem + 0 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .u_online_benefits_flow .benefits_button:after {
    width: 2.75rem;
  }
}
.u_online_benefits_flow .benefits_button.visible .text {
  border-color: #566378;
}
.u_online_benefits_flow .benefits_button.visible:after {
  background-color: #566378;
  border-radius: 0.375rem 0 0 0.375rem;
  transform: rotate(180deg);
}
.u_online_benefits_flow .benefits_button:hover .text {
  border-color: #011f4f;
}
.u_online_benefits_flow .benefits_button:hover:after {
  background-color: #011f4f;
}
.u_online_benefits_flow .flow_image {
  border: 0.5rem solid #013382;
  border-radius: 50%;
  box-sizing: content-box;
  height: 15.625rem;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  width: 15.625rem;
}
.u_online_benefits_flow .flow_image .text {
  background: rgba(1, 51, 130, 0.85);
  bottom: 0;
  color: #fff;
  left: 0;
  padding: 0.684em 0;
  position: absolute;
  text-align: center;
  width: 100%;
}
.u_online_benefits_flow .flow_image img {
  border-radius: 50%;
}

/* Source common/css/styles/screen/infolists.scss */

.amount {
  display: block;
  text-align: right;
  white-space: nowrap;
}

.steuerlexikon .amount {
  display: table-cell;
}

.lexikon_liste a {
  text-decoration: none;
}
.lexikon_liste a:hover, .lexikon_liste a:focus, .lexikon_liste a:active, .lexikon_liste a.active {
  text-decoration: underline;
}

.multi_columns li {
  break-inside: avoid;
}
@media (min-width: 47.5rem) {
  .multi_columns {
    column-count: 2;
    column-gap: 2.736em;
  }
}

.infolist_overview .overview_title {
  margin-bottom: 0.912em;
}
.infolist_overview .entry {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 1.368em;
}
.infolist_overview .entry .icon {
  height: 1.5625rem;
  min-width: 1.5625rem;
  width: 1.5625rem;
  display: block;
  fill: #B0C700;
  margin-right: 0.912em;
  transition: all 300ms ease-out;
}
@media (min-width: 20rem) {
  .infolist_overview .entry .icon {
    height: calc(1.5625rem + 0.8125 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .infolist_overview .entry .icon {
    height: 2.375rem;
  }
}
@media (min-width: 20rem) {
  .infolist_overview .entry .icon {
    min-width: calc(1.5625rem + 0.8125 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .infolist_overview .entry .icon {
    min-width: 2.375rem;
  }
}
@media (min-width: 20rem) {
  .infolist_overview .entry .icon {
    width: calc(1.5625rem + 0.8125 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .infolist_overview .entry .icon {
    width: 2.375rem;
  }
}
.infolist_overview .entry:hover .icon, .infolist_overview .entry:focus .icon {
  transform: scale(0.9) rotate(-5deg);
  fill: #013382;
}

/* Source common/css/styles/screen/iphone_safe_area.scss */

@supports (padding-left: env(safe-area-inset-left)) {
  html.iphone .container {
    padding-left: "max(0.9375rem, env(safe-area-inset-left))";
    padding-right: "max(0.9375rem, env(safe-area-inset-right))";
  }
}
@media (min-width: 20rem) {
  @supports (padding-left: env(safe-area-inset-left)) {
    html.iphone .container {
      padding-left: "max(calc(0.9375rem + 2.1875 * (100vw - 20rem) / (73.75)), env(safe-area-inset-left))";
      padding-right: "max(calc(0.9375rem + 2.1875 * (100vw - 20rem) / (73.75)), env(safe-area-inset-right))";
    }
  }
}

/* Source common/css/styles/screen/job_benefit_overview.scss */

.job_benefit_overview .entry {
  align-self: center;
  display: flex;
  position: relative;
  margin-bottom: 1.368em;
  flex-direction: column;
}
.job_benefit_overview .entry .photo {
  max-width: 22.8125rem;
  overflow: hidden;
  position: relative;
}
.job_benefit_overview .entry .photo:before {
  background-color: rgba(1, 51, 130, 0.5);
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.job_benefit_overview .entry .photo img {
  display: block;
  width: 100%;
}

/* Source common/css/styles/screen/job_entry.scss */


/* Source common/css/styles/screen/job_overview.scss */

.job_overview {
  margin: 1.368em 0;
}
.job_overview .entry {
  background-color: #013382;
  flex-grow: 1;
  margin-bottom: 1.368em;
  overflow: hidden;
  padding: 2.052em;
  position: relative;
}
.job_overview .entry:before {
  background-color: #B0C700;
  bottom: 0;
  content: "";
  height: 1.1875rem;
  left: 0;
  position: absolute;
  right: 0;
  transform: translateY(100%);
  transition: all 300ms ease-out;
}
.job_overview .entry .title,
.job_overview .entry .text,
.job_overview .entry .text p {
  color: #fff;
}
.job_overview .entry:hover:before, .job_overview .entry:focus:before {
  transform: translateY(0);
}

/* Source common/css/styles/screen/legal_notice_font_overview.scss */

.legal_notice_font_overview p {
  margin-bottom: 0;
}
.legal_notice_font_overview li {
  margin-bottom: 0.684em;
}

/* Source common/css/styles/screen/main.scss */

.page_wrapper {
  overflow: hidden;
}

.main_wrapper {
  position: relative;
}
.startpage .main_wrapper {
  margin: 0 0 2.736em;
}

@media (min-width: 93.75rem) {
  .main_content_with_sidebar {
    margin-right: 4.104em;
  }
}

.startpage .style_h1 {
  margin-bottom: 0.684em;
  margin-top: 0.684em;
}
@media (min-width: 93.75rem) {
  .startpage .style_h1 {
    margin-right: -1.368em;
  }
}
.startpage .text_and_teaser_wrapper {
  padding: 4.104em 0;
}
.startpage .startpage_text {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.368em;
  max-width: 50rem;
}
.startpage .startpage_text .button {
  align-self: flex-end;
}
@media (min-width: 47.5rem) {
  .startpage .startpage_text p {
    margin-left: 3.42em;
  }
  .startpage .startpage_text.right_startpage_text p {
    margin-left: 0;
  }
}
@media (min-width: 75rem) {
  .startpage .startpage_text.right_startpage_text {
    margin-top: 1.368em;
  }
}
@media (min-width: 93.75rem) {
  .startpage .startpage_text.right_startpage_text {
    margin-top: 4.104em;
  }
}
@media (min-width: 30rem) {
  .startpage .teaser_overview .teaser.style_v2 {
    align-items: flex-start;
    flex-direction: row;
    padding-bottom: 2.052em;
  }
  .startpage .teaser_overview .teaser.style_v2 > .icon {
    height: 5.625rem;
    min-width: 5.625rem;
    width: 5.625rem;
    margin: 0 2.736em 0 0;
  }
}
@media (min-width: 30rem) and (min-width: 20rem) {
  .startpage .teaser_overview .teaser.style_v2 > .icon {
    height: calc(5.625rem + 3.4375 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 30rem) and (min-width: 93.75rem) {
  .startpage .teaser_overview .teaser.style_v2 > .icon {
    height: 9.0625rem;
  }
}
@media (min-width: 30rem) and (min-width: 20rem) {
  .startpage .teaser_overview .teaser.style_v2 > .icon {
    min-width: calc(5.625rem + 3.4375 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 30rem) and (min-width: 93.75rem) {
  .startpage .teaser_overview .teaser.style_v2 > .icon {
    min-width: 9.0625rem;
  }
}
@media (min-width: 30rem) and (min-width: 20rem) {
  .startpage .teaser_overview .teaser.style_v2 > .icon {
    width: calc(5.625rem + 3.4375 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 30rem) and (min-width: 93.75rem) {
  .startpage .teaser_overview .teaser.style_v2 > .icon {
    width: 9.0625rem;
  }
}
@media (min-width: 30rem) {
  .startpage .teaser_overview .teaser.style_v2 .info .title,
.startpage .teaser_overview .teaser.style_v2 .info p {
    text-align: left;
  }
}
.startpage .teaser_overview .teaser.style_v1 {
  padding-bottom: 1.368em;
  padding-top: 2.052em;
}
.startpage .teaser_overview .teaser.style_v1 .icon {
  margin-bottom: 1.368em;
}

.background_area {
  padding: 0 0 2.736em 0;
  position: relative;
}
@media (min-width: 75rem) {
  .background_area {
    margin: 2.052em 0 5.472em;
    padding: 0 0 12.312em 0;
  }
}

.startpage_teaser_background {
  background-position: bottom center;
  background-size: cover;
  bottom: 0;
  height: auto;
  left: calc(-50vw + 50%);
  margin: 1.368em auto 0 auto;
  overflow: hidden;
  position: absolute;
  right: calc(-50vw + 50%);
  top: 2.736em;
  z-index: -1;
}
.startpage_teaser_background:after {
  background-color: #EBD9C4;
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0.3;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
.startpage_teaser_background .triangle_wrapper {
  bottom: auto;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: translateY(-100%);
}
.startpage_teaser_background .triangle_wrapper .triangle {
  height: 5.625rem;
  position: relative;
  transform-origin: top right;
  transform: rotate(-5deg);
}
@media (min-width: 20rem) {
  .startpage_teaser_background .triangle_wrapper .triangle {
    height: calc(5.625rem + 8.5 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .startpage_teaser_background .triangle_wrapper .triangle {
    height: 14.125rem;
  }
}
.startpage_teaser_background .triangle_wrapper .triangle:before {
  background-color: #fff;
  bottom: 0;
  box-shadow: 0 0.3125rem 1.25rem 0 rgba(1, 51, 130, 0.39) inset;
  content: "";
  left: -50vw;
  position: absolute;
  right: -50vw;
  top: -50vw;
}

/* Source common/css/styles/screen/offcanvas_menu.scss */

.toggle_offcanvas_menu {
  align-items: center;
  align-self: center;
  display: inline-block;
  margin: 1.368em 0 0 0;
  position: relative;
}
@media (min-width: 75rem) {
  .toggle_offcanvas_menu {
    display: none;
  }
}
@media (min-width: 30rem) {
  .toggle_offcanvas_menu {
    margin: 0 0 0 1.7784em;
  }
}
.toggle_offcanvas_menu label {
  align-items: center;
  cursor: pointer;
  display: flex;
  position: relative;
  text-transform: uppercase;
  user-select: none;
  z-index: 10;
}
.toggle_offcanvas_menu label .icon {
  height: 1.875rem;
  position: relative;
  width: 1.875rem;
}
@media (min-width: 35rem) {
  .toggle_offcanvas_menu label .icon {
    height: 2.5rem;
    width: 2.75rem;
  }
}
.toggle_offcanvas_menu label .line {
  background: #013382;
  display: block;
  height: 0.25rem;
  position: absolute;
  width: 100%;
}
.toggle_offcanvas_menu label .line_1 {
  opacity: 1;
  top: 0;
  transition: top 300ms, transform 300ms;
  visibility: visible;
}
.toggle_offcanvas_menu label .line_2 {
  opacity: 1;
  top: calc(50% - (0.25rem / 2));
  transition: opacity 300ms;
  visibility: visible;
}
.toggle_offcanvas_menu label .line_3 {
  bottom: 0;
  transition: bottom 300ms, transform 300ms;
}
.toggle_offcanvas_menu label .text {
  display: none;
}
.toggle_offcanvas_menu a {
  bottom: 0;
  cursor: pointer;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.toggle_offcanvas_menu .open_offcanvas_menu {
  display: block;
}
.toggle_offcanvas_menu .close_offcanvas_menu {
  display: none;
}

.offcanvas_menu_overlay {
  -webkit-backdrop-filter: blur(0.125rem);
  background: rgba(86, 99, 120, 0.5);
  height: 100%;
  left: 0;
  opacity: 0;
  position: fixed;
  right: 0;
  top: 0;
  transition: opacity 240ms, visibility 240ms;
  visibility: hidden;
  z-index: 110;
}

@media (max-width: 74.9375rem) {
  .offcanvas_menu_state:checked ~ .offcanvas_menu_wrapper .offcanvas_menu, .offcanvas_menu_state:target ~ .offcanvas_menu_wrapper .offcanvas_menu {
    opacity: 1;
    transform: scaleX(1);
    visibility: visible;
  }
  .offcanvas_menu_state:checked ~ .offcanvas_menu_wrapper .offcanvas_menu_overlay, .offcanvas_menu_state:target ~ .offcanvas_menu_wrapper .offcanvas_menu_overlay {
    opacity: 1;
    visibility: visible;
  }
}
.offcanvas_menu_state:checked ~ header .toggle_offcanvas_menu label .line_1, .offcanvas_menu_state:checked ~ div .toggle_offcanvas_menu label .line_1, .offcanvas_menu_state:target ~ header .toggle_offcanvas_menu label .line_1, .offcanvas_menu_state:target ~ div .toggle_offcanvas_menu label .line_1 {
  top: calc(50% - (0.25rem / 2));
  transform: rotate(45deg);
}
.offcanvas_menu_state:checked ~ header .toggle_offcanvas_menu label .line_2, .offcanvas_menu_state:checked ~ div .toggle_offcanvas_menu label .line_2, .offcanvas_menu_state:target ~ header .toggle_offcanvas_menu label .line_2, .offcanvas_menu_state:target ~ div .toggle_offcanvas_menu label .line_2 {
  opacity: 0;
  visibility: hidden;
}
.offcanvas_menu_state:checked ~ header .toggle_offcanvas_menu label .line_3, .offcanvas_menu_state:checked ~ div .toggle_offcanvas_menu label .line_3, .offcanvas_menu_state:target ~ header .toggle_offcanvas_menu label .line_3, .offcanvas_menu_state:target ~ div .toggle_offcanvas_menu label .line_3 {
  bottom: calc(50% - (0.25rem / 2));
  transform: rotate(-45deg);
}
.offcanvas_menu_state:checked ~ header .open_offcanvas_menu, .offcanvas_menu_state:checked ~ div .open_offcanvas_menu, .offcanvas_menu_state:target ~ header .open_offcanvas_menu, .offcanvas_menu_state:target ~ div .open_offcanvas_menu {
  display: none;
}
.offcanvas_menu_state:checked ~ header .close_offcanvas_menu, .offcanvas_menu_state:checked ~ div .close_offcanvas_menu, .offcanvas_menu_state:target ~ header .close_offcanvas_menu, .offcanvas_menu_state:target ~ div .close_offcanvas_menu {
  display: block;
}

.offcanvas_menu {
  background-color: #fff;
  box-shadow: 0 0 0.75rem rgba(1, 51, 130, 0.39);
  display: block;
  min-height: 100%;
  opacity: 0;
  padding: 1.368em 0;
  position: absolute;
  transform: scaleX(0);
  transition: opacity 240ms, transform 240ms, visibility 240ms;
  user-select: none;
  visibility: hidden;
  width: 15.625rem;
  z-index: 5000;
  right: 0;
  transform-origin: right;
}
@media (min-width: 35rem) {
  .offcanvas_menu {
    width: 23.125rem;
  }
}
.offcanvas_menu .offcanvas_menu_content > ul > li {
  margin-bottom: 1.368em;
  position: relative;
}
.offcanvas_menu .offcanvas_menu_content > ul > li > a {
  background-color: #013382;
  color: #fff;
  display: block;
  font-size: 112.5%;
  font-weight: 500;
  line-height: 2.75rem;
  padding: 0 1.368em;
  text-decoration: none;
}
.offcanvas_menu .offcanvas_menu_content > ul > li > a.active {
  background-color: #B0C700;
  color: #013382;
}
.offcanvas_menu .offcanvas_menu_content > ul li.expanded > ul {
  display: block;
}
.offcanvas_menu .offcanvas_menu_content > ul ul {
  display: none;
}
.offcanvas_menu .offcanvas_menu_content > ul ul:target {
  display: block;
}
.offcanvas_menu .offcanvas_menu_content > ul ul a {
  color: #013382;
  display: block;
  padding: 0.342em 1.368em;
  text-decoration: none;
}
.offcanvas_menu .offcanvas_menu_content > ul ul a.active {
  font-weight: 700;
}
.offcanvas_menu .offcanvas_menu_content > ul ul li:first-child {
  padding-top: 0.456em;
}

/* Source common/css/styles/screen/offcanvas_menu_acordion.scss */

.offcanvas_menu .offcanvas_menu_content > ul ul {
  display: block !important;
  height: 0;
  margin-bottom: 0;
  overflow: hidden;
  transition: height 600ms;
}

/* Source common/css/styles/screen/onlinetool_popup.scss */

.popup_overlay {
  -webkit-backdrop-filter: blur(0.125rem);
  background: rgba(86, 99, 120, 0.5);
  bottom: 0;
  left: 0;
  opacity: 0;
  padding: 1% 0;
  position: fixed;
  right: 0;
  top: 0;
  transition: opacity 300ms, visibility 300ms;
  visibility: hidden;
  z-index: -1;
}
.popup_overlay.show {
  opacity: 1;
  visibility: visible;
  z-index: 9000;
}

.popup_header {
  padding: 0 0 0 1.368em;
}

.popup_close {
  align-items: center;
  background: #013382;
  display: flex;
  float: right;
  justify-content: center;
  margin-right: 0.0625rem;
  padding: 0.3908571429em;
  text-align: center;
  height: 2.75rem;
  width: 2.75rem;
}
@media (min-width: 20rem) {
  .popup_close {
    height: calc(2.75rem + 0 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .popup_close {
    height: 2.75rem;
  }
}
@media (min-width: 20rem) {
  .popup_close {
    width: calc(2.75rem + 0 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .popup_close {
    width: 2.75rem;
  }
}
.popup_close svg {
  fill: #fff;
  height: 1.5rem;
  width: 1.5rem;
}

.popup_content {
  height: 100%;
  margin: 0 auto;
  max-width: 100rem;
  opacity: 0;
  position: relative;
  transform: scale(0.6);
  transition: opacity 300ms, transform 300ms, visibility 300ms;
  visibility: hidden;
  z-index: 9500;
}
.popup_content.show {
  opacity: 1;
  transform: scale(1);
  visibility: visible;
}
.popup_content .content {
  background: #fff;
  bottom: 0;
  box-shadow: 0 0 1.5625rem rgba(1, 51, 130, 0.39);
  left: 0;
  position: absolute;
  right: 0;
  top: 2.75rem;
}
@media (min-width: 20rem) {
  .popup_content .content {
    top: calc(2.75rem + 0 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .popup_content .content {
    top: 2.75rem;
  }
}

.popup_iframe {
  background: #fff;
  border: 0;
  height: 100%;
  opacity: 0;
  position: relative;
  transition: opacity 300ms;
  width: 100%;
  z-index: 1;
}
.popup_iframe.show {
  opacity: 1;
}

/* Source common/css/styles/screen/open_street_map.scss */

.open_street_map .map {
  height: 21.875rem;
  background-color: #f1f3f5;
  cursor: move;
  position: relative;
  width: 100%;
}
@media (min-width: 20rem) {
  .open_street_map .map {
    height: calc(21.875rem + 7.1875 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .open_street_map .map {
    height: 29.0625rem;
  }
}
.open_street_map .map_overlay {
  align-items: center;
  background-color: rgba(241, 243, 245, 0.85);
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  transition: opacity 300ms;
  z-index: 1;
}
.open_street_map .map_overlay.show {
  opacity: 1;
  transition-delay: 0;
}
.open_street_map .map_overlay.show p {
  font-size: 120%;
  margin: 1.368em 2.736em;
  text-align: center;
}
.open_street_map .plan_route {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  margin: 1.368em 0;
  position: relative;
}
@media (min-width: 47.5rem) {
  .open_street_map .plan_route {
    align-items: flex-end;
    flex-direction: row;
  }
}
.open_street_map .plan_route .saddr {
  flex-grow: 1;
  flex-shrink: 1;
}
@media (min-width: 47.5rem) {
  .open_street_map .plan_route .saddr {
    margin: 0 1.368em 0 0;
    max-width: 40.625rem;
  }
  .open_street_map .plan_route .saddr input {
    margin-bottom: 0;
  }
}
.open_street_map .plan_route .select_wrapper {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  flex-shrink: 1;
  margin-top: 0.684em;
}
@media (min-width: 47.5rem) {
  .open_street_map .plan_route .select_wrapper {
    margin: 0 1.368em 0 0;
  }
}
@media (min-width: 47.5rem) {
  .open_street_map .plan_route .select_wrapper .select {
    margin-bottom: 0;
  }
}
@media (min-width: 47.5rem) {
  .open_street_map .plan_route .button_wrapper button {
    margin-bottom: 0;
  }
}
.open_street_map .ol-viewport {
  touch-action: pan-y !important;
}
.open_street_map .ol-overlaycontainer-stopevent button {
  align-items: center;
  background: #013382;
  border: 0.125rem solid #013382;
  color: #fff;
  display: inline-flex;
  font-weight: 700;
  height: 2.75rem;
  justify-content: center;
  margin: 0;
  padding: 0;
  text-decoration: none;
  transition: background 300ms, border 300ms, color 300ms;
  user-select: none;
  width: 2.75rem;
}
.open_street_map .ol-overlaycontainer-stopevent button:focus {
  background: #B0C700;
  border: 0.125rem solid #B0C700;
  color: #013382;
  outline: 0;
}
.open_street_map .ol-overlaycontainer-stopevent button:hover {
  background: #B0C700;
  border: 0.125rem solid #B0C700;
  color: #013382;
}
.open_street_map .ol-overlaycontainer-stopevent button.disabled {
  cursor: default;
  opacity: 0.6;
}
.open_street_map .ol-overlaycontainer-stopevent .ol-attribution,
.open_street_map .ol-overlaycontainer-stopevent .ol-zoom-in,
.open_street_map .ol-overlaycontainer-stopevent .ol-zoom-out,
.open_street_map .ol-overlaycontainer-stopevent .ol-zoomslider {
  position: absolute;
  right: 1.25rem;
  z-index: 99;
}
.open_street_map .ol-overlaycontainer-stopevent .ol-zoom-in {
  line-height: 1;
  top: 1.25rem;
}
.open_street_map .ol-overlaycontainer-stopevent .ol-zoom-out {
  line-height: 1;
  top: 4.625rem;
}
.open_street_map .ol-overlaycontainer-stopevent .ol-rotate-reset {
  display: none;
}
.open_street_map .ol-overlaycontainer-stopevent .ol-attribution {
  align-items: center;
  bottom: 0;
  cursor: default;
  display: flex;
  font-size: 85%;
  justify-content: flex-end;
  right: 0;
  text-align: right;
  user-select: none;
  z-index: 99;
}
.open_street_map .ol-overlaycontainer-stopevent .ol-attribution ul {
  align-items: center;
  background: rgba(255, 255, 255, 0.85);
  color: black;
  display: flex;
  height: 3rem;
  justify-content: flex-end;
  list-style: none;
  margin: 0;
  padding: 0;
  text-shadow: 0 0 0.125rem rgba(0, 0, 0, 0.15);
  transform-origin: center right;
  transition: transform 300ms, opacity 300ms;
}
.open_street_map .ol-overlaycontainer-stopevent .ol-attribution ul li {
  align-items: center;
  background-image: none;
  display: flex;
  font-size: 85%;
  margin: 0 0.684em;
  padding: 0;
}
.open_street_map .ol-overlaycontainer-stopevent .ol-attribution ul li a {
  align-items: center;
  display: inline-flex;
  margin: 0 0.3125rem;
  text-decoration: none;
}
.open_street_map .ol-overlaycontainer-stopevent .ol-attribution ul li a:hover, .open_street_map .ol-overlaycontainer-stopevent .ol-attribution ul li a:focus {
  text-decoration: underline;
}
.open_street_map .ol-overlaycontainer-stopevent .ol-attribution button {
  display: none;
}
.open_street_map.disable_ui .ol-overlaycontainer-stopevent .ol-zoom-in,
.open_street_map.disable_ui .ol-overlaycontainer-stopevent .ol-zoom-out {
  display: none;
}

/* Source common/css/styles/screen/opening_times.scss */

.opening_times .title {
  padding-top: 0.684em;
}
.opening_times .entries {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0.684em;
}
.opening_times strong {
  display: inline-block;
  font-weight: 400;
  min-width: 2.1875rem;
}
.opening_times .entry {
  margin-bottom: 0;
  margin-right: 2.052em;
}

/* Source common/css/styles/screen/preloader.scss */

.preloader {
  display: block;
  position: relative;
}
.preloader .icon_spin {
  animation: preloader_rotate 900ms linear infinite;
  display: block;
  fill: #B0C700;
  height: 3rem;
  left: 50%;
  margin: -1.5rem 0 0 -1.5rem;
  opacity: 1;
  position: absolute;
  top: 50%;
  transition: 300ms;
  visibility: visible;
  width: 3rem;
}
.preloader .icon_spin.hide {
  opacity: 0;
  visibility: hidden;
}

.no-cssanimations .icon_spin {
  display: none;
}

/* Source common/css/styles/screen/search.scss */

form[role=search] {
  display: flex;
}
form[role=search] button {
  background-color: #013382;
  flex-grow: 0;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
  height: 2.75rem;
  width: 2.75rem;
}
@media (min-width: 20rem) {
  form[role=search] button {
    height: calc(2.75rem + 0 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  form[role=search] button {
    height: 2.75rem;
  }
}
@media (min-width: 20rem) {
  form[role=search] button {
    width: calc(2.75rem + 0 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  form[role=search] button {
    width: 2.75rem;
  }
}
form[role=search] button > span {
  min-height: 2.75rem;
  align-items: center;
  display: flex;
  justify-content: center;
  width: 100%;
}
@media (min-width: 20rem) {
  form[role=search] button > span {
    min-height: calc(2.75rem + 0 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  form[role=search] button > span {
    min-height: 2.75rem;
  }
}
form[role=search] button .icon {
  height: 1.375rem;
  width: 1.375rem;
  margin: 0;
  fill: #fff;
}
@media (min-width: 20rem) {
  form[role=search] button .icon {
    height: calc(1.375rem + 0 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  form[role=search] button .icon {
    height: 1.375rem;
  }
}
@media (min-width: 20rem) {
  form[role=search] button .icon {
    width: calc(1.375rem + 0 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  form[role=search] button .icon {
    width: 1.375rem;
  }
}
form[role=search] button:hover, form[role=search] button:focus {
  background-color: #B0C700;
  position: relative;
  z-index: 10;
}
form[role=search] button:hover .icon, form[role=search] button:focus .icon {
  fill: #013382;
}
form[role=search] button[disabled] {
  background-color: #f1f3f5;
  border-color: #e2e6eb;
  color: #e2e6eb;
}
form[role=search] button[disabled] .icon {
  fill: #566378;
}

input[type=search] {
  -moz-appearance: none;
  -webkit-appearance: none;
  background: #fff;
  border: 0.125rem solid #f1f3f5;
  color: #566378;
  flex-basis: 100%;
  margin: 0;
  padding: 0 0.684em;
  transition: background 300ms, border-color 300ms, box-shadow 300ms, color 300ms, outline 300ms, z-index 300ms;
  height: 2.75rem;
}
@media (min-width: 20rem) {
  input[type=search] {
    height: calc(2.75rem + 0 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  input[type=search] {
    height: 2.75rem;
  }
}
input[type=search]:focus {
  background: #fff;
  border-color: #013382;
  color: #566378;
  outline: 0;
  position: relative;
  z-index: 10;
}
input[type=search]::-webkit-search-cancel-button, input[type=search]::-webkit-search-decoration, input[type=search]::-webkit-search-results-button, input[type=search]::-webkit-search-results-decoration {
  -webkit-appearance: none;
}

.search dl {
  margin: 0 0 0.684em;
  padding-top: 0.342em;
}
.search dl br,
.search dl em,
.search dl img {
  display: none;
}
.search dd {
  margin: 0;
}

/* Source common/css/styles/screen/search_box.scss */

.toggle_search_box {
  align-self: center;
  height: 2rem;
  position: relative;
  width: 2rem;
}
.toggle_search_box label {
  bottom: 0;
  cursor: pointer;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 10;
}
.toggle_search_box label:hover ~ a {
  fill: #B0C700;
}
.toggle_search_box label:hover ~ a .icon {
  transform: scale(0.9) rotate(-5deg);
}
.toggle_search_box a {
  fill: #013382;
}
.toggle_search_box a .icon {
  display: block;
  height: 2rem;
  transition: all 300ms ease-out;
  width: 2rem;
}
.toggle_search_box .open_search_box {
  display: block;
}
.toggle_search_box .close_search_box {
  display: none;
}
@media (min-width: 35rem) and (max-width: 74.9375rem) {
  .toggle_search_box {
    height: 2.5rem;
    width: 2.75rem;
  }
  .toggle_search_box a .icon {
    height: 2.5rem;
    width: 2.75rem;
  }
}

.search_box {
  -webkit-backdrop-filter: blur(0.125rem);
  align-items: center;
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  opacity: 0;
  padding: 0.684em;
  position: fixed;
  right: 0;
  top: 0;
  transition: opacity 300ms;
  visibility: hidden;
  z-index: 9999;
}
.search_box .close_search_box_wrapper {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.search_box .close_search_box_wrapper label {
  background: rgba(86, 99, 120, 0.5);
  bottom: 0;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: opacity 300ms, visibility 300ms;
  visibility: hidden;
}
.search_box .close_search_box_wrapper .close_search_box {
  align-items: center;
  background: #013382;
  border: 0.125rem solid #013382;
  box-shadow: 0 0 0.625rem rgba(1, 51, 130, 0.39);
  fill: #fff;
  height: 2.75rem;
  justify-content: center;
  padding: 0.1875rem;
  position: absolute;
  right: 1.368em;
  top: 1.368em;
  transition: all 300ms ease-out;
  width: 2.75rem;
}
.search_box .close_search_box_wrapper .close_search_box .icon {
  display: block;
  height: 2.125rem;
  width: 2.125rem;
}
.search_box .close_search_box_wrapper .close_search_box:focus {
  background: #B0C700;
  border-color: #B0C700;
  fill: #013382;
  outline: 0;
}
.search_box .close_search_box_wrapper .close_search_box:hover {
  background: #B0C700;
  border-color: #B0C700;
  fill: #013382;
}
.search_box form[role=search] {
  background: #fff;
  border: 0.625rem solid #fff;
  border-radius: 0.375rem;
  box-shadow: 0 0 0.625rem rgba(1, 51, 130, 0.39);
  display: flex;
  opacity: 0;
  position: relative;
  transform: translateY(-6.25rem);
  transition: 300ms;
  visibility: hidden;
  width: 37.5rem;
  z-index: 1000;
}
.search_box form[role=search] button {
  width: 2.75rem;
  flex-grow: 0;
  flex-shrink: 0;
}
@media (min-width: 20rem) {
  .search_box form[role=search] button {
    width: calc(2.75rem + 0 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .search_box form[role=search] button {
    width: 2.75rem;
  }
}
.search_box input[type=search] {
  flex: 1 1 auto;
  font-size: 115%;
  user-select: text;
}

.search_box_state {
  left: 0;
  opacity: 0;
  position: fixed;
  top: 0;
  visibility: hidden;
}
.search_box_state:checked ~ .search_box, .search_box_state:target ~ .search_box {
  opacity: 1;
  visibility: visible;
}
.search_box_state:checked ~ .search_box .close_search_box_wrapper label, .search_box_state:target ~ .search_box .close_search_box_wrapper label {
  opacity: 1;
  visibility: visible;
}
.search_box_state:checked ~ .search_box form[role=search], .search_box_state:target ~ .search_box form[role=search] {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}
.search_box_state:checked ~ .offcanvas_menu_wrapper .toggle_search_box .open_search_box, .search_box_state:target ~ .offcanvas_menu_wrapper .toggle_search_box .open_search_box {
  display: none;
}
.search_box_state:checked ~ .offcanvas_menu_wrapper .toggle_search_box .close_search_box, .search_box_state:target ~ .offcanvas_menu_wrapper .toggle_search_box .close_search_box {
  display: flex;
}

/* Source common/css/styles/screen/sitemap.scss */

.sitemap a {
  text-decoration: none;
}
.sitemap a:hover, .sitemap a:focus {
  text-decoration: underline;
}

/* Source common/css/styles/screen/social_media_links.scss */

.social_media_links ul {
  display: flex;
  margin: 0;
  padding: 0;
}
.social_media_links li {
  list-style: none;
  margin: 0;
  padding: 0 1.4166666667rem 0 0;
}
@media (min-width: 47.5rem) {
  .social_media_links li {
    padding: 0 1.8333333333rem 0 0;
  }
}
.social_media_links a {
  border-radius: 0.375rem;
  display: inline-block;
}
.social_media_links a .icon {
  display: block;
  fill: #000;
  height: 2.125rem;
  width: 2.125rem;
}
@media (min-width: 47.5rem) {
  .social_media_links a .icon {
    height: 2.75rem;
    width: 2.75rem;
  }
}
.social_media_links a.facebook .icon, .social_media_links a.twitter .icon {
  border-radius: 0;
}

/* Source common/css/styles/screen/social_media_share.scss */

.social_media_share ul {
  display: flex;
  flex-wrap: wrap;
  margin: 1.368em 0 0.684em 1.368em;
  padding: 0;
}
.social_media_share li {
  line-height: 0;
  list-style: none;
  margin: 0.342em 0;
  padding: 0;
}
.social_media_share a {
  color: #566378;
  cursor: pointer;
  display: block;
  padding-right: 2.125rem;
  text-decoration: none;
  user-select: none;
}
.social_media_share a > span {
  align-items: center;
  display: flex;
  height: 2.75rem;
}
.social_media_share a .icon {
  align-items: center;
  display: flex;
  fill: #013382;
  height: 2.5rem;
  justify-content: center;
  min-width: 2.5rem;
  transition: all 300ms ease-out;
  width: 2.5rem;
}
.social_media_share a .icon svg {
  height: 2.125rem;
  min-width: 2.125rem;
  width: 2.125rem;
}
.social_media_share a .text {
  font-size: 85%;
  font-weight: 400;
  padding-left: 1.0625rem;
  padding-right: 0.684em;
}
.social_media_share a.print {
  display: none;
}
@media (min-width: 30rem) {
  .social_media_share a.print {
    display: block;
  }
}
.social_media_share a.whatsapp {
  display: none;
}
.tablet .social_media_share a.whatsapp, .mobile .social_media_share a.whatsapp {
  display: block;
}
.social_media_share a.whatsapp .icon svg {
  height: 2.5rem;
  min-width: 2.5rem;
  width: 2.5rem;
}
.social_media_share a:hover .icon, .social_media_share a:focus .icon {
  transform: scale(1.1);
}
.social_media_share a:hover .text, .social_media_share a:focus .text {
  text-decoration: underline;
}

/* Source common/css/styles/screen/steuernews.scss */

.steuernews_preview {
  margin-bottom: 0.684em;
}
.steuernews_preview .entry {
  align-items: center;
  display: flex;
  margin-bottom: 1.368em;
  max-width: 22.8125rem;
  flex-direction: column;
  width: 100%;
}
.steuernews_preview .entry .teaser_text {
  order: 2;
  width: 100%;
}
.steuernews_preview .entry .teaser_text .title {
  color: #013382;
  display: block;
  font-size: 100%;
  font-weight: 500;
  text-align: center;
  word-break: break-word;
}
.steuernews_preview .entry .image {
  flex: 0 0 auto;
  line-height: 0;
  margin: 0 0 0.684em 0;
  order: 1;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.steuernews_preview .entry .image:before {
  background-color: rgba(1, 51, 130, 0.5);
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.steuernews_preview .entry .image:after {
  background-color: #B0C700;
  bottom: 0;
  content: "";
  height: 1.1875rem;
  left: 0;
  position: absolute;
  right: 0;
  transform: translateY(100%);
  transition: all 300ms ease-out;
}
.steuernews_preview .entry .image img {
  display: block;
}
.steuernews_preview .entry:hover .image:after, .steuernews_preview .entry:focus .image:after {
  transform: translateY(0);
}

.news_entity .hide_image_author,
.news_entity .hide_creation_date {
  display: none;
}

.news_image {
  margin-bottom: 1.368em;
  max-width: 20rem;
  overflow: hidden;
}
.news_image img {
  display: block;
  width: 100%;
}
.news_image figcaption {
  background-color: #B0C700;
  color: #013382;
  margin: 0;
  padding: 0.3em;
  text-align: center;
}
.news_image + * {
  padding-top: 0;
}

.steuernews_disclaimer {
  clear: both;
}

.steuernews_sidebar .steuernews_issues_select {
  width: 100%;
}

/* Source common/css/styles/screen/steuernews_artikel_slider.scss */

.steuernews_article_slider {
  display: flex;
  overflow: hidden;
  position: relative;
  user-select: none;
  width: 100%;
}
.steuernews_article_slider .slider {
  display: flex;
  flex-wrap: nowrap;
  left: 0;
  position: absolute;
  transition: transform 600ms;
}
.steuernews_article_slider .slide {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  position: relative;
}
@media (min-width: 61.875rem) {
  .steuernews_article_slider .slide {
    flex-direction: row;
  }
}
.steuernews_article_slider .slide .image {
  flex-grow: 0;
  flex-shrink: 0;
}
.steuernews_article_slider .slide .description {
  flex-grow: 1;
  flex-shrink: 1;
  padding: 0.684em 0;
}
@media (min-width: 61.875rem) {
  .steuernews_article_slider .slide .description {
    padding: 0 4.104em 0 2.736em;
  }
}
.steuernews_article_slider .slide .description .title {
  margin: 0;
  word-wrap: break-word;
}
.steuernews_article_slider .slide .description .sub_title {
  display: block;
  margin-bottom: 0.684em;
}
.steuernews_article_slider .control_slides {
  align-items: center;
  background: #f1f3f5;
  display: flex;
  fill: #566378;
  height: 3.75rem;
  justify-content: center;
  margin-top: -1.875rem;
  opacity: 0;
  padding: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 30%;
  transition: background 300ms, opacity 300ms, visibility 300ms;
  visibility: none;
  width: 3.75rem;
  z-index: 15;
}
@media (min-width: 61.875rem) {
  .steuernews_article_slider .control_slides {
    top: 50%;
  }
}
.steuernews_article_slider .control_slides.show {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}
.steuernews_article_slider .control_slides:focus, .steuernews_article_slider .control_slides:hover {
  fill: #013382;
  outline: 0;
}
.steuernews_article_slider .control_slides .icon {
  height: 1.75rem;
  width: 1.75rem;
}
.steuernews_article_slider .prev_slide {
  left: -0.0625rem;
  transform: rotate(180deg);
}
.steuernews_article_slider .next_slide {
  right: -0.0625rem;
}

/* Source common/css/styles/screen/steuernews_navigation.scss */

.steuernews_navigation {
  margin: 1.368em 0;
}
.steuernews_navigation nav ul:after {
  clear: both;
}
.steuernews_navigation nav ul:after, .steuernews_navigation nav ul:before {
  content: "";
  display: table;
}
.steuernews_navigation nav li {
  float: left;
}
.steuernews_navigation nav li:first-child a {
  padding-left: 0;
}
.steuernews_navigation nav a {
  display: inline-block;
  line-height: 1.368;
  padding: 0 1.368em;
}

/* Source common/css/styles/screen/steuernews_newsletter_subscribe.scss */

.steuernews_newsletter_subscribe {
  background: #f1f3f5;
  border-radius: 0.375rem;
  margin-bottom: 1.368em;
  padding: 1.368em;
}

/* Source common/css/styles/screen/steuernews_video_overview.scss */

.steuernews_video_overview {
  margin-bottom: 1.368em;
}
.steuernews_video_overview .entry {
  display: inline-block;
}
.steuernews_video_overview .image {
  margin-bottom: 0.684em;
  position: relative;
}
.steuernews_video_overview .video_play {
  position: relative;
}
.steuernews_video_overview .video_play .icon {
  fill: #013382;
  height: 2.75rem;
  left: 0;
  margin: -1.375rem 0 0 0;
  position: absolute;
  right: 0;
  text-align: center;
  top: 50%;
}

/* Source common/css/styles/screen/team.scss */

.job_contact,
.team_overview {
  margin-bottom: 2.736em;
  margin-top: 1.368em;
}
.job_contact .team_entry,
.team_overview .team_entry {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.368em;
  min-height: 0.0625rem;
  width: 100%;
}
.job_contact .team_entry .photo,
.team_overview .team_entry .photo {
  max-width: 13.125rem;
  position: relative;
}
.job_contact .team_entry .photo .title,
.team_overview .team_entry .photo .title {
  background-color: rgba(1, 51, 130, 0.9);
  bottom: 0;
  color: #fff;
  display: block;
  font-size: 75%;
  left: 0;
  margin: 0;
  padding: 0.912em 0.342em;
  position: absolute;
  right: 0;
  text-align: center;
}
.job_contact .team_entry .photo img,
.team_overview .team_entry .photo img {
  display: block;
  width: 100%;
}
.job_contact .info,
.team_overview .info {
  margin: 1.368em 0 0 0;
}
.job_contact .info a,
.team_overview .info a {
  text-decoration: none;
}
.job_contact .info a:hover, .job_contact .info a:focus,
.team_overview .info a:hover,
.team_overview .info a:focus {
  text-decoration: underline;
}
.job_contact .info .title,
.team_overview .info .title {
  padding: 0;
}
@media (min-width: 35rem) {
  .job_contact .team_entry,
.team_overview .team_entry {
    align-items: center;
    flex-direction: row;
  }
  .job_contact .info,
.team_overview .info {
    margin: 0 0 0 1.368em;
  }
}

.contact_person [class*=span] {
  align-items: center;
}

/* Source common/css/styles/screen/teaser.scss */

.teaser_overview .teaser {
  align-items: center;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  margin-bottom: 3.42em;
  overflow: hidden;
  padding: 3.42em 2.052em;
  position: relative;
  text-align: center;
}
.teaser_overview .teaser:before {
  bottom: 0;
  content: "";
  height: 1.1875rem;
  left: 0;
  position: absolute;
  right: 0;
  transform: translateY(100%);
  transition: all 300ms ease-out;
}
.teaser_overview .teaser > .icon {
  height: 5.625rem;
  min-width: 5.625rem;
  width: 5.625rem;
  display: block;
  margin: 0 0 2.052em 0;
  transition: all 300ms ease-out;
}
@media (min-width: 20rem) {
  .teaser_overview .teaser > .icon {
    height: calc(5.625rem + 1.5625 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .teaser_overview .teaser > .icon {
    height: 7.1875rem;
  }
}
@media (min-width: 20rem) {
  .teaser_overview .teaser > .icon {
    min-width: calc(5.625rem + 1.5625 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .teaser_overview .teaser > .icon {
    min-width: 7.1875rem;
  }
}
@media (min-width: 20rem) {
  .teaser_overview .teaser > .icon {
    width: calc(5.625rem + 1.5625 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .teaser_overview .teaser > .icon {
    width: 7.1875rem;
  }
}
.teaser_overview .teaser .info {
  width: 100%;
}
.teaser_overview .teaser .title {
  margin-bottom: 1.368em;
  padding-top: 0;
}
.teaser_overview .teaser.style_v1 {
  background-color: #243161;
}
.teaser_overview .teaser.style_v1:before {
  background-color: #B0C700;
}
.teaser_overview .teaser.style_v1 > .icon {
  fill: #B0C700;
}
.teaser_overview .teaser.style_v1 .title {
  color: #fff;
  font-weight: 700;
  letter-spacing: normal;
}
.teaser_overview .teaser.style_v1 p {
  color: #fff;
}
.teaser_overview .teaser.style_v2 {
  background-color: #B0C700;
  box-shadow: 0 0.375rem 0.375rem 0 rgba(0, 0, 0, 0.16);
  border-bottom-right-radius: 2.4375rem;
  border-top-left-radius: 2.4375rem;
  transition: all 300ms ease-out;
}
.teaser_overview .teaser.style_v2:before {
  background-color: #013382;
}
.teaser_overview .teaser.style_v2 > .icon {
  fill: #013382;
}
.teaser_overview .teaser.style_v2 .title {
  color: #013382;
  font-weight: 400;
  text-transform: uppercase;
}
.teaser_overview .teaser.style_v2 p {
  color: #013382;
}
.teaser_overview a.teaser:hover:before, .teaser_overview a.teaser:focus:before {
  transform: translateY(0);
}
.teaser_overview a.teaser:hover > .icon, .teaser_overview a.teaser:focus > .icon {
  transform: scale(0.9) rotate(-5deg);
}

/* Source common/css/styles/screen/testimonial.scss */

.testimonial_overview .testimonial {
  display: flex;
}

/* Source common/css/styles/screen/tooltip.scss */

.tooltip_wrapper {
  display: block;
  position: relative;
  z-index: 1;
}
.checkbox .tooltip_wrapper {
  position: static;
}

[role=tooltip] {
  background: #f1f3f5;
  border-radius: 0.375rem;
  bottom: 100%;
  color: #566378;
  font-size: 85%;
  font-weight: 400;
  line-height: 1.368;
  padding: 0.684em;
  position: absolute;
  right: 0;
  text-align: center;
  transform: translateY(-0.3125rem);
  z-index: 50;
}
[role=tooltip]:after {
  border: 0.625rem solid transparent;
  border-top-color: #f1f3f5;
  bottom: -1.25rem;
  content: "";
  display: block;
  height: 0;
  left: 50%;
  margin-left: -0.625rem;
  position: absolute;
  width: 0;
}
[role=tooltip][aria-hidden=true] {
  display: none;
}

/* Source common/css/styles/screen/video.scss */

.video_overview > p,
.video_infolists_overview > p,
.video_infolist_overview > p,
.video_tutorial_overview > p {
  margin-bottom: 1.368em;
}
.video_overview .entry,
.video_infolists_overview .entry,
.video_infolist_overview .entry,
.video_tutorial_overview .entry {
  align-self: center;
  display: block;
  position: relative;
  margin-bottom: 1.368em;
  max-width: 22.8125rem;
  width: 100%;
}
.video_overview .entry .video_play,
.video_infolists_overview .entry .video_play,
.video_infolist_overview .entry .video_play,
.video_tutorial_overview .entry .video_play {
  overflow: hidden;
  position: relative;
}
.video_overview .entry .video_play:before,
.video_infolists_overview .entry .video_play:before,
.video_infolist_overview .entry .video_play:before,
.video_tutorial_overview .entry .video_play:before {
  background-color: rgba(1, 51, 130, 0.5);
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.video_overview .entry .video_play:after,
.video_infolists_overview .entry .video_play:after,
.video_infolist_overview .entry .video_play:after,
.video_tutorial_overview .entry .video_play:after {
  background-color: #B0C700;
  bottom: 0;
  content: "";
  height: 1.1875rem;
  left: 0;
  position: absolute;
  right: 0;
  transform: translateY(100%);
  transition: all 300ms ease-out;
}
.video_overview .entry .video_play .icon,
.video_infolists_overview .entry .video_play .icon,
.video_infolist_overview .entry .video_play .icon,
.video_tutorial_overview .entry .video_play .icon {
  fill: #fff;
  height: 2.75rem;
  left: 0;
  margin: -1.375rem 0 0 0;
  position: absolute;
  right: 0;
  text-align: center;
  top: 50%;
  transition: all 300ms ease-out;
  z-index: 1;
}
.video_overview .entry .image,
.video_overview .entry figure,
.video_infolists_overview .entry .image,
.video_infolists_overview .entry figure,
.video_infolist_overview .entry .image,
.video_infolist_overview .entry figure,
.video_tutorial_overview .entry .image,
.video_tutorial_overview .entry figure {
  margin: 0 0 0.684em 0;
}
.video_overview .entry .image img,
.video_overview .entry figure img,
.video_infolists_overview .entry .image img,
.video_infolists_overview .entry figure img,
.video_infolist_overview .entry .image img,
.video_infolist_overview .entry figure img,
.video_tutorial_overview .entry .image img,
.video_tutorial_overview .entry figure img {
  width: 100%;
}
.video_overview .entry figcaption,
.video_infolists_overview .entry figcaption,
.video_infolist_overview .entry figcaption,
.video_tutorial_overview .entry figcaption {
  font-size: 100%;
  font-weight: 500;
  color: #013382;
  text-align: center;
}
.video_overview .entry:hover .video_play:after, .video_overview .entry:focus .video_play:after,
.video_infolists_overview .entry:hover .video_play:after,
.video_infolists_overview .entry:focus .video_play:after,
.video_infolist_overview .entry:hover .video_play:after,
.video_infolist_overview .entry:focus .video_play:after,
.video_tutorial_overview .entry:hover .video_play:after,
.video_tutorial_overview .entry:focus .video_play:after {
  transform: translateY(0);
}
.video_overview .entry:hover .icon, .video_overview .entry:focus .icon,
.video_infolists_overview .entry:hover .icon,
.video_infolists_overview .entry:focus .icon,
.video_infolist_overview .entry:hover .icon,
.video_infolist_overview .entry:focus .icon,
.video_tutorial_overview .entry:hover .icon,
.video_tutorial_overview .entry:focus .icon {
  transform: scale(0.9) rotate(-5deg);
}

.video_wrapper {
  height: 0;
  margin-bottom: 1.368em;
  padding-top: 56.25%;
  position: relative;
}
.video_wrapper video,
.video_wrapper iframe {
  border: 0;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.video_wrapper video::cue {
  background: #000000;
  color: #ffffff;
}

.steuernews_preview,
.video_preview {
  margin-bottom: 0.684em;
}
.steuernews_preview .entry,
.video_preview .entry {
  align-self: center;
  display: flex;
  position: relative;
  margin-bottom: 1.368em;
  max-width: 22.8125rem;
  flex-direction: column;
}
.steuernews_preview .entry .teaser_text,
.video_preview .entry .teaser_text {
  order: 2;
}
.steuernews_preview .entry .teaser_text .title,
.video_preview .entry .teaser_text .title {
  color: #013382;
  display: block;
  font-size: 100%;
  font-weight: 500;
  text-align: center;
}
.steuernews_preview .entry .teaser_text p,
.video_preview .entry .teaser_text p {
  display: none;
}
.steuernews_preview .entry .video_play,
.video_preview .entry .video_play {
  overflow: hidden;
  position: relative;
}
.steuernews_preview .entry .video_play:before,
.video_preview .entry .video_play:before {
  background-color: rgba(1, 51, 130, 0.5);
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.steuernews_preview .entry .video_play:after,
.video_preview .entry .video_play:after {
  background-color: #B0C700;
  bottom: 0;
  content: "";
  height: 1.1875rem;
  left: 0;
  position: absolute;
  right: 0;
  transform: translateY(100%);
  transition: all 300ms ease-out;
}
.steuernews_preview .entry .video_play .icon,
.video_preview .entry .video_play .icon {
  fill: #fff;
  height: 2.75rem;
  left: 0;
  margin: -1.375rem 0 0 0;
  position: absolute;
  right: 0;
  text-align: center;
  top: 50%;
  transition: all 300ms ease-out;
  z-index: 1;
}
.steuernews_preview .entry .image,
.steuernews_preview .entry figure,
.video_preview .entry .image,
.video_preview .entry figure {
  margin: 0 0 0.684em 0;
  order: 1;
}
.steuernews_preview .entry .image img,
.steuernews_preview .entry figure img,
.video_preview .entry .image img,
.video_preview .entry figure img {
  width: 100%;
}
.steuernews_preview .entry:hover .video_play:after, .steuernews_preview .entry:focus .video_play:after,
.video_preview .entry:hover .video_play:after,
.video_preview .entry:focus .video_play:after {
  transform: translateY(0);
}
.steuernews_preview .entry:hover .icon, .steuernews_preview .entry:focus .icon,
.video_preview .entry:hover .icon,
.video_preview .entry:focus .icon {
  transform: scale(0.9) rotate(-5deg);
}

.steuernews_preview .video_play {
  position: relative;
}
.steuernews_preview .video_play .icon {
  fill: #013382;
  height: 2.75rem;
  left: 0;
  margin: -1.375rem 0 0 0;
  position: absolute;
  right: 0;
  text-align: center;
  top: 50%;
}

.video_service_overview {
  margin: 1.368em 0;
}

.form-search .awesomplete {
	display: flex;
	width: 100%;
}
.sidebar .teaser_overview{
  padding-top:100px;
}
.article-info dd{
 margin:0;
}
.checkbox_wrapper .agree{float:left;margin-right: 10px;}

.visform input[type='text'], .visform input[type='email'],.visform select{
  padding: 0 0.684em!important;
  transition: border 300ms!important;
  height: 2.75rem!important;
  border: 0.125rem solid #f1f3f5!important;
}
.visform textarea{
  padding: 0 0.684em!important;
  transition: border 300ms!important;
  border: 0.125rem solid #f1f3f5!important;
}
.visform input[type='text']:focus, .visform input[type='email']:focus,.visform textarea:focus {
  border-color: #013382!important;
  color: #566378!important;
}
.visform input[type='checkbox'] {
  width:20px;
  height: 20px;
  padding: 0;
  margin-top: 0;
}
.search-result {display: flex;padding: 30px 0;}
.search-result button{margin-top: 0; padding-left: 20;}