/* stylelint-disable value-list-comma-newline-after */

@font-face {
  font-family: 'Tahu';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local(''), url('../Assets/Fonts/Tahu/Tahu.woff') format('woff');
}

@font-face {
  font-family: 'Ubuntu';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: local(''), url('../Assets/Fonts/Ubuntu/ubuntu-v20-latin-300.woff2') format('woff2'),
    url('../Assets/Fonts/Ubuntu/ubuntu-v20-latin-300.woff') format('woff');
}

@font-face {
  font-family: 'Ubuntu';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local(''), url('../Assets/Fonts/Ubuntu/ubuntu-v20-latin-regular.woff2') format('woff2'),
    url('../Assets/Fonts/Ubuntu/ubuntu-v20-latin-regular.woff') format('woff');
}

@font-face {
  font-family: 'Ubuntu';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: local(''), url('../Assets/Fonts/Ubuntu/ubuntu-v20-latin-500.woff2') format('woff2'),
    url('../Assets/Fonts/Ubuntu/ubuntu-v20-latin-500.woff') format('woff');
}

@font-face {
  font-family: 'Ubuntu';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local(''), url('../Assets/Fonts/Ubuntu/ubuntu-v20-latin-700.woff2') format('woff2'),
    url('../Assets/Fonts/Ubuntu/ubuntu-v20-latin-700.woff') format('woff');
}

:root {
  --font-primary: 'Ubuntu', sans-serif;
  --font-secondary: 'Tahu', sans-serif;

  --clr-blue: #003c73;
  --clr-lightBlue: #34b5e8;
  --clr-orange: #f49a51;
  --clr-darkGrey: #404040;
  --clr-red: #da0d24;

  --clr-primary: white;
  --clr-clickable: var(--clr-blue);

  --font-clr-primary: var(--clr-darkGrey);

  --content-width: 1455px;

  --z-menu: 100;
}

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

html,
body {
  margin: 0;
  font-family: 'Ubuntu', sans-serif;
  font-family: var(--font-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: normal;
  color: #404040;
  color: var(--font-clr-primary);
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: 135px;
}

body {
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: #003c73;
  color: var(--clr-clickable);
}

ul {
  padding-left: 0;
  list-style: none;
}

li {
  padding: 1rem;
}

button {
  margin: 0;
  padding: 0;
  border: none;
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.Main {
  position: relative;
  z-index: 1;
}

.u-contentWidth {
  --paddingX: 20px;

  width: min(100% - var(--paddingX), 1455px);

  width: min(100% - var(--paddingX), var(--content-width));
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 769px) {

.u-contentWidth {
    --paddingX: 60px;
}
  }

@media screen and (min-width: 1026px) {

.u-contentWidth {
    --paddingX: 100px;
}
  }

@media screen and (min-width: 1367px) {

.u-contentWidth {
    --paddingX: 160px;
}
  }

.skip-link {
  position: absolute;
  top: auto;
  left: -10000px;
  overflow: hidden;
  width: 1px;
  height: 1px;
}

.skip-link:focus {
  position: static;
  width: auto;
  height: auto;
}

.neos-contentcollection > [class^='style__addEmptyContentCollectionOverlay'] {
    flex: 1 1 100%;
  }

/* MARGIN TOP */

.mt-1 {
  margin-top: 15px !important;
}

.mt-3 {
  margin-top: 30px !important;
}

.mt-5 {
  margin-top: 45px !important;
}

@media screen and (max-width: 768px) {
  .mt-1,
  .mt-3,
  .mt-5 {
    margin-top: 0 !important;
  }
}

/* MARGIN RIGHT */

.mr-1 {
  width: calc(100% - 15px) !important;
}

.mr-3 {
  width: calc(100% - 30px) !important;
}

.mr-5 {
  width: calc(100% - 45px) !important;
}

@media screen and (max-width: 768px) {
  .mr-1,
  .mr-3,
  .mr-5 {
    width: 100% !important;
  }
}

/* MARGIN BOTTOM */

.mb-1 {
  margin-bottom: 15px !important;
}

.mb-3 {
  margin-bottom: 30px !important;
}

.mb-5 {
  margin-bottom: 45px !important;
}

/* MARGIN LEFT */

.ml-1 {
  margin-left: 15px !important;
}

.ml-3 {
  margin-left: 30px !important;
}

.ml-5 {
  margin-left: 45px !important;
}

@media screen and (max-width: 768px) {
  .ml-1,
  .ml-3,
  .ml-5 {
    margin-left: 0 !important;
  }
}

/* PADDING TOP */

.pt-1 {
  padding-top: 15px !important;
}

.pt-3 {
  padding-top: 30px !important;
}

.pt-5 {
  padding-top: 45px !important;
}

/* PADDING RIGHT */

.pr-1 {
  padding-right: 15px !important;
}

.pr-3 {
  padding-right: 30px !important;
}

.pr-5 {
  padding-right: 45px !important;
}

/* PADDING BOTTOM */

.pb-1 {
  padding-bottom: 15px !important;
}

.pb-3 {
  padding-bottom: 30px !important;
}

.pb-5 {
  padding-bottom: 45px !important;
}

/* PADDING LEFT */

.pl-1 {
  padding-left: 15px !important;
}

.pl-3 {
  padding-left: 30px !important;
}

.pl-5 {
  padding-left: 45px !important;
}

a[class*='mb-'],
a[class*='ml-'],
a[class*='mt-'],
a[class*='mr-'],
a[class*='pr-'],
a[class*='pt-'],
a[class*='pl-'],
a[class*='pb-'] {
  display: inline-block;
}

#header_links {
  border: none !important;
  padding: 0 !important;
}

.scheme-display {
  border: none !important;
}

.scheme-display .scheme-content {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.frame_zone .css_button a {
  cursor: pointer !important;
  position: relative !important;
  display: table !important;
  padding: 10px 20px !important;
  border-radius: 100px !important;
  font-size: 1rem !important;
  font-weight: 400 !important;
  background-color: #003c73 !important;
  background-color: var(--clr-blue) !important;
  color: #ffffff !important;
  transition: background 250ms ease-in-out !important;
}

@media screen and (min-width: 601px) {

.frame_zone .css_button a {
    font-size: 1.125rem !important;
}
  }

#joboffers {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

.is-linked {
    float: left;
    width: 100%;
}

.joboffer_outer {
    border-left: 0px solid transparent;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.joboffer_container {
    display: flex;
    border: 0px solid #ddd;
    border-radius: 0px;
    margin-bottom: 20px;
    width: 100%;
    padding: 0px 15px;
    box-sizing: border-box;
}

.is-linked .joboffer_container {
    width: 100%;
}

.joboffer_container:hover {
    background-color: transparent;
    cursor: pointer;
    box-shadow: 0px 0px 0px silver;
}

.joboffer_container .joboffer_outer:hover {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    border-left: 1px solid #ddd;
}

.joboffer_inner {
    padding: 15px;
    margin: 0px;
    border-left: 10px solid transparent;
    border-radius: 5px;
}

.joboffer_inner:hover {
    border-left: 10px solid var(--buttonColor) !important;
}

.joboffer_inner:hover {
    background: #f5f5f5;
    box-shadow: 5px 5px 5px silver;
}

.joboffer_box.joboffer_title_text {
    width: 70%;
    padding-left: 0px;
    box-sizing: border-box;
}

@media screen and (min-width: 1026px) {
    .joboffer_container {
        width: 50%;
    }

    .is-linked {
      width: 50%;
  }
}
