body, html {
  margin: 0;
  padding: 0;
  background: #fbfafa;
    font-family: 'Roboto', sans-serif;
}

h1, h2, h3, h4, h5, h6, .h7, p, a {
  font-family: 'Roboto', sans-serif;
  letter-spacing: 0.5px;
  margin: 0 0 35px 0;
}

h2 {
  position: relative;
  color: #284379;
  font-weight: 200;
  font-size: 40px;
}

h2.center {
  text-align: center;
}

h2.underline {
  margin-bottom: 85px !important;
  padding-bottom: 50px;
}

h2.underline:after {
  position: absolute;
  content: '';
  width: 250px;
  height: 3px;
  background: #d60b11;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0);
}

h2.underline.left:after {
  left: 0;
  transform: none;
}

h2.white {
  color: #ffffff;
  font-size: 85px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

h4.red {
  color: #d60b11;
}

p {
  font-size: 20px;
  margin: 0 0 20px 0;
}

a {
  text-decoration: none;
  cursor: pointer;
  color: #000;
}

a:hover {
  text-decoration: none;
  color: #000;
}

a.file-download {
  display: flex;
  align-items: center;
}

a.file-download:before {
  content: '';
  width: 30px;
  height: 30px;
  margin-right: 15px;
  background: url("../../assets/LandingPageDS/pdf.png") no-repeat center;
  background-size: contain;
}

a.file-download:hover {
  color: #012e57;
  text-decoration: underline;
}

ul {
  position: relative;
  display: inline-block;
}

ul li {
  font-family: 'Roboto', sans-serif;
  list-style: none;
  color: #000000;
  font-weight: 400;
  line-height: 30px;
  font-size: 20px;
  margin: 10px 0 20px 0;
  opacity: 0.8;
  padding: 10px;
}

ul li:hover {
  opacity: 1;
  font-weight: 500;
  background: #f5f5f5;
}

.content ul li:before {
  content: '//';
  color: #d60b11;
  font-weight: 800;
  position: absolute;
  left: 10px;
  font-size: 22px;
}

ul li a {
  margin: 0;
}

ul.nav-pills {
  justify-content: center;
}

ul.nav-pills .nav-item {
  padding: 0 !important;
  opacity: 1;
  font-weight: 400;
  margin: 10px 10px 20px 10px;
}

ul.nav-pills .nav-link {
  position: relative;
  border-radius: 0;
  padding: 10px 30px;
  font-size: 17px;
}

ul.nav-pills .nav-link.active {
  color: #ffffff;
  background: #012e57;
  -webkit-box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.5);
}

ul.nav-pills .nav-link.active:after {
  content: '';
  border-bottom: 4px solid #ffffff;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

ul.nav-pills .nav-link:hover {
  color: #ffffff;
}

ul.nav-pills li a {
  background: #012e57;
  color: rgba(255, 255, 255, 0.5);
  border-radius: 0;
}

ul.nav-pills li:before {
  display: none;
}

ul.right-side {
  padding: 0 40px 0 0;
}

ul.right-side li {
  text-align: right;
}

ul.right-side li:after {
  content: '//';
  color: #d60b11;
  font-weight: 800;
  position: absolute;
  right: 15px;
  font-size: 16px;
}

ul.right-side li:before {
  content: '';
}

.back-to-top {
  padding: 15px;
  border: 1px solid #a7a7a7;
  position: fixed;
  right: 4%;
  bottom: 3%;
}

.back-to-top img {
  width: 30px;
  height: 30px;
}

.radio-wave-container {
  position: absolute;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  width: 150px;
  height: 50px;
  z-index: 5;
}

.radio-wave-container.content-rw {
  flex-flow: row nowrap;
  width: 100%;
}

.radio-wave {
  position: absolute;
  right: 2rem;
  stroke-linecap: round;
  stroke-width: 25;
  stroke: #d60b11;
  fill: none;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  transform: scale(0.2) translateX(150%);
  opacity: 0;
  width: 1.5rem;
  height: 1.5rem;
}

.radio-wave-1 {
  animation-name: wave-1;
  animation-delay: 0s;
}

@keyframes wave-1 {
  0% {
    transform: scale(0.2) translateX(150%);
    opacity: 0.2;
  }
  10% {
    transform: scale(0.3) translateX(50%);
    opacity: 0.3;
  }
  20% {
    transform: scale(0.4) translateX(-40%);
    opacity: 0.4;
  }
  30% {
    transform: scale(0.5) translateX(-120%);
    opacity: 0.5;
  }
  40% {
    transform: scale(0.6) translateX(-190%);
    opacity: 0.6;
  }
  50% {
    transform: scale(0.7) translateX(-250%);
    opacity: 0.7;
  }
  60% {
    transform: scale(0.8) translateX(-300%);
    opacity: 0.8;
  }
  70% {
    transform: scale(0.9) translateX(-350%);
    opacity: 0.9;
  }
  80% {
    transform: scale(1) translateX(-400%);
  }
  90% {
    transform: scale(1.1) translateX(-450%);
  }
  100% {
    transform: scale(1.2) translateX(-500%);
  }
}

.radio-wave-2 {
  animation-name: wave-2;
  animation-delay: 0.2s;
}

@keyframes wave-2 {
  0% {
    transform: scale(0.2) translateX(150%);
    opacity: 0.2;
  }
  10% {
    transform: scale(0.3) translateX(50%);
    opacity: 0.3;
  }
  20% {
    transform: scale(0.4) translateX(-40%);
    opacity: 0.4;
  }
  30% {
    transform: scale(0.5) translateX(-120%);
    opacity: 0.5;
  }
  40% {
    transform: scale(0.6) translateX(-190%);
    opacity: 0.6;
  }
  50% {
    transform: scale(0.7) translateX(-250%);
    opacity: 0.7;
  }
  60% {
    transform: scale(0.8) translateX(-300%);
    opacity: 0.8;
  }
  70% {
    transform: scale(0.9) translateX(-350%);
    opacity: 0.9;
  }
  80% {
    transform: scale(1) translateX(-400%);
  }
  90% {
    transform: scale(1.1) translateX(-450%);
  }
  100% {
    transform: scale(1.2) translateX(-500%);
  }
}

.radio-wave-3 {
  animation-name: wave-3;
  animation-delay: 0.4s;
}

@keyframes wave-3 {
  0% {
    transform: scale(0.2) translateX(150%);
    opacity: 0.2;
  }
  10% {
    transform: scale(0.3) translateX(50%);
    opacity: 0.3;
  }
  20% {
    transform: scale(0.4) translateX(-40%);
    opacity: 0.4;
  }
  30% {
    transform: scale(0.5) translateX(-120%);
    opacity: 0.5;
  }
  40% {
    transform: scale(0.6) translateX(-190%);
    opacity: 0.6;
  }
  50% {
    transform: scale(0.7) translateX(-250%);
    opacity: 0.7;
  }
  60% {
    transform: scale(0.8) translateX(-300%);
    opacity: 0.8;
  }
  70% {
    transform: scale(0.9) translateX(-350%);
    opacity: 0.9;
  }
  80% {
    transform: scale(1) translateX(-400%);
  }
  90% {
    transform: scale(1.1) translateX(-450%);
  }
  100% {
    transform: scale(1.2) translateX(-500%);
  }
}

.radio-wave-4 {
  animation-name: wave-4;
  animation-delay: 0.6s;
}

@keyframes wave-4 {
  0% {
    transform: scale(0.2) translateX(150%);
    opacity: 0.2;
  }
  10% {
    transform: scale(0.3) translateX(50%);
    opacity: 0.3;
  }
  20% {
    transform: scale(0.4) translateX(-40%);
    opacity: 0.4;
  }
  30% {
    transform: scale(0.5) translateX(-120%);
    opacity: 0.5;
  }
  40% {
    transform: scale(0.6) translateX(-190%);
    opacity: 0.6;
  }
  50% {
    transform: scale(0.7) translateX(-250%);
    opacity: 0.7;
  }
  60% {
    transform: scale(0.8) translateX(-300%);
    opacity: 0.8;
  }
  70% {
    transform: scale(0.9) translateX(-350%);
    opacity: 0.9;
  }
  80% {
    transform: scale(1) translateX(-400%);
  }
  90% {
    transform: scale(1.1) translateX(-450%);
  }
  100% {
    transform: scale(1.2) translateX(-500%);
  }
}

.radio-wave-5 {
  animation-name: wave-5;
  animation-delay: 0.8s;
}

@keyframes wave-5 {
  0% {
    transform: scale(0.2) translateX(150%);
    opacity: 0.2;
  }
  10% {
    transform: scale(0.3) translateX(50%);
    opacity: 0.3;
  }
  20% {
    transform: scale(0.4) translateX(-40%);
    opacity: 0.4;
  }
  30% {
    transform: scale(0.5) translateX(-120%);
    opacity: 0.5;
  }
  40% {
    transform: scale(0.6) translateX(-190%);
    opacity: 0.6;
  }
  50% {
    transform: scale(0.7) translateX(-250%);
    opacity: 0.7;
  }
  60% {
    transform: scale(0.8) translateX(-300%);
    opacity: 0.8;
  }
  70% {
    transform: scale(0.9) translateX(-350%);
    opacity: 0.9;
  }
  80% {
    transform: scale(1) translateX(-400%);
  }
  90% {
    transform: scale(1.1) translateX(-450%);
  }
  100% {
    transform: scale(1.2) translateX(-500%);
  }
}

.radio-wave-6 {
  animation-name: wave-6;
  animation-delay: 1s;
}

@keyframes wave-6 {
  0% {
    transform: scale(0.2) translateX(150%);
    opacity: 0.2;
  }
  10% {
    transform: scale(0.3) translateX(50%);
    opacity: 0.3;
  }
  20% {
    transform: scale(0.4) translateX(-40%);
    opacity: 0.4;
  }
  30% {
    transform: scale(0.5) translateX(-120%);
    opacity: 0.5;
  }
  40% {
    transform: scale(0.6) translateX(-190%);
    opacity: 0.6;
  }
  50% {
    transform: scale(0.7) translateX(-250%);
    opacity: 0.7;
  }
  60% {
    transform: scale(0.8) translateX(-300%);
    opacity: 0.8;
  }
  70% {
    transform: scale(0.9) translateX(-350%);
    opacity: 0.9;
  }
  80% {
    transform: scale(1) translateX(-400%);
  }
  90% {
    transform: scale(1.1) translateX(-450%);
  }
  100% {
    transform: scale(1.2) translateX(-500%);
  }
}

.animated {
  -webkit-animation-duration: 2.5s;
  animation-duration: 2.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}

@-webkit-keyframes bounce {
  0%, 20%, 40%, 60%, 80%, 100% {
    -webkit-transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-5px);
  }
}

@keyframes bounce {
  0%, 20%, 40%, 60%, 80%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
}

@-webkit-keyframes bounce-down {
  0%, 20%, 40%, 60%, 80%, 100% {
    -webkit-transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(20px);
  }
}

@keyframes bounce-down {
  0%, 20%, 40%, 60%, 80%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(20px);
  }
}

.bounce-down {
  -webkit-animation-name: bounce-down;
  animation-name: bounce-down;
}

@-webkit-keyframes glowing {
  0% {
    /*background-color: #11f51e; -webkit-box-shadow: 0 0 8px #11f51e;*/
    opacity: 1;
  }
  50% {
    /*background-color: transparent; -webkit-box-shadow: 0 0 15px #11f51e;*/
    opacity: 0;
  }
  100% {
    /*background-color: #11f51e; -webkit-box-shadow: 0 0 8px #11f51e;*/
    opacity: 1;
  }
}

@keyframes glowing {
  0% {
    /*background-color: #11f51e; box-shadow: 0 0 8px #11f51e;*/
    opacity: 1;
  }
  50% {
    /*background-color: transparent; box-shadow: 0 0 15px #11f51e;*/
    opacity: 0;
  }
  100% {
    /*background-color: #11f51e; box-shadow: 0 0 8px #11f51e;*/
    opacity: 1;
  }
}

@keyframes animationWomanWalkFrames {
  0% {
    transform: translate(0px, 0px);
  }
  50% {
    transform: translate(41px, 31px);
  }
  100% {
    transform: translate(89px, 5px);
  }
}

@-moz-keyframes animationWomanWalkFrames {
  0% {
    -moz-transform: translate(0px, 0px);
  }
  50% {
    -moz-transform: translate(41px, 31px);
  }
  100% {
    -moz-transform: translate(89px, 5px);
  }
}

@-webkit-keyframes animationWomanWalkFrames {
  0% {
    -webkit-transform: translate(0px, 0px);
  }
  50% {
    -webkit-transform: translate(41px, 31px);
  }
  100% {
    -webkit-transform: translate(89px, 5px);
  }
}

@-o-keyframes animationWomanWalkFrames {
  0% {
    -o-transform: translate(0px, 0px);
  }
  50% {
    -o-transform: translate(41px, 31px);
  }
  100% {
    -o-transform: translate(89px, 5px);
  }
}

@-ms-keyframes animationWomanWalkFrames {
  0% {
    -ms-transform: translate(0px, 0px);
  }
  50% {
    -ms-transform: translate(41px, 31px);
  }
  100% {
    -ms-transform: translate(89px, 5px);
  }
}

@keyframes animationMenWalkFrames {
  0% {
    transform: translate(0px, 0px);
    display: inline-block;
  }
  100% {
    transform: translate(94px, 50px);
    display: none;
  }
}

@-moz-keyframes animationMenWalkFrames {
  0% {
    -moz-transform: translate(0px, 0px);
    display: inline-block;
  }
  100% {
    -moz-transform: translate(94px, 50px);
    display: none;
  }
}

@-webkit-keyframes animationMenWalkFrames {
  0% {
    -webkit-transform: translate(0px, 0px);
    display: inline-block;
  }
  100% {
    -webkit-transform: translate(94px, 50px);
    display: none;
  }
}

@-o-keyframes animationMenWalkFrames {
  0% {
    -o-transform: translate(0px, 0px);
    display: inline-block;
  }
  100% {
    -o-transform: translate(94px, 50px);
    display: none;
  }
}

@-ms-keyframes animationMenWalkFrames {
  0% {
    -ms-transform: translate(0px, 0px);
    display: inline-block;
  }
  100% {
    -ms-transform: translate(57px, 31px);
    display: none;
  }
}

@keyframes animationLKWFrames {
  0% {
    transform: translate(0px, 0px);
    display: inline-block;
    opacity: 1;
  }
  95% {
    opacity: 1;
  }
  100% {
    transform: translate(184px, 104px);
    display: none;
    opacity: 0;
  }
}

@-moz-keyframes animationLKWFrames {
  0% {
    -moz-transform: translate(0px, 0px);
    display: inline-block;
    opacity: 1;
  }
  95% {
    opacity: 1;
  }
  100% {
    -moz-transform: translate(184px, 104px);
    display: none;
    opacity: 0;
  }
}

@-webkit-keyframes animationLKWFrames {
  0% {
    -webkit-transform: translate(0px, 0px);
    display: inline-block;
    opacity: 1;
  }
  95% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(184px, 104px);
    display: none;
    opacity: 0;
  }
}

@-o-keyframes animationLKWFrames {
  0% {
    -o-transform: translate(0px, 0px);
    display: inline-block;
    opacity: 1;
  }
  95% {
    opacity: 1;
  }
  100% {
    -o-transform: translate(184px, 104px);
    display: none;
    opacity: 0;
  }
}

@-ms-keyframes animationLKWFrames {
  0% {
    -ms-transform: translate(0px, 0px);
    display: inline-block;
    opacity: 1;
  }
  95% {
    opacity: 1;
  }
  100% {
    -ms-transform: translate(184px, 104px);
    display: none;
    opacity: 0;
  }
}

.marching-ants {
  background-size: 20px 2px, 0, 0, 0;
  background-position: 0 0, 0 100%, 0 0, 100% 0;
  background-repeat: repeat-x, repeat-x, repeat-y, repeat-y;
  animation: marching-ants-1 1s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-play-state: paused;
  background-image: linear-gradient(to right, #d60b11 50%, transparent 50%), linear-gradient(to right, #d60b11 50%, transparent 50%), linear-gradient(to bottom, #d60b11 50%, transparent 50%), linear-gradient(to bottom, #d60b11 50%, transparent 50%);
}

.marching-ants:hover, .marching-ants.marching {
  animation-play-state: running;
}

.marching-ants.reverse {
  animation-direction: reverse;
}

@keyframes marching-ants-1 {
  0% {
    background-position: 0 0, 0 100%, 0 0, 100% 0;
  }
  100% {
    background-position: 40px 0, -40px 100%, 0 -40px, 100% 40px;
  }
}

@keyframes pulse {
  0% {
    background-color: #012e57;
  }
  100% {
    background-color: #ADD8E6;
  }
}

@keyframes mousePointerFrames {
  0% {
    transform: translate(0px, 0px);
  }
  16% {
    transform: translate(-20px, 34px);
  }
  30% {
    transform: translate(-79px, 46px);
  }
  45% {
    transform: translate(-109px, 35px);
  }
  61% {
    transform: translate(-137px, 11px);
  }
  76% {
    transform: translate(-157px, -12px);
  }
  89% {
    transform: translate(-168px, -29px);
  }
  100% {
    transform: translate(-168px, -29px);
  }
}

@-moz-keyframes mousePointerFrames {
  0% {
    -moz-transform: translate(0px, 0px);
  }
  16% {
    -moz-transform: translate(-20px, 34px);
  }
  30% {
    -moz-transform: translate(-79px, 46px);
  }
  45% {
    -moz-transform: translate(-109px, 35px);
  }
  61% {
    -moz-transform: translate(-137px, 11px);
  }
  76% {
    -moz-transform: translate(-157px, -12px);
  }
  89% {
    -moz-transform: translate(-168px, -29px);
  }
  100% {
    -moz-transform: translate(-168px, -29px);
  }
}

@-webkit-keyframes mousePointerFrames {
  0% {
    -webkit-transform: translate(0px, 0px);
  }
  16% {
    -webkit-transform: translate(-20px, 34px);
  }
  30% {
    -webkit-transform: translate(-79px, 46px);
  }
  45% {
    -webkit-transform: translate(-109px, 35px);
  }
  61% {
    -webkit-transform: translate(-137px, 11px);
  }
  76% {
    -webkit-transform: translate(-157px, -12px);
  }
  89% {
    -webkit-transform: translate(-168px, -29px);
  }
  100% {
    -webkit-transform: translate(-168px, -29px);
  }
}

@-o-keyframes mousePointerFrames {
  0% {
    -o-transform: translate(0px, 0px);
  }
  16% {
    -o-transform: translate(-20px, 34px);
  }
  30% {
    -o-transform: translate(-79px, 46px);
  }
  45% {
    -o-transform: translate(-109px, 35px);
  }
  61% {
    -o-transform: translate(-137px, 11px);
  }
  76% {
    -o-transform: translate(-157px, -12px);
  }
  89% {
    -o-transform: translate(-168px, -29px);
  }
  100% {
    -o-transform: translate(-168px, -29px);
  }
}

@-ms-keyframes mousePointerFrames {
  0% {
    -ms-transform: translate(0px, 0px);
  }
  16% {
    -ms-transform: translate(-20px, 34px);
  }
  30% {
    -ms-transform: translate(-79px, 46px);
  }
  45% {
    -ms-transform: translate(-109px, 35px);
  }
  61% {
    -ms-transform: translate(-137px, 11px);
  }
  76% {
    -ms-transform: translate(-157px, -12px);
  }
  89% {
    -ms-transform: translate(-168px, -29px);
  }
  100% {
    -ms-transform: translate(-168px, -29px);
  }
}

body {
  overflow-x: hidden;
}

.video-wrapper .close {
  position: absolute;
  right: -35px;
  top: -5px;
  width: 20px;
  height: 20px;
  background: url("../../assets/LandingPageDS/icons/times-circle-solid-red.svg") no-repeat center;
  background-size: contain;
  cursor: pointer;
  opacity: 1;
  z-index: 10;
}

.mouse-pointer {
  width: 50px;
  height: 50px;
  position: absolute;
  right: 0;
  top: 0;
  background: url("../../assets/LandingPageDS/mouse/up-sign.png") no-repeat center;
  background-size: 60%;
  animation: mousePointerFrames linear 1s;
  animation-iteration-count: infinite;
  transform-origin: 50% 50%;
  -webkit-animation: mousePointerFrames linear 1s;
  -webkit-animation-iteration-count: infinite;
  -webkit-transform-origin: 50% 50%;
  -moz-animation: mousePointerFrames linear 1s;
  -moz-animation-iteration-count: infinite;
  -moz-transform-origin: 50% 50%;
  -o-animation: mousePointerFrames linear 1s;
  -o-animation-iteration-count: infinite;
  -o-transform-origin: 50% 50%;
  -ms-animation: mousePointerFrames linear 1s;
  -ms-animation-iteration-count: infinite;
  -ms-transform-origin: 50% 50%;
}

.content {
  position: relative;
  max-width: 1800px;
  width: 100%;
  margin: 0 auto;
  background: #ffffff;
  box-sizing: border-box;
}

.content .header {
  display: flex;
  padding: 25px 50px;
  justify-content: space-between;
  align-items: center;
}

.content .header p {
  margin: 0;
}

.content .header p a {
  font-weight: 500;
}

.content .header .telephone {
  display: flex;
  align-items: center;
}

.content .header .telephone .language-switcher {
  margin-left: 20px;
  z-index: 1000;
}

.content .header .telephone .language-switcher:focus {
  outline: none;
}

.content .header .telephone .language-switcher span {
  position: relative;
  display: inline-block;
  margin-right: 14px;
  background-image: url("../../assets/LandingPageDS/icons/sprite.svg");
  background-repeat: no-repeat;
  width: 22px;
  height: 16px;
}

.content .header .telephone .language-switcher span.de {
  background-position: 0 73.39449541284404%;
}

.content .header .telephone .language-switcher span.en {
  background-position: 77.66990291262135% 44.03669724770642%;
}

.content .header .telephone .language-switcher span.fr {
  background-position: 77.66990291262135% 29.357798165137616%;
}

.content .header .telephone .language-switcher span.it {
  background-position: 21.359223300970875% 73.39449541284404%;
}

.content .header .telephone .language-switcher span.nl {
  background-position: 77.66990291262135% 14.678899082568808%;
}

.content .header .telephone .language-switcher span.dk {
  background-position: 77.66990291262135% 58.71559633027523%;
}

.content .header .telephone .language-switcher span.se {
  background-position: 77.66990291262135% 0;
}

.content .header .telephone .language-switcher span.be {
  background: url("../../assets/LandingPageDS/icons/flag_be.png") no-repeat center;
}

.content .header .telephone .language-switcher .select {
  display: flex;
  align-items: center;
  padding: 20px;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.content .header .telephone .language-switcher .dropdown-menu {
  display: none;
  padding: 0;
  margin: 0;
  border: 0;
}

.content .header .telephone .language-switcher .dropdown-menu li {
  margin: 0;
  display: flex;
  align-items: center;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  padding: 5px 20px;
}

.content .header .telephone .language-switcher .dropdown-menu li:before {
  content: '';
  padding: 0;
  margin: 0;
}

.content #fading-header {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0px;
  left: 0;
  right: 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  max-width: 1800px;
  margin: 0 auto;
  background: #fff;
}

.content .side-nav {
  position: fixed;
  right: 0;
  z-index: 10000;
  top: 15%;
}

.content .side-nav .teaser-wrapper {
  position: fixed;
  z-index: 8;
  right: 0;
  top: 15%;
}

.content .side-nav .teaser {
  position: absolute;
  z-index: 8;
  right: 0;
  width: 2.8125rem;
  height: 2.5rem;
  background-color: #012e57;
  cursor: pointer;
  overflow: hidden;
  padding: .8125rem 1.25rem 0 1.25rem;
  transition: all 0.3s ease-in-out;
}

@media (min-width: 768px) {
  .content .side-nav .teaser {
    width: 4.0625rem;
    height: 3.75rem;
  }
}

.content .side-nav .teaser.partner-finder {
  top: 0;
}

@media (min-width: 768px) {
  .content .side-nav .teaser.partner-finder {
    top: 0;
  }
}

.content .side-nav .teaser.partner-finder .teaser--icon {
  background-image: url("../../assets/LandingPageDS/icons/icon-partners.svg");
}

.content .side-nav .teaser.support {
  top: 3.125rem;
}

@media (min-width: 768px) {
  .content .side-nav .teaser.support {
    top: 5rem;
  }
}

.content .side-nav .teaser.support .teaser--icon {
  background-image: url("../../assets/LandingPageDS/icons/icon-support.svg");
}

.content .side-nav .teaser.contact {
  top: 6.25rem;
}

@media (min-width: 768px) {
  .content .side-nav .teaser.contact {
    top: 10rem;
  }
}

.content .side-nav .teaser.contact .teaser--icon {
  background-image: url("../../assets/LandingPageDS/icons/icon-contact.svg");
}

.content .side-nav .teaser:hover {
  width: 18.125rem;
  height: 12.75rem;
  z-index: 9;
}

.content .side-nav .teaser:hover .teaser--text-area {
  opacity: 1;
}

.content .side-nav .teaser .teaser--icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 2.8125rem;
  height: 2.5rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% auto;
}

@media (min-width: 768px) {
  .content .side-nav .teaser .teaser--icon {
    width: 4.0625rem;
    height: 3.75rem;
  }
}

.content .side-nav .teaser .teaser--text-area {
  padding-left: 3.125rem;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.content .side-nav .teaser .teaser--text-area .teaser--text-area__text {
  color: #fff;
}

.content .side-nav .teaser .teaser--text-area .teaser--text-area__text strong {
  font-size: 1.125rem;
  margin-bottom: .625rem;
  display: inline-block;
}

.content .side-nav .teaser .teaser--text-area .teaser--text-area__link {
  color: #fff;
  margin-top: 1rem;
  font-size: 20px;
}

.content .side-nav .red-bubble {
  position: absolute;
  right: 9%;
  top: -10%;
  z-index: 10;
}

.content .side-nav ul {
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  width: 245px;
}

.content .side-nav ul li {
  display: flex;
  width: 100%;
  background: none;
  margin: 0;
  padding: 0;
  margin-left: 193px;
  height: 50px;
}

.content .side-nav ul li:before {
  display: none;
}

.content .side-nav ul li a {
  position: relative;
  color: #ffffff;
  font-weight: 200;
  background: #012e57;
  border-radius: 30px 0 0 30px;
  padding: 10px 0 10px 60px;
  width: 100%;
}

.content .side-nav ul li a .icon {
  position: absolute;
  width: 30px;
  height: 30px;
  left: 13px;
  top: 50%;
  transform: translate(0, -50%);
}

.content .side-nav ul li a .icon-digital-key {
  background: url("../../assets/LandingPageDS/icons/transponder-w.png") no-repeat center;
  background-size: contain;
}

.content .side-nav ul li a .icon-pros {
  background: url("../../assets/LandingPageDS/icons/plus-solid.svg") no-repeat center;
  background-size: contain;
}

.content .side-nav ul li a .icon-application {
  background: url("../../assets/LandingPageDS/icons/map-marked-alt-solid.svg") no-repeat center;
  background-size: contain;
}

.content .side-nav ul li a .icon-secure {
  background: url("../../assets/LandingPageDS/icons/protect-w.png") no-repeat center;
  background-size: contain;
}

.content .side-nav ul li a .icon-reasons {
  top: 35%;
  background: url("../../assets/LandingPageDS/icons/hand-holding-solid.svg") no-repeat center;
  background-size: contain;
}

.content .side-nav ul li a .icon-made-in-germany {
  background: url("../../assets/LandingPageDS/icons/flag-regular.svg") no-repeat center;
  background-size: contain;
}

.content .side-nav ul li:hover {
  margin-left: 0;
}

.content .wrapper .left-side, .content .wrapper .right-side {
  width: 50%;
}

.content .wrapper .left-side {
  float: left;
}

.content .wrapper .right-side {
  float: right;
}

.content .colum-12 {
  position: relative;
  display: inline-block;
  padding: 50px 145px;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  margin-bottom: 80px;
}

.content .headlines.apart {
  width: fit-content;
  width: -moz-fit-content;
  margin-bottom: 30px;
}

.content .headlines.apart h5 {
  font-size: 43px;
}

.content .headlines.apart h6 {
  font-size: 43px;
  font-weight: 400;
  color: #d60b11;
  margin-bottom: 22px;
}

.content .headlines.apart hr {
  width: 300px;
  height: 7px;
  background: #012e57;
  border: 0;
  margin: 0;
}

.content .information {
  position: absolute;
}

.content .information p {
  font-size: 12px;
}

.content .hero-shot {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  background: #ececec;
  background-size: auto 100%;
  margin-bottom: 80px;
  overflow: hidden;
  padding: 0 145px;
}

.content .hero-shot:after {
  content: '';
  position: absolute;
  right: 25%;
  bottom: -10%;
  background: url("../../assets/LandingPageDS/mouse/card_hand_cut.png") no-repeat left bottom;
  background-size: contain;
  transform: rotate(-60deg);
  width: 22%;
  height: 100%;
  z-index: 10;
}

.content .hero-shot.card:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 10%;
  background: url("../../assets/LandingPageDS/mouse/card_hand_cut.png") no-repeat left bottom;
  background-size: contain;
  transform: rotate(25deg);
  width: 20%;
  height: 70%;
  z-index: 10;
}

.content .hero-shot .animation .headlines {
  z-index: 11;
  width: 50%;
  margin: 5% 0;
}

.content .hero-shot .animation .headlines h3 {
  position: relative;
  font-weight: 400;
  font-size: 20px;
}

.content .hero-shot .animation .headlines h1 {
  color: #012e57;
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 20px;
  width: 95%;
}

.content .hero-shot .animation .headlines .pro-points {
  margin-bottom: 50px;
}

.content .hero-shot .animation .headlines .pro-points p {
  margin-bottom: 10px;
  font-weight: 400;
}

.content .hero-shot .animation .headlines .pro-points ul li {
  margin: 0;
  font-weight: 600;
}

.content .hero-shot .animation .headlines .pro-points ul li:before {
  content: '';
  background: url("data:image/svg+xml;base64,PHN2ZyBhcmlhLWhpZGRlbj0idHJ1ZSIgZm9jdXNhYmxlPSJmYWxzZSIgZGF0YS1wcmVmaXg9ImZhcyIgZGF0YS1pY29uPSJjaGVjayIgY2xhc3M9InN2Zy1pbmxpbmUtLWZhIGZhLWNoZWNrIGZhLXctMTYiIHJvbGU9ImltZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTEyIDUxMiI+PHBhdGggZmlsbD0iI2Q2MGIxMSIgZD0iTTE3My44OTggNDM5LjQwNGwtMTY2LjQtMTY2LjRjLTkuOTk3LTkuOTk3LTkuOTk3LTI2LjIwNiAwLTM2LjIwNGwzNi4yMDMtMzYuMjA0YzkuOTk3LTkuOTk4IDI2LjIwNy05Ljk5OCAzNi4yMDQgMEwxOTIgMzEyLjY5IDQzMi4wOTUgNzIuNTk2YzkuOTk3LTkuOTk3IDI2LjIwNy05Ljk5NyAzNi4yMDQgMGwzNi4yMDMgMzYuMjA0YzkuOTk3IDkuOTk3IDkuOTk3IDI2LjIwNiAwIDM2LjIwNGwtMjk0LjQgMjk0LjQwMWMtOS45OTggOS45OTctMjYuMjA3IDkuOTk3LTM2LjIwNC0uMDAxeiI+PC9wYXRoPjwvc3ZnPg==") no-repeat center;
  width: 22px;
  height: 22px;
  margin-top: 5px;
}

.content .hero-shot .animation .headlines .call-to-action {
  margin: auto;
  text-align: left;
}

.content .hero-shot .language-switcher {
  position: absolute;
  right: 2.5%;
  z-index: 1000;
}

.content .hero-shot .language-switcher:focus {
  outline: none;
}

.content .hero-shot .language-switcher span {
  position: relative;
  display: inline-block;
  margin-right: 14px;
  background-image: url("../../assets/LandingPageDS/icons/sprite.svg");
  background-repeat: no-repeat;
  width: 22px;
  height: 16px;
}

.content .hero-shot .language-switcher span.de {
  background-position: 0 73.39449541284404%;
}

.content .hero-shot .language-switcher span.en {
  background-position: 77.66990291262135% 44.03669724770642%;
}

.content .hero-shot .language-switcher span.fr {
  background-position: 77.66990291262135% 29.357798165137616%;
}

.content .hero-shot .language-switcher span.it {
  background-position: 21.359223300970875% 73.39449541284404%;
}

.content .hero-shot .language-switcher span.nl {
  background-position: 77.66990291262135% 14.678899082568808%;
}

.content .hero-shot .language-switcher span.dk {
  background-position: 77.66990291262135% 58.71559633027523%;
}

.content .hero-shot .language-switcher span.se {
  background-position: 77.66990291262135% 0;
}

.content .hero-shot .language-switcher span.be {
  background: url("../../assets/LandingPageDS/icons/flag_be.png") no-repeat center;
}

.content .hero-shot .language-switcher .select {
  display: flex;
  align-items: center;
  padding: 20px;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.content .hero-shot .language-switcher .dropdown-menu {
  display: none;
  padding: 0;
  margin: 0;
  border: 0;
}

.content .hero-shot .language-switcher .dropdown-menu li {
  margin: 0;
  display: flex;
  align-items: center;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  padding: 5px 20px;
}

.content .hero-shot .language-switcher .dropdown-menu li:before {
  content: '';
  padding: 0;
  margin: 0;
}

.content .introduction .button {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  z-index: 1;
}

.content .introduction .button li {
  position: relative;
  width: 30%;
  min-height: 135px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  padding: 20px 20px 20px 40px;
  border-radius: 20px;
}

.content .introduction .button li:before {
  left: 16px;
}

.content .introduction .wrapper {
  display: flex;
  justify-content: space-between;
}

.content .introduction .wrapper .left-side {
  position: relative;
  overflow: hidden;
  width: 50%;
}

.content .introduction .wrapper .left-side #parallax-background-intro {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../../assets/LandingPageDS/parallax/useability.jpg") no-repeat top left;
  background-size: contain;
  z-index: 10;
}

.content .introduction .wrapper .left-side #parallax-background-intro-active {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../../assets/LandingPageDS/parallax/useability-activ.jpg") no-repeat top left;
  background-size: contain;
  z-index: 5;
}

.content .introduction .wrapper .left-side .parallax-layer {
  position: absolute;
  width: 105.5%;
  top: -17px;
  right: -300px;
  z-index: 11;
}

.content .introduction .wrapper .left-side .parallax-layer-active {
  background: url("../../assets/LandingPageDS/parallax/all-parallax-01.png") no-repeat top left;
  z-index: 1;
}

.content .introduction .wrapper .right-side {
  width: 50%;
  margin-left: 70px;
}

.content .introduction .wrapper .right-side h2 {
  font-size: 38px;
}

.content .introduction .wrapper .right-side ul li {
  position: relative;
}

.content .introduction .wrapper .right-side ul li:before {
  content: '';
  width: 20px;
  height: 20px;
  border: 4px solid #d60b11;
  border-radius: 100px;
  top: 50%;
  transform: translate(0, -50%);
  left: -34px;
}

.content .introduction .wrapper .right-side ul li:hover {
  opacity: 1;
  font-weight: 500;
}

.content #pros {
  margin: 100px 0 -70px 0;
  background: #ececec;
}

.content #pros h2 {
  width: 37%;
}

.content #pros .left-side, .content #pros .right-side {
  width: 50%;
}

.content #pros .pro-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.content #pros .pro-wrapper .item {
  position: relative;
  cursor: pointer;
  width: 30%;
  height: 150px;
  background: #012e57;
  margin: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content #pros .pro-wrapper .item .red-bubble {
  position: absolute;
  left: 0;
  top: 10%;
}

.content #pros .pro-wrapper .item .headline {
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  position: absolute;
  bottom: 12px;
  padding: 0 10px;
}

.content #pros .pro-wrapper .item .hover {
  display: none;
  color: #000000;
  font-size: 19px;
  width: 100%;
  height: 100%;
  background: #fff;
}

.content #pros .pro-wrapper .item .hover .half-circle {
  color: #000;
  font-weight: 600;
  font-size: 20px;
  text-align: center;
  background: #F2F2F2;
  padding: 10px 15% 15px 15%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.content #pros .pro-wrapper .item .hover .circle {
  padding: 5px;
  text-align: center;
  font-size: 15px;
}

.content #pros .pro-wrapper .item .hover .hover-headline {
  background: #F2F2F2;
  color: #ffffff;
  font-weight: 600;
  font-size: 20px;
}

.content #pros .pro-wrapper .item.active {
  -webkit-box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.content #pros .pro-wrapper .item.active .hover {
  display: inline-block;
}

.content #pros .pro-wrapper .item.active .headline {
  display: none;
}

.content #pros .pro-wrapper .item.loss-of-key:after {
  content: '';
  background: url("../../assets/LandingPageDS/icons/search-w.png") no-repeat center;
  background-size: contain;
  width: 68px;
  height: 68px;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}

.content #pros .pro-wrapper .item.loss-of-key.active:after {
  opacity: 0.1;
  content: '';
  background: url("../../assets/LandingPageDS/icons/search.png") no-repeat center;
  background-size: contain;
}

.content #pros .pro-wrapper .item.change-everytime:after {
  content: '';
  background: url("../../assets/LandingPageDS/icons/exchange-alt-solid-w.svg") no-repeat center;
  background-size: contain;
  width: 68px;
  height: 68px;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}

.content #pros .pro-wrapper .item.change-everytime.active:after {
  opacity: 0.1;
  content: '';
  background: url("../../assets/LandingPageDS/icons/exchange-alt-solid.svg") no-repeat center;
  background-size: contain;
}

.content #pros .pro-wrapper .item.one-key:after {
  content: '';
  background: url("../../assets/LandingPageDS/icons/transponder-w.png") no-repeat center;
  background-size: contain;
  width: 68px;
  height: 68px;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}

.content #pros .pro-wrapper .item.one-key.active:after {
  opacity: 0.1;
  content: '';
  background: url("../../assets/LandingPageDS/icons/transponder.png") no-repeat center;
  background-size: contain;
}

.content #pros .pro-wrapper .item.easy-fast-montage:after {
  content: '';
  background: url("../../assets/LandingPageDS/icons/settings-w.png") no-repeat center;
  background-size: contain;
  width: 68px;
  height: 68px;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}

.content #pros .pro-wrapper .item.easy-fast-montage.active:after {
  opacity: 0.1;
  content: '';
  background: url("../../assets/LandingPageDS/icons/settings.png") no-repeat center;
  background-size: contain;
}

.content #pros .pro-wrapper .item.time-secure-entry:after {
  content: '';
  background: url("../../assets/LandingPageDS/icons/stopwatch-solid-w.svg") no-repeat center;
  background-size: contain;
  width: 68px;
  height: 68px;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}

.content #pros .pro-wrapper .item.time-secure-entry.active:after {
  opacity: 0.1;
  content: '';
  background: url("../../assets/LandingPageDS/icons/stopwatch-solid.svg") no-repeat center;
  background-size: contain;
}

.content #pros .pro-wrapper .item.open-doors:after {
  content: '';
  background: url("../../assets/LandingPageDS/icons/door-open-solid-w.svg") no-repeat center;
  background-size: contain;
  width: 68px;
  height: 68px;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}

.content #pros .pro-wrapper .item.open-doors.active:after {
  opacity: 0.1;
  content: '';
  background: url("../../assets/LandingPageDS/icons/door-open-solid.svg") no-repeat center;
  background-size: contain;
}

.content #pros .pro-wrapper .item.who-room:after {
  content: '';
  background: url("../../assets/LandingPageDS/icons/protect-w.png") no-repeat center;
  background-size: contain;
  width: 68px;
  height: 68px;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}

.content #pros .pro-wrapper .item.who-room.active:after {
  opacity: 0.1;
  content: '';
  background: url("../../assets/LandingPageDS/icons/protect.png") no-repeat center;
  background-size: contain;
}

.content #pros .pro-wrapper .item.organize:after {
  content: '';
  background: url("../../assets/LandingPageDS/icons/sitemap-solid-w.svg") no-repeat center;
  background-size: contain;
  width: 68px;
  height: 68px;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}

.content #pros .pro-wrapper .item.organize.active:after {
  opacity: 0.1;
  content: '';
  background: url("../../assets/LandingPageDS/icons/sitemap-solid.svg") no-repeat center;
  background-size: contain;
}

.content #pros .pro-wrapper .item.design:after {
  content: '';
  background: url("../../assets/LandingPageDS/icons/icon-cylinder-ax-w.png") no-repeat center;
  background-size: contain;
  width: 110px;
  height: 68px;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}

.content #pros .pro-wrapper .item.design.active:after {
  opacity: 0.1;
  content: '';
  background: url("../../assets/LandingPageDS/icons/icon-cylinder-ax.png") no-repeat center;
  background-size: contain;
}

.content #pros .animation:before {
  content: '';
  position: absolute;
  right: 10%;
  top: 47%;
  transform: translate(14%, -67%);
  background: url(../../assets/LandingPageDS/heroshot/background.png) no-repeat center;
  width: 40%;
  height: 50%;
  background-size: contain;
}

.content #pros .animation .headlines {
  position: absolute;
  top: 58%;
  left: 23%;
  transform: translate(0, -50%);
  z-index: 11;
  width: 34%;
}

.content #pros .animation .headlines h3 {
  position: relative;
  font-weight: 400;
  font-size: 20px;
}

.content #pros .animation .headlines h1 {
  color: #000000;
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 20px;
}

.content #pros .animation .headlines .pro-points {
  margin-bottom: 50px;
}

.content #pros .animation .headlines .pro-points p {
  margin-bottom: 10px;
  font-weight: 600;
}

.content #pros .animation .headlines .pro-points ul li {
  margin: 0;
  font-weight: 600;
}

.content #pros .animation .headlines .pro-points ul li:before {
  content: '';
  background: url("data:image/svg+xml;base64,PHN2ZyBhcmlhLWhpZGRlbj0idHJ1ZSIgZm9jdXNhYmxlPSJmYWxzZSIgZGF0YS1wcmVmaXg9ImZhcyIgZGF0YS1pY29uPSJjaGVjayIgY2xhc3M9InN2Zy1pbmxpbmUtLWZhIGZhLWNoZWNrIGZhLXctMTYiIHJvbGU9ImltZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTEyIDUxMiI+PHBhdGggZmlsbD0iI2Q2MGIxMSIgZD0iTTE3My44OTggNDM5LjQwNGwtMTY2LjQtMTY2LjRjLTkuOTk3LTkuOTk3LTkuOTk3LTI2LjIwNiAwLTM2LjIwNGwzNi4yMDMtMzYuMjA0YzkuOTk3LTkuOTk4IDI2LjIwNy05Ljk5OCAzNi4yMDQgMEwxOTIgMzEyLjY5IDQzMi4wOTUgNzIuNTk2YzkuOTk3LTkuOTk3IDI2LjIwNy05Ljk5NyAzNi4yMDQgMGwzNi4yMDMgMzYuMjA0YzkuOTk3IDkuOTk3IDkuOTk3IDI2LjIwNiAwIDM2LjIwNGwtMjk0LjQgMjk0LjQwMWMtOS45OTggOS45OTctMjYuMjA3IDkuOTk3LTM2LjIwNC0uMDAxeiI+PC9wYXRoPjwvc3ZnPg==") no-repeat center;
  width: 22px;
  height: 22px;
  margin-top: 5px;
}

.content #pros .animation .stage {
  position: absolute;
  background: url("../../assets/LandingPageDS/heroshot/heroshot_blue.png") no-repeat center;
  background-size: contain;
  width: 500px;
  height: 500px;
  top: 50%;
  right: 10%;
  transform: translate(0, -50%);
  z-index: 9;
}

.content #pros .animation .stage .woman-walk {
  position: absolute;
  background: url("../../assets/LandingPageDS/heroshot/woman-walk.gif") no-repeat center;
  background-size: contain;
  width: 50px;
  height: 50px;
  bottom: 30%;
  left: 31%;
  animation-name: animationWomanWalkFrames;
  animation-duration: 35s;
  animation-iteration-count: infinite;
}

.content #pros .animation .stage .men-walk {
  position: absolute;
  background: url("../../assets/LandingPageDS/heroshot/men-walk.gif") no-repeat center;
  background-size: contain;
  width: 35px;
  height: 35px;
  bottom: 41%;
  right: 30%;
  animation-name: animationMenWalkFrames;
  animation-duration: 20s;
  animation-iteration-count: infinite;
}

.content #pros .animation .stage .men-wink {
  position: absolute;
  background: url("../../assets/LandingPageDS/heroshot/men-wink.gif") no-repeat center;
  background-size: contain;
  width: 35px;
  height: 35px;
  bottom: 35.5%;
  left: 17.5%;
}

.content #pros .animation .stage .lkw {
  position: absolute;
  background: url("../../assets/LandingPageDS/heroshot/lkw_blue.png") no-repeat center;
  background-size: contain;
  width: 50px;
  height: 30px;
  bottom: 30%;
  left: 7%;
  animation-name: animationLKWFrames;
  animation-duration: 10s;
  animation-iteration-count: infinite;
}

.content #pros .animation .stage .steam {
  position: absolute;
  background: url("../../assets/LandingPageDS/heroshot/steam2.gif") no-repeat center;
  background-size: contain;
  width: 50px;
  height: 46px;
  right: 53.5%;
  top: 4.5%;
}

.content #pros .animation .stage .fabric {
  position: absolute;
  top: 27%;
  right: 60%;
  cursor: pointer;
}

.content #pros .animation .stage .office {
  position: absolute;
  top: 29%;
  right: 6%;
  cursor: pointer;
}

.content #pros .animation .stage .parkade {
  position: absolute;
  top: 55%;
  right: 0;
  cursor: pointer;
}

.content #pros .animation .stage .hospital {
  position: absolute;
  top: 64%;
  right: 19%;
  cursor: pointer;
}

.content #pros .animation .stage .school {
  position: absolute;
  top: 49%;
  right: 65%;
  cursor: pointer;
}

.content #pros .animation .products .cylinder {
  position: absolute;
  width: 50%;
  height: 36%;
  background: url("../../assets/LandingPageDS/network/de_dc_ax_inaktiv.png") no-repeat center;
  background-size: contain;
  top: -7%;
  right: 18%;
}

.content #pros .animation .products .cylinder.active {
  background: url("../../assets/LandingPageDS/network/de_dc_ax_aktiv.png") no-repeat center;
  background-size: contain;
}

.content #pros .animation .products .mount {
  display: none;
  position: absolute;
  width: 50%;
  height: 60%;
  background: url("../../assets/LandingPageDS/network/sh_3062.png") no-repeat center;
  background-size: contain;
  bottom: -19%;
  right: 18%;
  z-index: 10;
}

.content #pros .animation .products .relais {
  position: absolute;
  width: 50%;
  height: 60%;
  background: url("../../assets/LandingPageDS/network/srel3_leser_inaktiv.png") no-repeat center;
  background-size: contain;
  top: 6%;
  right: -23%;
  z-index: 0;
}

.content #pros .animation .video-wrapper {
  display: none;
  position: absolute;
  right: 10%;
  top: 33%;
  height: 290px;
  width: auto;
  border: 5px solid #d60b11;
  z-index: 10;
}

.content #pros .animation .video-wrapper video {
  height: 100%;
  width: auto;
}

.content #applications {
  position: relative;
  margin: 80px 0 0 0;
  display: flex;
  align-items: flex-start;
  background: #ececec;
  padding: 85px 145px 0 145px;
}

.content #applications .left-side, .content #applications .right-side {
  width: 50%;
}

.content #applications .left-side .call-to-action {
  text-align: left;
  margin-top: 50px;
}

.content #applications .animation {
  position: relative;
  margin: 0 auto 100px auto;
  width: fit-content;
  width: -moz-fit-content;
}

.content #applications .animation .red-bubble {
  position: absolute;
  cursor: pointer;
  z-index: 10;
}

.content #applications .animation .red-bubble.hallway {
  top: 8.4%;
  left: 15.5%;
}

.content #applications .animation .red-bubble.facility-management {
  top: 18.5%;
  left: 38.1%;
}

.content #applications .animation .red-bubble.poisen {
  top: 18.5%;
  left: 58.8%;
}

.content #applications .animation .red-bubble.door-monitoring {
  top: 30.5%;
  left: 72.3%;
}

.content #applications .animation .red-bubble.elevator {
  top: 38.45%;
  left: 70.5%;
}

.content #applications .animation .red-bubble.barrier {
  top: 73%;
  left: 57.3%;
}

.content #applications .animation .red-bubble.lockers-customer {
  top: 50%;
  left: 31.6%;
}

.content #applications .animation .red-bubble.main-entrance {
  top: 51%;
  left: 29%;
}

.content #applications .animation .red-bubble.lockers {
  top: 26%;
  left: 14%;
}

.content #applications .animation h6 {
  position: absolute;
  margin: 0;
  padding: 0;
  display: none;
  z-index: 5;
}

.content #applications .animation h6:after {
  content: '';
  display: block;
  position: absolute;
  width: 290px;
  height: 80px;
}

.content #applications .animation h6.active {
  display: inline-block;
}

.content #applications .animation h6.headline-hallway {
  top: 2.4%;
  left: 19.5%;
}

.content #applications .animation h6.headline-hallway:after {
  background: url("../../assets/LandingPageDS/overlay/overlay-hallway.png") no-repeat;
  background-size: contain;
  top: 13px;
  left: -139px;
}

.content #applications .animation h6.headline-facility-management {
  top: 10.5%;
  left: 39.1%;
}

.content #applications .animation h6.headline-facility-management:after {
  background: url("../../assets/LandingPageDS/overlay/overlay-facility-management.png") no-repeat;
  background-size: contain;
  top: 18px;
  left: -90px;
}

.content #applications .animation h6.headline-poisen {
  top: 11.5%;
  left: 60.8%;
}

.content #applications .animation h6.headline-poisen:after {
  background: url("../../assets/LandingPageDS/overlay/overlay-poisen.png") no-repeat;
  background-size: contain;
  width: 97px;
  height: 65px;
  top: 29px;
  left: -31px;
}

.content #applications .animation h6.headline-door-monitoring {
  top: 32.5%;
  left: 76.3%;
}

.content #applications .animation h6.headline-door-monitoring:after {
  background: url("../../assets/LandingPageDS/overlay/overlay-door-monitoring.png") no-repeat;
  background-size: contain;
  width: 88px;
  height: 70px;
  top: -17px;
  left: -110px;
}

.content #applications .animation h6.headline-elevator {
  top: 40.45%;
  left: 75.5%;
}

.content #applications .animation h6.headline-elevator:after {
  background: url("../../assets/LandingPageDS/overlay/overlay-elevator.png") no-repeat;
  background-size: contain;
  width: 57px;
  height: 59px;
  top: -23px;
  left: -55px;
}

.content #applications .animation h6.headline-barrier {
  top: 76%;
  left: 62.3%;
}

.content #applications .animation h6.headline-barrier:after {
  background: url("../../assets/LandingPageDS/overlay/overlay-barrier.png") no-repeat;
  background-size: contain;
  width: 148px;
  height: 98px;
  top: -65px;
  left: -62px;
}

.content #applications .animation h6.headline-lockers-customer {
  top: 60%;
  left: 33.6%;
}

.content #applications .animation h6.headline-lockers-customer:after {
  background: url("../../assets/LandingPageDS/overlay/overlay-lockers-customer.png") no-repeat;
  background-size: contain;
  width: 60px;
  height: 60px;
  top: -68px;
  left: -34px;
}

.content #applications .animation h6.headline-main-entrance {
  top: 65%;
  left: 29%;
}

.content #applications .animation h6.headline-main-entrance:after {
  background: url("../../assets/LandingPageDS/overlay/overlay-main-entrance.png") no-repeat;
  background-size: contain;
  width: 68px;
  height: 66px;
  top: -57px;
  left: -5px;
}

.content #applications .animation h6.headline-lockers {
  top: 32%;
  left: 0;
}

.content #applications .animation h6.headline-lockers:after {
  background: url("../../assets/LandingPageDS/overlay/overlay-lockers.png") no-repeat;
  background-size: contain;
  width: 149px;
  height: 136px;
  top: -25px;
  left: 106px;
}

.content #applications .animation .animation-content {
  display: none;
  position: absolute;
  left: 12%;
  top: 0;
  border: 5px solid #d60b11;
  height: 290px;
  width: auto;
  z-index: 10;
}

.content #applications .animation .animation-content .title {
  position: absolute;
  top: -56px;
  left: 0;
  padding: 5px 15px 5px 6px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.content #applications .animation .animation-content .title .icon {
  width: 25px;
  height: 35px;
  margin-right: 10px;
}

.content #applications .animation .animation-content .title .hallway {
  background: url("../../assets/LandingPageDS/icons/flur-schutz.png") no-repeat center;
  background-size: contain;
}

.content #applications .animation .animation-content .title .facility-management {
  background: url("../../assets/LandingPageDS/icons/facility-managment.png") no-repeat center;
  background-size: contain;
}

.content #applications .animation .animation-content .title .poisen {
  background: url("../../assets/LandingPageDS/icons/gift-medizinschrank.png") no-repeat center;
  background-size: contain;
}

.content #applications .animation .animation-content .title .door-monitoring {
  background: url("../../assets/LandingPageDS/icons/doormonitoring.png") no-repeat center;
  background-size: contain;
}

.content #applications .animation .animation-content .title .elevator {
  background: url("../../assets/LandingPageDS/icons/aufzug.png") no-repeat center;
  background-size: contain;
}

.content #applications .animation .animation-content .title .barrier {
  background: url("../../assets/LandingPageDS/icons/schranke.png") no-repeat center;
  background-size: contain;
}

.content #applications .animation .animation-content .title .lockers {
  background: url("../../assets/LandingPageDS/icons/schliesfaecher.png") no-repeat center;
  background-size: contain;
}

.content #applications .animation .animation-content .title .main-entrance {
  background: url("../../assets/LandingPageDS/icons/haupteingang.png") no-repeat center;
  background-size: contain;
}

.content #applications .animation .animation-content video {
  height: 100%;
  width: auto;
}

.content #locking-components {
  padding: 85px 145px;
  margin-top: 5%;
  display: flex;
  align-items: center;
}

.content #locking-components h2 {
  margin-bottom: 65px;
}

.content #locking-components h3 {
  font-size: 20px;
  color: #012e57;
  position: relative;
  padding-left: 40px;
  margin-bottom: 20px;
}

.content #locking-components h3:before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  content: '';
  width: 20px;
  height: 20px;
  border: 4px solid #012e57;
  border-radius: 100px;
  top: 50%;
  transform: translate(0, -50%);
}

.content #locking-components .call-to-action {
  margin-top: 50px;
  text-align: left;
}

.content #locking-components .left-side {
  width: 45%;
}

.content #locking-components .left-side {
  margin-right: 45px;
}

.content #locking-components .comp-wrapper {
  display: flex;
  justify-content: center;
  position: absolute;
  right: 0;
  top: 30%;
  transform: scale(0.6) translate(0, -50%);
}

.content #locking-components .comp-wrapper .comp-item {
  position: relative;
  background: rgba(1, 46, 87, 0.3);
  margin: 0 25px;
  width: 300px;
  height: 540px;
  padding: 20px;
}

.content #locking-components .comp-wrapper .comp-item::before {
  position: absolute;
  left: -25.5px;
  top: 0;
  content: '';
  height: 100%;
  border-right: 2px dashed #000;
}

.content #locking-components .comp-wrapper .comp-item:first-child:before {
  display: none;
}

.content #locking-components .comp-wrapper .comp-item:after {
  position: absolute;
  content: '';
  width: 0px;
  height: 0px;
  -webkit-transform: rotate(360deg);
  -moz-transform: translatex(0) translatey(500px);
  -o-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
  border-style: solid;
  border-width: 55px 150px 0 150px;
  border-color: rgba(1, 46, 87, 0.3) transparent transparent transparent;
  bottom: -55px;
  left: 0;
}

.content #locking-components .comp-wrapper .comp-item h4 {
  display: flex;
  align-items: center;
  font-weight: 300;
  font-size: 18px;
  line-height: 23px;
}

.content #locking-components .comp-wrapper .comp-item h4:after {
  display: flex;
  content: '+';
  width: 40px;
  height: 40px;
  position: absolute;
  right: -46px;
  top: 50%;
  transform: translate(0, -50%);
  font-weight: 1000;
  font-size: 80px;
  color: #012e57;
  justify-content: center;
  align-items: center;
}

.content #locking-components .comp-wrapper .comp-item:last-child h4:after {
  display: none;
}

.content #locking-components .comp-wrapper .comp-item:nth-child(1) h4:before {
  width: 58px;
  height: 58px;
  content: '1';
  color: #012e57;
  font-size: 70px;
  font-weight: 800;
  text-align: center;
  padding-top: 14px;
}

.content #locking-components .comp-wrapper .comp-item:nth-child(2) h4:before {
  width: 58px;
  height: 58px;
  content: '2';
  color: #012e57;
  font-size: 70px;
  font-weight: 800;
  text-align: center;
  padding-top: 14px;
}

.content #locking-components .comp-wrapper .comp-item:nth-child(3) h4:before {
  width: 58px;
  height: 58px;
  content: '3';
  color: #012e57;
  font-size: 70px;
  font-weight: 800;
  text-align: center;
  padding-top: 14px;
}

.content #locking-components .comp-wrapper .comp-item .info-content {
  display: none;
  position: absolute;
  left: -9%;
  top: 145px;
  z-index: 1;
  background: #ffffff;
  -webkit-box-shadow: -1px 4px 12px -4px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: -1px 4px 12px -4px rgba(0, 0, 0, 0.75);
  box-shadow: -1px 4px 12px -4px rgba(0, 0, 0, 0.75);
  width: 350px;
  height: fit-content;
  padding: 10px;
  font-size: 16px;
}

.content #locking-components .comp-wrapper .comp-item .info-content.active {
  display: inline-block !important;
}

.content #locking-components .comp-wrapper .comp-item .info-content .close {
  width: 20px;
  height: 20px;
  background: url("../../assets/LandingPageDS/icons/times-circle-solid.svg") no-repeat center;
  background-size: contain;
  cursor: pointer;
  opacity: 1;
}

.content #locking-components .comp-wrapper .comp-item .info {
  position: absolute;
  right: 6%;
  top: 3%;
  cursor: pointer;
}

.content #locking-components .comp-wrapper .comp-item .products {
  display: flex;
  justify-content: center;
  font-size: 20px;
}

.content #locking-components .comp-wrapper .comp-item .products > div {
  position: absolute;
  display: grid;
  text-align: center;
}

.content #locking-components .comp-wrapper .comp-item .products .ax-cylinder {
  top: 41%;
  left: 5%;
  width: fit-content;
  width: -moz-fit-content;
}

.content #locking-components .comp-wrapper .comp-item .products .ax-cylinder:before {
  content: '';
  background: url("../../assets/LandingPageDS/produkte/ax-cylinder.png") no-repeat center;
  background-size: contain;
  width: 180px;
  height: 84px;
}

.content #locking-components .comp-wrapper .comp-item .products .smart-handle-3062 {
  top: 10%;
  right: 2%;
  width: fit-content;
  width: -moz-fit-content;
}

.content #locking-components .comp-wrapper .comp-item .products .smart-handle-3062:before {
  content: '';
  background: url("../../assets/LandingPageDS/produkte/03_SH_3062.png") no-repeat center;
  background-size: contain;
  width: 170px;
  height: 135px;
}

.content #locking-components .comp-wrapper .comp-item .products .smart-relais {
  top: 80%;
  left: 0%;
  width: fit-content;
  width: -moz-fit-content;
}

.content #locking-components .comp-wrapper .comp-item .products .smart-relais:before {
  content: '';
  background: url("../../assets/LandingPageDS/produkte/12_SmartRelais2+SR3Leser.png") no-repeat center;
  background-size: contain;
  width: 180px;
  height: 84px;
}

.content #locking-components .comp-wrapper .comp-item .products .smart-handle-ax {
  top: 61%;
  right: 2%;
  width: fit-content;
  width: -moz-fit-content;
}

.content #locking-components .comp-wrapper .comp-item .products .smart-handle-ax:before {
  content: '';
  background: url("../../assets/LandingPageDS/produkte/01_SH_AX_downwards.png") no-repeat center;
  background-size: contain;
  width: 155px;
  height: 120px;
}

.content #locking-components .comp-wrapper .comp-item .products .transponder {
  top: 30%;
  left: 21%;
  width: fit-content;
  width: -moz-fit-content;
}

.content #locking-components .comp-wrapper .comp-item .products .transponder:before {
  content: '';
  background: url("../../assets/LandingPageDS/produkte/11_Transponder_blau.png") no-repeat center;
  background-size: contain;
  width: 180px;
  height: 84px;
}

.content #locking-components .comp-wrapper .comp-item .products .smart-card {
  top: 60%;
  left: 21%;
  width: fit-content;
  width: -moz-fit-content;
}

.content #locking-components .comp-wrapper .comp-item .products .smart-card:before {
  content: '';
  background: url("../../assets/LandingPageDS/produkte/smart-card.png") no-repeat center;
  background-size: contain;
  width: 180px;
  height: 84px;
}

.content #locking-components .comp-wrapper .comp-item .products .systemsteuerung {
  top: 30%;
  width: fit-content;
  width: -moz-fit-content;
}

.content #locking-components .comp-wrapper .comp-item .products .systemsteuerung:before {
  content: '';
  background: url("../../assets/LandingPageDS/produkte/Systemverwaltung01.png") no-repeat center;
  background-size: contain;
  width: 200px;
  height: 150px;
}

.content #digital-locking-components h2 {
  width: 54%;
  float: right;
}

.content #digital-locking-components ul.nav-pills {
  justify-content: center;
  width: 800px;
  float: right;
}

.content #digital-locking-components ul.nav-pills .nav-item {
  margin: 10px 0 20px 0;
}

.content #digital-locking-components .tab-content {
  float: right;
  width: 100%;
}

.content #digital-locking-components .tab-content .tab-pane > .row {
  flex-direction: row-reverse;
}

.content #digital-locking-components .tab-content .tab-pane ul li:before {
  content: '';
  background: url(data:image/svg+xml;base64,PHN2ZyBhcmlhLWhpZGRlbj0idHJ1ZSIgZm9jdXNhYmxlPSJmYWxzZSIgZGF0YS1wcmVmaXg9ImZhcyIgZGF0YS1pY29uPSJjaGVjayIgY2xhc3M9InN2Zy1pbmxpbmUtLWZhIGZhLWNoZWNrIGZhLXctMTYiIHJvbGU9ImltZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTEyIDUxMiI+PHBhdGggZmlsbD0iI2Q2MGIxMSIgZD0iTTE3My44OTggNDM5LjQwNGwtMTY2LjQtMTY2LjRjLTkuOTk3LTkuOTk3LTkuOTk3LTI2LjIwNiAwLTM2LjIwNGwzNi4yMDMtMzYuMjA0YzkuOTk3LTkuOTk4IDI2LjIwNy05Ljk5OCAzNi4yMDQgMEwxOTIgMzEyLjY5IDQzMi4wOTUgNzIuNTk2YzkuOTk3LTkuOTk3IDI2LjIwNy05Ljk5NyAzNi4yMDQgMGwzNi4yMDMgMzYuMjA0YzkuOTk3IDkuOTk3IDkuOTk3IDI2LjIwNiAwIDM2LjIwNGwtMjk0LjQgMjk0LjQwMWMtOS45OTggOS45OTctMjYuMjA3IDkuOTk3LTM2LjIwNC0uMDAxeiI+PC9wYXRoPjwvc3ZnPg==) no-repeat center;
  width: 22px;
  height: 22px;
  margin-top: 5px;
}

.content #digital-locking-components .tab-content .call-to-action {
  text-align: right;
}

.content #digital-locking-components #pills-cylinder .red-bubble {
  position: absolute;
  bottom: 14%;
  left: 20%;
  z-index: 10;
}

.content #digital-locking-components #pills-door-mounting .red-bubble {
  position: absolute;
  top: 3%;
  left: 36%;
  z-index: 10;
}

.content #digital-identification-components ul.nav-pills {
  justify-content: center;
  width: 800px;
}

.content #digital-identification-components ul.nav-pills .nav-item {
  margin: 10px 0 20px 0;
}

.content #digital-identification-components .tab-content .tab-pane ul li:before {
  content: '';
  background: url(data:image/svg+xml;base64,PHN2ZyBhcmlhLWhpZGRlbj0idHJ1ZSIgZm9jdXNhYmxlPSJmYWxzZSIgZGF0YS1wcmVmaXg9ImZhcyIgZGF0YS1pY29uPSJjaGVjayIgY2xhc3M9InN2Zy1pbmxpbmUtLWZhIGZhLWNoZWNrIGZhLXctMTYiIHJvbGU9ImltZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTEyIDUxMiI+PHBhdGggZmlsbD0iI2Q2MGIxMSIgZD0iTTE3My44OTggNDM5LjQwNGwtMTY2LjQtMTY2LjRjLTkuOTk3LTkuOTk3LTkuOTk3LTI2LjIwNiAwLTM2LjIwNGwzNi4yMDMtMzYuMjA0YzkuOTk3LTkuOTk4IDI2LjIwNy05Ljk5OCAzNi4yMDQgMEwxOTIgMzEyLjY5IDQzMi4wOTUgNzIuNTk2YzkuOTk3LTkuOTk3IDI2LjIwNy05Ljk5NyAzNi4yMDQgMGwzNi4yMDMgMzYuMjA0YzkuOTk3IDkuOTk3IDkuOTk3IDI2LjIwNiAwIDM2LjIwNGwtMjk0LjQgMjk0LjQwMWMtOS45OTggOS45OTctMjYuMjA3IDkuOTk3LTM2LjIwNC0uMDAxeiI+PC9wYXRoPjwvc3ZnPg==) no-repeat center;
  width: 22px;
  height: 22px;
  margin-top: 5px;
}

.content #digital-identification-components .tab-content .tab-pane .call-to-action {
  text-align: right;
}

.content #digital-identification-components #pills-transponder .red-bubble {
  position: absolute;
  top: 4%;
  left: 46%;
  z-index: 10;
}

.content #digital-identification-components #pills-pin-code .red-bubble {
  position: absolute;
  top: 11%;
  left: 32%;
  z-index: 10;
}

.content #network-components {
  margin-bottom: 0;
}

.content #network-components h2 {
  margin: 0;
}

.content #network-components ul.nav-pills {
  justify-content: flex-end;
}

.content #network-components ul.nav-pills .nav-item {
  margin: 10px 0 20px 0;
  min-width: 20%;
  text-align: center;
}

.content #network-components .tab-content {
  position: relative;
  margin: -55px -145px 0 -145px;
  z-index: 0;
}

.content #network-components .tab-content .product {
  position: absolute;
  width: 22%;
  height: 305px;
  z-index: 5;
}

.content #network-components .tab-content .red-bubble {
  z-index: 10;
}

.content #network-components .tab-content .mouse-image {
  z-index: 12;
}

.content #network-components .tab-content .product-srel3-advanced {
  background: url("../../assets/LandingPageDS/network/srel3_advanced.png") no-repeat;
  background-size: 100%;
}

.content #network-components .tab-content .product-srel3 {
  background: url("../../assets/LandingPageDS/network/srel3_leser_inaktiv.png") no-repeat;
  background-size: 100%;
  width: 19.5%;
}

.content #network-components .tab-content .product-srel3.active {
  background: url("../../assets/LandingPageDS/network/srel3_leser_aktiv.png") no-repeat;
  background-size: 100%;
}

.content #network-components .tab-content .product-srel3.active.hidden {
  z-index: 1;
}

.content #network-components .tab-content .product-sh-3062 {
  background: url("../../assets/LandingPageDS/network/sh_3062.png") no-repeat;
  background-size: 100%;
}

.content #network-components .tab-content .product-dc-ax {
  background: url("../../assets/LandingPageDS/network/de_dc_ax_inaktiv.png") no-repeat;
  background-size: 100%;
  width: 10%;
}

.content #network-components .tab-content .product-dc-ax.active {
  background: url("../../assets/LandingPageDS/network/de_dc_ax_aktiv.png") no-repeat;
  background-size: 100%;
}

.content #network-components .tab-content .product-dc-ax.active.hidden {
  z-index: 1;
  opacity: 0;
}

.content #network-components .tab-content .product-sh-ax {
  background: url("../../assets/LandingPageDS/network/sh_ax_downwards.png") no-repeat;
  background-size: 100%;
  width: 25%;
}

.content #network-components .tab-content .product-sh-ax.active {
  background: url("../../assets/LandingPageDS/network/sh_ax_downwards_aktiv.png") no-repeat;
  background-size: 100%;
}

.content #network-components .tab-content .product-sh-ax.active.hidden {
  z-index: 1;
  opacity: 0;
}

.content #network-components .tab-content .product-desktop {
  background: url("../../assets/LandingPageDS/network/desktop.png") no-repeat;
  background-size: 100%;
  width: 22%;
}

.content #network-components .tab-content .product-laptop {
  background: url("../../assets/LandingPageDS/network/laptop.png") no-repeat bottom;
  background-size: 100%;
}

.content #network-components .tab-content #pills-virtuell-network {
  cursor: url("../../assets/LandingPageDS/mouse/transponder_hand_cut.png"), auto;
}

.content #network-components .tab-content #pills-virtuell-network .animation {
    position: relative;
    height: 740px;
    background: url("../../assets/LandingPageDS/virtuell-netzwerk.png") no-repeat left top;
    background-size: 100%;
    z-index: 1;
    overflow: hidden;
}

.content #network-components .tab-content #pills-virtuell-network .animation .info {
  padding: 2px 10px;
  background: #d60b11;
  color: #ffffff;
  z-index: 5;
}

.content #network-components .tab-content #pills-virtuell-network .animation .red-bubble.gateway {
  position: absolute;
  top: 31%;
  left: 9.5%;
}

.content #network-components .tab-content #pills-virtuell-network .animation .info-gateway {
  position: absolute;
  top: 5%;
  left: 1%;
}

.content #network-components .tab-content #pills-virtuell-network .animation .info-srel3-reader {
  position: absolute;
  top: 29%;
  left: 5.8%;
}

.content #network-components .tab-content #pills-virtuell-network .animation .red-bubble.elevator {
  position: absolute;
  top: 28%;
  left: 49.5%;
}

.content #network-components .tab-content #pills-virtuell-network .animation .info-elevator {
  position: absolute;
  top: 15%;
  left: 40%;
}

.content #network-components .tab-content #pills-virtuell-network .animation .red-bubble.door {
  position: absolute;
  top: 23%;
  left: 65.5%;
}

.content #network-components .tab-content #pills-virtuell-network .animation .info-door {
  position: absolute;
  top: 15%;
  left: 56%;
}

.content #network-components .tab-content #pills-virtuell-network .animation .red-bubble.stock {
  position: absolute;
  top: 31%;
  left: 77%;
}

.content #network-components .tab-content #pills-virtuell-network .animation .info-stock {
  position: absolute;
  top: 15%;
  left: 68%;
}

.content #network-components .tab-content #pills-virtuell-network .animation .red-bubble.office {
  position: absolute;
  top: 26%;
  left: 96%;
}

.content #network-components .tab-content #pills-virtuell-network .animation .info-office {
  position: absolute;
  top: 15%;
  left: 93%;
}

.content #network-components .tab-content #pills-virtuell-network .animation .product-srel3-advanced {
  top: 6.5%;
  left: -3%;
}

.content #network-components .tab-content #pills-virtuell-network .animation .product-srel3.first {
  top: 27%;
  left: -2%;
}

.content #network-components .tab-content #pills-virtuell-network .animation .product-srel3.second {
  top: 23%;
  left: 38%;
}

.content #network-components .tab-content #pills-virtuell-network .animation .product-sh-3062 {
  top: 21%;
  left: auto;
  right: 27.5%;
}

.content #network-components .tab-content #pills-virtuell-network .animation .product-dc-ax {
  top: 29%;
  left: auto;
  right: 19.5%;
}

.content #network-components .tab-content #pills-virtuell-network .animation .product-sh-ax {
  top: 20%;
  left: auto;
  right: -3%;
}

.content #network-components .tab-content #pills-virtuell-network .animation .product-desktop {
  bottom: 5%;
  left: 17%;
  height: 44%;
}

.content #network-components .tab-content #pills-virtuell-network .animation .mouse-image {
  z-index: 6;
  position: absolute;
  width: 300px;
  height: 300px;
  background: url("../../assets/LandingPageDS/mouse/transponder_hand_cut.png") no-repeat center;
  background-size: contain;
  bottom: -17px;
  -moz-transform: rotate(6deg);
  -o-transform: rotate(6deg);
  -webkit-transform: rotate(6deg);
  transform: rotate(6deg);
  left: -83px;
}

.content #network-components .tab-content #pills-virtuell-network .animation .mouse-image.active {
  background: url("../../assets/LandingPageDS/mouse/transponder_hand_press_cut.png") no-repeat center;
  background-size: contain;
}

.content #network-components .tab-content #pills-virtuell-network .animation .mouse-image.card {
  background: url("../../assets/LandingPageDS/mouse/card_hand_cut.png") no-repeat center;
  background-size: contain;
  border: 0;
}

.content #network-components .tab-content #pills-virtuell-network .animation .mouse-image.card.active {
  background: url("../../assets/LandingPageDS/mouse/card_hand_cut.png") no-repeat center;
  background-size: contain;
  border: 0;
}

.content #network-components .tab-content #pills-virtuell-network .animation .radio-wave-wrapper {
  position: absolute;
  top: 60%;
  left: 6.3%;
  transform: rotate(270deg);
}

.content #network-components .tab-content #pills-virtuell-network .animation .ant-line-main {
  top: 17%;
  position: absolute;
  width: 11%;
  height: 7px;
  left: 13%;
  z-index: 1;
  transform: rotate(180deg);
}

.content #network-components .tab-content #pills-virtuell-network .animation .ant-line-main-second {
  top: 39%;
  position: absolute;
  width: 17%;
  height: 7px;
  left: 15.7%;
  z-index: 1;
  transform: rotate(-90deg);
}

.content #network-components .tab-content #pills-virtuell-network .animation .ant-line-gateway {
  top: 30%;
  position: absolute;
  width: 10%;
  height: 7px;
  left: 2.5%;
  z-index: 1;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.content #network-components .tab-content #pills-virtuell-network .animation .ant-line-elevator {
  top: 30%;
  position: absolute;
  width: 10%;
  height: 7px;
  right: 47.5%;
  z-index: 1;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.content #network-components .tab-content #pills-virtuell-network .animation .ant-line-outdoor {
  top: 30%;
  position: absolute;
  width: 10%;
  height: 7px;
  right: 30.2%;
  z-index: 1;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.content #network-components .tab-content #pills-virtuell-network .animation .ant-line-stock {
  top: 30%;
  position: absolute;
  width: 10%;
  height: 7px;
  right: 19%;
  z-index: 1;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.content #network-components .tab-content #pills-virtuell-network .animation .ant-line-office {
  top: 30%;
  position: absolute;
  width: 10%;
  height: 7px;
  right: 0;
  z-index: 1;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.content #network-components .tab-content #pills-virtuell-network .content {
  position: relative;
  background: #f2f1f1;
  width: 100%;
  height: 165px;
  margin: -65px 0 0 0;
  z-index: 2;
}

.content #network-components .tab-content #pills-virtuell-network .content p {
  text-align: right;
  width: 70%;
  position: absolute;
  bottom: 18%;
  right: 5%;
  font-size: 25px;
  font-weight: 500;
  padding-top: 20px;
  top: 50%;
  transform: translate(0, -57%);
  display: inline-table;
}

.content #network-components .tab-content #pills-online-network .animation {
    position: relative;
    height: 740px;
    background: url("../../assets/LandingPageDS/online-netzwerk.png") no-repeat left top;
    background-size: 100%;
    z-index: 1;
    overflow: hidden;
}

.content #network-components .tab-content #pills-online-network .animation .info {
  padding: 2px 10px;
  background: #d60b11;
  color: #ffffff;
  z-index: 5;
}

.content #network-components .tab-content #pills-online-network .animation .red-bubble.gateway {
  position: absolute;
  top: 31%;
  left: 9.5%;
}

.content #network-components .tab-content #pills-online-network .animation .info-gateway {
  position: absolute;
  top: 5%;
  left: 10.8%;
}

.content #network-components .tab-content #pills-online-network .animation .red-bubble.elevator {
  position: absolute;
  top: 28%;
  left: 38.5%;
}

.content #network-components .tab-content #pills-online-network .animation .info-elevator {
  position: absolute;
  top: 15%;
  left: 30%;
}

.content #network-components .tab-content #pills-online-network .animation .red-bubble.door {
  position: absolute;
  top: 23%;
  left: 55.5%;
}

.content #network-components .tab-content #pills-online-network .animation .info-door {
  position: absolute;
  top: 15%;
  left: 43%;
}

.content #network-components .tab-content #pills-online-network .animation .red-bubble.stock {
  position: absolute;
  top: 31%;
  left: 67%;
}

.content #network-components .tab-content #pills-online-network .animation .info-stock {
  position: absolute;
  top: 15%;
  left: 64%;
}

.content #network-components .tab-content #pills-online-network .animation .red-bubble.office {
  position: absolute;
  top: 26%;
  left: 89%;
}

.content #network-components .tab-content #pills-online-network .animation .info-office {
  position: absolute;
  top: 15%;
  left: 83%;
}

.content #network-components .tab-content #pills-online-network .animation .product-srel3-advanced {
  top: 6.5%;
  left: 2%;
}

.content #network-components .tab-content #pills-online-network .animation .product-srel3.first {
  top: 27%;
  left: -2%;
}

.content #network-components .tab-content #pills-online-network .animation .product-srel3.second {
  top: 23%;
  left: 27%;
}

.content #network-components .tab-content #pills-online-network .animation .product-sh-3062 {
  top: 21%;
  left: auto;
  right: 37.5%;
}

.content #network-components .tab-content #pills-online-network .animation .product-dc-ax {
  top: 29%;
  left: auto;
  right: 29.5%;
}

.content #network-components .tab-content #pills-online-network .animation .product-sh-ax {
  top: 20%;
  left: auto;
  right: 4%;
}

.content #network-components .tab-content #pills-online-network .animation .product-laptop {
  width: 32%;
  bottom: 12%;
  left: 1%;
  height: 320px;
}

.content #network-components .tab-content #pills-online-network .animation .mouse-image {
  z-index: 6;
  position: absolute;
  width: 300px;
  height: 300px;
  background: url("../../assets/LandingPageDS/mouse/transponder_hand_cut.png") no-repeat center;
  background-size: contain;
  -moz-transform: scaleX(-1) rotate(6deg);
  -o-transform: scaleX(-1) rotate(6deg);
  -webkit-transform: scaleX(-1) rotate(6deg);
  transform: scaleX(-1) rotate(6deg);
  right: -72px;
  bottom: -14px;
}

.content #network-components .tab-content #pills-online-network .animation .mouse-image.active {
  background: url("../../assets/LandingPageDS/mouse/transponder_hand_press_cut.png") no-repeat center;
  background-size: contain;
}

.content #network-components .tab-content #pills-online-network .animation .mouse-image.card {
  background: url("../../assets/LandingPageDS/mouse/card_hand_cut.png") no-repeat center;
  background-size: contain;
  border: 0;
}

.content #network-components .tab-content #pills-online-network .animation .mouse-image.card.active {
  background: url("../../assets/LandingPageDS/mouse/card_hand_cut.png") no-repeat center;
  background-size: contain;
  border: 0;
}

.content #network-components .tab-content #pills-online-network .animation .radio-wave-wrapper-1 {
  position: absolute;
  top: 37%;
  left: 14.3%;
  transform: rotate(90deg);
}

.content #network-components .tab-content #pills-online-network .animation .radio-wave-wrapper-2 {
  position: absolute;
  top: 20.3%;
  left: 26%;
  transform: rotate(180deg);
}

.content #network-components .tab-content #pills-online-network .animation .radio-wave-wrapper-3 {
  position: absolute;
  top: 20.3%;
  left: 39%;
  transform: rotate(180deg);
}

.content #network-components .tab-content #pills-online-network .animation .radio-wave-wrapper-4 {
  position: absolute;
  top: 20.3%;
  left: 55%;
  transform: rotate(180deg);
}

.content #network-components .tab-content #pills-online-network .animation .radio-wave-wrapper-5 {
  position: absolute;
  top: 20.3%;
  left: 74%;
  transform: rotate(180deg);
}

.content #network-components .tab-content #pills-online-network .animation .ant-line-main {
  top: 16.7%;
  position: absolute;
  width: 74%;
  height: 7px;
  left: 15%;
  z-index: 1;
}

.content #network-components .tab-content #pills-online-network .animation .ant-line-gateway {
  top: 37%;
  position: absolute;
  width: 10%;
  height: 7px;
  left: 8%;
  z-index: 1;
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.content #network-components .tab-content #pills-online-network .animation .ant-line-elevator {
  top: 30%;
  position: absolute;
  width: 10%;
  height: 7px;
  left: 31.5%;
  z-index: 1;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.content #network-components .tab-content #pills-online-network .animation .ant-line-outdoor {
  top: 30%;
  position: absolute;
  width: 10%;
  height: 7px;
  left: 49.8%;
  z-index: 1;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.content #network-components .tab-content #pills-online-network .animation .ant-line-stock {
  top: 30%;
  position: absolute;
  width: 10%;
  height: 7px;
  right: 29.2%;
  z-index: 1;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.content #network-components .tab-content #pills-online-network .animation .ant-line-office {
  top: 29%;
  position: absolute;
  width: 10%;
  height: 7px;
  right: 6%;
  z-index: 1;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.content #network-components .tab-content #pills-online-network .content {
  position: relative;
  background: #f2f3f5;
  width: 100%;
  height: 165px;
  margin: -65px 0 0 0;
  z-index: 2;
}

.content #network-components .tab-content #pills-online-network .content p {
  text-align: right;
  width: 70%;
  position: absolute;
  bottom: 18%;
  right: 5%;
  font-size: 25px;
  font-weight: 500;
  padding-top: 20px;
  top: 50%;
  transform: translate(0, -50%);
  display: inline-table;
}

.content #made-in-germany {
  position: relative;
  background: #f5f5f5;
  margin-bottom: -5px;
}

.content #made-in-germany .wrapper {
  display: flex;
  justify-content: center;
}

.content #made-in-germany .left-side, .content #made-in-germany .right-side {
  width: 50%;
}

.content #made-in-germany ul li:before {
  content: '';
  background: url(data:image/svg+xml;base64,PHN2ZyBhcmlhLWhpZGRlbj0idHJ1ZSIgZm9jdXNhYmxlPSJmYWxzZSIgZGF0YS1wcmVmaXg9ImZhcyIgZGF0YS1pY29uPSJjaGVjayIgY2xhc3M9InN2Zy1pbmxpbmUtLWZhIGZhLWNoZWNrIGZhLXctMTYiIHJvbGU9ImltZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTEyIDUxMiI+PHBhdGggZmlsbD0iI2Q2MGIxMSIgZD0iTTE3My44OTggNDM5LjQwNGwtMTY2LjQtMTY2LjRjLTkuOTk3LTkuOTk3LTkuOTk3LTI2LjIwNiAwLTM2LjIwNGwzNi4yMDMtMzYuMjA0YzkuOTk3LTkuOTk4IDI2LjIwNy05Ljk5OCAzNi4yMDQgMEwxOTIgMzEyLjY5IDQzMi4wOTUgNzIuNTk2YzkuOTk3LTkuOTk3IDI2LjIwNy05Ljk5NyAzNi4yMDQgMGwzNi4yMDMgMzYuMjA0YzkuOTk3IDkuOTk3IDkuOTk3IDI2LjIwNiAwIDM2LjIwNGwtMjk0LjQgMjk0LjQwMWMtOS45OTggOS45OTctMjYuMjA3IDkuOTk3LTM2LjIwNC0uMDAxeiI+PC9wYXRoPjwvc3ZnPg==) no-repeat center;
  width: 22px;
  height: 22px;
  margin-top: 5px;
}

.content #made-in-germany .images {
  display: flex;
  justify-content: space-around;
}

.content #made-in-germany .images img {
  width: 43%;
  height: min-content;
}

.content #made-in-germany .call-to-action {
  margin-top: 26%;
  margin-left: 12%;
}

.content #made-in-germany:after {
  content: '';
  background: url("../../assets/LandingPageDS/emotion/Beschlaege_519130393_Mann_kl.png") no-repeat top right;
  background-size: 47.5%;
  height: 100%;
  width: 100%;
  position: absolute;
  right: 0;
  bottom: 0;
}

.content .footer {
  background: #012e57;
  padding: 20px 20px 1px 20px;
}

.content .footer .links {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 20px;
}

.content .footer .links a {
  color: #ffffff;
  padding-bottom: 4px;
  margin-right: 20px;
  border-bottom: 2px solid #ffffff;
}

.content .footer .copy p {
  max-width: 65%;
  font-size: 12px;
  font-weight: 300;
  color: #ffffff;
  line-height: 16px;
  margin-bottom: 10px;
}

.call-to-action {
  position: relative;
  margin: 0 auto;
  text-align: center;
}

.call-to-action a {
  position: relative;
  padding: 15px 95px;
  cursor: pointer;
  background: #012e57;
  -webkit-box-shadow: -1px 4px 12px -4px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: -1px 4px 12px -4px rgba(0, 0, 0, 0.75);
  box-shadow: -1px 4px 12px -4px rgba(0, 0, 0, 0.75);
  color: #ffffff !important;
  font-size: 20px;
  font-weight: 200;
  text-align: center;
  z-index: 10;
}

.call-to-action a:after {
  position: absolute;
  content: '';
  background: url("../../assets/LandingPageDS/icons/arrow-right-solid-w.svg") no-repeat center;
  background-size: 50%;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  background-size: 50%;
  right: 10px;
  top: 50%;
  transform: translate(0, -50%);
}

.call-to-action a:hover {
  background-color: #d60b11;
  color: #ffffff;
}

.call-to-action.bigger a {
  font-size: 35px;
}

.call-to-action .with-image {
  position: relative;
  height: 800px;
  margin: 50px 145px;
  margin-top: -15px;
}

.call-to-action .with-image.smiling-couple {
  margin: 50px 0;
  background: url("../../assets/LandingPageDS/emotion/smiling-couple.png") no-repeat top;
  background-size: cover;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  height: 75vh;
}

.call-to-action .with-image.smiling-couple .content {
  background: none;
}

.call-to-action .with-image.school {
  background: url("../../assets/LandingPageDS/emotion/iStock-142841096_ret2.jpg") no-repeat center;
  background-size: cover;
}

.call-to-action .with-image.physiotherapy {
  background: url("../../assets/LandingPageDS/emotion/09_iStock-912333840_ret2.jpg") no-repeat center;
  background-size: cover;
}

.call-to-action .with-image.co-working-space {
  background: url("../../assets/LandingPageDS/emotion/08_iStock-487105068_ret2.jpg") no-repeat center;
  background-size: cover;
}

.call-to-action .with-image .headline {
  position: absolute;
  bottom: 10%;
  left: 0;
  padding: 30px 10%;
  background: rgba(255, 255, 255, 0.6);
  width: 100%;
  text-align: left;
}

.call-to-action .with-image .headline h2 {
  font-size: 80px;
  margin: 0;
}

.modal-contact {
  z-index: 100;
  display: none;
  position: absolute;
  left: 50%;
  top: 5%;
  width: 70%;
  background: #012e57;
  padding: 45px 30px;
  transform: translate(-50%, 0);
  border: 1px solid grey;
}

.modal-contact svg {
  width: 30px;
  height: 30px;
  top: 20px;
  right: 28px;
  position: absolute;
  color: #ffffff;
  cursor: pointer;
}

.modal-contact .contact-form p, .modal-contact .contact-form h2 {
  color: #ffffff;
  margin-bottom: 20px;
}

.modal-contact .contact-form .col-md-12 {
  float: left;
  width: 100%;
}

.modal-contact .contact-form .col-md-6 {
  float: left;
  width: 50%;
}

.modal-contact .contact-form .input {
  position: relative;
  z-index: 1;
  vertical-align: top;
  margin-top: 10px;
  padding-top: 15px;
  padding-bottom: 20px;
  overflow: hidden;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.modal-contact .contact-form .input-haruki {
  box-sizing: border-box;
  margin-bottom: 8px;
  position: relative;
  /** active label */
}

.modal-contact .contact-form .input-haruki input {
  border: none;
  font-size: 16px;
  outline: 0;
  padding: 16px 0 10px;
  width: 100%;
  color: #fff;
  background: none;
  border-bottom: 1px solid #fff;
}

.modal-contact .contact-form .input-haruki label {
  font-size: 16px;
  position: absolute;
  left: 0;
  transform-origin: top left;
  transform: translate(0, 16px) scale(1);
  transition: all .1s ease-in-out;
  color: #fff;
}

.modal-contact .contact-form .input-haruki.active label {
  transform: translate(0, 1px) scale(0.75);
}

.modal-contact .contact-form .col-md-12 {
  width: 100%;
}

.modal-contact .contact-form .col-md-12 .input-haruki input {
  width: 97.5%;
}

.modal-contact .contact-form .col-md-6 {
  width: 50%;
}

.modal-contact .contact-form .col-md-6 .input-haruki input {
  width: 95%;
}

.modal-contact .contact-form .select__wrap {
  margin-top: .9375rem;
  width: 95%;
  overflow: hidden;
  margin-top: 10px;
  padding-top: 15px;
  padding-bottom: 20px;
}

.modal-contact .contact-form .select__wrap .select__style-wrapper {
  border-bottom: 1px solid #fff;
}

.modal-contact .contact-form .select__wrap .select__style-wrapper .select__field {
  position: relative;
  z-index: 2;
  width: 109%;
  height: 3.25rem;
  background: transparent !important;
  border: none !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  text-overflow: '';
  text-indent: 0.01px;
  outline: none;
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  letter-spacing: 0.5px;
  font-size: 16px;
}

.modal-contact .contact-form .select__wrap .select__style-wrapper select {
  background: none;
  border: none;
  color: #000;
}

.modal-contact .contact-form .select__wrap .select__style-wrapper select option {
  color: #000;
}

.modal-contact .contact-form .checkbox-style {
  margin-top: .9375rem;
  text-align: left;
}

.modal-contact .contact-form .checkbox-style input[type=checkbox] {
  box-sizing: border-box;
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}

.modal-contact .contact-form .checkbox-style label {
  color: #fff;
  display: inline-block;
  cursor: pointer;
  position: relative;
  padding-left: 2.5rem;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  letter-spacing: 0.5px;
  font-size: 16px;
  margin-bottom: .5rem;
}

.modal-contact .contact-form .checkbox-style label:before {
  content: "";
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  position: absolute;
  left: 0;
  top: 0;
  border: .0625rem solid;
  border-color: white;
}

.modal-contact .contact-form .checkbox-style input[type=checkbox]:checked + label:before {
  content: '';
  padding: 0 0 0 0;
  font-size: 1rem;
  line-height: 1.3125rem;
  color: #fff;
  background-image: url("../../assets/LandingPageDS/icons/icon-checkbox-checked.svg");
  background-repeat: no-repeat;
  background-position: center;
}

.modal-contact .actions {
  width: 100%;
  display: inline-block;
}

.modal-contact .actions .form-navigation ul {
  width: 100%;
  margin: 0;
  padding: 0;
}

.modal-contact .actions .form-navigation ul li {
  padding: 0;
  margin: 0;
}

.modal-contact .actions .form-navigation ul li:before {
  content: '';
}

.modal-contact .actions .form-navigation ul li button {
  all: unset;
  cursor: pointer;
  background: #012e57;
  -webkit-box-shadow: -1px 4px 12px -4px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: -1px 4px 12px -4px rgba(0, 0, 0, 0.75);
  box-shadow: -1px 4px 12px -4px rgba(0, 0, 0, 0.75);
  color: #ffffff;
  padding: 15px 150px;
  font-size: 20px;
  font-weight: 300;
  font-family: 'Roboto', sans-serif;
  border: 1px solid white;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
}

.modal-contact .actions .form-navigation ul li button:hover {
  background: #d60b11;
  border: none;
  padding: 16px;
}

.modal-cylinder {
  z-index: 1000;
  display: none;
  position: fixed;
  justify-content: center;
  left: 50%;
  top: 5%;
  width: 90%;
  background: #F2F2F2;
  -webkit-box-shadow: -1px 4px 12px -4px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: -1px 4px 12px -4px rgba(0, 0, 0, 0.75);
  box-shadow: -1px 4px 12px -4px rgba(0, 0, 0, 0.75);
  padding: 65px 70px 30px 70px;
  transform: translate(-50%, 0);
  border-radius: 50px;
  overflow: scroll;
  height: 100% !important;
}

.modal-cylinder .close-modal {
  position: absolute;
  right: 3%;
  top: 2%;
  width: 35px;
  cursor: pointer;
}

.modal-cylinder #digital-locking-components h2 {
  display: flex;
  justify-content: space-between;
  text-align: right;
  align-items: center;
}

.modal-cylinder #digital-locking-components h2:before {
  content: '';
  background: url("../../assets/LandingPageDS/zylinder-beschlag.png") no-repeat center;
  background-size: contain;
  width: 175px;
  height: 200px;
}

.modal-cylinder #digital-locking-components #pills-cylinder .red-bubble {
  position: absolute;
  bottom: 14%;
  left: 20%;
  z-index: 10;
}

.modal-cylinder #digital-locking-components #pills-door-mounting .red-bubble {
  position: absolute;
  top: 3%;
  left: 36%;
  z-index: 10;
}

.modal-cylinder #digital-locking-components .nav-pills {
  justify-content: center;
  width: 90%;
  margin: 0 auto;
}

.modal-cylinder #digital-locking-components .nav-pills .nav-link {
  margin-top: 150px;
}

.modal-cylinder #digital-locking-components .nav-pills .nav-link:before {
  position: absolute;
  top: -150px;
  left: 0;
  content: '';
  width: 100%;
  height: 150px;
  background: #ffffff no-repeat center;
  background-color: #ffffff;
}

.modal-cylinder #digital-locking-components .nav-pills .nav-link#pills-cylinder-tab:before {
  background-image: url("../../assets/LandingPageDS/produkte/all-ax-cylinder.png");
  background-size: 80%;
}

.modal-cylinder #digital-locking-components .nav-pills .nav-link#pills-door-mounting-tab:before {
  background-image: url("../../assets/LandingPageDS/produkte/01_SH_AX_downwards.png");
  background-size: 80%;
}

.modal-cylinder #digital-locking-components .nav-pills .nav-link#pills-smart-relais-tab:before {
  background-image: url("../../assets/LandingPageDS/produkte/12_SmartRelais2+SR3Leser.png");
  background-size: 50%;
}

.modal-cylinder #digital-locking-components .nav-pills .nav-link#pills-smart-locker-tab:before {
  background-image: url("../../assets/LandingPageDS/produkte/06_SmartLocker_AX.png");
  background-size: 125%;
}

.modal-cylinder #digital-locking-components .tab-pane > .column-12.row {
  height: 400px;
}

.modal-cylinder #digital-locking-components .call-to-action {
  text-align: left;
}

.modal-keys {
  z-index: 1000;
  display: none;
  position: fixed;
  justify-content: center;
  left: 50%;
  top: 5%;
  width: 90%;
  background: #F2F2F2;
  -webkit-box-shadow: -1px 4px 12px -4px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: -1px 4px 12px -4px rgba(0, 0, 0, 0.75);
  box-shadow: -1px 4px 12px -4px rgba(0, 0, 0, 0.75);
  padding: 65px 70px 30px 70px;
  transform: translate(-50%, 0);
  border-radius: 50px;
  overflow: scroll;
  height: 100% !important;
}

.modal-keys .close-modal {
  position: absolute;
  right: 3%;
  top: 2%;
  width: 35px;
  cursor: pointer;
}

.modal-keys #digital-identification-components h2 {
  display: flex;
  justify-content: space-between;
  text-align: left;
  align-items: center;
}

.modal-keys #digital-identification-components h2:after {
  content: '';
  background: url("../../assets/LandingPageDS/transponder-smartcard.png") no-repeat center;
  background-size: contain;
  width: 200px;
  height: 200px;
}

.modal-keys #digital-identification-components .col-6:nth-child(2) {
  text-align: center;
}

.modal-keys #digital-identification-components .col-6 .call-to-action {
  margin-top: 55px;
}

.modal-keys #digital-identification-components .nav-pills {
  justify-content: center;
  width: 90%;
  margin: 50px auto;
}

.modal-keys #digital-identification-components .nav-pills .nav-link {
  margin-top: 150px;
  min-width: 200px;
  text-align: center;
}

.modal-keys #digital-identification-components .nav-pills .nav-link:before {
  position: absolute;
  top: -150px;
  left: 0;
  content: '';
  width: 100%;
  height: 150px;
  background: #ffffff no-repeat center;
  background-color: #ffffff;
}

.modal-keys #digital-identification-components .nav-pills .nav-link#pills-tag-tab:before {
  background-image: url("../../assets/LandingPageDS/produkte/smart-tag.png");
  background-size: 45%;
}

.modal-keys #digital-identification-components .nav-pills .nav-link#pills-smart-card-tab:before {
  background-image: url("../../assets/LandingPageDS/produkte/smart-card.png");
  background-size: 45%;
}

.modal-keys #digital-identification-components .nav-pills .nav-link#pills-transponder-tab:before {
  background-image: url("../../assets/LandingPageDS/produkte/11_Transponder_blau.png");
  background-size: 45%;
}

.modal-keys #digital-identification-components .nav-pills .nav-link#pills-pin-code-tab:before {
  background-image: url("../../assets/LandingPageDS/produkte/05_PinCode.png");
  background-size: 100%;
}

.modal-keys #digital-identification-components .nav-pills .nav-link#pills-smartphone-tab:before {
  background-image: url("../../assets/LandingPageDS/produkte/smartphone.png");
  background-size: 35%;
}

.modal-keys #digital-identification-components #pills-transponder .red-bubble {
  position: absolute;
  top: 4%;
  left: 30%;
  z-index: 10;
}

.modal-keys #digital-identification-components #pills-pin-code .red-bubble {
  position: absolute;
  top: 11%;
  left: 32%;
  z-index: 10;
}

.modal-keys #digital-identification-components #pills-smartphone .red-bubble {
  top: 6%;
  left: 37%;
  position: absolute;
  z-index: 10;
}

.modal-keys #digital-identification-components .tab-pane > .column-12.row {
  height: 400px;
}

.modal-keys #digital-identification-components .call-to-action {
  text-align: left;
}

.modal-ax-manager {
  z-index: 1000;
  display: none;
  position: fixed;
  justify-content: center;
  left: 50%;
  top: 5%;
  width: 90%;
  background: #F2F2F2;
  -webkit-box-shadow: -1px 4px 12px -4px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: -1px 4px 12px -4px rgba(0, 0, 0, 0.75);
  box-shadow: -1px 4px 12px -4px rgba(0, 0, 0, 0.75);
  padding: 65px 70px 30px 70px;
  transform: translate(-50%, 0);
  border-radius: 50px;
  overflow: scroll;
  height: 100% !important;
}

.modal-ax-manager .close-modal {
  position: absolute;
  right: 3%;
  top: 2%;
  width: 35px;
  cursor: pointer;
}

.modal-ax-manager #digital-ax-manager h2 {
  display: flex;
  justify-content: space-between;
  text-align: left;
  align-items: center;
}

.modal-ax-manager #digital-ax-manager .col-6:nth-child(2) {
  text-align: center;
}

.modal-ax-manager #digital-ax-manager .col-6 .call-to-action {
  margin-top: 55px;
}

.modal-ax-manager #digital-ax-manager .nav-pills {
  justify-content: center;
  width: 90%;
  margin: 50px auto;
}

.modal-ax-manager #digital-ax-manager .nav-pills .nav-link {
  margin-top: 150px;
  min-width: 200px;
  text-align: center;
}

.modal-ax-manager #digital-ax-manager .nav-pills .nav-link:before {
  position: absolute;
  top: -150px;
  left: 0;
  content: '';
  width: 100%;
  height: 150px;
  background: #ffffff no-repeat center;
  background-color: #ffffff;
}

.modal-ax-manager #digital-ax-manager .nav-pills .nav-link#pills-lsm-tab:before {
  background-image: url("../../assets/LandingPageDS/simons-voss-digitale-schliesssysteme-pc.jpg");
  background-size: cover;
}

.modal-ax-manager #digital-ax-manager #pills-lsm .red-bubble {
  position: absolute;
  top: 4%;
  left: 30%;
  z-index: 10;
}

.modal-ax-manager #digital-ax-manager .tab-pane > .column-12.row {
  height: 400px;
}

.modal-ax-manager #digital-ax-manager .call-to-action {
  text-align: left;
}

/*.contact-form {
    p, h2 {
        color: $white;
        margin-bottom: 20px;
        font-size: 14px;
    }
    .col-md-12 {
        float: left;
        width: 100%;
    }
    .col-md-6 {
        float: left;
        width: 50%;
    }
    .input {
        position: relative;
        z-index: 1;
        vertical-align: top;
        margin-top: 10px;
        padding-top: 25px;
        padding-bottom: 20px;
        overflow: hidden;
        font-family: 'Roboto', sans-serif;
        font-weight: 300;
        letter-spacing: 0.5px;
    }
    .input-haruki {
        box-sizing: border-box;
        margin: 0;
        position: relative;
        input {
          border: none;
          font-size: 16px;
          outline: 0;
          padding: 10px 16px;
          width: 100%;
          color: #fff;
          background: none;
          border: 3px solid black;
        }
        label {
          font-size: 16px;
          position: absolute;
          left: 0;
          color: #000;
          font-weight: 600;
          top: -5px;
        }
    }
    .col-md-12 {
        width: 100%;
        .input-haruki {
            input {
                width: 100%;
            }
        }
    }
    .col-md-6 {
        width: 50%;
        .input-haruki {
            input {
                width: 100%;
            }
        }
    }
    .select__wrap {
        margin-top: .9375rem;
        width: 95%;
        overflow: hidden;
        margin-top: 10px;
        padding-top: 15px;
        padding-bottom: 20px;
        .select__style-wrapper {
            border-bottom: 1px solid #fff;
            .select__field {
                position: relative;
                z-index: 2;
                width: 109%;
                height: 3.25rem;
                background: transparent !important;
                border: none !important;
                -webkit-appearance: none;
                -moz-appearance: none;
                appearance: none;
                text-overflow: '';
                text-indent: 0.01px;
                outline: none;
                color: #fff;
                font-family: 'Roboto', sans-serif;
                font-weight: 300;
                letter-spacing: 0.5px;
                font-size: 16px;
            }
            select {
                background: none;
                border: none;
                color: #000;
                option {
                    color: #000;
                }
            }
        }
    }
    .checkbox-style {
        margin-top: .9375rem;
        text-align: left;
        input[type=checkbox] {
            box-sizing: border-box;
            position: absolute;
            overflow: hidden;
            clip: rect(0 0 0 0);
            height: 1px;
            width: 1px;
            margin: -1px;
            padding: 0;
            border: 0;
        }
        label {
            color: #fff;
            display: inline-block;
            cursor: pointer;
            position: relative;
            padding-left: 2.5rem;
            font-family: 'Roboto', sans-serif;
            font-weight: 300;
            letter-spacing: 0.5px;
            font-size: 14px;
            margin-bottom: .5rem;
            &:before {
                content: "";
                display: inline-block;
                width: 1.25rem;
                height: 1.25rem;
                position: absolute;
                left: 0;
                top: 0;
                border: .0625rem solid;
                border-color: rgba(255,255,255,1);
            }
        }
        input[type=checkbox]:checked+label:before {
            content: '';
            padding: 0 0 0 0;
            font-size: 1rem;
            line-height: 1.3125rem;
            color: #000;
            background-image: url('../../assets/LandingPageDS/icons/icon-checkbox-checked-black.svg');
            background-repeat: no-repeat;
            background-position: center;
        }
    }
    &.black {
        p, h2 {
            color: $black;
            margin-bottom: 20px;
        }
        input, label, select,
        .checkbox-style label:before,
        .select__wrap .select__style-wrapper {
            color: #000 !important;
            border-color: #000 !important;
        }
    }
}*/
.actions {
  width: 100%;
  display: inline-block;
}

.actions .form-navigation ul {
  width: 100%;
  margin: 0;
  padding: 0;
}

.actions .form-navigation ul li {
  padding: 0;
  margin: 0;
}

.actions .form-navigation ul li:before {
  content: '';
}

.actions .form-navigation ul li button {
  all: unset;
  cursor: pointer;
  background: #20baf7;
  -webkit-box-shadow: -1px 4px 12px -4px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: -1px 4px 12px -4px rgba(0, 0, 0, 0.75);
  box-shadow: -1px 4px 12px -4px rgba(0, 0, 0, 0.75);
  color: #ffffff;
  padding: 15px 0;
  font-size: 20px;
  font-weight: 600;
  font-family: 'Roboto', sans-serif;
  border: none;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
}

.actions .form-navigation ul li button:hover {
  background: #d60b11;
  border: none;
}

.tab-content {
  margin: 50px 0;
}

.tab-content video {
  width: 100%;
  height: auto;
}

.tab-pane .preview {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

#full-degree-cylinder .spritespin-progress {
  position: absolute;
  background: url("../../assets/LandingPageDS/full-degree/cylinder-de/TN5_Web_Render_GE_v2_001.png") no-repeat center;
  width: 80%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

#full-degree-cylinder .spritespin-progress-label {
  display: none !important;
}

#full-degree-cylinder .spritespin-progress-bar {
  display: none !important;
}

#full-degree-door-mounting .spritespin-progress {
  position: absolute;
  background: url("../../assets/LandingPageDS/full-degree/smarthandle-de/SV_360_02_v2_0001-min.png") no-repeat center;
  width: 80%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

#full-degree-door-mounting .spritespin-progress-label {
  display: none !important;
}

#full-degree-door-mounting .spritespin-progress-bar {
  display: none !important;
}

#full-degree-pin-code .spritespin-progress {
  position: absolute;
  background: url("../../assets/LandingPageDS/full-degree/pincode/SV_360_06_0001-min.png") no-repeat center;
  width: 80%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

#full-degree-pin-code .spritespin-progress-label {
  display: none !important;
}

#full-degree-pin-code .spritespin-progress-bar {
  display: none !important;
}

#full-degree-transponder .spritespin-progress {
  position: absolute;
  background: url("../../assets/LandingPageDS/full-degree/transponder-de/SV_360_11_0001.png") no-repeat center;
  width: 80%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

#full-degree-transponder .spritespin-progress-label {
  display: none !important;
}

#full-degree-transponder .spritespin-progress-bar {
  display: none !important;
}

@media screen and (max-width: 1650px) {
  .content #locking-components .comp-wrapper {
    transform: scale(0.6) translate(0, -50%);
  }

  .call-to-action a {
    display: flex;
    width: fit-content;
  }
}

@media screen and (max-width: 1510px) {
  .content #pros.colum-12 {
    padding: 50px 3%;
  }

  .content #pros h2 {
    width: 48%;
  }

  .content #pros .pro-wrapper .item .hover .half-circle {
    font-size: 18px;
    padding: 10px 0;
  }

  .content #pros .pro-wrapper .item .hover .circle {
    font-size: 14px;
  }

  .content #applications .animation {
    margin: 0 auto 100px -55px;
  }
}

@media screen and (max-width: 1400px) {
  .content .colum-12 {
    padding: 50px 6%;
  }

  .content .hero-shot {
    padding: 0 145px;
  }

  .content .hero-shot:after {
    right: 12%;
  }

  .content .hero-shot .animation .headlines {
    width: 65%;
  }

  .content #pros {
    margin: 0px 0 -70px 0;
  }

  .content #applications {
    padding: 50px 6%;
    flex-wrap: wrap;
  }

  .content #applications .left-side, .content #applications .right-side {
    width: 100%;
  }

  .content #applications .animation {
    margin: 50px auto;
  }

  .content #reason-why #whys .reason-wrapper {
    flex-wrap: wrap;
  }

  .content #reason-why #whys .reason-wrapper .item {
    flex: none;
    width: 45%;
    margin-bottom: 60px;
  }

  .content #reason-why #whys .reason-wrapper .item .content {
    height: auto;
    min-height: 370px;
  }

  .content #locking-components {
    display: block;
    align-items: unset;
    padding: 50px 6%;
  }

  .content #locking-components .left-side, .content #locking-components .right-side {
    position: relative;
    width: 100%;
    float: none;
    margin: 0;
  }

  .content #locking-components .right-side {
    height: 650px;
  }

  .content #locking-components .comp-wrapper {
    width: 100%;
    top: 12%;
    right: 0;
    left: 50%;
    transform: translate(-50%, 0);
  }

  .content #network-components .tab-content #pills-online-network .content p {
    font-size: 19px;
    padding-right: 20px;
  }

  .content #network-components .tab-content #pills-virtuell-network .content p {
    font-size: 19px;
    padding-right: 20px;
  }

  .content #made-in-germany:after {
    background-position: bottom right;
  }
}

@media screen and (max-width: 1300px) {
  .content #pros {
    margin: 0;
  }

  .content #pros.colum-12 {
    margin: 0;
  }

  .content #pros .left-side, .content #pros .right-side {
    width: 100%;
    position: relative;
  }

  .content #pros .pro-wrapper {
    max-width: 635px;
    margin: 0 auto;
  }

  .content #pros .animation {
    width: 100%;
    height: 500px;
  }

  .content #pros .animation:before {
    left: 50%;
    right: auto;
    transform: translate(-50%, -50%);
  }

  .content #pros .animation .stage {
    left: 50%;
    right: auto;
    transform: translate(-50%, -50%);
  }
}

@media screen and (max-width: 1200px) {
  h2.underline {
    margin-bottom: 6% !important;
  }

  ul li {
    margin: 3% 0;
  }

  .content .column-12, .content .colum-12 {
    margin-bottom: 0;
  }

  .content .hero-shot {
    padding: 1% 6%;
  }

  .content .hero-shot:after {
    width: 28%;
  }

  .content #locking-components {
    margin-top: 0;
    padding: 50px 6%;
  }

  .content #applications {
    margin: 0;
    padding: 5% 10%;
  }

  .content #applications .wrapper {
    width: 100%;
  }

  .content #applications .wrapper:after {
    width: 55%;
  }

  .content #applications .wrapper h2, .content #applications .wrapper h4 {
    width: 80%;
  }

  .content #applications .wrapper .content {
    width: 48%;
  }

  .content #locking-system {
    padding: 0 6% 5% 6%;
  }

  .content #locking-system h4 {
    width: 80%;
  }

  .content #locking-system h4.underline {
    margin-bottom: 6% !important;
    padding-bottom: 4%;
  }

  .content #locking-system h3 {
    margin: 9% 0 6% 0;
  }

  .content #locking-system .content {
    width: 53%;
  }

  .content .introduction:after {
    width: 40%;
    height: 50%;
    background-position: left 45%;
  }

  .content #locking-components .right-side {
    height: auto;
    padding-bottom: 50px;
  }

  .content #locking-components .comp-wrapper {
    position: relative;
    flex-wrap: wrap;
  }

  .content #locking-components .comp-wrapper .comp-item {
    margin-bottom: 80px;
  }

  .content #locking-components .comp-wrapper .comp-item:nth-child(2) h4:after {
    display: none;
  }

  .content #locking-components .comp-wrapper .comp-item:nth-child(3):before {
    display: none;
  }

  .content #locking-components .comp-wrapper .comp-item:nth-child(3) {
    height: 295px;
  }

  .content #pros h2 {
    width: 68%;
  }

  .content #network-components {
    margin-bottom: 0;
  }

  .content #network-components .tab-content #pills-virtuell-network .content p {
    bottom: 8%;
    left: 0;
    width: 90%;
  }

  .content #network-components .tab-content #pills-virtuell-network .animation .info-gateway {
    top: 2%;
    left: 4%;
  }

  .content #network-components .tab-content #pills-virtuell-network .animation .info-srel3-reader {
    top: 28%;
    left: 4.8%;
  }

  .content #network-components .tab-content #pills-virtuell-network .animation .info-office {
    left: 89%;
  }

  .content #network-components .tab-content #pills-online-network .content p {
    bottom: 8%;
    left: 0;
    width: 90%;
  }

  .content #network-components .tab-content #pills-online-network .animation .info-gateway {
    top: 2%;
    left: 6.8%;
  }

  .call-to-action .with-image {
    margin: 0 6% 50px 6%;
  }

  .modal-contact .contact-form p {
    line-height: 20px;
  }

  .modal-contact .contact-form .input-haruki {
    margin-top: 0;
    margin-bottom: 0;
  }
}

@media screen and (max-width: 1100px) {
  ul li {
    margin: 1% 0;
  }

  .tab-content {
    margin: 0;
  }

  .tab-content .row {
    flex-wrap: wrap-reverse;
  }

  .tab-content .col-6 {
    flex: 0 0 100%;
    max-width: 100%;
    flex-wrap: wrap-reverse;
  }

  .content .header .telephone p {
    font-size: 16px;
  }

  .content .introduction {
    margin-bottom: 0;
  }

  .content .introduction .wrapper .left-side {
    display: none;
  }

  .content .introduction .wrapper .right-side {
    width: 100%;
    margin: 0;
  }

  .content #applications {
    padding: 5% 6%;
  }

  .content .introduction .button {
    padding: 0;
  }

  .content #made-in-germany .wrapper .flex-wrapper {
    width: 100%;
  }

  .content #made-in-germany .wrapper .flex-wrapper .call-to-action {
    margin-right: 50px;
  }

  .content #made-in-germany .wrapper .flex-wrapper .images img {
    width: 100%;
  }

  .modal-cylinder {
    padding: 65px 6% 30px 6%;
  }

  .modal-cylinder #digital-locking-components .nav-pills {
    width: 100%;
  }

  .modal-cylinder #digital-locking-components .tab-pane > .column-12.row {
    height: auto;
  }

  .modal-cylinder #digital-locking-components .call-to-action {
    margin: 4% 0;
  }

  .modal-keys {
    padding: 65px 6% 30px 6%;
  }

  .modal-keys #digital-identification-components .nav-pills {
    width: 100%;
  }

  .modal-keys #digital-identification-components .tab-pane > .column-12.row {
    height: auto;
  }

  .modal-keys #digital-identification-components .call-to-action {
    margin: 4% 0;
  }

  .modal-ax-manager {
    padding: 65px 6% 30px 6%;
  }

  .modal-ax-manager #digital-ax-manager .nav-pills {
    width: 100%;
  }

  .modal-ax-manager #digital-ax-manager .tab-pane > .column-12.row {
    height: auto;
  }

  .modal-ax-manager #digital-ax-manager .call-to-action {
    margin: 4% 0;
  }
}

@media screen and (max-width: 1024px) {
  .content #network-components .tab-content #pills-virtuell-network .content p {
    margin-bottom: 0;
  }

  .content #network-components .tab-content #pills-online-network .content p {
    margin-bottom: 0;
  }

  .content #made-in-germany .left-side, .content #made-in-germany .right-side {
    width: 100%;
    float: none;
  }

  .content #made-in-germany .images {
    margin-top: 130px;
  }

  .content #made-in-germany .images img {
    z-index: 1;
  }

  .content #made-in-germany .wrapper {
    flex-wrap: wrap;
  }

  .content #made-in-germany .wrapper .flex-wrapper .call-to-action {
    margin: 0;
    position: absolute;
    top: 57%;
  }

  .modal-contact .contact-form .col-md-6 {
    width: 100%;
  }

  .modal-contact .contact-form .col-md-6 .input-haruki input {
    width: 100%;
  }

  .modal-contact .contact-form .col-md-12 .input-haruki input {
    width: 100%;
  }

  .modal-contact .contact-form .select__wrap {
    width: 100%;
  }
}

@media screen and (max-width: 980px) {
  .content .header {
    justify-content: center;
    flex-wrap: wrap-reverse;
    padding: 0 25px;
  }

  .content .header .item {
    width: 100%;
    text-align: center;
  }

  .content .header .item.logo {
    margin-bottom: 25px;
  }

  .content .header .telephone {
    display: flex;
    justify-content: space-between;
  }

  .content .header .telephone .language-switcher .select {
    padding: 15px 20px;
  }

  .content .hero-shot:after {
    width: 34%;
    right: 4%;
  }

  .content .hero-shot .animation .headlines {
    width: 90%;
  }

  .content .hero-shot .animation .headlines .call-to-action {
    display: flex;
  }

  .content #pros {
    margin-top: 0;
  }

  .content #applications {
    margin-top: 75px;
  }

  .content #applications .wrapper:after {
    display: none;
  }

  .content #applications .wrapper h2, .content #applications .wrapper h4 {
    width: 100%;
    text-align: right;
  }

  .content #applications .wrapper .content {
    width: 80%;
    text-align: right;
  }

  .content #locking-system:after {
    display: none;
  }

  .content #locking-system h4 {
    width: 100%;
  }

  .content #locking-system .content {
    width: 80%;
  }

  .content .introduction {
    margin-bottom: 0;
  }

  .content .introduction .button {
    flex-wrap: wrap;
  }

  .content .introduction .button li {
    width: 49%;
  }

  .content .call-to-action .with-image {
    height: 60vh;
  }

  .content .call-to-action .with-image .headline h2 {
    font-size: 60px;
  }

  .content #made-in-germany:after {
    display: none;
  }

  .content #made-in-germany .wrapper .on-right-side {
    width: 100%;
    float: inherit;
  }

  .content #made-in-germany .wrapper .flex-wrapper {
    display: inline-block;
  }

  .content #made-in-germany .wrapper .flex-wrapper .images img {
    width: 250px;
  }

  .content #made-in-germany .wrapper .flex-wrapper .call-to-action {
    top: 59%;
  }

  .modal-cylinder #digital-locking-components .nav-pills .nav-item {
    margin: 8px 0;
  }

  .modal-cylinder #digital-locking-components .nav-pills .nav-link {
    min-width: auto;
    margin-top: 0;
  }

  .modal-cylinder #digital-locking-components .nav-pills .nav-link:before {
    display: none;
  }

  .modal-keys #digital-identification-components .nav-pills .nav-item {
    margin: 8px 0;
  }

  .modal-keys #digital-identification-components .nav-pills .nav-link {
    min-width: auto;
    margin-top: 0;
  }

  .modal-keys #digital-identification-components .nav-pills .nav-link:before {
    display: none;
  }

  .modal-keys #digital-identification-components #pills-pin-code .col-6:nth-child(2) img:nth-child(2) {
    width: 100%;
    height: auto;
    margin-bottom: -100px;
  }

  .modal-ax-manager #digital-ax-manager .col-6:nth-child(2) {
    display: none;
  }
}

@media screen and (max-width: 992px) {
  .content #digital-locking-components h2,
  .content #digital-identification-components h2 {
    width: 100%;
    float: none;
  }

  .content #digital-locking-components ul.nav-pills,
  .content #digital-identification-components ul.nav-pills {
    width: 100%;
    float: none;
  }

  .content #digital-locking-components ul.nav-pills .nav-item,
  .content #digital-identification-components ul.nav-pills .nav-item {
    margin: 5px 0;
  }

  .content #digital-locking-components .tab-content .call-to-action a,
  .content #digital-identification-components .tab-content .call-to-action a {
    width: 100%;
  }
}

@media screen and (max-width: 900px) {
  .content #network-components .tab-content #pills-virtuell-network .content p {
    width: 80%;
  }

  .content #network-components .tab-content #pills-virtuell-network .animation .product-srel3-advanced {
    left: 3%;
  }

  .content #network-components .tab-content #pills-virtuell-network .animation .info-gateway {
    top: 30%;
    left: 8%;
    z-index: 11;
  }

  .content #network-components .tab-content #pills-virtuell-network .animation .info-srel3-reader {
    top: 56%;
    left: 10.8%;
  }

  .content #network-components .tab-content #pills-virtuell-network .animation .product-srel3.first {
    left: 4%;
  }

  .content #network-components .tab-content #pills-virtuell-network .animation .product-sh-ax {
    right: 0;
  }

  .content #network-components .tab-content #pills-virtuell-network .animation .ant-line-main-second {
    top: 41%;
  }

  .content #network-components .tab-content #pills-virtuell-network .animation .ant-line-gateway {
    left: 8.5%;
  }

  .content #network-components .tab-content #pills-virtuell-network .animation .radio-wave-wrapper {
    top: 64%;
    left: 12.3%;
  }

  .content #network-components .tab-content #pills-virtuell-network .animation .info-office {
    left: 82%;
  }

  .content #network-components .tab-content #pills-online-network .content p {
    width: 80%;
  }

  .content #network-components .tab-content #pills-online-network .animation .red-bubble.gateway {
    top: 35%;
  }

  .content #network-components .tab-content #pills-online-network .animation .info-gateway {
    top: 4%;
  }

  .content #network-components .tab-content #pills-online-network .animation .red-bubble.elevator {
    top: 32%;
  }

  .content #network-components .tab-content #pills-online-network .animation .info-elevator {
    top: 19%;
  }

  .content #network-components .tab-content #pills-online-network .animation .red-bubble.door {
    top: 27%;
  }

  .content #network-components .tab-content #pills-online-network .animation .info-door {
    top: 19%;
  }

  .content #network-components .tab-content #pills-online-network .animation .red-bubble.stock {
    top: 35%;
  }

  .content #network-components .tab-content #pills-online-network .animation .info-stock {
    top: 19%;
  }

  .content #network-components .tab-content #pills-online-network .animation .red-bubble.office {
    top: 30%;
  }

  .content #network-components .tab-content #pills-online-network .animation .info-office {
    top: 19%;
  }

  .content #network-components .tab-content #pills-online-network .animation .product-srel3-advanced {
    top: 10.5%;
  }

  .content #network-components .tab-content #pills-online-network .animation .product-srel3.first {
    top: 31%;
  }

  .content #network-components .tab-content #pills-online-network .animation .product-srel3.second {
    top: 27%;
  }

  .content #network-components .tab-content #pills-online-network .animation .product-sh-3062 {
    top: 25%;
  }

  .content #network-components .tab-content #pills-online-network .animation .product-dc-ax {
    top: 33%;
  }

  .content #network-components .tab-content #pills-online-network .animation .product-sh-ax {
    top: 24%;
  }

  .content #network-components .tab-content #pills-online-network .animation .product-laptop {
    bottom: 1%;
  }

  .content #network-components .tab-content #pills-online-network .animation .radio-wave-wrapper-1 {
    top: 41%;
  }

  .content #network-components .tab-content #pills-online-network .animation .radio-wave-wrapper-2 {
    top: 24.3%;
  }

  .content #network-components .tab-content #pills-online-network .animation .radio-wave-wrapper-3 {
    top: 24.3%;
  }

  .content #network-components .tab-content #pills-online-network .animation .radio-wave-wrapper-4 {
    top: 24.3%;
  }

  .content #network-components .tab-content #pills-online-network .animation .radio-wave-wrapper-5 {
    top: 24.3%;
  }

  .content #network-components .tab-content #pills-online-network .animation .ant-line-main {
    top: 20.7%;
  }

  .content #network-components .tab-content #pills-online-network .animation .ant-line-gateway {
    top: 41%;
  }

  .content #network-components .tab-content #pills-online-network .animation .ant-line-elevator {
    top: 34%;
  }

  .content #network-components .tab-content #pills-online-network .animation .ant-line-outdoor {
    top: 34%;
  }

  .content #network-components .tab-content #pills-online-network .animation .ant-line-stock {
    top: 34%;
  }

  .content #network-components .tab-content #pills-online-network .animation .ant-line-office {
    top: 33%;
  }
}

@media screen and (max-width: 840px) {
  .content #applications .animation {
    left: -125px;
  }
}

@media screen and (max-width: 795px) {
  .content #locking-components .right-side {
    padding-bottom: 0;
  }

  .content #locking-components .comp-wrapper .comp-item h4:after {
    display: none;
  }

  .content #locking-components .comp-wrapper .comp-item:before {
    display: none;
  }

  .content #locking-components .comp-wrapper .comp-item:nth-child(2) {
    height: 350px;
  }

  .content #locking-components .comp-wrapper .comp-item .products .smart-card {
    top: 70%;
  }

  .content #pros h2 {
    width: 90%;
  }
}

@media screen and (max-width: 740px) {
  .content #made-in-germany .wrapper .flex-wrapper .call-to-action {
    top: 64%;
    width: 100%;
  }
}

@media screen and (max-width: 700px) {
  .modal-contact .actions .form-navigation ul li button {
    padding: 15px 0;
  }

  .content .hero-shot:after {
    display: none;
  }

  .content .hero-shot .animation .headlines {
    width: 100%;
  }

  .content .hero-shot .animation .headlines .call-to-action a {
    width: 100%;
  }

  .content #pros .pro-wrapper .item {
    width: 42%;
  }

  .content #network-components ul.nav-pills {
    margin: 30px 0 -25px 0 !important;
  }

  .content #network-components .tab-content {
    margin: 0 -145px 0 -145px;
  }

  .content #network-components .tab-content #pills-virtuell-network .column-12 {
    margin-bottom: 0 !important;
  }

  .content #network-components .tab-content #pills-virtuell-network .animation {
    height: 300px !important;
  }

  .content #network-components .tab-content #pills-virtuell-network .animation * {
    display: none;
  }

  .content #network-components .tab-content #pills-virtuell-network .content {
    position: absolute;
    height: auto;
    top: 0;
    transform: none;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    background: transparent;
  }

  .content #network-components .tab-content #pills-virtuell-network .content p {
    width: 100%;
    height: 100%;
    margin: 0;
    background: rgba(255, 255, 255, 0.6);
    box-sizing: border-box;
    position: relative;
    transform: none;
    top: 0;
    left: 0;
    padding: 35px 15% 15px 15%;
  }

  .content #network-components .tab-content #pills-online-network .column-12 {
    margin-bottom: 0 !important;
  }

  .content #network-components .tab-content #pills-online-network .animation {
    height: 350px !important;
  }

  .content #network-components .tab-content #pills-online-network .animation * {
    display: none;
  }

  .content #network-components .tab-content #pills-online-network .content {
    position: absolute;
    height: auto;
    top: 0;
    transform: none;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    background: transparent;
  }

  .content #network-components .tab-content #pills-online-network .content p {
    width: 100%;
    height: 100%;
    margin: 0;
    background: rgba(255, 255, 255, 0.6);
    box-sizing: border-box;
    position: relative;
    transform: none;
    top: 0;
    left: 0;
    padding: 35px 15% 15px 15%;
  }
}

@media screen and (max-width: 680px) {
  .content .colum-12 {
    padding: 50px 7%;
  }

  .content .hero-shot {
    padding: 1% 6%;
  }

  .content #applications .wrapper h4, .content #applications .wrapper h2 {
    text-align: left;
  }

  .content #applications .wrapper .content {
    width: 100%;
    text-align: left;
  }

  .content #locking-system .content {
    width: 100%;
  }

  .content .call-to-action .with-image {
    margin: -29px 0 50px 0;
  }

  .content .call-to-action .with-image .headline {
    padding: 30px 5%;
  }

  .content #made-in-germany .wrapper .on-right-side p {
    column-count: 1;
  }

  .content #applications .animation {
    margin: 25px auto;
    left: -230px;
    transform: scale(0.75);
  }

  .modal-cylinder #digital-locking-components h2 {
    font-size: 38px;
  }

  .modal-cylinder #digital-locking-components h2:before {
    height: 70px !important;
  }

  .modal-keys #digital-identification-components h2 {
    font-size: 38px;
  }

  .modal-keys #digital-identification-components h2:after {
    height: 70px !important;
  }
}

@media screen and (max-width: 640px) {
  .content #pros .right-side {
    display: none;
  }

  .content #made-in-germany .images {
    flex-wrap: wrap;
  }

  .content #made-in-germany .images img {
    width: 80%;
    margin-bottom: 30px;
  }

  .content #made-in-germany .wrapper .flex-wrapper .call-to-action {
    top: 48%;
  }
}

@media screen and (max-width: 595px) {
  h2 {
    font-size: 32px !important;
  }

  .content .headlines.apart h6, .content .headlines.apart h5 {
    font-size: 32px;
  }

  .content .headlines.apart h5 {
    margin-bottom: 15px;
  }

  .call-to-action a {
    display: block;
    padding: 15px 60px 15px 8% !important;
    margin-bottom: 0;
  }

  .call-to-action a:after {
    right: 7px;
  }

  .call-to-action.bigger a {
    font-size: 25px;
  }

  .call-to-action .with-image {
    height: 45vh;
  }

  .call-to-action .with-image .headline h2 {
    font-size: 40px !important;
    font-weight: 600;
  }

  .content .header .logo {
    margin: 20px 0 !important;
  }

  .content .header .telephone {
    display: none;
  }

  .content .header .telephone-toggle {
    display: inline-block;
  }

  .content .introduction .button li {
    width: 100%;
    font-size: 17px;
    min-height: auto;
  }

  .content #reason-why #whys .reason-wrapper .item {
    width: 100%;
  }

  .content #reason-why #whys .reason-wrapper .item .content {
    min-height: auto;
  }

  .content #locking-components h2 {
    margin-bottom: 50px;
  }

  .content #locking-components .right-side {
    margin-top: 50px;
  }

  .content #locking-components .comp-wrapper .comp-item .info-content {
    left: 50%;
    transform: translate(-50%, 0);
    width: 100%;
  }

  .content #applications {
    margin-top: 0;
  }

  .content #locking-system h3 {
    margin: 10% 0 13% 0;
    font-size: 22px;
  }

  .content .footer .copy p {
    max-width: 100%;
  }

  .modal-keys #digital-identification-components .col-6 img:nth-child(2) {
    height: auto !important;
    width: 80%;
  }
}

@media screen and (max-width: 580px) {
  .content #network-components .tab-content #pills-online-network .content p,
  .content #network-components .tab-content #pills-virtuell-network .content p {
    width: 85%;
    transform: translate(-50%, 0);
    left: 50%;
  }

  .modal-contact .contact-form h2 {
    font-size: 16px !important;
  }

  .modal-contact .contact-form p {
    font-size: 14px !important;
  }
}

@media screen and (max-width: 500px) {
  .content .colum-12 {
    padding: 7%;
  }

  .content #locking-components .comp-wrapper .comp-item .content {
    background: #012e57;
    color: #fff;
  }

  .content #locking-components .comp-wrapper .comp-item .content h4, .content #locking-components .comp-wrapper .comp-item .content p, .content #locking-components .comp-wrapper .comp-item .content button {
    color: #fff;
  }

  .content #locking-components .comp-wrapper .comp-item .content h4 {
    margin-bottom: 5px;
  }

  .content #locking-components .comp-wrapper .comp-item .image {
    display: none;
  }

  .content #made-in-germany .wrapper .flex-wrapper .call-to-action {
    top: 53%;
  }

  .modal-cylinder .close-modal {
    width: 24px;
    right: 8%;
  }

  .modal-cylinder #digital-locking-components h2 {
    font-size: 28px;
  }

  .modal-keys .close-modal {
    width: 24px;
    right: 8%;
  }

  .modal-keys #digital-identification-components h2 {
    font-size: 28px;
  }

  .modal-ax-manager .close-modal {
    width: 24px;
    right: 8%;
  }
}

@media screen and (max-width: 480px) {
  .call-to-action a, ul li, p {
    font-size: 18px;
  }

  .content .hero-shot .animation .headlines h1 {
    font-size: 30px;
  }

  .content .hero-shot .animation .headlines .pro-points {
    margin-bottom: 5%;
  }

  .content .introduction .wrapper .right-side h2 {
    font-size: 28px;
  }

  .content #pros .pro-wrapper .item {
    width: 75%;
  }

  .content #applications .left-side {
    margin-bottom: 50px;
  }

  .content #applications .animation {
    display: none;
  }

  .content #network-components .tab-content #pills-virtuell-network .animation,
  .content #network-components .tab-content #pills-online-network .animation {
    height: 250px !important;
  }

  .modal-contact {
    width: 90%;
    padding: 45px 5px;
  }

  .tab-pane .preview {
    width: 100%;
    height: auto;
  }
}

@media screen and (max-width: 430px) {
  .content #network-components ul.nav-pills {
    justify-content: center;
    width: 114% !important;
    margin-left: -10%;
    margin: 30px -22px -25px -22px !important;
  }

  .content #network-components ul.nav-pills .nav-link {
    padding: 10px 15px;
  }
}

@media screen and (max-width: 400px) {
  h2 {
    font-size: 30px !important;
  }

  h2.underline {
    padding-bottom: 32px;
    margin-bottom: 15% !important;
  }

  .content .header .item.logo a img {
    width: 100%;
    height: auto;
  }

  .content #locking-components .comp-wrapper .comp-item {
    margin-right: -9px;
    margin-left: -9px;
  }

  .content #pros .pro-wrapper {
    margin: 0 -15px;
  }

  .content #pros .pro-wrapper .item {
    margin: 0 0 15px 0;
  }

  .content #made-in-germany .wrapper .flex-wrapper .call-to-action {
    top: 56%;
  }

  .content #digital-locking-components ul.nav-pills .nav-item,
  .content #digital-identification-components ul.nav-pills .nav-item {
    width: 100%;
  }

  .call-to-action a {
    padding: 15px 48px 15px 8% !important;
  }
}

@media screen and (max-width: 350px) {
  .content #made-in-germany .wrapper .flex-wrapper .call-to-action {
    top: 59%;
  }
}

/*# sourceMappingURL=layout_sv.css.map */
