* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  max-width: 100%;
  outline: none;
  line-height: 1em;
  position: relative;
}
ul {
  list-style: none;
}
body {
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
.clear {
  clear: both;
}
input[type="radio"],
a,
button,
input[type="submit"] {
  cursor: pointer;
}
a:not(.logo) {
  text-decoration: none;
  transition: .1s ease-out;
  -webkit-transition: .1s ease-out;
  -moz-transition: .1s ease-out;
  -o-transition: .1s ease-out;
  -ms-transition: .1s ease-out;
}
a:not(.logo) img {
  transition: .1s ease-out;
  -webkit-transition: .1s ease-out;
  -moz-transition: .1s ease-out;
  -o-transition: .1s ease-out;
  -ms-transition: .1s ease-out;
}
a:not(.logo):hover {
  transition: .2s ease-in;
  -webkit-transition: .2s ease-in;
  -moz-transition: .2s ease-in;
  -o-transition: .2s ease-in;
  -ms-transition: .2s ease-in;
}
a:not(.logo):hover img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transition: .2s ease-in;
  -webkit-transition: .2s ease-in;
  -moz-transition: .2s ease-in;
  -o-transition: .2s ease-in;
  -ms-transition: .2s ease-in;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 100;
}
body {
  margin: 0;
  font-family: 'Barlow', sans-serif;
  background-color: #223f56;
  font-size: 15px;
  line-height: 21px;
}
#element {
  position: fixed;
  top: 0;
  right: 0;
}
#element::before,
#element::after {
  content: "";
  position: absolute;
  z-index: 1;
}
#element::before {
  background: linear-gradient(90deg,#0b1b1f 0%,rgba(255,255,255,0) 100%);
  left: 0;
  top: 0;
  width: 50px;
  height: 100%;
}
#element::after {
  background: linear-gradient(0deg,#0b1b1f 0%,rgba(255,255,255,0) 100%);
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50px;
}
.world {
  width: 100%;
  min-height: 100vh;
  background: #0B1B1F;
}
.logo {
  width: 200px;
  display: block;
}
.menu-button {
  display: block;
  width: 83px;
}
.menu-button .button-wrapper {
  margin: 0 auto;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  border: 2px solid #46eded;
}
.menu-button .button-wrapper span {
  width: 20px;
  height: 2px;
  background-color: #46eded;
  border-radius: 1px;
  position: absolute;
  left: 50%;
  transition: .1s ease-out;
  -webkit-transition: .1s ease-out;
  -moz-transition: .1s ease-out;
  -o-transition: .1s ease-out;
  -ms-transition: .1s ease-out;
  transform: translate(-50%,0);
  -webkit-transform: translate(-50%,0);
  -moz-transform: translate(-50%,0);
  -o-transform: translate(-50%,0);
  -ms-transform: translate(-50%,0);
  top: 24px;
}
.menu-button .button-wrapper span:first-of-type {
  top: 17px;
}
.menu-button .button-wrapper span:last-of-type {
  top: 31px;
}
.menu-button .font {
  text-transform: uppercase;
  color: #46eded;
  text-align: center;
  margin-top: 10px;
  display: block;
  width: 100%;
  font-size: 14px;
  letter-spacing: .3px;
  font-weight: 400;
}
.close-button {
  display: block;
}
.close-button .button-wrapper {
  margin: 0 auto;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #46eded;
}
.close-button .button-wrapper span {
  width: 20px;
  height: 2px;
  background-color: #46eded;
  border-radius: 1px;
  position: absolute;
  transition: .1s ease-out;
  -webkit-transition: .1s ease-out;
  -moz-transition: .1s ease-out;
  -o-transition: .1s ease-out;
  -ms-transition: .1s ease-out;
  top: 24px;
}
.close-button .button-wrapper span:first-of-type {
  transform: rotate(-45deg);
}
.close-button .button-wrapper span:last-of-type {
  transform: rotate(45deg);
}
.close-button .font {
  text-transform: uppercase;
  color: #46eded;
  text-align: center;
  margin-top: 10px;
  display: block;
  width: 100%;
  font-size: 14px;
  letter-spacing: .3px;
  font-weight: 400;
}
.open {
  overflow: hidden;
}
.open aside.fixed {
  z-index: -1;
}
.open nav.scrolled-nav {
  background-color: transparent;
  padding: 10px 4%;
  box-shadow: none;
}
.open .menu-button .button-wrapper span {
  transition: .2s ease-in-out;
  -webkit-transition: .2s ease-in-out;
  -moz-transition: .2s ease-in-out;
  -o-transition: .2s ease-in-out;
  -ms-transition: .2s ease-in-out;
}
.open .menu-button .button-wrapper span:first-of-type {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  left: 14px;
  top: 24px;
}
.open .menu-button .button-wrapper span:nth-of-type(2) {
  opacity: 0;
}
.open .menu-button .button-wrapper span:last-of-type {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  left: 14px;
  top: 24px;
}
.open .menu {
  opacity: 1;
  transition: .5s ease-in-out;
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  -ms-transition: .5s ease-in-out;
  z-index: 13;
}
.open .menu .menu-wrapper ul li {
  left: 0;
  opacity: 1;
  transition: .5s cubic-bezier(0.07,0.88,1,1);
  -webkit-transition: .5s cubic-bezier(0.07,0.88,1,1);
  -moz-transition: .5s cubic-bezier(0.07,0.88,1,1);
  -o-transition: .5s cubic-bezier(0.07,0.88,1,1);
  -ms-transition: .5s cubic-bezier(0.07,0.88,1,1);
}
@media screen and (max-width: 959px) {
  body.open {
    position: fixed;
  }
}
.menu {
  background-color: #223f56;
  background-image: url(../img/Menu-BG.jpg);
  background-position: center;
  background-size: cover;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: -1;
  opacity: 0;
  transition: .2s ease-out;
  -webkit-transition: .2s ease-out;
  -moz-transition: .2s ease-out;
  -o-transition: .2s ease-out;
  -ms-transition: .2s ease-out;
}
.menu .menu-wrapper {
  overflow-y: scroll;
  width: 100%;
  height: 100%;
}
.menu .menu-wrapper .inner {
  display: flex;
  justify-content: space-between;
  width: 910px;
  margin: 130px auto 0;
  padding: 0 20px;
}
@media screen and (max-width: 839px) {
  .menu .menu-wrapper .inner {
    justify-content: space-around;
  }
}
@media screen and (max-width: 699px) {
  .menu .menu-wrapper .inner {
    padding: 0;
  }
}
.menu .menu-wrapper ul {
  flex-basis: 320px;
  margin-top: 180px;
  width: 245px;
  padding-bottom: 50px;
  z-index: 2;
}
.menu .menu-wrapper ul li {
  transition: .1s ease-out;
  -webkit-transition: .1s ease-out;
  -moz-transition: .1s ease-out;
  -o-transition: .1s ease-out;
  -ms-transition: .1s ease-out;
  overflow: hidden;
  height: 37px;
  left: 70px;
  transition: none;
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  -ms-transition: none;
  -webkit-transition-delay: .2s;
  -moz-transition-delay: .2s;
  -o-transition-delay: .2s;
  transition-delay: .2s;
  opacity: 1;
}
.menu .menu-wrapper ul li > a {
  flex-wrap: wrap;
  height: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  color: rgba(70,237,237,0.7);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: .6px;
}
.menu .menu-wrapper ul li:first-of-type a,
.menu .menu-wrapper ul li:nth-last-of-type(2) a,
.menu .menu-wrapper ul li:nth-last-of-type(3) a,
.menu .menu-wrapper ul li:nth-last-of-type(4) a,
.menu .menu-wrapper ul li:last-of-type a {
  color: rgba(70,237,237,0.4);
  font-size: 15px;
}
@media screen and (max-width: 699px) {
  .menu .menu-wrapper ul li:first-of-type a,
  .menu .menu-wrapper ul li:nth-last-of-type(2) a,
  .menu .menu-wrapper ul li:nth-last-of-type(3) a,
  .menu .menu-wrapper ul li:nth-last-of-type(4) a,
  .menu .menu-wrapper ul li:last-of-type a {
    font-size: 15px;
  }
}
@media screen and (max-width: 699px) {
  .menu .menu-wrapper ul li:first-of-type a:hover,
  .menu .menu-wrapper ul li:nth-last-of-type(2) a:hover,
  .menu .menu-wrapper ul li:nth-last-of-type(3) a:hover,
  .menu .menu-wrapper ul li:nth-last-of-type(4) a:hover,
  .menu .menu-wrapper ul li:last-of-type a:hover {
    font-size: 15px;
  }
}
.menu .menu-wrapper ul li:hover {
  height: 57px;
}
.menu .menu-wrapper ul li:hover > a {
  font-size: 30px;
  color: #46eded;
}
@media screen and (max-width: 699px) {
  .menu .menu-wrapper ul li:hover > a {
    font-size: 18px;
  }
}
.menu .menu-wrapper ul li:hover ul li {
  height: 37px;
}
.menu .menu-wrapper ul li:hover ul li a {
  font-size: 15px;
  color: rgba(70,237,237,0.4);
  height: auto;
}
@media screen and (max-width: 479px) {
  .menu .menu-wrapper ul li {
    justify-content: center;
  }
}
.menu .menu-wrapper ul li ul {
  opacity: 0;
  display: block;
  padding: 15px 0 15px 10px;
  margin-top: 0;
  position: relative;
  top: 0;
}
.menu .menu-wrapper ul li ul li {
  height: auto;
  margin-bottom: 10px;
}
.menu .menu-wrapper ul li ul li a {
  font-size: 15px;
  color: #46eded;
  height: auto;
}
.menu .menu-wrapper ul li ul li a:hover {
  font-size: 15px;
  color: #46eded;
}
@media screen and (max-width: 699px) {
  .menu .menu-wrapper ul li ul li a {
    font-size: 15px;
  }
}
@media screen and (max-width: 699px) {
  .menu .menu-wrapper ul li ul {
    margin-top: 0;
  }
}
.menu .menu-wrapper ul li.open > a {
  height: 57px;
}
.menu .menu-wrapper ul li.open ul {
  opacity: 1;
}
.menu .menu-wrapper ul li.open ul li {
  height: auto;
}
.menu .menu-wrapper ul li.open ul li a {
  height: auto;
}
@media screen and (max-width: 839px) {
  .menu .menu-wrapper ul {
    margin-top: 120px;
  }
}
@media screen and (max-width: 699px) {
  .menu .menu-wrapper ul {
    width: 100%;
    flex-basis: 100%;
    padding-right: 4%;
    padding-left: 90px;
  }
}
@media screen and (max-width: 599px) {
  .menu .menu-wrapper ul {
    margin-top: 45px;
  }
}
.menu .menu-wrapper .menu-image {
  display: block;
  width: 470px;
  height: 600px;
}
.menu .menu-wrapper .menu-image .image {
  display: block;
  opacity: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transition: .2s ease-out;
  -webkit-transition: .2s ease-out;
  -moz-transition: .2s ease-out;
  -o-transition: .2s ease-out;
  -ms-transition: .2s ease-out;
}
.menu .menu-wrapper .menu-image .image.visible {
  opacity: 1;
  transition: .3s ease-in;
  -webkit-transition: .3s ease-in;
  -moz-transition: .3s ease-in;
  -o-transition: .3s ease-in;
  -ms-transition: .3s ease-in;
}
@media screen and (max-width: 839px) {
  .menu .menu-wrapper .menu-image {
    width: 300px;
    height: 350px;
    margin-top: 75px;
  }
}
@media screen and (max-width: 699px) {
  .menu .menu-wrapper .menu-image {
    display: none;
  }
}
.menu .menu-footer {
  display: flex;
  justify-content: space-between;
  z-index: 1;
  padding: 45px 4% 31px;
  position: absolute;
  bottom: 0;
  width: 100%;
}
.menu .menu-footer .rud-logo {
  width: 100px;
  display: block;
}
@media screen and (max-width: 599px) {
  .menu .menu-footer .rud-logo {
    margin: 0 auto 25px;
  }
}
.menu .menu-footer .socials {
  display: flex;
  justify-content: space-between;
  width: 240px;
  align-items: center;
  flex-wrap: wrap;
}
.menu .menu-footer .socials .legals a {
  color: white;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: .5px;
}
.menu .menu-footer .socials .legals a:first-of-type {
  border-right: 1px solid white;
  padding-right: 9px;
}
.menu .menu-footer .socials .legals a:nth-of-type(2) {
  padding-left: 5px;
}
@media screen and (max-width: 479px) {
  .menu .menu-footer .socials .legals {
    flex-basis: 100%;
    flex-basis: 148px;
    margin-bottom: 15px;
  }
}
.menu .menu-footer .socials .img-buttons {
  display: flex;
  justify-content: space-between;
  width: 80px;
}
@media screen and (max-width: 479px) {
  .menu .menu-footer .socials .img-buttons {
    flex-basis: 67%;
    justify-content: space-around;
  }
}
.menu .menu-footer .socials .img-button {
  width: 35px;
  height: 35px;
  display: block;
}
@media screen and (max-width: 599px) {
  .menu .menu-footer .socials {
    width: 100%;
    justify-content: center;
  }
}
@media screen and (max-height: 700px) {
  .menu .menu-footer {
    position: relative;
  }
}
@media screen and (max-width: 479px) {
  .menu .menu-footer {
    display: block;
  }
}
header {
  min-height: 700px;
  height: 100vh;
  padding-top: 43vh;
  background-image: url(../img/Menu-BG.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
header.row-4 h1 {
  margin: 18px 0 25px;
}
@media screen and (max-width: 959px) {
  header.row-4 h1 {
    margin: 18px 0 18px;
  }
}
header.row-4 h3 {
  margin-bottom: 35px;
}
header .inner {
  display: flex;
  justify-content: space-between;
  width: 990px;
  padding: 0 20px;
  margin: 0 auto;
}
@media screen and (min-width: 1281px) {
  header .inner {
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  header .inner {
    margin: 0 auto;
  }
}
@media screen and (max-width: 639px) {
  header .inner {
    width: 80%;
  }
}
@media screen and (max-width: 479px) {
  header .inner {
    width: 100%;
  }
}
@media screen and (max-width: 1279px) {
  header .inner {
    padding-bottom: 75px;
  }
}
@media screen and (min-width: 1280px) and (max-height: 720px) {
  header .inner {
    padding-bottom: 75px;
  }
}
header .header-image {
  max-width: 100%;
  height: 665px;
  width: 97%;
  top: -232px;
  background-size: cover;
  background-position: 25px center;
  background-repeat: no-repeat;
  position: absolute;
  right: -120px;
}
@media screen and (max-width: 958px) {
  header .header-image {
    height: 430px;
    width: 630px;
    top: -247px;
  }
}
@media screen and (max-width: 639px) {
  header .header-image {
    top: -250px;
    background-position: right;
    left: 50%;
    transform: translate(-50%,0);
    -webkit-transform: translate(-50%,0);
    -moz-transform: translate(-50%,0);
    -o-transform: translate(-50%,0);
    -ms-transform: translate(-50%,0);
    height: 370px;
  }
}
@media screen and (max-width: 539px) {
  header .header-image {
    height: 350px;
  }
}
@media screen and (max-width: 379px) {
  header .header-image {
    height: 253px;
    top: -200px;
  }
}
@media screen and (max-width: 379px) {
  header .header-image {
    position: relative;
    height: 300px;
    top: 30px;
  }
}
header .heading-wrapper {
  width: 100%;
  z-index: 5;
  margin-top: -75px;
}
header .heading-wrapper h2 {
  padding: 5px;
}
header .heading-wrapper h2.first:first-of-type,
header .heading-wrapper h2.second:first-of-type {
  padding-right: 0;
  margin-bottom: 5px;
}
@media screen and (max-width: 959px) {
  header .heading-wrapper h2.first:first-of-type,
  header .heading-wrapper h2.second:first-of-type {
    float: none;
    padding: 5px;
  }
}
@media screen and (max-width: 959px) {
  header .heading-wrapper h2.first:nth-of-type(2),
  header .heading-wrapper h2.second:nth-of-type(2) {
    float: none;
    padding: 5px;
  }
}
header .heading-wrapper .second:first-of-type {
  padding-right: 0;
  margin-bottom: 5px;
}
@media screen and (max-width: 959px) {
  header .heading-wrapper .second:first-of-type {
    float: none;
    padding: 5px;
  }
}
header .heading-wrapper .second:nth-of-type(2) {
  margin-bottom: 5px;
}
@media screen and (max-width: 959px) {
  header .heading-wrapper .second:nth-of-type(2) {
    float: none;
    padding: 5px;
  }
}
header .heading-wrapper .second:nth-of-type(3) {
  clear: both;
  float: none;
}
@media screen and (max-width: 379px) {
  header .heading-wrapper {
    top: -40px;
  }
}
@media screen and (max-width: 1279px) {
  header {
    height: auto;
    min-height: 100vh;
  }
}
@media screen and (min-width: 1280px) and (max-height: 720px) {
  header {
    height: auto;
  }
}
@media screen and (min-width: 1281px) {
  header {
    padding-left: 0;
  }
}
@media screen and (max-width: 767px) {
  header {
    padding-left: 0;
  }
}
header .header-button {
  margin-top: 35px;
  padding: 20px 18px;
  display: block;
  background-color: #46eded;
  color: #252f45;
  text-transform: uppercase;
  display: inline-block;
  font-weight: 700;
  letter-spacing: 3px;
  text-align: center;
  line-height: 21px;
  border: 2px solid #46eded;
}
header .header-button:hover {
  background-color: transparent;
  color: #46eded;
}
header .scroll-down {
  height: 80px;
  background-color: #223f56;
  width: 100%;
  position: absolute;
  bottom: 0;
}
header .scroll-down a {
  width: 75px;
  margin: 0 auto;
  display: block;
  top: -37px;
}
header .scroll-down a img {
  max-width: 100%;
}
@media screen and (max-height: 825px) {
  header .scroll-down {
    display: none;
  }
}
@media screen and (max-width: 639px) {
  header .scroll-down {
    display: none;
  }
}
@media screen and (max-width: 379px) {
  header {
    padding-top: 60px;
  }
  header .inner {
    flex-wrap: wrap-reverse;
  }
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  text-transform: uppercase;
  color: #46eded;
  max-width: 700px;
  display: table;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}
h1 {
  -webkit-hyphens: none;
  -moz-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
  font-size: 58px;
  letter-spacing: 1.5px;
  line-height: 58px;
  margin: 45px 0;
  text-shadow: 2px 2px 10px rgba(255,255,255,0.2);
}
@media screen and (max-width: 599px) {
  h1 {
    font-size: 40px;
    letter-spacing: 1px;
    line-height: 40px;
    margin: 25px 0;
  }
}
h2,
h3 {
  font-size: 18px;
  letter-spacing: 4.6px;
  color: white;
  float: none;
}
h2:after,
h3:after {
  content: "";
  clear: both;
}
@media screen and (max-width: 599px) {
  h2,
  h3 {
    font-size: 15px;
    letter-spacing: 2.3px;
    line-height: 18px;
  }
}
h2 {
  color: #252f45;
  background-color: #46eded;
}
main {
  color: white;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}
main .background {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  background-size: cover;
  left: 0;
}
main h2 {
  -webkit-hyphens: none;
  -moz-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
  background-color: transparent;
  color: #46eded;
  font-size: 58px;
  letter-spacing: 1.5px;
  line-height: 58px;
  margin: 0 0 20px;
}
@media screen and (max-width: 599px) {
  main h2 {
    margin-top: 0;
    font-size: 40px;
    letter-spacing: 1px;
    line-height: 45px;
    margin: 25px 0;
  }
}
@media screen and (max-width: 379px) {
  main h2 {
    font-size: 35px;
    line-height: 40px;
  }
}
@media screen and (max-width: 359px) {
  main h2 {
    font-size: 30px;
    line-height: 35px;
  }
}
main h3 {
  font-size: 18px;
  letter-spacing: 4.6px;
  color: white;
  color: #252f45;
  background-color: #46eded;
  padding: 5px;
}
@media screen and (max-width: 599px) {
  main h3 {
    font-size: 15px;
    letter-spacing: 2.3px;
    line-height: 18px;
  }
}
main h4 {
  font-size: 18px;
  letter-spacing: 4.6px;
  color: white;
  float: none;
  line-height: 24px;
}
@media screen and (max-width: 599px) {
  main h4 {
    font-size: 15px;
    letter-spacing: 2.3px;
    line-height: 18px;
  }
}
@media screen and (max-width: 959px) {
  main #warumwir {
    padding-bottom: 75px !important;
  }
}
@media screen and (max-width: 599px) {
  main #karriere {
    padding-bottom: 20px !important;
  }
}
@media screen and (max-width: 959px) {
  main #kennenlernen {
    padding-bottom: 65px !important;
  }
}
@media screen and (max-width: 959px) {
  main #durchstarten h2 {
    margin-top: 0;
  }
}
main section.heading-years {
  padding-bottom: 0;
}
main section.heading-years h4 {
  margin-bottom: 26px;
}
main section.heading-years h2 {
  font-size: 58px;
  letter-spacing: 1.5px;
  line-height: 58px;
  margin-bottom: 0;
}
main section.heading-years .section-wrapper {
  max-width: 682px;
  width: 80%;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 959px) {
  main section.heading-years .section-wrapper {
    max-width: 682px;
    width: 80%;
  }
}
@media screen and (max-width: 767px) {
  main section.heading-years .section-wrapper {
    margin: 0 auto;
  }
}
@media screen and (max-width: 639px) {
  main section.heading-years .section-wrapper {
    width: 80%;
  }
}
@media screen and (max-width: 479px) {
  main section.heading-years .section-wrapper {
    width: 100%;
  }
}
@media screen and (max-width: 959px) {
  main section.heading-years {
    padding-bottom: 0 !important;
    padding-top: 0 !important;
  }
}
main section.anlagen:after,
main section.elektriker:after,
main section.kaufmann:after,
main section.planer:after,
main section.mechatronik:after {
  z-index: 100;
  content: "";
  display: block;
  background-size: cover;
  background-position: center;
  width: 200px;
  height: 135px;
  background-image: url(../img/icon-wave-anlagen-01.svg);
  position: absolute;
  left: 50%;
  bottom: -135px;
  transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  -moz-transform: translate(-50%,-50%);
  -o-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  background-repeat: no-repeat;
}
@media screen and (max-width: 599px) {
  main section.anlagen:after,
  main section.elektriker:after,
  main section.kaufmann:after,
  main section.planer:after,
  main section.mechatronik:after {
    width: 100px;
  }
}
@media screen and (max-width: 599px) {
  main section.anlagen,
  main section.elektriker,
  main section.kaufmann,
  main section.planer,
  main section.mechatronik {
    padding-bottom: 75px !important;
  }
}
main section.elektriker:after {
  background-image: url(../img/icon-flash-elektro-01-01.svg);
}
main section.kaufmann:after {
  background-image: url(../img/icon-kaufmann-01-01.svg);
}
main section.planer:after {
  background-image: url(../img/icon-house-system-01.svg);
}
main section.mechatronik:after {
  background-image: url(../img/icon-mechatronik-01.svg);
}
main section .jobs-list-no-jobs {
  margin-top: 40px;
  font-size: 15px;
  line-height: 26px;
  letter-spacing: 1.6px;
  font-weight: 700;
}
main section.heading-text,
main section.heading-text-image-felder,
main section.video {
  margin: 0;
  width: 100%;
  max-width: 100%;
  padding-top: 125px;
  padding-bottom: 125px;
  background-position: center;
  background-size: cover;
}
main section.heading-text .section-wrapper,
main section.heading-text-image-felder .section-wrapper,
main section.video .section-wrapper {
  max-width: 682px;
  width: 80%;
  margin: 0 auto;
  padding: 0 20px;
  line-height: 1.2em;
}
main section.heading-text .section-wrapper p,
main section.heading-text-image-felder .section-wrapper p,
main section.video .section-wrapper p {
  margin-top: 55px;
  color: white;
  font-size: 16px;
  line-height: 25px;
  letter-spacing: .25px;
}
@media screen and (max-width: 959px) {
  main section.heading-text .section-wrapper p,
  main section.heading-text-image-felder .section-wrapper p,
  main section.video .section-wrapper p {
    margin-top: 35px;
  }
}
@media screen and (min-width: 960px) {
  main section.heading-text .section-wrapper p,
  main section.heading-text-image-felder .section-wrapper p,
  main section.video .section-wrapper p {
    font-size: 15px;
    line-height: 26px;
    letter-spacing: 1.6px;
  }
}
main section.heading-text .section-wrapper ul,
main section.heading-text-image-felder .section-wrapper ul,
main section.video .section-wrapper ul {
  margin-top: 75px;
}
main section.heading-text .section-wrapper ul li,
main section.heading-text-image-felder .section-wrapper ul li,
main section.video .section-wrapper ul li {
  margin-bottom: 50px;
}
main section.heading-text .section-wrapper ul li p,
main section.heading-text-image-felder .section-wrapper ul li p,
main section.video .section-wrapper ul li p {
  margin-top: 15px;
}
main section.heading-text .section-wrapper ul li a,
main section.heading-text-image-felder .section-wrapper ul li a,
main section.video .section-wrapper ul li a {
  margin-bottom: 15px;
  margin-top: 44px;
  padding: 20px 18px;
  display: block;
  background-color: #46eded;
  color: #252f45;
  text-transform: uppercase;
  display: inline-block;
  font-weight: 700;
  letter-spacing: 3px;
  text-align: center;
  line-height: 21px;
  border: 2px solid #46eded;
}
main section.heading-text .section-wrapper ul li a:hover,
main section.heading-text-image-felder .section-wrapper ul li a:hover,
main section.video .section-wrapper ul li a:hover {
  background-color: transparent;
  color: #46eded;
}
main section.heading-text .section-wrapper ul.icons-list,
main section.heading-text-image-felder .section-wrapper ul.icons-list,
main section.video .section-wrapper ul.icons-list {
  background-size: contain;
  background-position: center 0px;
  background-repeat: no-repeat;
}
main section.heading-text .section-wrapper ul.icons-list li,
main section.heading-text-image-felder .section-wrapper ul.icons-list li,
main section.video .section-wrapper ul.icons-list li {
  display: flex;
  justify-content: center;
  width: 33%;
  float: left;
  flex-wrap: wrap;
}
main section.heading-text .section-wrapper ul.icons-list li .icon,
main section.heading-text-image-felder .section-wrapper ul.icons-list li .icon,
main section.video .section-wrapper ul.icons-list li .icon {
  width: 100px;
  height: 100px;
  background-size: cover;
  margin-bottom: 50px;
}
main section.heading-text .section-wrapper ul.icons-list li .text,
main section.heading-text-image-felder .section-wrapper ul.icons-list li .text,
main section.video .section-wrapper ul.icons-list li .text {
  width: 150px;
  flex-basis: 150px;
  text-align: center;
  font-size: 12px;
  line-height: 17px;
  letter-spacing: .6px;
  font-weight: 100;
  text-transform: uppercase;
}
@media screen and (max-width: 959px) {
  main section.heading-text .section-wrapper ul.icons-list li .text,
  main section.heading-text-image-felder .section-wrapper ul.icons-list li .text,
  main section.video .section-wrapper ul.icons-list li .text {
    font-weight: 100;
  }
}
main section.heading-text .section-wrapper ul.icons-list:after,
main section.heading-text-image-felder .section-wrapper ul.icons-list:after,
main section.video .section-wrapper ul.icons-list:after {
  content: "";
  clear: both;
  display: block;
}
@media screen and (max-width: 599px) {
  main section.heading-text .section-wrapper ul.icons-list,
  main section.heading-text-image-felder .section-wrapper ul.icons-list,
  main section.video .section-wrapper ul.icons-list {
    background-image: none !important;
  }
  main section.heading-text .section-wrapper ul.icons-list li,
  main section.heading-text-image-felder .section-wrapper ul.icons-list li,
  main section.video .section-wrapper ul.icons-list li {
    float: none;
    width: 100%;
    justify-content: space-between;
    margin-bottom: 0;
  }
  main section.heading-text .section-wrapper ul.icons-list li .text,
  main section.heading-text-image-felder .section-wrapper ul.icons-list li .text,
  main section.video .section-wrapper ul.icons-list li .text {
    flex-basis: 60%;
    padding-top: 35px;
    text-align: left;
  }
}
main section.heading-text .section-wrapper ul.links-list,
main section.heading-text-image-felder .section-wrapper ul.links-list,
main section.video .section-wrapper ul.links-list {
  margin-top: 40px;
}
main section.heading-text .section-wrapper ul.links-list li,
main section.heading-text-image-felder .section-wrapper ul.links-list li,
main section.video .section-wrapper ul.links-list li {
  margin-bottom: 10px;
}
main section.heading-text .section-wrapper ul.links-list li:last-of-type,
main section.heading-text-image-felder .section-wrapper ul.links-list li:last-of-type,
main section.video .section-wrapper ul.links-list li:last-of-type {
  margin-bottom: 0;
}
main section.heading-text .section-wrapper ul.links-list a,
main section.heading-text-image-felder .section-wrapper ul.links-list a,
main section.video .section-wrapper ul.links-list a {
  margin-top: 0;
  min-width: 250px;
}
main section.heading-text .section-wrapper ul.jobs-list,
main section.heading-text-image-felder .section-wrapper ul.jobs-list,
main section.video .section-wrapper ul.jobs-list {
  display: table;
  border-collapse: collapse;
}
main section.heading-text .section-wrapper ul.jobs-list li,
main section.heading-text-image-felder .section-wrapper ul.jobs-list li,
main section.video .section-wrapper ul.jobs-list li {
  display: table-row;
  cursor: pointer;
  transition: .2s ease-in-out;
  border-bottom: 1px solid white;
  border-bottom: 1px solid #46eded;
}
main section.heading-text .section-wrapper ul.jobs-list li:hover,
main section.heading-text-image-felder .section-wrapper ul.jobs-list li:hover,
main section.video .section-wrapper ul.jobs-list li:hover {
  opacity: .8;
}
main section.heading-text .section-wrapper ul.jobs-list li:first-of-type,
main section.heading-text-image-felder .section-wrapper ul.jobs-list li:first-of-type,
main section.video .section-wrapper ul.jobs-list li:first-of-type {
  text-transform: uppercase;
  color: #46eded;
  font-weight: 600;
  height: 40px;
}
@media screen and (max-width: 599px) {
  main section.heading-text .section-wrapper ul.jobs-list li:first-of-type,
  main section.heading-text-image-felder .section-wrapper ul.jobs-list li:first-of-type,
  main section.video .section-wrapper ul.jobs-list li:first-of-type {
    height: auto;
  }
}
main section.heading-text .section-wrapper ul.jobs-list li:last-of-type,
main section.heading-text-image-felder .section-wrapper ul.jobs-list li:last-of-type,
main section.video .section-wrapper ul.jobs-list li:last-of-type {
  border-bottom: none;
}
main section.heading-text .section-wrapper ul.jobs-list li span,
main section.heading-text-image-felder .section-wrapper ul.jobs-list li span,
main section.video .section-wrapper ul.jobs-list li span {
  display: table-cell;
  vertical-align: top;
  padding: 12px 5px;
  line-height: 17px;
  font-size: 17px;
  color: #46eded;
}
main section.heading-text .section-wrapper ul.jobs-list li span:first-of-type,
main section.heading-text-image-felder .section-wrapper ul.jobs-list li span:first-of-type,
main section.video .section-wrapper ul.jobs-list li span:first-of-type {
  width: 125px;
}
main section.heading-text .section-wrapper ul.jobs-list li span:last-of-type,
main section.heading-text-image-felder .section-wrapper ul.jobs-list li span:last-of-type,
main section.video .section-wrapper ul.jobs-list li span:last-of-type {
  width: 125px;
}
@media screen and (max-width: 599px) {
  main section.heading-text .section-wrapper ul.jobs-list li span:last-of-type,
  main section.heading-text-image-felder .section-wrapper ul.jobs-list li span:last-of-type,
  main section.video .section-wrapper ul.jobs-list li span:last-of-type {
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 599px) {
  main section.heading-text .section-wrapper ul.jobs-list li span,
  main section.heading-text-image-felder .section-wrapper ul.jobs-list li span,
  main section.video .section-wrapper ul.jobs-list li span {
    display: block;
  }
}
main section.heading-text .section-wrapper ul.jobs-list li a,
main section.heading-text-image-felder .section-wrapper ul.jobs-list li a,
main section.video .section-wrapper ul.jobs-list li a {
  display: contents;
  line-height: 17px;
  font-size: 17px;
  font-weight: 300;
  letter-spacing: 0.5px;
  text-transform: none;
  padding: 0;
  background-color: transparent !important;
  border: 0;
  text-align: left;
  color: #46eded;
  margin: 0;
}
@media screen and (max-width: 599px) {
  main section.heading-text .section-wrapper ul.jobs-list li a,
  main section.heading-text-image-felder .section-wrapper ul.jobs-list li a,
  main section.video .section-wrapper ul.jobs-list li a {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 599px) {
  main section.heading-text .section-wrapper ul.jobs-list li,
  main section.heading-text-image-felder .section-wrapper ul.jobs-list li,
  main section.video .section-wrapper ul.jobs-list li {
    display: block;
  }
}
@media screen and (max-width: 599px) {
  main section.heading-text .section-wrapper ul.jobs-list,
  main section.heading-text-image-felder .section-wrapper ul.jobs-list,
  main section.video .section-wrapper ul.jobs-list {
    display: block;
  }
}
main section.heading-text .section-wrapper ul.expanders-list,
main section.heading-text-image-felder .section-wrapper ul.expanders-list,
main section.video .section-wrapper ul.expanders-list {
  margin-top: 58px;
}
main section.heading-text .section-wrapper ul.expanders-list li,
main section.heading-text-image-felder .section-wrapper ul.expanders-list li,
main section.video .section-wrapper ul.expanders-list li {
  overflow: hidden;
  height: 31px;
  transition: .2s ease-out;
  -webkit-transition: .2s ease-out;
  -moz-transition: .2s ease-out;
  -o-transition: .2s ease-out;
  -ms-transition: .2s ease-out;
  cursor: pointer;
  margin-bottom: 5px;
}
main section.heading-text .section-wrapper ul.expanders-list li span,
main section.heading-text-image-felder .section-wrapper ul.expanders-list li span,
main section.video .section-wrapper ul.expanders-list li span {
  background-color: #46eded;
  display: block;
  padding: 8px 25px 8px 16px;
  color: #1e3041;
  font-weight: 800;
  letter-spacing: .25px;
  width: 100%;
}
main section.heading-text .section-wrapper ul.expanders-list li span:after,
main section.heading-text .section-wrapper ul.expanders-list li span:before,
main section.heading-text-image-felder .section-wrapper ul.expanders-list li span:after,
main section.heading-text-image-felder .section-wrapper ul.expanders-list li span:before,
main section.video .section-wrapper ul.expanders-list li span:after,
main section.video .section-wrapper ul.expanders-list li span:before {
  display: block;
  content: "";
  width: 10px;
  height: 2px;
  background-color: #1e3041;
  position: absolute;
  top: 50%;
  transform: translate(0,-50%);
  -webkit-transform: translate(0,-50%);
  -moz-transform: translate(0,-50%);
  -o-transform: translate(0,-50%);
  -ms-transform: translate(0,-50%);
  right: 10px;
  z-index: 10;
}
main section.heading-text .section-wrapper ul.expanders-list li span:after,
main section.heading-text-image-felder .section-wrapper ul.expanders-list li span:after,
main section.video .section-wrapper ul.expanders-list li span:after {
  width: 2px;
  height: 10px;
  right: 14px;
  opacity: 1;
  transition: .2s ease-in;
  -webkit-transition: .2s ease-in;
  -moz-transition: .2s ease-in;
  -o-transition: .2s ease-in;
  -ms-transition: .2s ease-in;
}
main section.heading-text .section-wrapper ul.expanders-list li p,
main section.heading-text-image-felder .section-wrapper ul.expanders-list li p,
main section.video .section-wrapper ul.expanders-list li p {
  padding: 8px 16px;
}
main section.heading-text .section-wrapper ul.expanders-list li.expanded,
main section.heading-text-image-felder .section-wrapper ul.expanders-list li.expanded,
main section.video .section-wrapper ul.expanders-list li.expanded {
  height: auto;
  transition: .2s ease-in;
  -webkit-transition: .2s ease-in;
  -moz-transition: .2s ease-in;
  -o-transition: .2s ease-in;
  -ms-transition: .2s ease-in;
}
main section.heading-text .section-wrapper ul.expanders-list li.expanded span:after,
main section.heading-text-image-felder .section-wrapper ul.expanders-list li.expanded span:after,
main section.video .section-wrapper ul.expanders-list li.expanded span:after {
  opacity: 0;
  transition: .2s ease-out;
  -webkit-transition: .2s ease-out;
  -moz-transition: .2s ease-out;
  -o-transition: .2s ease-out;
  -ms-transition: .2s ease-out;
}
main section.heading-text .section-wrapper ul.expanders-list li:last-of-type,
main section.heading-text-image-felder .section-wrapper ul.expanders-list li:last-of-type,
main section.video .section-wrapper ul.expanders-list li:last-of-type {
  margin-bottom: 0;
}
@media screen and (max-width: 379px) {
  main section.heading-text .section-wrapper ul.expanders-list li,
  main section.heading-text-image-felder .section-wrapper ul.expanders-list li,
  main section.video .section-wrapper ul.expanders-list li {
    height: 55px;
  }
  main section.heading-text .section-wrapper ul.expanders-list li span,
  main section.heading-text-image-felder .section-wrapper ul.expanders-list li span,
  main section.video .section-wrapper ul.expanders-list li span {
    height: 55px;
    line-height: 21px;
    display: flex;
    align-items: center;
  }
}
@media screen and (max-width: 599px) {
  main section.heading-text .section-wrapper ul,
  main section.heading-text-image-felder .section-wrapper ul,
  main section.video .section-wrapper ul {
    margin-top: 50px;
  }
}
main section.heading-text .section-wrapper .video,
main section.heading-text-image-felder .section-wrapper .video,
main section.video .section-wrapper .video {
  margin-top: 55px;
  height: auto;
}
@media screen and (max-width: 959px) {
  main section.heading-text .section-wrapper .video,
  main section.heading-text-image-felder .section-wrapper .video,
  main section.video .section-wrapper .video {
    margin-top: 35px;
  }
}
@media screen and (min-width: 1281px) {
  main section.heading-text .section-wrapper,
  main section.heading-text-image-felder .section-wrapper,
  main section.video .section-wrapper {
    margin: 0 auto;
  }
}
@media screen and (max-width: 1279px) {
  main section.heading-text .section-wrapper,
  main section.heading-text-image-felder .section-wrapper,
  main section.video .section-wrapper {
    margin: 0 auto;
  }
}
@media screen and (max-width: 639px) {
  main section.heading-text .section-wrapper,
  main section.heading-text-image-felder .section-wrapper,
  main section.video .section-wrapper {
    width: 80%;
  }
}
@media screen and (max-width: 479px) {
  main section.heading-text .section-wrapper,
  main section.heading-text-image-felder .section-wrapper,
  main section.video .section-wrapper {
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  main section.heading-text .section-wrapper,
  main section.heading-text-image-felder .section-wrapper,
  main section.video .section-wrapper {
    margin: 0 auto !important;
  }
}
@media screen and (max-width: 839px) {
  main section.heading-text,
  main section.heading-text-image-felder,
  main section.video {
    padding-bottom: 100px;
  }
}
@media screen and (min-width: 1281px) {
  main section.heading-text,
  main section.heading-text-image-felder,
  main section.video {
    padding-left: 0;
  }
}
@media screen and (max-width: 767px) {
  main section.heading-text,
  main section.heading-text-image-felder,
  main section.video {
    padding-left: 0;
  }
}
main section.heading-text-image-felder .section-wrapper {
  padding: 0 20px;
}
@media screen and (max-width: 1279px) {
  main section.heading-text-image-felder .section-wrapper {
    margin: 0 auto;
  }
}
@media screen and (max-width: 639px) {
  main section.heading-text-image-felder .section-wrapper {
    width: 80%;
  }
}
@media screen and (max-width: 479px) {
  main section.heading-text-image-felder .section-wrapper {
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  main section.heading-text-image-felder .section-wrapper {
    margin: 0 auto !important;
  }
}
@media screen and (min-width: 1281px) {
  main section.heading-text-image-felder {
    padding-left: 0;
  }
}
@media screen and (max-width: 767px) {
  main section.heading-text-image-felder {
    padding-left: 0;
  }
}
main section.radar {
  padding-bottom: 90px;
  padding-top: 80px;
}
main section.radar .inner {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  main section.radar .inner {
    justify-content: center;
    flex-wrap: wrap;
  }
}
main section.radar .section-wrapper {
  max-width: 682px;
  width: 80%;
  margin: 0;
  padding: 0 20px;
  margin: 0 auto;
}
main section.radar .section-wrapper h3 {
  margin-bottom: 30px;
}
main section.radar .section-wrapper .counting-radar {
  margin-top: 65px;
}
@media screen and (max-width: 959px) {
  main section.radar .section-wrapper .counting-radar {
    margin-top: 10px;
  }
}
main section.radar .section-wrapper .map {
  height: 450px;
  width: 350px;
}
@media screen and (max-width: 767px) {
  main section.radar .section-wrapper .map {
    margin-top: 50px;
  }
}
main section.radar .section-wrapper h4 {
  margin-bottom: 100px;
  max-width: 100%;
}
@media screen and (max-width: 959px) {
  main section.radar .section-wrapper h4 {
    margin-bottom: 50px;
  }
}
main section.radar .section-wrapper a {
  margin-top: 40px;
  padding: 20px 18px;
  display: block;
  background-color: #46eded;
  color: #252f45;
  text-transform: uppercase;
  display: inline-block;
  font-weight: 700;
  letter-spacing: 3px;
  text-align: center;
  line-height: 21px;
  border: 2px solid #46eded;
}
main section.radar .section-wrapper a:hover {
  background-color: transparent;
  color: #46eded;
}
@media screen and (max-width: 767px) {
  main section.radar .section-wrapper a {
    margin: 50px auto;
    left: 50%;
    transform: translate(-50%,0);
    -webkit-transform: translate(-50%,0);
    -moz-transform: translate(-50%,0);
    -o-transform: translate(-50%,0);
    -ms-transform: translate(-50%,0);
  }
}
main section.radar .section-wrapper h5 {
  width: 270px;
  margin: 10px auto;
  font-size: 170px;
  letter-spacing: 3px;
  font-weight: 700;
  display: flex;
  justify-content: center;
}
main section.radar .section-wrapper h5 span {
  display: block;
  width: 90px;
  text-align: center;
}
@media screen and (max-width: 479px) {
  main section.radar .section-wrapper h5 {
    max-width: 100%;
  }
}
@media screen and (max-width: 959px) {
  main section.radar .section-wrapper {
    width: 80%;
  }
}
@media screen and (max-width: 767px) {
  main section.radar .section-wrapper {
    margin: 0 auto;
  }
}
@media screen and (max-width: 639px) {
  main section.radar .section-wrapper {
    width: 80%;
  }
}
@media screen and (max-width: 479px) {
  main section.radar .section-wrapper {
    width: 100%;
  }
}
@media screen and (min-width: 1281px) {
  main section.radar {
    padding-left: 0;
  }
}
@media screen and (max-width: 767px) {
  main section.radar {
    padding-left: 0;
  }
}
@media screen and (max-width: 959px) {
  main section.radar {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
  }
}
main section.slider {
  padding-top: 175px;
  padding-bottom: 80px;
  background-color: #1e3041;
  max-width: none;
}
main section.slider * {
  max-width: none;
}
main section.slider .lSSlideOuter,
main section.slider .content-slider {
  max-width: 893px;
  width: 80%;
  margin: 0 auto;
}
@media screen and (min-width: 1281px) {
  main section.slider .lSSlideOuter,
  main section.slider .content-slider {
    margin: 0 auto;
  }
}
@media screen and (max-width: 959px) {
  main section.slider .lSSlideOuter,
  main section.slider .content-slider {
    max-width: 99%;
    width: auto;
  }
}
@media screen and (max-width: 767px) {
  main section.slider .lSSlideOuter,
  main section.slider .content-slider {
    margin: 0 auto;
  }
}
@media screen and (max-width: 639px) {
  main section.slider .lSSlideOuter,
  main section.slider .content-slider {
    width: 79%;
  }
}
@media screen and (max-width: 479px) {
  main section.slider .lSSlideOuter,
  main section.slider .content-slider {
    width: 99%;
  }
}
main section.slider ul li {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
main section.slider ul li .left {
  float: left;
  flex-basis: 50%;
  max-width: 99%;
  height: 370px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 839px) {
  main section.slider ul li .left {
    flex-basis: 80%;
    max-width: 682px;
    padding: 0 20px;
    background-size: contain;
  }
}
@media screen and (max-width: 599px) {
  main section.slider ul li .left {
    flex-basis: 100%;
  }
}
main section.slider ul li .right {
  float: right;
  flex-basis: 50%;
}
main section.slider ul li .right p {
  width: 100%;
  max-width: 100%;
  margin-top: 80px;
  margin-top: 55px;
  color: white;
  font-size: 16px;
  line-height: 25px;
  letter-spacing: .25px;
}
@media screen and (max-width: 959px) {
  main section.slider ul li .right p {
    margin-top: 15px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 839px) {
  main section.slider ul li .right p {
    padding-right: 0;
  }
}
@media screen and (min-width: 960px) {
  main section.slider ul li .right p {
    font-size: 15px;
    line-height: 26px;
    letter-spacing: 1.6px;
  }
}
@media screen and (max-width: 767px) {
  main section.slider ul li .right p {
    width: 100%;
  }
}
@media screen and (max-width: 959px) {
  main section.slider ul li .right p {
    margin-top: 30px;
  }
}
@media screen and (max-width: 839px) {
  main section.slider ul li .right {
    flex-basis: 80%;
    max-width: 682px;
    padding: 0 20px;
  }
}
@media screen and (max-width: 599px) {
  main section.slider ul li .right {
    flex-basis: 100%;
  }
}
@media screen and (max-width: 839px) {
  main section.slider ul li .left,
  main section.slider ul li .right {
    float: none;
    margin: 0 auto;
  }
  main section.slider ul li .right {
    margin-top: 35px;
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 649px) {
  main section.slider ul li .right {
    margin-top: 0;
  }
}
main section.slider ul li:after {
  display: block;
  content: "";
  clear: both;
}
@media screen and (max-width: 839px) {
  main section.slider ul li {
    flex-wrap: wrap;
    justify-content: center;
    flex-wrap: wrap-reverse;
  }
}
main section.slider .lSPager li a {
  height: 8px !important;
  background-color: #46eded !important;
  opacity: .5 !important;
  width: 8px !important;
}
main section.slider .lSPager li.active a {
  opacity: 1 !important;
}
@media screen and (min-width: 1281px) {
  main section.slider {
    padding-left: 0;
  }
}
@media screen and (max-width: 767px) {
  main section.slider {
    padding-left: 0;
  }
}
@media screen and (max-width: 959px) {
  main section.slider {
    padding-bottom: 65px !important;
  }
}
main section.references ul {
  max-width: 980px;
  width: 80%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 20px;
  margin: 0 auto;
}
main section.references ul li {
  flex-basis: 27.75%;
  margin-bottom: 95px;
  opacity: 0;
  top: 50px;
  transition: .6s ease-in;
  -webkit-transition: .6s ease-in;
  -moz-transition: .6s ease-in;
  -o-transition: .6s ease-in;
  -ms-transition: .6s ease-in;
}
main section.references ul li .image {
  background-position: center;
  background-size: cover;
  height: 250px;
  width: 100%;
  background-color: rgba(0,0,0,0.1);
  margin-bottom: 15px;
}
main section.references ul li h4 {
  margin-bottom: 15px;
  min-height: 72px;
}
main section.references ul li p {
  font-size: 15px;
  line-height: 26px;
  letter-spacing: 1.6px;
}
@media screen and (max-width: 1279px) {
  main section.references ul li {
    flex-basis: 47.5%;
  }
}
@media screen and (max-width: 599px) {
  main section.references ul li {
    flex-basis: 100%;
  }
}
main section.references ul:after {
  content: "";
  flex-basis: 33%;
}
@media screen and (min-width: 1281px) {
  main section.references ul {
    margin: 0 auto;
  }
}
@media screen and (max-width: 639px) {
  main section.references ul {
    width: 80%;
  }
}
@media screen and (max-width: 479px) {
  main section.references ul {
    width: 100%;
  }
}
@media screen and (min-width: 1280px) and (max-height: 720px) {
  main section.references ul {
    padding-bottom: 75px;
  }
}
main section.links ul li {
  height: 61px;
  margin-bottom: 40px;
}
main section.links ul li .link {
  font-size: 15px;
  line-height: 26px;
  letter-spacing: 1.6px;
  color: #46eded;
  font-weight: 700;
  display: flex;
  align-items: center;
}
main section.links ul li .link img {
  width: 48px;
  float: left;
  margin-right: 20px;
}
main section.links ul li:after {
  content: "";
  clear: both;
}
main section.links ul li:last-of-type {
  margin-bottom: 0;
}
main section.links .section-wrapper {
  max-width: 682px;
  width: 80%;
  margin: 0 auto;
  padding: 0 20px 150px;
}
@media screen and (min-width: 1281px) {
  main section.links .section-wrapper {
    margin: 0 auto;
  }
}
@media screen and (max-width: 959px) {
  main section.links .section-wrapper {
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  main section.links .section-wrapper {
    margin: 0 auto;
  }
}
@media screen and (max-width: 639px) {
  main section.links .section-wrapper {
    width: 80%;
  }
}
@media screen and (max-width: 479px) {
  main section.links .section-wrapper {
    width: 100%;
  }
}
@media screen and (min-width: 1280px) and (max-height: 720px) {
  main section.links .section-wrapper {
    padding-bottom: 75px;
  }
}
@media screen and (min-width: 1281px) {
  main section.links {
    padding-left: 0;
  }
}
@media screen and (max-width: 767px) {
  main section.links {
    padding-left: 0;
  }
}
@media screen and (max-width: 959px) {
  main section.links {
    padding-top: 0 !important;
  }
}
main section.maps {
  padding-bottom: 130px;
}
main section.maps .map {
  height: 450px;
  width: 350px;
}
main section.maps .section-wrapper {
  max-width: 682px;
  width: 80%;
  margin: 0;
  padding: 0 20px;
  margin: 0 auto;
}
main section.maps .section-wrapper .inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
main section.maps .section-wrapper .inner .right {
  width: 380px;
  margin-top: 35px;
}
main section.maps .section-wrapper .inner .right h3 {
  margin-bottom: 55px;
}
main section.maps .section-wrapper .inner .right ul {
  column-count: 2;
  list-style: disc;
  margin-left: 19px;
}
main section.maps .section-wrapper .inner .right ul li {
  color: #46eded;
  font-weight: 800;
  font-size: 18px;
  line-height: 27px;
  text-transform: uppercase;
}
@media screen and (max-width: 859px) {
  main section.maps .section-wrapper .inner .right {
    margin-top: 50px;
  }
}
@media screen and (max-width: 859px) {
  main section.maps .section-wrapper .inner {
    justify-content: center;
  }
}
@media screen and (max-width: 959px) {
  main section.maps .section-wrapper {
    max-width: 100%;
    width: 80%;
  }
}
@media screen and (max-width: 767px) {
  main section.maps .section-wrapper {
    margin: 0 auto;
  }
}
@media screen and (max-width: 639px) {
  main section.maps .section-wrapper {
    width: 80%;
  }
}
@media screen and (max-width: 479px) {
  main section.maps .section-wrapper {
    width: 100%;
  }
}
@media screen and (min-width: 1281px) {
  main section.maps {
    padding-left: 0;
  }
}
@media screen and (max-width: 767px) {
  main section.maps {
    padding-left: 0;
  }
}
main section.digits {
  padding-bottom: 120px;
}
main section.digits ul {
  max-width: 682px;
  width: 80%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 auto;
}
main section.digits ul li {
  flex-basis: 49%;
  text-align: center;
}
main section.digits ul li .icon {
  background-size: auto 48px;
  background-position: center;
  height: 48px;
  width: 100%;
  background-repeat: no-repeat;
  width: 300px;
}
main section.digits ul li h5 {
  width: 300px;
  margin: 10px auto 0;
  font-size: 145px;
  letter-spacing: 3px;
  font-weight: 700;
  display: flex;
  justify-content: center;
}
main section.digits ul li h5 span {
  display: block;
  width: 90px;
  text-align: center;
  margin: 0 auto;
}
main section.digits ul li h6 {
  margin: 0 auto;
  width: 300px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 3px;
  color: white;
}
@media screen and (max-width: 839px) {
  main section.digits ul li {
    margin-top: 70px;
  }
  main section.digits ul li:first-of-type {
    margin-top: 40px;
  }
}
main section.digits ul:after {
  content: "";
  flex-basis: 33%;
}
@media screen and (max-width: 800px) {
  main section.digits ul:after {
    flex-basis: 100%;
  }
}
@media screen and (min-width: 1281px) {
  main section.digits ul {
    margin: 0 auto;
  }
}
@media screen and (max-width: 1279px) {
  main section.digits ul {
    width: 85%;
  }
}
@media screen and (max-width: 800px) {
  main section.digits ul {
    justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  main section.digits ul {
    width: 100%;
  }
}
@media screen and (min-width: 1281px) {
  main section.digits {
    padding-left: 0;
  }
}
@media screen and (max-width: 958px) {
  main section.digits {
    padding-top: 0 !important;
  }
}
@media screen and (max-width: 767px) {
  main section.digits {
    padding-left: 0;
  }
}
@media screen and (max-width: 639px) {
  main section.digits {
    width: 80%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 479px) {
  main section.digits {
    width: 100%;
  }
}
main section.questions {
  padding-bottom: 85px;
  padding-top: 150px;
}
main section.questions .section-wrapper {
  margin-top: 80px;
  max-width: 682px;
  width: 80%;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 639px) {
  main section.questions .section-wrapper {
    width: 80%;
  }
}
@media screen and (max-width: 479px) {
  main section.questions .section-wrapper {
    width: 100%;
  }
}
main section.questions .ul-wrapper {
  margin-top: 80px;
}
main section.questions .ul-wrapper ul li {
  padding-right: 40px;
  opacity: 1;
  transition: .5s ease-in-out;
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  -ms-transition: .5s ease-in-out;
  border-bottom: 1px solid #46eded;
  padding-bottom: 25px;
  margin-top: 27px;
  cursor: pointer;
  transition: .3s ease-in;
  -webkit-transition: .3s ease-in;
  -moz-transition: .3s ease-in;
  -o-transition: .3s ease-in;
  -ms-transition: .3s ease-in;
}
main section.questions .ul-wrapper ul li h4 {
  font-size: 17px;
  line-height: 21px;
  color: #46eded;
  text-transform: none;
  letter-spacing: 2px;
}
main section.questions .ul-wrapper ul li p {
  font-size: 15px;
  line-height: 21px;
  letter-spacing: 1px;
  opacity: 0;
  height: 0;
  margin: 0;
  transition: .1s ease-out;
  -webkit-transition: .1s ease-out;
  -moz-transition: .1s ease-out;
  -o-transition: .1s ease-out;
  -ms-transition: .1s ease-out;
}
main section.questions .ul-wrapper ul li a {
  position: absolute;
  right: 0;
  display: block;
  width: 48px;
  height: 38px;
  top: 0;
}
main section.questions .ul-wrapper ul li a:after,
main section.questions .ul-wrapper ul li a:before {
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  -moz-transform: translate(-50%,-50%);
  -o-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  position: absolute;
  width: 3px;
  height: 15px;
  display: block;
  content: "";
  background-color: #46eded;
  transition: .1s ease-out;
  -webkit-transition: .1s ease-out;
  -moz-transition: .1s ease-out;
  -o-transition: .1s ease-out;
  -ms-transition: .1s ease-out;
}
main section.questions .ul-wrapper ul li a:before {
  width: 15px;
  height: 3px;
}
@media screen and (min-width: 767px) {
  main section.questions .ul-wrapper ul li a {
    top: -11px;
  }
}
main section.questions .ul-wrapper ul li:first-of-type {
  margin-top: 0;
}
main section.questions .ul-wrapper ul li.open a:after {
  opacity: 0;
  transition: .2s ease-in;
  -webkit-transition: .2s ease-in;
  -moz-transition: .2s ease-in;
  -o-transition: .2s ease-in;
  -ms-transition: .2s ease-in;
}
main section.questions .ul-wrapper ul li.open p {
  margin-top: 25px;
  height: auto;
  opacity: 1;
  transition: .3s ease-in;
  -webkit-transition: .3s ease-in;
  -moz-transition: .3s ease-in;
  -o-transition: .3s ease-in;
  -ms-transition: .3s ease-in;
}
main section.questions .ul-wrapper ul li.non-visible {
  opacity: 0;
  height: 0;
  margin: 0;
  padding: 0;
  border-bottom: 0;
  display: none;
}
main section.questions .load-more {
  margin-top: 44px;
  padding: 20px 18px;
  display: block;
  background-color: #46eded;
  color: #252f45;
  text-transform: uppercase;
  display: inline-block;
  font-weight: 700;
  letter-spacing: 3px;
  text-align: center;
  line-height: 21px;
  border: 2px solid #46eded;
}
main section.questions .load-more:hover {
  background-color: transparent;
  color: #46eded;
}
main section.only-text {
  width: 80%;
  max-width: 545px;
  margin: 0 auto;
  padding-bottom: 250px;
}
@media screen and (max-width: 599px) {
  main section {
    margin: 0 auto !important;
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
}
main section .popup-job-details {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  overflow-y: scroll;
}
main section .popup-job-details .popup-nav {
  transition: .2s ease-in-out;
  -webkit-transition: .2s ease-in-out;
  -moz-transition: .2s ease-in-out;
  -o-transition: .2s ease-in-out;
  -ms-transition: .2s ease-in-out;
  padding: 45px 4% 0;
  display: flex;
  justify-content: space-between;
  z-index: 15;
  position: fixed;
  width: 100%;
  align-items: center;
}
@media screen and (max-width: 599px) {
  main section .popup-job-details .popup-nav {
    padding: 10px 4%;
  }
  main section .popup-job-details .popup-nav .close-button .font {
    display: none;
  }
  main section .popup-job-details .popup-nav .logo {
    height: 27px;
  }
}
main section .popup-job-details .popup-nav.scrolled-nav {
  background-color: #223f56;
  padding: 10px 4%;
  box-shadow: 0px 0px 2px 4px rgba(0,0,0,0.2);
}
main section .popup-job-details .popup-job-details-content {
  background-color: #252F45;
}
main section .popup-job-details .popup-job-details-content div,
main section .popup-job-details .popup-job-details-content li,
main section .popup-job-details .popup-job-details-content p {
  color: white;
  font-size: 16px;
  line-height: 25px !important;
  letter-spacing: .25px;
}
@media screen and (min-width: 960px) {
  main section .popup-job-details .popup-job-details-content div,
  main section .popup-job-details .popup-job-details-content li,
  main section .popup-job-details .popup-job-details-content p {
    font-size: 15px;
    line-height: 26px !important;
    letter-spacing: 1.6px;
  }
}
main section .popup-job-details .popup-job-details-content .button {
  margin-top: 44px;
  padding: 20px 18px;
  display: block;
  background-color: #46eded;
  color: #252f45;
  text-transform: uppercase;
  display: inline-block;
  font-weight: 700;
  letter-spacing: 3px;
  text-align: center;
  line-height: 21px;
  border: 2px solid #46eded;
}
main section .popup-job-details .popup-job-details-content .button:hover {
  background-color: transparent;
  color: #46eded;
}
main section .popup-job-details .popup-job-details-content .content {
  padding: 0 calc((100vw - 1052px) / 2);
}
main section .popup-job-details .popup-job-details-content .content h2 {
  margin-bottom: 40px;
}
main section .popup-job-details .popup-job-details-content .content.not-full {
  padding-right: calc((100vw - 1052px) / 2 + 372px);
}
main section .popup-job-details .popup-job-details-content .intro {
  display: flex;
  padding-top: 182px;
  padding-bottom: 80px;
  min-height: 100vh;
  background: url(../img/Menu-BG.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
main section .popup-job-details .popup-job-details-content .intro .container-left {
  width: 100%;
}
main section .popup-job-details .popup-job-details-content .intro .container-left h3 {
  margin-bottom: 10px;
}
main section .popup-job-details .popup-job-details-content .intro .container-left h4 {
  margin-top: 20px;
}
main section .popup-job-details .popup-job-details-content .intro .container-left >.job-offer {
  margin-top: 60px;
  color: #46eded;
  font-size: 58px;
  font-weight: 700;
  letter-spacing: 1.5px;
  line-height: 64px !important;
  text-transform: uppercase;
}
main section .popup-job-details .popup-job-details-content .intro .container-left >.job-offer ul,
main section .popup-job-details .popup-job-details-content .intro .container-left >.job-offer li,
main section .popup-job-details .popup-job-details-content .intro .container-left >.job-offer p {
  font-weight: 400;
  text-transform: none;
}
main section .popup-job-details .popup-job-details-content .intro .container-left >.job-offer ul {
  list-style: disc;
  margin: 10px 0px 50px 25px;
}
main section .popup-job-details .popup-job-details-content .intro .container-left >.job-offer p {
  margin: 10px 0 50px;
}
main section .popup-job-details .popup-job-details-content .intro .container-left >.job-offer h2 {
  margin-top: 40px;
}
main section .popup-job-details .popup-job-details-content .intro .container-right {
  max-width: 370px;
  width: 100%;
  padding-left: 85px;
}
main section .popup-job-details .popup-job-details-content .intro .container-right h4 {
  margin-bottom: 40px;
  hyphens: none;
}
main section .popup-job-details .popup-job-details-content .job-needs {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #223F56;
}
main section .popup-job-details .popup-job-details-content .about-rom {
  background-color: #252F45;
  padding-top: 80px;
}
main section .popup-job-details .popup-job-details-content .job-end {
  margin-top: 40px;
  padding-bottom: 70px;
}
main section .popup-job-details.show {
  display: block;
}
@media (max-width: 1150px) {
  main section .popup-job-details .popup-job-details-content .content {
    padding-left: 10vw;
    padding-right: 10vw;
  }
  main section .popup-job-details .popup-job-details-content .content.not-full {
    padding-right: 10vw;
  }
  main section .popup-job-details .popup-job-details-content .intro {
    flex-direction: column;
    padding-top: 180px;
    padding-bottom: 80px;
  }
  main section .popup-job-details .popup-job-details-content .intro .container-right {
    padding-left: 0;
    padding-top: 60px;
    max-width: 100%;
  }
}
@media (max-width: 590px) {
  main section .popup-job-details .popup-job-details-content .content {
    padding-left: 20px;
    padding-right: 20px;
  }
  main section .popup-job-details .popup-job-details-content .content.not-full {
    padding-right: 20px;
  }
}
.visible {
  opacity: 1 !important;
  top: 0 !important;
}
footer {
  z-index: 10;
  background-color: #1e3041;
  display: flex;
  justify-content: space-between;
  padding: 45px 4% 31px;
  position: relative;
  bottom: 0;
  width: 100%;
}
footer .rud-logo {
  width: 100px;
  display: block;
}
@media screen and (max-width: 599px) {
  footer .rud-logo {
    display: none;
  }
}
footer .socials {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
footer .socials .legals {
  margin-right: 10px;
}
footer .socials .legals a {
  color: white;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: .5px;
}
footer .socials .legals a:first-of-type {
  border-right: 1px solid white;
  padding-right: 9px;
}
footer .socials .legals a:nth-of-type(2) {
  padding-left: 5px;
}
@media screen and (max-width: 599px) {
  footer .socials .legals {
    position: absolute;
    flex-basis: 100%;
    flex-basis: 148px;
    margin-bottom: 15px;
  }
}
footer .socials .img-buttons {
  display: flex;
  justify-content: space-between;
  width: 80px;
}
@media screen and (max-width: 599px) {
  footer .socials .img-buttons {
    flex-basis: 100%;
    justify-content: space-between;
  }
}
footer .socials .img-button {
  width: 35px;
  height: 35px;
  display: block;
}
@media screen and (max-width: 599px) {
  footer .socials {
    width: 100%;
    justify-content: center;
  }
}
@media screen and (max-height: 700px) {
  footer {
    position: relative;
  }
}
@media screen and (max-width: 599px) {
  footer {
    padding: 4%;
  }
}
@media screen and (max-width: 479px) {
  footer {
    display: block;
  }
}
footer.sticky {
  position: fixed;
  bottom: 0;
}
.jvectormap-tip {
  border: #46eded;
  background-color: #223f56;
  border: 1px solid #46eded;
  color: #46eded;
}
text.jvectormap-element {
  z-index: -1;
  width: 0;
  display: none;
}
aside {
  left: 50px;
  top: 175px;
  position: fixed;
  opacity: 0;
  transition: .2s opacity ease-out;
  -webkit-transition: .2s opacity ease-out;
  -moz-transition: .2s opacity ease-out;
  -o-transition: .2s opacity ease-out;
  -ms-transition: .2s opacity ease-out;
  z-index: 1000;
}
aside ul li {
  padding-bottom: 25px;
  display: flex;
  align-items: center;
  transition: .4s linear;
  -webkit-transition: .4s linear;
  -moz-transition: .4s linear;
  -o-transition: .4s linear;
  -ms-transition: .4s linear;
}
aside ul li a {
  box-sizing: unset;
  color: white;
  font-size: 10px;
  line-height: 11px;
  text-transform: uppercase;
}
aside ul li a:before {
  display: block;
  content: "";
  width: 11px;
  height: 11px;
  background-color: white;
  border-radius: 50%;
  float: left;
  margin-right: 16px;
  transition: .4s ease-out;
  -webkit-transition: .4s ease-out;
  -moz-transition: .4s ease-out;
  -o-transition: .4s ease-out;
  -ms-transition: .4s ease-out;
}
aside ul li a:after {
  top: -5px;
  left: -5px;
  position: absolute;
  opacity: 0;
  display: block;
  content: "";
  width: 21px;
  height: 21px;
  background-color: transparent;
  border-radius: 50%;
  border: 1px solid white;
  margin-right: 16px;
  box-sizing: border-box;
  transition: .4s linear;
  -webkit-transition: .4s linear;
  -moz-transition: .4s linear;
  -o-transition: .4s linear;
  -ms-transition: .4s linear;
}
aside ul li.active {
  padding-bottom: 60px;
  transition: .4s linear;
  -webkit-transition: .4s linear;
  -moz-transition: .4s linear;
  -o-transition: .4s linear;
  -ms-transition: .4s linear;
}
aside ul li.active a:before {
  background-color: #46eded;
  transition: .4s linear;
  -webkit-transition: .4s linear;
  -moz-transition: .4s linear;
  -o-transition: .4s linear;
  -ms-transition: .4s linear;
}
aside ul li.active a:after {
  opacity: 1;
  transition: .4s linear;
  -webkit-transition: .4s linear;
  -moz-transition: .4s linear;
  -o-transition: .4s linear;
  -ms-transition: .4s linear;
}
aside ul li.active:after {
  height: 60px;
}
aside ul li:after {
  content: "";
  clear: both;
  z-index: -1;
  left: 5px;
  display: block;
  height: 27px;
  background-color: white;
  width: 1px;
  position: absolute;
  top: 10px;
  transition: .4s linear;
  -webkit-transition: .4s linear;
  -moz-transition: .4s linear;
  -o-transition: .4s linear;
  -ms-transition: .4s linear;
}
aside ul li:last-of-type {
  padding-bottom: 0;
}
aside ul li:last-of-type:after {
  display: none;
}
aside ul li:last-of-type:before {
  content: "";
  clear: both;
  z-index: -1;
  left: 5px;
  display: block;
  height: 60px;
  background-color: white;
  width: 1px;
  position: absolute;
  transform: translate(0,-30px);
  -webkit-transform: translate(0,-30px);
  -moz-transform: translate(0,-30px);
  -o-transform: translate(0,-30px);
  -ms-transform: translate(0,-30px);
}
aside ul li:last-of-type.active {
  padding-bottom: 0;
  padding-top: 35px;
}
aside ul:before {
  display: block;
  position: absolute;
  width: 1px;
  height: 100%;
  background-color: white;
}
aside.fixed {
  left: 50px;
  top: 175px;
  position: fixed;
  opacity: 1;
  transition: .4s opacity ease-out;
  -webkit-transition: .4s opacity ease-out;
  -moz-transition: .4s opacity ease-out;
  -o-transition: .4s opacity ease-out;
  -ms-transition: .4s opacity ease-out;
}
@media screen and (max-width: 1200px) {
  aside {
    display: none;
  }
}
.page-11 footer.sticky {
  background-color: transparent;
}
.world {
  z-index: 0;
}
.world-menu {
  position: absolute;
  top: 33% !important;
  left: 50% !important;
  transform: translate(-50%,0);
  -webkit-transform: translate(-50%,0);
  -moz-transform: translate(-50%,0);
  -o-transform: translate(-50%,0);
  -ms-transform: translate(-50%,0);
  color: white;
  opacity: 0;
  transition: .1s ease-out;
  -webkit-transition: .1s ease-out;
  -moz-transition: .1s ease-out;
  -o-transition: .1s ease-out;
  -ms-transition: .1s ease-out;
  width: 0;
  height: 0;
  overflow: hidden;
  z-index: 10;
}
.world-menu .menu-elektroniker-container,
.world-menu .menu-kaufmann-container,
.world-menu .menu-systemplaner-container,
.world-menu .menu-mechatronik-container,
.world-menu .menu-anlagenmechaniker-container {
  width: 350px;
  margin-left: -20px;
}
.world-menu .menu-elektroniker-container ul,
.world-menu .menu-kaufmann-container ul,
.world-menu .menu-systemplaner-container ul,
.world-menu .menu-mechatronik-container ul,
.world-menu .menu-anlagenmechaniker-container ul {
  max-width: none;
  width: 300px;
  margin-left: -6px;
}
.world-menu .menu-elektroniker-container ul li,
.world-menu .menu-kaufmann-container ul li,
.world-menu .menu-systemplaner-container ul li,
.world-menu .menu-mechatronik-container ul li,
.world-menu .menu-anlagenmechaniker-container ul li {
  margin-bottom: 15px;
}
.world-menu .menu-elektroniker-container ul li:before,
.world-menu .menu-kaufmann-container ul li:before,
.world-menu .menu-systemplaner-container ul li:before,
.world-menu .menu-mechatronik-container ul li:before,
.world-menu .menu-anlagenmechaniker-container ul li:before {
  float: left;
  margin-right: 5px;
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  background-size: 60%;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../img/arrow.png);
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
}
@media screen and (max-width: 599px) {
  .world-menu .menu-elektroniker-container ul li:before,
  .world-menu .menu-kaufmann-container ul li:before,
  .world-menu .menu-systemplaner-container ul li:before,
  .world-menu .menu-mechatronik-container ul li:before,
  .world-menu .menu-anlagenmechaniker-container ul li:before {
    background-size: 100%;
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
    -o-transform: none;
    -ms-transform: none;
    background-image: url(../img/arrow-blue.svg);
  }
}
.world-menu .menu-elektroniker-container ul li a,
.world-menu .menu-kaufmann-container ul li a,
.world-menu .menu-systemplaner-container ul li a,
.world-menu .menu-mechatronik-container ul li a,
.world-menu .menu-anlagenmechaniker-container ul li a {
  display: flex;
  line-height: 18px;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 100;
  font-size: 14px;
  letter-spacing: .8px;
  color: rgba(255,255,255,0.8);
}
.world-menu .menu-elektroniker-container ul li a:hover,
.world-menu .menu-kaufmann-container ul li a:hover,
.world-menu .menu-systemplaner-container ul li a:hover,
.world-menu .menu-mechatronik-container ul li a:hover,
.world-menu .menu-anlagenmechaniker-container ul li a:hover {
  color: #46eded;
}
@media screen and (max-width: 599px) {
  .world-menu .menu-elektroniker-container ul li a:hover,
  .world-menu .menu-kaufmann-container ul li a:hover,
  .world-menu .menu-systemplaner-container ul li a:hover,
  .world-menu .menu-mechatronik-container ul li a:hover,
  .world-menu .menu-anlagenmechaniker-container ul li a:hover {
    color: #252f45;
  }
}
@media screen and (max-width: 959px) {
  .world-menu .menu-elektroniker-container ul li a,
  .world-menu .menu-kaufmann-container ul li a,
  .world-menu .menu-systemplaner-container ul li a,
  .world-menu .menu-mechatronik-container ul li a,
  .world-menu .menu-anlagenmechaniker-container ul li a {
    font-weight: 800;
    letter-spacing: 1px;
  }
}
@media screen and (max-width: 599px) {
  .world-menu .menu-elektroniker-container ul li a,
  .world-menu .menu-kaufmann-container ul li a,
  .world-menu .menu-systemplaner-container ul li a,
  .world-menu .menu-mechatronik-container ul li a,
  .world-menu .menu-anlagenmechaniker-container ul li a {
    color: #252f45;
  }
}
.world-menu h2 {
  margin-bottom: 25px;
  color: white;
  background-color: transparent;
  padding: 0;
}
@media screen and (max-width: 959px) {
  .world-menu h2 {
    font-size: 20px;
  }
}
@media screen and (max-width: 599px) {
  .world-menu h2 {
    color: #252f45;
  }
}
.world-menu.visible {
  z-index: 9 !important;
  overflow: visible;
  height: auto;
  width: 350px;
  opacity: 1;
  transition: .2s ease-in;
  -webkit-transition: .2s ease-in;
  -moz-transition: .2s ease-in;
  -o-transition: .2s ease-in;
  -ms-transition: .2s ease-in;
  top: 33% !important;
  left: 100% !important;
  transform: translate(-100%,0);
  -webkit-transform: translate(-100%,0);
  -moz-transform: translate(-100%,0);
  -o-transform: translate(-100%,0);
  -ms-transform: translate(-100%,0);
  padding: 25px 25px;
}
@media screen and (max-width: 599px) {
  .world-menu.visible {
    width: 100%;
    height: 100%;
    left: 50% !important;
    top: 0% !important;
    transform: translate(-50%,0) !important;
    -webkit-transform: translate(-50%,0) !important;
    -moz-transform: translate(-50%,0) !important;
    -o-transform: translate(-50%,0) !important;
    -ms-transform: translate(-50%,0) !important;
    transition: .75s ease-in-out;
    -webkit-transition: .75s ease-in-out;
    -moz-transition: .75s ease-in-out;
    -o-transition: .75s ease-in-out;
    -ms-transition: .75s ease-in-out;
    padding: 50px;
    z-index: 11;
  }
}
.world-menu .icon {
  position: relative;
  width: 50px;
  height: 60px;
  background-image: url(../img/icon-mechatronik-01.svg);
  background-size: 225%;
  left: -4px;
  top: -10px;
  background-position: center;
}
.world-menu .icon.elektrik {
  left: -10px;
  background-image: url(../img/icon-flash-elektro-01-01.svg);
}
@media screen and (max-width: 599px) {
  .world-menu .icon.elektrik {
    background-image: url(../img/icon-flash-elektro-blue.svg);
  }
}
.world-menu .icon.anlagen {
  left: 0px;
  background-size: 115%;
  background-image: url(../img/icon-wave-anlagen-01.svg);
}
@media screen and (max-width: 599px) {
  .world-menu .icon.anlagen {
    background-image: url(../img/icon-wave-anlagen-blue.svg);
  }
}
.world-menu .icon.system {
  left: -8px;
  background-image: url(../img/icon-house-system-01.svg);
}
@media screen and (max-width: 599px) {
  .world-menu .icon.system {
    background-image: url(../img/icon-house-system-blue.svg);
  }
}
.world-menu .icon.kaufmann {
  left: 0px;
  background-image: url(../img/icon-kaufmann-01-01.svg);
}
@media screen and (max-width: 599px) {
  .world-menu .icon.kaufmann {
    background-image: url(../img/icon-kaufmann-blue.svg);
  }
}
@media screen and (max-width: 599px) {
  .world-menu .icon {
    background-image: url(../img/icon-mechatronik-blue.svg);
  }
}
@media screen and (max-width: 599px) {
  .world-menu {
    transition: .45s ease-in-out;
    -webkit-transition: .45s ease-in-out;
    -moz-transition: .45s ease-in-out;
    -o-transition: .45s ease-in-out;
    -ms-transition: .45s ease-in-out;
    left: 50% !important;
    top: 100% !important;
    transform: translate(-50%,0);
    -webkit-transform: translate(-50%,0);
    -moz-transform: translate(-50%,0);
    -o-transform: translate(-50%,0);
    -ms-transform: translate(-50%,0);
    background-color: #46eded;
    width: 100%;
    height: 100%;
    padding: 50px;
  }
  .world-menu a:hover {
    color: white;
  }
}
.world-menu .close {
  display: block;
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 10px;
  margin: 0 auto;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
}
.world-menu .close:before,
.world-menu .close:after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background-color: white;
  border-radius: 1px;
  position: absolute;
  left: 50%;
  transition: .1s ease-out;
  -webkit-transition: .1s ease-out;
  -moz-transition: .1s ease-out;
  -o-transition: .1s ease-out;
  -ms-transition: .1s ease-out;
  transform: translate(-50%,0);
  -webkit-transform: translate(-50%,0);
  -moz-transform: translate(-50%,0);
  -o-transform: translate(-50%,0);
  -ms-transform: translate(-50%,0);
  top: 24px;
}
.world-menu .close:before {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  left: 14px;
  top: 24px;
}
.world-menu .close:after {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  left: 14px;
  top: 24px;
}
@media screen and (min-width: 600px) {
  .world-menu .close {
    display: none;
  }
}
@media screen and (max-width: 599px) {
  .world-menu .close:before,
  .world-menu .close:after {
    background-color: #252f45;
  }
}
.loader {
  transition: .5s ease-out;
  -webkit-transition: .5s ease-out;
  -moz-transition: .5s ease-out;
  -o-transition: .5s ease-out;
  -ms-transition: .5s ease-out;
  background: #223f56;
  background: radial-gradient(#223f56,#091b21,#020b10);
  background: -moz-radial-gradient(#223f56,#091b21,#020b10);
  background: -webkit-radial-gradient(#223f56,#091b21,#020b10);
  z-index: 9;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.loader svg {
  left: calc(50% - 30px);
  top: calc(50% - 30px);
  max-width: none;
  transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  -moz-transform: translate(-50%,-50%);
  -o-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  width: 60px;
  animation: 2s spin infinite linear;
}
.loader.non-vis {
  opacity: 0;
  -webkit-transition-delay: .5;
  -moz-transition-delay: .5;
  -o-transition-delay: .5;
  transition-delay: .5;
}
.loader.transparent {
  z-index: -1;
}
.loader.non-vis svg .st2 {
  opacity: 0;
  transition: .4s ease-out;
  -webkit-transition: .4s ease-out;
  -moz-transition: .4s ease-out;
  -o-transition: .4s ease-out;
  -ms-transition: .4s ease-out;
  -webkit-transition-delay: .2s;
  -moz-transition-delay: .2s;
  -o-transition-delay: .2s;
  transition-delay: .2s;
}
.page-11 {
  background: #020b10;
}
.page-11 body {
  background: #223f56;
  background: radial-gradient(#223f56,#091b21,#020b10);
  background: -moz-radial-gradient(#223f56,#091b21,#020b10);
  background: -webkit-radial-gradient(#223f56,#091b21,#020b10);
}
@media screen and (max-width: 959px) {
  .page-11 {
    background-color: transparent;
  }
}
.index {
  background-color: transparent;
}
@-moz-keyframes spin {
  0% {
    transform: scale(1) rotate(0deg);
    -webkit-transform: scale(1) rotate(0deg);
    -moz-transform: scale(1) rotate(0deg);
    -o-transform: scale(1) rotate(0deg);
    -ms-transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.25) rotate(180deg);
    -webkit-transform: scale(1.25) rotate(180deg);
    -moz-transform: scale(1.25) rotate(180deg);
    -o-transform: scale(1.25) rotate(180deg);
    -ms-transform: scale(1.25) rotate(180deg);
  }
  100% {
    transform: scale(1) rotate(360deg);
    -webkit-transform: scale(1) rotate(360deg);
    -moz-transform: scale(1) rotate(360deg);
    -o-transform: scale(1) rotate(360deg);
    -ms-transform: scale(1) rotate(360deg);
  }
}
@-webkit-keyframes spin {
  0% {
    transform: scale(1) rotate(0deg);
    -webkit-transform: scale(1) rotate(0deg);
    -moz-transform: scale(1) rotate(0deg);
    -o-transform: scale(1) rotate(0deg);
    -ms-transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.25) rotate(180deg);
    -webkit-transform: scale(1.25) rotate(180deg);
    -moz-transform: scale(1.25) rotate(180deg);
    -o-transform: scale(1.25) rotate(180deg);
    -ms-transform: scale(1.25) rotate(180deg);
  }
  100% {
    transform: scale(1) rotate(360deg);
    -webkit-transform: scale(1) rotate(360deg);
    -moz-transform: scale(1) rotate(360deg);
    -o-transform: scale(1) rotate(360deg);
    -ms-transform: scale(1) rotate(360deg);
  }
}
@keyframes spin {
  0% {
    transform: scale(1) rotate(0deg);
    -webkit-transform: scale(1) rotate(0deg);
    -moz-transform: scale(1) rotate(0deg);
    -o-transform: scale(1) rotate(0deg);
    -ms-transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.25) rotate(180deg);
    -webkit-transform: scale(1.25) rotate(180deg);
    -moz-transform: scale(1.25) rotate(180deg);
    -o-transform: scale(1.25) rotate(180deg);
    -ms-transform: scale(1.25) rotate(180deg);
  }
  100% {
    transform: scale(1) rotate(360deg);
    -webkit-transform: scale(1) rotate(360deg);
    -moz-transform: scale(1) rotate(360deg);
    -o-transform: scale(1) rotate(360deg);
    -ms-transform: scale(1) rotate(360deg);
  }
}
.impressum p,
.datenschutz p {
  margin-top: 0 !important;
  margin-bottom: 25px;
}
.impressum p a,
.datenschutz p a {
  color: white;
  text-decoration: underline;
}
.instructions {
  opacity: 0;
  transition: .5s ease-in-out;
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  -ms-transition: .5s ease-in-out;
  width: 100px;
  height: 100px;
  position: absolute;
  left: 50%;
  transform: translate(-50%,0);
  -webkit-transform: translate(-50%,0);
  -moz-transform: translate(-50%,0);
  -o-transform: translate(-50%,0);
  -ms-transform: translate(-50%,0);
  bottom: 80px;
}
.instructions .background {
  top: 0;
  left: 0;
  position: absolute;
  background-image: url(../img/explain-bg-01.png);
  width: 70px;
  height: 70px;
  background-size: cover;
  background-position: center;
  animation: 2s pulse infinite linear;
}
.instructions .front {
  top: 0;
  left: 0;
  position: absolute;
  background-image: url(../img/select-hand-01.png);
  width: 70px;
  height: 70px;
  background-size: cover;
  background-position: center;
  transform-origin: bottom center;
  animation: 3s rotate infinite linear;
}
.instructions.visible {
  opacity: 1;
  left: 50%;
  transform: translate(-50%,0) !important;
  -webkit-transform: translate(-50%,0) !important;
  -moz-transform: translate(-50%,0) !important;
  -o-transform: translate(-50%,0) !important;
  -ms-transform: translate(-50%,0) !important;
  bottom: 80px !important;
  top: initial !important;
}
@-moz-keyframes pulse {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
  }
  50% {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -o-transform: scale(1.2);
    -ms-transform: scale(1.2);
  }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
  }
}
@-webkit-keyframes pulse {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
  }
  50% {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -o-transform: scale(1.2);
    -ms-transform: scale(1.2);
  }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
  }
  50% {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -o-transform: scale(1.2);
    -ms-transform: scale(1.2);
  }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
  }
}
@-moz-keyframes rotate {
  0% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
  }
  25% {
    transform: rotate(30deg);
    -webkit-transform: rotate(30deg);
    -moz-transform: rotate(30deg);
    -o-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
  }
  50% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
  }
  75% {
    transform: rotate(-30deg);
    -webkit-transform: rotate(-30deg);
    -moz-transform: rotate(-30deg);
    -o-transform: rotate(-30deg);
    -ms-transform: rotate(-30deg);
  }
  100% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
  }
}
@-webkit-keyframes rotate {
  0% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
  }
  25% {
    transform: rotate(30deg);
    -webkit-transform: rotate(30deg);
    -moz-transform: rotate(30deg);
    -o-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
  }
  50% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
  }
  75% {
    transform: rotate(-30deg);
    -webkit-transform: rotate(-30deg);
    -moz-transform: rotate(-30deg);
    -o-transform: rotate(-30deg);
    -ms-transform: rotate(-30deg);
  }
  100% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
  }
  25% {
    transform: rotate(30deg);
    -webkit-transform: rotate(30deg);
    -moz-transform: rotate(30deg);
    -o-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
  }
  50% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
  }
  75% {
    transform: rotate(-30deg);
    -webkit-transform: rotate(-30deg);
    -moz-transform: rotate(-30deg);
    -o-transform: rotate(-30deg);
    -ms-transform: rotate(-30deg);
  }
  100% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
  }
}
html.page-11 body {
  touch-action: none;
}
@media screen and (max-width: 599px) {
  html.page-11 {
    position: fixed;
  }
}
.up {
  z-index: 100;
  width: 52px;
  height: 52px;
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translate(-50%,0) rotate(180deg);
  -webkit-transform: translate(-50%,0) rotate(180deg);
  -moz-transform: translate(-50%,0) rotate(180deg);
  -o-transform: translate(-50%,0) rotate(180deg);
  -ms-transform: translate(-50%,0) rotate(180deg);
  opacity: 1;
  transition: .3s ease-in-out;
  -webkit-transition: .3s ease-in-out;
  -moz-transition: .3s ease-in-out;
  -o-transition: .3s ease-in-out;
  -ms-transition: .3s ease-in-out;
  cursor: pointer;
}
.up.non-visible {
  opacity: 0;
  cursor: default;
  transition: .3s ease-in-out;
  -webkit-transition: .3s ease-in-out;
  -moz-transition: .3s ease-in-out;
  -o-transition: .3s ease-in-out;
  -ms-transition: .3s ease-in-out;
}
@media screen and (min-width: 960px) {
  .up {
    display: none !important;
  }
}
.dmp_cookiebox-wrap {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  z-index: 9999;
}
.dmp_cookiebox-wrap.dmp_active {
  display: block;
}
.dmp_cookiebox-wrap * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.dmp_cookiebox-wrap .dmp_cookiebox-overlay {
  width: 100%;
  height: 100vh;
  background-color: rgba(0,0,0,0.75);
  padding: 3vw;
  display: flex;
  justify-content: center;
  align-items: center;
}
.dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox {
  max-width: 640px;
  max-height: 100%;
  background-color: white;
  padding: 35px 45px 25px;
  overflow-y: auto;
  transition: .3s;
}
.dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content {
  font-size: 14px;
  color: #616160;
}
.dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content .dmp_cookiebox__content--headline {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #252f45;
}
.dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content .dmp_cookiebox__content--headline .logo-dot {
  position: relative;
  display: inline-block;
  width: 22px;
  height: 22px;
  background-color: #9dfaef;
  border-radius: 50%;
  vertical-align: middle;
  margin: -6px 12px 0 -2px;
}
.dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content .dmp_cookiebox__content--text {
  margin-bottom: 22px;
  line-height: 1.3em;
  color: #252f45;
}
.dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content .dmp_cookiebox__content--buttons {
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
}
.dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content .dmp_cookiebox__content--buttons .dmp_cookiebox-button,
.dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content .dmp_cookiebox__content--buttons .dmp_cookiebox-link {
  background-color: #f2f2f2;
  font-size: 18px;
  padding: 10px;
  text-align: center;
  border-radius: 5px;
  cursor: pointer;
  transition: .3s;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-basis: 32%;
}
.dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content .dmp_cookiebox__content--buttons .dmp_cookiebox-button:hover,
.dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content .dmp_cookiebox__content--buttons .dmp_cookiebox-link:hover {
  background-color: #dddcdc;
}
.dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content.dmp_cookiebox-simple .dmp_cookiebox__content--cookie-selection {
  margin-bottom: 15px;
}
.dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content.dmp_cookiebox-simple .dmp_cookiebox__content--cookie-selection .dmp_cookie-selection__item {
  margin-bottom: 10px;
}
.dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content.dmp_cookiebox-simple .dmp_cookiebox__content--cookie-selection .dmp_cookie-selection__item .dmp_cookie-selection__item--checkbox {
  display: none;
}
.dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content.dmp_cookiebox-simple .dmp_cookiebox__content--cookie-selection .dmp_cookie-selection__item .dmp_cookie-selection__item--checkbox:checked + .dmp_cookie-selection__item--label .dmp_cookie-selection__item--display {
  position: relative;
}
.dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content.dmp_cookiebox-simple .dmp_cookiebox__content--cookie-selection .dmp_cookie-selection__item .dmp_cookie-selection__item--checkbox:checked + .dmp_cookie-selection__item--label .dmp_cookie-selection__item--display::before,
.dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content.dmp_cookiebox-simple .dmp_cookiebox__content--cookie-selection .dmp_cookie-selection__item .dmp_cookie-selection__item--checkbox:checked + .dmp_cookie-selection__item--label .dmp_cookie-selection__item--display::after {
  content: '';
  position: absolute;
  background-color: gray;
  height: 2px;
}
.dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content.dmp_cookiebox-simple .dmp_cookiebox__content--cookie-selection .dmp_cookie-selection__item .dmp_cookie-selection__item--checkbox:checked + .dmp_cookie-selection__item--label .dmp_cookie-selection__item--display::before {
  top: 7px;
  left: 2px;
  width: 5px;
  transform: rotate(50deg);
}
.dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content.dmp_cookiebox-simple .dmp_cookiebox__content--cookie-selection .dmp_cookie-selection__item .dmp_cookie-selection__item--checkbox:checked + .dmp_cookie-selection__item--label .dmp_cookie-selection__item--display::after {
  top: 6px;
  left: 4px;
  width: 10px;
  transform: rotate(-50deg);
}
.dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content.dmp_cookiebox-simple .dmp_cookiebox__content--cookie-selection .dmp_cookie-selection__item .dmp_cookie-selection__item--checkbox:disabled + .dmp_cookie-selection__item--label .dmp_cookie-selection__item--display {
  background-color: white;
  border-color: #f2f2f2;
}
.dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content.dmp_cookiebox-simple .dmp_cookiebox__content--cookie-selection .dmp_cookie-selection__item .dmp_cookie-selection__item--label {
  cursor: pointer;
}
.dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content.dmp_cookiebox-simple .dmp_cookiebox__content--cookie-selection .dmp_cookie-selection__item .dmp_cookie-selection__item--label .dmp_cookie-selection__item--display {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-bottom: -3px;
  background-color: #f2f2f2;
  border: 1px solid grey;
  margin-right: 10px;
}
.dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content.dmp_cookiebox-simple .dmp_cookiebox__content--links .dmp_cookiebox-links-wrap {
  text-align: center;
  margin-bottom: 10px;
}
.dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content.dmp_cookiebox-simple .dmp_cookiebox__content--links .dmp_cookiebox-links-wrap:last-child {
  margin-bottom: 0;
}
.dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content.dmp_cookiebox-simple .dmp_cookiebox__content--links .dmp_cookiebox-links-wrap .dmp_cookiebox-link {
  display: inline;
  color: #616160;
  text-decoration: none;
  cursor: pointer;
}
.dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content.dmp_cookiebox-advanced {
  display: none;
}
.dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content.dmp_cookiebox-advanced .dmp_cookiebox__content--buttons {
  display: flex;
}
.dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content.dmp_cookiebox-advanced .dmp_cookiebox__content--buttons .dmp_cookiebox-button {
  margin-right: 7px;
}
.dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content.dmp_cookiebox-advanced .dmp_cookiebox__content--buttons .dmp_cookiebox-button:last-child {
  margin-right: 0;
}
.dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content.dmp_cookiebox-advanced .dmp_cookiebox__content--buttons .dmp_toggle-advanced {
  display: flex;
  align-items: center;
  margin-left: auto;
  cursor: pointer;
}
@media (max-width: 699px) {
  .dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content.dmp_cookiebox-advanced .dmp_cookiebox__content--buttons {
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
  }
  .dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content.dmp_cookiebox-advanced .dmp_cookiebox__content--buttons .dmp_cookiebox-button {
    margin-right: 0;
    margin-bottom: 10px;
    width: 100%;
    max-width: 370px;
  }
  .dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content.dmp_cookiebox-advanced .dmp_cookiebox__content--buttons .dmp_cookiebox-button:last-child {
    margin-bottom: 0;
  }
  .dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content.dmp_cookiebox-advanced .dmp_cookiebox__content--buttons .dmp_toggle-advanced {
    margin-left: 0;
    padding: 10px 10px 0 10px;
  }
}
.dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content.dmp_cookiebox-advanced .dmp_cookiebox__content--cookie-selection .dmp_cookie-selection__section {
  background-color: #f2f2f2;
  padding: 10px;
  border-radius: 5px;
  font-size: 12px;
  margin-bottom: 7px;
}
.dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content.dmp_cookiebox-advanced .dmp_cookiebox__content--cookie-selection .dmp_cookie-selection__section:last-child {
  margin-bottom: 0;
}
.dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content.dmp_cookiebox-advanced .dmp_cookiebox__content--cookie-selection .dmp_cookie-selection__section .dmp_switch-button-input {
  display: none;
}
.dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content.dmp_cookiebox-advanced .dmp_cookiebox__content--cookie-selection .dmp_cookie-selection__section .dmp_switch-button-input:checked + .dmp_switch-button {
  background-color: gray;
}
.dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content.dmp_cookiebox-advanced .dmp_cookiebox__content--cookie-selection .dmp_cookie-selection__section .dmp_switch-button-input:checked + .dmp_switch-button::before {
  left: auto;
  right: 4px;
}
.dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content.dmp_cookiebox-advanced .dmp_cookiebox__content--cookie-selection .dmp_cookie-selection__section .dmp_switch-button {
  position: relative;
  display: block;
  width: 40px;
  height: 21px;
  background-color: #c5c5c5;
  border-radius: 50px;
  float: right;
  margin-left: auto;
  cursor: pointer;
  transition: .3s;
}
.dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content.dmp_cookiebox-advanced .dmp_cookiebox__content--cookie-selection .dmp_cookie-selection__section .dmp_switch-button::before {
  content: '';
  position: absolute;
  width: 15px;
  height: 15px;
  top: 3px;
  left: 4px;
  background-color: #555555;
  border-radius: 50px;
}
.dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content.dmp_cookiebox-advanced .dmp_cookiebox__content--cookie-selection .dmp_cookie-selection__section .dmp_cookie-section-header {
  display: flex;
}
.dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content.dmp_cookiebox-advanced .dmp_cookiebox__content--cookie-selection .dmp_cookie-selection__section .dmp_cookie-section-header .dmp_cookie-section-name {
  font-size: 18px;
  margin-bottom: 15px;
}
.dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content.dmp_cookiebox-advanced .dmp_cookiebox__content--cookie-selection .dmp_cookie-selection__section .dmp_cookie-section-header .dmp_switch-button {
  margin-right: 5px;
}
.dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content.dmp_cookiebox-advanced .dmp_cookiebox__content--cookie-selection .dmp_cookie-selection__section .dmp_cookie-section-description {
  margin-bottom: 15px;
}
.dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content.dmp_cookiebox-advanced .dmp_cookiebox__content--cookie-selection .dmp_cookie-selection__section .dmp_cookie-information .dmp_toggle-cookie-information-wrap {
  margin-bottom: 15px;
  text-align: center;
}
.dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content.dmp_cookiebox-advanced .dmp_cookiebox__content--cookie-selection .dmp_cookie-selection__section .dmp_cookie-information .dmp_toggle-cookie-information-wrap .dmp_toggle-cookie-information {
  font-weight: bold;
  cursor: pointer;
}
.dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content.dmp_cookiebox-advanced .dmp_cookiebox__content--cookie-selection .dmp_cookie-selection__section .dmp_cookie-information .dmp_cookie-information-content {
  height: 0;
  overflow: hidden;
  transition: .3s;
}
.dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content.dmp_cookiebox-advanced .dmp_cookiebox__content--cookie-selection .dmp_cookie-selection__section .dmp_cookie-information .dmp_cookie-information-content table {
  width: 100%;
  margin-bottom: 5px;
}
.dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content.dmp_cookiebox-advanced .dmp_cookiebox__content--cookie-selection .dmp_cookie-selection__section .dmp_cookie-information .dmp_cookie-information-content table:last-child {
  margin-bottom: 0;
}
.dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content.dmp_cookiebox-advanced .dmp_cookiebox__content--cookie-selection .dmp_cookie-selection__section .dmp_cookie-information .dmp_cookie-information-content table tr {
  background-color: white;
}
.dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content.dmp_cookiebox-advanced .dmp_cookiebox__content--cookie-selection .dmp_cookie-selection__section .dmp_cookie-information .dmp_cookie-information-content table tr th,
.dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content.dmp_cookiebox-advanced .dmp_cookiebox__content--cookie-selection .dmp_cookie-selection__section .dmp_cookie-information .dmp_cookie-information-content table tr td {
  padding: 3px 5px;
}
.dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content.dmp_cookiebox-advanced .dmp_cookiebox__content--cookie-selection .dmp_cookie-selection__section .dmp_cookie-information .dmp_cookie-information-content table tr th {
  text-align: left;
  font-weight: bold;
  padding-right: 10px;
}
.dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content.dmp_cookiebox-advanced .dmp_cookiebox__content--cookie-selection .dmp_cookie-selection__section .dmp_cookie-information .dmp_cookie-information-content table tr td {
  padding-left: 10px;
  width: 100%;
}
.dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content.dmp_cookiebox-advanced .dmp_cookiebox__content--cookie-selection .dmp_cookie-selection__section .dmp_cookie-information .dmp_cookie-information-content table tr td a {
  color: #616160;
  text-decoration: none;
  transition: .3s;
}
.dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content.dmp_cookiebox-advanced .dmp_cookiebox__content--cookie-selection .dmp_cookie-selection__section .dmp_cookie-information .dmp_cookie-information-content table tr td a:hover {
  color: gray;
}
.dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox.dmp_cookiebox-advanced {
  max-width: 800px;
}
.dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox.dmp_cookiebox-advanced .dmp_cookiebox-simple {
  display: none;
}
.dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox.dmp_cookiebox-advanced .dmp_cookiebox-advanced {
  display: block;
}
@media (max-width: 799px) {
  .dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox {
    max-width: 400px;
  }
  .dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content .dmp_cookiebox__content--buttons {
    display: block;
  }
  .dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content .dmp_cookiebox__content--buttons .dmp_cookiebox-button,
  .dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content .dmp_cookiebox__content--buttons .dmp_cookiebox-link {
    margin-bottom: 10px;
  }
}
