
/* Fonts */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

@font-face {
  font-family: "CornerDisplay";
  src: url("fonts/CornerDisplayWEB-Regular.woff2") format('woff2');
}

@font-face {
  font-family: "CornerDisplay";
  src: url("fonts/CornerDisplayWEB-Bold.woff2") format('woff2');
  font-weight: bold;
}

@font-face {
  font-family: 'HelveticaNeue';
	font-display: block;
    src: url('HelveticaNeue-Bold.eot');
    src: local('HelveticaNeue-Bold'),
        url('fonts/HelveticaNeue-Bold.eot?#iefix') format('embedded-opentype'),
        url('fonts/HelveticaNeue-Bold.woff2') format('woff2'),
        url('fonts/HelveticaNeue-Bold.woff') format('woff'),
        url('fonts/HelveticaNeue-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'HelveticaNeue';
  font-display: block;
  src: url('HelveticaNeue-Medium.eot');
  src: local('HelveticaNeue-Medium'),
      url('fonts/HelveticaNeue-Medium.eot?#iefix') format('embedded-opentype'),
      url('fonts/HelveticaNeue-Medium.woff2') format('woff2'),
      url('fonts/HelveticaNeue-Medium.woff') format('woff'),
      url('fonts/HelveticaNeue-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'HelveticaNeue';
  font-display: block;
  src: url('HelveticaNeue-Light.eot');
  src: local('HelveticaNeue-Light'),
      url('fonts/HelveticaNeue-Light.eot?#iefix') format('embedded-opentype'),
      url('fonts/HelveticaNeue-Light.woff2') format('woff2'),
      url('fonts/HelveticaNeue-Light.woff') format('woff'),
      url('fonts/HelveticaNeue-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'HelveticaNeue';
  font-display: block;
  src: url('HelveticaNeue-Roman.eot');
  src: local('HelveticaNeue-Roman'),
      url('fonts/HelveticaNeue-Roman.eot?#iefix') format('embedded-opentype'),
      url('fonts/HelveticaNeue-Roman.woff2') format('woff2'),
      url('fonts/HelveticaNeue-Roman.woff') format('woff'),
      url('fonts/HelveticaNeue-Roman.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}


/* Generic rules */

:focus {
  outline: none;
}

* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html, body {
  border: 0;
  height: 100%;
}

body {
  font-size: 16px;
  line-height: 24px;
  font-family: CornerDisplay, sans-serif, arial, Helvetica;
  color: #191919;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  transition: background-color .2s ease;
  min-height: 100vh;
  min-height: -webkit-fill-available;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

h1 {
  font-size: 36px;
}

h2 {
  font-size: 32px;
}

a, a:hover, a:active, a:focus, a:visited {
  color: #191919;
  text-decoration: none;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

ul {
  list-style: none;
}

.icon-arrow {
  width: 36px;
  height: 2px;
  background-color: #04424b;
  display: inline-block;
  position: relative;
  transition: width .2s;
}

.icon-arrow:before {
  content: '';
  position: absolute;
  top: 0;
  right: 2px;
  width: 10px;
  height: 2px;
  background-color: #04424b;
  transform: rotate(45deg) translateY(-5px);
}

.icon-arrow:after {
  content: '';
  position: absolute;
  top: 0;
  right: 2px;
  width: 10px;
  height: 2px;
  background-color: #04424b;
  transform: rotate(-45deg) translateY(5px);
}


/* Header */

header {
  color: #04424b;
  background-color: #f2f2f2;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  min-height: 52px;
  z-index: 20;
  box-shadow: 0 0 14px 0 rgba(0, 0, 0, 0.2);
}

header .container {
  flex: 1 1 100%;
  display: flex;
  justify-content: space-between;
  position: relative;
}

header .logo {
  flex: 1 1 0%;
  background-color: #f2f2f2;
  position: relative;
  z-index: 12;
}

header .logo a {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  padding: 14px 18px;
}

header .logo img {
  display: block;
  width: 102px;
  max-width: 100%;
}

header .mtoggler {
  padding: 0 18px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f2f2f2;
  z-index: 11;
  transition: all 0.2s ease;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

header .mtoggler::before {
  content: "";
  background-image: url(img/icons/icon-menu.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px;
  width: 32px;
  height: 28px;
  transform: scale(1);
  transition: all 0.2s ease;
}

header .mtoggler::after {
  content: "";
  background-image: url(img/icons/icon-menu-close.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px;
  width: 32px;
  height: 28px;
  opacity: 0;
  position: absolute;
  z-index: -1;
  transform: scale(0);
  transition: all 0.2s ease;
}

header .mtoggler.active {
  background-color: #fff;
}

header .mtoggler.active::before {
  opacity: 0;
  transform: scale(0);
}

header .mtoggler.active::after {
  opacity: 1;
  transform: scale(1);
}

header .nav {
  color: #04424b;
  background-color: #fff;
  top: 0;
  left: 0;
  right: 0;
  position: fixed;
  overflow-y: auto;
  overflow-x: hidden;
  padding-top: 80px;
  transform: translateY(-100%);
  display: block;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.15);
  transition: transform 0.15s ease-out, z-index 0.1s linear 0.15s;
  z-index: -1;
}

header .nav.show {
  transform: translateY(0);
  z-index: 10;
  transition: transform 0.25s ease-out;
}

header .nav > * {
  opacity: 0;
  transition: opacity 0.1s linear;
}

header .nav.show > * {
  opacity: 1;
}

header .nav a,
header .nav a:hover,
header .nav .langs span {
  color: #04424b;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: -0.32px;
  line-height: 1.2;
}

header .nav .menu a {
  display: inline-block;
  padding: 10px 18px;
}

header .nav .cta {
  padding: 0 10px;
  margin-top: 16px;
}

header .nav .cta .btn {
  border: 1px solid #04424b;
  border-radius: 4px;
  padding: 12px 24px;
  display: inline-block;
  transition: all 0.15s linear;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

header .nav .cta .btn:hover {
  color: #fff;
  background-color: #04424b;
}

header .nav .cta > .btn {
  display: none;
}

header .nav .cta .items > div {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

header .nav .cta .items .btn {
  text-align: center;
  width: 100%;
  max-width: 320px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px;
  margin: 0 8px 16px;
}

header .nav .cta .items .btn:first-child {
  color: #fff;
  background-color: #04424b;
}

header .nav .cta .items .btn:first-child:hover {
  background-color: #650024;
}

header .nav .langs {
  margin-top: 16px;
  background-color: #f2f2f2;
}

header .nav .langs .ltoggler {
  display: none;
}

header .nav .langs .list > div {
  display: flex;
  justify-content: center;
}

header .nav .langs a,
header .nav .langs .list span {
  padding: 16px 32px;
}

header .nav .langs .list span {
  font-weight: 700;
}

@media screen and (min-width: 769px) {
  
  header .logo a {
    padding: 16px 40px;
  }
  
  header .logo img {
    width: 130px;
  }
  
  header .mtoggler {
    padding: 0 24px;
  }
  
  header .nav {
    left: auto;
    padding-top: 92px;
  }
  
  header .nav .menu a {
    padding: 10px 24px;
  }
  
  header .nav .cta {
    padding: 0 24px;
  }
  
  header .nav .cta .items > div {
    flex-direction: column;
    flex-wrap: nowrap;
  }
  
  header .nav .cta .items .btn {
    margin: 0 0 16px;
  }
  
}

@media screen and (min-width: 1281px) {
  
  header {
    min-height: unset;
  }
  
  header .container {
    min-height: 94px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  header .logo {
    flex: 0 0 173px;
    display: flex;
    align-items: center;
    margin-right: 40px;
  }
  
  header .logo a {
    padding: 0;
  }
  
  header .logo img {
    width: 173px;
  }
  
  header .nav {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0;
    transform: none;
    background-color: transparent;
    flex: 1 1 0%;
    overflow: visible;
    box-shadow: none;
    z-index: 0;
  }
  
  header .nav > * {
    opacity: 1;
  }
  
  header .nav .menu {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 0%;
  }
  
  header .nav .cta {
    padding: 0;
    margin: 0;
    position: relative;
  }
  
  header .nav .cta > .btn {
    display: inline-block;
  }
  
  header .nav .cta .items {
    position: absolute;
    top: 54px;
    right: 0;
    padding-top: 6px;
    z-index: 10;
  }
  
  header .nav .cta .items::before {
    content: " ";
    width: 8px;
    height: 0;
    background-color: #f2f2f2;
    position: absolute;
    right: 41px;
    top: 2px;
    transform: rotate(45deg);
    transition: all .1s ease;
    z-index: 11;
  }
  
  header .nav .cta .items > div {
    background-color: #f2f2f2;
    padding: 0 24px;
    border-radius: 5px;
    width: 350px;
    max-height: 0;
    overflow: hidden;
    justify-content: flex-start;
    opacity: 0;
    transition: all .2s ease;
  }
  
  header .nav .cta .items .btn {
    margin-bottom: 12px;
  }
  
  header .nav .cta .items.show > div {
    padding: 20px 20px 8px;
    max-height: 200px;
    border: 1px solid #04424b;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.08);
    opacity: 1;
  }
  
  header .nav .cta .items.show::before {
    height: 8px;
    border-top: 1px solid #04424b;
    border-left: 1px solid #04424b;
  }
  
  header .mtoggler {
    display: none;
  }
  
  header .nav .langs {
    position: relative;
    margin-top: 0;
    background-color: transparent;
  }
  
  header .nav .langs .ltoggler {
    color: #191919;
    padding: 0;
    display: flex;
    align-items: center;
    padding: 8px 0;
    margin-left: 28px;
  }
  
  header .nav .langs .ltoggler img {
    width: 20px;
    transform: rotate(180deg);
    transition: transform 0.15s linear;
    /*filter: invert(10%) sepia(96%) saturate(4774%) hue-rotate(327deg) brightness(68%) contrast(114%);*/
  }
  
  header .nav .langs .ltoggler.active img {
    transform: rotate(0);
  }
  
  header .nav .langs .list {
    position: absolute;
    top: 0;
    right: 0;
    top: 39px;
    right: -3px;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.08);
    z-index: 20;
    opacity: 0;
    transition: all 0.15s ease;
  }
  
  header .nav .langs .list::before {
    content: "";
    width: 0;
    height: 0;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    border-bottom: 4px solid #fff;
    position: absolute;
    right: 9px;
    top: -4px;
  }
  
  header .nav .langs .list > div {
    flex-direction: column;
    justify-content: flex-start;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    transition: all 0.15s ease;
  }
  
  header .nav .langs .list.show {
    opacity: 1;
  }
  
  header .nav .langs .list.show > div {
    padding: 6px 0;
    max-height: 150px;
  }
  
  header .nav .langs .list span {
    display: none;
  }
  
  header .nav .langs .list a {
    padding: 6px 20px;
  }
  
  header .nav .langs .list a:hover {
    background-color: #f2f2f2;
  }
  
}

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

  header .container {
    max-width: 1400px;
  }
  
}


/* Main */

main {
  flex: 1 0 auto;
  overflow: hidden;
  position: relative;
}

main img {
  max-width: 100%;
  display: block;
}


/* Sections */

section {
  position: relative;
}

section.hero {
  color: #fff;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  z-index: 0;
}

section.hero .primary {
  padding: 0 18px;
  flex: 1 1 0%;
  position: relative;
  z-index: 1;
}

section.hero .primary .container {
  padding-top: 40px;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  min-height: 40vh;
}

section.hero h1 {
  font-size: 36px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.72px;
  max-width: 450px;
  margin: 20px 0 16px;
}

section.hero .desc {
  font-family: 'HelveticaNeue', Roboto, sans-serif, arial;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.25;
  max-width: 500px;
}

section.hero .cta {
  margin-top: 20px;
}

section.hero .cta.app {
  display: flex;
}

section.hero .cta.app img {
  width: 134px;
  margin-right: 16px;
}

section.hero .secondary {
  display: flex;
  position: relative;
  margin-bottom: -60px;
}

section.hero .secondary .container {
  background-image: url(img/fi-hero.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  min-height: 500px;
  max-width: unset;
  flex: 1 1 100%;
  transform: translateY(-50px);
}

section.hero .secondary .offer {
  position: absolute;
  bottom: -36px;
  left: -44px;
  z-index: 2;
}

section.hero .secondary .img {
  position: absolute;
  top: 24px;
  left: 140px;
  height: 1200px;
  width: 1200px;
  border-radius: 70px;
  box-shadow: 0 0 0 9999px #04424b;
  transform: rotate(-14deg);
  z-index: 0;
}

section.usp .container {
  padding: 80px 0 0;
}

section.usp h2 {
  font-size: 32px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 58px;
  padding: 0 18px;
}

section.usp .items {
  padding: 0 18px;
}

section.usp .item {
  color: #191919;
  text-align: center;
  margin: 24px auto;
  max-width: 440px;
}

section.usp .item > div {
  background-color: #edf0fc;
  border-radius: 20px;
  padding: 24px 24px 32px;
  min-height: 220px;
}

section.usp .item .icon img {
  width: 64px;
  margin: 0 auto;
}

section.usp .item h3 {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 16px 0 12px;
}

section.usp .item .desc {
  font-size: 16px;
  font-family: 'HelveticaNeue', Roboto, sans-serif, arial;
  font-weight: 300;
  line-height: 1.2;
}

section.usp .offer {
  font-weight: 700;
  text-align: center;
  padding: 40px 24px 80px;
}

section.usp .offer h4 {
  font-weight: 700;
  text-transform: uppercase;
  margin: 16px 0;
}

section.usp .offer span {
  color: #ff4b00;
  font-size: 18px;
  margin: 0 8px;
}

section.usp .offer span.old {
  text-decoration: line-through;
  opacity: 0.3;
}

section.usp-cards .container {
  padding: 80px 0;
}

section.usp-cards h2 {
  color: #04424b;
  font-size: 32px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: -0.64px;
  margin-bottom: 58px;
  padding: 0 24px;
}

section.usp-cards .items {
  padding: 1px 18px;
}

section.usp-cards .item {
  margin: 24px auto;
  max-width: 440px;
  -webkit-tap-highlight-color: transparent;
}

section.usp-cards .item > div {
  background-color: #edf0fc;
  border-radius: 20px;
  overflow: hidden;
}

section.usp-cards .item .primary {
  padding: 32px 24px 0;
  position: relative;
  z-index: 1;
}

section.usp-cards .item h3 {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
}

section.usp-cards .item .desc {
  font-size: 18px;
  font-family: 'HelveticaNeue', Roboto, sans-serif, arial;
  font-weight: 300;
  line-height: 1.2;
}

section.usp-cards .item .secondary {
  display: flex;
  position: relative;
  margin-top: -24px;
  margin-bottom: -168px;
}

section.usp-cards .item .secondary .holder {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 500px;
  flex: 1 1 100%;
}

section.usp-cards .item:first-child .secondary .holder {
  background-image: url(img/usp1.jpg);
}

section.usp-cards .item:last-child .secondary .holder {
  background-image: url(img/usp2.jpg);
}

section.usp-cards .item .secondary .img {
  position: absolute;
  top: 0;
  left: 94px;
  height: 1000px;
  width: 1000px;
  border-radius: 70px;
  box-shadow: 0 0 0 9999px #edf0fc;
  transform: rotate(-10deg);
  z-index: 0;
}

section.usp-cards.app-screens {
  background-color: #f5f5f5;
}

section.usp-cards.app-screens .container {
  padding-bottom: 610px;
}

section.usp-cards.app-screens .slist {
  display: none;
}

section.usp-cards.app-screens .tns-nav {
  order: 0;
  margin: 0 42px 32px;
}

section.usp-cards.app-screens .tns-nav button {
  flex: 1 1 auto;
  width: auto;
  height: 1px;
  background-color: #a3a3a3;
  border-radius: 0;
  margin: 0;
  overflow: visible;
  position: relative;
  transition: all 0.2s linear;
}

section.usp-cards.app-screens .tns-nav button::before,
section.usp-cards.app-screens .tns-nav button::after {
  content: "";
  height: 3px;
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  background-color: #04424b;
  z-index: 1;
}

section.usp-cards.app-screens .tns-nav button::after {
  top: auto;
  bottom: -2px;
}

section.usp-cards.app-screens .tns-nav button.tns-nav-active {
  background-color: #04424b;
}

section.usp-cards.app-screens .tns-nav button.tns-nav-active::before,
section.usp-cards.app-screens .tns-nav button.tns-nav-active::after {
  width: 100%;
  transition: all 0.3s ease-out;
}

section.usp-cards.app-screens .tns-ovh {
  overflow: visible;
}

section.usp-cards.app-screens .item {
  text-align: center;
  width: 285px;
}

section.usp-cards.app-screens .item > div {
  background-color: #fff;
  min-height: 210px;
  overflow: visible;
  position: relative;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.05);
  transition: all .3s ease .3s;
}

section.usp-cards.app-screens .item .secondary {
  opacity: 0;
  transform: translateY(150%);
  transition: opacity .5s ease, transform .1s linear .5s;
}

section.usp-cards.app-screens .item.tns-slide-active > div {
  margin-bottom: -170px;
  transition: all .5s ease .1s;
}

section.usp-cards.app-screens .item.tns-slide-active .secondary {
  opacity: 1;
  transform: translateY(0%);
  transition: all .5s ease .1s;
}

section.usp-cards.app-screens .item .secondary {
  position: absolute;
  top: auto;
  bottom: -330px;
  left: 0;
  right: 0;
  margin: 0;
}

section.usp-cards.app-screens .item h3 {
  color: #04424b;
  font-size: 20px;
  font-family: 'HelveticaNeue', Roboto, sans-serif, arial;
  font-weight: 500;
  text-transform: none;
  line-height: 1.2;
}

section.usp-cards.app-screens .item .desc {
  font-size: 16px;
  line-height: 1.25;
  max-width: 370px;
  margin: 0 auto;
}

section.usp-cards.app-screens .item .cta {
  margin-top: 18px;
}

section.usp-cards.app-screens .item .cta .btn, 
section.usp-cards.app-screens .item .cta .btn:visited {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  padding: 4px 24px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #04424b;
  min-height: 41px;
  border: 0 none;
  border-radius: 5px;
  cursor: pointer;
  outline: none;
  transition: all .1s linear;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

section.usp-cards.app-screens .item .cta .btn:hover {
  background-color: #022126;
}

section.usp-cards.app-screens .item:first-child .secondary .holder,
section.usp-cards.app-screens .item:last-child .secondary .holder {
  background-image: none;
}
  
section.usp-cards.app-screens .item .secondary .img,
section.usp-cards.mb-slider.app-screens .item:not(:first-child:last-child) .secondary .img {
  top: -64px;
  left: 50%;
  box-shadow: none;
  transform: translateX(-50%);
  width: auto;
  height: auto;
}

section.usp-cards.app-screens .item .secondary .img img {
  width: 860px;
  max-width: unset;
  margin-left: -46px;
}
  
html[lang=de] section.usp-cards.app-screens .item .secondary .img,
html[lang=de] section.usp-cards.mb-slider.app-screens .item:not(:first-child:last-child) .secondary .img {
  top: -50px;
}

html[lang=de] section.usp-cards.app-screens .item .secondary .img img {
  width: 726px;
  margin-left: -165px;
}

section.usp-illustration .container {
  padding: 80px 0 40px;
}

section.usp-illustration + section.usp-illustration .container {
  padding-top: 0;
}

section.usp-illustration.mb-slider .container {
  padding-bottom: 110px;
}

section.usp-illustration h2 {
  color: #04424b;
  font-size: 32px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: -0.64px;
  margin-bottom: 52px;
  padding: 0 24px;
}

section.usp-illustration .items {
  padding: 0 18px;
}

section.usp-illustration .item {
  color: #191919;
  text-align: center;
  margin: 0 auto;
  max-width: 320px;
}

section.usp-illustration:not(.mb-slider) .item > div {
  padding-bottom: 48px;
}

section.usp-illustration .item .img img {
  width: 124px;
  margin: 0 auto;
}

section.usp-illustration .item h3 {
  color: #04424b;
  font-size: 20px;
  font-weight: 500;
  font-family: 'HelveticaNeue', Roboto, sans-serif, arial;
  letter-spacing: -0.4px;
  margin: 16px 0 8px;
}

section.usp-illustration .item .desc {
  font-size: 16px;
  font-family: 'HelveticaNeue', Roboto, sans-serif, arial;
  font-weight: 300;
  line-height: 1.25;
}

section.usp-icon .container {
  padding: 80px 0 40px;
}

section.usp-icon.mb-slider .container {
  padding-bottom: 110px;
}

section.usp-icon h2 {
  font-size: 32px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 48px;
  padding: 0 18px;
}

section.usp-icon .items {
  padding: 0 18px;
}

section.usp-icon .item {
  text-align: center;
  margin: 0 auto;
  max-width: 320px;
}

section.usp-icon:not(.mb-slider) .item > div {
  padding-bottom: 64px;
}

section.usp-icon .item .icon img {
  width: 64px;
  margin: 0 auto;
}

section.usp-icon .item h3 {
  font-weight: 700;
  text-transform: uppercase;
  margin: 24px 0 12px;
}

section.usp-icon .item .desc {
  font-size: 16px;
  font-weight: 300;
  font-family: 'HelveticaNeue', Roboto, sans-serif, arial;
  line-height: 1.2;
}

section.shape-text {
  display: flex;
  flex-flow: column-reverse;
  overflow: hidden;
  z-index: 0;
}

section.shape-text .primary {
  padding: 0 18px;
  margin-top: -18px;
  position: relative;
  z-index: 1;
}

section.shape-text .primary .container {
  padding-bottom: 80px;
  display: flex;
  flex-direction: column;
  max-width: 500px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

section.shape-text h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 16px;
}

section.shape-text .desc {
  font-size: 18px;
  font-weight: 300;
  font-family: 'HelveticaNeue', Roboto, sans-serif, arial;
  line-height: 1.2;
  letter-spacing: 0.36px;
}

section.shape-text .desc p:not(:first-child) {
  margin-top: 16px;
}

section.shape-text .secondary {
  display: flex;
  position: relative;
}

section.shape-text .secondary .container {
  background-image: url(img/st.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 440px;
  flex: 1 1 100%;
}

section.shape-text .secondary .img {
  position: absolute;
  bottom: 22px;
  left: 124px;
  height: 1200px;
  width: 1200px;
  border-radius: 70px;
  box-shadow: 0 0 0 9999px #022126;
  transform: rotate(12deg);
  z-index: 0;
}

section.shape-text.reverse .secondary .img {
  left: auto;
  right: 124px;
  transform: rotate(-12deg);
}

section.sticker .container {
  padding: 80px 16px;
}

section.sticker .container > div {
  padding: 40px 0;
  border-radius: 18px;
  background-color: #2e46d5;
  max-width: 400px;
  margin: 0 auto;
}

section.sticker .img img {
  margin: 0 auto;
}

section.sticker .img:first-child img {
  width: 154px;
}

section.sticker .img:last-child img {
  width: 160px;
}

section.sticker .info {
  font-size: 24px;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  padding: 0 32px;
  margin: 30px auto 24px;
  max-width: 500px;
}

section.accordion {
  background-color: #f5f5f5;
  padding-top: 80px;
  position: relative;
  z-index: 1;
}

section.accordion .container {
  padding-bottom: 56px;
}

section.accordion h2 {
  color: #04424b;
  font-size: 24px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: -0.48px;
  margin-bottom: 16px;
  padding: 0 18px;
}

section.accordion h2 + .desc {
  font-size: 16px;
  font-weight: 300;
  font-family: 'HelveticaNeue', Roboto, sans-serif, arial;
  text-align: center;
  line-height: 1.25;
  max-width: 500px;
  margin: 0 auto;
  padding: 0 40px;
}

section.accordion .items {
  padding: 12px 18px;
  max-width: 600px;
  margin: 0 auto;
}

section.accordion .item {
  font-family: 'HelveticaNeue', Roboto, sans-serif, arial;
  line-height: 1.25;
  margin: 12px auto;
}

section.accordion .item > div {
  padding-bottom: 12px;
  border-radius: 8px;
  background-color: #fff;
  position: relative;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.05);
}

section.accordion .item .title {
  padding: 24px 16px 12px;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

section.accordion .item h3 {
  color: #04424b;
  font-size: 16px;
  font-family: 'HelveticaNeue', Roboto, sans-serif, arial;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.32px;
  padding-right: 52px;
}

section.accordion .item .desc {
  font-weight: 300;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  padding: 0 16px;
  transition: all .2s ease;
}

section.accordion .item .desc p:not(:first-child) {
  margin-top: 12px;
}

section.accordion .item .toggler {
  background-color: #04424b;
  border-radius: 14px;
  width: 24px;
  height: 24px;
  overflow: hidden;
  position: absolute;
  top: 24px;
  right: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

section.accordion .item .toggler img {
  width: 22px;
  transform: rotate(-180deg) translateY(-1px);
  transition: transform .15s linear;
}

section.accordion .item.expanded .desc {
  opacity: 1;
  max-height: 500px;
  margin-bottom: 10px;
}

section.accordion .item.expanded .toggler img {
  transform: translateY(-1px);
}

section[class*="slider"] .tns-outer {
  display: flex;
  flex-direction: column;
}

section[class*="slider"] .tns-nav {
  order: 2;
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

section[class*="slider"] .tns-nav button {
  width: 16px;
  height: 16px;
  color: #edf0fc;
  background-color: #8d9eea;
  border: 0 none;
  border-radius: 8px;
  display: inline-block;
  margin: 0 8px;
  cursor: pointer;
  overflow: hidden;
  transition: background-color 0.2s linear;
}

section[class*="slider"] .tns-nav button.tns-nav-active {
  background-color: #edf0fc;
}

section.mb-slider.usp-illustration .tns-nav button {
  background-color: #dae0f9;
}

section.mb-slider.usp-illustration .tns-nav button.tns-nav-active {
  background-color: #022126;
}

section.mb-slider .items {
  padding: 0;
  outline: none;
  user-select: none;
}

section.mb-slider .tns-ovh {
  padding: 0 24px;
}

section.mb-slider .row {
  display: flex;
}

section.mb-slider .item.tns-item {
  display: inline-flex;
  padding: 5px 8px 0;
  margin: 0;
  max-width: unset;
}

section.mb-slider .item.tns-item > div {
  flex: 1 1 auto;
}

section.media .img {
  height: 614px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

section.media .img img {
  max-width: unset;
  width: 1200px;
}

section.app-sections .container {
  padding: 80px 0 560px;
  outline: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

section.app-sections h2 {
  color: #04424b;
  font-size: 32px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: -0.64px;
  margin-bottom: 32px;
  padding: 0 24px;
}

section.app-sections .controls {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}

section.app-sections .controls > div {
  width: 40px;
  height: 40px;
  background-color: #04424b;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 12px;
  cursor: pointer;
}

section.app-sections .controls > div:first-child img {
  width: 29px;
  transform: rotate(-90deg);
  margin-right: 2px;
}

section.app-sections .controls > div:last-child img {
  width: 29px;
  transform: rotate(90deg);
  margin-left: 2px;
}

section.app-sections .tns-nav {
  display: flex;
  justify-content: center;
  counter-reset: asection;
}

section.app-sections .tns-nav button {
  color: #191919;
  font-family: CornerDisplay, sans-serif, arial, Helvetica;
  font-size: 16px;
  background-color: transparent;
  border: 0 none;
  width: 40px;
  min-height: 34px;
  padding: 0 2px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  opacity: 0.2;
  transition: all 0.15s linear;
  z-index: 2;
}

section.app-sections .tns-nav button::before {
  counter-increment: asection;
  content: "0" counter(asection);
}

section.app-sections .tns-nav button.tns-nav-active {
  color: #04424b;
  opacity: 0.4;
  transform: scale(1.9) translateY(-1px);
  z-index: 1;
}

section.app-sections .tns-nav button:hover {
  opacity: 1;
}

section.app-sections .tns-ovh {
  overflow: visible;
}

section.app-sections .row {
  display: flex;
}

section.app-sections .item {
  position: relative;
  opacity: 0;
  transition: opacity .3s ease-out;
}

section.app-sections .item.tns-slide-active {
  opacity: 1;
}

section.app-sections .item .primary {
  padding: 32px 18px 0;
  position: relative;
  z-index: 2;
}

section.app-sections .item .desc {
  font-size: 18px;
  font-family: 'HelveticaNeue', Roboto, sans-serif, arial;
  font-weight: 300;
  text-align: center;
  line-height: 1.4;
  max-width: 500px;
  margin: 0 auto;
}

section.app-sections .item .desc p.ext {
  font-size: 16px;
  margin-top: 6px;
}

section.app-sections .item .cta.app {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

/*section.app-sections .item .cta.app img {
  width: 138px;
}*/

section.app-sections .item .cta.app a:not(:last-child) img {
  margin-right: 16px;
}

section.app-sections .item .secondary {
  position: absolute;
  left: 50%;
  bottom: -585px;
  width: 490px;
  transform: translateX(calc(-50% - 10px));
  z-index: 0;
}

html[lang=de] section.app-sections .item .secondary {
  bottom: -560px;
}

section.app-sections .item .secondary .img {
  transform: translateY(100%);
  opacity: 0;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

section.app-sections .item .secondary img {
  width: 900px;
  max-width: unset;
}

/*html[lang=de] section.app-sections .item .secondary img {
  width: auto;
  max-width: 100%;
}*/

section.app-sections .item.tns-slide-active .secondary .img {
  transform: translateY(0);
  opacity: 1;
  transition: transform .5s ease .3s, opacity .05s linear .3s;
}

section.app-sections .item .secondary .nr {
  color: #04424b;
  font-size: 144px;
  line-height: 1;
  letter-spacing: -3.8px;
  position: absolute;
  top: 130px;
  right: 26px;
  opacity: 0;
  z-index: 0;
}

section.app-sections .item.tns-slide-active .secondary .nr {
  opacity: 1;
  transition: opacity .3s linear .2s;
}

section.download {
  color: #fff;
  text-align: center;
  background-color: #04424b;
  padding: 96px 24px;
  position: relative;
}

section.download h2 {
  font-size: 32px;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.64px;
  margin-bottom: 16px;
}

section.download .desc {
  font-family: 'HelveticaNeue', Roboto, sans-serif, arial;
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: -0.32px;
  max-width: 400px;
  margin: 0 auto;
  padding: 0 16px;
}

section.download .cta {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

section.download .cta img {
  margin: 0 8px;
  width: 136px;
}

@media screen and (max-width: 768px) {
  
  section.usp-cards.mb-slider:not(.app-screens) .item:not(:first-child:last-child) > div {
    min-height: 420px;
    position: relative;
    cursor: pointer;
  }
  
  section.usp-cards.mb-slider:not(.app-screens) .item:not(:first-child:last-child) .primary {
    flex: 1 1 auto;
    padding: 32px 24px;
  }
  
  section.usp-cards.mb-slider:not(.app-screens) .item:not(:first-child:last-child) .desc {
    opacity: 0;
    transition: opacity 0.25s linear;
  }
  
  section.usp-cards.mb-slider:not(.app-screens) .item:not(:first-child:last-child) .secondary {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #edf0fc;
  }
  
  section.usp-cards.mb-slider:not(.app-screens) .item:not(:first-child:last-child) .secondary .holder {
    transition: transform 0.25s ease-in-out, opacity 0.25s linear;
  }
  
  section.usp-cards.mb-slider:not(.app-screens) .item:not(:first-child:last-child) .secondary .img {
    top: 54px;
    left: 100px;
  }
  
  section.usp-cards.mb-slider:not(.app-screens) .item:not(:first-child:last-child) > div:hover .secondary .holder {
    transform: translate(100%, 100%);
    opacity: 0;
  }
  
  section.usp-cards.mb-slider:not(.app-screens) .item:not(:first-child:last-child) > div:hover .desc {
    opacity: 1;
  }
  
  section.usp-cards:not(.app-screens) .item:nth-child(2) .secondary {
    transform: scale(-1, 1);
  }
  
  section.usp-illustration.mb-slider .item.tns-item,
  section.usp-icon.mb-slider .item.tns-item {
    opacity: 0;
    transition: opacity 0.2s linear;
  }
  
  section.usp-illustration.mb-slider .item.tns-item.tns-slide-active,
  section.usp-icon.mb-slider .item.tns-item.tns-slide-active {
    opacity: 1;
  }
  
  section.download::before {
    content: "";
    border: solid 4px #04424b;
    border-radius: 70px;
    transform: rotate(-12deg);
    width: 1000px;
    height: 1000px;
    position: absolute;
    top: -60px;
    left: 60px;
    z-index: 0;
  }
  
}

@media screen and (max-width: 992px) {
  
  section.hero .desc br {
    display: none;
  }

}

@media screen and (min-width: 769px) {
  
  section.hero {
    min-height: unset;
  }
  
  section.hero .primary {
    padding: 0 40px;
    text-align: left;
  }
  
  section.hero .primary .container {
    padding-top: 80px;
    min-height: unset;
  }
  
  section.hero .primary h1 {
    font-size: 48px;
    line-height: 1.05;
    max-width: 600px;
  }
  
  section.hero h1 span {
    display: none;
  }
  
  section.hero .desc {
    font-size: 18px;
    line-height: 1.44;
    letter-spacing: -0.36px;
    max-width: 600px;
  }
  
  section.hero .cta {
    margin: 32px 0 56px;
  }
  
  section.hero .secondary {
    margin-top: -140px;
    margin-bottom: 0;
  }
  
  section.hero .secondary .container {
    min-height: 600px;
    transform: none;
  }
  
  section.hero .secondary .img {
    top: 24px;
    left: 368px;
  }
  
  section.hero .secondary .offer {
    bottom: -48px;
    left: -64px;
  }
  
  section.usp:not(.extended-wrap) .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  section.usp .row .item {
    flex: 1 1 0%;
    padding: 16px;
    margin-top: 0;
    margin-bottom: 0;
    display: flex;
  }
  
  section.usp .item > div {
    min-height: 190px;
    padding-left: 18px;
    padding-right: 18px;
    flex: 1 1 auto;
  }
  
  section.usp h2 {
    margin-bottom: 40px;
  }
  
  section.usp.mb-slider.extended-wrap .row {
    display: block;
  }
  
  section.usp.mb-slider .item.tns-item {
    padding: 16px;
    margin: 0 auto;
    display: flex;
    max-width: 440px;
  }
  
  section.usp-cards .items {
    padding: 1px 24px;
  }
  
  section.usp-cards .row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: -16px;
    margin-bottom: -16px;
  }
  
  section.usp-cards .item {
    padding: 0 16px;
    margin: 16px 0;
    display: flex;
    flex: 1 1 auto;
    max-width: 834px;
  }
  
  section.usp-cards .item > div {
    display: flex;
    justify-content: space-between;
    position: relative;
    min-height: 380px;
    flex: 1 1 auto;
  }
  
  section.usp-cards .item .primary {
    flex: 0 1 45%;
    padding: 40px;
  }
  
  section.usp-cards:not(.app-screens) .item h3 {
    font-size: 32px;
    margin-bottom: 16px;
  }
  
  section.usp-cards .item .secondary {
    flex: 1 1 auto;
    margin-top: 0;
    margin-bottom: -120px;
  }
  
  section.usp-cards .item .secondary .img {
    transform: rotate(-12deg);
  }
  
  section.usp-cards .item:not(:first-child:last-child) {
    flex: 1 1 33.33%;
    max-width: 50%;
  }
  
  section.usp-cards:not(.app-screens) .item:not(:first-child:last-child) > div {
    min-height: 513px;
    cursor: pointer;
  }
  
  section.usp-cards .item:not(:first-child:last-child) .primary {
    flex: 1 1 auto;
    padding: 32px;
    max-width: 100%;
  }
  
  section.usp-cards:not(.app-screens) .item:not(:first-child:last-child) .desc {
    opacity: 0;
    transition: opacity .25s linear;
  }
  
  section.usp-cards:not(.app-screens) .item:not(:first-child:last-child) .secondary {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #edf0fc;
  }
  
  section.usp-cards:not(.app-screens) .item:not(:first-child:last-child) .secondary .holder {
    transition: transform 0.25s ease-in-out, opacity 0.25s linear;
  }
  
  section.usp-cards:not(.app-screens) .item:not(:first-child:last-child) .secondary .img {
    top: 32px;
    left: 112px;
  }
  
  section.usp-cards:not(.app-screens) .item:not(:first-child:last-child) > div:hover .secondary .holder {
    transform: translate(100%, 100%);
    opacity: 0;
  }
  
  section.usp-cards .item:not(:first-child:last-child) > div:hover .desc {
    opacity: 1;
  }
  
  section.usp-cards.app-screens h2 {
    font-size: 38px;
    text-align: left;
    padding: 0 40px;
    max-width: 700px;
  }
  
  section.usp-cards.app-screens .tns-nav {
    margin-bottom: 40px;
  }
  
  section.usp-cards.app-screens .row {
    flex-wrap: nowrap;
  }
  
  section.usp-cards.app-screens .item h3 {
    font-size: 24px;
  }
  
  section.usp-cards.app-screens .item .desc {
    font-size: 18px;
  }
  
  section.usp-cards.app-screens .item .secondary {
    bottom: -300px;
  }
  
  section.usp-illustration h2 {
    font-size: 38px;
    text-align: left;
    padding: 0 40px;
    max-width: 700px;
  }
  
  section.usp-illustration:not(.mb-slider) .items {
    padding: 0 8px;
  }
  
  section.usp-illustration .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  section.usp-illustration .row .item {
    text-align: left;
    flex: 1 1 0%;
    display: flex;
  }
  
  section.usp-illustration .item > div {
    min-height: 190px;
    padding-left: 18px;
    padding-right: 18px;
    flex: 1 1 auto;
  }
  
  section.usp-illustration:not(.mb-slider) .item > div {
    padding-left: 24px;
    padding-right: 24px;
  }
  
  section.usp-illustration.mb-slider .item.tns-item {
    margin: 32px 0;
    flex: 0 0 33.33%;
    display: flex;
  }
  
  section.usp-illustration .item .img img {
    margin: 0 0 0 -16px;
  }
  
  section.usp-icon:not(.mb-slider) .items {
    padding: 0 16px;
  }
  
  section.usp-icon .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  section.usp-icon .row .item {
    flex: 0 0 33.33%;
    display: flex;
    margin: 24px 0;
  }
  
  section.usp-icon .item > div {
    min-height: 190px;
    padding: 24px;
    flex: 1 1 auto;
  }
  
  section.usp-icon .item .icon img {
    width: 48px;
  }
  
  section.usp-icon.mb-slider .container {
    padding-bottom: 52px;
  }
  
  section.usp-icon.mb-slider .item > div {
    padding-left: 24px;
    padding-right: 24px;
  }
  
  section.usp-icon.mb-slider .item.tns-item {
    margin: 32px 0;
    flex: 0 0 33.33%;
    display: flex;
  }
  
  section.shape-text {
    flex-flow: row;
  }
  
  section.shape-text.reverse {
    flex-flow: row-reverse;
  }
  
  section.shape-text .primary {
    flex: 1 1 50%;
    padding: 40px;
    margin: 0;
    display: flex;
    align-items: center;
  }
  
  section.shape-text .primary .container {
    padding-bottom: 64px;
  }
  
  section.shape-text .secondary {
    flex: 1 1 50%;
  }
  
  section.shape-text .secondary .container {
    min-height: 540px;
  }
  
  section.sticker .container {
    padding: 80px 40px;
  }
  
  section.sticker .container > div {
    padding: 32px;
    display: flex;
    align-items: center;
    max-width: 802px;
  }
  
  section.sticker .img:first-child {
    flex: 0 0 154px;
  }
  
  section.sticker .img:last-child {
    flex: 0 0 101px;
    margin-left: auto;
  }
  
  section.sticker .info {
    text-align: left;
    flex: 0 1 500px;
    margin: 0;
  }
  
  section.accordion h2 {
    font-size: 32px;
    text-align: left;
    padding: 0 40px;
  }
  
  section.accordion h2 + .desc {
    font-size: 18px;
    text-align: left;
    margin-left: 0;
  }
  
  section.accordion .items {
    padding: 16px 40px;
    max-width: unset;
  }
  
  section.accordion .item {
    margin: 16px auto;
  }
  
  section.accordion .item > div {
    padding-bottom: 10px;
    border-radius: 12px;
  }
  
  section.accordion .item .title {
    padding: 24px 24px 14px;
  }
  
  section.accordion .item h3 {
    font-size: 18px;
  }
  
  section.accordion .item .toggler {
    height: 26px;
    width: 26px;
    top: 22px;
    right: 24px;
  }
  
  section.accordion .item .desc {
    padding: 0 24px;
  }
  
  section.accordion .item.expanded .intro {
    border-bottom: 1px solid #c2caf0;
    padding-bottom: 22px;
  }

  section.tb-slider .items {
    padding: 0;
    outline: none;
    user-select: none;
  }

  section.tb-slider .row {
    display: flex;
    margin: 0;
  }

  section.tb-slider .item.tns-item {
    display: inline-flex;
    padding: 0 16px;
    margin: 0;
    max-width: unset;
  }

  section.tb-slider .item.tns-item > div {
    flex: 1 1 auto;
  }
  
  section.app-sections .container {
    padding-bottom: 740px;
  }
  
  section.app-sections .container > div {
    position: relative;
  }
  
  section.app-sections h2 {
    font-size: 38px;
    text-align: left;
    padding: 0 90px 0 40px;
    max-width: 900px;
  }
  
  section.app-sections .controls {
    position: absolute;
    right: 30px;
    top: 0;
    margin: 0;
    z-index: 5;
  }
  
  section.app-sections .controls > div {
    width: 34px;
    height: 34px;
  }
  
  section.app-sections .tns-nav {
    justify-content: flex-start;
    padding-left: 40px;
    position: relative;
    z-index: 4;
  }
  
  section.app-sections .tns-nav button {
    font-size: 18px;
    padding: 0 12px;
    width: 50px;
  }
  
  section.app-sections .item .secondary {
    bottom: -790px;
    width: 680px;
    transform: translateX(-50%);
  }
  
  section.app-sections .item .secondary img {
    width: 1230px;
  }
  
  html[lang=de] section.app-sections .item .secondary {
    bottom: -765px;
  }
  
  section.app-sections .item .secondary .nr {
    font-size: 200px;
    top: 170px;
    right: 6px;
  }
  
  section.download .cta {
    margin-top: 48px;
  }
  
  section.download h2 {
    font-size: 40px;
  }
  
  section.download .desc {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.44;
    max-width: 430px;
  }
  
  section.download .cta img {
    width: auto;
    max-width: 150px;
  }

}

@media screen and (min-width: 769px) and (max-width: 992px) {
  
  section.tb-slider:not(.app-screens) .item:not(:first-child:last-child) .primary {
    flex: 0 1 45%;
    padding: 40px;
  }
  
  section.tb-slider:not(.app-screens) .item:not(:first-child:last-child) .secondary {
    position: relative;
  }
  
  section.tb-slider .item:not(:first-child:last-child) .desc {
    opacity: 1;
  }
  
  section.tb-slider:not(.app-screens) .item:not(:first-child:last-child) > div {
    cursor: default;
  }
  
  section.tb-slider:not(.app-screens) .item:not(:first-child:last-child) > div:hover .secondary .img {
    transform: rotate(-12deg);
  }
  
}

@media screen and (min-width: 993px) {
  
  section.hero .primary h1 {
    font-size: 56px;
    line-height: 1.05;
    max-width: 650px;
  }
  
  section.hero .desc {
    max-width: 620px;
  }
  
  section.hero .cta.app img {
    width: auto;
    max-width: 150px;
  }
  
  section.hero .secondary {
    margin-top: -200px;
  }
  
  section.hero .secondary .container {
    min-height: 740px;
  }
  
  section.hero .secondary .img {
    top: 92px;
  }
    
  section.usp .container {
    padding: 120px 0 68px;
  }
  
  section.usp h2 {
    font-size: 48px;
    margin-bottom: 80px;
  }
  
  section.usp.extended-wrap .row,
  section.usp.mb-slider.extended-wrap .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  section.usp .item {
    max-width: unset;
  }
  
  section.usp .item > div {
    padding: 32px 24px;
  }
  
  section.usp-cards .container {
    padding-bottom: 120px;
  }
  
  section.usp-cards h2 {
    font-size: 48px;
    margin-bottom: 80px;
  }
  
  section.usp-cards:not(.app-screens) .item:not(:first-child:last-child) .primary {
    padding: 40px;
  }
  
  section.usp-cards .item:not(:first-child:last-child) .secondary .img {
    top: 80px;
  }
  
  section.usp-cards.app-screens .container {
    padding: 0;
    position: relative;
    display: flex;
  }
  
  section.usp-cards.app-screens .container > div:first-child {
    flex: 0 0 500px;
    padding: 120px 0 160px;
    position: relative;
    z-index: 1;
  }
  
  section.usp-cards.app-screens .container > div:last-child {
    flex: 1 1 0%;
    display: flex;
    align-items: center;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 55%;
    padding-left: 220px;
  }
  
  section.usp-cards.app-screens h2 {
    font-size: 40px;
    margin-bottom: 56px;
  }
  
  section.usp-cards.app-screens .slist {
    display: block;
    padding-left: 40px;
    /* background: linear-gradient(to right, #f5f5f5, #f5f5f5 70%, transparent 90%); */
  }
  
  section.usp-cards.app-screens .slist li {
    font-size: 18px;
    font-weight: 500;
    font-family: 'HelveticaNeue', Roboto, sans-serif, arial;
    line-height: 1.2;
    letter-spacing: -0.4px;
    padding: 10px 0 10px 50px;
    min-height: 46px;
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    transition: all 0.1s linear;
  }
  
  section.usp-cards.app-screens .slist li:hover {
    color: #04424b;
  }
  
  section.usp-cards.app-screens .slist li.active {
    color: #04424b;
    font-size: 20px;
  }
  
  section.usp-cards.app-screens .slist li .icon-arrow {
    position: absolute;
    top: 50%;
    left: 0;
    width: 0;
    opacity: 0;
    transform: translateY(-1px);
    transition: all 0.15s ease;
  }
  
  section.usp-cards.app-screens .slist li.active .icon-arrow {
    opacity: 1;
    width: 36px;
  }
  
  section.usp-cards.app-screens .row {
    transition: transform 0.2s linear;
  }
  
  section.usp-cards.app-screens .item {
    text-align: left;
    padding: 0;
    opacity: 0;
    transition: all .2s ease;
  }
  
  section.usp-cards.app-screens .item.tns-slide-active {
    opacity: 1;
  }
  
  section.usp-cards.app-screens .item > div {
    background-color: transparent;
    box-shadow: none;
    min-height: unset;
    align-items: center;
  }
  
  section.usp-cards.app-screens .item.tns-slide-active > div {
    margin-bottom: 0;
  }
  
  section.usp-cards.app-screens .item .primary,
  section.usp-cards.app-screens .item:not(:first-child:last-child) .primary  {
    text-align: left;
    padding: 72px 24px 0;
  }
  
  section.usp-cards.app-screens .item .secondary {
    left: -480px;
  }
  
  section.usp-cards.app-screens .item .secondary {
    transition: none;
  }
  
  section.usp-cards.app-screens .item.tns-slide-active .secondary {
    bottom: -160px;
  }
  
  section.usp-cards.app-screens .item h3 {
    font-size: 20px;
  }
  
  section.usp-cards.app-screens .item .desc {
    font-size: 16px;
  }
  
  section.usp-cards.app-screens .item .secondary .img img {
    margin-left: -108px;
  }
  
  html[lang=de] section.usp-cards.app-screens .item .secondary .img img {
    margin-left: -220px;
  }
  
  html[lang=it] section.usp-cards.app-screens .item .cta .btn, 
  html[lang=it] section.usp-cards.app-screens .item .cta .btn:visited {
    font-size: 15px;
  }
  
  section.usp-illustration .container {
    padding: 120px 0 76px;
  }
  
  section.usp-illustration h2 {
    font-size: 48px;
    max-width: 800px;
  }
  
  section.usp-illustration .item {
    max-width: unset;
  }
  
  section.usp-illustration .item > div {
    padding: 24px;
  }
  
  section.usp-illustration:not(.mb-slider) .item > div {
    padding-left: 32px;
    padding-right: 32px;
  }
  
  section.usp-illustration .item .img img {
    width: 140px;
  }
  
  section.usp-illustration .item h3 {
    font-size: 24px;
  }
  
  section.usp-illustration .item .desc {
    font-size: 18px;
    line-height: 1.4;
  }
  
  section.usp-icon .container {
    padding-top: 120px;
    padding-bottom: 40px;
  }
  
  section.usp-icon h2 {
    font-size: 48px;
    padding-bottom: 16px;
  }
  
  section.usp-icon .item {
    max-width: unset;
  }
  
  section.usp-icon:not(.mb-slider) .item > div {
    padding-left: 32px;
    padding-right: 32px;
  }
  
  section.shape-text.reverse {
    padding-bottom: 40px;
  }
  
  section.shape-text .primary {
    padding-left: 40px;
    padding-right: 60px;
    flex: 1 1 55%;
  }
  
  section.shape-text.reverse .primary {
    padding-left: 60px;
    padding-right: 40px;
  }
  
  section.shape-text .secondary {
    flex: 1 1 45%;
  }
  
  section.shape-text .primary .container {
    margin-left: 0;
  }
  
  section.sticker .container > div {
    padding: 24px;
    max-width: 832px;
  }
  
  section.accordion {
    padding-top: 120px;
  }
  
  section.accordion .container {
    padding-bottom: 88px;
  }
  
  section.accordion h2 {
    font-size: 40px;
    margin-bottom: 32px;
  }
  
  section.media .img {
    height: 720px;
  }
  
  section.media .img img {
    flex: 1 1 100%;
  }
  
  section.app-sections .container {
    padding-top: 120px;
    padding-bottom: 0;
  }
  
  section.app-sections h2 {
    font-size: 40px;
    padding-right: 0;
    margin-bottom: 56px;
    max-width: 50%;
    position: relative;
    z-index: 2;
  }
  
  section.app-sections .controls {
    top: -20px;
  }
  
  section.app-sections .tns-nav {
    padding-left: 28px;
  }
  
  section.app-sections .tns-nav button {
    font-size: 20px;
    padding: 0 12px;
  }
  
  section.app-sections .item > div {
    display: flex;
    justify-content: space-between;
  }
  
  section.app-sections .item .primary {
    padding: 32px 0 0 40px;
    flex: 0 0 45%;
  }
  
  section.app-sections .item .desc {
    text-align: left;
    margin-left: 0;
    max-width: 500px;
  }
  
  section.app-sections .item .desc p.ext {
    font-size: 18px;
    margin-top: 14px;
  }
  
  section.app-sections .item .cta.app {
    justify-content: flex-start;
  }
  
  /*section.app-sections .item .cta.app img {
    width: 111px;
  }*/
  
  section.app-sections .item .secondary {
    position: relative;
    top: -435px;
    bottom: auto;
    left: auto;
    right: 36px;
    transform: none;
    width: auto;
    margin-bottom: -435px;
  }
  
  section.app-sections .item .secondary .img {
    width: 600px;
    margin-left: -70px;
  }
  
  section.app-sections .item .secondary img {
    width: 1084px;
  }
  
  section.app-sections .item .secondary .nr {
    top: 176px;
  }
  
  section.download h2 {
    font-size: 48px;
    margin-bottom: 24px;
  }
  
  section.download .desc {
    font-weight: 500;
  }
  
  section.download .cta {
    margin-top: 44px;
  }
  
}

@media screen and (min-width: 1281px) {
  
  section .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  section.hero {
    display: block;
  }
  
  section.hero .primary {
    padding: 0;
  }
  
  section.hero .primary .container {
    padding-top: 0;
    min-height: 800px;
    justify-content: center;
  }
  
  section.hero .cta {
    margin-bottom: 80px;
  }
  
  section.hero .secondary {
    margin: 0;
    width: 45%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
  }
  
  section.hero .secondary .container {
    background-position: calc(50% - 70px) 92px;
    min-height: unset;
  }
  
  section.hero .secondary .img {
    top: 32px;
    left: 190px;
    border-radius: 120px;
    width: 2200px;
    height: 2200px;
    transform: rotate(-12deg);
  }
  
  .v2 section.hero .secondary,
  section.hero.v2 .secondary {
    width: 58%;
  }
  
  .v2 section.hero .secondary .img,
  section.hero.v2 .secondary .img {
    top: auto;
    bottom: 195px;
    left: 0;
  }
  
  section.usp .items {
    padding: 0;
    margin: 0 -16px;
  }
  
  section.usp .item > div {
    padding: 32px;
  }
  
  section.usp-cards .items {
    padding: 1px 0;
    margin: 0 -16px;
  }
  
  section.usp-cards .item {
    max-width: unset;
    padding: 0 16px;
  }
  
  section.usp-cards .item .secondary {
    margin-top: -18px;
  }
  
  section.usp-cards .item .secondary .holder {
    min-height: 632px;
  }
  
  section.usp-cards .item .desc {
    max-width: 470px;
  }
  
  section.usp-cards.app-screens .container > div:last-child {
    padding-left: 422px;
    width: 60%;
  }
  
  section.usp-cards.app-screens h2 {
    margin-bottom: 64px;
    padding: 0;
    max-width: 450px;
  }
  
  section.usp-cards.app-screens .slist {
    padding: 0;
  }
  
  section.usp-cards.app-screens .slist li {
    font-size: 18px;
    min-height: 50px;
    padding-left: 60px;
  }
  
  section.usp-cards.app-screens .slist li.active {
    font-size: 24px;
  }
  
  section.usp-cards.app-screens .slist li.active .icon-arrow {
    width: 46px;
  }
  
  section.usp-cards.app-screens .item .primary, 
  section.usp-cards.app-screens .item:not(:first-child:last-child) .primary {
    padding: 0 0 40px 24px;
  }
  
  section.usp-cards.app-screens .item h3 {
    font-size: 24px;
    margin-bottom: 6px;
  }
  
  section.usp-cards.app-screens .item .desc {
    font-size: 18px;
    line-height: 1.44;
  }
  
  section.usp-cards.app-screens .item .secondary .img, 
  section.usp-cards.mb-slider.app-screens .item:not(:first-child:last-child) .secondary .img {
    top: -34px;
  }
  
  section.usp-cards.app-screens .item .secondary .img img {
    width: 942px;
    margin-left: -270px;
  }
  
  section.usp-cards.app-screens .item.tns-slide-active .secondary {
    bottom: -186px;
  }
  
  html[lang=de] section.usp-cards.app-screens .item .secondary .img, 
  html[lang=de] section.usp-cards.mb-slider.app-screens .item:not(:first-child:last-child) .secondary .img {
    top: -35px;
  }
  
  html[lang=de] section.usp-cards.app-screens .item .secondary .img img {
    width: 800px;
    margin-left: -400px;
  }
  
  html[lang=it] section.usp-cards.app-screens .item .cta .btn, 
  html[lang=it] section.usp-cards.app-screens .item .cta .btn:visited {
    font-size: 16px;
  }
  
  section.usp-illustration .items {
    padding: 0;
    margin: 0 -16px;
  }
  
  section.usp-illustration .item > div {
    padding: 32px;
  }
  
  section.usp-illustration h2 {
    padding: 0;
  }
  
  section.usp-illustration:not(.mb-slider) .items {
    padding: 0;
    margin: 0 -32px;
  }
  
  section.usp-illustration .item .img img {
    width: 160px;
	filter: saturate(0);
  }
  
  section.usp-icon .items {
    padding: 0;
    margin: 0 -16px;
  }
  
  section.shape-text:not(.reverse) .primary {
    padding: 0;
  }
  
  section.shape-text.reverse .primary {
    padding-left: 100px;
  }
  
  section.shape-text:not(.reverse) .primary .container {
    flex: 1 1 auto;
    justify-content: center;
    min-height: 620px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  section.shape-text.reverse .primary .container {
    padding-bottom: 92px;
    max-width: 580px;
  }
  
  section.shape-text h2 {
    font-size: 48px;
  }
  
  section.shape-text:not(.reverse) h2 {
    max-width: 600px;
  }
  
  section.shape-text .desc {
    max-width: 480px;
  }
  
  section.shape-text .secondary .container {
    min-height: 640px;
  }
  
  section.shape-text .secondary .img {
    bottom: 80px;
  }
  
  section.shape-text:not(.reverse) .secondary {
    width: 50%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
  }
  
  section.accordion .container {
    display: flex;
  }
  
  section.accordion .container > div:first-child {
    flex: 0 0 400px;
  }
  
  section.accordion h2 {
    padding: 0;
  }
  
  section.accordion h2 + .desc {
    line-height: 1.44;
    padding: 0;
  }
  
  section.accordion .items {
    flex: 1 1 0%;
    padding: 0 0 36px 80px;
    margin: -16px 0;
  }
  
  section.accordion .item .title {
    padding: 32px 32px 18px;
    position: relative;
  }
  
  section.accordion .item h3 {
    font-size: 20px;
  }
  
  section.accordion .item .toggler {
    top: calc(50% - 6px);
  }
  
  section.accordion .item .desc {
    font-size: 18px;
    padding: 0 32px;
  }
  
  section.accordion .item.expanded .desc {
    margin-bottom: 18px;
  }
  
  section.app-sections h2 {
    padding: 0;
    max-width: 600px;
  }
  
  section.app-sections .tns-nav {
    padding-left: 0;
    margin-left: -16px;
  }
  
  section.app-sections .tns-nav button {
    padding: 0 16px;
    width: 60px;
  }
  
  section.app-sections .controls {
    top: 28px;
    right: -12px;
  }
  
  section.app-sections .item .primary {
    padding-left: 0;
  }
  
  section.app-sections .item .secondary {
    top: -565px;
    right: 0;
    margin-bottom: -580px;
  }
  
  section.app-sections .item .secondary .img {
    width: 740px;
    margin-left: -80px;
  }
  
  section.app-sections .item .secondary img {
    width: 1340px;
  }
  
  section.app-sections .item .secondary .nr {
    font-size: 254px;
    top: 305px;
    right: -4px;
  }
  
}

@media screen and (min-width: 1400px) {
  
  section.usp-cards.app-screens .item .primary, 
  section.usp-cards.app-screens .item:not(:first-child:last-child) .primary {
    padding-left: 0;
  }
  
  section.usp-cards.app-screens .slist {
    margin: 0 60px 0 -60px;
  }
  
}

@media screen and (min-width: 1800px) {
  
  section .container {
    max-width: 1400px;
  }
  
  section.hero .primary .container {
    min-height: 820px;
  }
  
  section.hero .primary h1 {
    font-size: 70px;
    max-width: 850px;
  }
  
  section.hero .desc {
    max-width: 850px;
  }
  
  section.hero .secondary .img {
    top: 40px;
    left: 300px;
  }
  
  section.app-sections .controls {
    top: 50px;
  }
  
  section.app-sections .item .secondary {
    top: -640px;
    margin-bottom: -680px;
  }
  
  html[lang=de] section.app-sections .item .secondary {
    margin-bottom: -640px;
  }
  
  section.app-sections .item .secondary .img {
    width: 926px;
    margin-left: -156px;
  }
  
  section.app-sections .item .secondary img {
    width: 1670px;
  }
  
  section.app-sections .item .secondary .nr {
    font-size: 284px;
    top: 380px;
  }
  
}

@media screen and (min-width: 2000px) {
  
  section.hero .secondary .container {
    background-position: center 92px;
  }
  
  section.media .img {
    height: 820px;
  }
  
}

@media screen and (min-width: 3000px) {
  
  section.media .img {
    height: 920px;
  }
  
}


/* Footer */

footer {
  font-size: 12px;
  font-weight: 300;
  font-family: 'HelveticaNeue', Roboto, sans-serif, arial;
  line-height: 1.33;
}

footer .container {
  text-align: center;
  padding: 32px 18px;
}
 
footer .secondary {
  padding-bottom: 32px;
  border-bottom: solid 0.5px rgb(25 25 25 / 50%);
}
 
footer .secondary .cards {
  margin-top: 12px;
  display: flex;
  justify-content: center;
}
 
footer .secondary .cards img {
  width: 72px;
  margin: 0 4px;
}

footer .primary {
  padding-top: 32px;
}

footer .logo img {
  width: 120px;
  margin: 0 auto;
}

footer .copyright {
  font-weight: 500;
  margin: 16px 0;
}

footer .menu span {
  display: inline-block;
  padding: 0 13px;
}

footer .menu span:not(:last-child) {
  border-right: 1px solid rgb(25 25 25 / 50%);
}

footer .menu a:hover {
  text-decoration: underline;
}

@media screen and (min-width: 769px) {
  
  footer {
    font-size: 14px;
  }
  
  footer .container {
    padding: 32px 40px;
  }
  
}

@media screen and (min-width: 993px) {
  
  footer .container {
    padding: 52px 40px 32px;
  }

  footer .secondary {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 48px;
  }

  footer .secondary .cards {
    margin: 0 0 0 16px;
  }
  
}

@media screen and (min-width: 1281px) {
  
  footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
  }
  
  footer .primary {
    display: flex;
    align-items: center;
  }
  
  footer .logo {
    margin-right: 64px;
  }
  
  footer .copyright {
    flex: 1 1 0%;
  }
  
}


/* Popup */

#popup {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  z-index: -1;
  opacity: 0;
  transform: translateY(-100%);
  transition: transform .2s linear, opacity .01s linear 0.3s, z-index .01s linear .3s;
}

#popup::after {
  content: '';
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(31, 29, 29, 0.4);
  opacity: 0;
  z-index: -1;
  transform: translateY(100%);
  transition: transform .2s linear, opacity .15s linear;
}

#popup.show {
  opacity: 1;
  transform: translateY(0);
  transition: transform .2s linear;
  z-index: 101;
}

#popup.show::after {
  opacity: 1;
  transform: translateY(0);
  cursor: pointer;
}

#popup .dialog {
  flex: 1 1 auto;
  display: flex;
  background-color: #022126;
}

#popup .content {
  color: #fff;
  font-family: 'HelveticaNeue', Roboto, sans-serif, arial;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: -0.32px;
  padding: 80px 24px;
  position: relative;
  flex: 1 1 0%;
  display: flex;
  justify-content: center;
  outline: 0;
  -webkit-tap-highlight-color: transparent;
}

#popup .close {
  position: absolute;
  top: 24px;
  right: 24px;
  height: 32px;
  width: 32px;
  background-color: transparent;
  background-image: url(img/icons/icon-cross.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 40px;
  border: 0 none;
  cursor: pointer;
  z-index: 1;
}

#popup .items {
  display: flex;
  max-width: 500px;
}

#popup .item,
#popup .img {
  display: none;
}

#popup .item.active {
  display: flex;
}

#popup .item .info {
  display: flex;
  flex-direction: column;
}

#popup .item .info > div {
  flex: 1 1 0%;
  display: flex;
  flex-direction: column;
}

#popup .item .info > div > div:not(:last-child) {
  margin-bottom: 24px;
}

#popup h2 {
  font-family: CornerDisplay, sans-serif, arial, Helvetica;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.64px;
  margin-bottom: 28px;
}

#popup h3 {
  font-size: 18px;
  font-weight: 500;
  margin-top: 24px;
}

#popup ol {
  padding-left: 16px;
}

#popup ol:not(:first-child) {
  margin-top: 16px;
}

#popup li:not(:first-child),
#popup li ul {
  margin-top: 8px;
}

#popup li strong {
  font-weight: 500;
}

#popup .item .note {
  position: relative;
  padding: 16px 0 0 32px;
  margin-top: auto;
}

#popup .item .note::before {
  content: "i";
  color: #cf99ac;
  font-family: 'Times New Roman';
  font-size: 60px;
  font-style: italic;
  line-height: 0.43;
  letter-spacing: -1.2px;
  position: absolute;
  top: 16px;
  left: 0;
}

@media screen and (min-width: 769px) {
  
  #popup .content {
    font-size: 18px;
    line-height: 1.44;
    padding: 90px 52px;
  }
  
  #popup h2 {
    font-size: 38px;
  }
  
  #popup .items {
    max-width: 700px;
  }
  
  #popup ol {
    padding-left: 20px;
  }
  
  #popup .item .note {
    font-weight: 500;
  }
  
}

@media screen and (min-width: 993px) {
  
  #popup .content {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  
  #popup h2 {
    font-size: 40px;
  }
  
}

@media screen and (min-width: 1281px) {
  
  #popup {
    order: 1;
    justify-content: center;
    align-items: center;
  }
  
  #popup .dialog {
    flex: 0 1 95%;
    max-width: 1400px;
    border-radius: 24px;
    box-shadow: 0 0 16px 0 rgba(25, 25, 25, 0.05), 0 0 16px 0 rgba(25, 25, 25, 0.1);
    overflow: hidden;
  }
  
  #popup .content {
    padding: 0;
  }
  
  #popup .close {
    top: 40px;
    right: 46px;
    background-image: url(img/icons/icon-close.svg);
    background-size: 32px;
  }
  
  #popup .items {
    max-width: unset;
    flex: 1 1 0%;
  }
  
  #popup .item {
    justify-content: space-between;
  }
  
  #popup .item .info {
    padding: 90px 60px 90px 90px;
    flex: 0 1 820px;
  }
  
  #popup .img {
    flex: 0 0 535px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
  }
  
}


/* IE11/Edge specific rules */

_:-ms-fullscreen, :root body { 
  min-height: 100vh;
}


/* Animation */

@keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}

body {
  animation: fadein 2s;
}

.icon.reveal {
  opacity: 0;
  transform: translateX(0px) translateY(50px) perspective(1200px);
  scale: 0.5;
}

.icon.revealed {
  opacity: 1;
  transform: translateX(0px) translateY(0px) perspective(1200px);
}


