@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, i, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, button, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, input, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, main, summary,
time, mark, audio, video, iframe {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

/*
    flexbox flock, row, col and element
*/
.row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.container,
.col {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}

.row.narrow,
.col.narrow,
.container.narrow,
.container.narrow .row,
.container.narrow .col {
  gap: max(10px, min(1.15vw, 15px));
}

.row.wide,
.col.wide,
.container.wide,
.container.wide .row,
.container.wide .col {
  gap: max(15px, min(1.92vw, 25px));
}

.element {
  display: block;
  overflow: hidden;
}

.element:nth-child(odd) {
  background-color: #ccffcc;
}

.element:nth-child(even) {
  background-color: #ccfff2;
}

.flex_100 {
  flex: 100;
}

.flex_50 {
  flex: 50;
}

.flex_33 {
  flex: 33;
}

.flex_25 {
  flex: 25;
}

.flex_80 {
  flex: 80;
}

.flex_20 {
  flex: 20;
}

.flex_60 {
  flex: 60;
}

.flex_70 {
  flex: 70;
}

.flex_30 {
  flex: 30;
}

@font-face {
  font-family: "Museo Slab 700";
  src: url("/webfonts/museo-slab-700.woff2") format("woff2");
  font-display: fallback;
}
@font-face {
  font-family: "Frutiger 55 Roman";
  src: url("/webfonts/frutiger-55-roman.woff2") format("woff2");
  font-display: fallback;
}
html {
  font-family: "Frutiger 55 Roman", Verdana, sans-serif;
  font-size: calc(16px + 5 * (100vw - 576px) / 924);
  line-height: 1.2;
  color: rgb(80, 80, 80);
}
@media screen and (max-width: 576px) {
  html {
    font-size: 16px;
  }
}
@media screen and (min-width: 1500px) {
  html {
    font-size: 21px;
  }
}

html,
body {
  width: 100%;
  margin: 0px;
  padding: 0px;
  background-color: rgb(250, 250, 250);
}

body > address {
  width: 100%;
  min-width: 320px;
  max-width: 1500px;
  margin: 20px 0;
}
@media (min-width: 768px) {
  body > address {
    margin: min(1.82vw, 35px) auto;
  }
}

body > nav {
  width: 100%;
  min-width: 320px;
  max-width: 1500px;
  margin: 20px 0;
}
@media (min-width: 768px) {
  body > nav {
    margin: min(1.82vw, 35px) auto;
  }
}

body > header {
  width: 100%;
  min-width: 320px;
  max-width: 1500px;
  margin: 20px 0;
}
@media (min-width: 768px) {
  body > header {
    margin: min(1.82vw, 35px) auto;
  }
}

body > main {
  width: 100%;
  min-width: 320px;
  max-width: 1500px;
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: min(1.82vw, 35px);
}
@media (min-width: 768px) {
  body > main {
    margin: min(1.82vw, 35px) auto;
  }
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  body > main > *:not(:last-child) {
    margin: 0 0 min(1.82vw, 35px) 0;
  }
  body > main > *:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  body > main {
    flex-direction: column;
  }
}
@media (min-width: 992px) {
  body > main {
    flex-direction: row;
  }
  @supports (-webkit-touch-callout: none) and (not (translate: none)) {
    body > main > * {
      margin: 0 min(1.82vw, 35px) min(1.82vw, 35px) 0 !important;
    }
    body > main > *:nth-child(2n+2) {
      margin: 0 0 min(1.82vw, 35px) 0 !important;
    }
    body > main > *:nth-last-child(-n+2) {
      margin: 0 min(1.82vw, 35px) 0 0 !important;
    }
    body > main > *:last-child {
      margin: 0 0 0 0 !important;
    }
  }
}

body > main > article {
  flex: 70 1 70%;
}

body > main > aside {
  flex: 30 1 30%;
  margin-top: 20;
}

@media (min-width: 1180px) {
  main.job_container {
    flex-wrap: nowrap;
  }
  main.job_container .job_content {
    flex: 70 1 70%;
  }
  main.job_container .aside_box {
    flex: 30 1 30%;
  }
  main.job_container .job_button_bar {
    flex-wrap: nowrap;
  }
}

body > section {
  width: 100%;
  min-width: 320px;
  max-width: 1500px;
  margin: 20px 0;
}
@media (min-width: 768px) {
  body > section {
    margin: min(1.82vw, 35px) auto;
  }
}

body > .form_container {
  flex: 70 1 70%;
  display: flex;
  max-width: 1500px;
  margin: auto;
  gap: min(1.82vw, 35px);
  flex-direction: column;
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  body > .form_container > *:not(:last-child) {
    margin: 0 0 min(1.82vw, 35px) 0;
  }
  body > .form_container > *:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 992px) {
  body > .form_container {
    flex-direction: row;
  }
}

body > .form_container > section {
  flex: 70 1 70%;
}

body > .form_container > aside {
  flex: 30 1 30%;
  margin-top: 20;
}

body > section.full_width {
  width: 100%;
  min-width: 320px;
  max-width: unset;
  background-color: rgb(240, 240, 240);
  padding: min(1.82vw, 35px);
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 768px) {
  body > section.full_width {
    padding: min(1.82vw, 35px);
  }
}

body > section.full_width > .center_content {
  max-width: 1500px;
  margin: 0 auto;
}

body > footer {
  width: 100%;
}

.article_overview .rows_wrapper {
  display: grid;
  grid-template-columns: 1fr;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .article_overview .rows_wrapper {
    grid-template-columns: 1fr 1fr;
    gap: max(15px, min(1.92vw, 25px));
  }
}
@media (min-width: 992px) {
  .article_overview .rows_wrapper {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.article_overview .rows_wrapper .news_row:first-child {
  margin-bottom: max(15px, min(1.92vw, 25px));
}
@media (min-width: 768px) {
  .article_overview .rows_wrapper .news_row:first-child {
    margin-bottom: 0;
  }
}
@media (min-width: 992px) {
  .article_overview .rows_wrapper .news_row:first-child {
    margin-bottom: max(15px, min(1.92vw, 25px));
  }
}
.article_overview .rows_wrapper .news_row .row_title {
  font-family: "Museo Slab 700";
  font-size: 1.39rem;
  line-height: 1.2;
  font-weight: 400;
  color: rgb(243, 146, 0);
  padding: max(10px, min(1.15vw, 15px)) max(15px, min(1.92vw, 25px));
  padding-top: 0;
}
.article_overview .rows_wrapper .news_row .row_body {
  display: flex;
  flex-direction: column;
  gap: max(15px, min(1.92vw, 25px));
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .article_overview .rows_wrapper .news_row .row_body > *:not(:last-child) {
    margin: 0 0 max(15px, min(1.92vw, 25px)) 0;
  }
  .article_overview .rows_wrapper .news_row .row_body > *:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 992px) {
  .article_overview .rows_wrapper .news_row .row_body {
    flex-direction: row;
  }
  @supports (-webkit-touch-callout: none) and (not (translate: none)) {
    .article_overview .rows_wrapper .news_row .row_body > * {
      margin-right: max(15px, min(1.92vw, 25px)) !important;
    }
    .article_overview .rows_wrapper .news_row .row_body > *:last-child {
      margin-right: 0 !important;
    }
  }
}
.article_overview .rows_wrapper .news_row .row_body .news_item {
  flex: 1;
  height: 320px;
  box-shadow: 1px 1px 8px rgba(80, 80, 80, 0.3);
}
@media (min-width: 992px) {
  .article_overview .rows_wrapper .news_row .row_body .news_item {
    max-width: 480px;
  }
}
.article_overview .rows_wrapper .news_row .row_body .news_item .head {
  height: 80px;
  padding: max(15px, min(1.92vw, 25px));
  display: flex;
  align-items: center;
}
.article_overview .rows_wrapper .news_row .row_body .news_item .head .title {
  font-family: "Museo Slab 700";
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 400;
  font-size: 0.85rem;
}
.article_overview .rows_wrapper .news_row .row_body .news_item .body {
  height: 200px;
  position: relative;
}
.article_overview .rows_wrapper .news_row .row_body .news_item .body img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article_overview .rows_wrapper .news_row .row_body .news_item .body .teaser {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: max(15px, min(1.92vw, 25px));
  background-color: rgb(243, 146, 0);
  color: rgb(250, 250, 250);
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  font-family: "Frutiger 55 Roman";
  font-size: 0.8rem;
  line-height: 1.52;
  font-weight: 400;
}
.article_overview .rows_wrapper .news_row .row_body .news_item .footer {
  height: 40px;
  display: flex;
  align-items: center;
  padding: max(5px, min(0.7vw, 10px)) max(15px, min(1.92vw, 25px));
  font-family: "Frutiger 55 Roman";
  font-size: 0.8rem;
  line-height: 1.52;
  font-weight: 400;
}
.article_overview .rows_wrapper .news_row .row_body .news_item:hover .body .teaser {
  opacity: 0.85;
}

/* Blog tiles Widget */
.blog_container {
  width: 100%;
  max-width: 100%;
  min-width: 320px;
  background-color: rgb(240, 240, 240);
}

.blog_tiles {
  width: 100%;
  min-width: 320px;
  max-width: 1500px;
  margin: 0 auto;
  padding-top: max(15px, min(1.92vw, 25px));
  gap: max(15px, min(1.92vw, 25px));
  column-count: 1;
}
@media (min-width: 768px) {
  .blog_tiles {
    column-count: 2;
  }
}
@media (min-width: 992px) {
  .blog_tiles {
    column-count: 3;
  }
}
.blog_tiles .blog_content {
  padding: max(15px, min(1.92vw, 25px));
}
.blog_tiles .blog_title {
  font-family: "Museo Slab 700";
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 400;
}
.blog_tiles .blog_teaser {
  font-family: "Frutiger 55 Roman";
  font-size: 0.8rem;
  line-height: 1.52;
  font-weight: 400;
}
.blog_tiles .blog_tiles_item {
  background-color: rgb(250, 250, 250);
}
.blog_tiles_item {
  display: inline-block;
  width: 100%;
  color: rgb(80, 80, 80);
  box-sizing: border-box;
  position: relative;
  text-decoration: none;
  margin-bottom: max(15px, min(1.92vw, 25px));
}
.blog_tiles_item > img {
  display: block;
  width: 100%;
}
.blog_tiles_item > p {
  position: absolute;
  padding: max(10px, min(1.15vw, 15px));
  padding-left: max(15px, min(1.92vw, 25px));
  bottom: max(15px, min(1.92vw, 25px));
  width: 100%;
  transition: opacity 0.5s ease-in-out;
  opacity: 0;
  box-sizing: inherit;
  font-family: "Frutiger 55 Roman";
  font-size: 0.8rem;
  line-height: 1.52;
  font-weight: 400;
}
.blog_tiles_item:hover p {
  opacity: 0.85;
}
.blog_tiles_item > footer {
  display: block;
  font-family: "Frutiger 55 Roman";
  font-size: 0.6rem;
  line-height: 1.2;
  font-weight: 500;
  line-height: max(15px, min(1.92vw, 25px));
  padding-left: max(15px, min(1.92vw, 25px));
}

/* Design Imporvment */
/* Logo start */
.blog_tiles_logo_container {
  background-color: rgb(250, 250, 250);
  margin-bottom: max(15px, min(1.92vw, 25px));
}

.blog_tiles_logo_container .blog_logo {
  width: 100%;
  padding: max(15px, min(1.92vw, 25px));
  justify-content: left;
  max-width: 320px;
  display: block;
}
@media (min-width: 768px) {
  .blog_tiles_logo_container .blog_logo {
    max-width: 400px;
  }
}

/* Logo End */
/* Image responsive satrted */
.blog_tiles_item > img {
  max-height: 200px;
  object-fit: cover;
  object-position: 50% 20%;
}
@media (min-width: 768px) {
  .blog_tiles_item > img {
    max-height: 230px;
  }
}

/*1170 x 2532 px*/
/* Image responsive end */
/* set color based on body class */
.blog_tiles_item > p {
  background: rgb(240, 240, 240);
}

body.green .blog_tiles_item > p {
  background: rgba(215, 227, 221, 0.8);
}

body.blue .blog_tiles_item > p {
  background: rgba(217, 220, 216, 0.8);
}

body.orange .blog_tiles_item > p {
  background: rgba(252, 224, 183, 0.8);
}

.product-pagination {
  display: flex;
  justify-content: center;
}
.product-pagination .pagination {
  display: flex;
  column-gap: 2px;
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .product-pagination .pagination > * {
    margin-right: 2px !important;
  }
  .product-pagination .pagination > *:last-child {
    margin-right: 0 !important;
  }
}
.product-pagination .pagination .page-item {
  width: 2.3rem;
  height: 2.3rem;
  box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.35);
}
.product-pagination .pagination .page-item .page-link {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  background-color: rgb(111, 111, 111);
  color: rgb(250, 250, 250);
}
.product-pagination .pagination .page-item .page-link:hover {
  background-color: rgb(243, 146, 0);
}
.product-pagination .pagination .page-item.active .page-link {
  background-color: rgb(243, 146, 0);
}
.product-pagination .pagination .page-item.disabled .page-link {
  background-color: rgba(111, 111, 111, 0.5);
  cursor: default;
  pointer-events: none;
}

.portal_main {
  display: flex;
  flex-direction: column;
  row-gap: max(15px, min(1.92vw, 25px));
  overflow: hidden;
  margin-top: 0;
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .portal_main > *:not(:last-child) {
    margin: 0 0 max(15px, min(1.92vw, 25px)) 0;
  }
  .portal_main > *:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .portal_main {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

/* page_hero fields definitions */
.portal_main .page_hero {
  flex: 45%;
  min-height: 140px;
  background-size: cover;
  background-position: 50% 20%;
  position: relative;
}
.portal_main .page_hero::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  transition: background-color 1s ease;
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .portal_main .page_hero:nth-of-type(-n + 2) {
    margin-bottom: max(15px, min(1.92vw, 25px));
  }
}
@media (min-width: 768px) {
  .portal_main .page_hero {
    height: 23vh;
    min-height: 260px;
  }
}
@media (min-width: 1001px) {
  .portal_main .page_hero {
    height: min(38.38vh, 414.5px);
    min-height: 320px;
  }
}

.portal_main .page_hero.orange {
  order: 1;
}
.portal_main .page_hero.orange::after {
  background: linear-gradient(90deg, #f39200 5%, rgba(243, 146, 0, 0.8) 15%, rgba(243, 146, 0, 0.4) 60%), rgba(243, 146, 0, 0.7);
}
.portal_main .page_hero.orange:hover::after {
  background-color: rgba(243, 146, 0, 0.9);
}

.portal_main .page_hero.red {
  cursor: pointer;
  order: 4;
  padding-left: max(15px, min(1.92vw, 25px));
  padding-top: 0;
}
.portal_main .page_hero.red::after {
  background: linear-gradient(90deg, #963c50 5%, rgba(150, 60, 80, 0.8) 15%, rgba(150, 60, 80, 0.4) 60%) rgba(150, 60, 80, 0.7);
}
.portal_main .page_hero.red:hover::after {
  background-color: rgba(150, 60, 80, 0.9);
}
@media (min-width: 768px) {
  .portal_main .page_hero.red {
    order: 4;
    padding: 0 max(35px, min(3.85vw, 50px));
  }
  .portal_main .page_hero.red::after {
    content: "";
    width: 150%;
    height: calc(100% + 1px);
    position: absolute;
    top: 0;
    left: 0;
    transform-origin: top right;
    border-left: max(15px, min(1.92vw, 25px)) solid white;
    transform: skewX(-14deg);
  }
}
@media (min-width: 992px) {
  .portal_main .page_hero.red {
    padding-top: max(10px, min(1.15vw, 15px));
  }
}

.portal_main .page_hero.blue {
  order: 2;
  background-position: 50% 40%;
}
.portal_main .page_hero.blue::after {
  background: linear-gradient(90deg, #41506e 5%, rgba(65, 80, 110, 0.8) 15%, rgba(65, 80, 110, 0.4) 60%), rgba(65, 80, 110, 0.7);
}
.portal_main .page_hero.blue:hover::after {
  background-color: rgba(65, 80, 110, 0.9);
}
@media (min-width: 768px) {
  .portal_main .page_hero.blue {
    order: 3;
  }
  .portal_main .page_hero.blue::after {
    content: "";
    width: 150%;
    height: calc(100% + 0.5px);
    position: absolute;
    top: 0;
    left: 0;
    transform-origin: bottom right;
    border-left: max(15px, min(1.92vw, 25px)) solid white;
    transform: skewX(14deg);
  }
}

.portal_main .page_hero.green {
  order: 3;
}
.portal_main .page_hero.green::after {
  background: linear-gradient(90deg, #377157 5%, rgba(55, 113, 87, 0.8) 15%, rgba(55, 113, 87, 0.4) 60%) rgba(55, 113, 87, 0.7);
}
.portal_main .page_hero.green:hover::after {
  background-color: rgba(55, 113, 87, 0.9);
}
@media (min-width: 768px) {
  .portal_main .page_hero.green {
    order: 3;
  }
}

/* hero_list container */
.portal_main .hero_list_container {
  width: 90%;
  max-width: 450px;
  z-index: 20;
  padding: max(15px, min(1.92vw, 25px)) 0;
  color: rgb(250, 250, 250);
}
.portal_main .hero_list_container .hero_list_header {
  height: 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Museo Slab 700";
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 400;
  margin-bottom: 0.2rem;
}
.portal_main .hero_list_container .hero_list_header .sublists_pagination {
  display: flex;
  align-items: center;
  gap: max(10px, min(1.15vw, 15px));
  font-size: 0.8rem;
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .portal_main .hero_list_container .hero_list_header .sublists_pagination > * {
    margin-right: max(10px, min(1.15vw, 15px)) !important;
  }
  .portal_main .hero_list_container .hero_list_header .sublists_pagination > *:last-child {
    margin-right: 0 !important;
  }
}
.portal_main .hero_list_container .hero_list_header .sublists_pagination .pagination_page.active {
  color: rgb(243, 146, 0);
  font-size: 1.3rem;
}
.portal_main .hero_list_container .hero_list_header .sublists_pagination .pagination_page:hover {
  cursor: pointer;
  color: rgb(243, 146, 0);
}
.portal_main .hero_list_container .hero_list.hidden {
  display: none;
}
.portal_main .hero_list_container .hero_list .hero_list_item {
  font-family: "Frutiger 55 Roman";
  font-size: 0.8rem;
  line-height: 1.52;
  font-weight: 400;
  /* border-bottom: 1px solid;*/
}
.portal_main .hero_list_container .hero_list .hero_list_item:first-child {
  border-top: 1px solid;
  padding-top: max(10px, min(1.15vw, 15px));
}
.portal_main .hero_list_container .hero_list .hero_list_item .hero_list_link {
  display: inline-block;
  width: 100%;
  padding: 4px 5px;
}
.portal_main .hero_list_container .hero_list .hero_list_item .hero_list_link .hero_list_icon {
  display: inline-block;
  color: rgb(250, 250, 250);
  margin-right: max(5px, min(0.7vw, 10px));
}
.portal_main .hero_list_container .hero_list .hero_list_item:hover .hero_list_link,
.portal_main .hero_list_container .hero_list .hero_list_item:hover .hero_list_icon {
  color: rgb(243, 146, 0);
}

/* portal_content*/
.portal_main .portal_content {
  position: absolute;
  left: max(15px, min(1.92vw, 25px));
  bottom: max(35px, min(3.85vw, 50px));
  text-align: left;
  color: rgb(250, 250, 250);
  z-index: 20;
}
@media (min-width: 768px) {
  .portal_main .portal_content {
    left: max(35px, min(3.85vw, 50px));
  }
}
.portal_main .portal_content.job_offers {
  top: 50%;
  left: auto;
  right: max(35px, min(3.85vw, 50px));
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: max(10px, min(1.15vw, 15px));
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .portal_main .portal_content.job_offers > *:not(:last-child) {
    margin: 0 0 max(10px, min(1.15vw, 15px)) 0;
  }
  .portal_main .portal_content.job_offers > *:last-child {
    margin-bottom: 0;
  }
}
.portal_main .portal_content.job_offers .title {
  font-family: "Museo Slab 700";
  font-size: 1.39rem;
  line-height: 1.2;
  font-weight: 400;
}
.portal_main .portal_content.job_offers .title:hover {
  color: rgb(243, 146, 0);
}
.portal_main .portal_content.job_offers .title:hover .img_item_icon {
  color: rgb(243, 146, 0);
}

.portal_main .title {
  font-family: "Museo Slab 700";
  font-size: 1.74rem;
  line-height: 1.2;
  font-weight: 400;
  display: block;
}

.portal_main .subtitle {
  font-family: "Museo Slab 700";
  font-size: 1.39rem;
  line-height: 1.2;
  font-weight: 400;
  opacity: 0.6;
  display: inline-block;
  padding-right: 0;
}
@media (min-width: 768px) {
  .portal_main .subtitle {
    padding-right: 50px;
  }
}

.portal_main .img_item_icon {
  color: rgb(250, 250, 250);
  transform: translateY(3px);
}

/* page_hero_third */
.page_hero_container_third {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: max(15px, min(1.92vw, 25px));
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .page_hero_container_third > *:not(:last-child) {
    margin: 0 0 max(15px, min(1.92vw, 25px)) 0;
  }
  .page_hero_container_third > *:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 992px) {
  .page_hero_container_third {
    flex-direction: row;
    max-height: min(26vw, 500px);
    gap: 0;
  }
  @supports (-webkit-touch-callout: none) and (not (translate: none)) {
    .page_hero_container_third > * {
      margin: 0 0 0 0 !important;
    }
    .page_hero_container_third > *:nth-child(2n+2) {
      margin: 0 0 0 0 !important;
    }
    .page_hero_container_third > *:nth-last-child(-n+2) {
      margin: 0 0 0 0 !important;
    }
    .page_hero_container_third > *:last-child {
      margin: 0 0 0 0 !important;
    }
  }
  .page_hero_container_third::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 1;
    z-index: 20;
    background-color: rgb(243, 146, 0);
    animation: fade_illusion 0.2s ease forwards;
    animation-delay: 0.2s;
  }
  @keyframes fade_illusion {
    0% {
      opacity: 1;
    }
    100% {
      opacity: 0;
      z-index: -1;
    }
  }
}

.page_hero_container_third .page_hero {
  width: 100%;
  height: min(50vw, 500px);
  position: relative;
}
@media (min-width: 992px) {
  .page_hero_container_third .page_hero {
    height: min(26vw, 500px);
    flex: 1 1 70%;
  }
}

.page_hero_container_third .page_hero:after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.page_hero_container_third.red .page_hero:after {
  background: linear-gradient(30deg, rgba(150, 60, 80, 0.9) 20%, rgba(150, 60, 80, 0.1) 45%);
}

.page_hero_container_third.orange .page_hero:after {
  background: linear-gradient(30deg, rgba(243, 146, 0, 0.9) 20%, rgba(243, 146, 0, 0.7) 30%, rgba(243, 146, 0, 0.2) 45%);
}

.page_hero_container_third.blue .page_hero:after {
  background: linear-gradient(30deg, rgba(65, 80, 110, 0.9) 20%, rgba(65, 80, 110, 0.2) 45%);
}

.page_hero_container_third.green .page_hero:after {
  background: linear-gradient(30deg, rgba(55, 113, 87, 0.9) 20%, rgba(55, 113, 87, 0.2) 45%);
}

.page_hero_container_third.red .page_hero:after {
  background: linear-gradient(30deg, rgba(150, 60, 80, 0.9) 20%, rgba(150, 60, 80, 0.2) 45%);
}

.page_hero_container_third .hero_image {
  display: block;
  object-fit: cover;
  width: 100%;
  height: min(50vw, 500px);
}
@media (min-width: 992px) {
  .page_hero_container_third .hero_image {
    width: 100%;
    height: min(26vw, 500px);
  }
}

/* title + subtitle left without box */
.page_hero_container_third .hero_title {
  position: absolute;
  bottom: max(35px, min(3.85vw, 50px));
  left: max(15px, min(1.92vw, 25px));
  color: rgb(250, 250, 250);
  justify-content: left;
  max-width: 90%;
  z-index: 10;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .page_hero_container_third .hero_title {
    max-width: 75%;
  }
}
@media (min-width: 992px) {
  .page_hero_container_third .hero_title {
    top: auto;
    bottom: max(35px, min(3.85vw, 50px));
    left: max(35px, min(3.85vw, 50px));
  }
}
.page_hero_container_third .hero_title .title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  font-family: "Museo Slab 700";
  font-size: 1.74rem;
  line-height: 1.2;
  font-weight: 400;
}
.page_hero_container_third .hero_title .subtitle {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-family: "Museo Slab 700";
  font-size: 1.39rem;
  line-height: 1.2;
  font-weight: 400;
  opacity: 0.6;
}
.page_hero_container_third .hero_title .week_news_caption {
  font-family: "Frutiger 55 Roman";
  font-size: 1rem;
  line-height: 1.52;
  font-weight: 400;
}
.page_hero_container_third .hero_title .week_news_title {
  display: block;
  font-family: "Museo Slab 700";
  font-size: 1.25rem;
  line-height: 1.2;
  font-weight: 400;
  color: rgb(243, 146, 0);
}
.page_hero_container_third .hero_title .week_news_title i {
  display: inline;
}
@media (min-width: 992px) {
  .page_hero_container_third .hero_title .week_news_title {
    font-family: "Museo Slab 700";
    font-size: 1.39rem;
    line-height: 1.2;
    font-weight: 400;
  }
  .page_hero_container_third .hero_title .week_news_title i {
    font-size: 1.3rem;
  }
}
.page_hero_container_third .hero_title .week_news_subtitle {
  font-family: "Frutiger 55 Roman";
  font-size: 0.8rem;
  line-height: 1.52;
  font-weight: 400;
}

/* hero_list_image_container*/
.page_hero_container_third .hero_list_image_container {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: max(15px, min(1.92vw, 25px));
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .page_hero_container_third .hero_list_image_container > * {
    margin-right: max(15px, min(1.92vw, 25px));
    margin-bottom: max(15px, min(1.92vw, 25px));
  }
  .page_hero_container_third .hero_list_image_container > *:last-child {
    margin-right: 0;
  }
}
@media (min-width: 992px) {
  .page_hero_container_third .hero_list_image_container {
    flex: 30%;
    flex-direction: column;
    position: relative;
  }
  @supports (-webkit-touch-callout: none) and (not (translate: none)) {
    .page_hero_container_third .hero_list_image_container > *:not(:last-child) {
      margin: 0 0 max(15px, min(1.92vw, 25px)) 0;
    }
    .page_hero_container_third .hero_list_image_container > *:last-child {
      margin-bottom: 0;
    }
  }
}

.page_hero_container_third .hero_list_image_container > *:not(script) {
  flex: 1;
  display: flex;
  min-width: 45%;
  min-height: max(15px, min(1.92vw, 25px));
  position: relative;
}

.page_hero_container_third .hero_list_image_container .img_item {
  flex: 1;
  min-height: min(30vw, 200px);
}
@media (min-width: 768px) {
  .page_hero_container_third .hero_list_image_container .img_item {
    min-height: min(30vw, 250px);
  }
}
@media (min-width: 992px) {
  .page_hero_container_third .hero_list_image_container .img_item {
    min-height: auto;
  }
}
.page_hero_container_third .hero_list_image_container .img_item_image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
.page_hero_container_third .hero_list_image_container .img_item:after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  transition-duration: 3s;
  background: linear-gradient(0deg, rgba(10, 10, 10, 0.3) 10%, rgba(250, 250, 250, 0) 60%);
}
.page_hero_container_third .hero_list_image_container .img_item:hover:after {
  background-color: rgba(10, 10, 10, 0.8);
}
.page_hero_container_third .hero_list_image_container .img_item.orange:after {
  background: linear-gradient(0deg, rgba(243, 146, 0, 0.5) 10%, rgba(243, 146, 0, 0) 60%);
}
.page_hero_container_third .hero_list_image_container .img_item.orange:hover:after {
  background-color: rgba(243, 146, 0, 0.8);
}
.page_hero_container_third .hero_list_image_container .img_item.blue:after {
  background: linear-gradient(0deg, rgba(65, 80, 110, 0.9) 10%, rgba(65, 80, 110, 0) 60%);
}
.page_hero_container_third .hero_list_image_container .img_item.blue:hover:after {
  background-color: rgba(65, 80, 110, 0.8);
}
.page_hero_container_third .hero_list_image_container .img_item.green:after {
  background: linear-gradient(0deg, rgba(55, 113, 87, 0.9) 10%, rgba(55, 113, 87, 0) 60%);
}
.page_hero_container_third .hero_list_image_container .img_item.green:hover:after {
  background-color: rgba(55, 113, 87, 0.8);
}
.page_hero_container_third .hero_list_image_container .img_item.red:after {
  background: linear-gradient(0deg, rgba(150, 60, 80, 0.9) 10%, rgba(150, 60, 80, 0) 60%);
}
.page_hero_container_third .hero_list_image_container .img_item.red:hover:after {
  background-color: rgba(150, 60, 80, 0.8);
}
.page_hero_container_third .hero_list_image_container .img_item_caption {
  position: absolute;
  bottom: max(10px, min(1.15vw, 15px));
  left: max(15px, min(1.92vw, 25px));
  display: block;
  z-index: 20;
  color: rgb(250, 250, 250);
  font-family: "Frutiger 55 Roman";
  font-size: 1rem;
  line-height: 1.52;
  font-weight: 400;
  line-height: 2;
}
.page_hero_container_third .hero_list_image_container .img_item_icon {
  display: inline-block;
  margin-right: max(10px, min(1.15vw, 15px));
}

/* hero_list_link_container*/
.page_hero_container_third .hero_list_link_container {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: max(10px, min(1.15vw, 15px));
  font-family: "Frutiger 55 Roman";
  font-size: 1rem;
  line-height: 1.52;
  font-weight: 400;
  line-height: 2.4rem;
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .page_hero_container_third .hero_list_link_container > * {
    margin-right: max(10px, min(1.15vw, 15px));
    margin-bottom: max(10px, min(1.15vw, 15px));
  }
  .page_hero_container_third .hero_list_link_container > *:last-child {
    margin-right: 0;
  }
}
@media (min-width: 768px) {
  .page_hero_container_third .hero_list_link_container {
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  .page_hero_container_third .hero_list_link_container {
    flex: 30;
    flex-direction: column;
    justify-content: space-between;
    line-height: 1.2;
  }
  @supports (-webkit-touch-callout: none) and (not (translate: none)) {
    .page_hero_container_third .hero_list_link_container > *:not(:last-child) {
      margin: 0 0 max(10px, min(1.15vw, 15px)) 0;
    }
    .page_hero_container_third .hero_list_link_container > *:last-child {
      margin-bottom: 0;
    }
  }
}

.page_hero_container_third .hero_list_link_container .text_item {
  background-color: rgb(226, 226, 226);
  align-items: center;
  padding-left: max(15px, min(1.92vw, 25px));
}
@media (min-width: 768px) {
  .page_hero_container_third .hero_list_link_container .text_item {
    padding-left: 0;
  }
}
.page_hero_container_third .hero_list_link_container .text_item.active {
  background-color: rgb(243, 146, 0);
}
.page_hero_container_third .hero_list_link_container .text_item:hover {
  background-color: rgb(111, 111, 111);
  color: rgb(250, 250, 250);
}
.page_hero_container_third .hero_list_link_container .text_item .text_item_icon {
  display: inline-block;
  margin-right: max(10px, min(1.15vw, 15px));
}
@media (min-width: 768px) {
  .page_hero_container_third .hero_list_link_container .text_item .text_item_icon {
    margin-left: max(15px, min(1.92vw, 25px));
  }
}
.page_hero_container_third .hero_list_link_container .text_item:hover .text_item_icon {
  color: rgb(250, 250, 250);
}

.page_hero_container_third .hero_list_link_container > *:not(script) {
  flex: 1;
  min-width: 45%;
  display: flex;
  min-height: 2.4rem;
  padding: 0.25rem 0;
  position: relative;
}
@media (min-width: 992px) {
  .page_hero_container_third .hero_list_link_container > *:not(script) {
    min-height: auto;
  }
}

.page_hero_container_third.orange .hero_list_link_container .text_item:hover {
  background-color: rgb(243, 146, 0);
  color: rgb(250, 250, 250);
}

.page_hero_container_third.blue .hero_list_link_container .text_item:hover {
  background-color: rgb(65, 80, 110);
  color: rgb(250, 250, 250);
}

.page_hero_container_third.green .hero_list_link_container .text_item:hover {
  background-color: rgb(55, 113, 87);
  color: rgb(250, 250, 250);
}

.page_hero_container_third.red .hero_list_link_container .text_item:hover {
  background-color: rgb(150, 60, 80);
  color: rgb(250, 250, 250);
}

/* page_hero_Full */
.page_hero_full {
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
  background-color: rgba(111, 111, 111, 0.9);
  overflow: hidden;
}

/* hero image with gradient */
.page_hero_full .page_hero {
  position: relative;
  width: 100%;
}

.page_hero_full .hero_image {
  display: block;
  object-fit: cover;
  width: 100%;
  height: min(40vw, 500px);
}
@media (min-width: 768px) {
  .page_hero_full .hero_image {
    height: min(26vw, 500px);
  }
}

.page_hero_full .page_hero:after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.3) 20%, rgba(250, 250, 250, 0) 40%);
}
@media (min-width: 992px) {
  .page_hero_full .page_hero:after {
    background: linear-gradient(20deg, rgba(10, 10, 10, 0.3) 20%, rgba(250, 250, 250, 0) 40%);
  }
}

.page_hero_full.gradient_orange .page_hero:after {
  background: linear-gradient(20deg, rgba(243, 146, 0, 0.5) 20%, rgba(243, 146, 0, 0.1) 40%);
}

.page_hero_full.gradient_blue .page_hero:after {
  background: linear-gradient(20deg, rgba(65, 80, 110, 0.8) 20%, rgba(65, 80, 110, 0.2) 40%);
}

.page_hero_full.gradient_green .page_hero:after {
  background: linear-gradient(20deg, rgba(55, 113, 87, 0.8) 20%, rgba(55, 113, 87, 0) 40%);
}

.page_hero_full.gradient_red .page_hero:after {
  background: linear-gradient(20deg, rgba(150, 60, 80, 0.8) 20%, rgba(150, 60, 80, 0) 40%);
}

/* hero list container */
.page_hero_full .hero_list_container {
  color: rgb(80, 80, 80);
  background-color: rgb(250, 250, 250);
}
@media (min-width: 992px) {
  .page_hero_full .hero_list_container {
    width: 100%;
    max-width: 360px;
    height: 100%;
    max-height: 340px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(111, 111, 111, 0.6);
    color: rgb(250, 250, 250);
    padding: max(15px, min(1.92vw, 25px));
  }
}
@media (min-width: 1070px) {
  .page_hero_full .hero_list_container {
    max-width: 400px;
  }
}
@media (min-width: 1300px) {
  .page_hero_full .hero_list_container {
    max-width: 435px;
  }
}
.page_hero_full .hero_list_container .hero_list_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: max(15px, min(1.92vw, 25px));
  font-family: "Museo Slab 700";
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 400;
}
@media (min-width: 992px) {
  .page_hero_full .hero_list_container .hero_list_header {
    color: rgb(250, 250, 250);
    padding: 0px;
    margin-bottom: 0.2rem;
  }
}
@media (min-width: 992px) {
  .page_hero_full .hero_list_container .hero_list_header {
    height: 35px;
  }
}
.page_hero_full .hero_list_container .hero_list_header .sublists_pagination {
  display: flex;
  align-items: center;
  gap: max(10px, min(1.15vw, 15px));
  font-size: 0.8rem;
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .page_hero_full .hero_list_container .hero_list_header .sublists_pagination > * {
    margin-right: max(10px, min(1.15vw, 15px)) !important;
  }
  .page_hero_full .hero_list_container .hero_list_header .sublists_pagination > *:last-child {
    margin-right: 0 !important;
  }
}
.page_hero_full .hero_list_container .hero_list_header .sublists_pagination .pagination_page.active {
  color: rgb(243, 146, 0);
  font-size: 1.3rem;
}
.page_hero_full .hero_list_container .hero_list_header .sublists_pagination .pagination_page:hover {
  cursor: pointer;
  color: rgb(243, 146, 0);
}
.page_hero_full .hero_list_container .hero_list {
  display: flex;
  flex-direction: column;
  gap: max(10px, min(1.15vw, 15px));
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .page_hero_full .hero_list_container .hero_list > *:not(:last-child) {
    margin: 0 0 max(10px, min(1.15vw, 15px)) 0;
  }
  .page_hero_full .hero_list_container .hero_list > *:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .page_hero_full .hero_list_container .hero_list {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
@media (min-width: 992px) {
  .page_hero_full .hero_list_container .hero_list {
    flex-direction: column;
    gap: 0;
  }
  @supports (-webkit-touch-callout: none) and (not (translate: none)) {
    .page_hero_full .hero_list_container .hero_list > *:not(:last-child) {
      margin: 0 0 0 0;
    }
    .page_hero_full .hero_list_container .hero_list > *:last-child {
      margin-bottom: 0;
    }
  }
}
.page_hero_full .hero_list_container .hero_list.hidden {
  display: none;
}
.page_hero_full .hero_list_container .hero_list .hero_list_item {
  position: relative;
  flex: 1;
  min-width: 45%;
}
@media (min-width: 992px) {
  .page_hero_full .hero_list_container .hero_list .hero_list_item {
    border-bottom: 1px solid;
  }
  .page_hero_full .hero_list_container .hero_list .hero_list_item:first-child {
    border-top: 1px solid;
  }
}
.page_hero_full .hero_list_container .hero_list .hero_list_item .hero_list_link {
  display: block;
  width: 100%;
  background-color: rgb(240, 240, 240);
  padding: 0 max(15px, min(1.92vw, 25px));
  text-decoration: none;
  font-family: "Frutiger 55 Roman";
  font-size: 1rem;
  line-height: 1.52;
  font-weight: 400;
  line-height: 2.4rem;
}
@media (min-width: 992px) {
  .page_hero_full .hero_list_container .hero_list .hero_list_item .hero_list_link {
    padding: max(5px, min(0.7vw, 10px)) max(10px, min(1.15vw, 15px));
    font-family: "Frutiger 55 Roman";
    font-size: 0.8rem;
    line-height: 1.52;
    font-weight: 400;
    line-height: 1.2;
    background-color: transparent;
  }
}
.page_hero_full .hero_list_container .hero_list .hero_list_item .hero_list_link .hero_list_icon {
  display: inline-block;
  color: rgb(80, 80, 80);
  margin-right: max(5px, min(0.7vw, 10px));
}
@media (min-width: 992px) {
  .page_hero_full .hero_list_container .hero_list .hero_list_item .hero_list_link .hero_list_icon {
    margin-left: 0;
    color: rgb(250, 250, 250);
  }
}
.page_hero_full .hero_list_container .hero_list .hero_list_item:hover .hero_list_link {
  color: rgb(243, 146, 0);
}
.page_hero_full .hero_list_container .hero_list .hero_list_item:hover .hero_list_icon {
  color: rgb(243, 146, 0);
}

.page_hero_full .hero_title_box {
  color: rgb(250, 250, 250);
  background-color: rgb(111, 111, 111);
  text-align: left;
  padding: max(15px, min(1.92vw, 25px));
}
@media (min-width: 992px) {
  .page_hero_full .hero_title_box {
    position: absolute;
    bottom: max(35px, min(3.85vw, 50px));
    left: 0;
    transform: translateX(-1.9rem);
    padding-left: 3.8rem;
    padding-right: 1.9rem;
    background-color: transparent;
    max-width: calc(90% - 2rem);
    z-index: 10;
  }
  .page_hero_full .hero_title_box::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background-color: rgba(111, 111, 111, 0.6);
    transform-origin: bottom right;
    transform: skewX(-14deg);
  }
}
.page_hero_full .hero_title_box .headline,
.page_hero_full .hero_title_box .subline {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}
@media (min-width: 992px) {
  .page_hero_full .hero_title_box .headline,
  .page_hero_full .hero_title_box .subline {
    white-space: nowrap;
  }
}
.page_hero_full .hero_title_box .headline {
  font-family: "Museo Slab 700";
  font-size: 1.74rem;
  line-height: 1.2;
  font-weight: 400;
}
.page_hero_full .hero_title_box .subline {
  font-family: "Museo Slab 700";
  font-size: 1.39rem;
  line-height: 1.2;
  font-weight: 400;
}

.page_hero_full.box_orange .hero_title_box {
  background-color: rgb(243, 146, 0);
}
@media (min-width: 992px) {
  .page_hero_full.box_orange .hero_title_box {
    background-color: transparent;
    z-index: 10;
  }
  .page_hero_full.box_orange .hero_title_box::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background-color: rgba(243, 146, 0, 0.6);
    transform-origin: bottom right;
    transform: skewX(-14deg);
  }
}

.page_hero_full.box_blue .hero_title_box {
  background-color: rgb(65, 80, 110);
}
@media (min-width: 992px) {
  .page_hero_full.box_blue .hero_title_box {
    background-color: transparent;
    z-index: 10;
  }
  .page_hero_full.box_blue .hero_title_box::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background-color: rgba(65, 80, 110, 0.6);
    transform-origin: bottom right;
    transform: skewX(-14deg);
  }
}

.page_hero_full.box_green .hero_title_box {
  background-color: rgb(55, 113, 87);
}
@media (min-width: 992px) {
  .page_hero_full.box_green .hero_title_box {
    background-color: transparent;
    z-index: 10;
  }
  .page_hero_full.box_green .hero_title_box::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background-color: rgba(55, 113, 87, 0.6);
    transform-origin: bottom right;
    transform: skewX(-14deg);
  }
}

/* title + subtitle left without box */
.page_hero_full .hero_title {
  position: absolute;
  bottom: max(35px, min(3.85vw, 50px));
  left: max(15px, min(1.92vw, 25px));
  color: rgb(250, 250, 250);
  z-index: 10;
  max-width: calc(100% - 2 * max(35px, min(3.85vw, 50px)));
}
@media (min-width: 992px) {
  .page_hero_full .hero_title {
    left: max(35px, min(3.85vw, 50px));
  }
}
.page_hero_full .hero_title .headline,
.page_hero_full .hero_title .subline {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.page_hero_full .hero_title .headline {
  font-family: "Museo Slab 700";
  font-size: 1.74rem;
  line-height: 1.2;
  font-weight: 400;
  opacity: 1;
}
.page_hero_full .hero_title .subline {
  font-family: "Museo Slab 700";
  font-size: 1.39rem;
  line-height: 1.2;
  font-weight: 400;
  opacity: 0.6;
}
@media (min-width: 992px) {
  .page_hero_full .hero_title {
    max-width: min(45vw, 800px);
  }
}

/* portal_focus_tiles_list */
.focus_container {
  width: 100%;
  min-width: 320px;
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}

.focus_title {
  font-family: "Museo Slab 700";
  font-size: 1.25rem;
  line-height: 1.2;
  font-weight: 400;
  color: rgb(243, 146, 0);
  padding-bottom: max(10px, min(1.15vw, 15px));
  padding-left: max(10px, min(1.15vw, 15px));
}

.focus_tiles {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: max(15px, min(1.92vw, 25px));
}

.focus_item {
  display: flex;
  background-color: rgb(240, 240, 240);
  display: flex;
  flex-direction: column;
  flex: 1 0 100%;
}
.focus_item a {
  display: block;
  width: 100%;
  height: 100%;
  padding: max(10px, min(1.15vw, 15px)) max(15px, min(1.92vw, 25px));
}
@media (min-width: 768px) {
  .focus_item {
    flex: 1 0 45%;
  }
}
@media (min-width: 992px) {
  .focus_item {
    flex: 1 0 25%;
  }
}

.focus_item p {
  flex: 1 0 auto;
}

.focus_item:hover {
  background-color: rgb(243, 146, 0);
  color: rgb(250, 250, 250);
}

.focus_item:hover .focus_icon {
  background-color: rgb(243, 146, 0);
  color: rgb(250, 250, 250);
}

.focus_icon {
  display: inline-block;
  color: rgb(243, 146, 0);
  margin-top: 0.3rem;
  margin-bottom: 0.3rem;
}
@media (min-width: 768px) {
  .focus_icon {
    margin-top: 0.1rem;
    margin-bottom: 0.1rem;
    padding-right: max(5px, min(0.7vw, 10px));
  }
}

.focus_tiles_link {
  text-decoration: none;
}

.focuse_area_switch {
  background-color: rgb(240, 240, 240);
}
.focuse_area_switch .focuse_area_switch_container {
  max-width: 1500px;
  margin: 0 auto;
}
.focuse_area_switch .focuse_area_switch_container .focuse_header {
  padding-left: 15px;
  padding-right: 15px;
}
.focuse_area_switch .focuse_area_switch_container .focuse_header h2 {
  padding-bottom: 15px;
}
@media (min-width: 768px) {
  .focuse_area_switch .focuse_area_switch_container .focuse_header {
    padding: 0;
  }
}
.focuse_area_switch .focuse_area_switch_container .focus_area_switch_list {
  margin-top: min(1.82vw, 35px);
}
.focuse_area_switch .focuse_area_switch_container .focus_area_switch_list a {
  max-height: 220px;
  background-color: rgb(250, 250, 250);
  position: relative;
  overflow: hidden;
  border: 1px solid rgb(250, 250, 250);
  box-shadow: 1px 1px 10px rgba(80, 80, 80, 0.1);
}
.focuse_area_switch .focuse_area_switch_container .focus_area_switch_list a:before {
  content: "";
  display: none;
}
.focuse_area_switch .focuse_area_switch_container .focus_area_switch_list a img {
  margin: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: 53.83% 29.16%;
}
.focuse_area_switch .focuse_area_switch_container .focus_area_switch_list a .label {
  height: 65px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding-left: 2rem;
  padding-right: 1.9rem;
  background-color: transparent;
  background-color: rgba(250, 250, 250, 0.96);
  font-family: "Frutiger 55 Roman";
  font-size: 1rem;
  line-height: 1.52;
  font-weight: 400;
  font-size: 1rem;
  color: rgb(10, 10, 10);
  display: flex;
  align-items: center;
}
@media (min-width: 992px) {
  .focuse_area_switch .focuse_area_switch_container .focus_area_switch_list a .label {
    font-size: 0.8rem;
  }
}
.focuse_area_switch .focuse_area_switch_container .focus_area_switch_list a:hover .label {
  background-color: rgba(243, 146, 0, 0.8);
  color: rgb(250, 250, 250);
}
@media (min-width: 768px) {
  .focuse_area_switch .focuse_area_switch_container .focus_area_switch_list a {
    max-height: 350px;
    margin-left: 0;
    margin-right: 0;
  }
}
.focuse_area_switch .focuse_area_switch_container .focus_area_switch_list .focus_area_switch_tiles {
  display: grid;
  gap: min(1.82vw, 35px);
  grid-template-columns: 1fr;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 768px) {
  .focuse_area_switch .focuse_area_switch_container .focus_area_switch_list .focus_area_switch_tiles {
    grid-template-columns: 1fr 1fr;
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 992px) {
  .focuse_area_switch .focuse_area_switch_container .focus_area_switch_list .focus_area_switch_tiles {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }
}

/* page_footer*/
body > footer {
  width: 100%;
  min-width: 320px;
  background-color: rgb(111, 111, 111);
  color: rgb(250, 250, 250);
  font-family: "Frutiger 55 Roman";
  font-size: 0.8rem;
  line-height: 1.52;
  font-weight: 400;
}
body > footer .page_footer_content {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: max(15px, min(1.92vw, 25px));
  padding: max(15px, min(1.92vw, 25px));
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  body > footer .page_footer_content > *:not(:last-child) {
    margin: 0 0 max(15px, min(1.92vw, 25px)) 0;
  }
  body > footer .page_footer_content > *:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 580px) {
  body > footer .page_footer_content {
    flex-direction: row;
    flex-wrap: wrap;
  }
  @supports (-webkit-touch-callout: none) and (not (translate: none)) {
    body > footer .page_footer_content > * {
      margin-right: max(15px, min(1.92vw, 25px));
      margin-bottom: max(15px, min(1.92vw, 25px));
    }
    body > footer .page_footer_content > *:last-child {
      margin-right: 0;
    }
  }
}
body > footer .page_footer_content .ft_item_button i {
  font-size: 2.5rem;
  margin-right: max(5px, min(0.7vw, 10px));
}
body > footer .page_footer_content .ft_item_button i:hover {
  color: rgb(243, 146, 0);
}
body > footer .page_footer_content .ft_item_list {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: max(15px, min(1.92vw, 25px));
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  body > footer .page_footer_content .ft_item_list > *:not(:last-child) {
    margin: 0 0 max(5px, min(0.7vw, 10px)) 0;
  }
  body > footer .page_footer_content .ft_item_list > *:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  body > footer .page_footer_content .ft_item_list {
    flex: 1 1 45%;
  }
}
@media (min-width: 992px) {
  body > footer .page_footer_content .ft_item_list {
    flex: 1 1 24%;
  }
}
body > footer .page_footer_content .ft_item_list .company_hamburg,
body > footer .page_footer_content .ft_item_list .company_berlin,
body > footer .page_footer_content .ft_item_list .business_title {
  font-weight: 900;
}
body > footer .page_footer_content .ft_item_list .footer_icon {
  margin-right: 5px;
}
body > footer .page_footer_content .legal_follow_wrapper {
  display: flex;
  flex-direction: column;
  gap: max(15px, min(1.92vw, 25px));
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  body > footer .page_footer_content .legal_follow_wrapper > *:not(:last-child) {
    margin: 0 0 max(15px, min(1.92vw, 25px)) 0;
  }
  body > footer .page_footer_content .legal_follow_wrapper > *:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 580px) {
  body > footer .page_footer_content .legal_follow_wrapper {
    flex: 1 1 45%;
  }
  @supports (-webkit-touch-callout: none) and (not (translate: none)) {
    body > footer .page_footer_content .legal_follow_wrapper > * {
      margin-right: max(15px, min(1.92vw, 25px)) !important;
    }
    body > footer .page_footer_content .legal_follow_wrapper > *:last-child {
      margin-right: 0 !important;
    }
  }
}
@media (min-width: 992px) {
  body > footer .page_footer_content .legal_follow_wrapper {
    flex: 1 1 20%;
    flex-direction: column;
  }
  @supports (-webkit-touch-callout: none) and (not (translate: none)) {
    body > footer .page_footer_content .legal_follow_wrapper > *:not(:last-child) {
      margin: 0 0 max(15px, min(1.92vw, 25px)) 0;
    }
    body > footer .page_footer_content .legal_follow_wrapper > *:last-child {
      margin-bottom: 0;
    }
  }
}
body > footer .page_footer_content .legal_follow_wrapper .ft_item_links {
  flex: 1;
  display: flex;
  flex-direction: column;
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  body > footer .page_footer_content .legal_follow_wrapper .ft_item_links > * {
    margin-right: max(10px, min(1.15vw, 15px)) !important;
  }
  body > footer .page_footer_content .legal_follow_wrapper .ft_item_links > *:last-child {
    margin-right: 0 !important;
  }
}
body > footer .page_footer_content .legal_follow_wrapper .ft_item_links a:hover {
  color: rgb(243, 146, 0);
}
body > footer .page_footer_content .legal_follow_wrapper .ft_item_links i {
  margin-right: max(10px, min(1.15vw, 15px));
}
body > footer .page_footer_content .legal_follow_wrapper .social_follow {
  flex: 1;
}
body > footer .page_footer_content .legal_follow_wrapper .social_follow .caption {
  color: rgb(250, 250, 250);
  margin-bottom: 0.3rem;
}
body > footer .page_footer_content .legal_follow_wrapper .social_follow .links {
  display: flex;
  gap: 1rem;
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  body > footer .page_footer_content .legal_follow_wrapper .social_follow .links > * {
    margin-right: 1rem !important;
  }
  body > footer .page_footer_content .legal_follow_wrapper .social_follow .links > *:last-child {
    margin-right: 0 !important;
  }
}
body > footer .page_footer_content .legal_follow_wrapper .social_follow .links i {
  font-size: 1.8rem;
}
body > footer .page_footer_content .legal_follow_wrapper .social_follow .links i:hover {
  color: rgb(243, 146, 0);
}
body > footer .page_footer_content .footer_house {
  flex: 1 1 100%;
}

.sticky_page_share {
  position: sticky;
  left: 0;
  bottom: 0;
  background-color: rgb(250, 250, 250);
  z-index: 100;
  padding-top: 2px;
  height: max-content;
}
@media (min-width: 1630px) {
  .sticky_page_share {
    position: fixed;
    left: 0;
    top: 25%;
    padding-top: 0;
  }
}
.sticky_page_share .wrapper {
  display: flex;
  gap: 2px;
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .sticky_page_share .wrapper > * {
    margin-right: 2px !important;
  }
  .sticky_page_share .wrapper > *:last-child {
    margin-right: 0 !important;
  }
}
@media only screen and (min-width: 1610px) {
  .sticky_page_share .wrapper {
    position: relative;
    animation-name: mymove;
    animation-duration: 2s, 3s, 2s;
    animation-iteration-count: 2, 3, 5;
  }
  @keyframes mymove {
    from {
      left: 0px;
    }
    to {
      left: 40px;
    }
  }
}
@media (min-width: 768px) {
  .sticky_page_share .wrapper {
    max-width: 300px;
    margin: 0 auto;
  }
}
@media (min-width: 1630px) {
  .sticky_page_share .wrapper {
    flex-direction: column;
  }
}
.sticky_page_share .wrapper .head {
  flex: 1;
  background-color: rgb(243, 146, 0);
  color: rgb(250, 250, 250);
  font-size: 1.3rem;
  text-align: center;
  line-height: 45px;
}
@media (min-width: 1630px) {
  .sticky_page_share .wrapper .head {
    width: 45px;
    height: 45px;
  }
}
.sticky_page_share .wrapper a {
  flex: 1;
  text-align: center;
  line-height: 45px;
  background-color: rgb(226, 226, 226);
  color: rgb(111, 111, 111);
  font-size: 1.1rem;
  padding-bottom: max(10px, min(1.15vw, 15px));
}
@media (min-width: 1630px) {
  .sticky_page_share .wrapper a {
    width: 45px;
    height: 45px;
    padding-bottom: 0;
  }
}
.sticky_page_share .wrapper a:hover {
  background-color: rgb(243, 146, 0);
  color: rgb(250, 250, 250);
}
.sticky_page_share .wrapper a i {
  pointer-events: none;
}

body > nav {
  display: flex;
  flex-direction: column;
  margin: max(15px, min(1.92vw, 25px)) auto;
  padding-left: max(15px, min(1.92vw, 25px));
}
@media (min-width: 780px) {
  body > nav {
    flex-direction: row;
    align-items: end;
  }
}
@media (min-width: 992px) {
  body > nav {
    flex-wrap: nowrap;
    justify-content: space-between;
    padding-left: 0;
  }
}
body > nav .nav_logo {
  width: 200px;
  height: auto;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  body > nav .nav_logo {
    margin-bottom: 0;
    padding-left: 0;
  }
}
@media (min-width: 992px) {
  body > nav .nav_logo {
    width: auto;
  }
}

body > nav > .nav_menu {
  display: flex;
  flex-direction: column;
  gap: max(5px, min(0.7vw, 10px));
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  body > nav > .nav_menu > *:not(:last-child) {
    margin: 0 0 max(5px, min(0.7vw, 10px)) 0;
  }
  body > nav > .nav_menu > *:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 992px) {
  body > nav > .nav_menu {
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: center;
  }
  @supports (-webkit-touch-callout: none) and (not (translate: none)) {
    body > nav > .nav_menu > * {
      margin-right: max(5px, min(0.7vw, 10px));
      margin-bottom: max(5px, min(0.7vw, 10px));
    }
    body > nav > .nav_menu > *:last-child {
      margin-right: 0;
    }
  }
}

body > nav .nav_list {
  display: flex;
  align-items: center;
  padding-left: 0;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  body > nav .nav_list {
    margin-bottom: 0;
    flex-wrap: nowrap;
    padding-left: min(1.82vw, 35px);
  }
}

body > nav .nav_list_item {
  padding: 0px max(10px, min(1.15vw, 15px));
  cursor: pointer;
  white-space: nowrap;
  border-bottom: 2px solid rgb(111, 111, 111);
  color: rgb(80, 80, 80);
}

body > nav .nav_list_item a {
  display: inline-block;
  height: 100%;
  font-family: "Museo Slab 700";
  font-size: 0.8rem;
  line-height: 1.2;
  font-weight: 400;
  font-size: 0.6rem;
  line-height: 2rem;
}
@media (min-width: 350px) {
  body > nav .nav_list_item a {
    font-size: 0.68rem;
  }
}
@media (min-width: 365px) {
  body > nav .nav_list_item a {
    font-size: 0.7rem;
  }
}
@media (min-width: 375px) {
  body > nav .nav_list_item a {
    font-size: 0.73rem;
  }
}
@media (min-width: 430px) {
  body > nav .nav_list_item a {
    font-size: 0.8rem;
  }
}

body > nav .nav_list_item.selected,
body > nav .nav_list_item:hover {
  border-bottom: 2px solid rgb(50, 50, 50);
  color: rgb(50, 50, 50);
  padding: 0px 0px;
  margin: 0px max(10px, min(1.15vw, 15px));
}

body > nav .nav_list_item.orange.selected,
body > nav .nav_list_item.orange:hover {
  border-bottom: 2px solid rgb(243, 146, 0);
  color: rgb(243, 146, 0);
  padding: 0px 0px;
  margin: 0px max(10px, min(1.15vw, 15px));
}

body > nav .nav_list_item.blue.selected,
body > nav .nav_list_item.blue:hover {
  border-bottom: 2px solid rgb(65, 80, 110);
  color: rgb(65, 80, 110);
  padding: 0px 0px;
  margin: 0px max(10px, min(1.15vw, 15px));
}

body > nav .nav_list_item.green.selected,
body > nav .nav_list_item.green:hover {
  border-bottom: 2px solid rgb(55, 113, 87);
  color: rgb(55, 113, 87);
  padding: 0px 0px;
  margin: 0px max(10px, min(1.15vw, 15px));
}

/* nav_top */
.nav_top {
  position: sticky;
  top: 0;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: rgb(226, 226, 226);
  z-index: 1000;
  border-bottom: 2px solid #ffffff;
}

.nav_top .nav_container {
  width: 100%;
  height: 100%;
  min-width: 320px;
  max-width: 1500px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 max(15px, min(1.92vw, 25px));
}
@media (min-width: 992px) {
  .nav_top .nav_container {
    padding: 0 max(15px, min(1.92vw, 25px)) 0 0;
  }
}

.nav_top .logo_cube img {
  display: inline-block;
  visibility: hidden;
}

.nav_top .nav_contact {
  display: flex;
  gap: max(15px, min(1.92vw, 25px));
  align-items: center;
  justify-content: right;
  color: rgb(111, 111, 111);
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .nav_top .nav_contact > * {
    margin-right: max(15px, min(1.92vw, 25px)) !important;
  }
  .nav_top .nav_contact > *:last-child {
    margin-right: 0 !important;
  }
}
.nav_top .nav_contact a {
  background-color: rgb(243, 146, 0);
  color: rgb(250, 250, 250);
  border: 1px solid rgb(243, 146, 0);
  display: flex;
  align-items: center;
  padding: 2px 7px;
  border-radius: 3px;
  font-size: 0.9rem;
  white-space: nowrap;
  text-transform: capitalize;
}
@media (min-width: 992px) {
  .nav_top .nav_contact a {
    font-size: 0.8rem;
  }
}
.nav_top .nav_contact a:hover {
  background-color: rgb(250, 250, 250);
  color: rgb(243, 146, 0);
}
.nav_top .nav_contact a .icon {
  margin-right: max(5px, min(0.7vw, 10px));
}

/*notice_bar_branch*/
.notice_bar_container {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: max(15px, min(1.92vw, 25px));
  overflow: hidden;
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .notice_bar_container > *:not(:last-child) {
    margin: 0 0 max(15px, min(1.92vw, 25px)) 0;
  }
  .notice_bar_container > *:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .notice_bar_container {
    flex-direction: row;
    gap: 0;
  }
  @supports (-webkit-touch-callout: none) and (not (translate: none)) {
    .notice_bar_container > * {
      margin: 0 0 0 0 !important;
    }
    .notice_bar_container > *:nth-child(2n+2) {
      margin: 0 0 0 0 !important;
    }
    .notice_bar_container > *:nth-last-child(-n+2) {
      margin: 0 0 0 0 !important;
    }
    .notice_bar_container > *:last-child {
      margin: 0 0 0 0 !important;
    }
  }
}

/* element notice_bar_caption */
.notice_bar_container .notice_bar_caption {
  min-height: 50px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: max(10px, min(1.15vw, 15px));
  align-items: center;
  padding: max(15px, min(1.92vw, 25px));
  padding-right: 1.5rem;
  font-family: "Museo Slab 700";
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 400;
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .notice_bar_container .notice_bar_caption > *:not(:last-child) {
    margin: 0 0 max(10px, min(1.15vw, 15px)) 0;
  }
  .notice_bar_container .notice_bar_caption > *:last-child {
    margin-bottom: 0;
  }
}
.notice_bar_container .notice_bar_caption span {
  text-align: center;
}
@media (min-width: 768px) {
  .notice_bar_container .notice_bar_caption {
    flex: 0 1 15%;
    max-width: 310px;
    min-height: 150px;
  }
}
.notice_bar_container .notice_bar_caption .sublists_pagination {
  display: flex;
  align-items: center;
  gap: max(10px, min(1.15vw, 15px));
  font-size: 0.8rem;
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .notice_bar_container .notice_bar_caption .sublists_pagination > * {
    margin-right: max(10px, min(1.15vw, 15px)) !important;
  }
  .notice_bar_container .notice_bar_caption .sublists_pagination > *:last-child {
    margin-right: 0 !important;
  }
}
.notice_bar_container .notice_bar_caption .sublists_pagination .pagination_page {
  width: 1.3rem;
  height: 1.3rem;
  line-height: 1.3rem;
  border-radius: 50%;
  border: 1px solid;
  cursor: pointer;
}
.notice_bar_container .notice_bar_caption .sublists_pagination .pagination_page.active {
  background-color: rgb(250, 250, 250);
  color: rgb(243, 146, 0);
}
.notice_bar_container .notice_bar_caption .sublists_pagination .pagination_page:hover {
  background-color: rgb(250, 250, 250);
  color: rgb(243, 146, 0);
}

/* element list */
.notice_bar_container > .notice_bar_list {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: max(10px, min(1.15vw, 15px));
  padding: max(15px, min(1.92vw, 25px));
  min-height: 95px;
  align-items: center;
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .notice_bar_container > .notice_bar_list > * {
    margin-right: max(10px, min(1.15vw, 15px));
    margin-bottom: max(10px, min(1.15vw, 15px));
  }
  .notice_bar_container > .notice_bar_list > *:last-child {
    margin-right: 0;
  }
}
@media (min-width: 768px) {
  .notice_bar_container > .notice_bar_list {
    padding: max(15px, min(1.92vw, 25px));
    align-items: center;
  }
}
.notice_bar_container > .notice_bar_list.hidden {
  display: none;
}

.notice_bar_container .list_item {
  flex: 1 1 45%;
  color: rgb(250, 250, 250);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-family: "Frutiger 55 Roman";
  font-size: 0.8rem;
  line-height: 1.52;
  font-weight: 400;
}
@media (min-width: 768px) {
  .notice_bar_container .list_item {
    flex: 1 1 30%;
  }
}

.notice_bar_container .list_icon {
  display: inline-block;
  margin-right: 0.5rem;
}

.notice_bar_container .list_link {
  text-decoration: none;
}

.notice_bar_container .list_link:hover {
  color: rgb(243, 146, 0);
  text-decoration: underline;
}

.notice_bar_container .list_link:hover .list_icon {
  color: rgb(243, 146, 0);
}

.notice_bar_container > .orange .list_link:hover {
  color: rgb(80, 80, 80);
}

.notice_bar_container > .orange .list_link:hover .list_icon {
  color: rgb(80, 80, 80);
}

/* element notice_bar_icon */
.notice_bar_container .notice_bar_icon {
  flex: 1 1 80px;
  padding: max(15px, min(1.92vw, 25px));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  text-align: center;
  min-height: 80px;
}

/* element notice_bar_teaser */
.notice_bar_container .notice_bar_teaser {
  flex: 1 1 75%;
  display: inline-block;
  min-height: 80px;
  padding-left: max(10px, min(1.15vw, 15px));
  font-family: "Frutiger 55 Roman";
  font-size: 0.8rem;
  line-height: 1.52;
  font-weight: 400;
}
.notice_bar_container .notice_bar_teaser a:before {
  color: rgb(243, 146, 0);
  font-weight: bold;
  content: "› ";
  /* add chevron (U+203A) and nbsp (U+00A0)*/
}
.notice_bar_container .notice_bar_teaser a:hover {
  color: rgb(243, 146, 0);
}
@media (min-width: 768px) {
  .notice_bar_container .notice_bar_teaser {
    padding: max(15px, min(1.92vw, 25px));
  }
}

.notice_bar_container .content_title {
  font-family: "Museo Slab 700";
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 400;
  font-weight: 600;
}

/* element mobil order */
@media (max-width: 576px) {
  .notice_bar_container .notice_bar_caption,
  .notice_bar_container .notice_bar_icon {
    order: -1;
  }
}

/* element color combinations */
.notice_bar_container > .notice_bar_caption {
  background-color: rgb(252, 224, 183);
  color: rgb(243, 146, 0);
}

.notice_bar_container > .notice_bar_list {
  background-color: rgb(243, 146, 0);
  color: rgb(250, 250, 250);
}

.notice_bar_container > .notice_bar_icon {
  background-color: rgb(111, 111, 111);
  color: rgb(250, 250, 250);
  font-family: "Museo Slab 700";
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 400;
}

.notice_bar_container > .notice_bar_teaser {
  background-color: rgb(226, 226, 226);
  color: rgb(80, 80, 80);
}

.notice_bar_container > .orange {
  background-color: rgb(243, 146, 0);
  color: rgb(250, 250, 250);
}

.notice_bar_container > .orange_medium {
  background-color: rgb(252, 224, 183);
  color: rgb(80, 80, 80);
}

.notice_bar_container > .blue {
  background-color: rgb(65, 80, 110);
  color: rgb(250, 250, 250);
}

.notice_bar_container > .blue_medium {
  background-color: rgb(217, 220, 216);
  color: rgb(10, 10, 10);
}

.notice_bar_container > .green {
  background-color: rgb(55, 113, 87);
  color: rgb(250, 250, 250);
}

.notice_bar_container > .red {
  background-color: rgb(150, 60, 80);
  color: rgb(250, 250, 250);
}

.notice_bar_container > .red_medium {
  background-color: rgb(234, 216, 220);
  color: rgb(10, 10, 10);
}

.notice_bar_container > .green_medium {
  background-color: rgb(215, 227, 221);
  color: rgb(10, 10, 10);
}

.notice_bar_container > .grey {
  background-color: rgb(111, 111, 111);
  color: rgb(250, 250, 250) !important;
}

.notice_bar_container > .grey_medium {
  background-color: rgb(226, 226, 226);
  color: rgb(10, 10, 10);
}

.notice_bar_container > .grey_light_left {
  background-color: rgb(240, 240, 240);
  padding: max(15px, min(1.92vw, 25px));
  padding-left: max(15px, min(1.92vw, 25px));
  z-index: 10;
  position: relative;
}
.notice_bar_container > .grey_light_left::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: rgb(240, 240, 240);
  transform-origin: bottom right;
  transform: skewX(-14deg);
}

.notice_bar_container > .grey_light_left {
  background-color: rgb(240, 240, 240);
}
@media (min-width: 768px) {
  .notice_bar_container > .grey_light_left {
    padding: max(15px, min(1.92vw, 25px));
    z-index: 10;
    position: relative;
  }
  .notice_bar_container > .grey_light_left::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background-color: rgb(240, 240, 240);
    transform-origin: bottom right;
    transform: skewX(-14deg);
  }
}

.notice_bar_container > .grey_light_right {
  background-color: rgb(240, 240, 240);
}
@media (min-width: 768px) {
  .notice_bar_container > .grey_light_right {
    z-index: 10;
    position: relative;
  }
  .notice_bar_container > .grey_light_right::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background-color: rgb(240, 240, 240);
    transform-origin: top left;
    transform: skewX(-14deg);
  }
}

.notice_bar_container > .grey_dark_left {
  background-color: rgb(111, 111, 111);
  color: rgb(250, 250, 250) !important;
}
@media (min-width: 768px) {
  .notice_bar_container > .grey_dark_left {
    z-index: 10;
    position: relative;
  }
  .notice_bar_container > .grey_dark_left::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background-color: rgb(111, 111, 111);
    transform-origin: bottom right;
    transform: skewX(-14deg);
  }
}

.notice_bar_container > .grey_dark_right {
  background-color: rgb(111, 111, 111);
  color: rgb(250, 250, 250) !important;
}
@media (min-width: 768px) {
  .notice_bar_container > .grey_dark_right {
    z-index: 10;
    position: relative;
  }
  .notice_bar_container > .grey_dark_right::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background-color: rgb(111, 111, 111);
    transform-origin: top left;
    transform: skewX(-14deg);
  }
}

/* higlight_bar */
.highlight_container {
  display: grid;
  gap: max(15px, min(1.92vw, 25px));
  position: relative;
  grid-template-columns: 1fr;
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .highlight_container > *:not(:last-child) {
    margin: 0 0 max(15px, min(1.92vw, 25px)) 0;
  }
  .highlight_container > *:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .highlight_container {
    grid-template-columns: 1fr 1fr;
  }
  @supports (-webkit-touch-callout: none) and (not (translate: none)) {
    .highlight_container > * {
      margin: 0 max(15px, min(1.92vw, 25px)) max(15px, min(1.92vw, 25px)) 0 !important;
    }
    .highlight_container > *:nth-child(3n+3) {
      margin: 0 0 max(15px, min(1.92vw, 25px)) 0 !important;
    }
    .highlight_container > *:nth-last-child(-n+3) {
      margin: 0 max(15px, min(1.92vw, 25px)) 0 0 !important;
    }
    .highlight_container > *:last-child {
      margin: 0 0 0 0 !important;
    }
  }
}
@media (min-width: 992px) {
  .highlight_container {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.highlight_container .highlight_section {
  display: grid;
  background-color: rgb(250, 250, 250);
  position: relative;
  width: 100%;
  color: rgb(10, 10, 10);
  min-height: 6rem;
}

.highlight_container .highlight_section:before {
  content: "";
  position: absolute;
  top: 0;
  width: 2px;
  height: max(15px, min(1.92vw, 25px));
  left: max(5px, min(0.7vw, 10px));
}
@media (min-width: 768px) {
  .highlight_container .highlight_section:before {
    left: max(10px, min(1.15vw, 15px));
  }
}

.highlight_container .business_unit_title {
  margin-top: max(15px, min(1.92vw, 25px));
  text-transform: uppercase;
  font-family: "Frutiger 55 Roman";
  font-size: 0.6rem;
  line-height: 1.2;
  font-weight: 500;
  padding-left: max(15px, min(1.92vw, 25px));
}
@media (min-width: 768px) {
  .highlight_container .business_unit_title {
    margin-left: max(15px, min(1.92vw, 25px));
    margin-right: max(15px, min(1.92vw, 25px));
    padding-left: 0;
  }
}

.highlight_container .highlight_text {
  flex: 1 0 auto;
  display: flex;
  align-items: center;
  padding-left: max(15px, min(1.92vw, 25px));
  font-family: "Frutiger 55 Roman";
  font-size: 1rem;
  line-height: 1.52;
  font-weight: 400;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .highlight_container .highlight_text {
    align-items: flex-start;
    margin-left: max(15px, min(1.92vw, 25px));
    margin-right: max(15px, min(1.92vw, 25px));
    padding-left: 0;
  }
}

.highlight_container .text_plain {
  color: rgb(111, 111, 111);
}

.highlight_container .highlight_icon {
  justify-content: flex-end;
  display: flex;
  font-size: 1.3rem;
  padding-right: max(15px, min(1.92vw, 25px));
  padding-bottom: max(15px, min(1.92vw, 25px));
}

/* color variations */
.highlight_container .highlight_section.orange:before {
  background-color: rgb(243, 146, 0);
}

.highlight_container .highlight_section.blue:before {
  background-color: rgb(65, 80, 110);
}

.highlight_container .highlight_section.green:before {
  background-color: rgb(55, 113, 87);
}

.highlight_container .highlight_section.red:before {
  background-color: rgb(150, 60, 80);
}

.highlight_container .highlight_section.orange .business_unit_title,
.highlight_container .highlight_section.orange .text_colored,
.highlight_container .highlight_section.orange .highlight_icon > i {
  color: rgb(243, 146, 0);
}

.highlight_container .highlight_section.blue .business_unit_title,
.highlight_container .highlight_section.blue .text_colored,
.highlight_container .highlight_section.blue .highlight_icon > i {
  color: rgb(65, 80, 110);
}

.highlight_container .highlight_section.green .business_unit_title,
.highlight_container .highlight_section.green .text_colored,
.highlight_container .highlight_section.green .highlight_icon > i {
  color: rgb(55, 113, 87);
}

.highlight_container .highlight_section.red .business_unit_title,
.highlight_container .highlight_section.red .text_colored,
.highlight_container .highlight_section.red .highlight_icon > i {
  color: rgb(150, 60, 80);
}

/* hovers effects */
.highlight_container .highlight_section:hover {
  background-color: rgb(111, 111, 111);
  color: rgb(250, 250, 250);
}

.highlight_container .highlight_section.orange:hover {
  background-color: rgba(243, 146, 0, 0.9);
}

.highlight_container .highlight_section.blue:hover {
  background-color: rgba(65, 80, 110, 0.9);
}

.highlight_container .highlight_section.green:hover {
  background-color: rgba(55, 113, 87, 0.9);
}

.highlight_container .highlight_section.red:hover {
  background-color: rgba(150, 60, 80, 0.9);
}

.highlight_container .highlight_section:hover:before {
  background-color: rgb(250, 250, 250);
}

.highlight_container .highlight_section:hover .business_unit_title,
.highlight_container .highlight_section:hover .text_colored,
.highlight_container .highlight_section:hover .text_plain,
.highlight_container .highlight_section:hover .highlight_icon > i {
  color: rgb(250, 250, 250);
}

/* may be used to collect multiple content_box in one column */
.variable_content_container {
  display: flex;
  flex-direction: column;
  gap: min(1.82vw, 35px);
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .variable_content_container > *:not(:last-child) {
    margin: 0 0 min(1.82vw, 35px) 0;
  }
  .variable_content_container > *:last-child {
    margin-bottom: 0;
  }
}

.variable_content_container > * {
  flex: 1 1 100%;
  width: 100%;
  display: block;
}

.variable_content_container > *:first-child {
  flex: 0 1 auto;
  width: 100%;
  display: block;
}

/* only show first p of the content box - click show_more so see them all*/
.content_box .show_first * {
  display: none;
}
.content_box .show_first > p:first-of-type {
  display: block;
  margin-bottom: 0;
}
.content_box a.trigger_show_all {
  display: block;
  text-align: right;
}

.content_box {
  box-sizing: border-box;
  color: rgb(80, 80, 80);
  background-color: rgb(240, 240, 240);
  font-family: "Frutiger 55 Roman";
  font-size: 1rem;
  line-height: 1.52;
  font-weight: 400;
  padding: max(15px, min(1.92vw, 25px));
}
.content_box:last-child {
  height: 100%;
}
@media (min-width: 992px) {
  .content_box {
    padding: max(35px, min(3.85vw, 50px));
  }
}
.content_box .subtitle {
  font-family: "Frutiger 55 Roman";
  font-size: 1rem;
  line-height: 1.52;
  font-weight: bold;
  display: block;
  margin-bottom: 0.72rem;
}
.content_box h1 {
  margin: 1.78rem 0 0.39rem;
  color: rgb(243, 146, 0);
  font-family: "Museo Slab 700";
  font-size: 1.74rem;
  line-height: 1.2;
  font-weight: 400;
}
.content_box h1:first-child {
  margin-top: 0;
}
.content_box h2 {
  margin: 1.5rem 0 0.35rem;
  color: rgb(243, 146, 0);
  font-family: "Museo Slab 700";
  font-size: 1.39rem;
  line-height: 1.2;
  font-weight: 400;
}
.content_box h2:first-child {
  margin-top: 0;
}
.content_box h3 {
  margin: 1.78rem 0 0.39rem;
  font-family: "Museo Slab 700";
  font-size: 1.25rem;
  line-height: 1.2;
  font-weight: 400;
  color: rgb(243, 146, 0);
}
.content_box h3:first-child {
  margin-top: 0;
}
.content_box h4 {
  margin: 0.3rem 0 0.5rem;
  font-family: "Frutiger 55 Roman";
  font-size: 1.22rem;
  line-height: 1.2;
  font-weight: 400;
}
.content_box h4:first-child {
  margin-top: 0;
}
.content_box h4:first-child + p {
  margin-top: -1.22rem;
}
.content_box h5 {
  margin: 1.2rem 0 0.1rem;
  font-family: "Frutiger 55 Roman";
  font-size: 1.1rem;
  line-height: 1.2;
  font-weight: 400;
}
.content_box h5:first-child {
  margin-top: 0;
}
.content_box h5:first-child + p {
  margin-top: -1.1rem;
}
.content_box p {
  margin-bottom: 1.52rem;
}
.content_box p:last-child {
  margin-bottom: 0;
}
.content_box a.align_right {
  display: block;
  text-align: right;
}
.content_box strong {
  font-weight: bold;
}
.content_box small {
  color: rgb(80, 80, 80);
  font-family: "Frutiger 55 Roman";
  font-size: 0.8rem;
  line-height: 1.52;
  font-weight: 400;
}
.content_box em {
  color: rgb(243, 146, 0);
  font-style: italic;
}
.content_box a {
  color: rgb(243, 146, 0);
  text-decoration: none;
}
.content_box a:before {
  color: rgb(243, 146, 0);
  font-weight: bold;
  content: "› ";
  /* add chevron (U+203A) and nbsp (U+00A0)*/
}
.content_box a:hover {
  color: rgb(150, 60, 80);
  text-decoration: underline;
}
.content_box ul {
  list-style-type: square;
  margin-left: max(15px, min(1.92vw, 25px));
  margin-bottom: 1rem;
  margin-top: 1rem;
}
.content_box ul li {
  margin-bottom: 0.5rem;
}
.content_box ol {
  list-style-type: decimal;
  margin-left: max(15px, min(1.92vw, 25px));
  margin-bottom: 1rem;
  margin-top: 1rem;
}
.content_box ol li {
  margin-bottom: 0.5rem;
}
.content_box img,
.content_box img.full {
  max-width: 100%;
  display: block;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.content_box img.right {
  max-width: 100%;
  margin-top: 1rem;
  margin-bottom: 1rem;
  display: block;
}
@media (min-width: 768px) {
  .content_box img.right {
    max-width: 50%;
    margin-right: 1rem;
    float: left;
  }
}
.content_box img.left {
  max-width: 100%;
  margin-top: 1rem;
  margin-bottom: 1rem;
  display: block;
}
@media (min-width: 768px) {
  .content_box img.left {
    max-width: 50%;
    margin-left: 1rem;
    float: right;
  }
}
.content_box.orange {
  color: rgb(80, 80, 80);
  background-color: rgb(252, 224, 183);
}
.content_box.green {
  color: rgb(80, 80, 80);
  background-color: rgb(215, 227, 221);
}
.content_box.blue {
  color: rgb(80, 80, 80);
  background-color: rgb(217, 220, 216);
}

.review_btn_container {
  padding: max(35px, min(3.85vw, 50px));
  text-align: center;
}
.review_btn_container .review_btn {
  display: block;
  max-width: 500px;
  margin: 0 auto;
  background-color: rgb(243, 146, 0);
  color: rgb(250, 250, 250);
  font-family: "Museo Slab 700";
  font-size: 1.39rem;
  line-height: 1.2;
  font-weight: 400;
  padding: max(10px, min(1.15vw, 15px)) max(15px, min(1.92vw, 25px));
  border: 0.13rem solid rgb(243, 146, 0);
}
.review_btn_container .review_btn:hover {
  color: rgb(243, 146, 0);
  background-color: rgb(250, 250, 250);
}

.customer_tiles_container a {
  max-height: 220px;
  background-color: rgb(250, 250, 250);
  position: relative;
  overflow: hidden;
  border: 1px solid rgb(250, 250, 250);
  box-shadow: 1px 1px 10px rgba(80, 80, 80, 0.1);
}
.customer_tiles_container a:before {
  content: "";
}
.customer_tiles_container a img {
  margin: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: 53.83% 29.16%;
}
.customer_tiles_container a .label {
  height: 65px;
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translateX(-1rem);
  padding-left: 2rem;
  padding-right: 1.9rem;
  background-color: transparent;
  max-width: calc(110% - 1rem);
  z-index: 10;
  font-family: "Frutiger 55 Roman";
  font-size: 1rem;
  line-height: 1.52;
  font-weight: 400;
  color: rgb(250, 250, 250);
  display: flex;
  align-items: center;
}
.customer_tiles_container a .label::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: rgba(111, 111, 111, 0.8);
  transform-origin: bottom right;
  transform: skewX(-14deg);
}
@media (min-width: 992px) {
  .customer_tiles_container a .label {
    font-size: 0.7rem;
  }
}
.customer_tiles_container a:hover .label {
  z-index: 10;
}
.customer_tiles_container a:hover .label::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: rgba(243, 146, 0, 0.8);
  transform-origin: bottom right;
  transform: skewX(-14deg);
}
@media (min-width: 768px) {
  .customer_tiles_container a {
    max-height: 350px;
    margin-left: 0;
    margin-right: 0;
  }
}
.customer_tiles_container .customer_tiles {
  display: grid;
  gap: max(15px, min(1.92vw, 25px));
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .customer_tiles_container .customer_tiles {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 992px) {
  .customer_tiles_container .customer_tiles {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }
}

.customer_voice_container {
  width: 100%;
  background-color: rgb(240, 240, 240);
  padding-bottom: min(1.82vw, 35px);
  padding-top: min(1.82vw, 35px);
}
.customer_voice_container .customer_voice_title {
  max-width: 1500px;
  margin: auto;
  padding-left: 15px;
  padding-bottom: min(1.82vw, 35px);
  font-family: "Museo Slab 700";
  font-size: 1.39rem;
  line-height: 1.2;
  font-weight: 400;
  color: rgb(243, 146, 0);
}
@media (min-width: 768px) {
  .customer_voice_container .customer_voice_title {
    padding-bottom: 0;
  }
}

.customer_voice {
  width: 100%;
  max-width: 1500px;
  display: flex;
  flex-direction: column;
  gap: max(15px, min(1.92vw, 25px));
  padding-top: max(15px, min(1.92vw, 25px));
  margin: auto;
}
@media (min-width: 768px) {
  .customer_voice {
    flex-direction: row;
  }
}
.customer_voice .review {
  padding: max(15px, min(1.92vw, 25px));
  max-width: 100%;
  cursor: pointer;
  background-color: rgb(250, 250, 250);
}
@media (min-width: 768px) {
  .customer_voice .review {
    width: 33.333%;
    padding-right: max(15px, min(1.92vw, 25px));
    border-bottom: none;
  }
}
.customer_voice .review .meta {
  display: flex;
  justify-content: space-between;
  margin: max(10px, min(1.15vw, 15px)) 0;
}
.customer_voice .review .meta .rating {
  color: rgb(243, 146, 0);
  font-size: 0.8rem;
}
.customer_voice .review .meta .date {
  font-size: 0.75rem;
  color: rgb(111, 111, 111);
}
.customer_voice .review .body p {
  font-family: "Frutiger 55 Roman";
  font-size: 1rem;
  line-height: 1.52;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.52;
}
@media (min-width: 768px) {
  .customer_voice .review .body p {
    font-size: 0.85rem;
  }
}
.customer_voice .review .body i {
  cursor: pointer;
  color: rgb(243, 146, 0);
}
.customer_voice .client_name {
  font-weight: bold;
}
.customer_voice .client_type {
  font-size: 1rem;
}

/* button_bar */
.button_bar {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: max(15px, min(1.92vw, 25px));
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .button_bar > * {
    margin-right: max(15px, min(1.92vw, 25px));
    margin-bottom: max(15px, min(1.92vw, 25px));
  }
  .button_bar > *:last-child {
    margin-right: 0;
  }
}
@media (min-width: 768px) {
  .button_bar {
    flex-direction: row;
  }
}

.mobile {
  display: flex;
  width: 100%;
  flex-direction: column;
  margin: 20px 0;
}
@media (min-width: 768px) {
  .mobile {
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  .mobile {
    display: none;
  }
}
@media (min-width: 768px) {
  .mobile {
    margin: 0;
  }
}

.desktop {
  display: none;
}
@media (min-width: 992px) {
  .desktop {
    display: flex;
  }
}

.button_bar > .group {
  flex: 1;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  gap: max(15px, min(1.92vw, 25px));
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .button_bar > .group > * {
    margin-right: max(15px, min(1.92vw, 25px)) !important;
  }
  .button_bar > .group > *:last-child {
    margin-right: 0 !important;
  }
}

.button_bar > .candidate {
  order: 1;
}

.button_bar > .joboffer {
  order: 2;
}

.button_bar > .job_searchbox_container {
  order: 3;
}

.button_bar .button {
  flex: 1 1 22%;
  display: flex;
  flex-direction: row;
}
@media (max-width: 768px) {
  .button_bar .button {
    margin-left: max(15px, min(1.92vw, 25px));
    margin-right: max(15px, min(1.92vw, 25px));
  }
}

.button_bar .button {
  flex: 1 1 22%;
  display: flex;
  flex-direction: row;
}

.button_bar .button.fixed_width {
  flex: 0;
}

.button_bar .button > .icon {
  display: block;
  background-color: rgb(226, 226, 226);
  line-height: 2.4rem;
  width: 3rem;
  padding-right: 0.21rem;
  text-align: center;
  position: relative;
}
@media (min-width: 768px) {
  .button_bar .button > .icon {
    margin-left: 0px;
    margin-right: 0px;
  }
}

.button_bar .button > .icon.clear {
  background-color: rgb(226, 226, 226);
}

.button_bar .button:hover > .icon.clear {
  color: rgb(243, 146, 0);
}

.button_bar .button > .icon.grey {
  background-color: rgb(111, 111, 111);
  color: rgb(240, 240, 240);
}

.button_bar .button > .icon.grey {
  background-color: rgb(111, 111, 111);
  color: rgb(240, 240, 240);
  width: 2.4rem;
  height: 2.4rem;
}

.button_bar .button:hover > .icon.grey {
  background-color: rgb(243, 146, 0);
  color: rgb(240, 240, 240);
}

.button_bar .button > .icon.orange {
  background-color: rgb(243, 146, 0);
  color: rgb(250, 250, 250);
  width: 2.4rem;
}

.button_bar .button:hover > .icon.orange {
  background-color: rgb(111, 111, 111);
  color: rgb(250, 250, 250);
}

.button_bar .button > .lable {
  flex: 1;
  display: block;
  background-color: rgb(240, 240, 240);
  white-space: nowrap;
  padding-left: max(15px, min(1.92vw, 25px));
  padding-right: max(15px, min(1.92vw, 25px));
  font-family: "Museo Slab 700";
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 400;
  line-height: 2.4rem;
}
@media (min-width: 768px) {
  .button_bar .button > .lable {
    z-index: 10;
    position: relative;
  }
  .button_bar .button > .lable::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 1px;
    left: 0;
    z-index: -1;
    background-color: rgb(240, 240, 240);
    transform-origin: top left;
    transform: skewX(-14deg);
  }
}

.button_bar .button:hover > .lable {
  color: rgb(243, 146, 0);
}

.card_container_gradient {
  width: 100%;
  display: grid;
  gap: max(15px, min(1.92vw, 25px));
  min-height: min(9.35vw, 160px);
  grid-template-columns: 1fr;
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .card_container_gradient > *:not(:last-child) {
    margin: 0 0 max(15px, min(1.92vw, 25px)) 0;
  }
  .card_container_gradient > *:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .card_container_gradient {
    grid-template-columns: 1fr 1fr;
    gap: max(10px, min(1.15vw, 15px));
    position: relative;
  }
  @supports (-webkit-touch-callout: none) and (not (translate: none)) {
    .card_container_gradient > *:not(:last-child) {
      margin: 0 0 max(10px, min(1.15vw, 15px)) 0;
    }
    .card_container_gradient > *:last-child {
      margin-bottom: 0;
    }
  }
}
@media (min-width: 992px) {
  .card_container_gradient {
    gap: max(15px, min(1.92vw, 25px));
    grid-template-columns: 1fr 1fr;
  }
  @supports (-webkit-touch-callout: none) and (not (translate: none)) {
    .card_container_gradient > *:not(:last-child) {
      margin: 0 0 max(15px, min(1.92vw, 25px)) 0;
    }
    .card_container_gradient > *:last-child {
      margin-bottom: 0;
    }
  }
}

.card_container_gradient .card_section {
  position: relative;
  flex: 1;
  min-height: min(13.35vw, 160px);
  padding-left: max(15px, min(1.92vw, 25px));
  line-height: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .card_container_gradient .card_section {
    align-items: center;
    padding-left: 0px;
  }
}

.card_container_gradient .card_section:after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  transition-duration: 3s;
}

.card_container_gradient .card_title {
  position: relative;
  z-index: 15;
  font-family: "Frutiger 55 Roman";
  font-size: 1.22rem;
  line-height: 1.2;
  font-weight: 400;
}
@media (max-width: 1335px) {
  .card_container_gradient .card_title {
    font-size: 1rem;
    font-weight: 500;
  }
}
@media (max-width: 1062px) {
  .card_container_gradient .card_title {
    font-size: 0.95rem;
    font-weight: 500;
  }
}
@media (min-width: 1335px) {
  .card_container_gradient .card_title {
    font-family: "Frutiger 55 Roman";
    font-size: 1.22rem;
    line-height: 1.2;
    font-weight: 400;
  }
}

.card_container_gradient .card_title_icon {
  padding-right: max(5px, min(0.7vw, 10px));
}

.card_container_gradient .card_subtitle {
  opacity: 0.6;
  position: relative;
  z-index: 1000;
  font-family: "Museo Slab 700";
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 400;
  font-size: 0.9rem;
  text-align: left;
  padding-top: max(5px, min(0.7vw, 10px));
}
@media (min-width: 992px) {
  .card_container_gradient .card_subtitle {
    text-align: center;
  }
}

.card_container_gradient .orange {
  background: linear-gradient(0deg, rgba(243, 146, 0, 0.9) 10%, rgba(243, 146, 0, 0.6) 60%);
  color: rgb(250, 250, 250);
}

.card_container_gradient .orange:hover:after {
  background-color: rgba(243, 146, 0, 0.9);
}

.card_container_gradient .blue {
  background: linear-gradient(0deg, rgba(65, 80, 110, 0.9) 10%, rgba(65, 80, 110, 0.6) 60%);
  color: rgb(250, 250, 250);
}

.card_container_gradient .blue:hover:after {
  background-color: rgba(65, 80, 110, 0.9);
}

.card_container_gradient .green {
  background: linear-gradient(0deg, rgba(55, 113, 87, 0.9) 10%, rgba(55, 113, 87, 0.6) 60%);
  color: rgb(250, 250, 250);
}

.card_container_gradient .green:hover:after {
  background-color: rgba(55, 113, 87, 0.9);
}

.card_container_gradient .red {
  background: linear-gradient(0deg, rgba(150, 60, 80, 0.9) 10%, rgba(150, 60, 80, 0.6) 60%);
  color: rgb(250, 250, 250);
}

.card_container_gradient .red:hover:after {
  background-color: rgba(150, 60, 80, 0.9);
}

/* page_hero_two*/
.card_image {
  flex: 0 1 50%;
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: max(5px, min(0.7vw, 10px));
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .card_image > *:not(:last-child) {
    margin: 0 0 max(10px, min(1.15vw, 15px)) 0;
  }
  .card_image > *:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 992px) {
  .card_image {
    flex-direction: row;
  }
  @supports (-webkit-touch-callout: none) and (not (translate: none)) {
    .card_image > * {
      margin-right: max(10px, min(1.15vw, 15px));
      margin-bottom: max(10px, min(1.15vw, 15px));
    }
    .card_image > *:last-child {
      margin-right: 0;
    }
  }
}

.card_image .card_image_container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  flex-wrap: wrap;
  gap: max(15px, min(1.92vw, 25px));
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .card_image .card_image_container > *:not(:last-child) {
    margin: 0 0 max(15px, min(1.92vw, 25px)) 0;
  }
  .card_image .card_image_container > *:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .card_image .card_image_container {
    flex-direction: row;
    height: 10rem;
  }
  @supports (-webkit-touch-callout: none) and (not (translate: none)) {
    .card_image .card_image_container > * {
      margin-right: max(15px, min(1.92vw, 25px));
      margin-bottom: max(15px, min(1.92vw, 25px));
    }
    .card_image .card_image_container > *:last-child {
      margin-right: 0;
    }
  }
}
@media (min-width: 992px) {
  .card_image .card_image_container {
    flex: 30;
    min-height: min(8.3vw, 160px);
    width: min(24.73vw, 475px);
  }
}

/*all card_image_container childs*/
.card_image .card_image_container > * {
  position: relative;
  flex: 1;
  display: flex;
}
@media (min-width: 992px) {
  .card_image .card_image_container > * {
    width: 475px;
    height: 10rem;
  }
}

/*card_section*/
.card_image .card_section:after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  transition-duration: 3s;
  background: linear-gradient(0deg, rgba(10, 10, 10, 0.3) 30%, rgba(250, 250, 250, 0) 60%);
}

.card_image .card_section:hover:after {
  background-color: rgba(10, 10, 10, 0.8);
}

.card_image .card_section.orange:after {
  background: linear-gradient(0deg, rgba(243, 146, 0, 0.5) 30%, rgba(243, 146, 0, 0.1) 60%);
}

.card_image .card_section.orange:hover:after {
  background-color: rgba(243, 146, 0, 0.8);
}

.card_image .card_section.blue:after {
  background: linear-gradient(0deg, rgba(65, 80, 110, 0.8) 30%, rgba(65, 80, 110, 0.1) 60%);
}

.card_image .card_section.blue:hover:after {
  background-color: rgba(65, 80, 110, 0.8);
}

.card_image .card_section.green:after {
  background: linear-gradient(0deg, rgba(55, 113, 87, 0.8) 30%, rgba(55, 113, 87, 0.1) 60%);
}

.card_image .card_section.green:hover:after {
  background-color: rgba(55, 113, 87, 0.8);
}

.card_image .card_section_image {
  width: 100%;
  height: 10rem;
  object-fit: cover;
  display: block;
}

.card_image .image_title {
  position: absolute;
  display: block;
  z-index: 100;
  color: rgb(250, 250, 250);
  bottom: max(15px, min(1.92vw, 25px));
  left: max(15px, min(1.92vw, 25px));
}
@media (min-width: 768px) {
  .card_image .image_title {
    bottom: max(15px, min(1.92vw, 25px));
    left: max(15px, min(1.92vw, 25px));
  }
}

.card_image .card_section_icon {
  display: inline-block;
  margin-right: max(5px, min(0.7vw, 10px));
}

/* aside_box */
.aside_box {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  gap: max(15px, min(1.92vw, 25px));
  font-family: "Museo Slab 700";
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 400;
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .aside_box > *:not(:last-child) {
    margin: 0 0 max(15px, min(1.92vw, 25px)) 0;
  }
  .aside_box > *:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 576px) {
  .aside_box {
    flex-direction: row;
    flex-wrap: wrap;
  }
  @supports (-webkit-touch-callout: none) and (not (translate: none)) {
    .aside_box > * {
      margin-right: max(15px, min(1.92vw, 25px));
      margin-bottom: max(15px, min(1.92vw, 25px));
    }
    .aside_box > *:last-child {
      margin-right: 0;
    }
  }
}
@media (min-width: 992px) {
  .aside_box {
    flex-direction: column;
  }
  @supports (-webkit-touch-callout: none) and (not (translate: none)) {
    .aside_box > *:not(:last-child) {
      margin: 0 0 max(15px, min(1.92vw, 25px)) 0;
    }
    .aside_box > *:last-child {
      margin-bottom: 0;
    }
  }
}
.aside_box .job_searchbox_container {
  width: 100%;
  min-height: 50.4px;
}
.aside_box .related_offers {
  width: 100%;
}

/* aside_space */
.aside_box .aside_spacer {
  display: none;
}
@media (min-width: 992px) {
  .aside_box .aside_spacer {
    display: block;
    flex: 1 100 auto;
    width: 100%;
    background-color: rgb(240, 240, 240);
  }
}

/* aside_image */
.aside_box .aside_image {
  position: relative;
  flex: 1;
  width: 100%;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: rgb(226, 226, 226);
  color: rgb(80, 80, 80);
  overflow: hidden;
  /* widget elements */
  /* color variations */
  /* hover effect */
  /* strech to max height */
}
@media (min-width: 768px) {
  .aside_box .aside_image {
    min-height: 20vh;
    max-height: 40vh;
  }
}
@media (min-width: 992px) {
  .aside_box .aside_image {
    min-height: 60vh;
    max-height: 80vh;
  }
}
.aside_box .aside_image .item_header {
  order: 1;
}
@media (min-width: 768px) {
  .aside_box .aside_image .item_header {
    order: 1;
  }
}
@media (min-width: 992px) {
  .aside_box .aside_image .item_header {
    order: -1;
  }
}
.aside_box .aside_image.bottom .item_header {
  order: 1;
}
.aside_box .aside_image .item_caption {
  display: block;
  text-align: left;
  margin-top: max(15px, min(1.92vw, 25px));
  padding-left: max(15px, min(1.92vw, 25px));
  font-family: "Museo Slab 700";
  font-size: 1.39rem;
  line-height: 1.2;
  font-weight: 400;
  white-space: nowrap;
}
.aside_box .aside_image .item_caption i {
  transform: translateY(3px);
}
.aside_box .aside_image .item_subtitle {
  display: block;
  text-align: left;
  opacity: 0.4;
  padding-left: max(15px, min(1.92vw, 25px));
  margin-bottom: max(15px, min(1.92vw, 25px));
  font-family: "Museo Slab 700";
  font-size: 1.39rem;
  line-height: 1.2;
  font-weight: 400;
}
.aside_box .aside_image .item_image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  max-height: 230px;
  mask-image: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 40%, rgb(255, 255, 255) 100%);
  -webkit-mask-image: linear-gradient 0deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 40%, rgb(255, 255, 255) 100%;
}
@media (min-width: 768px) {
  .aside_box .aside_image .item_image {
    max-height: 200px;
    mask-image: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 40%, rgb(255, 255, 255) 100%);
    -webkit-mask-image: linear-gradient 0deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 40%, rgb(255, 255, 255) 100%;
  }
}
@media (min-width: 992px) {
  .aside_box .aside_image .item_image {
    max-height: 80vh;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 80%, rgb(255, 255, 255) 100%);
    -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 80%, rgb(255, 255, 255) 100%);
  }
}
.aside_box .aside_image.bottom .item_image {
  mask-image: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 40%, rgb(255, 255, 255) 100%);
  -webkit-mask-image: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 40%, rgb(255, 255, 255) 100%);
}
.aside_box .aside_image.orange {
  color: rgb(250, 250, 250);
  background-color: rgb(243, 146, 0);
}
.aside_box .aside_image.green {
  color: rgb(250, 250, 250);
  background-color: rgb(55, 113, 87);
}
.aside_box .aside_image.blue {
  color: rgb(250, 250, 250);
  background-color: rgb(65, 80, 110);
}
.aside_box .aside_image.red {
  color: rgb(250, 250, 250);
  background-color: rgb(150, 60, 80);
}
.aside_box .aside_image:hover .item_image {
  opacity: 0.2;
  transition-duration: 3s;
}
.aside_box .aside_image.strech {
  max-height: none;
}

/* aside_cloud */
.aside_box .aside_cloud {
  /* widget elements */
  /* color variations */
}
.aside_box .aside_cloud .item_title {
  color: rgb(250, 250, 250);
  opacity: 0.5;
  text-align: center;
  margin: max(15px, min(1.92vw, 25px));
  font-family: "Museo Slab 700";
  font-size: 1.74rem;
  line-height: 1.2;
  font-weight: 400;
}
.aside_box .aside_cloud .item_tags {
  margin: max(15px, min(1.92vw, 25px));
  text-align: center;
  font-family: "Frutiger 55 Roman";
  font-size: 1rem;
  line-height: 1.52;
  font-weight: 400;
}
.aside_box .aside_cloud .item_tags a {
  --size: 4;
  font-size: calc(var(--size) * 0.15rem + 0.5rem);
  line-height: calc(var(--size) * 0.2rem + 0.7rem);
  padding: 3px;
}
.aside_box .aside_cloud .item_tags a[data-size=xl] {
  --size: 9;
}
.aside_box .aside_cloud .item_tags a[data-size=lg] {
  --size: 8;
}
.aside_box .aside_cloud .item_tags a[data-size=md] {
  --size: 6;
}
.aside_box .aside_cloud .item_tags a[data-size=sm] {
  --size: 4;
}
.aside_box .aside_cloud .item_tags a[data-size=xs] {
  --size: 3;
}
.aside_box .aside_cloud .item_tags a:hover {
  color: rgb(10, 10, 10);
  background-color: rgb(250, 250, 250);
  opacity: 0.5;
}
.aside_box .aside_cloud {
  background-color: rgb(111, 111, 111);
}
.aside_box .aside_cloud a {
  color: rgb(250, 250, 250);
}
.aside_box .aside_cloud.orange {
  color: rgb(250, 250, 250);
  background-color: rgb(243, 146, 0);
}
.aside_box .aside_cloud.green {
  color: rgb(250, 250, 250);
  background-color: rgb(55, 113, 87);
}
.aside_box .aside_cloud.blue {
  color: rgb(250, 250, 250);
  background-color: rgb(65, 80, 110);
}
.aside_box .aside_cloud.red {
  color: rgb(250, 250, 250);
  background-color: rgb(150, 60, 80);
}

.list_landing_pages,
.aside_box .aside_list {
  background-color: rgb(240, 240, 240);
  color: rgb(80, 80, 80);
  width: 100%;
  /* widget elements */
  /* color variations */
}
@media (min-width: 992px) {
  .list_landing_pages,
  .aside_box .aside_list {
    width: auto;
  }
}
.list_landing_pages > .list_title,
.aside_box .aside_list > .list_title {
  min-height: min(10vw, 80px);
  font-family: "Frutiger 55 Roman";
  font-size: 1.1rem;
  line-height: 1.2;
  font-weight: 400;
  line-height: min(10vw, 80px);
  padding-left: max(10px, min(1.15vw, 15px));
}
@media (min-width: 992px) {
  .list_landing_pages > .list_title,
  .aside_box .aside_list > .list_title {
    padding-left: max(15px, min(1.92vw, 25px));
  }
}
.list_landing_pages > .list_items,
.aside_box .aside_list > .list_items {
  display: flex;
  flex-direction: column;
  font-family: "Frutiger 55 Roman";
  font-size: 1rem;
  line-height: 1.52;
  font-weight: 400;
}
.list_landing_pages > .list_items a,
.aside_box .aside_list > .list_items a {
  display: flex;
  flex-direction: row;
  align-items: center;
  border-top: 1px solid rgb(111, 111, 111);
  min-height: min(2.8rem, 55px);
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: max(10px, min(1.15vw, 15px));
}
.list_landing_pages .list_items a > i,
.aside_box .aside_list .list_items a > i {
  padding-left: max(10px, min(1.15vw, 15px));
  margin-right: max(10px, min(1.15vw, 15px));
}
@media (min-width: 768px) {
  .list_landing_pages .list_items a > i,
  .aside_box .aside_list .list_items a > i {
    padding-left: max(15px, min(1.92vw, 25px));
  }
}
.list_landing_pages > .list_items a:hover,
.aside_box .aside_list > .list_items a:hover {
  color: rgb(250, 250, 250);
  background-color: rgb(111, 111, 111);
}
.list_landing_pages.orange > .list_title,
.aside_box .aside_list.orange > .list_title {
  color: rgb(243, 146, 0);
}
.list_landing_pages.orange a,
.aside_box .aside_list.orange a {
  border-top: 1px solid rgb(243, 146, 0);
}
.list_landing_pages.orange a:last-child,
.aside_box .aside_list.orange a:last-child {
  border-bottom: 1px solid rgb(243, 146, 0);
}
.list_landing_pages.orange a:hover,
.aside_box .aside_list.orange a:hover {
  color: rgb(250, 250, 250);
  background-color: rgb(243, 146, 0);
}

/* aside_image */
.aside_box .aside_button {
  position: relative;
  flex: 1 37%;
  width: 100%;
  max-height: 10vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: rgb(226, 226, 226);
  color: rgb(80, 80, 80);
  overflow: hidden;
  /* color variations */
}
@media (min-width: 768px) {
  .aside_box .aside_button {
    max-height: 13vh;
  }
}
.aside_box .aside_button.bottom .item_header {
  order: 1;
}
.aside_box .aside_button .item_caption {
  display: block;
  text-align: left;
  margin: min(1.82vw, 35px) min(1.82vw, 35px) 0;
  font-family: "Museo Slab 700";
  font-size: 1.39rem;
  line-height: 1.2;
  font-weight: 400;
  white-space: nowrap;
}
.aside_box .aside_button .item_caption i {
  transform: translateY(3px);
}
.aside_box .aside_button .item_subtitle {
  display: block;
  text-align: left;
  margin: 0 min(1.82vw, 35px) min(1.82vw, 35px);
  font-family: "Frutiger 55 Roman";
  font-size: 1rem;
  line-height: 1.52;
  font-weight: 400;
}
.aside_box .aside_button.orange {
  background: linear-gradient(0deg, rgba(243, 146, 0, 0.9) 10%, rgba(243, 146, 0, 0.6) 60%);
  color: rgb(250, 250, 250);
}
.aside_box .aside_button.orange:hover {
  background-color: rgba(243, 146, 0, 0.9);
  opacity: 0.9;
  transition-duration: 3s;
}
.aside_box .aside_button.green {
  background: linear-gradient(0deg, rgba(55, 113, 87, 0.9) 10%, rgba(55, 113, 87, 0.6) 60%);
  color: rgb(250, 250, 250);
}
.aside_box .aside_button.green:hover {
  background-color: rgba(55, 113, 87, 0.9);
  opacity: 0.9;
  transition-duration: 3s;
}
.aside_box .aside_button.blue {
  background: linear-gradient(0deg, rgba(65, 80, 110, 0.9) 10%, rgba(65, 80, 110, 0.6) 60%);
  color: rgb(250, 250, 250);
}
.aside_box .aside_button.blue:hover {
  background-color: rgba(65, 80, 110, 0.9);
  opacity: 0.9;
  transition-duration: 3s;
}
.aside_box .aside_button.red {
  background: linear-gradient(0deg, rgba(150, 60, 80, 0.9) 10%, rgba(150, 60, 80, 0.6) 60%);
  color: rgb(250, 250, 250);
}
.aside_box .aside_button.red:hover {
  background-color: rgba(150, 60, 80, 0.9);
  opacity: 0.9;
  transition-duration: 3s;
}

/* aside_box_icons */
.aside_company {
  display: none;
}
@media (min-width: 992px) {
  .aside_company {
    display: flex;
    flex-direction: column;
    gap: max(15px, min(1.92vw, 25px));
    background-color: rgb(240, 240, 240);
    padding: max(15px, min(1.92vw, 25px));
    font-family: "Frutiger 55 Roman";
    font-size: 0.8rem;
    line-height: 1.52;
    font-weight: 400;
    font-size: 0.7rem;
  }
  @supports (-webkit-touch-callout: none) and (not (translate: none)) {
    .aside_company > *:not(:last-child) {
      margin: 0 0 max(15px, min(1.92vw, 25px)) 0;
    }
    .aside_company > *:last-child {
      margin-bottom: 0;
    }
  }
}

/* aside_text */
.aside_box .aside_text {
  padding: max(15px, min(1.92vw, 25px));
  background-color: rgb(240, 240, 240);
}
.aside_box .aside_text > .title {
  color: rgb(243, 146, 0);
  font-family: "Museo Slab 700";
  font-size: 1.25rem;
  line-height: 1.2;
  font-weight: 400;
}
.aside_box .aside_text > .body {
  color: rgb(80, 80, 80);
  font-family: "Frutiger 55 Roman";
  font-size: 1rem;
  line-height: 1.52;
  font-weight: 400;
}

/* aside_cloud */
.aside_box .related_offers .job_results_container {
  display: flex;
  flex-direction: column;
  gap: max(10px, min(1.15vw, 15px));
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .aside_box .related_offers .job_results_container > *:not(:last-child) {
    margin: 0 0 max(10px, min(1.15vw, 15px)) 0;
  }
  .aside_box .related_offers .job_results_container > *:last-child {
    margin-bottom: 0;
  }
}
.aside_box .related_offers .related_offers_header {
  width: 100%;
  padding: 0 1rem;
  background-color: rgb(240, 240, 240);
  color: rgb(243, 146, 0);
  font-family: "Museo Slab 700";
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 400;
  line-height: 2.4rem;
}
.aside_box .more_offers_btn {
  display: flex;
  flex-direction: row;
  width: 100%;
}
.aside_box .more_offers_btn .btn_label {
  display: block;
  flex: 1;
  background-color: rgb(226, 226, 226);
  white-space: nowrap;
  padding-left: max(15px, min(1.92vw, 25px));
  padding-right: max(15px, min(1.92vw, 25px));
  text-align: center;
  font-family: "Museo Slab 700";
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 400;
  line-height: 2.4rem;
}
.aside_box .more_offers_btn .btn_icon {
  display: block;
  background-color: rgb(111, 111, 111);
  color: rgb(250, 250, 250);
  line-height: 2.4rem;
  width: 2.4rem;
  text-align: center;
}
.aside_box .more_offers_btn:hover .btn_label {
  color: rgb(243, 146, 0);
}
.aside_box .more_offers_btn:hover .btn_icon {
  background-color: rgb(243, 146, 0);
}
@media (min-width: 768px) {
  .aside_box .more_offers_btn:hover {
    flex-direction: row;
  }
}

.aside_customer_voice {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: max(15px, min(1.92vw, 25px));
  padding: max(15px, min(1.92vw, 25px));
  background-color: rgb(240, 240, 240);
}
.aside_customer_voice .review {
  border-bottom: 2px solid rgb(243, 146, 0);
  padding-bottom: max(15px, min(1.92vw, 25px));
  cursor: pointer;
}
.aside_customer_voice .review:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.aside_customer_voice .review .meta {
  display: flex;
  justify-content: space-between;
  margin: max(10px, min(1.15vw, 15px)) 0;
}
.aside_customer_voice .review .meta .rating {
  color: rgb(243, 146, 0);
  font-size: 0.8rem;
}
.aside_customer_voice .review .meta .date {
  font-size: 0.75rem;
  color: rgb(111, 111, 111);
}
.aside_customer_voice .review .body p {
  font-family: "Frutiger 55 Roman";
  font-size: 1rem;
  line-height: 1.52;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.52;
}
@media (min-width: 768px) {
  .aside_customer_voice .review .body p {
    font-size: 0.85rem;
  }
}
.aside_customer_voice .review .body i {
  cursor: pointer;
  color: rgb(243, 146, 0);
}
.aside_customer_voice .client_name {
  font-weight: bold;
}
.aside_customer_voice .client_type {
  font-size: 1rem;
}

.aside_kununu_awards {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  background-color: rgb(240, 240, 240);
  padding: 2rem 0;
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .aside_kununu_awards > * {
    margin-right: 2rem !important;
  }
  .aside_kununu_awards > *:last-child {
    margin-right: 0 !important;
  }
}
@media (min-width: 768px) {
  .aside_kununu_awards {
    gap: 4rem;
  }
  @supports (-webkit-touch-callout: none) and (not (translate: none)) {
    .aside_kununu_awards > * {
      margin-right: 4rem !important;
    }
    .aside_kununu_awards > *:last-child {
      margin-right: 0 !important;
    }
  }
}
@media (min-width: 992px) {
  .aside_kununu_awards {
    flex: initial;
    gap: 1rem;
    justify-content: space-around;
  }
  @supports (-webkit-touch-callout: none) and (not (translate: none)) {
    .aside_kununu_awards > * {
      margin-right: 1rem !important;
    }
    .aside_kununu_awards > *:last-child {
      margin-right: 0 !important;
    }
  }
}
.aside_kununu_awards .award {
  width: 120px;
  border: 2px solid rgb(243, 146, 0);
}
@media (min-width: 768px) {
  .aside_kununu_awards .award {
    width: 150px;
  }
}
@media (min-width: 992px) {
  .aside_kununu_awards .award {
    width: 110px;
  }
}
@media (min-width: 1250px) {
  .aside_kununu_awards .award {
    width: 150px;
  }
}
.aside_kununu_awards .award img {
  width: 100%;
  height: 100%;
  transform: translate(10px, 10px);
}

.aside_category_list {
  background-color: rgb(240, 240, 240);
  color: rgb(80, 80, 80);
  width: 100%;
  /* widget elements */
  /* color variations */
}
@media (min-width: 992px) {
  .aside_category_list {
    width: auto;
  }
}
.aside_category_list > .list_title {
  min-height: min(10vw, 80px);
  font-family: "Frutiger 55 Roman";
  font-size: 1.1rem;
  line-height: 1.2;
  font-weight: 400;
  line-height: min(10vw, 80px);
  padding-left: max(10px, min(1.15vw, 15px));
}
@media (min-width: 992px) {
  .aside_category_list > .list_title {
    padding-left: max(15px, min(1.92vw, 25px));
  }
}
.aside_category_list > .list_items {
  display: flex;
  flex-direction: column;
  font-family: "Frutiger 55 Roman";
  font-size: 1rem;
  line-height: 1.52;
  font-weight: 400;
}
.aside_category_list > .list_items a {
  display: flex;
  flex-direction: row;
  align-items: center;
  border-top: 1px solid rgb(111, 111, 111);
  min-height: min(2.8rem, 55px);
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: max(10px, min(1.15vw, 15px));
}
.aside_category_list .list_items a > i {
  padding-left: max(10px, min(1.15vw, 15px));
  margin-right: max(10px, min(1.15vw, 15px));
}
@media (min-width: 768px) {
  .aside_category_list .list_items a > i {
    padding-left: max(15px, min(1.92vw, 25px));
  }
}
.aside_category_list > .list_items a:hover {
  color: rgb(250, 250, 250);
  background-color: rgb(243, 146, 0);
}
.aside_category_list.orange > .list_title {
  color: rgb(243, 146, 0);
}
.aside_category_list.orange a {
  border-top: 1px solid rgb(243, 146, 0);
}
.aside_category_list.orange a:last-child {
  border-bottom: 1px solid rgb(243, 146, 0);
}
.aside_category_list.orange a:hover {
  color: rgb(250, 250, 250);
  background-color: rgb(243, 146, 0);
}

.aside_target_list {
  background-color: rgb(240, 240, 240);
  color: rgb(80, 80, 80);
  width: 100%;
  /* widget elements */
  /* color variations */
}
@media (min-width: 992px) {
  .aside_target_list {
    width: auto;
  }
}
.aside_target_list > .list_title {
  min-height: min(10vw, 80px);
  font-family: "Frutiger 55 Roman";
  font-size: 1.1rem;
  line-height: 1.2;
  font-weight: 400;
  line-height: min(10vw, 80px);
  padding-left: max(10px, min(1.15vw, 15px));
}
@media (min-width: 992px) {
  .aside_target_list > .list_title {
    padding-left: max(15px, min(1.92vw, 25px));
  }
}
.aside_target_list > .list_items {
  display: flex;
  flex-direction: column;
  font-family: "Frutiger 55 Roman";
  font-size: 1rem;
  line-height: 1.52;
  font-weight: 400;
}
.aside_target_list > .list_items a {
  display: flex;
  flex-direction: row;
  align-items: center;
  border-top: 1px solid rgb(111, 111, 111);
  min-height: min(2.8rem, 55px);
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: max(10px, min(1.15vw, 15px));
}
.aside_target_list .list_items a > i {
  padding-left: max(10px, min(1.15vw, 15px));
  margin-right: max(10px, min(1.15vw, 15px));
}
@media (min-width: 768px) {
  .aside_target_list .list_items a > i {
    padding-left: max(15px, min(1.92vw, 25px));
  }
}
.aside_target_list > .list_items a:hover {
  color: rgb(250, 250, 250);
  background-color: rgb(243, 146, 0);
}
.aside_target_list.orange > .list_title {
  color: rgb(243, 146, 0);
}
.aside_target_list.orange a {
  border-top: 1px solid rgb(243, 146, 0);
}
.aside_target_list.orange a:last-child {
  border-bottom: 1px solid rgb(243, 146, 0);
}
.aside_target_list.orange a:hover {
  color: rgb(250, 250, 250);
  background-color: rgb(243, 146, 0);
}

/* hero image with gradient */
.job_hero {
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
  background-color: rgb(243, 146, 0);
  overflow: hidden;
}
@media (min-width: 768px) {
  .job_hero {
    min-height: min(26vw, 500px);
  }
}
@media (min-width: 992px) {
  .job_hero {
    height: min(26vw, 500px);
  }
}
.job_hero .job_hero_img {
  background-position: center;
  background-size: cover;
  position: relative;
  width: 100%;
  height: min(26vw, 500px);
  object-fit: cover;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  height: min(40vw, 600px);
}
@media (min-width: 768px) {
  .job_hero .job_hero_img {
    height: min(26vw, 500px);
  }
}
@media (min-width: 992px) {
  .job_hero .job_hero_img {
    height: min(26vw, 500px);
  }
}
.job_hero .job_hero_title {
  padding: max(15px, min(1.92vw, 25px));
  color: rgb(80, 80, 80);
  text-align: left;
}
@media (min-width: 992px) {
  .job_hero .job_hero_title {
    color: rgb(250, 250, 250);
    position: absolute;
    bottom: max(35px, min(3.85vw, 50px));
    left: 0;
    transform: translateX(-2rem);
    padding-left: 4rem;
    padding-right: 1.9rem;
    background-color: transparent;
    max-width: calc(90% - 2rem);
    z-index: 10;
  }
  .job_hero .job_hero_title::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background-color: rgba(243, 146, 0, 0.8);
    transform-origin: bottom right;
    transform: skewX(-14deg);
  }
}
.job_hero .job_hero_title .headline,
.job_hero .job_hero_title .subline {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}
@media (min-width: 992px) {
  .job_hero .job_hero_title .headline,
  .job_hero .job_hero_title .subline {
    white-space: nowrap;
  }
}
.job_hero .job_hero_title .headline {
  font-family: "Museo Slab 700";
  font-size: 1.74rem;
  line-height: 1.2;
  font-weight: 400;
  color: rgb(250, 250, 250);
}
.job_hero .job_hero_title .subline {
  font-family: "Frutiger 55 Roman";
  font-size: 0.8rem;
  line-height: 1.52;
  font-weight: 400;
}
.job_hero .job_hero_title .job_searchbox_container input {
  width: min(30vw, 600px);
}

/* job_filter portal*/
.job_filter_container {
  margin: 20px 0;
  padding-left: 0px;
}
@media (min-width: 768px) {
  .job_filter_container {
    margin: 0;
  }
}
@media (min-width: 768px) {
  .job_filter_container {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    padding-left: max(15px, min(1.92vw, 25px));
    flex: 1 30%;
  }
}

/* job_Filter */
.job_filter_main {
  display: flex;
  flex-direction: column;
  gap: max(10px, min(1.15vw, 15px));
  margin-bottom: max(15px, min(1.92vw, 25px));
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .job_filter_main > *:not(:last-child) {
    margin: 0 0 max(10px, min(1.15vw, 15px)) 0;
  }
  .job_filter_main > *:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .job_filter_main {
    margin-bottom: 0px;
  }
}

.job_filter_item {
  background-color: rgb(226, 226, 226);
}
.job_filter_item.remove_hover {
  background-color: rgb(226, 226, 226) !important;
  color: rgb(80, 80, 80) !important;
}

body.hasHover .job_filter_item:hover {
  background-color: rgb(243, 146, 0);
  color: rgb(250, 250, 250);
}

.job_filter_item .reflect_selected_option {
  font-family: "Frutiger 55 Roman";
  font-size: 0.6rem;
  line-height: 1.2;
  font-weight: 500;
  position: absolute;
  top: 50%;
  right: max(10px, min(1.15vw, 15px));
  transform: translateY(-50%);
  background-color: rgb(250, 250, 250);
  border: solid 1px rgb(243, 146, 0);
  padding: max(5px, min(0.7vw, 10px)) max(10px, min(1.15vw, 15px)) max(5px, min(0.7vw, 10px)) max(5px, min(0.7vw, 10px));
  text-transform: capitalize;
  color: rgb(243, 146, 0);
  max-width: 200px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
}
.job_filter_item .reflect_selected_option .discard_filter_option {
  display: block;
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  font-size: 0.5rem;
  pointer-events: none;
}
@media (min-width: 768px) {
  .job_filter_item .reflect_selected_option {
    max-width: 60px;
  }
}
@media (min-width: 992px) {
  .job_filter_item .reflect_selected_option {
    max-width: 150px;
  }
}

.job_filter_item.active {
  background-color: rgb(243, 146, 0);
  color: rgb(250, 250, 250);
}

.job_filter_item {
  display: flex;
  position: relative;
}

.job_filter_item > i {
  display: block;
  line-height: 2.4rem;
  width: 2.4rem;
  text-align: center;
  pointer-events: none;
}

.job_filter_item > span {
  display: block;
  line-height: 2.4rem;
  pointer-events: none;
}

.job_filter_title {
  font-family: "Frutiger 55 Roman";
  font-size: 1rem;
  line-height: 1.52;
  font-weight: 400;
  padding: max(10px, min(1.15vw, 15px)) max(15px, min(1.92vw, 25px));
}
@media (min-width: 768px) {
  .job_filter_title {
    padding-top: 0;
  }
}

.job_filter_secondary {
  background-color: rgb(226, 226, 226);
  margin-top: max(15px, min(1.92vw, 25px));
  margin-bottom: max(15px, min(1.92vw, 25px));
  position: relative;
}

.job_filter_details {
  display: flex;
  flex-direction: column;
  gap: max(10px, min(1.15vw, 15px));
  margin-bottom: max(15px, min(1.92vw, 25px));
  margin-top: max(15px, min(1.92vw, 25px));
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .job_filter_details > *:not(:last-child) {
    margin: 0 0 max(10px, min(1.15vw, 15px)) 0;
  }
  .job_filter_details > *:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .job_filter_details {
    margin-bottom: 0px;
  }
}

/* Dark_Buffer */
.dark_buffer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100%;
  background-color: rgb(10, 10, 10);
  opacity: 0.6;
  z-index: 10;
  display: none;
}
.dark_buffer.active {
  display: block;
}

/* Job_restult_content_portal */
.job_container {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1500px;
  position: relative;
}
@media (min-width: 768px) {
  .job_container {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.job_container .aside_box .aside_spacer {
  display: block;
  flex: 1 100 auto;
  width: 100%;
}

.job_container > main {
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  flex: 1 70%;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .job_container > main {
    margin: 0;
  }
}
@media (min-width: 768px) {
  .job_container > main {
    min-height: 710px;
  }
}
@media (min-width: 992px) {
  .job_container > main {
    min-height: 725px;
  }
}

.job_container > main .job_filter_panel {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgb(226, 226, 226);
  margin-left: 100%;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  z-index: 100;
  width: 90vw;
  max-height: 80vh;
  overflow-y: auto;
}
.job_container > main .job_filter_panel.active {
  margin-left: 0;
}
.job_container > main .job_filter_panel .job_filter_panel_title {
  background-color: rgb(111, 111, 111);
  color: rgb(250, 250, 250);
  padding: max(15px, min(1.92vw, 25px));
  position: relative;
  font-family: "Frutiger 55 Roman";
  font-size: 1.1rem;
  line-height: 1.2;
  font-weight: 400;
}
.job_container > main .job_filter_panel .job_filter_panel_title .close_filter_panel_btn {
  position: absolute;
  right: max(10px, min(1.15vw, 15px));
  top: 50%;
  transform: translateY(-55%);
  cursor: pointer;
  font-family: "Frutiger 55 Roman";
  font-size: 1.22rem;
  line-height: 1.2;
  font-weight: 400;
}
.job_container > main .job_filter_panel .job_filter_panel_main {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.2rem;
  padding: max(15px, min(1.92vw, 25px));
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .job_container > main .job_filter_panel .job_filter_panel_main > * {
    margin-right: 0.2rem;
    margin-bottom: 0.2rem;
  }
  .job_container > main .job_filter_panel .job_filter_panel_main > *:last-child {
    margin-right: 0;
  }
}
.job_container > main .job_filter_panel .job_filter_panel_main .group_header, .job_container > main .job_filter_panel .job_filter_panel_main .spacer {
  flex: 1 1 100%;
  margin-top: max(10px, min(1.15vw, 15px));
}
.job_container > main .job_filter_panel .job_filter_panel_main .spacer {
  display: none;
}
@media (min-width: 768px) {
  .job_container > main .job_filter_panel .job_filter_panel_main .spacer {
    display: flex;
  }
}
.job_container > main .job_filter_panel .job_filter_panel_main .filter_option {
  flex-grow: 1;
  min-width: 220px;
  max-width: 450px;
  border: none;
  background-color: rgb(250, 250, 250);
  color: rgb(80, 80, 80);
  padding: max(10px, min(1.15vw, 15px)) max(15px, min(1.92vw, 25px));
  cursor: pointer;
  position: relative;
  font-family: "Frutiger 55 Roman";
  font-size: 1rem;
  line-height: 1.52;
  font-weight: 400;
}
.job_container > main .job_filter_panel .job_filter_panel_main .filter_option:last-child {
  flex-grow: 1;
}
.job_container > main .job_filter_panel .job_filter_panel_main .filter_option.active {
  background-color: rgb(243, 146, 0);
  color: rgb(250, 250, 250);
}
.job_container > main .job_filter_panel .job_filter_panel_main .filter_option .cancel_filter_option {
  display: block;
  font-size: 0.6rem;
  position: absolute;
  right: max(10px, min(1.15vw, 15px));
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
@media (min-width: 768px) {
  .job_container > main .job_filter_panel {
    width: 100%;
    height: 100%;
    max-height: none;
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(0, 0);
  }
  .job_container > main .job_filter_panel .job_filter_panel_title {
    background-color: rgb(250, 250, 250);
    color: rgb(80, 80, 80);
    font-family: "Frutiger 55 Roman";
    font-size: 1rem;
    line-height: 1.52;
    font-weight: 400;
    padding: 0 max(15px, min(1.92vw, 25px)) max(10px, min(1.15vw, 15px));
  }
  .job_container > main .job_filter_panel .job_filter_panel_main .filter_option {
    font-family: "Frutiger 55 Roman";
    font-size: 0.8rem;
    line-height: 1.52;
    font-weight: 400;
  }
  .job_container > main .job_filter_panel .job_filter_panel_main .filter_option:last-child {
    flex-grow: 0.25;
  }
}

body.hasHover .filter_option:hover {
  background-color: rgb(243, 146, 0) !important;
  color: rgb(250, 250, 250) !important;
}

.job_container > main .job_results_container {
  width: 100%;
  height: 100%;
  margin-bottom: max(15px, min(1.92vw, 25px));
}
.job_container > main .job_results_container .no_job_results_container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.job_container > main .job_results_container .no_job_results_container .no_job_results_header {
  background-color: rgb(250, 250, 250);
  padding-bottom: max(10px, min(1.15vw, 15px));
  padding-left: max(15px, min(1.92vw, 25px));
}
.job_container > main .job_results_container .no_job_results_container .no_job_results_message {
  flex-grow: 1;
  padding: max(15px, min(1.92vw, 25px));
  background-color: rgb(226, 226, 226);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.job_container > main .job_results_container .no_job_results_container .no_job_results_message .sorry_icon {
  font-size: 3rem;
  margin-bottom: max(15px, min(1.92vw, 25px));
}
@media (min-width: 768px) {
  .job_container > main .job_results_container {
    margin-bottom: max(10px, min(1.15vw, 15px));
  }
}

.job_container .job_result_list {
  display: flex;
  flex-direction: column;
  gap: max(10px, min(1.15vw, 15px));
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .job_container .job_result_list > *:not(:last-child) {
    margin: 0 0 max(10px, min(1.15vw, 15px)) 0;
  }
  .job_container .job_result_list > *:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .job_container .job_result_list {
    flex-direction: row;
    flex-wrap: wrap;
  }
  @supports (-webkit-touch-callout: none) and (not (translate: none)) {
    .job_container .job_result_list > * {
      margin: 0 max(10px, min(1.15vw, 15px)) max(10px, min(1.15vw, 15px)) 0 !important;
    }
    .job_container .job_result_list > *:nth-child(2n+2) {
      margin: 0 0 max(10px, min(1.15vw, 15px)) 0 !important;
    }
    .job_container .job_result_list > *:nth-last-child(-n+2) {
      margin: 0 max(10px, min(1.15vw, 15px)) 0 0 !important;
    }
    .job_container .job_result_list > *:last-child {
      margin: 0 0 0 0 !important;
    }
  }
}

.job_result_list .job_result_button {
  height: 80px;
  display: flex;
  flex-direction: row;
  overflow: hidden;
}
@media (min-width: 768px) {
  .job_result_list .job_result_button {
    height: 120px;
    flex: 1 1 49%;
  }
}

.job_result_list .job_result_button.fixed_width {
  flex: 0;
}

.job_result_list .job_result_button > .job_icon {
  display: block;
  background-color: rgb(226, 226, 226);
  line-height: 4rem;
  width: 2.4rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 0 15%;
  max-width: 75px;
}

.job_result_title {
  font-family: "Frutiger 55 Roman";
  font-size: 1rem;
  line-height: 1.52;
  font-weight: 400;
  padding-bottom: max(10px, min(1.15vw, 15px));
  padding-left: max(15px, min(1.92vw, 25px));
}

.job_result_list .job_result_button > .job_icon.clear {
  background-color: rgb(226, 226, 226);
}

.job_result_list .job_result_button > .job_icon.new_job {
  background-color: rgb(210, 138, 28);
  color: rgb(250, 250, 250);
}

.job_result_list .job_result_button > .job_icon.active_job {
  background-color: rgb(111, 111, 111);
  color: rgb(250, 250, 250);
}

.job_result_list .job_result_button > .job_icon.occupied_job {
  background-color: rgb(173, 173, 173);
  color: rgb(250, 250, 250);
}

body.hasHover .job_result_list .job_result_button:hover > .job_icon {
  background-color: rgb(243, 146, 0);
  color: rgb(240, 240, 240);
}

.job_result_list .job_result_button > .job_lable {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: max(15px, min(1.92vw, 25px));
  box-sizing: border-box;
  padding: max(15px, min(1.92vw, 25px));
  background-color: rgb(240, 240, 240);
  font-family: "Museo Slab 700";
  font-size: 0.9rem;
  line-height: 1.1;
  font-weight: 400;
  overflow: hidden;
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .job_result_list .job_result_button > .job_lable > *:not(:last-child) {
    margin: 0 0 max(15px, min(1.92vw, 25px)) 0;
  }
  .job_result_list .job_result_button > .job_lable > *:last-child {
    margin-bottom: 0;
  }
}
.job_result_list .job_result_button > .job_lable .job_result_teaser {
  width: 100%;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: 3.4rem;
}
.job_result_list .job_result_button > .job_lable .job_result_subtitle {
  width: 100%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-grow: 1;
  font-family: "Frutiger 55 Roman";
  font-size: max(0.75rem, 13px);
  line-height: 1.3;
  font-weight: 400;
}
@media (min-width: 768px) {
  .job_result_list .job_result_button > .job_lable {
    padding: max(10px, min(1.15vw, 15px)) max(15px, min(1.92vw, 25px));
    gap: 0;
  }
  @supports (-webkit-touch-callout: none) and (not (translate: none)) {
    .job_result_list .job_result_button > .job_lable > *:not(:last-child) {
      margin: 0 0 0 0;
    }
    .job_result_list .job_result_button > .job_lable > *:last-child {
      margin-bottom: 0;
    }
  }
}

body.hasHover .job_result_list .job_result_button:hover > .job_lable {
  color: rgb(243, 146, 0);
}

.job_item_icon {
  padding-right: max(5px, min(0.7vw, 10px));
}

.job_pagination_container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .job_pagination_container > * {
    margin-right: 0.5rem !important;
  }
  .job_pagination_container > *:last-child {
    margin-right: 0 !important;
  }
}
.job_pagination_container .pagination_input {
  background-color: rgb(226, 226, 226);
  padding: max(10px, min(1.15vw, 15px));
  color: rgb(80, 80, 80);
  width: 2.3rem;
  height: 2.3rem;
  text-align: center;
  border: none;
  outline: none;
  -moz-appearance: textfield;
  margin: 0;
  font-family: "Frutiger 55 Roman";
  font-size: 1rem;
  line-height: 1.52;
  font-weight: 400;
}
.job_pagination_container .pagination_input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.job_pagination_container .pagination_btn {
  width: 2.3rem;
  height: 2.3rem;
  border: none;
  background-color: rgb(226, 226, 226);
  color: rgb(80, 80, 80);
  font-size: 0.8rem;
  cursor: pointer;
}
.job_pagination_container .pagination_btn:disabled {
  background-color: rgb(240, 240, 240);
  color: rgb(111, 111, 111);
  pointer-events: none;
}
.job_pagination_container .pagination_btn i {
  pointer-events: none;
}
@media (min-width: 992px) {
  .job_pagination_container {
    justify-content: flex-end;
  }
}

body.hasHover .pagination_btn:hover {
  background-color: rgb(243, 146, 0);
  color: rgb(250, 250, 250);
}

/* job_content_main Details */
.job_content {
  display: flex;
  flex-direction: column;
  gap: max(15px, min(1.92vw, 25px));
  min-height: 100vh;
  margin-bottom: max(15px, min(1.92vw, 25px));
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .job_content > *:not(:last-child) {
    margin: 0 0 max(15px, min(1.92vw, 25px)) 0;
  }
  .job_content > *:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .job_content {
    margin-bottom: 0;
  }
}

.job_content.loaded {
  min-height: auto;
}

.job_content_box {
  box-sizing: border-box;
  color: rgb(80, 80, 80);
  background-color: rgb(240, 240, 240);
  font-family: "Frutiger 55 Roman";
  font-size: 1rem;
  line-height: 1.52;
  font-weight: 400;
  margin: 20px 0;
  padding: max(35px, min(3.85vw, 50px)) max(15px, min(1.92vw, 25px));
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .job_content_box {
    margin: 0;
  }
}
@media (min-width: 768px) {
  .job_content_box {
    padding: max(35px, min(3.85vw, 50px));
  }
}
.job_content_box .job_content_box_header {
  font-family: "Frutiger 55 Roman";
  font-size: 1rem;
  line-height: 1.52;
  font-weight: bold;
}
.job_content_box .subtitle {
  font-family: "Frutiger 55 Roman";
  font-size: 1rem;
  line-height: 1.52;
  font-weight: bold;
  display: block;
  margin-bottom: 0.72rem;
}
.job_content_box h1 {
  margin: 1.78rem 0 0.39rem;
  color: rgb(243, 146, 0);
  font-family: "Museo Slab 700";
  font-size: 1.74rem;
  line-height: 1.2;
  font-weight: 400;
}
.job_content_box h1:first-child {
  margin-top: 0;
}
.job_content_box h2 {
  margin: 1rem 0 0.35rem;
  color: rgb(243, 146, 0);
  font-family: "Museo Slab 700";
  font-size: 1.39rem;
  line-height: 1.2;
  font-weight: 400;
}
.job_content_box h2:first-child {
  margin-top: 0;
}
.job_content_box h3 {
  margin: 1.78rem 0 0.39rem;
  font-family: "Museo Slab 700";
  font-size: 1.25rem;
  line-height: 1.2;
  font-weight: 400;
  color: rgb(243, 146, 0);
}
.job_content_box h3:first-child {
  margin-top: 0;
}
.job_content_box h4 {
  margin: 0.3rem 0 0.5rem;
  font-family: "Frutiger 55 Roman";
  font-size: 1.22rem;
  line-height: 1.2;
  font-weight: 400;
}
.job_content_box h4:first-child {
  margin-top: 0;
}
.job_content_box h4:first-child + p {
  margin-top: -1.22rem;
}
.job_content_box h5 {
  margin: 1.2rem 0 0.1rem;
  font-family: "Frutiger 55 Roman";
  font-size: 1.1rem;
  line-height: 1.2;
  font-weight: 400;
}
.job_content_box h5:first-child {
  margin-top: 0;
}
.job_content_box h5:first-child + p {
  margin-top: -1.1rem;
}
.job_content_box p {
  margin-bottom: 1.52rem;
}
.job_content_box p:last-child {
  margin-bottom: 0;
}
.job_content_box a.align_right {
  display: block;
  text-align: right;
}
.job_content_box strong {
  font-weight: bold;
}
.job_content_box small {
  color: rgb(80, 80, 80);
  font-family: "Frutiger 55 Roman";
  font-size: 0.8rem;
  line-height: 1.52;
  font-weight: 400;
}
.job_content_box .occupied_job_message {
  color: red;
  text-align: center;
  margin-bottom: 0.5rem;
  font-family: "Frutiger 55 Roman";
  font-size: 1rem;
  line-height: 1.52;
  font-weight: 400;
}
.job_content_box em {
  color: rgb(50, 50, 50);
  font-style: italic;
}
.job_content_box a {
  color: rgb(50, 50, 50);
  text-decoration: none;
}
.job_content_box a:before {
  color: rgb(243, 146, 0);
  font-weight: bold;
  content: "› ";
  /* add chevron (U+203A) and nbsp (U+00A0)*/
}
.job_content_box a:hover {
  color: rgb(243, 146, 0);
}
.job_content_box ul {
  list-style-type: square;
  margin-left: 0;
  padding-left: max(10px, min(1.15vw, 15px));
  margin-bottom: 1rem;
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .job_content_box ul {
    margin-left: max(15px, min(1.92vw, 25px));
    padding-left: 0;
  }
}
.job_content_box ol {
  list-style-type: decimal;
  margin-left: 0;
  padding-left: max(10px, min(1.15vw, 15px));
  margin-bottom: 1rem;
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .job_content_box ol {
    margin-left: max(15px, min(1.92vw, 25px));
    padding-left: 0;
  }
}
.job_content_box img.full {
  max-width: 100%;
  display: block;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.job_content_box img.right {
  max-width: 100%;
  margin-top: 1rem;
  margin-bottom: 1rem;
  display: block;
}
@media (min-width: 768px) {
  .job_content_box img.right {
    max-width: 50%;
    margin-right: 1rem;
    float: left;
  }
}
.job_content_box img.left {
  max-width: 100%;
  margin-top: 1rem;
  margin-bottom: 1rem;
  display: block;
}
@media (min-width: 768px) {
  .job_content_box img.left {
    max-width: 50%;
    margin-left: 1rem;
    float: right;
  }
}

/* job_button_bar */
.job_button_bar {
  margin-right: max(15px, min(1.92vw, 25px));
  margin-left: max(15px, min(1.92vw, 25px));
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .job_button_bar {
    flex-direction: row;
    margin-right: 0px;
    margin-left: 0px;
    gap: max(15px, min(1.92vw, 25px));
  }
  @supports (-webkit-touch-callout: none) and (not (translate: none)) {
    .job_button_bar > * {
      margin-right: max(15px, min(1.92vw, 25px));
      margin-bottom: max(15px, min(1.92vw, 25px));
    }
    .job_button_bar > *:last-child {
      margin-right: 0;
    }
  }
}

.job_button_bar > .job_group {
  flex: 1;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: max(35px, min(3.85vw, 50px));
  min-height: 115px;
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .job_button_bar > .job_group > * {
    margin-right: max(15px, min(1.92vw, 25px)) !important;
  }
  .job_button_bar > .job_group > *:last-child {
    margin-right: 0 !important;
  }
}
@media (min-width: 768px) {
  .job_button_bar > .job_group {
    justify-content: space-around;
    gap: max(10px, min(1.15vw, 15px));
  }
}

.job_button_bar .job_button {
  flex: 1;
  display: flex;
  flex-direction: row;
}

.job_button_bar .job_button {
  margin-top: max(10px, min(1.15vw, 15px));
}
.job_button_bar .job_button > * {
  pointer-events: none;
}
@media (min-width: 768px) {
  .job_button_bar .job_button {
    flex: 1;
    display: flex;
    flex-direction: row;
    margin-top: 0px;
  }
}

.job_button_bar .job_button.fixed_width {
  flex: 0;
}

.job_button_bar .job_button > .job_icon {
  display: block;
  background-color: rgb(226, 226, 226);
  width: 2.4rem;
  line-height: 2.4rem;
  text-align: center;
}
.job_button_bar .job_button > .job_icon.sloppy {
  width: 2.4rem;
  padding-right: max(5px, min(0.7vw, 10px));
}
.job_button_bar .job_button > .job_icon i {
  pointer-events: none;
}

.job_button_bar .job_button > .job_icon.clear {
  background-color: rgb(226, 226, 226);
}

.job_button_bar .job_button:hover > .job_icon.clear {
  color: rgb(243, 146, 0);
}

.job_button_bar .job_button > .job_icon.grey {
  background-color: rgb(210, 138, 28);
  color: rgb(240, 240, 240);
  height: 2.4rem;
  width: 4rem;
}

.job_button_bar .job_button:hover > .job_icon.grey {
  background-color: rgb(243, 146, 0);
  color: rgb(240, 240, 240);
}

.job_button_bar .job_button > .job_lable {
  flex: 1;
  display: block;
  background-color: rgb(240, 240, 240);
  white-space: nowrap;
  padding-left: max(15px, min(1.92vw, 25px));
  padding-right: max(15px, min(1.92vw, 25px));
  z-index: 10;
  position: relative;
  font-family: "Museo Slab 700";
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 400;
  line-height: 2.4rem;
}
@media (min-width: 768px) {
  .job_button_bar .job_button > .job_lable::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 1px;
    left: 0;
    z-index: -1;
    background-color: rgb(240, 240, 240);
    transform-origin: left top;
    transform: skewX(-14deg);
  }
}

.job_button_bar .job_button:hover > .job_lable {
  color: rgb(243, 146, 0);
}

.standalone_jobs_container {
  display: flex;
  flex-direction: column;
}
.standalone_jobs_container .job_results_container {
  width: 100%;
  height: 100%;
  margin-bottom: max(15px, min(1.92vw, 25px));
}
@media (min-width: 768px) {
  .standalone_jobs_container .job_results_container {
    margin-bottom: max(10px, min(1.15vw, 15px));
  }
}
.standalone_jobs_container .job_results_container .job_result_list {
  display: flex;
  flex-direction: column;
  gap: max(10px, min(1.15vw, 15px));
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .standalone_jobs_container .job_results_container .job_result_list > *:not(:last-child) {
    margin: 0 0 max(10px, min(1.15vw, 15px)) 0;
  }
  .standalone_jobs_container .job_results_container .job_result_list > *:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .standalone_jobs_container .job_results_container .job_result_list {
    flex-direction: row;
    flex-wrap: wrap;
  }
  @supports (-webkit-touch-callout: none) and (not (translate: none)) {
    .standalone_jobs_container .job_results_container .job_result_list > * {
      margin: 0 max(10px, min(1.15vw, 15px)) max(10px, min(1.15vw, 15px)) 0 !important;
    }
    .standalone_jobs_container .job_results_container .job_result_list > *:nth-child(2n+2) {
      margin: 0 0 max(10px, min(1.15vw, 15px)) 0 !important;
    }
    .standalone_jobs_container .job_results_container .job_result_list > *:nth-last-child(-n+2) {
      margin: 0 max(10px, min(1.15vw, 15px)) 0 0 !important;
    }
    .standalone_jobs_container .job_results_container .job_result_list > *:last-child {
      margin: 0 0 0 0 !important;
    }
  }
}
.standalone_jobs_container .no_job_results_container {
  width: 100%;
}
.standalone_jobs_container .no_job_results_container .no_job_results_message {
  padding: max(15px, min(1.92vw, 25px)) max(35px, min(3.85vw, 50px));
  background-color: rgb(240, 240, 240);
  display: flex;
}
.standalone_jobs_container .no_job_results_container .no_job_results_message strong {
  font-weight: bold;
}
.standalone_jobs_container .no_job_results_container .no_job_results_message .sorry_icon {
  font-size: 1.5rem;
  margin-right: 1rem;
}

.job_searchbox_container {
  text-align: center;
  clear: both;
}
.job_searchbox_container form {
  margin: 0 auto;
  padding: 0;
  max-width: 100%;
  display: inline-block;
  display: flex;
  display: -webkit-flex;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  flex-direction: row;
}
.job_searchbox_container input {
  flex: 1;
  width: 100%;
  color: rgb(80, 80, 80);
  background-color: rgb(226, 226, 226);
  border: none;
  outline: none;
  font-family: "Museo Slab 700";
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 400;
}
.job_searchbox_container input:focus {
  background-color: rgb(240, 240, 240);
}
.job_searchbox_container button {
  background: rgb(111, 111, 111);
  color: rgb(250, 250, 250);
  font-size: 1rem;
  cursor: pointer;
  width: 2.4rem;
  height: 2.4rem;
}
.job_searchbox_container button:hover {
  background-color: rgb(111, 111, 111);
  color: rgb(243, 146, 0);
}
@media (min-width: 992px) {
  .job_searchbox_container button:hover {
    background-color: rgb(243, 146, 0);
    color: rgb(250, 250, 250);
  }
}

.job_social_media_share {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: max(15px, min(1.92vw, 25px));
  /* color variations */
}
@media (min-width: 768px) {
  .job_social_media_share {
    flex-direction: column;
    align-items: flex-start;
    row-gap: max(10px, min(1.15vw, 15px));
  }
  @supports (-webkit-touch-callout: none) and (not (translate: none)) {
    .job_social_media_share > *:not(:last-child) {
      margin: 0 0 max(10px, min(1.15vw, 15px)) 0;
    }
    .job_social_media_share > *:last-child {
      margin-bottom: 0;
    }
  }
}
.job_social_media_share > .title {
  color: rgb(250, 250, 250);
  padding-right: max(10px, min(1.15vw, 15px));
  font-family: "Museo Slab 700";
  font-size: 1.25rem;
  line-height: 1.2;
  font-weight: 400;
}
.job_social_media_share > .icons {
  display: flex;
  flex-direction: row;
  gap: 3rem;
  color: rgb(250, 250, 250);
  font-size: 1.8rem;
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .job_social_media_share > .icons > * {
    margin-right: 3rem !important;
  }
  .job_social_media_share > .icons > *:last-child {
    margin-right: 0 !important;
  }
}
@media (min-width: 768px) {
  .job_social_media_share > .icons {
    width: 100%;
    justify-content: space-between;
    gap: 0;
  }
  @supports (-webkit-touch-callout: none) and (not (translate: none)) {
    .job_social_media_share > .icons > * {
      margin-right: 0 !important;
    }
    .job_social_media_share > .icons > *:last-child {
      margin-right: 0 !important;
    }
  }
}
@media (min-width: 992px) {
  .job_social_media_share > .icons {
    width: 100%;
    justify-content: flex-start;
    gap: max(15px, min(1.92vw, 25px));
  }
  @supports (-webkit-touch-callout: none) and (not (translate: none)) {
    .job_social_media_share > .icons > * {
      margin-right: max(15px, min(1.92vw, 25px)) !important;
    }
    .job_social_media_share > .icons > *:last-child {
      margin-right: 0 !important;
    }
  }
}
.job_social_media_share a {
  display: block;
  flex: 0;
}
.job_social_media_share a > * {
  pointer-events: none;
}
.job_social_media_share a:hover {
  color: rgb(10, 10, 10);
}
.job_social_media_share {
  background-color: rgb(111, 111, 111);
}
.job_social_media_share.orange {
  background-color: rgb(243, 146, 0);
}
.job_social_media_share.orange.light {
  background-color: rgb(240, 240, 240);
}
.job_social_media_share.orange.light > .title {
  color: rgb(243, 146, 0);
}
.job_social_media_share.orange.light > .icons {
  color: rgb(80, 80, 80);
}
.job_social_media_share.orange.light > .icons a:hover {
  color: rgb(243, 146, 0);
}
.job_social_media_share.green {
  background-color: rgb(55, 113, 87);
}
.job_social_media_share.green.light {
  background-color: rgb(240, 240, 240);
}
.job_social_media_share.green.light > .title {
  color: rgb(55, 113, 87);
}
.job_social_media_share.green.light > .icons {
  color: rgb(80, 80, 80);
}
.job_social_media_share.green.light > .icons a:hover {
  color: rgb(55, 113, 87);
}
.job_social_media_share.blue {
  background-color: rgb(65, 80, 110);
}
.job_social_media_share.blue.light {
  background-color: rgb(240, 240, 240);
}
.job_social_media_share.blue.light > .title {
  color: rgb(65, 80, 110);
}
.job_social_media_share.blue.light > .icons {
  color: rgb(80, 80, 80);
}
.job_social_media_share.blue.light > .icons a:hover {
  color: rgb(65, 80, 110);
}
.job_social_media_share.grey.light {
  background-color: rgb(240, 240, 240);
}
.job_social_media_share.grey.light > .title {
  color: rgb(80, 80, 80);
}
.job_social_media_share.grey.light > .icons {
  color: rgb(80, 80, 80);
}

.contact_formular {
  width: 100%;
  padding: max(15px, min(1.92vw, 25px));
  background-color: rgb(240, 240, 240);
}
@media (min-width: 992px) {
  .contact_formular {
    padding: max(35px, min(3.85vw, 50px));
  }
}

/* Form section */
.contact_formular .formular_section {
  display: flex;
  flex-direction: column;
  border-radius: 3px;
  margin-bottom: max(15px, min(1.92vw, 25px));
  border: 0px;
}
@media (min-width: 992px) {
  .contact_formular .formular_section {
    margin-bottom: max(35px, min(3.85vw, 50px));
  }
}

.contact_formular .formular_section:last-child {
  margin-bottom: 0;
}

input,
select,
textarea {
  padding: 0.6rem 1rem;
  border: solid 1px #eee;
  background: rgb(250, 250, 250);
  box-sizing: border-box;
}

.contact_formular .formular_section .wrapper.is_horizontal {
  display: flex;
  flex-direction: row;
}

.contact_formular .formular_section .field {
  flex: 1;
  box-sizing: border-box;
}

.contact_formular .formular_section .field label,
.contact_formular .formular_section .wrapper .heading {
  font-family: "Frutiger 55 Roman";
  font-size: 0.8rem;
  line-height: 1.52;
  font-weight: 400;
}

.contact_formular .formular_section .field input,
.contact_formular .formular_section .field select {
  width: 100%;
  outline: 0;
  box-shadow: inset 0px 0px 3px 0 rgb(10, 10, 10);
  background-color: rgb(240, 240, 240);
  box-sizing: border-box;
  padding-left: max(15px, min(1.92vw, 25px));
  padding-right: max(15px, min(1.92vw, 25px));
  border: 1px solid rgb(111, 111, 111);
  color: rgb(111, 111, 111);
  font-family: "Frutiger 55 Roman";
  font-size: 0.8rem;
  line-height: 1.52;
  font-weight: 400;
  line-height: 1.2;
}

.contact_formular .formular_section .field input:hover,
.contact_formular .formular_section .field select:hover {
  background-color: rgb(250, 250, 250);
  color: rgb(80, 80, 80);
}

.contact_formular .formular_section .field input[type=radio],
.contact_formular .formular_section .field input[type=checkbox] {
  width: auto;
  cursor: pointer;
}

.contact_formular .formular_section .field input:focus {
  border: 0;
  outline: 0;
  box-shadow: inset 0px 0px 1px 0 rgb(10, 10, 10);
  background-color: rgb(250, 250, 250);
}

.contact_formular .formular_section .field.is_double {
  flex: 1;
}

.contact_formular .section_heading {
  font-family: "Museo Slab 700";
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 400;
}

@media (min-width: 0px) and (max-width: 639px) {
  /*minimum*/
  .contact_formular .formular_section .wrapper.is_horizontal {
    flex-direction: row;
  }
}
.contact_formular .formular_section.occupation .section_heading {
  margin-bottom: max(10px, min(1.15vw, 15px));
}

.contact_formular .formular_section button,
.contact_formular .formular_section input[type=button],
.contact_formular .formular_section input[type=reset],
.contact_formular .formular_section input[type=submit] {
  box-shadow: inset 0px 0px 1px 0 rgb(243, 146, 0);
  background-color: rgb(243, 146, 0);
  color: rgb(250, 250, 250);
  cursor: pointer;
  box-sizing: border-box;
  padding: 0.6rem 1rem;
  padding-left: max(15px, min(1.92vw, 25px));
  padding-right: max(15px, min(1.92vw, 25px));
  font-family: "Frutiger 55 Roman";
  font-size: 1rem;
  line-height: 1.52;
  font-weight: 400;
}

.contact_formular .formular_section button:hover,
.contact_formular .formular_section input[type=button]:hover,
.contact_formular .formular_section input[type=reset]:hover,
.contact_formular .formular_section input[type=submit]:hover {
  background-color: rgb(250, 250, 250);
  color: rgb(243, 146, 0);
}

.contact_formular .wrapper {
  display: flex;
}

.contact_formular .wrapper.button_row {
  flex: 1 0 15%;
  flex-direction: column;
  justify-content: center;
  gap: max(10px, min(1.15vw, 15px));
  border-radius: 3px;
  text-align: center;
  font-family: "Frutiger 55 Roman";
  font-size: 1rem;
  line-height: 1.52;
  font-weight: 400;
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .contact_formular .wrapper.button_row > *:not(:last-child) {
    margin: 0 0 max(10px, min(1.15vw, 15px)) 0;
  }
  .contact_formular .wrapper.button_row > *:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .contact_formular .wrapper.button_row {
    flex-direction: row;
    justify-content: flex-end;
    gap: max(35px, min(3.85vw, 50px));
  }
  @supports (-webkit-touch-callout: none) and (not (translate: none)) {
    .contact_formular .wrapper.button_row > * {
      margin-right: max(35px, min(3.85vw, 50px)) !important;
    }
    .contact_formular .wrapper.button_row > *:last-child {
      margin-right: 0 !important;
    }
  }
}

.contact_formular .wrapper.is_horizontal {
  flex-direction: row;
  margin-left: -10px;
  margin-right: -10px;
}

.contact_formular .wrapper.is_horizontal > * {
  margin: max(10px, min(1.15vw, 15px));
}

.contact_formular .wrapper.is_vertical {
  flex-direction: column;
}

.contact_formular .wrapper.is_vertical > * {
  margin-top: max(10px, min(1.15vw, 15px));
  margin-bottom: max(10px, min(1.15vw, 15px));
}

.contact_formular .issue_text {
  width: 100%;
  height: 150px;
  resize: vertical;
  width: 100%;
  outline: 0;
  box-shadow: inset 0px 0px 3px 0 #0a0a0a;
  background-color: #f0f0f0;
  box-sizing: border-box;
  padding-left: max(15px, min(1.92vw, 25px));
  padding-right: max(15px, min(1.92vw, 25px));
  border: 1px solid rgb(111, 111, 111);
  font-family: "Frutiger 55 Roman";
  font-size: 0.8rem;
  line-height: 1.52;
  font-weight: 400;
}

.contact_formular .issue_text:hover {
  background-color: rgb(250, 250, 250);
  color: rgb(80, 80, 80);
}

.contact_formular a {
  text-decoration: underline;
}

.contact_formular a:hover {
  color: orange;
  text-decoration: underline;
}

.form_heading {
  padding-bottom: max(15px, min(1.92vw, 25px));
  color: rgb(243, 146, 0);
  font-family: "Museo Slab 700";
  font-size: 1.25rem;
  line-height: 1.2;
  font-weight: 400;
}

.data_privacy {
  display: block;
  cursor: pointer;
}

.field {
  display: block;
  cursor: pointer;
}

.grecaptcha-badge {
  z-index: 100;
  display: none;
}

.kununu_container {
  display: flex;
}
.kununu_container .kununu_awards {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  background-color: rgb(240, 240, 240);
  padding: 1rem 0;
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .kununu_container .kununu_awards > * {
    margin-right: 2rem !important;
  }
  .kununu_container .kununu_awards > *:last-child {
    margin-right: 0 !important;
  }
}
@media (min-width: 768px) {
  .kununu_container .kununu_awards {
    gap: 4rem;
  }
  @supports (-webkit-touch-callout: none) and (not (translate: none)) {
    .kununu_container .kununu_awards > * {
      margin-right: 4rem !important;
    }
    .kununu_container .kununu_awards > *:last-child {
      margin-right: 0 !important;
    }
  }
}
.kununu_container .kununu_awards .award {
  width: 120px;
  border: 2px solid rgb(243, 146, 0);
}
@media (min-width: 768px) {
  .kununu_container .kununu_awards .award {
    width: 150px;
  }
}
.kununu_container .kununu_awards .award img {
  width: 100%;
  height: 100%;
  transform: translate(10px, 10px);
}

/*!
 * Font Awesome Pro 6.7.2 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 * Copyright 2024 Fonticons, Inc.
 */
.fa {
  font-family: var(--fa-style-family, "Font Awesome 6 Pro");
  font-weight: var(--fa-style, 900);
}

.fas,
.fass,
.far,
.fasr,
.fal,
.fasl,
.fat,
.fast,
.fad,
.fadr,
.fadl,
.fadt,
.fasds,
.fasdr,
.fasdl,
.fasdt,
.fab,
.fa-solid,
.fa-regular,
.fa-light,
.fa-thin,
.fa-brands,
.fa-classic,
.fa-duotone,
.fa-sharp,
.fa-sharp-duotone,
.fa {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
}

.fas::before,
.fass::before,
.far::before,
.fasr::before,
.fal::before,
.fasl::before,
.fat::before,
.fast::before,
.fad::before,
.fadr::before,
.fadl::before,
.fadt::before,
.fasds::before,
.fasdr::before,
.fasdl::before,
.fasdt::before,
.fab::before,
.fa-solid::before,
.fa-regular::before,
.fa-light::before,
.fa-thin::before,
.fa-brands::before,
.fa-classic::before,
.fa-duotone::before,
.fa-sharp::before,
.fa-sharp-duotone::before,
.fa::before {
  content: var(--fa);
}

.fad::after,
.fa-duotone.fa-solid::after,
.fa-duotone::after,
.fadr::after,
.fa-duotone.fa-regular::after,
.fadl::after,
.fa-duotone.fa-light::after,
.fadt::after,
.fa-duotone.fa-thin::after,
.fasds::after,
.fa-sharp-duotone.fa-solid::after,
.fa-sharp-duotone::after,
.fasdr::after,
.fa-sharp-duotone.fa-regular::after,
.fasdl::after,
.fa-sharp-duotone.fa-light::after,
.fasdt::after,
.fa-sharp-duotone.fa-thin::after {
  content: var(--fa--fa);
}

.fa-classic.fa-duotone {
  font-family: "Font Awesome 6 Duotone";
}

.fass,
.fa-sharp {
  font-weight: 900;
}

.fad,
.fa-duotone {
  font-weight: 900;
}

.fasds,
.fa-sharp-duotone {
  font-weight: 900;
}

.fa-classic,
.fas,
.fa-solid,
.far,
.fa-regular,
.fal,
.fa-light,
.fat,
.fa-thin {
  font-family: "Font Awesome 6 Pro";
}

.fa-duotone,
.fad,
.fadr,
.fadl,
.fadt {
  font-family: "Font Awesome 6 Duotone";
}

.fa-brands,
.fab {
  font-family: "Font Awesome 6 Brands";
}

.fa-sharp,
.fass,
.fasr,
.fasl,
.fast {
  font-family: "Font Awesome 6 Sharp";
}

.fa-sharp-duotone,
.fasds,
.fasdr,
.fasdl,
.fasdt {
  font-family: "Font Awesome 6 Sharp Duotone";
}

.fa-1x {
  font-size: 1em;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-6x {
  font-size: 6em;
}

.fa-7x {
  font-size: 7em;
}

.fa-8x {
  font-size: 8em;
}

.fa-9x {
  font-size: 9em;
}

.fa-10x {
  font-size: 10em;
}

.fa-2xs {
  font-size: 0.625em;
  line-height: 0.1em;
  vertical-align: 0.225em;
}

.fa-xs {
  font-size: 0.75em;
  line-height: 0.0833333337em;
  vertical-align: 0.125em;
}

.fa-sm {
  font-size: 0.875em;
  line-height: 0.0714285718em;
  vertical-align: 0.0535714295em;
}

.fa-lg {
  font-size: 1.25em;
  line-height: 0.05em;
  vertical-align: -0.075em;
}

.fa-xl {
  font-size: 1.5em;
  line-height: 0.0416666682em;
  vertical-align: -0.125em;
}

.fa-2xl {
  font-size: 2em;
  line-height: 0.03125em;
  vertical-align: -0.1875em;
}

.fa-fw {
  text-align: center;
  width: 1.25em;
}

.fa-ul {
  list-style-type: none;
  margin-left: var(--fa-li-margin, 2.5em);
  padding-left: 0;
}
.fa-ul > li {
  position: relative;
}

.fa-li {
  left: calc(-1 * var(--fa-li-width, 2em));
  position: absolute;
  text-align: center;
  width: var(--fa-li-width, 2em);
  line-height: inherit;
}

.fa-border {
  border-color: var(--fa-border-color, #eee);
  border-radius: var(--fa-border-radius, 0.1em);
  border-style: var(--fa-border-style, solid);
  border-width: var(--fa-border-width, 0.08em);
  padding: var(--fa-border-padding, 0.2em 0.25em 0.15em);
}

.fa-pull-left {
  float: left;
  margin-right: var(--fa-pull-margin, 0.3em);
}

.fa-pull-right {
  float: right;
  margin-left: var(--fa-pull-margin, 0.3em);
}

.fa-beat {
  animation-name: fa-beat;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, ease-in-out);
}

.fa-bounce {
  animation-name: fa-bounce;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));
}

.fa-fade {
  animation-name: fa-fade;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));
}

.fa-beat-fade {
  animation-name: fa-beat-fade;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));
}

.fa-flip {
  animation-name: fa-flip;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, ease-in-out);
}

.fa-shake {
  animation-name: fa-shake;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, linear);
}

.fa-spin {
  animation-name: fa-spin;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 2s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, linear);
}

.fa-spin-reverse {
  --fa-animation-direction: reverse;
}

.fa-pulse,
.fa-spin-pulse {
  animation-name: fa-spin;
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, steps(8));
}

@media (prefers-reduced-motion: reduce) {
  .fa-beat,
  .fa-bounce,
  .fa-fade,
  .fa-beat-fade,
  .fa-flip,
  .fa-pulse,
  .fa-shake,
  .fa-spin,
  .fa-spin-pulse {
    animation-delay: -1ms;
    animation-duration: 1ms;
    animation-iteration-count: 1;
    transition-delay: 0s;
    transition-duration: 0s;
  }
}
@keyframes fa-beat {
  0%, 90% {
    transform: scale(1);
  }
  45% {
    transform: scale(var(--fa-beat-scale, 1.25));
  }
}
@keyframes fa-bounce {
  0% {
    transform: scale(1, 1) translateY(0);
  }
  10% {
    transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);
  }
  30% {
    transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));
  }
  50% {
    transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);
  }
  57% {
    transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));
  }
  64% {
    transform: scale(1, 1) translateY(0);
  }
  100% {
    transform: scale(1, 1) translateY(0);
  }
}
@keyframes fa-fade {
  50% {
    opacity: var(--fa-fade-opacity, 0.4);
  }
}
@keyframes fa-beat-fade {
  0%, 100% {
    opacity: var(--fa-beat-fade-opacity, 0.4);
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(var(--fa-beat-fade-scale, 1.125));
  }
}
@keyframes fa-flip {
  50% {
    transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));
  }
}
@keyframes fa-shake {
  0% {
    transform: rotate(-15deg);
  }
  4% {
    transform: rotate(15deg);
  }
  8%, 24% {
    transform: rotate(-18deg);
  }
  12%, 28% {
    transform: rotate(18deg);
  }
  16% {
    transform: rotate(-22deg);
  }
  20% {
    transform: rotate(22deg);
  }
  32% {
    transform: rotate(-12deg);
  }
  36% {
    transform: rotate(12deg);
  }
  40%, 100% {
    transform: rotate(0deg);
  }
}
@keyframes fa-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.fa-rotate-90 {
  transform: rotate(90deg);
}

.fa-rotate-180 {
  transform: rotate(180deg);
}

.fa-rotate-270 {
  transform: rotate(270deg);
}

.fa-flip-horizontal {
  transform: scale(-1, 1);
}

.fa-flip-vertical {
  transform: scale(1, -1);
}

.fa-flip-both,
.fa-flip-horizontal.fa-flip-vertical {
  transform: scale(-1, -1);
}

.fa-rotate-by {
  transform: rotate(var(--fa-rotate-angle, 0));
}

.fa-stack {
  display: inline-block;
  height: 2em;
  line-height: 2em;
  position: relative;
  vertical-align: middle;
  width: 2.5em;
}

.fa-stack-1x,
.fa-stack-2x {
  left: 0;
  position: absolute;
  text-align: center;
  width: 100%;
  z-index: var(--fa-stack-z-index, auto);
}

.fa-stack-1x {
  line-height: inherit;
}

.fa-stack-2x {
  font-size: 2em;
}

.fa-inverse {
  color: var(--fa-inverse, #fff);
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
readers do not read off random characters that represent icons */
.fa-address-card {
  --fa: "\f2bb";
  --fa--fa: "\f2bb\f2bb";
}

.fa-contact-card {
  --fa: "\f2bb";
  --fa--fa: "\f2bb\f2bb";
}

.fa-vcard {
  --fa: "\f2bb";
  --fa--fa: "\f2bb\f2bb";
}

.fa-at {
  --fa: "\@";
  --fa--fa: "\@\@";
}

.fa-backward {
  --fa: "\f04a";
  --fa--fa: "\f04a\f04a";
}

.fa-ban {
  --fa: "\f05e";
  --fa--fa: "\f05e\f05e";
}

.fa-cancel {
  --fa: "\f05e";
  --fa--fa: "\f05e\f05e";
}

.fa-building {
  --fa: "\f1ad";
  --fa--fa: "\f1ad\f1ad";
}

.fa-bullseye-arrow {
  --fa: "\f648";
  --fa--fa: "\f648\f648";
}

.fa-caret-down {
  --fa: "\f0d7";
  --fa--fa: "\f0d7\f0d7";
}

.fa-caret-left {
  --fa: "\f0d9";
  --fa--fa: "\f0d9\f0d9";
}

.fa-caret-right {
  --fa: "\f0da";
  --fa--fa: "\f0da\f0da";
}

.fa-caret-up {
  --fa: "\f0d8";
  --fa--fa: "\f0d8\f0d8";
}

.fa-chevrons-down {
  --fa: "\f322";
  --fa--fa: "\f322\f322";
}

.fa-chevron-double-down {
  --fa: "\f322";
  --fa--fa: "\f322\f322";
}

.fa-city {
  --fa: "\f64f";
  --fa--fa: "\f64f\f64f";
}

.fa-envelope {
  --fa: "\f0e0";
  --fa--fa: "\f0e0\f0e0";
}

.fa-euro-sign {
  --fa: "\f153";
  --fa--fa: "\f153\f153";
}

.fa-eur {
  --fa: "\f153";
  --fa--fa: "\f153\f153";
}

.fa-euro {
  --fa: "\f153";
  --fa--fa: "\f153\f153";
}

.fa-fax {
  --fa: "\f1ac";
  --fa--fa: "\f1ac\f1ac";
}

.fa-file-pdf {
  --fa: "\f1c1";
  --fa--fa: "\f1c1\f1c1";
}

.fa-flag-checkered {
  --fa: "\f11e";
  --fa--fa: "\f11e\f11e";
}

.fa-forward {
  --fa: "\f04e";
  --fa--fa: "\f04e\f04e";
}

.fa-globe {
  --fa: "\f0ac";
  --fa--fa: "\f0ac\f0ac";
}

.fa-house {
  --fa: "\f015";
  --fa--fa: "\f015\f015";
}

.fa-home {
  --fa: "\f015";
  --fa--fa: "\f015\f015";
}

.fa-home-alt {
  --fa: "\f015";
  --fa--fa: "\f015\f015";
}

.fa-home-lg-alt {
  --fa: "\f015";
  --fa--fa: "\f015\f015";
}

.fa-house-chimney {
  --fa: "\e3af";
  --fa--fa: "\e3af\e3af";
}

.fa-home-lg {
  --fa: "\e3af";
  --fa--fa: "\e3af\e3af";
}

.fa-location-crosshairs {
  --fa: "\f601";
  --fa--fa: "\f601\f601";
}

.fa-location {
  --fa: "\f601";
  --fa--fa: "\f601\f601";
}

.fa-location-dot {
  --fa: "\f3c5";
  --fa--fa: "\f3c5\f3c5";
}

.fa-map-marker-alt {
  --fa: "\f3c5";
  --fa--fa: "\f3c5\f3c5";
}

.fa-lock-keyhole {
  --fa: "\f30d";
  --fa--fa: "\f30d\f30d";
}

.fa-lock-alt {
  --fa: "\f30d";
  --fa--fa: "\f30d\f30d";
}

.fa-lock-keyhole-open {
  --fa: "\f3c2";
  --fa--fa: "\f3c2\f3c2";
}

.fa-lock-open-alt {
  --fa: "\f3c2";
  --fa--fa: "\f3c2\f3c2";
}

.fa-magnifying-glass {
  --fa: "\f002";
  --fa--fa: "\f002\f002";
}

.fa-search {
  --fa: "\f002";
  --fa--fa: "\f002\f002";
}

.fa-paper-plane {
  --fa: "\f1d8";
  --fa--fa: "\f1d8\f1d8";
}

.fa-phone {
  --fa: "\f095";
  --fa--fa: "\f095\f095";
}

.fa-phone-flip {
  --fa: "\f879";
  --fa--fa: "\f879\f879";
}

.fa-phone-alt {
  --fa: "\f879";
  --fa--fa: "\f879\f879";
}

.fa-play {
  --fa: "\f04b";
  --fa--fa: "\f04b\f04b";
}

.fa-question {
  --fa: "\?";
  --fa--fa: "\?\?";
}

.fa-road {
  --fa: "\f018";
  --fa--fa: "\f018\f018";
}

.fa-scale-balanced {
  --fa: "\f24e";
  --fa--fa: "\f24e\f24e";
}

.fa-balance-scale {
  --fa: "\f24e";
  --fa--fa: "\f24e\f24e";
}

.fa-section {
  --fa: "\e447";
  --fa--fa: "\e447\e447";
}

.fa-share-nodes {
  --fa: "\f1e0";
  --fa--fa: "\f1e0\f1e0";
}

.fa-share-alt {
  --fa: "\f1e0";
  --fa--fa: "\f1e0\f1e0";
}

.fa-shield-keyhole {
  --fa: "\e248";
  --fa--fa: "\e248\e248";
}

.fa-star {
  --fa: "\f005";
  --fa--fa: "\f005\f005";
}

.fa-star-shooting {
  --fa: "\e036";
  --fa--fa: "\e036\e036";
}

.fa-street-view {
  --fa: "\f21d";
  --fa--fa: "\f21d\f21d";
}

.fa-unlock-keyhole {
  --fa: "\f13e";
  --fa--fa: "\f13e\f13e";
}

.fa-unlock-alt {
  --fa: "\f13e";
  --fa--fa: "\f13e\f13e";
}

.fa-users {
  --fa: "\f0c0";
  --fa--fa: "\f0c0\f0c0";
}

.sr-only,
.fa-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.sr-only-focusable:not(:focus),
.fa-sr-only-focusable:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/*!
 * Font Awesome Pro 6.7.2 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 * Copyright 2024 Fonticons, Inc.
 */
:root, :host {
  --fa-style-family-classic: "Font Awesome 6 Pro";
  --fa-font-regular: normal 400 1em/1 "Font Awesome 6 Pro";
}

@font-face {
  font-family: "Font Awesome 6 Pro";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("../webfonts/fa-regular-400.woff2") format("woff2"), url("../webfonts/fa-regular-400.ttf") format("truetype");
}
.far,
.fa-regular {
  font-weight: 400;
}

/*!
 * Font Awesome Pro 6.7.2 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 * Copyright 2024 Fonticons, Inc.
 */
:root, :host {
  --fa-style-family-brands: "Font Awesome 6 Brands";
  --fa-font-brands: normal 400 1em/1 "Font Awesome 6 Brands";
}

@font-face {
  font-family: "Font Awesome 6 Brands";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("../webfonts/fa-brands-400.woff2") format("woff2"), url("../webfonts/fa-brands-400.ttf") format("truetype");
}
.fab,
.fa-brands {
  font-weight: 400;
}

.fa-facebook-f {
  --fa: "\f39e";
}

.fa-linkedin {
  --fa: "\f08c";
}

.fa-linkedin-in {
  --fa: "\f0e1";
}

.fa-square-facebook {
  --fa: "\f082";
}

.fa-facebook-square {
  --fa: "\f082";
}

.fa-square-x-twitter {
  --fa: "\e61a";
}

.fa-square-xing {
  --fa: "\f169";
}

.fa-xing-square {
  --fa: "\f169";
}

.fa-x-twitter {
  --fa: "\e61b";
}

.fa-xing {
  --fa: "\f168";
}

.fa-youtube {
  --fa: "\f167";
}

/*!
 * Font Awesome Pro 6.7.2 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 * Copyright 2024 Fonticons, Inc.
 */
:root, :host {
  --fa-style-family-classic: "Font Awesome 6 Pro";
  --fa-font-solid: normal 900 1em/1 "Font Awesome 6 Pro";
}

@font-face {
  font-family: "Font Awesome 6 Pro";
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url("../webfonts/fa-solid-900.woff2") format("woff2"), url("../webfonts/fa-solid-900.ttf") format("truetype");
}
.fas,
.fa-solid {
  font-weight: 900;
}

/*!
 * Font Awesome Pro 6.7.2 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 * Copyright 2024 Fonticons, Inc.
 */
:root, :host {
  --fa-style-family-classic: "Font Awesome 6 Pro";
  --fa-font-light: normal 300 1em/1 "Font Awesome 6 Pro";
}

@font-face {
  font-family: "Font Awesome 6 Pro";
  font-style: normal;
  font-weight: 300;
  font-display: block;
  src: url("../webfonts/fa-light-300.woff2") format("woff2"), url("../webfonts/fa-light-300.ttf") format("truetype");
}
.fal,
.fa-light {
  font-weight: 300;
}

/* redefine used classes 
.twitter {
  @extend %fa-icon;
  @extend .fab;

  &:before {
    content: fa-content($fa-var-twitter);
  }
}

*/
/*
	test stuff & helper
*/
.test_responsive {
  background-color: red;
  content: "phone";
}
@media (min-width: 768px) {
  .test_responsive {
    background-color: blue;
    content: "tablet";
  }
}
@media (min-width: 992px) {
  .test_responsive {
    background-color: green;
    content: "desktop";
  }
}