@import url("reset.css");
@import url("dsa-secure.css");

/* kurale-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Kurale";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/kurale-v11-latin-regular.woff2") format("woff2"),
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
      url("../fonts/kurale-v11-latin-regular.ttf") format("truetype"); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}

/* open-sans-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/open-sans-v40-latin-regular.woff2") format("woff2"),
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
      url("../fonts/open-sans-v40-latin-regular.ttf") format("truetype"); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}

/* open-sans-italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Open Sans";
  font-style: italic;
  font-weight: 400;
  src: url("../fonts/open-sans-v40-latin-italic.woff2") format("woff2"),
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
      url("../fonts/open-sans-v40-latin-italic.ttf") format("truetype"); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}

:root {
  --col-text: #1b5b7b;
  --col-white: #fff;
  --col-strong: #df1621;
  --col-headline: #8f612c;
  --col-primary: #0894eb;
  --col-secondary: #0093cb;
  --col-tertiary: #ed9e40;
  --col-tertiary-hover: #8f612c;
  --col-tertiary-disabled: #fac691;
  --col-accordion-hover: #721d18;
  --col-y: #fb00ff;
  --col-z: #e8e4e3;
  --col-grad: linear-gradient(
    90deg,
    rgba(7, 147, 235, 1) 0%,
    rgba(28, 165, 221, 1) 100%
  );
  --col-grad2: linear-gradient(
    90deg,
    rgba(7, 147, 235, 0.9) 0%,
    rgba(28, 165, 221, 0.9) 100%
  );
  --col-grad-end: rgba(28, 165, 221, 1);
  --col-img: rgba(0, 25, 60, 0.4);
}

.clear {
  clear: both;
}

* {
  box-sizing: border-box;
  -o-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

strong,
b {
  font-weight: 500;
  color: var(--col-tertiary);
}

body {
  font-family: "Open Sans";
  font-weight: 400;
  font-style: normal;
  color: var(--col-text);
  font-size: 15px;
  line-height: 22px;
}

header {
  object-fit: fill;
  height: 100dvh;
  position: relative;
  background-attachment: fixed;
  overflow: hidden;
}
.headerImg {
  width: auto;
  height: 100%;
  object-fit: cover;
  position: absolute;
  right: 3%;
  top: 9%;
  z-index: 1;
}

.bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  background: url(../images/border.png) repeat-x;
  width: 100%;
  height: 35px;
}

.imghead {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 100;
}

.color {
  color: var(--col-text) !important;
}

.color2 {
  color: var(--col-white) !important;
}

nav {
  font: 300 15px/20px "Open Sans";
  background: var(--col-white);
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  padding: 55px 5% 30px;
  text-align: right;
  z-index: 104;
  box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.12);
}

nav ul li {
  display: inline-block;
  margin: 0 5px;
}

nav ul li:after {
  content: "•";
  margin-left: 15px;
  color: var(--col-primary);
  font-weight: 500;
}

nav ul li:last-of-type:after {
  content: none;
}

nav ul li a {
  text-decoration: none;
  color: var(--col-secondary);
  position: relative;
  transition: ease 0.8s;
  -o-transition: ease 0.8s;
  -webkit-transition: ease 0.8s;
  -moz-transition: ease 0.8s;
}

nav ul li a:hover,
nav ul li a.active {
  color: var(--col-tertiary);
}

.info-contact {
  position: fixed;
  top: 0;
  right: 5%;
  background: var(--col-tertiary);
  z-index: 105;
  padding: 5px 15px;
  font-size: 13px;
  border-radius: 0 0 15px 15px;
  transition: ease 0.8s;
  -o-transition: ease 0.8s;
  -webkit-transition: ease 0.8s;
  -moz-transition: ease 0.8s;
}
.info-contact:hover {
  background: var(--col-tertiary-hover);
}
.info-contact:hover a {
  color: var(--col-white);
}

.info-contact a {
  text-decoration: none;
  color: var(--col-white);
}

.slogan {
  font: 400 24px/30px "Open Sans";
  position: absolute;
  text-align: left;
  height: auto;
  border-radius: 100px;
  padding: 35px 85px;
  color: var(--col-white);
  font-size: 40px;
  line-height: 40px;
  background: var(--col-grad);
  bottom: 10%;
  left: 5%;
  z-index: 101;
}

.slogan span {
  font: 400 normal 18px/22px "Open Sans";
  text-transform: none;
  display: inline-block;
  margin-bottom: 5px;
  letter-spacing: 1px;
}

.slogan p {
  margin: 0;
}

.slogan .btn {
  font-size: 15px;
  line-height: 20px;
  border-radius: 200px;
  padding: 10px 35px;
  font: 400 normal 15px/22px "Open Sans";
  background: var(--col-tertiary);
}

.slogan .btn:hover {
  background: var(--col-tertiary-hover);
}
.plus {
  position: absolute;
  left: 0;
  bottom: 0;
}
.plus img {
  display: block;
}
.logo img {
  position: fixed;
  top: 10px;
  left: 5%;
  z-index: 105;
  display: block;
  width: 220px;
}

h1,
h2 {
  font: 400 40px/45px "Open Sans";
  color: var(--col-secondary);
  margin-bottom: 15px;
}

h1 span,
h2 span {
  font: normal 23px/25px "Open Sans";
  margin-bottom: 5px;
  display: inline-block;
  font-weight: 300;
  color: var(--col-tertiary);
}

h3 {
  font: 30px/32px "Open Sans";
  color: var(--col-y);
}

h4 {
  font: normal 18px/25px "Open Sans";
  letter-spacing: 0;
  display: block;
  color: var(--col-tertiary);
  margin-bottom: 5px;
}

h5 {
  font-weight: 900;
  margin-top: 20px;
}

p {
  margin-bottom: 14px;
}

#unternehmen {
  padding: 150px 10%;
}

.center .flex {
  align-items: center;
}

.full {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
}

.flex div {
  width: 48%;
}

#unternehmen a {
  color: var(--col-text);
  text-decoration: underline;
  transition: ease 0.8s;
  -o-transition: ease 0.8s;
  -webkit-transition: ease 0.8s;
  -moz-transition: ease 0.8s;
}

#unternehmen a:hover {
  color: var(--col-tertiary);
}

.color {
  color: var(--col-y);
  text-decoration: none;
}

.btn {
  background: var(--col-primary);
  color: var(--col-white) !important;
  display: inline-block;
  border-radius: 200px;
  padding: 10px 35px;
  -o-transition: ease 0.8s;
  -webkit-transition: ease 0.8s;
  -moz-transition: ease 0.8s;
  text-decoration: none;
  margin-top: 15px;
}

.btn:hover {
  -o-transition: ease 0.8s;
  -webkit-transition: ease 0.8s;
  -moz-transition: ease 0.8s;
  background: var(--col-tertiary);
}

#siesuchen {
  padding: 100px 10%;
  background: url(../images/mody.jpeg) no-repeat center / cover;
  position: relative;
  text-align: left !important;
  color: var(--col-white);
}

#siesuchen h2 {
  color: var(--col-tertiary);
}

#siesuchen h2 span {
  color: var(--col-tertiary);
}

#wirbieten {
  padding: 100px 10%;
  position: relative;
  color: var(--col-y);
  background: var(--col-white);
}

#wirbieten h2 {
  color: var(--col-tertiary);
}
#wirbieten .accordion h3 {
  text-align: left;
  color: var(--col-white);
}

#wirbieten .accordion,
#siesuchen .accordion {
  width: 100%;
  height: 500px;
  overflow: hidden;
  margin: 50px auto;
  border-radius: 400px;
}

#wirbieten .accordion ul,
#siesuchen .accordion ul {
  width: 100%;
  display: table;
  table-layout: fixed;
  margin: 0;
  padding: 0;
}

#wirbieten .accordion ul li,
#siesuchen .accordion ul li {
  display: table-cell;
  vertical-align: bottom;
  position: relative;
  width: 25%;
  height: 500px;
  background-repeat: no-repeat;
  background-position: center center;
  transition: all 500ms ease;
}

#wirbieten .accordion ul li div,
#siesuchen .accordion ul li div {
  display: block;
  overflow: hidden;
  width: 100%;
}

#wirbieten .accordion ul li div,
#siesuchen .accordion ul li div {
  display: block;
  height: 500px;
  width: 100%;
  position: relative;
  z-index: 3;
  vertical-align: bottom;
  padding: 15px 20px;
  box-sizing: border-box;
  color: var(--col-white);
  text-decoration: none;
  transition: all 200ms ease;
  background: var(--col-img);
}

#wirbieten .accordion ul li div *,
#siesuchen .accordion ul li div * {
  opacity: 0;
  margin: 0;
  width: 100%;
  text-overflow: ellipsis;
  position: relative;
  z-index: 5;
  overflow: hidden;
  -webkit-transform: translateX(-20px);
  transform: translateX(-20px);
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
}

#wirbieten .accordion ul li div h3,
#siesuchen .accordion ul li div h3 {
  text-overflow: clip;
  margin-bottom: 2px;
  top: 200px;
  left: 40px;
  opacity: 1;
  text-overflow: ellipsis;
  text-shadow: 4px 0 4px rgba(0, 0, 0, 0.95);
  font: 400 30px/32px "Open Sans";
  color: var(--col-white);
  text-align: left;
}

#wirbieten .accordion ul li div p,
#siesuchen .accordion ul li div p {
  top: 220px;
}

/*.accordion ul:hover li { width: 15%; }*/

#wirbieten .accordion ul:hover li:hover,
#siesuchen .accordion ul:hover li:hover {
  width: 75%;
}

#siesuchen .accordion ul:hover li:hover div {
  background: var(--col-grad2);
}

#wirbieten .accordion ul:hover li:hover div {
  background: var(--col-grad2);
}

#wirbieten .accordion ul:hover li:hover div *,
#siesuchen .accordion ul:hover li:hover div * {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

#wirbieten .accordion ul:hover li:hover div h3,
#siesuchen .accordion ul:hover li:hover div h3 {
  top: 200px;
  left: 0;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  text-align: left !important;
}

#siesuchen .accordion ul li:nth-child(1) {
  background-image: url(../images/aufgaben.jpeg);
  background-position: center;
  background-size: cover;
}

#siesuchen .accordion ul li:nth-child(2) {
  background-image: url(../images/herausforderung.jpeg);
  background-position: left;
  background-size: cover;
}

#siesuchen .accordion ul li:nth-child(3) {
  background-image: url(../images/arbeiten.jpeg);
  background-position: center;
  background-size: cover;
}
#siesuchen .accordion ul li:nth-child(4) {
  background-image: url(../images/abstimmung.jpeg);
  background-position: center;
  background-size: cover;
}

#wirbieten .accordion ul li:nth-child(1) {
  background-image: url(../images/wert.jpeg);
  background-position: right;
  background-size: cover;
}

#wirbieten .accordion ul li:nth-child(2) {
  background-image: url(../images/geld.jpeg);
  background-position: center;
  background-size: cover;
}

#wirbieten .accordion ul li:nth-child(3) {
  background-image: url(../images/sicher.jpeg);
  background-position: center;
  background-size: cover;
}

#wirbieten .accordion ul li:nth-child(4) {
  background-image: url(../images/worklife.jpeg);
  background-position: center;
  background-size: cover;
}

.jobs {
  background: url(../images/para.jpeg) no-repeat center top/ cover;
  height: 550px;
  background-attachment: fixed;
  position: relative;
}

.imgjobs {
  position: absolute;
  right: 50px;
  bottom: 0;
  width: 300px;
}

#dazugehoeren {
  padding: 80px 10%;
  background: url(../images/bg.jpg) no-repeat center / cover;
  position: relative;
  z-index: 10;
  color: var(--col-white);
}

#dazugehoeren h2 {
  color: var(--col-secondary);
}

#dazugehoeren h2 span {
  color: var(--col-tertiary-disabled);
}

#stellen {
  background: var(--col-white);
  padding: 100px 10%;
}

#stellen .flex {
  justify-content: left;
}

.job-box {
  width: 32%;
  height: 200px;
  padding: 35px;
  background: var(--col-primary);
  text-align: center;
  position: relative;
  text-decoration: none;
  color: var(--col-white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  font-size: 18px;
  line-height: 25px;
  margin: 5px;
  border-radius: 400px;
  transition: ease 0.8s;
  -o-transition: ease 0.8s;
  -webkit-transition: ease 0.8s;
  -moz-transition: ease 0.8s;
  -ms-transition: ease 0.8s;
}

.job-box:hover {
  background: var(--col-tertiary);
}

.job-box img {
  position: absolute;
  width: 100px;
  height: auto;
  right: 25px;
  bottom: 25px;
  z-index: 0;
}

.jobs {
  position: relative;
}

footer {
  text-align: left;
  background: url(../images/mody.jpeg) no-repeat center / cover;
  display: flex;
  flex-wrap: wrap;
  color: var(--col-white);
}

.grey {
  background: var(--col-white);
}

footer h4 {
  font: 400 30px/35px "Open Sans";
  color: var(--col-tertiary);
}

.info {
  width: 100%;
}

.info .flex .praxis {
  width: 50%;
  padding: 50px 25px;
}

.info h2 {
  font-size: 25px;
  font-weight: 500;
  color: var(--col-y);
}

.info a {
  color: var(--col-tertiary);
  text-decoration: underline;
  transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -moz-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
}

.info a:hover {
  color: var(--col-tertiary);
}

footer h2 {
  text-align: left;
  margin-bottom: 0;
}

.dsa-secure-plugin iframe {
  height: 100%;
}

.data {
  position: fixed;
  right: 50px;
  bottom: 0;
  background: var(--col-tertiary);
  padding: 3px 10px;
  color: var(--col-white);
  text-align: center;
  z-index: 108;
  font-size: 13px;
  transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -moz-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  width: 249px;
}

.data:hover {
  background: var(--col-primary);
}

.data:hover > a {
  color: var(--col-white) !important;
}

.data a {
  color: var(--col-white);
  text-decoration: none;
}

label {
  cursor: pointer;
}

label:focus {
  outline: none;
}

.menu {
  position: fixed;
  top: 0px;
  left: 0;
  background: var(--col-grad);
  width: 260px;
  height: 100%;
  transform: translate3d(-260px, 0, 0);
  transition: transform 0.35s;
  z-index: 109;
}

.menu label.menu-toggle {
  position: fixed;
  right: -40px;
  top: 0;
  width: 40px;
  height: 40px;
  line-height: 0px;
  border-radius: 0 0 15px;
  display: block;
  padding: 0;
  text-indent: -9999px;
  background: var(--col-grad-end) url(../images/menu.svg) 50% 50%/30px 30px
    no-repeat;
}

.menu ul li a,
.menu ul li label {
  font: 15px/20px "Open Sans";
  display: block;
  text-align: left;
  padding: 0 20px;
  line-height: 60px;
  text-decoration: none;
  color: var(--col-white);
  transition: ease 0.8s;
  -o-transition: ease 0.8s;
  -webkit-transition: ease 0.8s;
  -noz-transition: ease 0.8s;
}

.menu ul li a:hover,
.menu ul li label:hover {
  color: var(--col-tertiary-disabled);
}

/* hide inputs */

.menu-checkbox {
  display: none;
}

/* hide navigation icon for sublabels */

.menu .menu label.menu-toggle {
  background: none;
}

/* fade in checked menu */

.menu-checkbox:checked + .menu {
  transform: translate3d(0, 0, 0);
}

.menu ul {
  padding-top: 50px;
}

.resp-nav {
  display: none;
}

.small {
  font-size: 12px;
}

.dsa-secure-plugin {
  border-radius: 5px;
  position: relative;
}

.dsa-secure-plugin .dsa-secure-image {
  width: 100%;
  height: 100%;
}

.dsa-secure-plugin {
  font-size: 12px;
  line-height: 16px;
}

.dsa-secure-plugin .dsa-buttons {
  width: 90%;
  margin: auto;
  text-align: center;
}

.dsa-secure-plugin .dsa-buttons a:nth-of-type(2n) {
  margin-top: 10px;
}

.dsa-secure-plugin .undercheck {
  background-color: var(--col-primary);
  color: var(--col-white) !important;
  border-radius: 5px;
  padding: 4px;
  margin: 8px 50% 16px;
  width: 202px;
  transform: translateX(-50%);
}

.dsa-secure-plugin .check-slide-content {
  position: absolute;
  top: 50%;
  width: 100%;
  margin: auto;
  -webkit-transform: translateY(100%);
  transform: translateY(-50%);
}

.dsa-secure-plugin .dsa-switch {
  position: relative;
  width: 60px;
  height: 34px;
  display: block;
}

.dsa-secure-plugin .check-slide {
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.5s linear;
}

.dsa-secure-plugin .dsa-secure-plugin input {
  display: none;
}

.dsa-secure-plugin iframe {
  width: 100%;
}

.dsa-secure-plugin .dsa-switch {
  margin-left: calc(50% - 30px);
}

.dsa-secure-plugin p {
  text-align: center;
  font-family: arial;
  padding: 10px 0;
  display: block;
  margin: auto;
  font-weight: 700;
}

.dsa-secure-plugin .check-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: var(--col-tertiary);
}

.dsa-secure-plugin .check-slide.hide {
  display: none;
}

.dsa-secure-plugin a {
  font-size: 12px;
  text-align: center;
  font-family: arial;
  display: block;
  margin: auto;
  width: calc(100% - 20px);
  max-width: 300px;
  background-color: var(--col-tertiary);
  border-radius: 5px;
  padding: 5px 10px;
  text-decoration: none;
  color: var(--col-white);
}

.dsa-secure-plugin a:hover {
  background-color: var(--col-tertiary-hover);
}

.dsa-secure-plugin .check-slide:hover,
.dsa-secure-plugin:hover .check-slide {
  visibility: visible;
  opacity: 1;
  visibility: visible;
  opacity: 1;
}

.dsa-secure-plugin .dsa-tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted #000;
}

.dsa-secure-plugin .dsa-buttons a:hover {
  color: var(--col-white) !important;
}

.dsa-secure-plugin .dsa-tooltip .tooltiptext {
  font-size: 12px;
  visibility: hidden;
  width: 100%;
  max-width: 300px;
  background-color: var(--col-tertiary-disabled);
  color: var(--col-white);
  text-align: center;
  padding: 5px 10px;
  border-radius: 6px;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 0;
  margin-left: 0;
  opacity: 0;
  transition: opacity 0.3s;
}

.dsa-secure-plugin .dsa-tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent;
}

.dsa-secure-plugin .dsa-tooltip:hover .tooltiptext,
.dsa-tooltip.active .tooltiptext {
  visibility: visible;
  opacity: 1;
}

.dsa-secure-plugin .dsa-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--col-primary);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.dsa-secure-plugin .dsa-slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: var(--col-white);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.dsa-secure-plugin input:checked + .dsa-slider {
  background-color: #cc1417;
}

.dsa-secure-plugin input:focus + .dsa-slider {
  box-shadow: 0 0 1px #cc1417;
}

.dsa-secure-plugin input:checked + .dsa-slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

.dsa-secure-plugin .dsa-slider.round {
  border-radius: 34px;
}

.dsa-secure-plugin .dsa-slider.round:before {
  border-radius: 50%;
}

.dsa-cookie-notice-close:hover {
  -o-transition: ease 0.8s;
  -webkit-transition: ease 0.8s;
  -moz-transition: ease 0.8s;
  background-color: var(--col-tertiary-hover);
  color: var(--col-white) !important;
}

.dsa-cookie-notice-close {
  position: absolute;
  display: block;
  height: 20px;
  bottom: 20px;
  width: 20px;
  line-height: 20px;
  right: 5px;
  top: 5px;
  text-decoration: none;
  color: var(--col-white) !important;
  background-color: var(--col-tertiary);
  border-radius: 10px;
}

.dsa-cookie-notice {
  font-family: "Open Sans";
  font-size: 10px;
  display: block;
  position: fixed;
  right: 50px;
  bottom: 30px;
  z-index: 99999 !important;
  background-color: var(--col-primary);
  margin: auto;
  text-align: center;
  color: var(--col-white);
  width: 249px;
  border-radius: 15px 15px 0 0;
}

.dsa-cookie-notice a {
  color: var(--col-white);
  text-decoration: underline;
}

.dsa-cookie-notice.hide {
  display: none;
}

.cookie-inner {
  padding: 30px 15px;
}

@media (max-width: 900px) {
  .dsa-secure-plugin .check-slide {
    visibility: visible;
    opacity: 1;
    visibility: visible;
    opacity: 1;
  }
}

.list li {
  margin-left: 20px;
  position: relative;
}

.list li:before {
  position: absolute;
  content: "";
  background: url(../images/check.svg) no-repeat;
  width: 15px;
  height: 15px;
  left: -20px;
  top: 4px;
}

.img img {
  width: 80%;
  height: 250px;
  object-fit: cover;
}

.landingpage {
  padding: 30px 10%;
  color: var(--col-y);
  text-align: center;
}

.landingpage a {
  color: var(--col-y);
  text-decoration: none;
}

#benefit {
  background: var(--col-white);
  padding: 100px 10%;
}

#benefit .flex {
  align-items: center;
}

.job-img img {
  width: 100%;
  display: block;
  border-radius: 400px 0 0 400px;
}

.job-img {
  height: 100%;
  object-fit: cover;
}

#bewerben {
  padding: 50px 10%;
  background: url(../images/bg.jpg) no-repeat center / cover;
  color: var(--col-text);
}

#bewerben .btn {
  background: var(--col-tertiary);
}

#bewerben .btn:hover {
  background: var(--col-primary);
}

#bewerben h2 {
  color: var(--col-secondary);
}

#bewerben h2 span {
  color: var(--col-tertiary);
}

#bewerben .flex div:nth-child(2) {
  justify-content: flex-end;
}

/*---------------------------------------
MEDIA Queries | Tablet | Phone
---------------------------------------*/

@media screen and (max-width: 1320px) {
  nav ul li {
    margin: 0 2px;
  }

  nav ul li::after {
    margin-left: 10px;
  }
}

@media screen and (max-width: 1200px) {
  /*CSS*/

  .full {
    width: 100%;
  }

  .landing .flex div {
    width: 48%;
  }

  .flex {
    flex-wrap: wrap;
  }

  .border {
    width: auto;
  }

  #wirbieten h2 {
    width: 100%;
  }

  nav {
    font-size: 14px;
  }

  .dsa-secure-plugin,
  .praxis {
    width: 50% !important;
  }

  footer .flex {
    flex-wrap: wrap;
  }

  footer .flex div:nth-of-type(1) {
    order: 1;
  }

  footer .flex div:nth-of-type(2) {
    order: 2;
  }

  footer .flex div:nth-of-type(3) {
    order: 4;
  }

  footer .flex div:nth-of-type(4) {
    order: 3;
  }

  .job-img img {
    height: 650px;
    object-fit: cover;
  }
}

@media screen and (max-width: 1024px) {
  /*CSS*/
  header {
    height: 100dvh;
  }

  #wirbieten,
  #siesuchen {
    padding: 80px 5%;
  }

  .jobs {
    height: 350px;
    background-attachment: inherit;
  }

  .imgjobs {
    width: 200px;
  }
  .plus img {
    width: 70%;
  }

  .slogan {
    font: 400 24px/30px "Open Sans";
    border-radius: 80px;
    padding: 35px 85px;
  }

  #unternehmen,
  #benefit,
  #bewerben {
    padding: 80px 5%;
  }

  header,
  #wirbieten,
  footer {
    background-attachment: inherit;
  }
}

@media screen and (max-width: 850px) {
  nav {
    padding: 55px 0;
  }

  nav ul {
    display: none;
  }

  .resp-nav {
    display: block;
  }

  .logo img {
    width: 200px;
    top: 15px;
    left: calc(50% - 100px);
  }

  .flex {
    flex-wrap: wrap;
  }

  .data,
  .dsa-cookie-notice {
    right: 20px !important;
  }

  .auswahl,
  .job-beschreibung {
    float: none;
    width: 100%;
    border: none;
  }

  .auswahl-inner {
    padding: 30px 5%;
  }

  .ui-tabs-vertical .ui-tabs-nav,
  .ui-tabs-vertical .ui-tabs-panel {
    float: none;
    width: 100%;
  }

  header {
    height: 100dvh;
  }

  .headerImg {
    width: 100dvw;
    height: auto;
    object-fit: cover;
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  #dazugehoeren {
    padding: 50px 5%;
  }

  #wirbieten .accordion,
  #siesuchen .accordion {
    height: auto;
    border-radius: 60px;
  }

  .col1 {
    padding: 50px 5%;
  }

  /*Responsive FIX*/
  .accordion ul {
    width: 100%;
    display: table;
    table-layout: fixed;
    margin: 0;
    padding: 0;
  }

  .accordion ul li,
  .accordion ul li:hover,
  .accordion ul:hover li,
  .accordion ul:hover li:hover {
    display: block !important;
    width: 100% !important;
    -webkit-transition: none;
    transition: none;
  }

  #wirbieten .accordion ul li div *,
  #siesuchen .accordion ul li div * {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
  }

  #wirbieten .accordion ul li div h3,
  #siesuchen .accordion ul li div h3 {
    text-overflow: clip;
    margin-bottom: 2px;
    top: inherit;
    left: inherit;
    opacity: 1;
    text-overflow: ellipsis;
    text-shadow: 2px 0 2px rgba(0, 0, 0, 0.4);
    color: var(--col-white);
    text-align: left;
  }

  .accordion ul li {
    display: block !important;
    width: 100% !important;
    -webkit-transition: none;
    transition: none;
  }

  #wirbieten .accordion ul li div,
  #siesuchen .accordion ul li div {
    background: rgba(0, 0, 0, 0.4);
    padding: 50px;
  }

  #wirbieten .accordion ul li div,
  #siesuchen .accordion ul li div,
  #wirbieten .accordion ul li,
  #siesuchen .accordion ul li {
    height: 300px;
    background-position: center center;
  }

  #wirbieten .accordion ul:hover li:hover div h3,
  #siesuchen .accordion ul:hover li:hover div h3,
  #wirbieten .accordion ul li div p,
  #siesuchen .accordion ul li div p {
    top: inherit;
    position: relative;
  }

  #wirbieten .accordion ul li,
  #siesuchen .accordion ul li {
  }

  .accordion ul li div {
    display: block;
    height: 500px;
    width: 100%;
    position: relative;
    z-index: 3;
    vertical-align: bottom;
    padding: 15px 20px;
    box-sizing: border-box;
    color: var(--col-white);
    text-decoration: none;
    transition: all 200ms ease;
  }

  #stellen {
    padding: 100px 5%;
  }

  .job-box {
    width: 48%;
  }

  #bewerben .flex div {
    width: 100%;
  }
}

@media screen and (max-width: 780px) {
  .flex div {
    width: 100%;
  }

  .flex div:first-child {
    column-count: 1;
  }

  #siesuchen .accordion ul li:nth-child(2) {
    background-position: center top -30px;
  }

  .border {
    width: 100%;
  }

  .landing .flex div {
    width: 100%;
  }

  nav::before {
    min-height: 30px;
    background-size: cover;
    bottom: -25px;
  }

  .landingpage {
    padding: 30px 5%;
  }

  footer .flex div:nth-of-type(3) {
    order: 3;
  }

  footer .flex div:nth-of-type(4) {
    order: 4;
  }

  .dsa-secure-plugin,
  .praxis {
    width: 100% !important;
  }

  .dsa-secure-plugin .dsa-secure-image,
  .dsa-secure-plugin iframe {
    height: 250px;
  }

  .full {
    width: 100%;
  }

  .job-img img {
    height: 350px;
    margin-bottom: 50px;
  }

  .headerImg {
    width: 100dvw;
    height: auto;
    object-fit: cover;
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .info a {
    color: var(--col-tertiary-disabled);
    text-decoration: underline;
    transition: ease 0.5s;
    -o-transition: ease 0.5s;
    -moz-transition: ease 0.5s;
    -webkit-transition: ease 0.5s;
  }
}

@media screen and (max-width: 600px) {
  .slogan {
    margin: auto;
    border-radius: 80px;
    padding: 35px 85px;
    font-size: 24px;
    line-height: 30px;
    width: 90%;
    hyphens: auto;
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
    -o-hyphens: auto;
    -ms-hyphens: auto;
    padding: 60px;
  }

  .slogan span {
    font-size: 15px;
    line-height: 18px;
    margin-bottom: 5px;
    display: inline-block;
  }

  .slogan .btn {
    font-size: 15px;
  }

  .info-contact {
    right: 0;
  }

  .job-box {
    width: 100%;
  }
  .headerImg {
    width: 100dvw;
    height: auto;
    object-fit: cover;
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

@media screen and (max-width: 480px) {
  #wirbieten .accordion ul li div,
  #siesuchen .accordion ul li div {
    background: rgba(0, 0, 0, 0.4);
    padding: 50px 30px;
  }

  .info-contact {
    display: none;
  }
  .slogan {
    font-size: 20px;
    line-height: 30px;
    hyphens: none;
    border-radius: 80px;
    padding: 40px;
  }
  .slogan span {
    font-size: 14px;
  }
  .headerImg {
    width: 100dvw;
    height: auto;
    object-fit: cover;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

@media screen and (max-width: 350px) {
  .slogan {
    font-size: 20px;
    line-height: 30px;
    hyphens: none;
  }
  .slogan span {
    font-size: 14px;
  }
  .headerImg {
    width: 100dvw;
    height: auto;
    object-fit: cover;
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

#stellen .flex {
  position: relative;
  z-index: 0;
}

.dsa-cookie-notice-close {
  text-decoration: none !important;
}
body {
  overflow-x: hidden;
}

* {
  hyphens: auto;
  -moz-hyphens: auto;
  -o-hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
} 