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: 50px;
}

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;
  /*#network-components {
      h2 {
          img {
              padding-bottom: 28px;
              cursor: pointer;
          }
      }
      h3.center {
          text-align: center;
          margin: 80px 0 20px 0;
      }
      .info-content {
          display: none;
          &.active {
              display: inline-block !important;
          }
          .close {
              width: 20px;
              height: 20px;
              background: url('../../assets/LandingPageDS/icons/times-circle-solid.svg') no-repeat center;
              background-size: contain;
              cursor: pointer;
              opacity: 1;
          }
          p {
              column-count: 2;
              column-gap: 30px;
          }
      }
      .nav-pills {
          justify-content: space-around;
          width: 28%;
          margin: 0 auto;
          .nav-link {
              padding: 10px 50px 10px 15px;
              &:before {
                  content: '';
                  background: url('../../assets/LandingPageDS/icons/arrow-right-solid-w.svg') no-repeat right;
                  background-size: contain;
                  position: absolute;
                  right: 10px;
                  top: 50%;
                  width: 20px;
                  height: 24px;
                  transform: translateY(-50%);
              }
          }
      }
      .tab-content {
          position: relative;
          z-index: 0;
          h2 {
              font-size: 30px;
          }
          .left-side {
              padding-right: 50px;
              p {
                  column-count: 2;
                  column-gap: 30px;
              }
          }
          .right-side {
              img {
                  width: 100%;
                  height: auto;
                  margin: 80px 0;
              }
              h4 {
                  font-weight: 300;
                  font-size: 28px;
                  margin-bottom: 20px;
              }
          }
      }
  }*/
}

.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 #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: 9998;
  top: 15%;
}

.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: visible;
}

.content .hero-shot:before {
  content: '';
  position: absolute;
  right: 10%;
  bottom: -10%;
  background: url("../../assets/LandingPageDS/emotion/business-woman-smartphone-fade.png") no-repeat left bottom;
  background-size: 100%;
  width: 38%;
  height: 100%;
}

.content .hero-shot:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  background: url("../../assets/LandingPageDS/mouse/card_hand_cut.png") no-repeat left bottom;
  background-size: contain;
  transform: rotate(25deg);
  width: 18%;
  height: 80%;
  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: 34%;
  margin: 5% 0 5% 20%;
}

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

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

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

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

.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 {
  /*&:after {
      content: '';
      position: absolute;
      width: 44%;
      height: 70%;
      background: url('../../assets/LandingPageDS/emotion/cylinder-with-transponder-arm.png') no-repeat left bottom;
      background-position: 25px 60px;
      right: 0;
      bottom: 0;
      z-index: 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 #pros {
  margin: 100px 0 -70px 0;
}

.content #pros h2 {
  margin-bottom: 5%;
}

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

.content #pros .pro-wrapper .item {
  position: relative;
  cursor: pointer;
  width: 320px;
  height: 320px;
  background: #F2F2F2;
  border-radius: 50%;
  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: #000;
  font-weight: 600;
  font-size: 28px;
  padding: 50px 40px;
  text-align: center;
}

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

.content #pros .pro-wrapper .item .hover .half-circle {
  position: absolute;
  width: 100%;
  height: 35%;
  border-radius: 35% 35% 0 0;
  color: #000;
  font-weight: 600;
  font-size: 22px;
  text-align: center;
  background: #F2F2F2;
  padding: 0 15% 15px 15%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.content #pros .pro-wrapper .item .hover .circle {
  height: 100%;
  background-color: #ffffff;
  display: flex;
  align-items: self-start;
  padding: 123px 20px 85px 20px;
  text-align: center;
  font-size: 17px;
}

.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-red.png") no-repeat center;
  background-size: contain;
  width: 45px;
  height: 45px;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%, 0);
  position: absolute;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.content #applications {
  position: relative;
  margin: 80px 0 0 0;
  padding: 120px 145px;
}

.content #applications .wrapper {
  width: 80%;
  float: right;
}

.content #applications .wrapper h4, .content #applications .wrapper h2 {
  width: 64%;
  float: right;
  font-weight: 600;
  z-index: 1;
}

.content #applications .wrapper .content {
  float: right;
  width: 40%;
}

.content #applications .wrapper:after {
  content: '';
  position: absolute;
  width: 60%;
  height: 70%;
  background: url("../../assets/LandingPageDS/emotion/physiotherapy-man-with-carer.png") no-repeat;
  background-position: right bottom;
  background-size: cover;
  left: 0;
  bottom: 75px;
  z-index: 0;
}

.content #locking-system {
  position: relative;
  padding: 0 145px 120px 145px;
}

.content #locking-system h4 {
  position: relative;
  color: #012e57;
  width: 64%;
}

.content #locking-system h4.underline {
  margin-bottom: 85px !important;
  padding-bottom: 50px;
}

.content #locking-system h4.underline:after {
  position: absolute;
  content: '';
  width: 250px;
  height: 3px;
  background: #d60b11;
  left: 0;
  bottom: 0;
}

.content #locking-system .content {
  width: 40%;
  margin: inherit;
}

.content #locking-system h3 {
  text-align: center;
  margin: 150px 0 80px 0;
  color: #284379;
  font-weight: 400;
}

.content #locking-system p.small {
  text-align: center;
  margin: 32px 0;
  font-size: 16px;
}

.content #locking-system:after {
  content: '';
  position: absolute;
  width: 44%;
  height: 70%;
  background: url("../../assets/LandingPageDS/emotion/business-woman-call-with-smartphone.png") no-repeat center;
  right: 0;
  top: 0;
  z-index: 0;
}

.content #locking-components {
  padding: 85px 145px;
  margin-top: 5%;
}

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

.content #locking-components .comp-wrapper {
  display: flex;
  justify-content: center;
}

.content #locking-components .comp-wrapper .comp-item {
  position: relative;
  background: #F2F2F2;
  margin: 0 25px;
  width: 300px;
}

.content #locking-components .comp-wrapper .comp-item .image {
  width: 100%;
  height: 200px;
  margin-bottom: 25px;
}

.content #locking-components .comp-wrapper .comp-item .image.cylinder {
  background: url("../../assets/LandingPageDS/simons-voss-digitale-schliesskomponenten.jpg") no-repeat center;
  background-size: cover;
}

.content #locking-components .comp-wrapper .comp-item .image.key {
  background: url("../../assets/LandingPageDS/simons-voss-digitale-schluessel.png") no-repeat top;
  background-size: cover;
}

.content #locking-components .comp-wrapper .comp-item .image.system {
  background: url("../../assets/LandingPageDS/simons-voss-digitale-schliesssysteme-pc.jpg") no-repeat center;
  background-size: cover;
}

.content #locking-components .comp-wrapper .comp-item .content {
  padding: 20px;
  background: #F2F2F2;
}

.content #locking-components .comp-wrapper .comp-item h4 {
  align-items: center;
  font-weight: 500;
  font-size: 22px;
  line-height: 32px;
  text-transform: uppercase;
  color: #012e57;
}

.content #locking-components .comp-wrapper .comp-item button {
  position: relative;
  background: none;
  border: none;
  color: #3d9cc3;
}

.content #locking-components .comp-wrapper .comp-item button:after {
  content: '';
  background: url(../../assets/LandingPageDS/icons/arrow-right-solid.svg) no-repeat center;
  position: absolute;
  width: 30px;
  height: 14px;
  top: 50%;
  transform: translate(0, -50%);
}

.content #locking-components .comp-wrapper .comp-item .red-bubble {
  position: absolute;
  left: -20px;
  bottom: 18px;
}

.content #reason-why #whys .reason-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 100px;
}

.content #reason-why #whys .reason-wrapper .item {
  position: relative;
  margin: 10px;
  flex: 1;
}

.content #reason-why #whys .reason-wrapper .item .headline {
  position: relative;
  color: #000;
  font-weight: 600;
  font-size: 22px;
  padding: 70px 40px 50px 40px;
  height: 175px;
  cursor: pointer;
}

.content #reason-why #whys .reason-wrapper .item .headline:before {
  content: '';
  position: absolute;
  background: url(../../assets/LandingPageDS/icons/thumbs-up-regular-red.svg) no-repeat center;
  background-position: contain;
  width: 60px;
  height: 60px;
  left: 40px;
  top: -15px;
}

.content #reason-why #whys .reason-wrapper .item .content {
  height: 100%;
  min-height: 460px;
  background: #F2F2F2;
  display: block;
}

.content #reason-why #whys .reason-wrapper .item .content.inactive {
  display: none;
}

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

.content #made-in-germany:after {
  content: '';
  background: url("../../assets/LandingPageDS/emotion/frau-contact.png") no-repeat top right;
  background-size: contain;
  height: 100%;
  width: 30%;
  position: absolute;
  left: 8%;
  top: 50%;
  transform: translateY(-50%);
  max-height: 600px;
}

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

.content #made-in-germany .wrapper .on-right-side p {
  column-count: 2;
  column-gap: 30px;
}

.content #made-in-germany .wrapper .flex-wrapper {
  width: 80%;
  display: flex;
  margin-top: 100px;
}

.content #made-in-germany .wrapper .flex-wrapper .images {
  flex: 1;
  text-align: center;
}

.content #made-in-germany .wrapper .flex-wrapper .images img {
  width: 37%;
  height: auto;
  display: block;
  margin: 0px auto 30px auto;
}

.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: #00b050;
  -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;
  border-radius: 30px;
  z-index: 10;
}

.call-to-action a:after {
  position: absolute;
  content: '';
  background: url("../../assets/LandingPageDS/icons/arrow-right-solid.svg") #ffffff 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: #3d9cc3;
  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: 9999;
  display: none;
  position: absolute;
  justify-content: center;
  left: 50%;
  top: 5%;
  width: 90%;
  background: #F2F2F2;
  padding: 65px 70px 30px 70px;
  transform: translate(-50%, 0);
  border-radius: 50px;
  -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);
}

.modal-contact .left-side {
  width: 55%;
  padding-right: 50px;
}

.modal-contact .right-side {
  width: 40%;
}

.modal-contact .right-side h3 {
  font-weight: 600;
}

.modal-contact .right-side p {
  font-size: 16px;
  font-weight: 300;
}

.modal-contact .contact-form {
  padding: 20px;
  background: #ffffff;
  margin-bottom: 20px;
}

.modal-contact .contact-info {
  margin: 25px 0;
  border-top: 5px solid #000;
  padding-top: 25px;
  margin-top: 45px;
}

.modal-contact .contact-info h5 {
  font-weight: 600;
  margin: 20px 0;
}

.modal-contact .contact-info .contacts {
  display: flex;
  justify-content: space-between;
}

.modal-contact .contact-info .contacts .item {
  flex: 1;
}

.modal-contact .contact-info .contacts .item .land {
  display: block;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.modal-contact .contact-info .contacts .item a {
  display: block;
  font-size: 13px;
  font-weight: 300;
  margin: 0;
}

.modal-contact .contact-info .contacts .item a:nth-child(3) {
  border-bottom: 1px solid #000;
  display: inline-block;
}

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

.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/Landingpage_SREL-AX_2608.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, .contact-form h2 {
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 14px;
}

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

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

.contact-form .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;
}

.contact-form .input-haruki {
  box-sizing: border-box;
  margin: 0;
  position: relative;
  /** active label */
  /*&.active {
    label {
      //move the x coordinate and reduce size
      transform: translate(0, 1px) scale(.75);
    }
  }*/
}

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

.contact-form .input-haruki label {
  font-size: 16px;
  position: absolute;
  left: 0;
  color: #000;
  font-weight: 600;
  top: -5px;
}

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

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

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

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

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

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

.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;
}

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

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

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

.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;
}

.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: 14px;
  margin-bottom: .5rem;
}

.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;
}

.contact-form .checkbox-style 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;
}

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

.contact-form input, .contact-form label, .contact-form select,
.contact-form .checkbox-style label:before,
.contact-form .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;
}

.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_EN_v2_1000.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: 1500px) {
  .content .hero-shot:before {
    right: 5%;
    bottom: -50px;
  }

  .content .hero-shot:after {
    left: 3%;
    bottom: 10%;
  }

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

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

  .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;
  }
}

@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 {
    overflow: hidden;
  }

  .content .hero-shot:before {
    width: 50%;
    right: -7%;
    bottom: -7px;
  }

  .content .hero-shot:after {
    left: -2%;
    bottom: 4%;
    width: 23%;
  }

  .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 {
    margin-bottom: 10%;
    padding-bottom: 10% !important;
  }

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

  .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 .hero-shot:after {
    display: none;
  }

  .content .hero-shot:before {
    width: 48%;
    right: -5%;
  }

  .content .hero-shot .animation .headlines {
    width: 80%;
    margin: 0;
  }

  .content #pros .pro-wrapper .item {
    width: 295px;
    height: 295px;
  }

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

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

  .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-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%;
  }

  .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: 980px) {
  .content .header {
    justify-content: center;
    flex-wrap: wrap-reverse;
  }

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

  .content .header .telephone {
    margin-bottom: 22px;
  }

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

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

  .content #locking-components .comp-wrapper .comp-item {
    width: 100%;
    display: flex;
    margin-bottom: 10px;
  }

  .content #locking-components .comp-wrapper .comp-item .image {
    height: 100%;
    margin: 0;
  }

  .content #locking-components .comp-wrapper .comp-item .image.cylinder {
    background-position: bottom;
  }

  .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;
    margin-top: 50px;
  }

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

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

  .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;
  }

  .modal-contact {
    flex-wrap: wrap-reverse;
  }

  .modal-contact .contact-info {
    padding-top: 15px;
  }

  .modal-contact .right-side, .modal-contact .left-side {
    width: 100%;
    padding: 0;
  }

  .modal-contact .left-side {
    margin-top: 50px;
  }

  .modal-contact .right-side h3 {
    margin-bottom: 15px;
  }

  .modal-contact .right-side p {
    margin-bottom: 0;
  }

  .modal-contact .contact-info {
    margin: 15px 0;
    margin-top: 30px;
    padding-top: 15x;
  }

  .modal-contact .contact-info h5 {
    margin: 12px 0;
  }

  .modal-contact .contact-info .contacts .item .land {
    margin-bottom: 8px;
  }
}

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

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

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

  .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;
  }

  .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: 595px) {
  h2 {
    font-size: 45px;
  }

  .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 .telephone {
    display: none;
  }

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

  .content .hero-shot .animation .headlines h1 {
    font-size: 28px;
  }

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

  .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-system h3 {
    margin: 10% 0 13% 0;
    font-size: 22px;
  }

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

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

  .modal-contact {
    padding: 10% 7%;
  }

  .modal-contact .contact-info .contacts {
    flex-wrap: wrap;
  }

  .modal-contact .contact-info .contacts .item {
    flex: auto;
    width: 100%;
    margin-bottom: 15px;
  }

  .modal-contact .left-side {
    margin-top: 20px;
  }

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

@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;
  }

  .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: 400px) {
  h2 {
    font-size: 35px;
  }

  h2.underline {
    padding-bottom: 32px;
    margin-bottom: 15% !important;
  }

  .content .header {
    padding: 10% 15px;
  }

  .content .header .item.logo a img {
    width: 100%;
    height: auto;
  }

  .content #locking-components .comp-wrapper .comp-item {
    margin: 0 0 15px 0;
  }

  .content #pros .pro-wrapper {
    margin: 0 -15px;
  }

  .content #pros .pro-wrapper .item {
    margin: 0 0 15px 0;
  }
}

/*# sourceMappingURL=layout_nl.css.map */
