*,
*:before,
*:after {
  padding: 0;
  margin: 0;
  border: 0;
  z-index: 1;
  box-sizing: border-box;
}

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 10px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -webkit-overflow-scrolling: touch;
  -moz-osx-font-smoothing: grayscale;
}

input,
button,
textarea {
  font-family: inherit;
  background-color: unset;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
  pointer-events: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}

a {
  color: #03a9f4;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: 400;
}

header.header {
  padding: 55px 0;
}
header.header .container {
  display: flex;
  align-items: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
header.header .site-icon {
  display: flex;
  justify-content: center;
  align-items: center;
}
header.header .site-icon #my_code {
  margin-left: 15px;
}
header.header .header__item {
  background-color: #fff;
  padding: 14px 30px;
  box-shadow: -8px 17px 42px 0px rgba(41, 37, 36, 0.1);
  border-radius: 100px;
}
header.header .navigate {
  flex: 0 1 80%;
  margin-left: 20px;
}
header.header .navigate.show {
  transform: translateX(0);
  box-shadow: -2px 0 15px 8px rgba(0, 0, 0, 0.05);
}
header.header .navigate__list {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header.header .navigate__list .navigate_list_item {
  margin: 0 2.5px;
  min-width: 150px;
  width: 100%;
  max-width: 175px;
  background-color: #fff;
  transition: background-color 0.2s linear;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
}
header.header .navigate__list .navigate_list_item a {
  display: flex;
  width: inherit;
  height: 60px;
  font-size: 2rem;
  font-weight: 500;
  color: #000;
  justify-content: center;
  align-items: center;
}
header.header .navigate__list .navigate_list_item#download_button {
  background-color: #f0eff6;
}
header.header .navigate__list .navigate_list_item:hover {
  background-color: #e6e0ff !important;
}
header.header .burger-btn {
  display: block;
  height: 60px;
  min-width: 60px;
  width: 60px;
  border-radius: 30px;
  box-shadow: -8px 17px 42px 0px rgba(41, 37, 36, 0.1);
  z-index: 101;
  cursor: pointer;
  position: relative;
  transition: box-shadow 0.2s linear;
}
header.header .burger-btn span {
  transform-origin: center;
  position: absolute;
  display: block;
  width: 30px;
  height: 4px;
  top: 20px;
  left: 50%;
  transform: translate(-50%, 0%);
  background-color: #000;
  border-radius: 5px;
}
header.header .burger-btn span:nth-child(1) {
  margin-top: 0;
}
header.header .burger-btn span:nth-child(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}
header.header .burger-btn span:nth-child(3) {
  top: unset;
  bottom: 20px;
}
header.header .burger-btn.active {
  box-shadow: unset;
}
header.header .burger-btn.active span:nth-child(2) {
  opacity: 0;
}
header.header .burger-btn.open span:nth-child(1) {
  animation: burger1__open 0.2s linear forwards;
}
header.header .burger-btn.open span:nth-child(2) {
  transition: opacity 0.2s linear;
  opacity: 0;
}
header.header .burger-btn.open span:nth-child(3) {
  animation: burger3__open 0.2s linear forwards;
}
header.header .burger-btn.close span:nth-child(1) {
  animation: burger1__close 0.2s linear forwards;
}
header.header .burger-btn.close span:nth-child(2) {
  transition: opacity 0.1s linear 0.1s;
  opacity: 1;
}
header.header .burger-btn.close span:nth-child(3) {
  animation: burger3__close 0.2s linear forwards;
}
.contacts {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  max-width: 685px;
  gap: 24px;
  font-size: 12px;
  color: #fff;
  padding: 40px 16px;
  line-height: 1.6;
}

.contacts-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.contacts-list li {
  white-space: nowrap;
}

.contacts-address {
  font-style: normal;
  font-size: 12px;
}

.contacts-agreement {
  font-size: 12px;
  color: #ccc;
}

.contacts-agreements-list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contacts-agreements-list-item a {
  color: #aaa;
  font-size: 12px;
  text-decoration: underline;
  transition: color 0.2s;
}

.contacts-agreements-list-item a:hover {
  color: #fff;
}

@keyframes burger1__open {
  0% {
    top: 20px;
    transform: translate(-50%, 0%);
  }
  50% {
    top: 46%;
    transform: translate(-50%, -50%);
  }
  100% {
    top: 46%;
    transform: translate(-50%, -50%) rotate(45deg);
  }
}
@keyframes burger3__open {
  0% {
    bottom: 20px;
    transform: translate(-50%, 0%);
  }
  50% {
    bottom: 46%;
    transform: translate(-50%, -50%);
  }
  100% {
    bottom: 46%;
    transform: translate(-50%, -50%) rotate(-45deg);
  }
}
@keyframes burger1__close {
  0% {
    top: 46%;
    transform: translate(-50%, -50%) rotate(45deg);
  }
  50% {
    top: 46%;
    transform: translate(-50%, -50%);
  }
  100% {
    top: 20px;
    transform: translate(-50%, 0%);
  }
}
@keyframes burger3__close {
  0% {
    bottom: 46%;
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  50% {
    bottom: 46%;
    transform: translate(-50%, -50%);
  }
  100% {
    bottom: 20px;
    transform: translate(-50%, 0%);
  }
}
@media screen and (min-width: 1120px) {
  header.header .burger-btn {
    display: none;
  }
}
@media screen and (max-width: 1120px) {
  header.header .container {
    display: flex;
    justify-content: space-between;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
  }
  header.header .navigate {
    position: fixed;
    top: 0;
    right: 0;
    transform: translateX(300px);
    width: 300px;
    height: 100vh;
    border-radius: 0;
    margin-left: 0;
    box-shadow: -2px 0 15px 8px rgba(0, 0, 0, 0);
    z-index: 100;
    transition: transform 0.3s ease-in-out;
  }
  header.header .navigate__list {
    flex-direction: column;
    justify-content: center;
  }
  header.header .navigate__list .navigate_list_item {
    margin-top: 10px;
  }
}
@media screen and (max-width: 375px) {
  header.header .navigate {
    transform: translateX(100%);
    width: 100vw;
  }
}
body {
  overflow-x: hidden;
  font-family: "IBM Plex Sans", sans-serif;
}

main.main,
footer.footer {
  overflow-x: hidden;
}

.wrap {
  padding: 0 15px;
}

.container {
  max-width: 1270px;
  padding: 0 15px;
  width: 100%;
  margin: 0 auto;
}
.consent-wrapper.error {
    outline: 1px solid #dc3545;
    padding: 5px;
    border-radius: 4px;
  }
.btn {
  background-color: #cdc1ff;
  border-radius: 50px;
  padding: 17px 26px;
  color: #000;
  text-align: center;
  font-size: 2rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  cursor: pointer;
  transition: background-color 0.2s linear;
}
.btn:hover {
  background-color: #e6e0ff;
}

.black_section {
  background-color: #292524;
  position: relative;
  z-index: 3;
}
.black_section h3.title,
.black_section p.text {
  color: #fff;
}
.black_section .container {
  position: relative;
  z-index: 3;
}
.black_section .blocks {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.black_section .blocks div {
  width: 31px;
  height: 31px;
  position: absolute;
  top: 0;
  left: 0;
}
.black_section .blocks .r {
  left: unset;
  right: 0;
}
.black_section .blocks .b {
  top: unset;
  bottom: 0;
}
.black_section .blocks .c-w {
  background-color: #fff;
}
.black_section .blocks .c-b {
  background-color: #292524;
}
@media screen and (max-width: 500px) {
  .black_section .blocks .n500 {
    display: none;
    opacity: 0;
  }
}

h2.title {
  text-align: center;
  font-family: "Unbounded", sans-serif;
  font-size: 5.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #292524;
}

h4.subtitle {
  color: #292524;
  text-align: center;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 2rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.black_section h2.title {
  color: #fff;
}

@media screen and (max-width: 768px) {
  h2.title {
    font-size: 4.1rem;
  }
  h4.subtitle {
    font-size: 1.8rem;
  }
  .btn {
    border-radius: 50px;
    padding: 15px 24px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 375px) {
  h2.title {
    font-size: 3.6rem;
  }
  h4.subtitle {
    font-size: 1.6rem;
  }
  .btn {
    border-radius: 50px;
    padding: 15px 20px;
    font-size: 1.6rem;
  }
}
.lr-section {
  display: flex;
  align-items: center;
  padding: 130px 0;
}
.lr-section.lr-reversed {
  flex-direction: row-reverse;
}
.lr-section.lr-reversed .right {
  margin-left: 0;
  margin-right: 128px;
}
.lr-section.lr-reversed .right .image {
  float: left;
}
.lr-section .left {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.lr-section .left h3.title {
  font-family: "Unbounded", sans-serif;
  font-size: 4.2rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  width: 470px;
}
.lr-section .left p.text {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 2rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  width: 450px;
  margin-top: 30px;
}
.lr-section .left a.btn {
  display: inline-block;
  margin-top: 50px;
}
.lr-section .right {
  flex: 1;
  margin-left: 128px;
}
.lr-section .right .image {
  float: right;
  max-width: 640px;
  max-height: 640px;
  width: 100%;
  height: 100%;
  border-radius: 40px;
  overflow: hidden;
}

@media screen and (max-width: 940px) {
  .lr-section.lr-reversed .right {
    margin-right: 40px;
  }
  .lr-section .right {
    margin-left: 40px;
  }
}
@media screen and (max-width: 940px) {
  .lr-section,
  .lr-section.lr-reversed {
    flex-direction: column-reverse;
  }
  .lr-section .right,
  .lr-section.lr-reversed .right {
    display: flex;
    justify-content: center;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 50px;
  }
  .lr-section .right .image,
  .lr-section.lr-reversed .right .image {
    width: 80%;
  }
  .lr-section .left h3.title,
  .lr-section.lr-reversed .left h3.title {
    font-family: "Unbounded", sans-serif;
    font-size: 3.6rem;
    width: 470px;
  }
  .lr-section .left p.text,
  .lr-section.lr-reversed .left p.text {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 550px) {
  .lr-section {
    padding: 80px 0;
  }
  .lr-section .right .image,
  .lr-section.lr-reversed .right .image {
    width: 95%;
  }
  .lr-section .left h3.title,
  .lr-section.lr-reversed .left h3.title {
    font-family: "Unbounded", sans-serif;
    font-size: 3.2rem;
    width: 100%;
  }
  .lr-section .left p.text,
  .lr-section.lr-reversed .left p.text {
    width: 100%;
    font-size: 1.6rem;
  }
}
.slider__wrap {
  width: 100%;
  display: flex;
  align-items: center;
  z-index: 5;
  position: relative;
  overflow-x: hidden;
}
.slider__wrap .arrow {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  cursor: pointer;
  position: absolute;
  z-index: 6;
  height: 100%;
  width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider__wrap .arrow.arrow-left {
  left: 0px;
}
.slider__wrap .arrow.arrow-right {
  right: 0px;
}
.slider__wrap .slider {
  display: flex;
  align-items: center;
  transition: transform 0.2s ease-in-out;
  transform: translateX(100px);
}
.slider__wrap .slider .slider__item {
  display: flex;
  align-items: end;
  height: 550px;
  width: 385px;
  border-radius: 40px;
  overflow: hidden;
  margin: 0 20px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.slider__wrap .slider .slider__item:first-child {
  margin-left: 0;
}
.slider__wrap .slider .slider__item:last-child {
  margin-right: 0;
}
.slider__wrap .slider .slider__item .content {
  max-height: 156px;
  height: 100%;
  padding: 30px 20px;
  border-radius: 40px;
}
.slider__wrap .slider .slider__item .content p.text {
  color: #292524;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  font-style: normal;
  line-height: normal;
}

@media screen and (max-width: 768px) {
  .slider__wrap .arrow {
    width: 40px;
  }
  .slider__wrap .arrow svg {
    width: 30px;
  }
  .slider__wrap .slider {
    transform: translateX(40px);
  }
  .slider__wrap .slider .slider__item {
    margin: 0 10px;
    height: 500px;
    width: 320px;
  }
}
@media screen and (max-width: 375px) {
  .slider__wrap .arrow svg {
    width: 25px;
  }
  .slider__wrap .slider .slider__item {
    height: 500px;
    width: 280px;
  }
  .slider__wrap .slider .slider__item .content {
    padding: 20px 15px;
  }
  .slider__wrap .slider .slider__item .content p.text {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 320px) {
  .slider__wrap .arrow {
    display: none;
  }
  .slider__wrap .slider {
    transform: translateX(10px);
  }
}
.preview {
  text-align: center;
  padding-top: 70px;
  padding-bottom: 155px;
}
.preview .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.preview .preview__text {
  font-size: 96px;
  font-family: "Unbounded", sans-serif, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  max-width: 675px;
  line-height: normal;
  z-index: 5;
}
.preview .container::after,
.preview .container::before {
  content: "";
  display: block;
  position: absolute;
  width: 350px;
  height: 350px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  z-index: 8;
}
.preview .container::after {
  bottom: 6%;
  left: 4%;
  background-image: url("../assets/3dqr 1.png");
  animation: qr2 30s ease infinite;
}
.preview .container::before {
  top: -10%;
  right: 11.5%;
  background-image: url("../assets/3dqr 2.png");
  animation: qr1 30s ease infinite;
}
.preview .btn {
  margin-top: 45px;
}
.preview .btn svg {
  width: 14px;
  height: 14px;
  margin-left: 5px;
}

@keyframes qr1 {
  0% {
    transform: translateY(0%) rotate(0deg);
  }
  50% {
    transform: translateY(22%) rotate(40deg);
  }
  100% {
    transform: translateY(0%) rotate(0deg);
  }
}
@keyframes qr2 {
  0% {
    transform: translateY(0%) rotate(0deg);
  }
  50% {
    transform: translateY(-45%) rotate(40deg);
  }
  100% {
    transform: translateY(0%) rotate(0deg);
  }
}
@media screen and (max-width: 1120px) {
  .preview .preview__text {
    font-size: 7.2rem;
  }
  .preview .container::after,
  .preview .container::before {
    width: 300px;
    height: 300px;
  }
  .preview .container::after {
    bottom: -10%;
    left: 5%;
  }
  .preview .container::before {
    top: -15%;
    right: 12%;
  }
  @keyframes qr1 {
    0% {
      transform: translateY(0%) rotate(0deg);
    }
    50% {
      transform: translateY(40%) rotate(40deg);
    }
    100% {
      transform: translateY(0%) rotate(0deg);
    }
  }
  @keyframes qr2 {
    0% {
      transform: translateY(0%) rotate(0deg);
    }
    50% {
      transform: translateY(-65%) rotate(40deg);
    }
    100% {
      transform: translateY(0%) rotate(0deg);
    }
  }
}
@media screen and (max-width: 768px) {
  .preview .preview__text {
    font-size: 7.2rem;
  }
  .preview .container::after,
  .preview .container::before {
    width: 250px;
    height: 250px;
  }
  .preview .container::after {
    bottom: -2%;
    left: -8%;
  }
  .preview .container::before {
    top: -12%;
    right: 0%;
  }
  @keyframes qr1 {
    0% {
      transform: translateY(0%) rotate(0deg);
    }
    50% {
      transform: translateY(55%) rotate(40deg);
    }
    100% {
      transform: translateY(0%) rotate(0deg);
    }
  }
  @keyframes qr2 {
    0% {
      transform: translateY(0%) rotate(0deg);
    }
    50% {
      transform: translateY(-75%) rotate(40deg);
    }
    100% {
      transform: translateY(0%) rotate(0deg);
    }
  }
}
@media screen and (max-width: 550px) {
  .preview .preview__text {
    font-size: 6.4rem;
  }
  .preview .container::after,
  .preview .container::before {
    width: 200px;
    height: 200px;
  }
  .preview .container::after {
    bottom: 5%;
    left: -12%;
  }
  .preview .container::before {
    top: -13%;
    right: -5%;
  }
  .preview .btn svg {
    width: 12px;
    height: 12px;
  }
}
@media screen and (max-width: 375px) {
  .preview {
    padding-bottom: 120px;
  }
  .preview .preview__text {
    font-size: 5.2rem;
  }
  .preview .container::after,
  .preview .container::before {
    width: 150px;
    height: 150px;
  }
  .preview .container::after {
    bottom: 30%;
    left: -20%;
    animation: qr2 50s ease infinite;
  }
  .preview .container::before {
    top: -20%;
    right: -10%;
    animation: qr1 50s ease infinite;
  }
  @keyframes qr1 {
    0% {
      transform: translateY(0%) rotate(0deg);
    }
    50% {
      transform: translateY(120%) rotate(40deg);
    }
    100% {
      transform: translateY(0%) rotate(0deg);
    }
  }
  @keyframes qr2 {
    0% {
      transform: translateY(0%) rotate(0deg);
    }
    50% {
      transform: translateY(-125%) rotate(40deg);
    }
    100% {
      transform: translateY(0%) rotate(0deg);
    }
  }
}
.interestings {
  padding-top: 115px;
  padding-bottom: 150px;
  width: 100%;
}
.interestings .cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 135px;
}
.interestings .card {
  flex: 0 1 32%;
  margin: 0 20px;
  margin-top: 40px;
  padding: 40px;
  border-radius: 40px;
  min-width: 370px;
  max-width: 386px;
}
.interestings .card:first-child {
  margin-left: 0;
  background: #fff6eb;
}
.interestings .card:last-child {
  margin-right: 0;
  background: #e4f9e4;
}
.interestings .card:nth-child(2) {
  background: #f0eff6;
}
.interestings .card__content {
  margin-top: 90px;
}
.interestings .card__content .card__title {
  font-size: 4.2rem;
  font-family: "Unbounded", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 102%;
}
.interestings .card__content .card__text {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 2rem;
  font-style: normal;
  font-weight: 500;
  line-height: 102%;
  margin-top: 20px;
  padding-right: 10px;
}

@media screen and (max-width: 1120px) {
  .interestings .card {
    flex: 0 1 28%;
    margin: 30px 15px 0 15px;
    padding: 30px;
    border-radius: 40px;
    min-width: 300px;
  }
  .interestings .card__content .card__title {
    font-size: 3.8rem;
  }
  .interestings .card__content .card__text {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  .interestings {
    padding-top: 115px;
  }
  .interestings .cards {
    margin-top: 80px;
  }
  .interestings .card {
    min-width: 290px;
  }
  .interestings .card__content .card__title {
    font-size: 3.4rem;
  }
}
@media screen and (max-width: 375px) {
  .interestings {
    padding-top: 100px;
  }
  .interestings .cards {
    margin-top: 40px;
  }
  .interestings .card {
    min-width: 290px;
    margin: 0;
    margin-top: 20px;
  }
  .interestings .card__content .card__title {
    font-size: 3rem;
  }
}

.quantity {
  padding-top: 115px;
  width: 100%;
}
.quantity .subtitle {
  margin: 40px 0;
}
.quantity .cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.quantity .card {
  flex: 0 1 32%;
  margin: 0 20px;
  margin-top: 10px;
  padding: 24px;
  border-radius: 24px;
  min-width: 370px;
  max-width: 386px;
}
.quantity .card:first-child {
  margin-left: 0;
  background: #e6e0ff;
}
.quantity .card:last-child {
  margin-right: 0;
  background: #e6e0ff;
}
.quantity .card:nth-child(2) {
  background: #f5f2fd;
}

.quantity .card__content .card__title {
  font-size: 2.2rem;
  font-family: "Unbounded", sans-serif;
  font-style: normal;
  font-weight: 800;
  line-height: 102%;
  text-align: center;
}
.quantity .card__content .card__text {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 2rem;
  font-style: normal;
  font-weight: 600;
  line-height: 102%;
  margin-top: 12px;
  padding-right: 10px;
  text-align: center;
}
.quantity .card__content .second_text {
  color: #a7a7a7;
  text-decoration: line-through #a7a7a7;
  font-size: 1.8rem;
}
.quantity_btn_group {
  margin: 48px auto 0px;
  display: flex;
}
.quantity_btn {
  background-color: #000;
  margin: 0 auto;
  color: #fff;
  padding: 16px 48px;
  border-radius: 50px;
  text-align: center;
  font-size: 2rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  cursor: pointer;
  transition: background-color 0.2slinear;
}

.quantity_btn:hover {
  background-color: #333;
}

@media screen and (max-width: 1120px) {
  .quantity .card {
    flex: 0 1 28%;
    margin: 30px 15px 0 15px;
    padding: 30px;
    border-radius: 24px;
    min-width: 270px;
  }
  .quantity .card__content .card__title {
    font-size: 2.4rem;
  }
  .quantity .card__content .card__text {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  .quantity {
    padding-top: 115px;
  }
  .quantity .card {
    min-width: 100%;
    margin-top: 20px;
  }
  .quantity .card__content .card__title {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 375px) {
  .quantity {
    padding-top: 100px;
  }
  .quantity .cards {
    margin-top: 40px;
  }
  .quantity .card {
    min-width: 290px;
    margin: 0;
    margin-top: 20px;
  }
  .quantity .card__content .card__title {
    font-size: 1.2rem;
  }
}

.always-connected {
  padding-top: 62px;
}

.everything-protected .how-it-works {
  margin-top: 35px;
}
.everything-protected .container {
  padding-bottom: 135px;
}

@media screen and (max-width: 550px) {
  .everything-protected .how-it-works {
    margin-top: 20px;
  }
}
.how-it-works {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 30px 32px;
  background-color: #cdc1ff;
  border-radius: 60px;
}
.how-it-works .video {
  width: 290px;
  height: 170px;
  background-image: url("../assets/video-preview.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 40px;
  position: relative;
  cursor: pointer;
  z-index: 1;
  overflow: hidden;
}
.how-it-works .video::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(41, 37, 36, 0.15);
  opacity: 0;
  transition: opacity 0.15s linear;
}
.how-it-works .video svg {
  z-index: 3;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.how-it-works .video:hover::before {
  opacity: 1;
}
.how-it-works .content {
  margin-left: 50px;
}
.how-it-works .content h4.title,
.how-it-works .content p.text {
  color: #292524;
  font-style: normal;
  line-height: normal;
}
.how-it-works .content h4.title {
  font-weight: 400;
  font-family: "Unbounded", sans-serif;
  font-size: 4.2rem;
}
.how-it-works .content p.text {
  font-weight: 500;
  margin-top: 24px;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 2rem;
}

@media screen and (max-width: 768px) {
  .how-it-works .content {
    margin-left: 30px;
  }
  .how-it-works .content h4.title {
    font-size: 3.6rem;
  }
  .how-it-works .content p.text {
    margin-top: 20px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 550px) {
  .how-it-works {
    flex-direction: column;
    padding-bottom: 55px;
  }
  .how-it-works .video {
    width: 320px;
  }
  .how-it-works .content {
    margin-top: 30px;
    margin-left: 0;
    text-align: center;
  }
  .how-it-works .content h4.title {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 375px) {
  .how-it-works .video {
    width: 100%;
  }
}
.solutions {
  margin-top: 110px;
  margin-bottom: 160px;
}
.solutions .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.solutions h2.title {
  max-width: 605px;
}
.solutions h4.subtitle {
  max-width: 585px;
  margin-top: 40px;
}

.tree {
  margin-top: 120px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.tree .sm-tree_wrap {
  position: relative;
}
.tree svg.sm-tree {
  height: 100%;
  width: 100%;
}
.tree svg#mobile-tree {
  width: 100%;
}
.tree .social-media__icons {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.tree .social-media__icons .social-media__icon {
  position: absolute;
  width: 100px;
  height: 100px;
}
.tree .social-media__icons .social-media__icon a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #cdc1ff;
  border-radius: 20px;
  box-shadow: 0px 0px 0px 0px rgb(131, 105, 238);
  transition: box-shadow 0.15s linear;
}
.tree .social-media__icons .social-media__icon svg path {
  color: #292524;
  fill: currentColor;
  transition: color 0.15s linear;
}
.tree .social-media__icons .social-media__icon:hover a {
  box-shadow: 0px 0px 12px 0px rgb(131, 105, 238);
}
.tree .social-media__icons .social-media__icon:nth-child(1),
.tree .social-media__icons .social-media__icon:nth-child(2),
.tree .social-media__icons .social-media__icon:nth-child(3) {
  left: -50px;
}
.tree .social-media__icons .social-media__icon:nth-child(4),
.tree .social-media__icons .social-media__icon:nth-child(5),
.tree .social-media__icons .social-media__icon:nth-child(6) {
  right: -50px;
}
.tree .social-media__icons .social-media__icon:nth-child(1),
.tree .social-media__icons .social-media__icon:nth-child(4) {
  top: -12%;
}
.tree .social-media__icons .social-media__icon:nth-child(2),
.tree .social-media__icons .social-media__icon:nth-child(5) {
  top: 33%;
}
.tree .social-media__icons .social-media__icon:nth-child(3),
.tree .social-media__icons .social-media__icon:nth-child(6) {
  bottom: -2%;
}
@media screen and (max-width: 1120px) {
  .tree .sm-tree_wrap {
    width: 85%;
  }
  .tree .social-media__icons .social-media__icon {
    width: 80px;
    height: 80px;
  }
  .tree .social-media__icons .social-media__icon svg {
    width: 55%;
    height: 55%;
  }
  .tree .social-media__icons .social-media__icon:nth-child(2) {
    top: 32%;
    left: -50px;
  }
  .tree .social-media__icons .social-media__icon:nth-child(5) {
    top: 32%;
    right: -50px;
  }
}
@media screen and (min-width: 768px) {
  .tree #mobile-tree {
    display: none;
    opacity: 0;
  }
}
@media screen and (max-width: 768px) {
  .tree #mobile-tree {
    display: block;
    opacity: 1;
  }
  .tree #desktop-tree {
    display: none;
    opacity: 0;
  }
  .tree .sm-tree_wrap {
    width: unset;
    height: 800px;
  }
  .tree .social-media__icons .social-media__icon {
    width: 80px;
    height: 80px;
    left: unset;
    right: unset;
  }
  .tree .social-media__icons .social-media__icon svg {
    width: 55%;
    height: 55%;
  }
  .tree .social-media__icons .social-media__icon:nth-child(1),
  .tree .social-media__icons .social-media__icon:nth-child(2),
  .tree .social-media__icons .social-media__icon:nth-child(3) {
    top: 0px;
    bottom: unset;
    left: unset;
  }
  .tree .social-media__icons .social-media__icon:nth-child(4),
  .tree .social-media__icons .social-media__icon:nth-child(5),
  .tree .social-media__icons .social-media__icon:nth-child(6) {
    bottom: 0px;
    top: unset;
  }
  .tree .social-media__icons .social-media__icon:nth-child(1),
  .tree .social-media__icons .social-media__icon:nth-child(4) {
    left: -6%;
  }
  .tree .social-media__icons .social-media__icon:nth-child(2),
  .tree .social-media__icons .social-media__icon:nth-child(5) {
    left: 39%;
  }
  .tree .social-media__icons .social-media__icon:nth-child(3),
  .tree .social-media__icons .social-media__icon:nth-child(6) {
    right: -8%;
  }
}
@media screen and (max-width: 375px) {
  .tree .sm-tree_wrap {
    height: 550px;
  }
  .tree .social-media__icons .social-media__icon {
    width: 60px;
    height: 60px;
  }
  .tree .social-media__icons .social-media__icon:nth-child(1),
  .tree .social-media__icons .social-media__icon:nth-child(2),
  .tree .social-media__icons .social-media__icon:nth-child(3) {
    top: 0px;
    bottom: unset;
  }
  .tree .social-media__icons .social-media__icon:nth-child(4),
  .tree .social-media__icons .social-media__icon:nth-child(5),
  .tree .social-media__icons .social-media__icon:nth-child(6) {
    bottom: 0px;
    top: unset;
  }
}

.on-connect {
  padding-top: 115px;
  padding-bottom: 170px;
}
.on-connect h2.title {
  padding: 0 15px;
}
.on-connect .slider__wrap {
  margin-top: 100px;
}

.market_links {
  display: flex;
}
.market_links .market_link {
  border-radius: 30px;
  overflow: hidden;
}
.market_links .market_link a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 60px;
  color: #000;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 2rem;
  font-weight: 500;
  font-style: normal;
  line-height: normal;
}
.market_links .market_link:nth-child(1) {
  background: #a7c0fe;
  box-shadow: 0px 0px 0px 0px #e6e0ff, 0px 1px 3px 0px rgba(230, 224, 255, 0.98),
    -1px 5px 5px 0px rgba(230, 224, 255, 0.85),
    -2px 11px 7px 0px rgba(230, 224, 255, 0.5),
    -4px 19px 8px 0px rgba(230, 224, 255, 0.15),
    -7px 30px 9px 0px rgba(230, 224, 255, 0.02);
}
.market_links .market_link:nth-child(2) {
  background: #cdc1ff;
  box-shadow: 0px 0px 0px 0px #e6e0ff, 0px 1px 3px 0px rgba(230, 224, 255, 0.98),
    -1px 5px 5px 0px rgba(230, 224, 255, 0.85),
    -2px 11px 7px 0px rgba(230, 224, 255, 0.5),
    -4px 19px 8px 0px rgba(230, 224, 255, 0.15),
    -7px 30px 9px 0px rgba(230, 224, 255, 0.02);
}
.market_links .market_link:nth-child(3) {
  background: #ffe378;
  box-shadow: 0px 0px 0px 0px #e6e0ff, 0px 1px 3px 0px rgba(230, 224, 255, 0.98),
    -1px 5px 5px 0px rgba(230, 224, 255, 0.85),
    -2px 11px 7px 0px rgba(230, 224, 255, 0.5),
    -4px 19px 8px 0px rgba(230, 224, 255, 0.15),
    -7px 30px 9px 0px rgba(230, 224, 255, 0.02);
}

.try-it {
  padding-top: 115px;
  padding-bottom: 145px;
}
.try-it .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.try-it h1.title {
  max-width: 655px;
}
.try-it h4.subtitle {
  margin-top: 30px;
  max-width: 380px;
}
.try-it .market_links {
  margin-top: 50px;
}
.try-it .market_links .market_link {
  margin: 0 12.5px;
}

@media screen and (max-width: 768px) {
  .try-it .market_links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .try-it .market_links .market_link {
    margin-top: 25px;
  }
  .quantity_btn {
    padding: 16px 32px;
  }
  .service .try-it .market_links {
    flex-wrap: nowrap;
  }
  .service .market_links .market_link a {
    width: 108px;
    height: 34px;
    font-size: 12px;
  }
  .service .try-it .market_links .market_link {
    margin: 0 8px;
  }
}

.custombanner {
  margin-top: 120px;
}
.custombanner .csr-lr-section {
  padding: 0;
  display: flex;
  align-items: center;
}
.custombanner .csr-lr-section .cstleft {
  width: 50%;
  padding: 53px;
}
.qr_code .custombanner .csr-lr-section .cstleft {
  padding: 53px;
}
.qr_code .custombanner .csr-lr-section .cstright .image {
  top: -331px;
}

.custombanner .csr-lr-section .cstright {
  width: 50%;
  position: relative;
}
.custombanner .csr-lr-section .cstright .image {
  position: absolute;
  top: -297px;
  max-width: 705px;
}
.custombanner .csr-lr-section .cstleft h3.title {
  font-family: "Unbounded", sans-serif;
  font-size: 4.2rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: center;
}

.custombanner .csr-lr-section .cstleft p.text {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 2rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-top: 30px;
  text-align: center;
}
.custombanner .cst-btn {
  display: flex;
  margin: 0 auto;
  justify-content: center;
}
.custombanner .csr-lr-section .cstleft a.btn {
  display: inline-block;
  margin-top: 40px;
  text-align: center;
}
.custombanner .mob-image {
  display: none;
}

@media (max-width: 1120px) {
  .custombanner .csr-lr-section .cstleft {
    padding: 72px 0 56px;
  }
  .custombanner .csr-lr-section .cstright .image {
    max-width: 620px;
    top: -282px;
    left: -40px;
  }
  .custombanner .csr-lr-section .cstleft h3.title {
    font-family: "Unbounded", sans-serif;
    font-size: 3.2rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: center;
  }

  .custombanner .csr-lr-section .cstleft p.text {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-top: 30px;
    text-align: center;
  }
  .custombanner .csr-lr-section .cstleft {
    padding: 56px;
  }
}

@media (max-width: 768px) {
  .custombanner .csr-lr-section {
    flex-direction: column-reverse;
  }
  .custombanner .csr-lr-section .cstleft {
    width: 100%;
    padding: 40px 20px;
  }
  .custombanner .csr-lr-section .cstright {
    position: inherit;
    width: 100%;
  }
  .custombanner .csr-lr-section .cstleft h3.title {
    font-size: 1.6rem;
    margin-top: 300px;
  }
  .custombanner .csr-lr-section .cstleft p.text {
    font-size: 1.4rem;
    margin-top: 16px;
  }
  .custombanner .csr-lr-section .cstright .image {
    display: none;
  }
  .custombanner .csr-lr-section .cstright .mob-image {
    position: absolute;
    width: 80%;
    display: block;
    top: -40px;
    right: 8px;
  }
}

.custombanner_second {
  margin-top: 20px;
}
.custombanner_second .csr-lr-section {
  padding: 0;
  display: flex;
  align-items: center;
}
.custombanner_second .csr-lr-section .cstleft {
  width: 50%;
  padding: 72px 20px;
}
.custombanner_second .csr-lr-section .cstright {
  width: 50%;
  position: relative;
}
.custombanner_second .csr-lr-section .cstright .image {
  position: absolute;
  top: -339px;
  max-width: 705px;
}
.custombanner_second .csr-lr-section .cstleft h3.title {
  font-family: "Unbounded", sans-serif;
  font-size: 4.2rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: center;
}

.custombanner_second .csr-lr-section .cstleft p.text {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 2rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-top: 30px;
  text-align: center;
}
.custombanner_second .cst-btn {
  display: flex;
  margin: 0 auto;
  justify-content: center;
}
.custombanner_second .csr-lr-section .cstleft a.btn {
  display: inline-block;
  margin-top: 40px;
  text-align: center;
}
.custombanner_second .mob-image {
  display: none;
}

@media (max-width: 1120px) {
  .custombanner_second .csr-lr-section .cstleft {
    padding: 72px 0 60px;
  }
  .custombanner_second .csr-lr-section .cstright .image {
    top: -344px;
    left: -136px;
    max-width: 667px;
  }

  .custombanner_second .csr-lr-section .cstleft h3.title {
    font-size: 3.2rem;
  }

  .custombanner_second .csr-lr-section .cstleft p.text {
    font-size: 1.6rem;
  }

  .custombanner_second .csr-lr-section .cstleft a.btn {
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .custombanner_second {
    margin-top: 30px;
  }

  .custombanner_second .csr-lr-section {
    flex-direction: column-reverse;
  }
  .custombanner_second .csr-lr-section .cstleft {
    width: 100%;
    padding: 40px 20px;
  }
  .custombanner_second .csr-lr-section .cstright {
    position: inherit;
    width: 100%;
  }
  .custombanner_second .csr-lr-section .cstleft h3.title {
    font-size: 1.6rem;
    margin-top: 320px;
  }
  .custombanner_second .csr-lr-section .cstleft p.text {
    font-size: 1.4rem;
    margin-top: 16px;
  }
  .custombanner_second .csr-lr-section .cstright .image {
    display: none;
  }
  .custombanner_second .csr-lr-section .cstright .mob-image {
    position: absolute;
    width: 100%;
    display: block;
    top: -110px;
    right: 0px;
    left: 0;
  }
}

.confidence {
  padding-top: 120px;
  padding-bottom: 210px;
}

.confidence .images {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: repeat(5, 140px);
  grid-gap: 20px;
  margin-top: 60px;
}
.confidence .images .images__item {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.confidence .images .images__item:nth-child(1) {
  grid-column: 1 / span 2;
  grid-row: 1 / span 2;
}
.confidence .images .images__item:nth-child(2) {
  grid-column: 3 / span 3;
  grid-row: 1 / span 2;
}
.confidence .images .images__item:nth-child(3) {
  grid-column: 6 / span 3;
  grid-row: 1 / span 3;
}
.confidence .images .images__item:nth-child(4) {
  grid-column: 1 / span 3;
  grid-row: 3 / span 3;
}
.confidence .images .images__item:nth-child(5) {
  grid-column: 4 / span 2;
  grid-row: 3 / span 3;
}
.confidence .images .images__item:nth-child(6) {
  grid-column: 6 / span 3;
  grid-row: 4 / span 2;
}

@media screen and (max-width: 768px) {
  .confidence .images {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(11, 120px);
  }
  .confidence .images__item {
    grid-column: span 2 !important;
  }
  .confidence .images__item:nth-child(1) {
    grid-row: span 2;
  }
  .confidence .images__item:nth-child(2) {
    grid-row: span 2;
  }
  .confidence .images__item:nth-child(3) {
    grid-row: 8 / span 4 !important;
  }
  .confidence .images__item:nth-child(5) {
    grid-row: 8 / span 4 !important;
  }
  .confidence .images__item:nth-child(4) {
    grid-column: span 4 !important;
    grid-row: 3 / span 3 !important;
  }
  .confidence .images__item:nth-child(6) {
    grid-column: span 4 !important;
    grid-row: 6 / span 2 !important;
  }
}
@media screen and (max-width: 570px) {
  .confidence {
    padding-bottom: 20px;
  }
  .confidence .images {
    grid-gap: 10px;
    grid-template-columns: 1fr !important;
    grid-template-rows: repeat(18, 100px);
  }
  .confidence .images__item {
    grid-column: span 1 !important;
  }
  .confidence .images__item:nth-child(1) {
    grid-row: 1 / span 2 !important;
  }
  .confidence .images__item:nth-child(2) {
    grid-row: 3 / span 2 !important;
  }
  .confidence .images__item:nth-child(3) {
    grid-row: 5 / span 4 !important;
  }
  .confidence .images__item:nth-child(4) {
    grid-column: span 1 !important;
    grid-row: 9 / span 3 !important;
  }
  .confidence .images__item:nth-child(5) {
    grid-row: 12 / span 4 !important;
  }
  .confidence .images__item:nth-child(6) {
    grid-column: span 1 !important;
    grid-row: 16 / span 2 !important;
  }
}
.download_btn {
  display: flex;
  align-items: center;
  gap: 20px;
}
.download-btn {
  width: 218px;
  min-width: 218px;
  height: 59px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 59px;
}

.download-btn.ios {
  width: 218px;
  min-width: 218px;
  background-image: url("../assets/ru_app_store.svg");
}
.download-btn.google_play {
  width: 218px;
  min-width: 218px;
  background-image: url("../assets/google_play.svg");
}
.download-btn.ru_store {
  width: 218px;
  min-width: 218px;
  background-image: url("../assets/ru_store.svg");
}
.download-btn-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}
.download {
  padding: 155px 0;
}
.download .container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: center;
}
.download .btn {
  padding: 60px 160px;
  border-radius: 158px;
  background: #cdc1ff;
  box-shadow: 0px 0px 0px 0px #e6e0ff,
    -4px 4px 12px 0px rgba(230, 224, 255, 0.98),
    -14px 16px 22px 0px rgba(230, 224, 255, 0.85),
    -32px 37px 29px 0px rgba(230, 224, 255, 0.5),
    -56px 66px 35px 0px rgba(230, 224, 255, 0.15),
    -88px 103px 38px 0px rgba(230, 224, 255, 0.02);
  color: #292524;
  text-align: center;
  font-family: "Unbounded", sans-serif;
  font-size: 5.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media screen and (max-width: 768px) {
  .download .btn {
    padding: 60px 100px;
    font-size: 4.6rem;
  }
}
@media screen and (max-width: 500px) {
  .download .btn {
    padding: 40px 80px;
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 375px) {
  .download .btn {
    padding: 25px 50px;
    font-size: 2.8rem;
  }
}
.feedback {
  padding: 100px 0 60px 0;
}
.feedback .form-wrap {
  display: flex;
  margin-top: 70px;
}
.feedback form.form {
  flex: 0 0 70%;
  display: flex;
  flex-direction: column;
}
.feedback form.form input,
.feedback form.form textarea {
  margin-top: 20px;
}
.feedback form.form textarea {
  resize: none;
  overflow-y: clip;
}
.feedback form.form .row {
  margin-top: 40px;
  max-width: 800px;
  display: flex;
  flex-direction: column;
}
.feedback form.form .btn {
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
}
.feedback .imgs {
  margin-left: 5%;
  flex: 0 0 25%;
  display: flex;
  flex-direction: column;
}
.feedback .imgs img {
  width: 240px;
  filter: drop-shadow(0px 0px 0px #535353)
    drop-shadow(-4px 4px 12px rgba(83, 83, 83, 0.98))
    drop-shadow(-14px 16px 22px rgba(69, 69, 69, 0.85))
    drop-shadow(-32px 37px 29px rgba(57, 57, 57, 0.5))
    drop-shadow(-56px 66px 35px rgba(57, 57, 57, 0.15))
    drop-shadow(-88px 103px 38px rgba(57, 57, 57, 0.02));
}
.feedback .imgs img:first-child {
  margin-top: 50px;
  transform: rotate(52deg);
}
.feedback .imgs img:last-child {
  margin-left: auto;
  margin-top: 80px;
  transform: rotate(68deg);
}
.feedback .social-links {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 100px;
  column-gap: 100px;
  row-gap: 25px;
  align-items: center;
  margin-top: 100px;
}
.feedback .social-links .social-links__item a {
  display: flex;
  align-items: center;
}
.feedback .social-links .social-links__item .text {
  margin-left: 20px;
  color: #fff;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 2rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.feedback .social-links .social-links__item .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #cdc1ff;
  border-radius: 100%;
}
.feedback .social-links .social-links__item .icon svg {
  width: 30px;
}

@media screen and (max-width: 1120px) {
  .feedback form.form {
    flex-basis: 80%;
  }
  .feedback .imgs {
    margin-left: 5%;
    flex: 0 0 17%;
  }
  .feedback .imgs img {
    width: 200px;
  }
}

@media screen and (max-width: 768px) {
  .feedback form.form {
    flex-basis: 100%;
  }
  .feedback .imgs {
    display: none;
  }
  .download-btn.google_play {
    width: 100px;
    min-width: 100px;
  }
  .download-btn.ios {
    width: 100px;
    min-width: 100px;
  }
  .download-btn.ru_store {
    width: 100px;
    min-width: 100px;
  }
}
form.form .check-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.form-wrap form.form .check-input {
  margin-top: 0;
}
form.form .check-text {
  font-size: 1.5rem;
  user-select: none;
  -webkit-user-select: none;
}
form.form label,
form.form input,
form.form textarea {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
form.form label {
  color: #fff;
}
form.form input,
form.form textarea {
  padding: 25px 30px;
  border-radius: 27px;
  border: 1.3px solid #a7a7a7;
  background: #fff;
}
form.form input.uncorrect,
form.form textarea.uncorrect {
  border-color: #dc3545;
  border-width: 2px;
}
form.form input.uncorrect::-moz-placeholder,
form.form textarea.uncorrect::-moz-placeholder {
  color: #dc3545 !important;
}
form.form input.uncorrect::placeholder,
form.form textarea.uncorrect::placeholder {
  color: #dc3545 !important;
}
form.form input::-moz-placeholder,
form.form textarea::-moz-placeholder {
  color: #a7a7a7;
}
form.form input::placeholder,
form.form textarea::placeholder {
  color: #a7a7a7;
}
form.form input {
  color: #202020;
}
form.form .form_answer {
  color: #fff;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
/*# sourceMappingURL=main.css.map */

@media (max-width: 400px) {
  .download-btn.google_play {
    width: 80px;
    min-width: 80px;
  }
  .download-btn.ios {
    width: 80px;
    min-width: 80px;
  }
  .download-btn.ru_store {
    width: 80px;
    min-width: 80px;
  }
}

/* Servivce Page */
.service main.main,
footer.footer {
  overflow: hidden;
}
.service header.header .navigate__list .navigate_list_item:last-child {
  max-width: 108px;
  min-width: 94px;
}

.service .preview .container {
  flex-direction: row;
}

.preview__box {
  max-width: 613px;
}
.service_btn_group {
  width: calc((100% - 613px) / 2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service_btn {
  border-radius: 32px;
  text-transform: uppercase;
  display: inline-block;
  padding: 13px 22px;
  font-family: "Unbounded";
  font-weight: 400;
  font-size: 24px;
  line-height: 29.76px;
  text-align: center;
  color: #4d4d4d;
  position: absolute;
  transition: all ease-in-out 0.2s;
}

.service_btn_1 {
  background-color: #ede9ff;
  border: 3px solid #cdc1ff;
  top: 40px;
  left: 150px;
}

.service_btn_1:hover {
  box-shadow: 0px 0px 30px 0px #cdc1ff;
}

.service_btn_2 {
  background-color: #fff2dd;
  border: 3px solid #fcbb6e;
  top: 55%;
  left: -48px;
}
.service_btn_2:hover {
  box-shadow: 0px 0px 30px 0px #fcbb6e;
}
.service_btn_3 {
  background: #fff2c0;
  border: 3px solid #ffdc58;
  bottom: -88px;
  left: 112px;
}
.service_btn_3:hover {
  box-shadow: 0px 0px 30px 0px #ffdc58;
}
.service_btn_4 {
  background: #e4f9e4;
  border: 3px solid #7ae582;
  top: -40px;
  right: 140px;
}
.service_btn_4:hover {
  box-shadow: 0px 0px 30px 0px #63ff6f;
}
.service_btn_5 {
  background: #d7f2ff;
  border: 3px solid #7fcff5;
  top: 48%;
  right: 0px;
}
.service_btn_5:hover {
  box-shadow: 0px 0px 30px 0px #7fcff5;
}
.service_btn_6 {
  background: #e2e2e2;
  border: 3px solid #bcbcbc;
  bottom: -40px;
  right: 112px;
}
.service_btn_6:hover {
  box-shadow: 0px 0px 30px 0px #b9b9b9;
}

.service .preview__text {
  font-family: "Unbounded", sans-serif;
  max-width: 100%;
  font-size: 86px;
}
.service_banner_image {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
}
.service_banner_image img {
  width: 100%;
  max-height: 840px;
}
.service .preview .container::before,
.service .preview .container::after {
  display: none;
}

.service h2.title {
  font-size: 40px;
  text-align: left;
  max-width: 740px;
}

.service .interestings .cards {
  margin-top: 16px;
}

.service .interestings .card:first-child,
.service .interestings .card:nth-child(2),
.service .interestings .card:last-child {
  padding: 0;
}

.service .interestings .card__content {
  margin: 0;
  position: relative;
}

.service .interestings .card__content img {
  width: 100%;
}

.service .interestings .card__text {
  position: absolute;
  bottom: -50px;
  padding: 12px;
  background: #cdc1ff;
  border-radius: 20px;
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 0%;
  text-align: center;
}

.service .interestings .card:nth-child(2) .card__text {
  background-color: #ffe378;
}

.service .interestings .card:last-child .card__text {
  background-color: #7ae582;
}

.qr_code .interestings .card__text {
  background: hsla(252, 100%, 88%, 1);
}

.qr_code .interestings .card:nth-child(2) .card__text {
  background: hsla(48, 100%, 74%, 1);
}

.qr_code .interestings .card:last-child .card__text {
  background: hsla(199, 81%, 79%, 1);
}

.qr_code .new-qrs {
  margin: 120px 0;
  position: relative;
}
.service .new-qrs {
  margin: 120px 0;
  position: relative;
}
.new_book {
  margin-top: 40px;
  display: flex;
}
.new_adv {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 36px;
  z-index: 99;
  width: 100%;
}
.qr_code .new_adv_item:nth-child(1) {
  background: hsla(199, 81%, 79%, 1);
}
.qr_code .new_adv_item:nth-child(2) {
  background: hsla(252, 100%, 88%, 1);
}
.qr_code .new_adv_item:nth-child(3) {
  background: hsla(199, 81%, 79%, 1);
}
.qr_code .new_adv_item:nth-child(4) {
  background: hsla(252, 100%, 88%, 1);
}
.qr_code .custombanner.black_section {
  margin-top: 160px;
}
.new_adv_item:nth-child(1) {
  padding: 16px 20px;
  background-color: #7ae582;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top-right-radius: 24px;
  border-bottom-right-radius: 24px;
  border-bottom-left-radius: 24px;
  width: 320px;
  position: absolute;
  right: 64px;
  top: -40px;
}
.new_adv_item:nth-child(2) {
  padding: 16px 20px;
  background-color: #cdc1ff;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  border-bottom-left-radius: 24px;
  width: 320px;
  position: absolute;
  right: 0px;
  top: 150px;
}
.service_btn_group {
  display: block;
}
.new_adv_item:nth-child(3) {
  padding: 16px 20px;
  background-color: #7ae582;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top-right-radius: 24px;
  border-bottom-right-radius: 24px;
  border-bottom-left-radius: 24px;
  width: 320px;
  position: absolute;
  right: 64px;
  top: 340px;
}
.new_adv_item:nth-child(4) {
  padding: 16px 20px;
  background-color: #cdc1ff;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  border-bottom-left-radius: 24px;
  width: 320px;
  position: absolute;
  right: 0px;
  top: 530px;
}
.new_adv h3 {
  font-family: "Unbounded";
  font-weight: 400;
  font-size: 36px;
  line-height: 44.64px;
  letter-spacing: 0%;
  color: #fff;
}
.new_adv p {
  font-family: "IBM Plex Sans" sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 31.2px;
  letter-spacing: 0%;
}
.service .new_back_image {
  position: absolute;
  top: 20%;
  width: 100%;
}
.service .new_back_image img {
  width: 100%;
}

.service .service_bg .cstright .image {
  top: -370px;
}
.service .service_bg .cstleft {
  padding: 135px 0 155px 0;
}
.service .try-it {
  position: relative;
  padding: 72px 0;
}
.service .try-it .title {
  text-align: center;
}
.try_it_image img {
  position: absolute;
  top: -60px;
  width: 100%;
}
.qr_code .how-it-works .video {
  background-image: url(../assets/qr_5.png);
  height: 210px;
}
.qr_code .new_back_image img {
  top: 20%;
}

.qr_code .how-it-works {
  margin-top: 96px;
}
.qr_code .content {
  width: 50%;
}
.qr_code .video {
  width: 50%;
}
@media screen and (max-width: 1120px) {
  .service .interestings .card {
    min-width: 280px;
  }
  .new_book_left img {
    width: 640px;
  }
  .service .interestings .card__text {
    font-size: 18px;
    line-height: 24px;
  }
  .new_adv h3 {
    font-size: 20px;
    line-height: 20px;
  }
  .new_adv p {
    font-size: 16px;
    line-height: 24px;
  }
  .try_it_image img {
    width: auto;
    z-index: 0;
  }
  .service h2.title {
    font-size: 32px;
  }
  .new_adv_item:nth-child(1) {
    gap: 8px;
    width: 240px;
    right: 120px;
    top: -40px;
  }
  .new_adv_item:nth-child(2) {
    gap: 8px;
    width: 240px;
    right: 80px;
    top: 90px;
  }
  .new_adv_item:nth-child(3) {
    gap: 8px;
    width: 240px;
    right: 120px;
    top: 220px;
  }
  .new_adv_item:nth-child(4) {
    gap: 8px;
    width: 240px;
    right: 80px;
    top: 350px;
  }
  .service .service_bg .cstright .image {
    max-width: 100%;
    top: -320px;
    left: 32px;
  }
  .service .try-it {
    padding: 80px 0;
  }
  .service .preview__text {
    font-family: "Unbounded", sans-serif;
    max-width: 100%;
    font-size: 64px;
  }
  .service_btn {
    font-size: 16px;
    padding: 6px 10px;
  }
  .service_btn_2 {
    left: 16px;
  }
  .service_btn_5 {
    right: 16px;
  }
}
@media (max-width: 767px) {
  .service .site-icon.header__item {
    padding: 4px 16px;
  }
  .qr_code .custombanner .csr-lr-section .cstleft {
    padding: 0;
  }
  .site-icon.header__item svg {
    width: 32px;
  }
  .try_it_image img {
    width: 100%;
    top: 40%;
  }
  .service .preview__text {
    font-size: 32px;
    font-weight: 700;
  }
  .service h2.title {
    font-size: 20px;
    line-height: 24px;
  }
  .service header.header {
    padding: 16px 0;
  }
  .service .preview {
    padding-bottom: 48px;
    padding-top: 40px;
  }
  .preview__box {
    max-width: 240px;
    margin: 0 auto;
  }
  .service .interestings .cards {
    display: block;
  }
  .service .interestings .card {
    margin-bottom: 80px;
  }
  .new_adv_item:nth-child(1),
  .new_adv_item:nth-child(3) {
    right: 80px;
  }
  .new_adv_item:nth-child(2),
  .new_adv_item:nth-child(4) {
    right: 40px;
  }
  .new_book {
    display: block;
  }
  .service .interestings {
    padding-bottom: 0;
    padding-top: 0px;
  }
  .service .new_adv {
    position: absolute;
  }
  .new_book_left img {
    width: 440px;
  }
  .service .new-qrs {
    min-height: 720px;
  }
  .service #anchor__about_app .service_bg .cstright .image {
    display: block;
    left: 0;
    top: 0;
  }

  .service #anchor__about_app .csr-lr-section .cstleft h3.title {
    margin-top: 0;
  }
  .service #anchor__about_app .service_bg .cstleft {
    padding: 56px 0;
  }
  .service #anchor__about_app {
    min-height: 750px;
    margin-top: 160px;
  }
  .service #anchor__about_app .csr-lr-section .cstright {
    position: absolute;
  }
  .service_btn_group {
    display: none;
  }
  .mob_service_btns {
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 40px;
  }
  .mob_service_btns .service_btn {
    position: static;
  }
  .service .preview .container {
    display: block;
  }
  .service .mob_service_btns .service_btn {
    padding: 3px 6px;
    font-size: 10px;
    line-height: 16px;
  }
  .qr_code .content,
  .video {
    width: 100%;
  }
  .how-it-works {
    padding: 16px;
  }
  .qr_code .how-it-works {
    margin-top: 500px;
  }
  .qr_code .video {
    width: 100%;
    margin-top: 24px;
  }
  .qr_code .content,
  .video {
    text-align: left;
  }
  .qr_code .new_back_image img {
    top: 10%;
  }
  .qr_code .custombanner.black_section {
    min-height: 500px;
  }
}

@media (max-width: 375px) {
  .new_adv_item:nth-child(1),
  .new_adv_item:nth-child(2),
  .new_adv_item:nth-child(3),
  .new_adv_item:nth-child(4) {
    width: 240px !important;
    padding: 16px !important;
  }
  .service_banner_image {
    top: 96px;
  }
}

@media (max-width: 425px) {
  .new_adv_item:nth-child(1),
  .new_adv_item:nth-child(2),
  .new_adv_item:nth-child(3),
  .new_adv_item:nth-child(4) {
    width: 330px;
    padding: 16px;
  }
}

@media (min-width: 375px) and (max-width: 425px) {
  .custombanner_second .csr-lr-section .cstleft.cstclass h3.title{
    margin-top: 400px;
  }
}


/* Defender css*/

.defender{
  display: flex;
}
.defender-left{
  width: 50%;
  margin-top: 64px;
}
.defender .title{
  text-align: left;
  font-size: 42px;
  line-height: 52px;
  font-family: "Unbounded", sans-serif;

}

.defender .subtitle{
  text-align: left;
  margin-top: 32px;
  font-size: 20px;
  line-height: 26px;
  font-weight: 400;
  font-family: "IBM Plex Sans";
  margin-right: 40px;
}
.defender-right{
  width: 50%;
}
.defendericon_box{
  background-color: #F5F2FD;
  padding-bottom: 72px;
  position: relative;
}

.defender_box{
  display: flex;
  gap: 16px;
  padding: 72px 0;

}

.defender_box
.defender-left,
.defender_box
.defender-right{
  width: 50%;
  background-color: #B7FFBC;
  border-radius: 40px 40px 40px 0;
  display: flex;
  align-items: center;
  padding: 0 36px;
  height: 220px;
  margin: 0;
  position: relative;

}
.img-icon{
  position: absolute;
  bottom: 0;
  right: 0;
}

.defendericon{
  display: flex;
  gap:16px
}
.defendleft,
.defendright{
  width: 35%;
  display: flex;
  flex-direction: column;
  gap: 44px;

}

.defendleft .iconbox-item{
  margin-top: 16px;
}
.defendleftbox{
  width: 15%;
}
.defendleftbox img{
  padding: 40px 0;
}
.iconbox-item{
  display: flex;
  gap: 20px;
  align-items: center;
  margin-left: 8px;
}
.iconcontent h4{
  font-size: 22px;
  line-height: 24px;
  margin: 0;
  font-family: "IBM Plex Sans";
  font-weight: 600;
}
.iconcontent p{
  font-size: 16px;
  line-height: 22px;
  margin: 0;
  font-family: "IBM Plex Sans";
}

.defendtitle{
  font-size: 26px;
  line-height: 36px;
  font-family: "Unbounded", sans-serif;

}

.defendericon_box .container {
  position: relative;
  z-index: 3;
}
.defendericon_box .blocks {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.defendericon_box .blocks div {
  width: 31px;
  height: 31px;
  position: absolute;
  top: 0;
  left: 0;
}
.defendericon_box .blocks .r {
  left: unset;
  right: 0;
}
.defendericon_box .blocks .b {
  top: unset;
  bottom: 0;
}
.defendericon_box .blocks .c-w {
  background-color: #fff;
}
.defendericon_box .blocks .c-b {
  background-color: #F5F2FD;
}

.bottom_content .blocks {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.bottom_content .blocks div {
  width: 31px;
  height: 31px;
  position: absolute;
  top: 0;
  left: 0;
}
.bottom_content .blocks .r {
  left: unset;
  right: 0;
}
.bottom_content .blocks .b {
  top: unset;
  bottom: 0;
}
.bottom_content .blocks .c-w {
  background-color: #fff;
}
.bottom_content .blocks .c-b {
  background-color: #fff;
}
.defender-section{
  position: relative;
}
.defender-section .blocks {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.defender-section .blocks div {
  width: 31px;
  height: 31px;
  position: absolute;
  top: 0;
  left: 0;
}
.defender-section .blocks .r {
  left: unset;
  right: 0;
}
.defender-section .blocks .b {
  top: unset;
  bottom: 0;
}
.defender-section .blocks .c-w {
  background-color: #000;
}

 .iconbox-item{
    position: inherit;
  }
  .vector_icon{
    display: none;
  }

.bottom_content{
  padding: 80px 0 96px 0;
  background-color: #CDC1FF;
  margin-top: 160px;
  position: relative;
}

.bottom_content_box{
  width: 60%;
  margin: 0 auto;
}
.bottom_content_item{
 text-align: center;

}

.bottom_content_item h2{
  text-align: center;
  font-family: "Unbounded", sans-serif;
  font-size: 40px;
  line-height: 46px;
}

.bottom_content_item p{
  text-align: center;
  font-family: "Unbounded", sans-serif;
  font-size: 20px;
  line-height: 30px;
  margin: 8px 0 56px 0;
}

.bottom_content_item .cstbtn {
  padding: 24px 40px;
  border-radius: 64px;
  background: #211F1F;
  color: #fff;
  text-align: center;
  font-family: "Unbounded", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;

  }
@media screen and (max-width: 500px) {
  .defendericon_box .blocks .n500 {
    display: none;
    opacity: 0;
  }
}
.defender-image .img-fluid{
  width: 100%;
}

@media (min-width:769px) and (max-width:1170px){
  .defender,
  .defender_box,
  .defendericon{
    flex-direction: column;
    gap: 40px;

  }
  .defender-left,
  .defender-right,
  .defendleft,
  .defendright,
  .bottom_content_box{
    width: 100%!important;
  }
  .defendleftbox{
    display: none;
  }
}

@media  (max-width:768px){
  .defender,
  .defender_box,
  .defendericon{
    flex-direction: column;
    gap: 40px;

  }
  .defender-left,
  .defender-right,
  .defendleft,
  .defendright,
  .bottom_content_box{
    width: 100%!important;
  }
  .defendleftbox{
    display: none;
  }
  .defender .subtitle{
    margin: 24px 0 0 0;
  }
  .defendtitle{
    font-size: 24px;
    line-height: 34px;
  }
  .defender_box .defender-left, .defender_box .defender-right{
    height: auto;
    padding: 40px 24px 96px 24px;
  }
  .defender_box .defender-right{
    border-radius: 40px 40px 0 40px;
  }
  .defender_box .defender-right .img-icon{
  left: 0;
  }
  .iconbox-item{
  align-items: flex-start;
  flex-direction: column;
  }
  .iconcontent p{
    font-size: 20px;
    line-height: 26px;
  }
  .bottom_content_item h2{
    font-size: 32px;
  }
  .bottom_content_item .cstbtn{
    font-size: 20px;
    line-height: 26px;
    display: flex;
  }
  .iconbox-item{
    margin-left: 24px;
  }
  .iconbox-item{
    position: relative;
  }
  .vector_icon{
    position: absolute;
    display: block;
    left: -108px;
    top: 24px;
  }
  .bottom_content{
    margin-top: 80px;
  }

}
