@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;
}

/* that are 45px at 1920 width */
/*
    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: min(1.56vw, 35px);
}

.row.wide,
.col.wide,
.container.wide,
.container.wide .row,
.container.wide .col {
  gap: min(2.34vw, 45px);
}

.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 + 7 * ((100vw - 576px) / 924) );
  line-height: 1.2;
  color: #505050;
}
@media screen and (max-width: 576px) {
  html {
    font-size: 16px;
  }
}
@media screen and (min-width: 1500px) {
  html {
    font-size: 23px;
  }
}

html, body {
  width: 100%;
  margin: 0px;
  padding: 0px;
  background-color: #fafafa;
}

body > address {
  width: 100%;
  min-width: 320px;
  max-width: 1500px;
  margin: min(1.82vw, 35px) auto;
}

body > nav {
  width: 100%;
  min-width: 320px;
  max-width: 1500px;
  margin: min(1.82vw, 35px) auto;
}

body > header {
  width: 100%;
  min-width: 320px;
  max-width: 1500px;
  margin: min(1.82vw, 35px) auto;
}

body > main {
  width: 100%;
  min-width: 320px;
  max-width: 1500px;
  margin: min(1.82vw, 35px) auto;
  display: flex;
  flex-direction: column;
  gap: min(1.82vw, 35px);
}
@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%;
}

@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: min(1.82vw, 35px) auto;
}

body > section.full_width {
  width: 100%;
  min-width: 320px;
  max-width: unset;
  background-color: #f0f0f0;
  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%;
}

/* Blog tiles Widget */
.blog_container {
  width: 100%;
  max-width: 100%;
  min-width: 320px;
  background-color: #f0f0f0;
}

.blog_tiles {
  width: 100%;
  min-width: 320px;
  max-width: 1500px;
  margin: 0 auto;
  padding-top: min(1.82vw, 35px);
  gap: min(1.82vw, 35px);
  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: 15px;
}
.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: #fafafa;
}
.blog_tiles_item {
  display: inline-block;
  width: 100%;
  color: #505050;
  box-sizing: border-box;
  position: relative;
  text-decoration: none;
  margin-bottom: min(1.82vw, 35px);
}
.blog_tiles_item > img {
  display: block;
  width: 100%;
}
.blog_tiles_item > p {
  position: absolute;
  padding: 15px;
  bottom: 35px;
  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: 35px;
  padding-left: 15px;
}

/* Design Imporvment */
/* Logo start */
.tiles_img_box {
  background-color: #fafafa;
  margin-bottom: min(1.82vw, 35px);
}

.logo_tiles {
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 15px;
  padding-bottom: 0px;
  justify-content: left;
  max-width: 290px;
}
@media (min-width: 768px) {
  .logo_tiles {
    padding-left: min(5vw, 15px);
    padding-right: min(5vw, 15px);
  }
}

/* Logo End */
/* Image responsive satrted */
.blog_tiles_item > img {
  max-height: 200px;
  object-fit: cover;
  object-position: 50% 20%;
}
@media (min-width: 740px) {
  .blog_tiles_item > img {
    max-height: 230px;
    object-fit: cover;
    object-position: 50% 20%;
  }
}
@media (min-width: 768px) {
  .blog_tiles_item > img {
    max-height: 300px;
    object-fit: cover;
    object-position: 50% 20%;
  }
}

/*1170 x 2532 px*/
/* Image responsive end */
/* set color based on body class */
.blog_tiles_item > p {
  background: #f0f0f0;
}

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;
  padding: 20px;
}

.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 .page-item {
  width: 2.3rem;
  height: 2.3rem;
  background-color: #6f6f6f;
  box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.35);
}

.product-pagination .page-item.active {
  background-color: #f39200;
}

.product-pagination .page-item .page-link {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  color: white;
}
.product-pagination .page-item .page-link:hover {
  background-color: #f39200;
}

.portal_main {
  display: flex;
  flex-direction: column;
  row-gap: min(1.82vw, 35px);
  overflow: hidden;
}
@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: min(1.82vw, 35px);
  }
}
@media (min-width: 768px) {
  .portal_main .page_hero {
    height: min(38.38vh, 414.5px);
    min-height: 290px;
  }
}

.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.gray {
  order: 4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: min(3.9vw, 75px);
  /*&::after{
      background: linear-gradient(90deg, rgba(color.$grey_dark, 1) 5%, rgba(color.$grey_dark, 0.7) 40%,rgba(111, 111, 111, 0) 60%), rgba(color.$grey_dark, 0.4);
  }*/
}
.portal_main .page_hero.gray::after {
  background: linear-gradient(90deg, #6f6f6f 5%, rgba(111, 111, 111, 0.8) 15%, rgba(111, 111, 111, 0.4) 60%), rgba(111, 111, 111, 0.7);
}
@media (min-width: 768px) {
  .portal_main .page_hero.gray {
    order: 2;
    z-index: 100;
  }
  .portal_main .page_hero.gray::after {
    content: "";
    width: 150%;
    height: calc(100% + 1px);
    position: absolute;
    top: -0.5px;
    left: 0;
    z-index: 10;
    transform-origin: bottom right;
    border-left: min(1.82vw, 35px) solid white;
    transform: skewX(14deg);
  }
}

.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.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: 4;
    z-index: 100;
  }
  .portal_main .page_hero.green::after {
    content: "";
    width: 150%;
    height: calc(100% + 1px);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    transform-origin: top right;
    border-left: min(1.82vw, 35px) solid white;
    transform: skewX(-14deg);
  }
}

/* hero_list container */
.portal_main .hero_list_container {
  padding: min(1.82vw, 35px) 0;
  color: #fafafa;
  z-index: 20;
}

.portal_main .hero_list_header {
  font-family: "Museo Slab 700";
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 400;
}

.portal_main .hero_list .hero_list_item {
  font-family: "Frutiger 55 Roman";
  font-size: 0.8rem;
  line-height: 1.52;
  font-weight: 400;
  line-height: 1.2;
}

.portal_main .hero_list_item:hover .hero_list_link {
  color: #f39200;
}

.portal_main .hero_list_item:hover .hero_list_icon {
  color: #fafafa;
}

.portal_main .hero_list_icon {
  display: inline-block;
  color: #f39200;
  margin-top: 0.3rem;
  margin-bottom: 0.3rem;
}
@media (min-width: 768px) {
  .portal_main .hero_list_icon {
    margin-top: 0.1rem;
    margin-bottom: 0.1rem;
    padding-right: 5px;
  }
}

/* 
  portal_content
*/
.portal_main .portal_content {
  position: absolute;
  left: min(3.9vw, 75px);
  bottom: min(1.8vw, 35px);
  text-align: left;
  color: #fafafa;
  z-index: 20;
}
.portal_main .portal_content.job_offers {
  top: 50%;
  left: auto;
  right: min(3.9vw, 75px);
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: min(0.87vw, 15px);
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .portal_main .portal_content.job_offers > *:not(:last-child) {
    margin: 0 0 min(0.87vw, 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: #f39200;
}
.portal_main .portal_content.job_offers .title:hover .img_item_icon {
  color: #f39200;
}

.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;
}

.portal_main .img_item_icon {
  color: #fafafa;
  transform: translateY(3px);
}

/* page_hero_third */
.page_hero_container_third {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: min(1.82vw, 35px);
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .page_hero_container_third > *:not(:last-child) {
    margin: 0 0 min(1.82vw, 35px) 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: #f39200;
    animation: fade_illusion 0.3s ease forwards;
    animation-delay: 0.275s;
  }
  @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.grey .page_hero:after {
  background: linear-gradient(35deg, rgba(111, 111, 111, 0.7) 30%, rgba(111, 111, 111, 0.1) 60%);
}

.page_hero_container_third.orange .page_hero:after {
  background: linear-gradient(35deg, rgba(243, 146, 0, 0.5) 30%, rgba(243, 146, 0, 0.1) 60%);
}

.page_hero_container_third.blue .page_hero:after {
  background: linear-gradient(35deg, rgba(65, 80, 110, 0.8) 30%, rgba(65, 80, 110, 0.2) 60%);
}

.page_hero_container_third.green .page_hero:after {
  background: linear-gradient(35deg, rgba(55, 113, 87, 0.8) 30%, rgba(55, 113, 87, 0) 60%);
}

.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: min(3.9vw, 75px);
  left: min(3.9vw, 75px);
  color: #fafafa;
  justify-content: left;
  max-width: 60%;
  z-index: 10;
  font-family: "Museo Slab 700";
  font-size: 1.74rem;
  line-height: 1.2;
  font-weight: 400;
}
@media (min-width: 992px) {
  .page_hero_container_third .hero_title {
    top: auto;
    bottom: min(3.9vw, 75px);
  }
}

.page_hero_container_third .subtitle {
  font-family: "Museo Slab 700";
  font-size: 1.39rem;
  line-height: 1.2;
  font-weight: 400;
  z-index: 10;
  opacity: 0.4;
  justify-content: left;
}

/*
    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: min(1.82vw, 35px);
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .page_hero_container_third .hero_list_image_container > * {
    margin-right: min(1.82vw, 35px);
    margin-bottom: min(1.82vw, 35px);
  }
  .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 min(1.82vw, 35px) 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: min(1.82vw, 35px);
  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.8) 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.8) 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_caption {
  position: absolute;
  bottom: min(1vw, 10px);
  left: min(1.82vw, 35px);
  display: block;
  z-index: 20;
  color: #fafafa;
  font-family: "Frutiger 55 Roman";
  font-size: 1rem;
  line-height: 1.52;
  font-weight: 400;
}
.page_hero_container_third .hero_list_image_container .img_item_icon {
  display: inline-block;
  margin-right: min(1vw, 10px);
}

/*
    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: min(1vw, 10px);
  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: min(1vw, 10px);
    margin-bottom: min(1vw, 10px);
  }
  .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 min(1vw, 10px) 0;
    }
    .page_hero_container_third .hero_list_link_container > *:last-child {
      margin-bottom: 0;
    }
  }
}

.page_hero_container_third .hero_list_link_container > *:not(script) {
  flex: 1;
  min-width: 45%;
  display: flex;
  min-height: 2.4rem;
  position: relative;
  padding-left: 15px;
}
@media (min-width: 768px) {
  .page_hero_container_third .hero_list_link_container > *:not(script) {
    padding-left: 0;
  }
}

.page_hero_container_third .hero_list_link_container .text_item {
  background-color: #e2e2e2;
  align-items: center;
}
.page_hero_container_third .hero_list_link_container .text_item.active {
  background-color: #f39200;
}
.page_hero_container_third .hero_list_link_container .text_item:hover {
  background-color: #6f6f6f;
  color: #fafafa;
}
.page_hero_container_third .hero_list_link_container .text_item .text_item_icon {
  display: inline-block;
  margin-right: min(1vw, 10px);
}
@media (min-width: 768px) {
  .page_hero_container_third .hero_list_link_container .text_item .text_item_icon {
    margin-left: min(1.82vw, 35px);
  }
}
.page_hero_container_third .hero_list_link_container .text_item:hover .text_item_icon {
  color: #fafafa;
}

.page_hero_container_third.orange .hero_list_link_container .text_item:hover {
  background-color: #f39200;
  color: #fafafa;
}

.page_hero_container_third.blue .hero_list_link_container .text_item:hover {
  background-color: #41506e;
  color: #fafafa;
}

.page_hero_container_third.green .hero_list_link_container .text_item:hover {
  background-color: #377157;
  color: #fafafa;
}

/* 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;
}
@media (min-width: 992px) {
  .page_hero_full {
    height: min(26vw, 500px);
  }
}

/* hero image with gradient */
.page_hero_full .page_hero {
  position: relative;
  width: 100%;
}
@media (min-width: 992px) {
  .page_hero_full .page_hero {
    flex: 70;
  }
}

.page_hero_full .hero_image {
  display: block;
  object-fit: cover;
  width: 100%;
  height: min(40vw, 600px);
}
@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) 30%, rgba(250, 250, 250, 0) 60%);
}
@media (min-width: 992px) {
  .page_hero_full .page_hero:after {
    background: linear-gradient(35deg, rgba(10, 10, 10, 0.3) 30%, rgba(250, 250, 250, 0) 60%);
  }
}

.page_hero_full.gradient_orange .page_hero:after {
  background: linear-gradient(35deg, rgba(243, 146, 0, 0.5) 30%, rgba(243, 146, 0, 0.1) 60%);
}

.page_hero_full.gradient_blue .page_hero:after {
  background: linear-gradient(35deg, rgba(65, 80, 110, 0.8) 30%, rgba(65, 80, 110, 0.2) 60%);
}

.page_hero_full.gradient_green .page_hero:after {
  background: linear-gradient(35deg, rgba(55, 113, 87, 0.8) 30%, rgba(55, 113, 87, 0) 60%);
}

/* hero list container */
.page_hero_full .hero_list_container {
  color: #fafafa;
  text-align: left;
  background-color: #fafafa;
  color: #505050;
}
@media (min-width: 768px) {
  .page_hero_full .hero_list_container {
    top: min(1.82vw, 35px);
    color: #505050;
  }
}
@media (min-width: 992px) {
  .page_hero_full .hero_list_container {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(111, 111, 111, 0.6);
    padding: min(1.82vw, 35px);
  }
}

.page_hero_full .hero_list {
  display: flex;
  flex-direction: column;
  gap: min(0.52vw, 10px);
  list-style: none;
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .page_hero_full .hero_list > *:not(:last-child) {
    margin: 0 0 min(0.52vw, 10px) 0;
  }
  .page_hero_full .hero_list > *:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .page_hero_full .hero_list {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
@media (min-width: 992px) {
  .page_hero_full .hero_list {
    flex-direction: column;
  }
}

.hero_list_item {
  position: relative;
  flex: 1;
  min-width: 45%;
  display: flex;
}
@media (min-width: 768px) {
  .hero_list_item {
    flex-direction: column;
    flex-wrap: wrap;
    padding-top: 0px;
    padding-bottom: 0px;
  }
}
@media (min-width: 992px) {
  .hero_list_item {
    background-color: inherit;
  }
}

.page_hero_full .hero_list_header {
  padding: min(1.82vw, 35px);
  font-family: "Museo Slab 700";
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 400;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 768px) {
  .page_hero_full .hero_list_header {
    padding-left: min(1.82vw, 35px);
  }
}
@media (min-width: 992px) {
  .page_hero_full .hero_list_header {
    padding: 0px;
    color: #fafafa;
  }
}

.page_hero_full .hero_list_icon {
  display: inline-block;
  color: #f39200;
  margin-left: min(1vw, 20px);
  margin-right: min(1vw, 10px);
}
@media (min-width: 992px) {
  .page_hero_full .hero_list_icon {
    margin-left: 0;
  }
}

.page_hero_full .hero_list_link {
  text-decoration: none;
  color: inherit;
  line-height: 2.4rem;
}

.page_hero_full .hero_list_link {
  background-color: #f0f0f0;
  width: 100%;
  height: 100%;
  padding-left: 15px;
  padding-right: 15px;
  font-family: "Frutiger 55 Roman";
  font-size: 1rem;
  line-height: 1.52;
  font-weight: 400;
  line-height: 2.4rem;
}
@media (min-width: 768px) {
  .page_hero_full .hero_list_link {
    padding-left: min(1.82vw, 35px);
  }
}
@media (min-width: 992px) {
  .page_hero_full .hero_list_link {
    font-family: "Frutiger 55 Roman";
    font-size: 0.8rem;
    line-height: 1.52;
    font-weight: 400;
    line-height: 1.2;
    background-color: transparent;
    color: #fafafa;
  }
}

.page_hero_full .hero_list_item:hover .hero_list_link {
  color: #f39200;
}

.page_hero_full .hero_list_item:hover .hero_list_icon {
  color: #505050;
}

.page_hero_full .hero_list_item:hover .hero_list_icon {
  color: #505050;
}
@media (min-width: 992px) {
  .page_hero_full .hero_list_item:hover .hero_list_icon {
    color: #fafafa;
  }
}

.page_hero_full .hero_title_box {
  color: #fafafa;
  background-color: #6f6f6f;
  text-align: left;
  padding: min(1.82vw, 35px);
}
.page_hero_full .hero_title_box .headline, .page_hero_full .hero_title_box .subline {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.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;
}
@media (min-width: 992px) {
  .page_hero_full .hero_title_box {
    position: absolute;
    bottom: min(3.9vw, 75px);
    left: 0;
    transform: translateX(-1.9rem);
    padding-left: calc(1.9rem * 2);
    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.box_orange .hero_title_box {
  background-color: #f39200;
}
@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: #41506e;
}
@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: #377157;
}
@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: min(3.9vw, 75px);
  left: min(3.9vw, 75px);
  color: #fafafa;
  z-index: 10;
  max-width: calc(100% - (2 * min(3.9vw, 75px)));
}
.page_hero_full .hero_title .headline, .page_hero_full .hero_title .subline {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 1;
}
.page_hero_full .hero_title .headline {
  font-family: "Museo Slab 700";
  font-size: 1.74rem;
  line-height: 1.2;
  font-weight: 400;
}
@media (min-width: 992px) {
  .page_hero_full .hero_title {
    max-width: min(45vw, 800px);
  }
}

.page_hero_full .subline {
  font-family: "Museo Slab 700";
  font-size: 1.39rem;
  line-height: 1.2;
  font-weight: 400;
  opacity: 0.4;
}

/* 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: #f39200;
  padding-bottom: 15px;
  padding-left: 15px;
}

.focus_tiles {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: min(0.8vw, 20px);
}

.focus_item {
  display: flex;
  background-color: #f0f0f0;
  display: flex;
  flex-direction: column;
  flex: 1 0 100%;
}
.focus_item a {
  display: block;
  width: 100%;
  height: 100%;
  padding: min(0.78vw, 15px) min(1.82vw, 35px);
}
@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: #f39200;
  color: #fafafa;
}

.focus_item:hover .focus_icon {
  background-color: #f39200;
  color: #fafafa;
}

.focus_icon {
  display: inline-block;
  color: #f39200;
  margin-top: 0.3rem;
  margin-bottom: 0.3rem;
}
@media (min-width: 768px) {
  .focus_icon {
    margin-top: 0.1rem;
    margin-bottom: 0.1rem;
    padding-right: 5px;
  }
}

.focus_tiles_link {
  text-decoration: none;
}

/* page_footer*/
body > footer {
  background-color: #6f6f6f;
  color: #fafafa;
  min-width: 320px;
}

.page_footer {
  width: 100%;
  min-width: 320px;
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: min(1.82vw, 75px);
  padding: min(5vw, 35px);
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .page_footer > *:not(:last-child) {
    margin: 0 0 min(1.82vw, 75px) 0;
  }
  .page_footer > *:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 580px) {
  .page_footer {
    flex-direction: row;
    flex-wrap: wrap;
  }
  @supports (-webkit-touch-callout: none) and (not (translate: none)) {
    .page_footer > * {
      margin-right: min(1.82vw, 75px);
      margin-bottom: min(1.82vw, 75px);
    }
    .page_footer > *:last-child {
      margin-right: 0;
    }
  }
}
@media (min-width: 880px) {
  .page_footer {
    flex-wrap: nowrap;
  }
  @supports (-webkit-touch-callout: none) and (not (translate: none)) {
    .page_footer > * {
      margin-right: min(1.82vw, 75px) !important;
    }
    .page_footer > *:last-child {
      margin-right: 0 !important;
    }
  }
}

.page_footer .ft_item_button {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
@media (max-width: 830px) {
  .page_footer .ft_item_button {
    width: 100%;
  }
}
.page_footer .ft_item_button i {
  font-size: 2.5rem;
  margin-right: min(2vw, 15px);
}

.page_footer .ft_item_button {
  align-items: center;
  justify-content: left;
}
@media (min-width: 768px) {
  .page_footer .ft_item_button {
    align-items: center;
    justify-content: center;
  }
}

.page_footer .ft_item_button:hover {
  color: #f39200;
}

.page_footer .ft_item_list {
  display: flex;
  flex-direction: column;
  flex: 1 0 auto;
  gap: 20px;
  font-family: "Frutiger 55 Roman";
  font-size: 0.8rem;
  line-height: 1.52;
  font-weight: 400;
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .page_footer .ft_item_list > *:not(:last-child) {
    margin: 0 0 20px 0;
  }
  .page_footer .ft_item_list > *:last-child {
    margin-bottom: 0;
  }
}

.page_footer .ft_item_links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: "Frutiger 55 Roman";
  font-size: 0.8rem;
  line-height: 1.52;
  font-weight: 400;
  a-color: #f39200;
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .page_footer .ft_item_links > * {
    margin-right: 10px !important;
  }
  .page_footer .ft_item_links > *:last-child {
    margin-right: 0 !important;
  }
}
@media (min-width: 567px) {
  .page_footer .ft_item_links {
    flex-direction: row;
  }
  @supports (-webkit-touch-callout: none) and (not (translate: none)) {
    .page_footer .ft_item_links > *:not(:last-child) {
      margin: 0 0 10px 0;
    }
    .page_footer .ft_item_links > *:last-child {
      margin-bottom: 0;
    }
  }
}
@media (min-width: 880px) {
  .page_footer .ft_item_links {
    flex-direction: column;
  }
  @supports (-webkit-touch-callout: none) and (not (translate: none)) {
    .page_footer .ft_item_links > *:not(:last-child) {
      margin: 0 0 10px 0;
    }
    .page_footer .ft_item_links > *:last-child {
      margin-bottom: 0;
    }
  }
}
@media (min-width: 992px) {
  .page_footer .ft_item_links {
    flex-direction: column;
  }
}
.page_footer .ft_item_links i {
  margin-right: min(2vw, 15px);
}

body > nav {
  display: flex;
  flex-direction: column;
  align-items: left;
  margin: min(1.82vw, 35px) auto;
  padding-left: min(1.82vw, 35px);
}
@media (min-width: 800px) {
  body > nav {
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  body > nav {
    flex-wrap: nowrap;
    justify-content: space-between;
    padding-left: 0;
  }
}

body > nav > .nav_menu {
  display: flex;
  flex-direction: column;
  align-items: left;
  gap: min(0.52vw, 10px);
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  body > nav > .nav_menu > *:not(:last-child) {
    margin: 0 0 min(0.52vw, 10px) 0;
  }
  body > nav > .nav_menu > *:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 992px) {
  body > nav > .nav_menu {
    flex-direction: row;
    flex-wrap: wrap;
  }
  @supports (-webkit-touch-callout: none) and (not (translate: none)) {
    body > nav > .nav_menu > * {
      margin-right: min(0.52vw, 10px);
      margin-bottom: min(0.52vw, 10px);
    }
    body > nav > .nav_menu > *:last-child {
      margin-right: 0;
    }
  }
}

body > nav > * {
  margin-left: min(1.82vw, 35px);
}

body > nav .nav_list {
  display: flex;
  align-items: center;
}

@media (min-width: 320px) {
  body > nav .nav_list_item {
    padding: 0px 10px;
    cursor: pointer;
    white-space: nowrap;
    border-bottom: 2px solid #6f6f6f;
    color: #505050;
  }
}

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.55rem;
  line-height: 2rem;
}
@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 #323232;
  color: #323232;
  padding: 0px 0px;
  margin: 0px 10px;
}

body > nav .nav_list_item.orange.selected,
body > nav .nav_list_item.orange:hover {
  border-bottom: 2px solid #f39200;
  color: #f39200;
  padding: 0px 0px;
  margin: 0px 10px;
}

body > nav .nav_list_item.blue.selected,
body > nav .nav_list_item.blue:hover {
  border-bottom: 2px solid #41506e;
  color: #41506e;
  padding: 0px 0px;
  margin: 0px 10px;
}

body > nav .nav_list_item.green.selected,
body > nav .nav_list_item.green:hover {
  border-bottom: 2px solid #377157;
  color: #377157;
  padding: 0px 0px;
  margin: 0px 10px;
}

/* nav_top */
.nav_top {
  position: sticky;
  top: 0;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #e2e2e2;
  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 min(1.82vw, 35px);
}
@media (min-width: 992px) {
  .nav_top .nav_container {
    padding: 0 min(1.82vw, 35px) 0 0;
  }
}

.nav_top .logo_cube img {
  display: inline-block;
  visibility: hidden;
}

.nav_top .language:hover,
.nav_top .email:hover,
.nav_top .phone:hover,
.nav_top .facebook:hover,
.nav_top .twitter:hover,
.nav_top .xing:hover,
.nav_top .linkedin:hover {
  color: #f39200;
}

.nav_top .nav_contact {
  display: flex;
  gap: min(1.82vw, 35px);
  align-items: center;
  justify-content: right;
  color: #6f6f6f;
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .nav_top .nav_contact > * {
    margin-right: min(1.82vw, 35px) !important;
  }
  .nav_top .nav_contact > *:last-child {
    margin-right: 0 !important;
  }
}
@media (min-width: 768px) {
  .nav_top .nav_contact {
    gap: min(4.82vw, 150px);
  }
}
@media (min-width: 992px) {
  .nav_top .nav_contact {
    gap: min(1.82vw, 35px);
  }
}

/* standard case simple icons */
.nav_top .nav_contact > a {
  display: inline-block;
  height: 100%;
  line-height: 100%;
}
.nav_top .nav_contact > a .icon {
  font-size: 1.2rem;
}
.nav_top .nav_contact > a .caption {
  font-size: 0.8rem;
}

/* special case mail + phone */
.nav_contact .error,
.nav_contact .email,
.nav_contact .language,
.nav_contact .phone {
  font-family: "Frutiger 55 Roman";
  font-size: 1rem;
  line-height: 1.52;
  font-weight: 400;
  white-space: nowrap;
  text-transform: capitalize;
}

.nav_contact .email i,
.nav_contact .language i,
.nav_contact .phone i {
  margin-right: 5px;
}

/*notice_bar_branch*/
.notice_bar_container {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: min(1.82vw, 35px);
  overflow: hidden;
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .notice_bar_container > *:not(:last-child) {
    margin: 0 0 min(1.82vw, 35px) 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 {
  flex: 1 1 15%;
  font-family: "Museo Slab 700";
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 400;
  padding: min(1.82vw, 35px);
  justify-content: space-evenly;
  text-align: center;
  min-height: 80px;
  align-items: center;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .notice_bar_container .notice_bar_caption {
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  .notice_bar_container .notice_bar_caption {
    align-items: center;
  }
}

/* element list */
.notice_bar_container > .notice_bar_list {
  display: flex;
  flex-wrap: wrap;
  padding-left: 15px;
  padding-bottom: 15px;
  padding-top: 15px;
  padding-right: 0px;
}
@media (min-width: 768px) {
  .notice_bar_container > .notice_bar_list {
    flex-direction: row;
    padding: min(1.82vw, 35px);
  }
}

.notice_bar_container .list_item {
  flex: 0 1 50%;
  color: #fafafa;
  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: 0 1 33%;
  }
}

.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: #e2e2e2;
  text-decoration: underline;
}

.notice_bar_container .list_link:hover .list_icon {
  color: #f39200;
}

.notice_bar_container > .orange .list_link:hover {
  color: #505050;
}

.notice_bar_container > .orange .list_link:hover .list_icon {
  color: #505050;
}

/* element notice_bar_icon */
.notice_bar_container .notice_bar_icon {
  flex: 1 1 80px;
  padding: min(1.82vw, 35px);
  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: 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: #f39200;
  font-weight: bold;
  content: "› ";
  /* add chevron (U+203A) and nbsp (U+00A0)*/
}
.notice_bar_container .notice_bar_teaser a:hover {
  color: #f39200;
}
@media (min-width: 768px) {
  .notice_bar_container .notice_bar_teaser {
    padding: min(1.82vw, 35px);
  }
}

.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: #fce0b7;
  color: #f39200;
}

.notice_bar_container > .notice_bar_list {
  background-color: #f39200;
  color: #fafafa;
}

.notice_bar_container > .notice_bar_icon {
  background-color: #6f6f6f;
  color: #fafafa;
  font-family: "Museo Slab 700";
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 400;
}

.notice_bar_container > .notice_bar_teaser {
  background-color: #e2e2e2;
  color: #505050;
}

.notice_bar_container > .orange {
  background-color: #f39200;
  color: #fafafa;
}

.notice_bar_container > .orange_medium {
  background-color: #fce0b7;
  color: #505050;
}

.notice_bar_container > .blue {
  background-color: #41506e;
  color: #fafafa;
}

.notice_bar_container > .blue_medium {
  background-color: #d9dcd8;
  color: #0a0a0a;
}

.notice_bar_container > .green {
  background-color: #377157;
  color: #fafafa;
}

.notice_bar_container > .green_medium {
  background-color: #d7e3dd;
  color: #0a0a0a;
}

.notice_bar_container > .grey {
  background-color: #6f6f6f;
  color: #fafafa !important;
}

.notice_bar_container > .grey_medium {
  background-color: #e2e2e2;
  color: #0a0a0a;
}

.notice_bar_container > .grey_light_left {
  background-color: #f0f0f0;
  padding: min(1.82vw, 35px);
  padding-left: 15px;
  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: #f0f0f0;
  transform-origin: bottom right;
  transform: skewX(-14deg);
}

.notice_bar_container > .grey_light_left {
  background-color: #f0f0f0;
}
@media (min-width: 768px) {
  .notice_bar_container > .grey_light_left {
    padding: min(1.82vw, 35px);
    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: #f0f0f0;
    transform-origin: bottom right;
    transform: skewX(-14deg);
  }
}

.notice_bar_container > .grey_light_right {
  background-color: #f0f0f0;
}
@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: #f0f0f0;
    transform-origin: top left;
    transform: skewX(-14deg);
  }
}

.notice_bar_container > .grey_dark_left {
  background-color: #6f6f6f;
  color: #fafafa !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: #6f6f6f;
    transform-origin: bottom right;
    transform: skewX(-14deg);
  }
}

.notice_bar_container > .grey_dark_right {
  background-color: #6f6f6f;
  color: #fafafa !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: #6f6f6f;
    transform-origin: top left;
    transform: skewX(-14deg);
  }
}

/* higlight_bar */
.highlight_container {
  display: flex;
  flex-direction: column;
  gap: min(1.82vw, 35px);
  position: relative;
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .highlight_container > *:not(:last-child) {
    margin: 0 0 min(1.82vw, 35px) 0;
  }
  .highlight_container > *:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .highlight_container {
    flex-direction: row;
  }
  @supports (-webkit-touch-callout: none) and (not (translate: none)) {
    .highlight_container > * {
      margin: 0 min(1.82vw, 35px) min(1.82vw, 35px) 0 !important;
    }
    .highlight_container > *:nth-child(3n+3) {
      margin: 0 0 min(1.82vw, 35px) 0 !important;
    }
    .highlight_container > *:nth-last-child(-n+3) {
      margin: 0 min(1.82vw, 35px) 0 0 !important;
    }
    .highlight_container > *:last-child {
      margin: 0 0 0 0 !important;
    }
  }
}

.highlight_container .highlight_section {
  background-color: #fafafa;
  display: flex;
  position: relative;
  flex-direction: column;
  width: 100%;
  color: #0a0a0a;
}

.highlight_container .highlight_section:before {
  content: "";
  position: absolute;
  top: 0;
  width: 2px;
  height: min(3vw, 35px);
  left: 10px;
}
@media (min-width: 768px) {
  .highlight_container .highlight_section:before {
    left: min(0.8vw, 20px);
  }
}

.highlight_container .business_unit_title {
  margin-top: min(0.9vw, 15px);
  text-transform: uppercase;
  font-family: "Frutiger 55 Roman";
  font-size: 0.6rem;
  line-height: 1.2;
  font-weight: 500;
  padding-left: 15px;
}
@media (min-width: 768px) {
  .highlight_container .business_unit_title {
    margin-left: min(1.82vw, 35px);
    margin-right: min(1.82vw, 35px);
    padding-left: 0;
  }
}

.highlight_container .highlight_text {
  flex: 1 0 auto;
  padding-left: 15px;
  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 {
    margin-left: min(1.82vw, 35px);
    margin-right: min(1.82vw, 35px);
    padding-left: 0;
  }
}

.highlight_container .text_colored {
  margin-top: 0;
  margin-bottom: 0.4rem;
}

.highlight_container .text_plain {
  color: #6f6f6f;
}

.highlight_container .highlight_icon {
  justify-content: right;
  display: flex;
  font-size: 1.3rem;
  padding-right: min(1.04vw, 20px);
  padding-bottom: min(1.04vw, 20px);
}

/* color variations */
.highlight_container .highlight_section.orange:before {
  background-color: #f39200;
}

.highlight_container .highlight_section.blue:before {
  background-color: #41506e;
}

.highlight_container .highlight_section.green:before {
  background-color: #377157;
}

.highlight_container .highlight_section.orange .business_unit_title,
.highlight_container .highlight_section.orange .text_colored,
.highlight_container .highlight_section.orange .highlight_icon > i {
  color: #f39200;
}

.highlight_container .highlight_section.blue .business_unit_title,
.highlight_container .highlight_section.blue .text_colored,
.highlight_container .highlight_section.blue .highlight_icon > i {
  color: #41506e;
}

.highlight_container .highlight_section.green .business_unit_title,
.highlight_container .highlight_section.green .text_colored,
.highlight_container .highlight_section.green .highlight_icon > i {
  color: #377157;
}

/* hovers effects */
.highlight_container .highlight_section:hover {
  background-color: #6f6f6f;
  color: #fafafa;
}

.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:hover:before {
  background-color: #fafafa;
}

.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: #fafafa;
}

/* 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;
}

/* only show first p of the content box - click show_more so see them all*/
.content_box .show_first > p {
  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 {
  padding: min(5vw, 100px);
  box-sizing: border-box;
  color: #505050;
  background-color: #f0f0f0;
  font-family: "Frutiger 55 Roman";
  font-size: 1rem;
  line-height: 1.52;
  font-weight: 400;
}
.content_box h1 {
  color: #f39200;
  margin-top: 0;
  margin: 0 0 1.74rem;
  font-family: "Museo Slab 700";
  font-size: 1.74rem;
  line-height: 1.2;
  font-weight: 400;
}
.content_box h1 + p.subtitle {
  margin-top: -1.74rem;
}
.content_box h2 {
  margin: 2.78rem 0 1.39rem;
  font-family: "Museo Slab 700";
  font-size: 1.39rem;
  line-height: 1.2;
  font-weight: 400;
}
.content_box h2:first-child {
  color: #f39200;
  margin-top: 0;
  margin: 0 0 1.39rem;
}
.content_box h2:first-child + p {
  margin-top: -1.39rem;
}
.content_box h2 + p.subtitle {
  margin-top: -1.39rem;
}
.content_box h3 {
  margin: 2.5rem 0 1.25rem;
  font-family: "Museo Slab 700";
  font-size: 1.25rem;
  line-height: 1.2;
  font-weight: 400;
}
.content_box h3:first-child {
  color: #f39200;
  margin-top: 0;
  margin: 0 0 1.25rem;
}
.content_box h3:first-child + p {
  margin-top: -1.25rem;
}
.content_box h4 {
  margin: 2.44rem 0 1.22rem;
  font-family: "Frutiger 55 Roman";
  font-size: 1.22rem;
  line-height: 1.2;
  font-weight: 400;
}
.content_box h4:first-child {
  color: #f39200;
  margin-top: 0;
  margin: 0 0 1.22rem;
}
.content_box h4:first-child + p {
  margin-top: -1.22rem;
}
.content_box h5 {
  margin: 2.2rem 0 1.1rem;
  font-family: "Frutiger 55 Roman";
  font-size: 1.1rem;
  line-height: 1.2;
  font-weight: 400;
}
.content_box h5:first-child {
  color: #f39200;
  margin-top: 0;
  margin: 0 0 1.1rem;
}
.content_box h5:first-child + p {
  margin-top: -1.1rem;
}
.content_box p {
  margin-bottom: 1rem;
}
.content_box p:last-child {
  margin-bottom: 0;
}
.content_box a.align_right {
  display: block;
  text-align: right;
}
.content_box strong {
  color: #323232;
  font-weight: bold;
}
.content_box small {
  color: #323232;
  font-family: "Frutiger 55 Roman";
  font-size: 0.8rem;
  line-height: 1.52;
  font-weight: 400;
}
.content_box em {
  color: #323232;
  font-style: italic;
}
.content_box a {
  color: #323232;
  text-decoration: none;
}
.content_box a:before {
  color: #f39200;
  font-weight: bold;
  content: "› ";
  /* add chevron (U+203A) and nbsp (U+00A0)*/
}
.content_box a:hover {
  color: #f39200;
}
.content_box ul {
  list-style-type: square;
  margin-left: min(5vw, 45px);
  margin-bottom: 1rem;
  margin-top: 1rem;
}
.content_box ol {
  list-style-type: decimal;
  margin-left: min(5vw, 45px);
  margin-bottom: 1rem;
  margin-top: 1rem;
}
.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: #505050;
  background-color: #fce0b7;
}
.content_box.green {
  color: #505050;
  background-color: #d7e3dd;
}
.content_box.blue {
  color: #505050;
  background-color: #d9dcd8;
}

.review_btn_container {
  padding: min(5vw, 100px);
  text-align: center;
}
.review_btn_container .review_btn {
  display: block;
  background-color: #f39200;
  color: #fafafa;
  font-family: "Museo Slab 700";
  font-size: 1.39rem;
  line-height: 1.2;
  font-weight: 400;
  padding: min(1.82vw, 15px) min(2vw, 35px);
}
.review_btn_container .review_btn:hover {
  color: #f39200;
  background-color: #fafafa;
  border: 0.13rem solid #f39200;
}

.customer_tiles_container {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  background-color: #f0f0f0;
}

.customer_tiles_container .customer_tiles {
  width: 100%;
  min-width: 320px;
  max-width: 1500px;
  margin: 0 auto;
  padding-top: min(1.82vw, 35px);
  gap: min(1.82vw, 35px);
  column-count: 1;
}
@media (min-width: 576px) {
  .customer_tiles_container .customer_tiles {
    column-count: 2;
  }
}
@media (min-width: 992px) {
  .customer_tiles_container .customer_tiles {
    column-count: 3;
  }
}
@media (min-width: 1500px) {
  .customer_tiles_container .customer_tiles {
    column-count: 5;
  }
}
.customer_tiles_container .customer_tiles_item {
  display: inline-block;
  width: 100%;
  color: #505050;
  box-sizing: border-box;
  position: relative;
  text-decoration: none;
  margin-bottom: min(1.82vw, 35px);
  background-color: #fafafa;
  overflow: hidden;
  height: 300px;
}
@media (min-width: 576px) {
  .customer_tiles_container .customer_tiles_item {
    height: min(25vw, 250px);
  }
}
.customer_tiles_container .customer_tiles_item > header {
  padding: 15px;
  font-family: "Museo Slab 700";
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 400;
}
.customer_tiles_container .customer_tiles_item > img {
  display: block;
  width: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  height: 250px;
}
@media (min-width: 576px) {
  .customer_tiles_container .customer_tiles_item > img {
    height: min(20vw, 200px);
  }
}

/* button_bar */
.button_bar {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: min(1.82vw, 35px);
  margin-top: 20px;
  margin-bottom: 20px;
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .button_bar > * {
    margin-right: min(1.82vw, 35px);
    margin-bottom: min(1.82vw, 35px);
  }
  .button_bar > *:last-child {
    margin-right: 0;
  }
}
@media (min-width: 768px) {
  .button_bar {
    flex-direction: row;
    margin-top: 0;
    margin-bottom: 0;
  }
}

.button_bar > .group {
  flex: 1;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  gap: min(1.82vw, 35px);
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .button_bar > .group > * {
    margin-right: min(1.82vw, 35px) !important;
  }
  .button_bar > .group > *:last-child {
    margin-right: 0 !important;
  }
}

.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: #e2e2e2;
  line-height: 2.4rem;
  width: 3rem;
  padding-right: 0.21rem;
  text-align: center;
  position: relative;
}

.button_bar .button > .icon.clear {
  background-color: #e2e2e2;
}

.button_bar .button:hover > .icon.clear {
  color: #f39200;
}

.button_bar .button > .icon.grey {
  background-color: #6f6f6f;
  color: #f0f0f0;
}

.button_bar .button:hover > .icon.grey {
  background-color: #f39200;
  color: #f0f0f0;
}

.button_bar .button > .icon.orange {
  background-color: #f39200;
  color: #fafafa;
}

.button_bar .button:hover > .icon.orange {
  background-color: #6f6f6f;
  color: #fafafa;
}

.button_bar .button > .lable {
  flex: 1;
  display: block;
  background-color: #f0f0f0;
  white-space: nowrap;
  padding-left: min(1.82vw, 35px);
  padding-right: min(1.82vw, 35px);
  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: #f0f0f0;
    transform-origin: top left;
    transform: skewX(-14deg);
  }
}

.button_bar .button:hover > .lable {
  color: #f39200;
}

.card_container_gradient {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: min(1.82vw, 35px);
  width: 100%;
  min-height: min(9.35vw, 160px);
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .card_container_gradient > * {
    margin-right: min(1.82vw, 35px);
    margin-bottom: min(1.82vw, 35px);
  }
  .card_container_gradient > *:last-child {
    margin-right: 0;
  }
}
@media (min-width: 768px) {
  .card_container_gradient {
    justify-content: center;
  }
}
@media (min-width: 992px) {
  .card_container_gradient {
    margin: 0 auto;
  }
}

.card_container_gradient .card_section {
  position: relative;
  flex: 0 1 100%;
  min-height: min(13.35vw, 160px);
  padding-left: min(1.82vw, 35px);
  line-height: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .card_container_gradient .card_section {
    flex: 1 0 30%;
    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;
}

.card_container_gradient .card_title_icon {
  padding-right: 5px;
}

.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;
}

.card_container_gradient .orange {
  background: linear-gradient(0deg, rgba(243, 146, 0, 0.9) 10%, rgba(243, 146, 0, 0.6) 60%);
  color: #fafafa;
}

.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: #fafafa;
}

.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: #fafafa;
}

.card_container_gradient .green:hover:after {
  background-color: rgba(55, 113, 87, 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: min(1vw, 10px);
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .card_image > *:not(:last-child) {
    margin: 0 0 min(1vw, 10px) 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: min(1vw, 10px);
      margin-bottom: min(1vw, 10px);
    }
    .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: min(1.82vw, 35px);
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .card_image .card_image_container > *:not(:last-child) {
    margin: 0 0 min(1.82vw, 35px) 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: min(1.82vw, 35px);
      margin-bottom: min(1.82vw, 35px);
    }
    .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: #fafafa;
  bottom: min(1.82vw, 35px);
  left: min(1.82vw, 35px);
}
@media (min-width: 768px) {
  .card_image .image_title {
    bottom: min(1.82vw, 35px);
    left: min(1.82vw, 35px);
  }
}

.card_image .card_section_icon {
  display: inline-block;
  margin-right: min(1vw, 10px);
}

/* aside_box */
.aside_box {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  gap: min(1.82vw, 35px);
  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 min(1.82vw, 35px) 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: min(1.82vw, 35px);
      margin-bottom: min(1.82vw, 35px);
    }
    .aside_box > *:last-child {
      margin-right: 0;
    }
  }
  .aside_box .job_searchbox_container {
    width: 100%;
  }
}
@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 min(1.82vw, 35px) 0;
    }
    .aside_box > *:last-child {
      margin-bottom: 0;
    }
  }
}

/* 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: #f0f0f0;
  }
}

/* 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: #e2e2e2;
  color: #505050;
  overflow: hidden;
  /* widget elements */
  /* color variations */
  /* hover effect */
  /* strech to max height */
}
.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: min(1.82vw, 35px);
  padding-left: min(1.82vw, 35px);
  font-family: "Museo Slab 700";
  font-size: 1.39rem;
  line-height: 1.2;
  font-weight: 400;
}
@media (min-width: 768px) {
  .aside_box .aside_image .item_caption {
    text-align: left;
    padding-left: min(1.82vw, 35px);
    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;
  margin: min(1.82vw, 35px);
  padding-left: min(1.82vw, 35px);
  font-family: "Museo Slab 700";
  font-size: 1.39rem;
  line-height: 1.2;
  font-weight: 400;
}
@media (min-width: 768px) {
  .aside_box .aside_image .item_subtitle {
    text-align: left;
    padding-left: min(1.82vw, 35px);
  }
}
.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%, black 40%, white 100%);
  -webkit-mask-image: linear-gradient 0deg, rgba(0, 0, 0, 0) 0%, black 40%, white 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%, black 40%, white 100%);
    -webkit-mask-image: linear-gradient 0deg, rgba(0, 0, 0, 0) 0%, black 40%, white 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%, black 80%, white 100%);
    -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, black 80%, white 100%);
  }
}
.aside_box .aside_image.bottom .item_image {
  mask-image: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, black 40%, white 100%);
  -webkit-mask-image: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, black 40%, white 100%);
}
.aside_box .aside_image.orange {
  color: #fafafa;
  background-color: #f39200;
}
.aside_box .aside_image.green {
  color: #fafafa;
  background-color: #377157;
}
.aside_box .aside_image.blue {
  color: #fafafa;
  background-color: #41506e;
}
.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: #fafafa;
  opacity: 0.5;
  text-align: center;
  margin: min(1.82vw, 35px);
  font-family: "Museo Slab 700";
  font-size: 1.74rem;
  line-height: 1.2;
  font-weight: 400;
}
.aside_box .aside_cloud .item_tags {
  margin: min(1.82vw, 35px);
  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: #0a0a0a;
  background-color: #fafafa;
  opacity: 0.5;
}
.aside_box .aside_cloud {
  background-color: #6f6f6f;
}
.aside_box .aside_cloud a {
  color: #fafafa;
}
.aside_box .aside_cloud.orange {
  color: #fafafa;
  background-color: #f39200;
}
.aside_box .aside_cloud.green {
  color: #fafafa;
  background-color: #377157;
}
.aside_box .aside_cloud.blue {
  color: #fafafa;
  background-color: #41506e;
}

.list_landing_pages,
.aside_box .aside_list {
  background-color: #f0f0f0;
  color: #505050;
  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: 15px;
}
@media (min-width: 992px) {
  .list_landing_pages > .list_title,
.aside_box .aside_list > .list_title {
    padding-left: min(1.82vw, 35px);
  }
}
.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 #6f6f6f;
  min-height: min(2.8rem, 55px);
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: min(0.87vw, 15px);
}
.list_landing_pages .list_items a > i,
.aside_box .aside_list .list_items a > i {
  padding-left: 15px;
  margin-right: min(1vw, 10px);
}
@media (min-width: 768px) {
  .list_landing_pages .list_items a > i,
.aside_box .aside_list .list_items a > i {
    padding-left: min(1.82vw, 35px);
  }
}
.list_landing_pages > .list_items a:hover,
.aside_box .aside_list > .list_items a:hover {
  color: #fafafa;
  background-color: #6f6f6f;
}
.list_landing_pages.orange > .list_title,
.aside_box .aside_list.orange > .list_title {
  color: #f39200;
}
.list_landing_pages.orange a,
.aside_box .aside_list.orange a {
  border-top: 1px solid #f39200;
}
.list_landing_pages.orange a:last-child,
.aside_box .aside_list.orange a:last-child {
  border-bottom: 1px solid #f39200;
}
.list_landing_pages.orange a:hover,
.aside_box .aside_list.orange a:hover {
  color: #fafafa;
  background-color: #f39200;
}

/* aside_box_icons */
aside .aside_icons {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-left: 15px;
  /* widget elements */
  /* color variations */
}
@media (min-width: 992px) {
  aside .aside_icons {
    padding: min(1.82vw, 35px);
    flex-direction: column;
    align-items: flex-start;
    row-gap: min(0.78vw, 15px);
  }
  @supports (-webkit-touch-callout: none) and (not (translate: none)) {
    aside .aside_icons > *:not(:last-child) {
      margin: 0 0 min(0.78vw, 15px) 0;
    }
    aside .aside_icons > *:last-child {
      margin-bottom: 0;
    }
  }
}
aside .aside_icons > .title {
  color: #fafafa;
  font-family: "Museo Slab 700";
  font-size: 1.25rem;
  line-height: 1.2;
  font-weight: 400;
}
aside .aside_icons > .icons {
  display: flex;
  flex-direction: row;
  gap: 3rem;
  color: #fafafa;
  font-size: 1.8rem;
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  aside .aside_icons > .icons > * {
    margin-right: 3rem !important;
  }
  aside .aside_icons > .icons > *:last-child {
    margin-right: 0 !important;
  }
}
@media (min-width: 992px) {
  aside .aside_icons > .icons {
    justify-content: flex-start;
    gap: min(1.82vw, 35px);
  }
  @supports (-webkit-touch-callout: none) and (not (translate: none)) {
    aside .aside_icons > .icons > * {
      margin-right: min(1.82vw, 35px) !important;
    }
    aside .aside_icons > .icons > *:last-child {
      margin-right: 0 !important;
    }
  }
}
aside .aside_icons a {
  display: block;
  flex: 0;
}
aside .aside_icons a > * {
  pointer-events: none;
}
aside .aside_icons a:hover {
  color: #0a0a0a;
}
aside .aside_icons {
  background-color: #6f6f6f;
}
aside .aside_icons.orange {
  background-color: #f39200;
}
aside .aside_icons.orange.light {
  background-color: #f0f0f0;
}
aside .aside_icons.orange.light > .title {
  color: #f39200;
}
aside .aside_icons.orange.light > .icons {
  color: #505050;
}
aside .aside_icons.orange.light > .icons a:hover {
  color: #f39200;
}
aside .aside_icons.green {
  background-color: #377157;
}
aside .aside_icons.green.light {
  background-color: #f0f0f0;
}
aside .aside_icons.green.light > .title {
  color: #377157;
}
aside .aside_icons.green.light > .icons {
  color: #505050;
}
aside .aside_icons.green.light > .icons a:hover {
  color: #377157;
}
aside .aside_icons.blue {
  background-color: #41506e;
}
aside .aside_icons.blue.light {
  background-color: #f0f0f0;
}
aside .aside_icons.blue.light > .title {
  color: #41506e;
}
aside .aside_icons.blue.light > .icons {
  color: #505050;
}
aside .aside_icons.blue.light > .icons a:hover {
  color: #41506e;
}
aside .aside_icons.grey.light {
  background-color: #f0f0f0;
}
aside .aside_icons.grey.light > .title {
  color: #505050;
}
aside .aside_icons.grey.light > .icons {
  color: #505050;
}

/* aside_box_icons */
.aside_company {
  display: none;
}
@media (min-width: 992px) {
  .aside_company {
    display: flex;
    flex-direction: column;
    gap: min(1.82vw, 35px);
    background-color: #f0f0f0;
    padding: min(1.82vw, 35px);
    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 min(1.82vw, 35px) 0;
    }
    .aside_company > *:last-child {
      margin-bottom: 0;
    }
  }
}

/* aside_cloud */
.aside_box .related_offers .job_results_container {
  display: flex;
  flex-direction: column;
  gap: min(0.78vw, 15px);
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .aside_box .related_offers .job_results_container > *:not(:last-child) {
    margin: 0 0 min(0.78vw, 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: #f0f0f0;
  color: #f39200;
  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: #e2e2e2;
  white-space: nowrap;
  padding-left: min(1.82vw, 35px);
  padding-right: min(1.82vw, 35px);
  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: #6f6f6f;
  color: #fafafa;
  line-height: 2.4rem;
  width: 2.4rem;
  text-align: center;
}
.aside_box .more_offers_btn:hover .btn_label {
  color: #f39200;
}
.aside_box .more_offers_btn:hover .btn_icon {
  background-color: #f39200;
}

/*job_searchbox and job_hero */
.job_searchbox_container {
  flex: 1 1 auto;
  margin-bottom: min(1.82vw, 35px);
  text-align: center;
  clear: both;
}
@media (min-width: 768px) {
  .job_searchbox_container {
    margin-bottom: 0px;
  }
}
.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: #505050;
  background-color: #e2e2e2;
  border-right: none;
  outline: none;
  font-family: "Museo Slab 700";
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 400;
}
.job_searchbox_container input.focus_style:focus {
  background-color: #fafafa;
}
.job_searchbox_container button {
  padding: 9px 20px;
  background: #6f6f6f;
  color: #fafafa;
  font-size: 1rem;
  cursor: pointer;
}
.job_searchbox_container button:hover {
  background-color: #6f6f6f;
  color: #f39200;
}
@media (min-width: 992px) {
  .job_searchbox_container button:hover {
    background-color: #f39200;
    color: #fafafa;
  }
}

/* hero image with gradient */
.job_hero {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 1.65rem auto;
  position: relative;
  background-color: #f39200;
  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 {
  color: #505050;
  text-align: left;
  padding: min(1.82vw, 35px);
  padding-bottom: 2rem;
}
.job_hero .job_hero_title .headline, .job_hero .job_hero_title .subline {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.job_hero .job_hero_title .headline {
  font-family: "Museo Slab 700";
  font-size: 1.74rem;
  line-height: 1.2;
  font-weight: 400;
  color: #fafafa;
}
.job_hero .job_hero_title .subline {
  font-family: "Frutiger 55 Roman";
  font-size: 0.8rem;
  line-height: 1.52;
  font-weight: 400;
}
@media (min-width: 992px) {
  .job_hero .job_hero_title {
    color: #fafafa;
    position: absolute;
    bottom: min(3.9vw, 75px);
    left: 0;
    padding-top: 30px;
    transform: translateX(-2rem);
    padding-left: calc(2rem * 2);
    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.6);
    transform-origin: bottom right;
    transform: skewX(-14deg);
  }
}
.job_hero .job_hero_title .job_searchbox_container input {
  width: min(30vw, 600px);
}

/* job_filter portal*/
.job_filter_container {
  padding-left: 0px;
}
@media (min-width: 768px) {
  .job_filter_container {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    padding-left: min(1.82vw, 35px);
    flex: 1 30%;
  }
}

.job_filter {
  background-color: #f0f0f0;
  color: #505050;
  /* color variations */
}
@media (min-width: 992px) {
  .job_filter {
    width: auto;
    flex-wrap: wrap;
    display: flex;
    width: 100%;
  }
}
.job_filter .job_filter.green {
  padding: 10px;
  line-height: 1.6rem;
}
.job_filter a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: min(10vw, 80px);
  padding: 5px min(1.82vw, 35px);
}
.job_filter a {
  overflow: hidden;
  text-overflow: ellipsis;
}
.job_filter a:hover {
  color: #fafafa;
  background-color: #6f6f6f;
}
.job_filter.orange > .job_list_title {
  color: #f39200;
}
.job_filter.orange a:hover {
  color: #fafafa;
  background-color: #f39200;
}
.job_filter.green > .job_list_title {
  color: #377157;
}
.job_filter.green a:hover {
  color: #fafafa;
  background-color: #377157;
}
.job_filter.blue > .job_list_title {
  color: #41506e;
}
.job_filter.blue a {
  border-top: 1px solid #41506e;
}
.job_filter.blue a:hover {
  color: #fafafa;
  background-color: #41506e;
}

/* job_Filter */
.job_filter_main {
  display: flex;
  flex-direction: column;
  gap: min(0.7vw, 15px);
  margin-bottom: min(1.82vw, 35px);
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .job_filter_main > *:not(:last-child) {
    margin: 0 0 min(0.7vw, 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: #e2e2e2;
}
.job_filter_item.mouseover {
  background-color: #e2e2e2 !important;
  color: #505050 !important;
}

body.hasHover .job_filter_item:hover {
  background-color: #f39200;
  color: #fafafa;
}

.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: min(0.70vw, 15px);
  transform: translateY(-50%);
  background-color: #fafafa;
  border: solid 1px #f39200;
  padding: min(0.70vw, 8px) 18px min(0.70vw, 8px) 5px;
  text-transform: capitalize;
  color: #f39200;
  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: #f39200;
  color: #fafafa;
}

.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: min(0.78vw, 15px) min(1.82vw, 35px);
}
@media (min-width: 768px) {
  .job_filter_title {
    padding-top: 0;
  }
}

.job_filter_secondary {
  background-color: #e2e2e2;
  margin-top: min(1.82vw, 35px);
  margin-bottom: min(1.82vw, 35px);
  position: relative;
}

.job_filter_details {
  display: flex;
  flex-direction: column;
  gap: min(0.7vw, 15px);
  margin-bottom: min(1.82vw, 35px);
  margin-top: min(1.82vw, 35px);
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .job_filter_details > *:not(:last-child) {
    margin: 0 0 min(0.7vw, 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: #0a0a0a;
  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 > main {
  display: flex;
  flex-direction: column;
  flex: 1 70%;
  position: relative;
  overflow: hidden;
}
@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: #e2e2e2;
  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: #6f6f6f;
  color: #fafafa;
  padding: min(2.82vw, 35px);
  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: 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: min(0.78vw, 15px);
  padding: min(1.82vw, 35px);
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .job_container main .job_filter_panel .job_filter_panel_main > * {
    margin-right: min(0.78vw, 15px);
    margin-bottom: min(0.78vw, 15px);
  }
  .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 {
  flex: 1 1 100%;
  margin-top: min(0.78vw, 15px);
}
.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: #fafafa;
  color: #505050;
  padding: min(0.78vw, 15px) min(1.82vw, 35px);
  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: #f39200;
  color: #fafafa;
}
.job_container main .job_filter_panel .job_filter_panel_main .filter_option .cancel_filter_option {
  display: block;
  font-size: 0.6rem;
  position: absolute;
  right: 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: #fafafa;
    color: #505050;
    font-family: "Frutiger 55 Roman";
    font-size: 1rem;
    line-height: 1.52;
    font-weight: 400;
    padding: 0 min(1.82vw, 35px) min(0.78vw, 15px);
  }
  .job_container main .job_filter_panel .job_filter_panel_title .close_filter_panel_btn {
    display: none;
  }
  .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: #f39200 !important;
  color: #fafafa;
}

.job_container main .job_results_container {
  width: 100%;
  height: 100%;
  margin-bottom: min(1.82vw, 35px);
}
.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: #fafafa;
  padding-bottom: min(0.78vw, 15px);
  padding-left: min(1.82vw, 35px);
}
.job_container main .job_results_container .no_job_results_container .no_job_results_message {
  flex-grow: 1;
  padding: min(1.82vw, 35px);
  background-color: #e2e2e2;
  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: min(1.56vw, 30px);
}
@media (min-width: 768px) {
  .job_container main .job_results_container {
    margin-bottom: min(0.78vw, 15px);
  }
}

.job_container .job_result_list {
  display: flex;
  flex-direction: column;
  gap: min(0.78vw, 15px);
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .job_container .job_result_list > *:not(:last-child) {
    margin: 0 0 min(0.78vw, 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 min(0.78vw, 15px) min(0.78vw, 15px) 0 !important;
    }
    .job_container .job_result_list > *:nth-child(2n+2) {
      margin: 0 0 min(0.78vw, 15px) 0 !important;
    }
    .job_container .job_result_list > *:nth-last-child(-n+2) {
      margin: 0 min(0.78vw, 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: #e2e2e2;
  line-height: 4rem;
  width: 2.4rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.job_result_title {
  font-family: "Frutiger 55 Roman";
  font-size: 1rem;
  line-height: 1.52;
  font-weight: 400;
  padding-bottom: min(0.78vw, 15px);
  padding-left: min(1.82vw, 35px);
}

.job_result_list .job_result_button > .job_icon.clear {
  background-color: #e2e2e2;
}

.job_result_list .job_result_button:hover > .job_icon.clear {
  color: #f39200;
}

.job_result_list .job_result_button > .job_icon.grey {
  flex: 0 0 15%;
  max-width: 75px;
  background-color: #6f6f6f;
  color: #fafafa;
}

body.hasHover .job_result_list .job_result_button:hover > .job_icon.grey {
  background-color: #f39200;
  color: #f0f0f0;
}

.job_result_list .job_result_button > .job_lable {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: min(1.82vw, 35px);
  box-sizing: border-box;
  padding: min(1.82vw, 35px);
  background-color: #f0f0f0;
  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 min(1.82vw, 35px) 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.2;
  font-weight: 400;
}
@media (min-width: 768px) {
  .job_result_list .job_result_button > .job_lable {
    padding: min(0.78vw, 15px) min(1.82vw, 35px);
    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: #f39200;
}

.job_item_icon {
  padding-right: 5px;
}

.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: #e2e2e2;
  padding: 10px;
  color: #505050;
  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: #e2e2e2;
  color: #505050;
  font-size: 0.8rem;
  cursor: pointer;
}
.job_pagination_container .pagination_btn:disabled {
  color: #6f6f6f;
}
@media (min-width: 992px) {
  .job_pagination_container {
    justify-content: flex-end;
  }
  .job_pagination_container .pagination_btn:disabled {
    background-color: #f0f0f0;
    color: #6f6f6f;
  }
}

body.hasHover .pagination_btn:hover {
  background-color: #f39200;
  color: #fafafa;
}

/* job_content_main Details */
.job_content {
  display: flex;
  flex-direction: column;
  gap: min(1.82vw, 35px);
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .job_content > *:not(:last-child) {
    margin: 0 0 min(1.82vw, 35px) 0;
  }
  .job_content > *:last-child {
    margin-bottom: 0;
  }
}

.job_content_box {
  padding: min(5vw, 100px);
  box-sizing: border-box;
  color: #505050;
  background-color: #f0f0f0;
  font-family: "Frutiger 55 Roman";
  font-size: 1rem;
  line-height: 1.52;
  font-weight: 400;
}
.job_content_box header {
  margin-bottom: 3.5rem;
}
.job_content_box h1 {
  color: #f39200;
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-family: "Museo Slab 700";
  font-size: 1.74rem;
  line-height: 1.2;
  font-weight: 400;
}
.job_content_box h2 {
  margin: 2.78rem 0 1.39rem;
  font-family: "Museo Slab 700";
  font-size: 1.39rem;
  line-height: 1.2;
  font-weight: 400;
}
.job_content_box h3 {
  margin: 2.5rem 0 1.25rem;
  font-family: "Museo Slab 700";
  font-size: 1.25rem;
  line-height: 1.2;
  font-weight: 400;
}
.job_content_box h4 {
  margin: 2.44rem 0 1.22rem;
  font-family: "Frutiger 55 Roman";
  font-size: 1.22rem;
  line-height: 1.2;
  font-weight: 400;
}
.job_content_box h5 {
  margin: 2.2rem 0 1.1rem;
  font-family: "Frutiger 55 Roman";
  font-size: 1.1rem;
  line-height: 1.2;
  font-weight: 400;
}
.job_content_box p {
  margin-bottom: 1rem;
}
.job_content_box strong {
  color: #323232;
  font-weight: bold;
}
.job_content_box small {
  display: block;
  color: #323232;
  margin-bottom: 1rem;
  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: #323232;
  font-style: italic;
}
.job_content_box a {
  color: #323232;
  text-decoration: none;
}
.job_content_box a:before {
  color: #f39200;
  font-weight: bold;
  content: "› ";
  /* add chevron (U+203A) and nbsp (U+00A0)*/
}
.job_content_box a:hover {
  color: #f39200;
}
.job_content_box ul {
  list-style-type: square;
  margin-left: min(5vw, 45px);
  margin-bottom: 1rem;
  margin-top: 1rem;
}
.job_content_box ol {
  list-style-type: decimal;
  margin-left: min(5vw, 45px);
  margin-bottom: 1rem;
  margin-top: 1rem;
}
.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 {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: min(1.82vw, 35px);
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .job_button_bar > * {
    margin-right: min(1.82vw, 35px);
    margin-bottom: min(1.82vw, 35px);
  }
  .job_button_bar > *:last-child {
    margin-right: 0;
  }
}

.job_button_bar > .job_group {
  flex: 1;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-around;
  gap: min(1.82vw, 35px);
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .job_button_bar > .job_group > * {
    margin-right: min(1.82vw, 35px) !important;
  }
  .job_button_bar > .job_group > *:last-child {
    margin-right: 0 !important;
  }
}

.job_button_bar .job_button {
  flex: 1;
  display: flex;
  flex-direction: row;
}

.job_button_bar .job_button {
  margin-top: min(1.82vw, 35px);
}
.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: #e2e2e2;
  width: 2.4rem;
  line-height: 2.4rem;
  text-align: center;
}
.job_button_bar .job_button > .job_icon.sloppy {
  width: 3rem;
  padding-right: 5px;
}
.job_button_bar .job_button > .job_icon i {
  pointer-events: none;
}

.job_button_bar .job_button > .job_icon.clear {
  background-color: #e2e2e2;
}

.job_button_bar .job_button:hover > .job_icon.clear {
  color: #f39200;
}

.job_button_bar .job_button > .job_icon.grey {
  background-color: #6f6f6f;
  color: #f0f0f0;
}

.job_button_bar .job_button:hover > .job_icon.grey {
  background-color: #f39200;
  color: #f0f0f0;
}

.job_button_bar .job_button > .job_lable {
  flex: 1;
  display: block;
  background-color: #f0f0f0;
  white-space: nowrap;
  padding-left: min(1.82vw, 35px);
  padding-right: min(1.82vw, 35px);
  z-index: 10;
  position: relative;
  font-family: "Museo Slab 700";
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 400;
  line-height: 2.4rem;
}
.job_button_bar .job_button > .job_lable::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 1px;
  left: 0;
  z-index: -1;
  background-color: #f0f0f0;
  transform-origin: left top;
  transform: skewX(-14deg);
}

.job_button_bar .job_button:hover > .job_lable {
  color: #f39200;
}

.standalone_jobs_container {
  display: flex;
  flex-direction: column;
}
.standalone_jobs_container .job_results_container {
  width: 100%;
  height: 100%;
  margin-bottom: min(1.82vw, 35px);
}
.standalone_jobs_container .job_results_container .job_result_list {
  display: flex;
  flex-direction: column;
  gap: min(0.78vw, 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 min(0.78vw, 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 min(0.78vw, 15px) min(0.78vw, 15px) 0 !important;
    }
    .standalone_jobs_container .job_results_container .job_result_list > *:nth-child(2n+2) {
      margin: 0 0 min(0.78vw, 15px) 0 !important;
    }
    .standalone_jobs_container .job_results_container .job_result_list > *:nth-last-child(-n+2) {
      margin: 0 min(0.78vw, 15px) 0 0 !important;
    }
    .standalone_jobs_container .job_results_container .job_result_list > *:last-child {
      margin: 0 0 0 0 !important;
    }
  }
}
@media (min-width: 768px) {
  .standalone_jobs_container .job_results_container {
    margin-bottom: min(0.78vw, 15px);
  }
}

.job_social_media_share {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: min(1.82vw, 35px);
  /* color variations */
}
@media (min-width: 768px) {
  .job_social_media_share {
    flex-direction: column;
    align-items: flex-start;
    row-gap: min(0.78vw, 15px);
  }
  @supports (-webkit-touch-callout: none) and (not (translate: none)) {
    .job_social_media_share > *:not(:last-child) {
      margin: 0 0 min(0.78vw, 15px) 0;
    }
    .job_social_media_share > *:last-child {
      margin-bottom: 0;
    }
  }
}
.job_social_media_share > .title {
  color: #fafafa;
  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: #fafafa;
  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: min(1.82vw, 35px);
  }
  @supports (-webkit-touch-callout: none) and (not (translate: none)) {
    .job_social_media_share > .icons > * {
      margin-right: min(1.82vw, 35px) !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: #0a0a0a;
}
.job_social_media_share {
  background-color: #6f6f6f;
}
.job_social_media_share.orange {
  background-color: #f39200;
}
.job_social_media_share.orange.light {
  background-color: #f0f0f0;
}
.job_social_media_share.orange.light > .title {
  color: #f39200;
}
.job_social_media_share.orange.light > .icons {
  color: #505050;
}
.job_social_media_share.orange.light > .icons a:hover {
  color: #f39200;
}
.job_social_media_share.green {
  background-color: #377157;
}
.job_social_media_share.green.light {
  background-color: #f0f0f0;
}
.job_social_media_share.green.light > .title {
  color: #377157;
}
.job_social_media_share.green.light > .icons {
  color: #505050;
}
.job_social_media_share.green.light > .icons a:hover {
  color: #377157;
}
.job_social_media_share.blue {
  background-color: #41506e;
}
.job_social_media_share.blue.light {
  background-color: #f0f0f0;
}
.job_social_media_share.blue.light > .title {
  color: #41506e;
}
.job_social_media_share.blue.light > .icons {
  color: #505050;
}
.job_social_media_share.blue.light > .icons a:hover {
  color: #41506e;
}
.job_social_media_share.grey.light {
  background-color: #f0f0f0;
}
.job_social_media_share.grey.light > .title {
  color: #505050;
}
.job_social_media_share.grey.light > .icons {
  color: #505050;
}

.contact_formular {
  width: 100%;
}

.contact_formular.two_third {
  flex: 70 1 70%;
}

/* Form section */
.contact_formular .formular_section {
  display: flex;
  flex-direction: column;
  background-color: #f0f0f0;
  padding: min(1.4vw, 20px);
  /*margin-bottom: 30px;*/
  border-radius: 3px;
  padding: min(5vw, 100px);
  padding-top: min(2.08vw, 40px);
  padding-bottom: min(2.08vw, 40px);
  border: 0px;
}

input, select, textarea {
  padding: 0.6rem 1rem;
  border: solid 1px #eee;
  background: #fafafa;
  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 1px 0 #0a0a0a;
  background-color: #f0f0f0;
  box-sizing: border-box;
  padding-left: min(1.82vw, 35px);
  padding-right: min(1.82vw, 35px);
  border: 1px solid #e2e2e2;
  color: #6f6f6f;
  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: #fafafa;
  color: #505050;
}

.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 #0a0a0a;
  background-color: #fafafa;
}

.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: 15px;
}

.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 #f39200;
  background-color: #f39200;
  color: #fafafa;
  cursor: pointer;
  box-sizing: border-box;
  padding-left: min(1.82vw, 35px);
  padding-right: min(1.82vw, 35px);
  font-family: "Frutiger 55 Roman";
  font-size: 1rem;
  line-height: 1.52;
  font-weight: 400;
}

.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: #fafafa;
  color: #f39200;
}

.contact_formular .wrapper {
  display: flex;
}

.contact_formular .wrapper.button_row {
  flex: 1 0 15%;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  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 10px 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: min(2.6vw, 50px);
  }
  @supports (-webkit-touch-callout: none) and (not (translate: none)) {
    .contact_formular .wrapper.button_row > * {
      margin-right: min(2.6vw, 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: 10px;
}

.contact_formular .wrapper.is_vertical {
  flex-direction: column;
}

.contact_formular .wrapper.is_vertical > * {
  margin-top: 10px;
  margin-bottom: 10px;
}

.contact_formular .issue_text {
  width: 100%;
  height: 150px;
  resize: vertical;
  width: 100%;
  outline: 0;
  box-shadow: inset 0px 0px 1px 0 #0a0a0a;
  background-color: #f0f0f0;
  box-sizing: border-box;
  padding-left: min(1.82vw, 35px);
  padding-right: min(1.82vw, 35px);
  border: 1px solid #d7e3dd;
  font-family: "Frutiger 55 Roman";
  font-size: 0.8rem;
  line-height: 1.52;
  font-weight: 400;
}

.contact_formular .issue_text:hover {
  background-color: #fafafa;
  color: #505050;
}

.contact_formular a {
  text-decoration: underline;
}

.contact_formular a:hover {
  color: orange;
  text-decoration: underline;
}

.form_heading {
  padding-bottom: min(1.82vw, 35px);
  color: #f39200;
  font-family: "Museo Slab 700";
  font-size: 1.74rem;
  line-height: 1.2;
  font-weight: 400;
}

.data_privacy {
  display: block;
  cursor: pointer;
}

.field {
  display: block;
  cursor: pointer;
}

/*!
 * Font Awesome Pro 5.15.4 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 */
.fa,
.fas,
.far,
.fal,
.fad,
.fab {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

.fa-lg {
  font-size: 1.3333333333em;
  line-height: 0.75em;
  vertical-align: -0.0667em;
}

.fa-xs {
  font-size: 0.75em;
}

.fa-sm {
  font-size: 0.875em;
}

.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-fw {
  text-align: center;
  width: 1.25em;
}

.fa-ul {
  list-style-type: none;
  margin-left: 2.5em;
  padding-left: 0;
}
.fa-ul > li {
  position: relative;
}

.fa-li {
  left: -2em;
  position: absolute;
  text-align: center;
  width: 2em;
  line-height: inherit;
}

.fa-border {
  border: solid 0.08em #eee;
  border-radius: 0.1em;
  padding: 0.2em 0.25em 0.15em;
}

.fa-pull-left {
  float: left;
}

.fa-pull-right {
  float: right;
}

.fa.fa-pull-left,
.fas.fa-pull-left,
.far.fa-pull-left,
.fal.fa-pull-left,
.fab.fa-pull-left {
  margin-right: 0.3em;
}
.fa.fa-pull-right,
.fas.fa-pull-right,
.far.fa-pull-right,
.fal.fa-pull-right,
.fab.fa-pull-right {
  margin-left: 0.3em;
}

.fa-spin {
  animation: fa-spin 2s infinite linear;
}

.fa-pulse {
  animation: fa-spin 1s infinite steps(8);
}

@keyframes fa-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  transform: rotate(90deg);
}

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  transform: rotate(180deg);
}

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  transform: rotate(270deg);
}

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  transform: scale(-1, 1);
}

.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  transform: scale(1, -1);
}

.fa-flip-both, .fa-flip-horizontal.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  transform: scale(-1, -1);
}

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical,
:root .fa-flip-both {
  filter: none;
}

.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%;
}

.fa-stack-1x {
  line-height: inherit;
}

.fa-stack-2x {
  font-size: 2em;
}

.fa-inverse {
  color: #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:before {
  content: "";
}

.fa-alarm-clock:before {
  content: "";
}

.fa-angle-double-down:before {
  content: "";
}

.fa-at:before {
  content: "";
}

.fa-backward:before {
  content: "";
}

.fa-ban:before {
  content: "";
}

.fa-bug:before {
  content: "";
}

.fa-building:before {
  content: "";
}

.fa-bullseye-arrow:before {
  content: "";
}

.fa-caret-down:before {
  content: "";
}

.fa-caret-left:before {
  content: "";
}

.fa-caret-right:before {
  content: "";
}

.fa-caret-up:before {
  content: "";
}

.fa-envelope:before {
  content: "";
}

.fa-euro-sign:before {
  content: "";
}

.fa-exclamation:before {
  content: "";
}

.fa-facebook-f:before {
  content: "";
}

.fa-facebook-square:before {
  content: "";
}

.fa-forward:before {
  content: "";
}

.fa-globe:before {
  content: "";
}

.fa-home:before {
  content: "";
}

.fa-lightbulb-exclamation:before {
  content: "";
}

.fa-lightbulb-on:before {
  content: "";
}

.fa-linkedin:before {
  content: "";
}

.fa-linkedin-in:before {
  content: "";
}

.fa-paper-plane:before {
  content: "";
}

.fa-phone:before {
  content: "";
}

.fa-phone-alt:before {
  content: "";
}

.fa-search:before {
  content: "";
}

.fa-sparkles:before {
  content: "";
}

.fa-twitter:before {
  content: "";
}

.fa-users:before {
  content: "";
}

.fa-xing:before {
  content: "";
}

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

/*!
 * Font Awesome Pro 5.15.4 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 */
@font-face {
  font-family: "Font Awesome 5 Pro";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("../webfonts/fa-regular-400.eot");
  src: url("../webfonts/fa-regular-400.eot?#iefix") format("embedded-opentype"), url("../webfonts/fa-regular-400.woff2") format("woff2"), url("../webfonts/fa-regular-400.woff") format("woff"), url("../webfonts/fa-regular-400.ttf") format("truetype"), url("../webfonts/fa-regular-400.svg#fontawesome") format("svg");
}
.far {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

/*!
 * Font Awesome Pro 5.15.4 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 */
@font-face {
  font-family: "Font Awesome 5 Brands";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("../webfonts/fa-brands-400.eot");
  src: url("../webfonts/fa-brands-400.eot?#iefix") format("embedded-opentype"), url("../webfonts/fa-brands-400.woff2") format("woff2"), url("../webfonts/fa-brands-400.woff") format("woff"), url("../webfonts/fa-brands-400.ttf") format("truetype"), url("../webfonts/fa-brands-400.svg#fontawesome") format("svg");
}
.fab {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

/*!
 * Font Awesome Pro 5.15.4 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 */
@font-face {
  font-family: "Font Awesome 5 Pro";
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url("../webfonts/fa-solid-900.eot");
  src: url("../webfonts/fa-solid-900.eot?#iefix") format("embedded-opentype"), url("../webfonts/fa-solid-900.woff2") format("woff2"), url("../webfonts/fa-solid-900.woff") format("woff"), url("../webfonts/fa-solid-900.ttf") format("truetype"), url("../webfonts/fa-solid-900.svg#fontawesome") format("svg");
}
.fa,
.fas {
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
}

/*!
 * Font Awesome Pro 5.15.4 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 */
@font-face {
  font-family: "Font Awesome 5 Pro";
  font-style: normal;
  font-weight: 300;
  font-display: block;
  src: url("../webfonts/fa-light-300.eot");
  src: url("../webfonts/fa-light-300.eot?#iefix") format("embedded-opentype"), url("../webfonts/fa-light-300.woff2") format("woff2"), url("../webfonts/fa-light-300.woff") format("woff"), url("../webfonts/fa-light-300.ttf") format("truetype"), url("../webfonts/fa-light-300.svg#fontawesome") format("svg");
}
.fal {
  font-family: "Font Awesome 5 Pro";
  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";
  }
}