@font-face {
  font-family: "Noto Sans";
  src: local("Noto Sans Regular"), local("NotoSans-Regular"), url("../fonts/noto-sans.woff2") format("woff2"), url("../fonts/noto-sans.woff") format("woff");
  font-weight: 400;
}
@font-face {
  font-family: "Noto Sans";
  src: local("Noto Sans Medium"), local("NotoSans-Medium"), url("../fonts/noto-sans-display-medium.woff2") format("woff2"), url("../fonts/noto-sans-display-medium.woff") format("woff");
  font-weight: 500;
}
@font-face {
  font-family: "Noto Sans";
  src: local("Noto Sans Bold"), local("NotoSans-Bold"), url("../fonts/noto-sans-bold.woff2") format("woff2"), url("../fonts/noto-sans-bold.woff") format("woff");
  font-weight: 700;
} 
@font-face {
  font-family: "Montserrat";
  src: local("Montserrat"), local("Montserrat-Bold"), url("../fonts/montserrat-bold.woff2") format("woff2"), url("../fonts/montserrat-bold.woff") format("woff");
  font-weight: bold;
}
@font-face {
  font-family: "Roboto";
  src: local("Roboto"), local("Roboto-Bold"), url("../fonts/roboto-bold.woff2") format("woff2"), url("../fonts/roboto-bold.woff") format("woff");
  font-weight: bold;
}
@font-face {
  font-family: "Roboto";
  src: local("Roboto"), local("Roboto-Medium"), url("../fonts/roboto-medium.woff2") format("woff2"), url("../fonts/roboto-medium.woff") format("woff");
  font-weight: 500;
}
@font-face {
  font-family: "Avenir";
  src: local("Avenir"), local("Avenir-Medium"), url("../fonts/Avenir-Medium.woff") format("woff");
  font-weight: 500;
}
@font-face {
  font-family: "Avenir";
  src: local("Avenir"), local("Avenir-Heavy"), url("../fonts/Avenir-Heavy.woff") format("woff");
  font-weight: 800;
}
body {
  font-family: Noto Sans, sans-serif;
  font-weight: 400;
  background-color: #020002;
  color: white;
  overflow-x: hidden;
}

.cookie {
  background-color: #212834;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  font-size: 0.875rem;
  line-height: 19px;
  z-index: 4;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  opacity: 0;
}
.cookie__inner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 22px 0 22px 0;
}
.cookie__btn {
  text-transform: uppercase;
  padding: 15px 55px 15px 55px;
  border: 0.5px solid #ffffff;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  cursor: pointer;
  -webkit-transition: 0.3 ease;
  transition: 0.3 ease;
}
.cookie__btn:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.cookie__btn:active {
  -webkit-transform: scale(1);
          transform: scale(1);
}
@media (max-width: 768px) {
  .cookie {
    font-size: 12px;
    line-height: 15px;
  }
  .cookie__inner {
    gap: 10%;
  }
}
@media (max-width: 540px) {
  .cookie {
    font-size: 0.625rem;
  }
  .cookie__inner {
    padding: 15px 0 15px 0;
  }
  .cookie__btn {
    padding: 12px 50px 12px 50px;
  }
}
@media (max-width: 376px) {
  .cookie {
    font-size: 0.5625rem;
  }
  .cookie__inner {
    padding: 13px 0 13px 0;
    gap: 16%;
  }
  .cookie__btn {
    padding: 10px 30px 10px 30px;
  }
}

.show-cookie {
  -webkit-animation: cookie 2s ease forwards;
          animation: cookie 2s ease forwards;
  -webkit-transition: 1s ease;
  transition: 1s ease;
}

@-webkit-keyframes cookie {
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@keyframes cookie {
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
.close-cookie {
  -webkit-animation: close-cookie 2s ease forwards;
          animation: close-cookie 2s ease forwards;
}

@-webkit-keyframes close-cookie {
  to {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    opacity: 0;
  }
}

@keyframes close-cookie {
  to {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    opacity: 0;
  }
}
.title {
  font-family: Montserrat, sans-serif;
  font-size: 3.1875rem;
  line-height: 62px;
  font-weight: bold;
}

.subtitle {
  font-family: Noto Sans, sans-serif;
  font-size: 1.125rem;
  line-height: 25px;
  font-weight: 400;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 30px 0 30px;
}

.header {
  /* .header__nav */
  font-weight: 500;
  font-size: 18px;
  line-height: 25px;
  z-index: 4;
  position: relative;
  /* .header__login */
  /* .header__text */
}
.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 108px;
  padding-top: 25px;
  position: absolute;
}
.header__login {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.header__icon {
  fill: #ffffff;
  width: 26px;
  height: 26px;
}
.header__text {
  border-bottom: 1px solid white;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.header__login:hover .header__icon {
  fill: #67a3f7;
}
.header__login:hover .header__text {
  border-bottom: 1px solid #67a3f7;
  color: #67a3f7;
}

.intro {
  padding-top: 160px;
  overflow-x: hidden;
  position: relative;
  z-index: 2;
  /* .intro__content */
  /* .intro__title */
  /* .intro__subtitle */
  /* .intro__subtitle-img */
  /* .intro__subtitle-text */
  /* .intro__download */
}
.intro__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 65px;
}
.intro__title {
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-size: 4rem;
  line-height: 70px;
  margin-bottom: 88px;
}
.intro__img {
  position: relative;
  z-index: 2;
}
.intro__phone {
  position: relative;
  z-index: 2;
}
.intro__img::after {
  content: "";
  position: absolute;
  width: 330px;
  height: 660px;
  background: #ffffff;
  opacity: 0.2;
  -webkit-filter: blur(78.8812px);
          filter: blur(78.8812px);
  top: 0;
  z-index: 1;
}
.intro__subtitle {
  font-family: "Noto Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 27px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 31px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.intro__subtitle-img {
  position: relative;
}
.intro__subtitle-img::after {
  content: "";
  background-color: rgba(96, 92, 234, 0.5);
  -webkit-filter: blur(50px);
          filter: blur(50px);
  position: absolute;
  width: 125px;
  height: 125px;
  top: 0;
  left: 0;
}
.intro__decor {
  -o-object-fit: contain;
     object-fit: contain;
}
.intro__subtitle-text {
  max-width: 380px;
}
.intro__phone {
  -o-object-fit: contain;
     object-fit: contain;
}
.intro__download {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.intro__AppIcon {
  width: 164px;
  height: 54px;
}
.intro__GoogleIcon {
  width: 185px;
  height: 54px;
}

.intro::after {
  content: "";
  position: absolute;
  width: 50vw;
  height: 60vh;
  background: rgba(250, 0, 255, 0.2);
  -webkit-filter: blur(125px);
          filter: blur(125px);
  -webkit-transform: rotate(-150deg);
          transform: rotate(-150deg);
  z-index: 1;
  top: -10%;
  right: -10%;
}

.download {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 2.1875rem;
  line-height: 70px;
  /* .download__links */
}
.download__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
.download__link {
  fill: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.download__link:hover {
  fill: #67a3f7;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.contact {
  padding: 180px 0 100px 0;
  /* .contact__inner */
  /* .contact__card */
  /* .contact__card-left */
  /* .contact__card-right */
  /* .contact__title */
  /* .contact__link */
}
.contact__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.contact__card {
  border: 2px solid white;
  border-radius: 20px;
  max-width: 503px;
  text-align: start;
  font-family: "Noto Sans", sans-serif;
}
.contact__card--left {
  padding: 64px 120px 62px 55px;
}
.contact__card--right {
  padding: 97px 110px 94px 55px;
}
.contact__title {
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 41px;
  width: 300px;
  margin-bottom: 30px;
}
.contact__link {
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 33px;
  border-bottom: 1px solid white;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.contact__link:hover {
  border-bottom: 1px solid #67a3f7;
  color: #67a3f7;
}

.mission__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 100vh;
}
.mission__img {
  -webkit-transform: translateX(-70vw);
          transform: translateX(-70vw);
  position: relative;
  z-index: 3;
  -webkit-transition: 1s ease;
  transition: 1s ease;
}
.mission__img-phone {
  -o-object-fit: contain;
     object-fit: contain;
  width: 50vw;
  height: 45vh;
}
.mission__img::after {
  content: "";
  background: #ffffff;
  opacity: 0.1;
  -webkit-filter: blur(118px);
          filter: blur(118px);
  position: absolute;
  width: 51vw;
  height: 45vh;
  top: 0;
  left: 0;
  z-index: 1;
}
.mission__content {
  width: 380px;
  -webkit-transform: translateX(-28vw);
          transform: translateX(-28vw);
  -webkit-transition: 3s ease;
  transition: 3s ease;
}
.mission__title {
  margin-bottom: 23px;
  position: relative;
}
.mission__title::before {
  content: "";
  position: absolute;
  background: #f101bf;
  opacity: 0.7;
  -webkit-filter: blur(50px);
          filter: blur(50px);
  width: 85px;
  height: 85px;
  right: 20%;
  top: 0;
}
.mission__subtitle {
  width: 300px;
}

.run {
  -webkit-animation: run 3s ease forwards;
          animation: run 3s ease forwards;
}

@-webkit-keyframes run {
  50% {
    -webkit-transform: translateX(-10);
            transform: translateX(-10);
  }
  100% {
    -webkit-transform: translateX(0) rotate(-90deg);
            transform: translateX(0) rotate(-90deg);
  }
}

@keyframes run {
  50% {
    -webkit-transform: translateX(-10);
            transform: translateX(-10);
  }
  100% {
    -webkit-transform: translateX(0) rotate(-90deg);
            transform: translateX(0) rotate(-90deg);
  }
}
.text-trans {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 0.7;
}

.delete {
  -webkit-animation: delet 3s ease forwards;
          animation: delet 3s ease forwards;
  -webkit-transform-origin: center;
          transform-origin: center;
}

@-webkit-keyframes delet {
  50% {
    -webkit-transform: translateX(0) rotate(-45deg);
            transform: translateX(0) rotate(-45deg);
  }
  100% {
    -webkit-transform: translateX(-70vw);
            transform: translateX(-70vw);
  }
}

@keyframes delet {
  50% {
    -webkit-transform: translateX(0) rotate(-45deg);
            transform: translateX(0) rotate(-45deg);
  }
  100% {
    -webkit-transform: translateX(-70vw);
            transform: translateX(-70vw);
  }
}
.scanner {
  padding: 467px 0 200px 0;
  background-image: url("../img/scanner/ScannBg.jpg");
  background-repeat: no-repeat;
  background-position: top;
  background-size: contain;
  position: relative;
  z-index: 2;
}
.scanner__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 128px;
  z-index: 3;
}
.scanner__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
}
.scanner__phone {
  -o-object-fit: contain;
     object-fit: contain;
}
.scanner__content {
  width: 315px;
  margin-bottom: 10%;
}
.scanner__title {
  margin-bottom: 23px;
}

.integration {
  /* .integration_content */
  padding-bottom: 220px;
  /* .integration__inner */
  /* .integration__title */
}
.integration_content {
  margin-top: 90px;
  -ms-flex-preferred-size: 40%;
      flex-basis: 40%;
  position: relative;
}
.integration__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
.integration__title {
  margin-bottom: 23px;
  position: relative;
}
.integration__subtitle {
  max-width: 385px;
}
.integration__title::before {
  content: "";
  position: absolute;
  background: linear-gradient(12.08deg, #f101bf 2.82%, #0066ff 97.06%);
  opacity: 0.1;
  -webkit-filter: blur(125px);
          filter: blur(125px);
  width: 400px;
  height: 400px;
  left: 0;
  top: -100%;
}
.integration__img-statistics {
  -o-object-fit: contain;
     object-fit: contain;
}

.qr-code {
  background-image: url("../img/qr-code/qrBg.jpg");
  background-repeat: no-repeat;
  background-position: top;
  background-size: contain;
  margin-bottom: 41px;
  /* .qr-code__inner */
  /* .qr-code__content */
  /* .qr-code__title */
  /* .qr-code__subtitle */
  /* .qr-code__img */
}
.qr-code__inner {
  padding-top: 20%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 80px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.qr-code__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.qr-code__title {
  margin-bottom: 23px;
}
.qr-code__subtitle {
  margin-bottom: 28px;
}
.qr-code__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 80px;
}
.qr-code__phone {
  -o-object-fit: contain;
     object-fit: contain;
}
.qr-code__phone--right {
  -ms-flex-item-align: end;
      align-self: flex-end;
}
.qr-code__phone--left {
  padding-bottom: 379px;
}

.qr-generate {
  background-image: url("../img/qr-generate/generateBg.png");
  background-repeat: no-repeat;
  background-position: center 70px;
  background-size: contain;
  margin-bottom: 192px;
}
.qr-generate__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.qr-generate__phone::before {
  content: "";
  position: absolute;
  background-image: url("../img/qr-generate/qr-arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  width: 240px;
  height: 115px;
  z-index: 1;
  right: 10%;
  bottom: 70%;
}
.qr-generate__img {
  padding-bottom: 190px;
  z-index: 2;
}
.qr-generate__phone {
  -o-object-fit: contain;
     object-fit: contain;
}
.qr-generate__inner::before {
  content: "";
  position: absolute;
  background-image: url("../img/qr-generate/Group.png");
  background-repeat: no-repeat;
  background-position: center;
  width: 1000px;
  height: 900px;
  border-radius: 50%;
  -webkit-filter: blur(100px);
          filter: blur(100px);
  z-index: 1;
}
.qr-generate__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.qr-generate__title {
  -ms-flex-preferred-size: 40%;
      flex-basis: 40%;
}
.qr-generate__subtitle {
  -ms-flex-preferred-size: 25%;
      flex-basis: 25%;
}

.easy-order {
  overflow: hidden;
}
.easy-order__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.easy-order__phone {
  -o-object-fit: contain;
     object-fit: contain;
}
.easy-order__content {
  -ms-flex-item-align: end;
      align-self: flex-end;
}
.easy-order__title {
  margin-bottom: 23px;
}
.easy-order__img {
  position: relative;
}
.easy-order__img::before {
  content: "";
  position: absolute;
  background: linear-gradient(12.08deg, #f101bf 2.82%, #0066ff 97.06%);
  opacity: 0.2;
  -webkit-filter: blur(125px);
          filter: blur(125px);
  width: 280px;
  height: 280px;
  right: -30%;
  top: 0;
}
.easy-order__img-cards {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 1.375rem;
  line-height: 27px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.easy-order__card {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 18px;
  padding: 27px;
  background: black;
}
.easy-order__card--card-1 {
  right: 15%;
  top: 15%;
}
.easy-order__card--card-2 {
  left: -2%;
  top: 32%;
}
.easy-order__card--card-3 {
  right: -2%;
  bottom: 30%;
}
.easy-order__card--card-4 {
  left: 22%;
  bottom: 20%;
}

.notab {
  padding: 340px 0 250px 0;
  background-image: url("../img/noTab/noTabBg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.notab__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.notab__phone {
  -o-object-fit: contain;
     object-fit: contain;
}

.get-touch__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.get-touch__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.get-touch__content::after {
  content: "";
  position: absolute;
  background: linear-gradient(12.08deg, #f101bf 2.82%, #0066ff 97.06%);
  opacity: 0.3;
  -webkit-filter: blur(125px);
          filter: blur(125px);
  width: 280px;
  height: 280px;
  left: -20%;
  top: -15%;
}
.get-touch__title {
  margin-bottom: 23px;
}
.get-touch__subtitle {
  margin-bottom: 82px;
  text-align: center;
}
.get-touch__input {
  width: 820px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 23px;
  font-size: 1.125rem;
  line-height: 25px;
  margin-bottom: 85px;
  position: relative;
}
.get-touch__input::before {
  content: "";
  position: absolute;
  background: linear-gradient(12.08deg, #f101bf 2.82%, #0066ff 97.06%);
  opacity: 0.3;
  -webkit-filter: blur(125px);
          filter: blur(125px);
  width: 180px;
  height: 380px;
  right: -20%;
  bottom: 0;
}
.get-touch__city {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
.get-touch__venue-city {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.get-touch__state-city {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.get-touch__message {
  background: #ffffff;
  border: 1px solid #5c5c5c;
  border-radius: 10px;
  width: 100%;
  height: 200px;
}
.get-touch__message textarea {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.get-touch__btn {
  width: 50%;
  margin: 0 auto;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 29px;
  margin-bottom: 91px;
  padding: 25px 167px 25px 167px;
  background-color: #000000;
  border: 1px solid #ffffff;
  border-radius: 10px;
  color: #ffffff;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.get-touch__btn:hover {
  border: 1px solid #67a3f7;
  opacity: 1.2;
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
  z-index: 4;
  color: #67a3f7;
  -webkit-box-shadow: 0px 0px 27px 11px rgba(242, 246, 249, 0.2);
          box-shadow: 0px 0px 27px 11px rgba(242, 246, 249, 0.2);
}
.get-touch__btn:active {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-box-shadow: none;
          box-shadow: none;
  color: white;
  border: 1px solid #ffffff;
}

textarea {
  padding: 29px;
}

input {
  background: #ffffff;
  border: 1px solid #5c5c5c;
  border-radius: 10px;
  padding: 29px;
  color: #010101;
  width: 100%;
}

input::-webkit-input-placeholder {
  color: #bfbfbf;
}

input::-moz-placeholder {
  color: #bfbfbf;
}

input:-ms-input-placeholder {
  color: #bfbfbf;
}

input::-ms-input-placeholder {
  color: #bfbfbf;
}

input::placeholder {
  color: #bfbfbf;
}

.error {
  border: 2px solid #ff0000;
}

.download-app {
  margin-bottom: 150px;
}
.download-app__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
}
.download-app__text {
  font-family: "Noto Sans", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 33px;
}
.download-app__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
}

.footer {
  font-family: "Avenir";
  font-size: 1.125rem;
  line-height: 25px;
  margin-bottom: 85px;
  position: relative;
}
.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
.footer__contact-info {
  font-weight: 500;
  max-width: 200px;
  z-index: 2;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
.footer__date {
  font-weight: 800;
  z-index: 4;
}
.footer__privacy {
  font-weight: 800;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.footer__privacy-terms {
  margin-bottom: 25px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.footer__privacy-policy {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.footer__date {
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
.footer__privacy-terms:hover {
  color: #67a3f7;
}
.footer__privacy-policy:hover {
  color: #67a3f7;
}
.footer__date:hover {
  color: #67a3f7;
}
.footer__contact-info:hover {
  color: #67a3f7;
}

.footer::after {
  content: "";
  position: absolute;
  background: linear-gradient(12.08deg, #f101bf 2.82%, #0066ff 97.06%);
  opacity: 0.3;
  -webkit-filter: blur(100px);
          filter: blur(100px);
  width: 400px;
  height: 400px;
  left: 0;
  bottom: -80%;
  z-index: 1;
}

@media (max-width: 1200px) {
  .container {
    margin: 0 20px;
    max-width: 1140px;
  }
  .download {
    font-size: 1.5625rem;
  }
  .intro__title {
    font-size: 3.375rem;
  }
  .intro__subtitle {
    font-size: 1.0625rem;
  }
  .intro__subtitle-img::after {
    width: 100px;
    height: 100px;
  }
  .intro__subtitle-text {
    max-width: 340px;
  }
  .intro__decor {
    width: 65px;
    height: 120px;
  }
  .intro__phone {
    width: 300px;
    height: 600px;
  }
  .intro__img::after {
    width: 300px;
    height: 600px;
  }
  .intro::after {
    width: 500px;
    height: 500px;
    top: 0;
    right: 0;
  }
  .contact {
    /* .contact__card-left */
    /* .contact__card-right */
  }
  .contact__title {
    font-size: 1.5625rem;
  }
  .contact__link {
    font-size: 1.125rem;
  }
  .contact__card--left {
    padding: 54px 85px 52px 45px;
  }
  .contact__card--right {
    padding: 87px 85px 84px 45px;
  }
  .contact__title {
    max-width: 280px;
  }
  .mission__img-phone {
    width: 650px;
    height: 370px;
  }
  .mission__img::after {
    width: 700px;
    height: 400px;
  }
  .scanner__inner {
    gap: 68px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .scanner__img {
    gap: 20px;
  }
  .scanner__content {
    width: 310px;
  }
  .scanner__phone {
    width: 300px;
    height: 520px;
  }
  .qr-code__inner {
    padding-top: 15%;
  }
  .qr-code__phone {
    width: 280px;
  }
  .qr-code__phone--left {
    padding-bottom: 300px;
  }
  .qr-generate__content {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .qr-generate__phone::before {
    right: 5%;
  }
  .qr-generate__title {
    -ms-flex-preferred-size: 45%;
        flex-basis: 45%;
  }
  .qr-generate__phone {
    width: 300px;
    height: 600px;
  }
  .qr-generate__img {
    padding-bottom: 150px;
  }
  .qr-generate__subtitle {
    -ms-flex-preferred-size: 30%;
        flex-basis: 30%;
  }
  .get-touch__input::before {
    right: 0%;
    bottom: -25%;
  }
}
@media (max-width: 1050px) {
  .header__img {
    width: 180px;
    height: 90px;
  }
  .download__img {
    width: 140px;
    height: 40px;
  }
  .intro__title {
    font-size: 3rem;
  }
  .intro__phone {
    width: 270px;
    height: 540px;
  }
  .intro__img::after {
    width: 270px;
    height: 540px;
  }
  .contact {
    /* .contact__card-left */
    /* .contact__card-right */
  }
  .contact__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 60px;
  }
  .contact__title {
    margin-bottom: 10px;
  }
  .contact__link {
    font-size: 1.125rem;
  }
  .contact__card--left {
    padding: 54px 54px 52px 45px;
  }
  .contact__card--right {
    padding: 67px 54px 84px 45px;
  }
  .mission__img-phone {
    width: 700px;
    height: 300px;
  }
  .mission__img::after {
    width: 700px;
    height: 300px;
  }
  .mission__content {
    width: 340px;
  }
  .title {
    font-size: 2.625rem;
    line-height: 50px;
  }
  .subtitle {
    font-size: 1.0625rem;
  }
  .scanner {
    padding: 400px 0 200px 0;
  }
  .scanner__img {
    gap: 38px;
  }
  .qr-code__inner {
    padding-top: 10%;
  }
  .qr-code__img {
    gap: 50px;
  }
  .qr-code__phone {
    width: 240px;
  }
  .qr-code__phone--left {
    padding-bottom: 270px;
  }
  .qr-generate__phone::before {
    right: 0;
    bottom: 65%;
  }
  .qr-generate__title {
    -ms-flex-preferred-size: 40%;
        flex-basis: 40%;
  }
  .qr-generate__phone {
    width: 280px;
  }
  .qr-generate__img {
    padding-bottom: 130px;
  }
  .qr-generate__inner::before {
    width: 700px;
    height: 800px;
  }
  .easy-order__phone {
    width: 800px;
    height: 900px;
  }
  .easy-order__img-cards {
    font-size: 1.25rem;
    line-height: 25px;
  }
}
@media (max-height: 977px) {
  .intro__phone {
    height: 60vh;
  }
  .intro__img::after {
    height: 60vh;
  }
}
@media (max-height: 977px) and (min-width: 1200px) {
  .header__img {
    width: 180px;
    height: 90px;
  }
  .intro__title {
    font-size: 3.375rem;
    margin-bottom: 50px;
  }
  .intro__subtitle {
    font-size: 1.0625rem;
  }
  .download__text {
    font-size: 1.5625rem;
  }
  .download__img {
    width: 140px;
    height: 40px;
  }
}
@media (max-width: 940px) {
  .header__img {
    width: 160px;
    height: 80px;
  }
  .download {
    font-size: 1.25rem;
  }
  .download__img {
    width: 135px;
    height: 40px;
  }
  .intro {
    padding: 160px 0 70px 0;
  }
  .intro__title {
    font-size: 2.5rem;
    line-height: 47px;
    margin-bottom: 49px;
  }
  .intro__subtitle-img::after {
    width: 60px;
    height: 60px;
  }
  .intro__subtitle-text {
    max-width: 300px;
  }
  .intro__decor {
    width: 50px;
    height: 100px;
  }
  .intro__phone {
    width: 220px;
    height: 420px;
  }
  .intro__img::after {
    width: 220px;
    height: 420px;
  }
  .intro::after {
    width: 400px;
    height: 400px;
  }
  .mission__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 150px;
  }
  .mission__img {
    -webkit-transform: none;
            transform: none;
  }
  .mission__img-phone {
    width: 300px;
    height: 550px;
  }
  .mission__img::after {
    width: 300px;
    height: 550px;
  }
  .mission__content {
    width: 250px;
    -webkit-transform: none;
            transform: none;
  }
  .mission__subtitle {
    width: 320px;
  }
  .mission__title::before {
    left: -20%;
    top: -30%;
  }
  .title {
    font-size: 2.375rem;
  }
  .scanner {
    padding: 340px 0 200px 0;
  }
  .scanner__inner {
    gap: 30px;
  }
  .scanner__img {
    gap: 20px;
  }
  .integration {
    padding-bottom: 70px;
  }
  .qr-code__inner {
    padding-top: 0;
    gap: 40px;
  }
  .qr-code__img {
    gap: 30px;
  }
  .qr-code__phone {
    width: 200px;
  }
  .qr-code__phone--left {
    padding-bottom: 220px;
  }
  .qr-generate__phone::before {
    right: -3%;
    bottom: 60%;
  }
  .qr-generate__title {
    -ms-flex-preferred-size: 43%;
        flex-basis: 43%;
  }
  .qr-generate__phone {
    width: 230px;
    height: 500px;
  }
  .qr-generate__img {
    padding-bottom: 90px;
  }
  .qr-generate__inner::before {
    height: 600px;
  }
  .qr-generate__content {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .easy-order__phone {
    width: 700px;
    height: 760px;
  }
  .easy-order__img-cards {
    font-size: 1.125rem;
    line-height: 22px;
  }
  .easy-order__card {
    padding: 20px;
  }
  .get-touch__city {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .get-touch__input {
    width: 100%;
  }
  .footer::after {
    width: 300px;
    height: 300px;
  }
}
@media (max-width: 768px) {
  .notab {
    display: none;
  }
  .container {
    max-width: 720px;
    padding: 0 20px 0 20px;
  }
  .title {
    font-size: 1.875rem;
    line-height: 40px;
  }
  .subtitle {
    font-size: 1rem;
    line-height: 22px;
  }
  .header {
    width: 100%;
    position: absolute;
  }
  .header__nav {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: static;
    padding-top: 40px;
  }
  .header__img {
    width: 140px;
    height: 65px;
  }
  .header__icon {
    display: none;
  }
  .header__text {
    font-size: 1rem;
    line-height: 19px;
    padding-bottom: 2px;
  }
  .header__login {
    margin-right: 20px;
  }
  .intro__img {
    right: 0;
  }
  .intro__title {
    font-size: 2.375rem;
    line-height: 40px;
    width: 220px;
  }
  .intro__subtitle {
    gap: 0;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
  .intro__subtitle-text {
    max-width: 260px;
  }
  .intro__decor {
    display: none;
  }
  .download {
    font-size: 1.5rem;
    line-height: 40px;
    gap: 34px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .download__links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
  .download__img {
    width: 185px;
    height: 60px;
  }
  .contact__inner {
    gap: 30px;
  }
  .mission {
    padding-bottom: 190px;
  }
  .mission__img::after {
    width: 280px;
    height: 450px;
  }
  .mission__img-phone {
    width: 250px;
    height: 400px;
  }
  .mission__img::after {
    top: -5%;
    left: -5%;
  }
  .scanner {
    padding: 60% 0 145px 0;
  }
  .scanner__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 70px;
  }
  .scanner__img {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 55px;
  }
  .scanner__content {
    width: 345px;
    margin-bottom: 0;
    margin-top: 0;
  }
  .integration__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
  .integration__img-statistics {
    height: 300px;
  }
  .integration__title::before {
    display: none;
  }
  .integration__content {
    max-width: 300px;
  }
  .qr-code {
    background-image: url("../img/qr-code/bgMob.jpg");
    padding-top: 70%;
    position: relative;
    margin-bottom: 130px;
  }
  .qr-code__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .qr-code__img {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 50px;
  }
  .qr-code__img::after {
    content: "";
    position: absolute;
    width: 95vw;
    height: 650px;
    -o-object-fit: contain;
       object-fit: contain;
    background-image: url("../img/qr-code/bg768.jpg");
    background-repeat: no-repeat;
    background-position: top center;
    z-index: 1;
    top: 37%;
    left: 3%;
  }
  .qr-code__phone--left {
    padding: 0;
  }
  .qr-code__phone {
    width: 280px;
    height: 560px;
    z-index: 2;
  }
  .qr-code__download {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    z-index: 2;
  }
  .qr-code__subtitle {
    margin-bottom: 50px;
  }
  .qr-code__content {
    margin-bottom: 300px;
  }
  .qr-generate {
    background-position: center center;
  }
  .qr-generate__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 70px;
  }
  .qr-generate__phone::before {
    background-image: url("../img/qr-generate/qr-arrowMob.svg");
    right: 10%;
    bottom: 0;
    width: 150px;
    height: 150px;
  }
  .qr-generate__title {
    -ms-flex-preferred-size: 43%;
        flex-basis: 43%;
  }
  .qr-generate__phone {
    width: 250px;
    height: 500px;
  }
  .qr-generate__img {
    padding-bottom: 90px;
  }
  .qr-generate__subtitle {
    max-width: 250px;
  }
  .qr-generate__inner::before {
    width: 500px;
  }
  .qr-generate__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 24px;
    max-width: 400px;
  }
  .easy-order {
    margin-bottom: 95px;
  }
  .easy-order__inner {
    gap: 160px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .easy-order__content {
    -ms-flex-item-align: self-start;
        align-self: self-start;
  }
  .easy-order__phone {
    width: 100vw;
    height: 670px;
  }
  .easy-order__img-cards {
    font-size: 1.0625rem;
    line-height: 21px;
  }
  .easy-order__card {
    padding: 18px 25px;
  }
  .easy-order__card--card-2 {
    left: 15%;
    top: -13%;
  }
  .easy-order__card--card-1 {
    right: 10%;
    top: 5%;
  }
  .easy-order__card--card-4 {
    left: 15%;
    bottom: 15%;
  }
}
@media (max-width: 576px) {
  .header__nav {
    position: static;
  }
  .container {
    padding: 0;
    margin: 0 15px;
  }
  .intro__phone {
    -webkit-transform: translateX(40%);
            transform: translateX(40%);
  }
  .intro__img::after {
    -webkit-transform: translateX(40%);
            transform: translateX(40%);
  }
  .intro::after {
    width: 300px;
    height: 500px;
    -webkit-filter: blur(100px);
            filter: blur(100px);
    -webkit-transform: none;
            transform: none;
  }
  .contact {
    padding-bottom: 110px;
  }
  .contact__title {
    font-size: 1.5rem;
    line-height: 33px;
    max-width: 260px;
  }
  .contact__link {
    font-size: 1.125rem;
    line-height: 25px;
  }
  .contact__card--left {
    padding: 40px 35px 40px 35px;
  }
  .contact__card--right {
    padding: 50px 35px 50px 35px;
  }
  .title {
    font-size: 1.5rem;
    line-height: 29px;
  }
  .mission__img-phone {
    width: 200px;
    height: 350px;
  }
  .mission__img::after {
    width: 220px;
    height: 380px;
  }
  .mission__title {
    width: 300px;
  }
  .mission__subtitle {
    width: 300px;
  }
  .mission__content {
    width: 300px;
  }
  .integration__content {
    max-width: 600px;
  }
  .qr-code__img::after {
    width: 100vw;
    top: 34%;
    left: 0%;
  }
  .qr-code__content {
    margin-bottom: 270px;
  }
  .qr-generate__inner {
    gap: 50px;
  }
  .qr-generate__phone {
    width: 180px;
    height: 360px;
  }
  .qr-generate__inner::before {
    width: 350px;
    height: 500px;
  }
  .qr-generate__content {
    width: 100%;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .easy-order__img::before {
    top: 0;
  }
  .easy-order__card--card-3 {
    right: 0;
    bottom: -5%;
  }
  .get-touch__message {
    max-height: 200px;
  }
  .get-touch__input {
    font-size: 1rem;
    line-height: 22px;
    gap: 16px;
    margin-bottom: 40px;
  }
  .get-touch__city {
    gap: 16px;
  }
  input {
    padding: 25px;
  }
  .download-app {
    margin-bottom: 64px;
  }
  .download-app__inner {
    gap: 45px;
  }
  .download-app__links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
  .footer {
    margin-bottom: 24px;
  }
  .footer__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 58px;
  }
  .footer__privacy-terms {
    margin-bottom: 14px;
  }
  .footer__contact {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 9px;
  }
  .footer__contact-info {
    max-width: 280px;
  }
  .footer__logo {
    margin-bottom: 7px;
  }
  .footer::after {
    width: 250px;
    height: 270px;
    bottom: 0;
  }
}
@media (max-width: 485px) {
  .intro__title {
    font-size: 2.1875rem;
  }
  .intro__subtitle {
    font-size: 0.9375rem;
    line-height: 21px;
  }
  .intro__subtitle-text {
    max-width: 235px;
  }
  .qr-code {
    overflow: hidden;
  }
  .qr-code__img::after {
    background-image: url("../img/qr-code/bgMob1.png");
    top: 33%;
    width: 380px;
    height: 300px;
    right: 0;
    left: auto;
    -webkit-transform: translateX(34px);
            transform: translateX(34px);
  }
  .qr-code__content {
    margin-bottom: 220px;
  }
  .qr-generate__phone::before {
    right: 3%;
  }
  .easy-order__inner {
    gap: 100px;
  }
  .easy-order__img-cards {
    font-size: 0.875rem;
    line-height: 16px;
  }
  .easy-order__card {
    padding: 15px 21px;
  }
  .easy-order__card--card-1 {
    right: 6%;
    top: 15%;
  }
  .easy-order__card--card-2 {
    top: 0;
  }
  .easy-order__card--card-3 {
    bottom: 5%;
  }
  .easy-order__card--card-4 {
    bottom: 20%;
  }
  .get-touch__btn {
    width: 100%;
    padding: 25px 100px 25px 100px;
  }
  input {
    padding: 17px;
  }
}
@media (max-width: 435px) {
  .intro__phone {
    width: 160px;
    height: 310px;
  }
  .intro__title {
    font-size: 1.75rem;
    line-height: 31px;
    width: 170px;
    margin-bottom: 29px;
  }
  .intro__subtitle {
    font-size: 0.9375rem;
  }
  .intro__subtitle-text {
    max-width: 170px;
  }
  .intro__img::after {
    width: 150px;
    height: 310px;
  }
  .intro::after {
    width: 200px;
  }
  .contact__title {
    font-size: 1.1875rem;
    line-height: 28px;
    max-width: 200px;
  }
  .contact__link {
    font-size: 0.9375rem;
    line-height: 20px;
  }
  .download {
    font-size: 1.375rem;
  }
  .mission__content {
    width: 100%;
  }
  .mission__title {
    width: 100%;
  }
  .mission__subtitle {
    width: 100%;
  }
  .scanner__content {
    width: 100%;
  }
  .scanner__phone {
    width: 240px;
    height: 460px;
  }
  .integration {
    overflow: hidden;
  }
  .integration__img-statistics {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
  .qr-code__phone {
    width: 250px;
    height: 500px;
  }
  .qr-code__img::after {
    -webkit-transform: translateX(20%) scale(0.9);
            transform: translateX(20%) scale(0.9);
  }
  .qr-generate__inner::before {
    width: 100%;
  }
  .qr-generate__phone::before {
    right: -5%;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  .easy-order__inner {
    gap: 80px;
  }
  .easy-order__img-cards {
    font-size: 0.875rem;
    line-height: 16px;
  }
  .easy-order__card {
    padding: 15px 21px;
  }
  .easy-order__card--card-1 {
    right: 0;
    top: 20%;
  }
  .easy-order__card--card-2 {
    top: 5%;
  }
  .easy-order__card--card-3 {
    bottom: 10%;
  }
  .easy-order__card--card-4 {
    bottom: 25%;
  }
}/*# sourceMappingURL=style.css.map */