@font-face {
  font-family: 'Blatant';
  src: url('../fonts/blatant/Blatant-Bold.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: 'Blatant';
  src: url('../fonts/blatant/Blatant-BoldItalic.woff2') format('woff2');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Blatant';
  src: url('../fonts/blatant/Blatant.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Blatant';
  src: url('../fonts/blatant/Blatant-Italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Neue Montreal';
  src: url('../fonts/neue/NeueMontreal-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Neue Montreal';
  src: url('../fonts/neue/NeueMontreal-BoldItalic.woff2') format('woff2');
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: 'Neue Montreal';
  src: url('../fonts/neue/NeueMontreal-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'Neue Montreal';
  src: url('../fonts/neue/NeueMontreal-MediumItalic.woff2') format('woff2');
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: 'Neue Montreal';
  src: url('../fonts/neue/NeueMontreal-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Neue Montreal';
  src: url('../fonts/neue/NeueMontreal-Italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: 'Neue Montreal';
  src: url('../fonts/neue/NeueMontreal-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'Neue Montreal';
  src: url('../fonts/neue/NeueMontreal-LightItalic.woff2') format('woff2');
  font-weight: 300;
  font-style: italic;
}




*{
  -webkit-tap-highlight-color: transparent; /* убрать голубое выделение */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; /* запрет копирования текста */
  margin: 0;
  box-sizing: border-box;
}
html{
  height: 100%;
}
html, body {
  min-width: 375px;  
  width: 100%;
  overflow-x: hidden; /* запрет скролла */
}
body {
  position: relative;
  font-family: 'Neue Montreal';
  font-style: normal;
  font-weight: 400;
  margin: 0;
  background-color: #101010;
}
img{
  max-width: 100%;
}
button{
  cursor: pointer;
}
span.link{
  font-weight: 500;
  color: #fff;
  text-decoration: underline;
}


.preloader {
  display: none;
  position: fixed;
  width: 100%;
  height: var(--app-height);
  left: 0;
  top: 0;
  z-index: 1000;
}
.preloader.open {
  display: block;
}


.preloader .layer {
  position: relative;
  width: 100%;
  height: var(--app-height);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #101010;
  overflow: hidden;
  transition: 0.6s ease-in;
}

.preloader .logo {
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 3px;
  transition: transform 1.2s ease;
}

.preloader .logo .indicator {
  display: flex;
  align-items: flex-end;
}

.preloader .logo .indicator rect {
  fill: #ffffff;
  animation: pulseColor 1.2s ease-in-out infinite;
}

@keyframes pulseColor {
  0% {
    fill: #ffffff;
  }
  50% {
    fill: #101010;
  }
  100% {
    fill: #ffffff;
  }
}


.preloader.open.closing {
  animation: slideUp 0.6s ease-in;
}
@keyframes slideUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}

.preloader.open.closing .layer {
  animation: disappear 0.6s ease;
}
@keyframes disappear {
  0% {
    background-color: #101010;
    opacity: 1;
  }
  60% {
    background-color: #101010;
    opacity: 1;
  }
  90% {
    background-color: #10101076;
    opacity: 1;
  }
  100% {
    background-color: #10101000;
    opacity: 0;
  }
}


.preloader .logo {
  transition: 0.6s ease-in;
}
.preloader.open .logo{
  top: 0px;
}
.preloader.open.closing .logo {
  top: 300px;
}

.body, .cookie-consent {
  transition: opacity 0.1s ease;
}
.preloader ~ .body, .preloader ~ .cookie-consent {
  opacity: 1;
  pointer-events: all;
}
.preloader.open ~ .body, .preloader.open ~ .cookie-consent {
  opacity: 0;
  pointer-events: none;
}



.cookie-consent {
  display: none;
  position: fixed;
  width: 100%;
  height: var(--app-height);
  overflow: hidden;
  left: 0;
  top: 0;
  z-index: 100;
}

.cookie-consent.open {
  display: block;
}

.cookie-consent.open + .body {
  filter: blur(4px);
  transition: .4s ease;
  width: 100%;
  height: var(--app-height);
  overflow: hidden;
}

.cookie-consent .layer {
  position: relative;
  width: 100%;
  height: var(--app-height);
  display: flex;
  align-items: flex-end;
}

.cookie-consent.open .layer {
  background-color: #0000004a;
}

.cookie-consent.open.closing .layer {
  background-color: #00000000;
}

.cookie-consent .content-box {
  position: relative;
  top: 0;
  border-radius: 20px 20px 0 0;
  background-color: #101010;
  border: 1px solid #000;
  border-bottom: 0;
  color: #fff;
  padding: 24px 20px 48px 20px;
  min-width: 375px;
  margin: 0 auto;
  box-shadow: 0 -8px 40px #44444430;
  transition: 0.6s ease;
}

.cookie-consent.open.closing .content-box {
  top: 60%;
}


.cookie-consent.open.closing + .body {
  filter: blur(0px);
}
.cookie-consent p.title{
  font-family: 'Blatant';
  font-weight: 700;
  font-size: 21px;
  line-height: 100%;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: #fff;
}
.cookie-consent p.description{
  font-size: 14px;
  line-height: 140%;
  margin-bottom: 20px;
  color: #F4F4F4;
  letter-spacing: -0.25px;
}
.cookie-consent .toggle-row{
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cookie-consent .toggle-row *{
  cursor: pointer;
}
.cookie-consent .toggle-row.disabled *{
  pointer-events: none;
}
.cookie-consent .toggle-row.off .toggle-dot{
  left: 0px;
  background-color: #444444;
}
.cookie-consent .toggle-row.off .toggle-box {
  justify-content: flex-start;
}
.cookie-consent .toggle-row:last-child{
  margin-bottom: 0;
}
.cookie-consent .toggles{
  margin-bottom: 24px;
}
.cookie-consent .toggle-row.disabled .toggle-box{
  background-color: #AAAAAA;
}
.cookie-consent .toggle-row.disabled .toggle-dot{
  background-color: #2d36d2;
}
.cookie-consent .toggle-row.disabled label{
  color: #C4C4C4;
}
.cookie-consent .toggle-row label{
  font-weight: 500;
  font-size: 15px;
  line-height: 140%;
  color: #F4F4F4;
  letter-spacing: -0.25px;
}
.cookie-consent .toggle-box{
  width: 26px;
  height: 16px;
  background-color: #fff;
  border-radius: 100px;
  display: block;
  padding: 1px;
}
.cookie-consent .toggle-dot{
  position: relative;
  left: 6px;
  width: 18px;
  height: 14px;
  background-color: #000BE0;
  border-radius: 100px;
  transition: .2s ease;
}
.cookie-consent .buttons{
  display: flex;
  justify-content: center;
  gap: 12px;
}
.cookie-consent .btn{
  display: flex;
  width: 100%;
  height: 56px;
}
.cookie-consent .btn button{
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  border: 1px solid #1E27E7;
  font-family: 'Blatant';
  font-weight: 700;
  font-size: 18px;
  line-height: 100%;
  color: #fff;
  text-transform: uppercase;
  background-color: #000BE0;
  box-shadow: 0 4px 12px #1e27e740;
  
}
.cookie-consent .btn button.secondary{
  border: 1px solid #575757;
  background-color: #444444;
  box-shadow: none;
}

.cookie-consent .form{
  max-width: 330px;
  margin: 0 auto 24px auto;
}
.cookie-consent .odds{
  font-size: 11px;
  font-weight: 500;
  color: #999;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cookie-consent .privacy-info{
  display: flex;
  align-items: center;
  gap: 1px;
}
.cookie-consent .links{
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-consent span.link{
  color: #999;
}




.body{
  background-color: #fff;
}
.container{
  position: relative;
  padding: 0 12px;
}
.col-12{
  width: 100%;
}
.hero{
  position: relative;
  background-color: #fff;
  color: #fff;
  padding: 60px 0 40px 0;
}
.hero-bg{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 140px);
  background-color: #101010;
  z-index: 0;
}
h1.title{
  font-family: 'Blatant';
  font-weight: 700;
  font-size: 28px;
  line-height: 140%;
  text-transform: uppercase;
  text-align: center;
  text-shadow: 0 5px 17px #ffe77d80;
  margin-bottom: 20px;
}
.hero h1.title>*{
  display: inline;
}
.hero h1>span.logo-txt{
  display: none;
}
.hero h1>span.logo-svg{
  position: relative;
  left: -17px;
  display: inline-block;
  height: 28px;
  width: 78px;
}
.hero h1>span.logo-svg>svg{
  position: absolute;
  left: 0;
  top: 3px;
}
.hero p.description{
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  text-align: center;
  margin: 0 auto 40px auto;
  max-width: 330px;
}
.hero span.focus{
  font-weight: 500;
}
.hero div.button{
  width: 100%;
  text-align: center;
}
.hero button{
  font-family: 'Blatant';
  font-weight: 700;
  font-size: 18px;
  line-height: 140%;
  text-transform: uppercase;
  color: #fff;
  background-color: #101010;
  border-radius: 100px;
  border: 1.5px solid #fff;
  padding: 12px 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px #ffe77d40;
}
.hero button[disabled=true]{
  opacity: 0.75;
}

.hero .composition{
  position: relative;
  top: 32px;
  width: 352px;
  height: 500px;
  margin: 0 auto;
}
.hero .composition>*{
  position: absolute;
}
.hero .composition #shadow{
  top: 140px;
  left: 60px;
  width: 150px;
  height: 220px;
  filter: blur(190px);
  background-color: #ffe77d66;
  transform: rotate(-17deg);
}
.hero .composition #mockup{
  top: 0;
  left: 8px;
  width: 260px;
  transform: rotate(-4deg);
}
.hero .composition #card{
  bottom: 112px;
  right: -24px;
  width: 240px;
  transform: rotate(102deg);
}



.footer{
  background-color: #fff;
  padding: 0 0 40px 0;
}
.footer .navigation{
  max-width: 280px;
  margin: 0 auto 100px auto;
}
.footer .navi-col, .footer .navi-col .navi-group{
  margin-bottom: 28px;
}
.footer .navi-col:last-child, .footer .navi-col .navi-group:last-child{
  margin-bottom: 0;
}
.footer .navi-title{
  font-weight: 700;
  font-size: 18px;
  line-height: 140%;
  color: #000;
  padding: 12px 8px;

}
.footer .navi-link{
  margin-bottom: 5px;
}
.footer .navi-link:last-child{
  margin-bottom: 0;
}
.footer .navi-link button, .footer .contact-link button{
  background: none;
  border: none;
  padding: 7px 8px;
  font-size: 17px;
  line-height: 100%;
  letter-spacing: -0.25px;
  color: #555;
}
.footer .navi-link button[disabled=true]{
  color: #999;
}
.footer .navi-link.active button{
  color: #222;
}
.footer .contact-links{
  margin-bottom: 16px;
}
.footer .contact-link{
  margin-bottom: 8px;
}
.footer .contact-link button{
  color: #4147C1;
}
.footer .contact-link label{
  display: block;
  font-size: 14px;
  padding: 0 8px;
  color: #444;
}
.footer .mail-addr label{
  display: block;
  font-size: 14px;
  font-weight: 500;
  padding: 0 8px;
  color: #000;
}
.footer .mail-addr p{
  margin-top: 6px;
  font-size: 16px;
  padding: 0 8px;
  color: #444;
}
.footer .copyright{
  text-align: center;
  font-size: 14px;
  color: #999;
}

.doc-info{
  background-color: #101010;
  color: #fff;
  padding: 40px 0;
}
.doc-info .container{
  width: 100%;
  margin: 0 auto;
  padding: 0;
  max-width: 305px;
}
.doc-footer{
  padding: 40px 0;
}
.doc-footer .container{
  width: 100%;
  margin: 0 auto;
  padding: 0;
  max-width: 305px;
}
.doc-footer .navigation{
  position: relative;
  left: -8px;
  max-width: 305px;
}
.doc-info h1.title {
  text-align: left;
  margin-bottom: 12px;
}
.doc-info p{
  line-height: 140%;
  font-size: 13px;
  color: #ddd;
}
.doc-header{
  margin-bottom: 60px;
}

.doc-tab{
  margin-bottom: 36px;
}
.doc-tab h2{
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  margin-bottom: 24px;
}

.doc-item{
  margin-bottom: 20px;
}
.doc-item h3{
  font-weight: 400;
  font-size: 15px;
  line-height: 140%;
  margin-bottom: 8px;
}
.doc-item p{
  margin-bottom: 8px;
}
.doc-item p:last-child{
  margin-bottom: 0;
}



@media (max-width: 375px) {
  body {
    width: 375px;
    transform: scale(calc(100vw / 375px));
    transform-origin: top left;
  }
}



@media (min-width: 768px) {
  .hero-bg{
    height: 100%;
  }
  .cta{
    min-width: 520px;
  }
  

  .cookie-consent{
    width: 100%;
    height: 100vh;
  }
  .cookie-consent .layer{
    width: 100%;
    height: 100%;
  }
  .cookie-consent.open+.body{
    filter: blur(4px);
  }
  .cookie-consent .content-box{
    position: relative;
    left: 40px;
    bottom: 24px;
    margin: 0;
  }
  .cookie-consent p.title{
    font-size: 24px;
    margin-bottom: 24px;
  }
  .cookie-consent p.description{
    font-size: 18px;
    margin-bottom: 20px;
    letter-spacing: -0.25px;
  }
  .cookie-consent .toggle-row{
    margin-bottom: 20px;
    gap: 12px;
  }
  .cookie-consent .toggle-row label{
    font-size: 18px;
    line-height: 140%;
    letter-spacing: 0px;
  }
  .cookie-consent .buttons{
    gap: 20px;
  }
  .cookie-consent .btn{
    height: 60px;
  }
  .cookie-consent .btn button{
    font-size: 20px;
  }
  .cookie-consent .form{
    max-width: 420px;
    margin: 0 auto 32px auto;
  }
  .cookie-consent .odds{
    font-size: 13px;
  }
  .cookie-consent .privacy-info{
    gap: 2px;
  }
  .cookie-consent .privacy-info svg{
    height: 16px;
    width: 15px;
  }
  .cookie-consent .links{
    gap: 20px;
  }


  h1.title{
    font-size: 42px;
    line-height: 140%;
    text-shadow: 0 5px 17px #ffe77d80;
    margin-bottom: 20px;
    text-align: left;
  }
  .hero{
    padding: 120px 0;
    display: flex;
  }
  .container{
    width: 100%;
    min-width: 1024px;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding: 0 50px;
  }
  .hero h1>span.logo-svg {
    position: relative;
    left: -20px;
    display: inline-block;
    height: 29px;
    width: 125px;
  }
  .hero h1>span.logo-svg>svg {
    position: absolute;
    left: 0;
    top: -10px;
    width: 165px;
    height: 68px;
  }
  .hero p.description {
    font-size: 23px;
    text-align: left;
    margin: 0 0 60px 0;
    max-width: 480px;
  }
  .hero div.button {
    text-align: left;
  }
  .hero button{
    font-size: 24px;
    border-radius: 100px;
    border: 2px solid #fff;
    padding: 18px 28px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 20px #ffe77d40;
  }
  .hero button svg{
    width: 24px;
    height: 35px;
  }
  .hero .composition{
    position: relative;
    top: 0px;
    width: 500px;
    height: 600px;
    margin: 0;
  }
  .hero .composition #shadow{
    top: 190px;
    left: 120px;
    width: 236px;
    height: 370px;
    filter: blur(320px);
    transform: rotate(-17deg);
  }
  .hero .composition #mockup{
    top: -80px;
    left: 0px;
    width: 400px;
    transform: rotate(-4deg);
  }
  .hero .composition #card{
    bottom: 80px;
    right: -52px;
    width: 360px;
    transform: rotate(102deg);
  }
  .footer{
    padding: 40px 0;
    display: flex;
  }
  .footer .navigation {
    max-width: 100%;
    margin: 0 auto 100px auto;
    display: flex;
  }
  .footer .navi-col{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 0;
    margin-right: 80px;
  }
  .footer .navi-col:last-child{
    margin-right: 0;
  }
  .footer .navi-group{
    display: flex;
    flex-direction: column;
  }
  .footer .navi-col .navi-group {
    margin-bottom: 0;
  }
  .footer .navi-title{
    font-size: 20px;
    padding: 12px 0;
  }
  .footer .navi-link button, .footer .contact-link button{
    padding: 7px 0;
    font-size: 18px;
  }
  .footer .contact-link {
    margin-bottom: 12px;
  }
  .footer .contact-link:last-child {
    margin-bottom: 0;
  }
  .footer .contact-links{
    margin-bottom: 0;
  }
  .footer .contact-link label{
    font-size: 14px;
    padding: 0;
    color: #444;
  }
  .footer .mail-addr label{
    padding: 0;
  }
  .footer .mail-addr p{
    margin-top: 6px;
    font-size: 17px;
    padding: 0;
  }
  .footer .copyright {
    text-align: left;
    font-size: 16px;
  }
  .doc-footer .navigation{
    left: 0;
    max-width: 100%;
  }
  .doc-header, .doc-body{
    max-width: 720px;
  }
  .doc-info .container, .doc-footer .container {
    max-width: 1024px;
    padding: 0 40px;
  }
  .doc-info p {
    font-size: 16px;
    color: #ddd;
  }
  .doc-item p {
    margin-bottom: 12px;
}
  .doc-tab h2 {
    font-size: 24px;
  }
  .doc-item h3{
    font-size: 18px;
    margin-bottom: 8px;
  }
  .doc-item {
    margin-bottom: 28px;
  }
}

@media (max-width: 1024px) and (min-width: 768px) {
  body {
    width: 1024px;
    transform: scale(calc(100vw / 1024px));
    transform-origin: top left;
  }
}