
/* 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: 'Helvetica Neue';
    src: url('fonts/HelveticaNeue-Light.eot');
    src: local('fonts/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: 'Helvetica Neue';
    src: url('fonts/HelveticaNeue-Roman.eot');
    src: local('fonts/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;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('fonts/HelveticaNeue-Bold.eot');
    src: local('fonts/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;
}


/* 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 {
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  font-family: CornerDisplay, sans-serif, arial, Helvetica;
  background-color: #000;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: -webkit-fill-available;
}

body > div {
  background-color: #313131;
  background-image: radial-gradient(circle at 50% 19%, #313131, #000 20%);
}

body img {
  display: block;
  max-width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.1;
  word-wrap: break-word;
}

h1 {
  font-size: 36px;
  font-weight: 700;
}

h2 {
  font-size: 28px;
  font-weight: 700;
}

a, a:hover, a:active, a:focus, a:visited {
  color: #fff;
  text-decoration: none;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}


/* Button */

.cc-btn, .cc-btn:visited {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  padding: 4px 24px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #e60050;
  min-height: 56px;
  border: 0 none;
  border-radius: 10px;
  cursor: pointer;
  outline: none;
  transition: all .1s linear;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.cc-btn:hover {
  background-color: #c50145;
}


/* Popup */

#cc_popup {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow-y: scroll;
  overflow-x: hidden;
  outline: 0;
  min-height: 100vh;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  z-index: 1001;
}

#cc_popup .dialog {
  width: 100%;
}

#cc_popup .holder {
  position: relative;
  outline: 0;
  cursor: default;
}

#cc_popup .items > div {
  display: flex;
}

#cc_popup .item {
  display: inline-flex;
  justify-content: center;
  padding: 0 8px;
}

#cc_popup .item > div {
  position: relative;
  display: inline-flex;
  flex: 0 0 100%;
  border-radius: 24px;
  padding: 3px;
  max-width: 520px;
  max-height: 70vh;
  max-height: 70dvh;
}

#cc_popup .item > div::before {
  border-radius: 26px;
  content: "";
  background-image: linear-gradient(140deg, #bfbfbf 0%, #222 35%);
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  z-index: 0;
}

#cc_popup .item .close {
  display: none;
}

#cc_popup .item .content {
  padding: 24px 16px 24px 24px;
  background-color: #222;
  background-image: linear-gradient(120deg, #121212, #222 60%);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  z-index: 1;
}

#cc_popup .icon img {
  width: 40px;
}

#cc_popup h3 {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 6px 0 16px;
}

#cc_popup .info {
  font-weight: 300;
  font-family: 'Helvetica Neue', 'Roboto', sans-serif, arial, Helvetica;
  line-height: 1.2;
  overflow-y: auto;
  padding-right: 8px;
  flex: 1 1 0%;
}

#cc_popup .info p:not(:first-child) {
  margin-top: 16px;
}

#cc_popup .info ul {
  margin-top: 16px;
  padding-left: 24px;
}

#cc_popup .info li:not(:first-child) {
  margin-top: 6px;
}

#cc_popup .info a {
  text-decoration: underline;
}

#cc_popup .controls {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 520px;
  margin: 16px auto 0;
}

#cc_popup .controls img {
  width: 89px;
  cursor: pointer;
}

#cc_popup .controls img.close {
  width: 69px;
}

.popup-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #000;
  display: none;
  opacity: 0;
  z-index: 1000;
}

.tns-slider {
  display: flex;
}

@media screen and (min-width: 769px) {
  
  #cc_popup .item {
    padding: 0 40px;
  }
  
  #cc_popup .item > div {
    max-width: 800px;
  }
  
  #cc_popup .item .content {
    padding: 40px;
  }
  
  #cc_popup .icon img {
    width: 60px;
  }
  
  #cc_popup h3 {
    font-size: 36px;
    margin-bottom: 24px;
  }
  
  #cc_popup .info {
    font-size: 18px;
  }
  
  #cc_popup .controls {
    padding: 0 40px;
    max-width: 800px;
  }
  
}

@media screen and (min-width: 993px) {
  
  #cc_popup .item .content {
    padding: 60px;
  }
  
  #cc_popup .icon img {
    width: 70px;
  }
  
  #cc_popup .info {
    padding-right: 20px;
  }
  
  #cc_popup h3 {
    font-size: 40px;
    margin-bottom: 30px;
  }
  
}

@media screen and (min-width: 1281px) {
  
  #cc_popup .item .close {
    display: block;
    position: absolute;
    top: 32px;
    right: 32px;
    width: 34px;
    cursor: pointer;
    z-index: 2;
  }
  
  #cc_popup .item .content {
    padding: 80px 64px 80px 80px;
  }
  
  #cc_popup .icon img {
    width: 80px;
  }
  
  #cc_popup .controls {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 1080px;
    max-width: unset;
    margin-top: 0;
    padding: 0;
    height: 0;
    overflow: visible;
    z-index: 1;
  }
  
  #cc_popup .controls img {
    transform: translateY(-45vh);
  }
  
  #cc_popup .controls .close {
    display: none;
  }
  
}


/* Header */

header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

header .container {
  flex: 1 1 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

header .logo a {
  display: block;
  padding: 24px 18px 26px;
}

header .logo img {
  display: block;
  width: 141px;
  max-width: 100%;
}

header .langs {
  padding-right: 18px;
  margin-top: 2px;
  white-space: nowrap;
}

header .langs a,
header .langs a:hover,
header .langs span {
  font-size: 18px;
  margin-left: 10px;
  opacity: 0.35;
}

header .langs > *:first-child {
  margin-left: 0;
}

header .langs span {
  font-weight: 700;
  opacity: 1;
}

@media screen and (min-width: 769px) {
  
  header .logo {
    flex: 0 0 auto;
  }
  
  header .primary .logo img {
    width: 251px;
  }
  
  header .primary .logo a {
    padding: 34px 0 40px 40px;
  }
  
  header .langs {
    padding-right: 40px;
  }
  
}

@media screen and (min-width: 993px) {
  
  header .primary .logo a {
    padding: 34px 0 40px 40px;
  }
  
}

@media screen and (min-width: 1281px) {
  
  header .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  header .primary .logo a {
    padding-left: 0;
  }
  
  header .logo img {
    width: 202px;
  }
  
  header .langs {
    padding-right: 0;
  }
  
}


/* Main */

main {
  flex: 1 0 auto;
  overflow: hidden;
  position: relative;
}

main img {
  max-width: 100%;
  display: block;
}


/* Sections */

section {
  position: relative;
}

section.hero {
  display: flex;
  flex-direction: column;
  z-index: 0;
}

section.hero .primary {
  padding: 0 18px;
  position: relative;
  z-index: 1;
  order: 2;
}

section.hero .primary .container {
  padding-top: 64px;
  position: relative;
  z-index: 1;
}

section.hero h1 {
  font-size: 38px;
  line-height: 1.1;
  text-transform: uppercase;
  max-width: 700px;
  margin: 20px 0 16px;
}

section.hero h3 {
  font-size: 14px;
  font-family: 'Helvetica Neue', 'Roboto', sans-serif, arial, Helvetica;
  line-height: 1.25;
}

section.hero .desc {
  color: #7d7d7d;
  font-size: 18px;
  line-height: 1.2;
  max-width: 600px;
}

section.hero .cta {
  margin: 32px 0 48px;
}

section.hero .cta .msg {
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  line-height: 1.2;
  letter-spacing: 0.12px;
  background-image: url(img/icons/icon-fast.svg);
  background-repeat: no-repeat;
  background-size: 21px;
  background-position: left center;
  padding-left: 26px;
  margin-top: 14px;
  display: flex;
  align-items: center;
  min-height: 22px;
}

section.hero .secondary {
  position: relative;
  order: 1;
}

section.hero .secondary .cards {
  position: absolute;
  bottom: 0;
  left: 52px;
  z-index: 1;
  max-width: 66%;
}

section.hero .secondary .cards .card1 {
  width: 300px;
  transform: rotate(-12deg);
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
  z-index: 1;
}

section.hero .secondary .cards .card2 {
  width: 284px;
  transform: rotate(-9deg) translate(40px, 46px);
  filter: drop-shadow(18px 16px 46px rgba(0, 0, 0, 0.5));
}

section.hero .secondary .offer {
  position: absolute;
  bottom: -36px;
  left: -44px;
  z-index: 2;
}

section.hero .secondary div.offer {
  bottom: -12px;
  left: -18px;
}

section.hero .secondary div.offer > div {
  color: #1d2859;
  text-align: center;
  text-transform: uppercase;
  width: 120px;
  height: 120px;
  overflow: hidden;
  border-radius: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #00dcb4;
  box-shadow: 15px -3px 17px 0 rgba(29, 40, 89, 0.31);
  transform: rotate(-12deg);
}

section.hero .secondary div.offer span:first-child {
  font-size: 38px;
  font-weight: 700;
  line-height: 0.8;
  margin-bottom: 4px;
}

section.hero .secondary div.offer span:last-child {
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

section.hero .secondary .img {
  min-height: 420px;
  height: 50vh;
  width: calc(100% + 54px);
  max-width: 678px;
  border-radius: 40px;
  transform: rotate(-12deg) translate(-100px, -100px);
  overflow: hidden;
}

section.hero .secondary .img img {
  height: calc(100% + 32px);
  max-width: unset;
  position: absolute;
  top: 0;
  left: 50%;
  transform: rotate(12deg) translate(-50%, 147px);
  z-index: 1;
}

section.usp .container {
  padding: 72px 0 0;
}

section.usp h2 {
  font-size: 32px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 58px;
  padding: 0 18px;
}

section.usp .row {
  display: flex;
  flex-wrap: wrap;
}

section.usp .item {
  color: #fff;
  padding: 0 6px;
  margin-top: 6px;
  margin-bottom: 6px;
  flex: 0 0 50%;
  display: flex;
  overflow: hidden;
}

section.usp .item > div {
  display: flex;
  flex: 1 1 0%;
  min-height: 172px;
  padding: 3px;
  position: relative;
}

section.usp .item > div::before {
  border-radius: 22px;
  content: "";
  background-image: linear-gradient(140deg, #bfbfbf 0%, #222 35%);
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  z-index: 0;
}

section.usp .item .content {
  flex: 1 1 0%;
  background-color: #222;
  background-image: linear-gradient(120deg, #121212, #222 60%);
  border-radius: 20px;
  padding: 16px 12px 16px 16px;
  position: relative;
  transition: background-color .15s linear;
  z-index: 1;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

section.usp .item .icon img {
  width: 32px;
}

section.usp .item h3 {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.13;
  word-break: break-word;
  margin: 10px 0;
}

section.usp .item .desc {
  font-size: 16px;
  font-family: 'Helvetica Neue', 'Roboto', sans-serif, arial, Helvetica;
  font-weight: 300;
  line-height: 1.2;
}

section.usp .item .content .more {
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  font-family: 'Helvetica Neue', 'Roboto', sans-serif, arial, Helvetica;
  white-space: nowrap;
  position: absolute;
  left: 40px;
  bottom: 20px;
  opacity: 0;
  transition: opacity .2s linear;
  z-index: -1;
}

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.docs {
  padding: 80px 18px 160px;
}

section.docs h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 24px;
}

section.docs .links > div {
  margin-bottom: 8px;
}

section.docs .links a {
  color: #8d9eea;
  font-size: 18px;
  text-decoration: underline;
}

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: #4864e2;
}

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;
}

@media screen and (max-width: 768px) {
  
  section.hero h1 br.dyn {
    display: none;
  }
  
}

@media screen and (min-width: 769px) {
  
  body > div {
    background-image: radial-gradient(circle at 50% 49%, #313131, #000 83%);
  }
  
  section.hero .primary {
    padding: 0 40px;
    text-align: left;
  }
  
  section.hero .primary .container {
    text-align: center;
    padding-top: 80px;
  }
  
  section.hero .primary h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-left: auto;
    margin-right: auto;
  }
  
  section.hero h1 span {
    white-space: nowrap;
  }
  
  section.hero .desc {
    font-size: 22px;
    max-width: 700px;
    margin: 0 auto;
  }
  
  section.hero .cta {
    margin-bottom: 56px;
  }
  
  section.hero .secondary {
    margin-top: -100px;
  }
  
  section.hero .secondary .img {
    height: 680px;
    max-width: 100%;
    border-radius: 80px;
    transform: rotate(-12deg) translate(-128px, -100px);
  }
  
  section.hero .secondary .img img {
    transform: rotate(12deg) translate(-48%, 282px);
  }
  
  section.hero .secondary .cards {
    left: auto;
    right: 248px;
    bottom: 6px;
  }
  
  section.hero .secondary .cards .card1 {
    width: 370px;
  }
  
  section.hero .secondary .cards .card2 {
    width: 335px;
    filter: drop-shadow(18px 16px 46px rgba(2, 23, 79, 0.75));
  }
  
  section.hero .secondary img.offer {
    bottom: -48px;
    left: -64px;
  }
  
  section.hero .secondary div.offer {
    bottom: -2px;
    left: -90px;
  }
  
  section.usp .container {
    padding: 72px 28px 0;
  }
  
  section.usp .item {
    color: #fff;
    padding: 0 12px;
    margin-top: 12px;
    margin-bottom: 12px;
    flex: 0 0 33.33%;
  }
  
  section.usp .item > div::before {
    background-image: linear-gradient(152deg, #bfbfbf 0%, #252525 35%);
  }
  
  section.usp.mb-slider .item.tns-item {
    padding: 16px;
    margin: 0 auto;
    display: flex;
    max-width: 440px;
  }
  
  section.docs {
    text-align: center;
    padding: 160px 40px 200px;
  }
  
  section.docs .links > div {
    margin-bottom: 12px;
  }
  
  section.docs h2 {
    font-size: 36px;
  }
  
  section.docs .links a {
    font-size: 20px;
  }
  
  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;
  }

}

@media screen and (min-width: 769px) and (max-width: 992px) {
  
  section.tb-slider .item:not(:first-child:last-child) .secondary {
    position: relative;
  }
  
  section.tb-slider .item:not(:first-child:last-child) .desc {
    opacity: 1;
  }
  
  section.tb-slider .item:not(:first-child:last-child) > div {
    cursor: default;
  }
  
  section.tb-slider .item:not(:first-child:last-child) > div:hover .secondary .img {
    transform: rotate(-12deg);
  }
  
}

@media screen and (min-width: 993px) {
  
  section.hero .primary .container {
    padding-top: 128px;
  }
  
  section.hero .secondary .img {
    height: 740px;
    transform: rotate(-12deg) translate(-150px, -72px);
  }
  
  section.hero .secondary .img img {
    height: calc(100% + 130px);
    left: 0;
    transform: rotate(12deg) translate(0, 120px);
  }
  
  section.hero .secondary .cards {
    left: calc(50% - 185px);
    right: auto;
    bottom: -30px;
  }
  
  section.usp .item .content {
    padding: 24px;
  }
  
  section.usp .item .icon img {
    width: 40px;
  }
  
  section.usp .item h3 {
    font-size: 20px;
  }
  
  section.docs .links > div {
    margin-bottom: 16px;
  }
  
  section.docs h2 {
    font-size: 44px;
  }
  
  section.docs .links a {
    font-size: 22px;
  }
  
}

@media screen and (min-width: 1281px) {
  
  section .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  section.hero {
    display: block;
  }
  
  section.hero .primary {
    padding: 0 0 94px;
  }
  
  section.hero .primary .container {
    text-align: left;
    padding-top: 180px;
  }
  
  section.hero .primary h1 {
    max-width: 550px;
    margin: 0 0 20px;
  }
  
  section.hero .desc {
    font-size: 24px;
    max-width: 500px;
    margin: 0;
  }
  
  section.hero .secondary {
    width: 55%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
  }
  
  section.hero .secondary .container {
    max-width: unset;
  }
  
  section.hero .secondary .img {
    height: 50vh;
    min-height: 760px;
    transform: rotate(-12deg) translate(64px, -100px);
  }
  
  section.hero .secondary .img img {
    height: auto;
    width: 110%;
    min-width: 1000px;
    transform: rotate(12deg);
    top: 200px;
    left: -110px;
  }
  
  section.hero .secondary .cards {
    top: 530px;
    left: 274px;
    bottom: auto;
  }
  
  section.usp .container {
    padding: 120px 0 0;
  }
  
  section.usp .row {
    margin: 0 -16px;
  }
  
  section.usp .item {
    padding: 0 16px;
    margin-top: 16px;
    margin-bottom: 16px;
  }
  
  section.usp .item .content {
    padding: 40px 40px 32px;
    transition: padding .2s linear, background-color .15s linear;
  }
  
  section.usp .item .content:hover {
    padding-top: 20px;
    padding-bottom: 52px;
  }
  
  section.usp .item .content:hover {
    background-image: none;
    background-color: #464646;
  }

  section.usp .item .content:hover .icon,
  section.usp .item .content:hover h3 {
    opacity: 0.7;
  }
  
  section.usp .item .content:hover .more {
    z-index: 1;
    opacity: 1;
  }
  
  section.usp .item .icon img {
    width: 48px;
  }
  
  section.usp .item h3 {
    font-size: 24px;
    margin: 12px 0;
  }
  
  section.docs .links > div {
    margin-bottom: 24px;
  }
  
  section.docs h2 {
    font-size: 48px;
  }
  
}

@media screen and (min-width: 1601px) {
  
  section.hero .secondary .cards {
    left: 320px;
  }
  
}

@media screen and (min-width: 2201px) {
  
  section.hero .secondary .img {
    min-height: 800px;
    transform: rotate(-12deg) translate(130px, -140px);
  }
  
  section.hero .secondary .img img {
    width: 120%;
    top: 220px;
    left: -240px;
  }
  
  section.hero .secondary .cards {
    left: 340px;
    top: 570px;
  }
  
}


/* Footer */

footer {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  font-family: 'Helvetica Neue', 'Roboto', sans-serif, arial, Helvetica;
  line-height: 1.4;
}

footer .container {
  padding: 24px;
}

footer .menu a {
  display: inline-block;
}

footer .menu a:not(:last-child) {
  margin-right: 20px;
}

footer .menu a:hover {
  text-decoration: underline;
}
 
footer .copyright {
  font-size: 13px;
  padding-top: 16px;
}

@media screen and (min-width: 769px) {
  
  footer {
    text-align: center;
  }
  
  footer .container {
    padding: 24px 40px;
  }
  
}

@media screen and (min-width: 993px) {
  
  footer {
    font-weight: 300;
    text-align: left;
  }
  
  footer .container {
    text-align: left;
  }

  footer .menu {
    float: left;
    position: relative;
    z-index: 1;
  }

  footer .copyright {
    font-size: 14px;
    text-align: right;
    padding-top: 0;
  }
  
}

@media screen and (min-width: 1281px) {
  
  footer {
    font-size: 16px;
    font-weight: 300;
  }
  
  footer .container {
    max-width: 1200px;
    padding: 24px 0;
    margin: 0 auto;
  }
 
  footer .copyright {
    font-size: 16px;
  }
  
}


/* IE11/Edge specific rules */

_:-ms-fullscreen, :root body { 
  min-height: 100vh;
}


/* Animation */

@keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}

body {
  animation: fadein 2s;
}

@keyframes hero-offer-float {
  0% {
    transform: translate(0px, 0px) rotate(0);
  }
  25% {
    transform: translate(0px, 8px) rotate(0);
  }
  50% {
    transform: translate(0px, -4px) rotate(0);
  }
  75% {
    transform: translate(0px, 8px) rotate(0);
  }
  100% {
    transform: translate(0px, 0px) rotate(0);
  }
}

section.hero .secondary .cards.animated .offer {
  animation: 10s ease-in-out infinite hero-offer-float;
}

@keyframes hero-card1-float {
  0% {
    transform: translate(0px, 0px) rotate(-12deg);
  }
  25% {
    transform: translate(0px, 8px) rotate(-12deg);
  }
  50% {
    transform: translate(0px, -4px) rotate(-12deg);
  }
  75% {
    transform: translate(0px, 8px)  rotate(-12deg);
  }
  100% {
    transform: translate(0px, 0px) rotate(-12deg);
  }
}

section.hero .secondary .cards.animated .card1 {
  animation: 10s ease-in-out infinite hero-card1-float;
}

@keyframes hero-card2-float {
  0% {
    transform: translate(40px, 46px) rotate(-9deg);
  }
  25% {
    transform: translate(40px, 43px) rotate(-8deg);
  }
  50% {
    transform: translate(40px, 49px) rotate(-9deg);
  }
  75% {
    transform: translate(40px, 43px) rotate(-10deg);
  }
  100% {
    transform: translate(40px, 46px) rotate(-9deg);
  }
}

section.hero .secondary .cards.animated .card2 {
  animation: 10s ease-in-out infinite hero-card2-float;
}

@keyframes icon-anim {
  0% {
    opacity: 0;
    transform: translateX(0px) translateY(50px) perspective(1200px);
    scale: 0.5;
  }
  50% {
    transform: translateX(0px) translateY(-5px) perspective(1200px);
    scale: 1.05;
  }
  75% {
    transform: translateX(0px) translateY(1px) perspective(1200px);
    scale: 0.99;
  }
  100% {
    opacity: 1;
    transform: translateX(0px) translateY(0px) perspective(1200px);
    scale: 1;
  }
}

.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);
}
