@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
}

body, h1, h2, h3, h4, h5, p, li, figure, figcaption, blockquote, dl, dd {
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  font: inherit;
}

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

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  position: relative;
  font-family: "Montserrat", sans-serif;
  color: #0d0d0d;
  line-height: 30px;
  min-height: 100vh;
  overflow-x: hidden;
  background-color: #fff;
}

input {
  position: relative;
  width: 100%;
  max-width: 300px;
  height: 70px;
  padding-left: 20px;
  font-size: 17px;
  font-weight: 500;
  background-color: #DFECFF;
  border: 1px solid #0056D2;
  border-radius: 100px;
  outline: none;
  z-index: 3;
}
input::placeholder {
  font-size: 17px;
  font-weight: 500;
  color: #003583;
  opacity: 1;
  transition: opacity 0.3s ease;
}
input:focus::placeholder {
  opacity: 0.2;
}

.link {
  position: relative;
  color: #0056D2;
  text-decoration: underline;
  cursor: pointer;
  transition: 0.2s;
  transition-timing-function: linear;
}
.link--dotted {
  text-decoration: none;
}
.link--dotted::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 1px;
  background-image: url(../img/link-underline.svg);
  transition: 0.2s;
  transition-timing-function: ease-out;
}
.link--dotted:hover::before {
  background-image: none;
}

.container {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 1026px) {
  .container {
    max-width: 780px;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.c-primary {
  color: #D92429;
}

.c-second {
  color: #0056D2;
}

.c-base {
  color: #0d0d0d;
}

.f-200 {
  font-weight: 200;
}

.f-300 {
  font-weight: 300;
}

.f-400 {
  font-weight: 400;
}

.f-500 {
  font-weight: 500;
}

.f-600 {
  font-weight: 600;
}

.f-700 {
  font-weight: 700;
}

.active {
  display: block;
}

.off {
  display: none;
}

.main-button {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 360px;
  padding: 25px 20px;
  font-family: "Montserrat", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #2a2100;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 20px;
  text-shadow: 0px 1px 0px rgba(255, 255, 255, 0.8);
  background: linear-gradient(180deg, #FED500 0%, #FEB700 100%);
  border: none;
  border-radius: 100px;
  outline: none;
  transition: 0.3s;
  transition-timing-function: ease-out;
  cursor: pointer;
}
.main-button--mini {
  max-width: 260px;
  padding-top: 14px;
  padding-bottom: 16px;
}
.main-button--on-black {
  box-shadow: inset 0px 1px 0px 0px rgb(255, 255, 255);
}
.main-button::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border: #eeb200 solid 20px;
  background: linear-gradient(180deg, #FED500 0%, #FEB700 100%);
  border-radius: 250px;
  -webkit-animation-duration: 0.9s;
  animation-duration: 0.9s;
  z-index: -2;
}
.main-button:hover::before {
  -webkit-animation-name: hvr-ripple-out-main;
  animation-name: hvr-ripple-out-main;
}

@keyframes hvr-ripple-out-main {
  100% {
    top: -52px;
    right: -52px;
    bottom: -52px;
    left: -52px;
    opacity: 0;
  }
}
.bg-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -1998px;
  right: -2000px;
  width: 1172px;
  margin: auto;
  z-index: 1;
}
.bg-line--white {
  left: -1999px;
  width: 1171px;
  z-index: -5;
}
.bg-line__image {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 3;
  height: auto;
  height: 100%;
}

.block-header__element {
  position: relative;
  font-size: 20px;
  color: #0056D2;
}
.block-header__element::before {
  content: "";
  position: absolute;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  top: -20px;
  left: -25px;
  width: 38px;
  height: 65px;
  background-image: url(../img/block-header-image.svg);
  background-size: contain;
}
.block-header__title {
  margin-top: 3px;
  font-size: 50px;
  font-weight: 400;
  line-height: 50px;
}
.block-header__desc {
  max-width: 915px;
  margin-top: 19px;
  font-size: 30px;
  line-height: 37px;
}

.green-list__item {
  position: relative;
  max-width: 300px;
  margin-bottom: 6px;
  padding-left: 23px;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
}
.green-list__item::before {
  content: "";
  position: absolute;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  top: 1px;
  left: 0px;
  width: 17px;
  height: 17px;
  background-image: url(../img/green-icon.svg);
}

.pop-up {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  display: none;
  flex-wrap: wrap;
  align-items: flex-start;
  padding-left: 20px;
  padding-right: 20px;
  background-color: rgba(13, 13, 13, 0.9);
  z-index: 10;
}
.pop-up__wrap {
  position: relative;
  align-self: center;
  width: 100%;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 25px;
  padding-bottom: 20px;
  padding-left: 15px;
  padding-right: 15px;
  text-align: center;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 10px 16.6px 3.4px rgba(0, 48, 95, 0.12);
}
@media (max-width: 479px) {
  .pop-up__wrap {
    max-width: 340px;
    padding-bottom: 20px;
    padding-top: 17px;
  }
}
.pop-up__wrap::before, .pop-up__wrap::after {
  content: "";
  position: absolute;
  top: -50px;
  bottom: -50px;
  left: -50px;
  right: -50px;
  border: 1px solid #0056D2;
  border-radius: 10px;
  z-index: -1;
  opacity: 0.7;
}
.pop-up__wrap::after {
  top: -100px;
  bottom: -100px;
  left: -100px;
  right: -100px;
  opacity: 0.4;
}
.pop-up__form {
  position: relative;
  z-index: 1;
}
.pop-up__title {
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
  font-size: 20px;
  font-weight: 700;
  text-align: left;
  line-height: 25px;
}
.pop-up__title-desc {
  display: block;
  max-width: 300px;
  margin: 7px auto 13px;
  font-size: 16px;
  line-height: 20px;
  text-align: left;
}
.pop-up__input {
  width: 100%;
  max-width: 300px;
  margin-bottom: 10px;
  padding-left: 15px;
  box-sizing: border-box;
}
.pop-up__button {
  position: relative;
  max-width: 300px;
}
.pop-up__button-desc {
  display: block;
  max-width: 300px;
  margin: 12px auto 0;
  font-size: 13px;
  text-align: right;
  line-height: 17px;
  color: #999;
}
.pop-up__close {
  position: absolute;
  top: -38px;
  right: -1px;
  padding: 0;
  font-size: 16px;
  color: #fff;
  letter-spacing: 0.03em;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
}
.pop-up__close::before {
  content: "";
  position: absolute;
  top: 7px;
  left: -21px;
  width: 14px;
  height: 14px;
  background-image: url(../img/pop-up-close.svg);
  background-repeat: no-repeat;
  background-position: center center;
  opacity: 0.5;
  transition: 0.3s;
  transition-timing-function: ease-out;
}
.pop-up__close:hover::before {
  opacity: 1;
  transform: rotate(90deg);
}

.final {
  position: relative;
  min-height: 100vh;
}
.final__block-title {
  position: absolute;
  top: -1039px;
  bottom: -1000px;
  left: -1000px;
  right: -1000px;
  width: 100%;
  max-width: 600px;
  max-height: 150px;
  margin: auto;
  padding: 0 20px;
  text-align: center;
}
@media (max-height: 560px) {
  .final__block-title {
    position: static;
    max-height: 1000px;
    margin-top: 30px;
    padding: 0;
    padding-bottom: 60px;
  }
}

.politics {
  max-width: 860px;
  margin-top: 50px;
  margin-bottom: 80px;
}
.politics__title {
  font-size: 30px;
  line-height: 35px;
  margin-bottom: 20px;
}
.politics__paragraph {
  margin-bottom: 20px;
  line-height: 27px;
}
.politics__paragraph--list {
  margin-bottom: 0;
}
.politics__list {
  margin-bottom: 20px;
}
.politics__item {
  margin-bottom: 10px;
  padding-left: 30px;
  list-style: decimal inside;
}

.header {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 1026px) {
  .header {
    flex-wrap: wrap;
  }
}
.header {
  padding-top: 1px;
  z-index: 2;
}
.header__logo-wrap {
  margin-top: 20px;
}
@media (max-width: 479px) {
  .header__logo-wrap {
    order: 1;
  }
}
.header__desc {
  position: absolute;
  left: -1000px;
  right: -1000px;
  display: inline-block;
  max-width: 270px;
  margin: auto;
  margin-top: 38px;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  color: #D92429;
  text-transform: uppercase;
}
@media (max-width: 1026px) {
  .header__desc {
    top: 73px;
  }
}
@media (max-width: 770px) {
  .header__desc {
    top: 96px;
    left: 45px;
    right: auto;
  }
}
@media (max-width: 479px) {
  .header__desc {
    position: relative;
    order: 2;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
    margin-top: 75px;
    margin-left: 24px;
  }
}
.header__desc::before {
  content: "";
  position: absolute;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  top: -5px;
  left: -500px;
  right: -500px;
  width: 290px;
  height: 40px;
  margin: auto;
  background-image: url(../img/header-desc.svg);
}
.header__desc--white {
  color: #fff;
}
.header__phone-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 1026px) {
  .header__phone-wrap {
    flex-wrap: wrap;
  }
}
.header__phone-wrap {
  margin-top: 39px;
  font-weight: 700;
}
@media (max-width: 479px) {
  .header__phone-wrap {
    margin-top: 10px;
    margin-right: 50px;
    order: 0;
  }
}
.header__phone {
  margin-top: 3px;
  margin-left: 6px;
  font-size: 17px;
  line-height: 20px;
  letter-spacing: 0.01em;
}
.header__social-button--first {
  margin-right: 8px;
}

.offer {
  position: relative;
  padding-bottom: 100px;
  color: #fff;
  text-align: center;
  background: linear-gradient(243.08deg, #1F1F20 16.32%, #0E0E10 60.69%);
}
@media (max-width: 770px) {
  .offer {
    text-align: left;
  }
}
.offer::before {
  content: "";
  position: absolute;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  top: 0;
  left: -2000px;
  right: -2000px;
  width: 1340px;
  height: 177px;
  margin: auto;
  background-image: url(../img/top-light.png);
  z-index: 0;
}
.offer::after {
  content: "";
  position: absolute;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  bottom: 0;
  left: -2000px;
  right: -2000px;
  width: 1480px;
  height: 248px;
  margin: auto;
  background-image: url(../img/bottom-light.png);
  z-index: 0;
}
.offer__container {
  position: relative;
  z-index: 2;
}
.offer__title {
  position: relative;
  margin-top: 51px;
  font-size: 86px;
  font-weight: 200;
  text-transform: uppercase;
  line-height: 90px;
  letter-spacing: 0.02em;
}
@media (max-width: 1026px) {
  .offer__title {
    margin-top: 66px;
  }
}
@media (max-width: 770px) {
  .offer__title {
    margin-top: 89px;
    font-size: 63px;
    line-height: 70px;
  }
}
@media (max-width: 570px) {
  .offer__title {
    font-size: 53px;
    line-height: 60px;
  }
}
@media (max-width: 479px) {
  .offer__title {
    margin-top: 20px;
    font-size: 39px;
    font-weight: 700;
    line-height: 50px;
  }
}
@media (max-width: 359px) {
  .offer__title {
    font-size: 33px;
    line-height: 43px;
  }
}
.offer__desc {
  display: block;
  max-width: 820px;
  margin-top: 11px;
  margin-left: auto;
  margin-right: auto;
  font-size: 32px;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 45px;
  letter-spacing: 0.02em;
}
@media (max-width: 770px) {
  .offer__desc {
    max-width: 700px;
    margin-left: 0;
  }
}
@media (max-width: 479px) {
  .offer__desc {
    font-size: 25px;
    line-height: 35px;
  }
}
@media (max-width: 359px) {
  .offer__desc {
    font-size: 22px;
    line-height: 33px;
  }
}
.offer__desc--spec {
  position: relative;
  margin-left: 4px;
  margin-right: 3px;
  font-weight: 700;
  color: #D92429;
}
.offer__desc--spec::before {
  content: "";
  position: absolute;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  top: 3px;
  bottom: 2px;
  left: -5px;
  right: -4px;
  background-color: #fff;
  border-radius: 4px;
  z-index: -1;
}
.offer__list {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 1026px) {
  .offer__list {
    flex-wrap: wrap;
  }
}
.offer__list {
  margin-top: 64px;
}
.offer__item {
  width: calc(33.33333% - 20px);
  max-width: 340px;
}
@media (max-width: 1026px) {
  .offer__item {
    width: calc(50% - 15px);
    margin-bottom: 25px;
  }
  .offer__item:last-of-type {
    margin-bottom: 0;
  }
}
@media (max-width: 570px) {
  .offer__item {
    width: 100%;
    max-width: 460px;
  }
}
.offer__subtitle {
  margin-top: 9px;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
}
.offer__paragraph {
  margin-top: 3px;
  font-size: 16px;
  font-weight: 500;
  line-height: 25px;
}
.offer__icon-wrap {
  position: relative;
  width: 64px;
  height: 64px;
  margin: auto;
}
@media (max-width: 770px) {
  .offer__icon-wrap {
    margin-left: 0;
  }
}
.offer__icon {
  position: absolute;
  bottom: 0;
}
@media (max-width: 770px) {
  .offer__icon {
    left: 0;
  }
}
.offer__button-wrap {
  position: relative;
  z-index: 2;
}
.offer__button {
  margin-top: 44px;
}

.digitization {
  margin-top: 113px;
}
.digitization__wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 1026px) {
  .digitization__wrap {
    flex-wrap: wrap;
  }
}
.digitization__wrap {
  margin-top: 59px;
}
.digitization__base-wrap {
  width: 100%;
  max-width: 370px;
  flex-shrink: 0;
}
@media (max-width: 1026px) {
  .digitization__base-wrap {
    max-width: 500px;
    margin-left: 20px;
    margin-left: auto;
    margin-right: auto;
  }
}
.digitization__card-wrap {
  position: relative;
}
@media (max-width: 1026px) {
  .digitization__card-wrap {
    padding-left: 20px;
  }
}
.digitization__card-wrap::before {
  content: "";
  position: absolute;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  top: -22px;
  bottom: -24px;
  left: -19px;
  right: 0px;
  background-image: url(../img/old_wall.png);
  background-repeat: repeat;
  border-top: 1px solid #E2E2E2;
  border-bottom: 1px solid #E2E2E2;
  z-index: -1;
}
@media (max-width: 1026px) {
  .digitization__card-wrap::before {
    left: 0;
    border: 1px solid #E2E2E2;
  }
}
.digitization__subtitle {
  font-size: 24px;
  font-weight: 400;
  color: #0056D2;
  text-transform: uppercase;
  line-height: 30px;
  letter-spacing: 0.02em;
}
.digitization__list-title {
  display: block;
  margin-top: 11px;
  font-size: 20px;
  font-weight: 700;
}
.digitization__list {
  margin-top: 7px;
  margin-bottom: 43px;
}
@media (max-width: 1026px) {
  .digitization__item {
    max-width: 1000px;
  }
}
.digitization__base-desc {
  max-width: 305px;
  margin-bottom: 5px;
  font-size: 15px;
  font-weight: 500;
  line-height: 22px;
}
@media (max-width: 1026px) {
  .digitization__base-desc {
    max-width: 1000px;
  }
}
.digitization__pro-wrap {
  position: relative;
  margin-left: 67px;
  flex-shrink: 0;
}
@media (max-width: 1149px) {
  .digitization__pro-wrap {
    flex-shrink: 1;
  }
}
@media (max-width: 1026px) {
  .digitization__pro-wrap {
    margin-top: 40px;
    margin-left: 0;
  }
}
.digitization__pro-desc {
  max-width: 665px;
  margin-top: 12px;
  font-size: 20px;
  line-height: 27px;
}
.digitization__image {
  position: relative;
  left: -27px;
  margin-top: 7px;
}
@media (max-width: 1149px) {
  .digitization__image {
    position: absolute;
    min-width: 1363px;
  }
}
@media (max-width: 770px) {
  .digitization__image {
    left: -15px;
    min-width: 900px;
    margin-left: 0;
  }
}

.research {
  margin-top: 48px;
}
@media (max-width: 1149px) {
  .research {
    margin-top: 138px;
  }
}
@media (max-width: 1026px) {
  .research {
    margin-top: 660px;
  }
}
@media (max-width: 770px) {
  .research {
    margin-top: 460px;
  }
}
@media (max-width: 479px) {
  .research {
    margin-top: 453px;
  }
}
@media (max-width: 479px) {
  .research__title {
    font-size: 43px;
    line-height: 45px;
  }
}
@media (max-width: 359px) {
  .research__title {
    font-size: 38px;
    line-height: 41px;
  }
}
.research__title-desc {
  max-width: 805px;
}
.research__line {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 1026px) {
  .research__line {
    flex-wrap: wrap;
  }
}
.research__line {
  justify-content: start;
}
@media (max-width: 1026px) {
  .research__line {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}
.research__line--first {
  margin-top: 30px;
}
.research__line--second {
  position: relative;
  margin-top: 51px;
  padding-top: 17px;
  padding-bottom: 22px;
}
@media (max-width: 1026px) {
  .research__line--second {
    margin-top: 45px;
    margin-left: auto;
    margin-right: auto;
  }
}
.research__line--second::before {
  content: "";
  position: absolute;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  left: -20px;
  right: -21px;
  top: -11px;
  bottom: -11px;
  background-color: #fff;
  z-index: -1;
  border: 1px solid #A3C9FF;
}
@media (max-width: 1026px) {
  .research__line--second::before {
    top: -8px;
    bottom: -10px;
    left: -10px;
    right: -10px;
  }
}
.research__card-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 1026px) {
  .research__card-wrap {
    flex-wrap: wrap;
  }
}
.research__card-wrap {
  position: relative;
}
@media (max-width: 1026px) {
  .research__card-wrap {
    margin-top: 12px;
    padding-left: 15px;
  }
}
.research__card-wrap::before {
  content: "";
  position: absolute;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  top: -18px;
  bottom: -23px;
  left: -26px;
  right: -11px;
  background-image: url(../img/old_wall.png);
  background-repeat: repeat;
  border-radius: 10px;
  z-index: -1;
}
@media (max-width: 1026px) {
  .research__card-wrap::before {
    left: 0;
    right: 0;
  }
}
.research__card-wrap::after {
  content: "";
  position: absolute;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  top: -18px;
  bottom: -23px;
  left: calc(50% - 2px);
  width: 1px;
  background-color: #A3C9FF;
}
@media (max-width: 1026px) {
  .research__card-wrap::after {
    display: none;
  }
}
.research__card {
  max-width: 340px;
  margin-right: 55px;
}
@media (max-width: 1026px) {
  .research__card {
    max-width: 1000px;
    margin-bottom: 30px;
  }
}
.research__card--first {
  margin-right: 55px;
}
.research__card--about {
  padding-right: 10px;
}
.research__card:last-child {
  margin-bottom: 0;
  margin-right: 0;
}
.research__subtitle {
  position: relative;
  padding-left: 36px;
  font-size: 20px;
}
.research__subtitle::before {
  content: "";
  position: absolute;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  top: -2px;
  left: 2px;
  width: 26px;
  height: 34px;
  background-image: url(../img/research-icon-who-red.svg);
}
.research__subtitle--blue::before {
  background-image: url(../img/research-icon-who-blue.svg);
}
.research__subtitle--without {
  padding-left: 0;
}
.research__subtitle--without::before {
  display: none;
}
.research__paragraph {
  margin-top: 4px;
  font-size: 16px;
  font-weight: 500;
  line-height: 25px;
}
.research__button-wrap {
  margin-top: 30px;
}
@media (max-width: 1026px) {
  .research__button-wrap {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}
.research__button {
  max-width: 350px;
}

.packaging {
  margin-top: 136px;
}
.packaging__title-desc {
  max-width: 815px;
}
.packaging__list {
  margin-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 1026px) {
  .packaging__list {
    flex-wrap: wrap;
  }
}
.packaging__item {
  width: calc(33.33333% - 20px);
  max-width: 340px;
}
@media (max-width: 1026px) {
  .packaging__item {
    width: calc(50% - 15px);
    margin-bottom: 25px;
  }
  .packaging__item:last-of-type {
    margin-bottom: 0;
  }
}
@media (max-width: 570px) {
  .packaging__item {
    width: 100%;
    max-width: 460px;
  }
}
.packaging__icon-wrap {
  position: relative;
  width: 56px;
  height: 56px;
}
.packaging__icon {
  position: absolute;
  left: 0;
  bottom: 0;
}
.packaging__subtitle {
  font-size: 20px;
  font-weight: 700;
  line-height: 25px;
  margin-top: 13px;
}
.packaging__paragraph {
  margin-top: 8px;
  font-size: 16px;
  font-weight: 500;
  line-height: 25px;
}
.packaging__over-150 {
  margin-top: 63px;
}

.over-150 {
  position: relative;
  padding-top: 27px;
  padding-bottom: 29px;
  text-align: center;
  background-color: #0D0D10;
}
.over-150::before {
  content: "";
  position: absolute;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  top: -30px;
  left: -500px;
  right: -500px;
  width: 80px;
  margin: auto;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-bottom: 30px solid #0D0D10;
}
.over-150__title {
  padding-left: 20px;
  padding-right: 20px;
  font-size: 30px;
  font-weight: 400;
  color: #fff;
  line-height: 35px;
}
.over-150__list {
  margin-top: 28px;
  padding-left: 30px;
  font-size: 0;
  line-height: 0;
}
.over-150__item {
  -webkit-animation: line-1 40s infinite linear;
  animation: line-1 40s infinite linear;
  -webkit-transform: translate3d(0, 0, 0);
  margin-bottom: 30px;
}
.over-150__item:last-of-type {
  margin-bottom: 0;
}
.over-150__image {
  max-width: 3380px;
}
.over-150__item--line-2 {
  -webkit-animation: line-2 40s infinite linear;
  animation: line-2 40s infinite linear;
  -webkit-transform: translate3d(0, 0, 0);
  margin-bottom: 30px;
}

@keyframes line-1 {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  50% {
    -webkit-transform: translateX(calc(-3290px + 100%));
    transform: translateX(calc(-3290px + 100%));
  }
  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}
@keyframes line-2 {
  0% {
    -webkit-transform: translateX(calc(-3290px + 100%));
    transform: translateX(calc(-3290px + 100%));
  }
  50% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(calc(-3290px + 100%));
    transform: translateX(calc(-3290px + 100%));
  }
}
.traffic {
  margin-top: 138px;
}
.traffic__list {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 1026px) {
  .traffic__list {
    flex-wrap: wrap;
  }
}
.traffic__list {
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1170px;
  margin: auto;
  margin-top: 35px;
  padding: 1px;
  padding-bottom: 0;
  border-bottom: 1px solid #E2E2E2;
}
@media (max-width: 1182px) {
  .traffic__list {
    background-color: #fff;
  }
}
.traffic__item {
  position: relative;
  width: 33.3333%;
  max-width: 389px;
  height: 140px;
  text-align: center;
  border-top: 1px solid #E2E2E2;
}
@media (max-width: 1182px) {
  .traffic__item {
    padding-left: 10px;
    padding-right: 10px;
  }
  .traffic__item:nth-child(3n+2) {
    border: 1px solid #E2E2E2;
    border-bottom: none;
  }
}
@media (max-width: 1026px) {
  .traffic__item {
    width: 50%;
    max-width: 1000px;
  }
  .traffic__item:nth-child(3n+2) {
    border-left: none;
  }
  .traffic__item:nth-child(2n) {
    border-right: 1px solid #E2E2E2;
  }
  .traffic__item--first {
    width: 100%;
  }
}
.traffic__item--service {
  height: 120px;
}
.traffic__logo {
  position: absolute;
  top: -320px;
  bottom: -300px;
  left: -300px;
  right: -300px;
  margin: auto;
  text-align: center;
}
@media (max-width: 570px) {
  .traffic__logo {
    max-width: 132px;
    top: -340px;
  }
  .traffic__logo--first {
    max-width: 1000px;
  }
}
.traffic__logo-desc {
  position: absolute;
  bottom: 11px;
  left: -300px;
  right: -300px;
  margin: auto;
  width: 100%;
  font-size: 15px;
  text-align: center;
  color: #6E6E6E;
  line-height: 20px;
}
@media (max-width: 570px) {
  .traffic__logo-desc {
    max-width: 157px;
  }
}
@media (max-width: 359px) {
  .traffic__logo-desc {
    font-size: 14px;
  }
}
.traffic__logo-desc--service {
  top: 39px;
  max-width: 176px;
  margin: auto;
}
.traffic__logo-desc--blue {
  display: block;
  font-weight: 700;
  color: #0056D2;
}

.warranty {
  position: relative;
  width: 100%;
  max-width: 910px;
  margin-top: 124px;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
}
.warranty::before {
  content: "";
  position: absolute;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  top: 20px;
  bottom: 0;
  left: 20px;
  right: 20px;
  box-shadow: 0px 23px 60px #F0E6A3;
  background-color: #fff;
  z-index: -1;
}
@media (max-width: 1026px) {
  .warranty::before {
    left: 40px;
    right: 40px;
  }
}
@media (max-width: 1026px) {
  .warranty {
    max-width: 780px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 770px) {
  .warranty {
    padding: 19px 22px 0px;
  }
}
.warranty--5-clients {
  margin-top: 148px;
}
.warranty__container {
  padding: 34px 42px 10px;
  border: 8px solid #FFDD00;
}
@media (max-width: 1026px) {
  .warranty__container {
    width: 100%;
    max-width: 1000px;
  }
}
@media (max-width: 770px) {
  .warranty__container {
    padding: 19px 22px 0px;
  }
}
.warranty__container--5-clients {
  padding-right: 35px;
  padding-bottom: 10px;
}
@media (max-width: 770px) {
  .warranty__container--5-clients {
    padding: 19px 22px 0px;
  }
}
.warranty__title {
  max-width: 700px;
  font-size: 50px;
  font-weight: 400;
  line-height: 55px;
}
@media (max-width: 479px) {
  .warranty__title {
    font-size: 42px;
    line-height: 45px;
  }
}
@media (max-width: 359px) {
  .warranty__title {
    font-size: 36px;
    line-height: 40px;
  }
}
.warranty__title--5-clients {
  max-width: 812px;
}
.warranty__list {
  counter-reset: myCounter;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 1026px) {
  .warranty__list {
    flex-wrap: wrap;
  }
}
.warranty__list {
  flex-wrap: wrap;
  margin-top: 29px;
}
.warranty__list--5-clients {
  margin-top: 25px;
}
.warranty__item {
  width: calc(50% - 15px);
  margin-bottom: 29px;
}
@media (max-width: 770px) {
  .warranty__item {
    width: 100%;
    margin-bottom: 24px;
  }
}
.warranty__item--5-clients {
  margin-bottom: 30px;
}
.warranty__subtitle {
  font-size: 20px;
  font-weight: 700;
  line-height: 25px;
  position: relative;
  max-width: 375px;
  margin: 0;
  padding-left: 60px;
}
.warranty__subtitle::before {
  content: "";
  position: absolute;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  left: 6px;
  width: 40px;
  height: 49px;
  background-image: url(../img/warranty-icon.svg);
  z-index: 0;
}
.warranty__subtitle::after {
  counter-increment: myCounter;
  content: counter(myCounter, decimal-leading-zero);
  position: absolute;
  top: 19px;
  left: -3px;
  font-size: 20px;
  color: #FFAE00;
  text-align: right;
}
.warranty__paragraph {
  margin-top: 8px;
  font-size: 16px;
  font-weight: 500;
  line-height: 25px;
  margin-top: 6px;
}
@media (max-width: 770px) {
  .warranty__form {
    max-width: 320px;
  }
}
.warranty__form-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 1026px) {
  .warranty__form-wrap {
    flex-wrap: wrap;
  }
}
.warranty__form-wrap {
  justify-content: start;
}
@media (max-width: 1026px) {
  .warranty__form-wrap {
    flex-wrap: nowrap;
  }
}
@media (max-width: 770px) {
  .warranty__form-wrap {
    flex-wrap: wrap;
  }
}
.warranty__input {
  max-width: 300px;
  margin-right: 10px;
}
@media (max-width: 770px) {
  .warranty__input {
    margin-bottom: 10px;
    margin-right: 0;
  }
}
.warranty__button {
  flex-shrink: 0;
}
@media (max-width: 770px) {
  .warranty__button {
    max-width: 300px;
  }
}
.warranty__button-desc {
  display: block;
  margin: 12px auto 20px;
  font-size: 13px;
  line-height: 17px;
  color: #999;
}

.crm {
  margin-top: 133px;
}
@media (max-width: 1026px) {
  .crm {
    padding-bottom: 440px;
  }
}
.crm__wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 1026px) {
  .crm__wrap {
    flex-wrap: wrap;
  }
}
.crm__list {
  margin-top: 32px;
  flex-shrink: 0;
}
@media (max-width: 1026px) {
  .crm__list {
    margin-top: 22px;
    margin-left: auto;
    margin-right: auto;
    flex-shrink: 1;
  }
}
.crm__item {
  max-width: 340px;
  margin-bottom: 10px;
}
@media (max-width: 1026px) {
  .crm__item {
    max-width: 500px;
  }
}
.crm__image-wrap {
  position: relative;
  width: 100%;
  margin-top: 20px;
  margin-left: 70px;
  font-size: 0;
  line-height: 0;
}
@media (max-width: 1026px) {
  .crm__image-wrap {
    margin-top: 10px;
    margin-left: 0;
  }
}
.crm__image {
  position: absolute;
  max-width: 1115px;
}
@media (max-width: 1026px) {
  .crm__image {
    max-width: 900px;
    left: -31px;
  }
}

.sales {
  margin-top: 143px;
}
.sales__title-desc {
  max-width: 805px;
}
.sales__list {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 1026px) {
  .sales__list {
    flex-wrap: wrap;
  }
}
.sales__list {
  flex-wrap: wrap;
  margin-top: 27px;
  padding: 0;
}
@media (max-width: 770px) {
  .sales__list {
    justify-content: center;
    padding: 0 20px;
  }
}
.sales__item {
  position: relative;
  width: calc(50% - 15px);
  max-width: 570px;
  margin-bottom: 30px;
  padding-top: 2px;
  padding-bottom: 18px;
  padding-left: 22px;
  padding-right: 10px;
  background-color: #fff;
  border: 1px solid #A3C9FF;
}
@media (max-width: 770px) {
  .sales__item {
    width: 100%;
    margin-top: 0;
    margin-bottom: 15px;
    top: 0;
  }
}
.sales__item:nth-child(2n) {
  position: relative;
  right: -1px;
  top: 30px;
}
@media (max-width: 770px) {
  .sales__item:nth-child(2n) {
    width: 100%;
    margin-top: 0;
    top: 0;
    right: 0;
  }
}
.sales__subtitle {
  font-size: 20px;
  font-weight: 700;
  line-height: 25px;
  position: relative;
  padding-top: 28px;
  padding-left: 63px;
}
@media (max-width: 570px) {
  .sales__subtitle {
    max-width: 250px;
    padding-top: 8px;
  }
}
.sales__subtitle::before {
  content: "";
  position: absolute;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  top: 11px;
  left: 0;
  width: 56px;
  height: 56px;
  background-image: url(../img/sales-icon-1.svg);
  background-position: 0 0;
}
@media (max-width: 570px) {
  .sales__subtitle::before {
    top: 5px;
  }
}
.sales__subtitle--2::before {
  background-image: url(../img/sales-icon-2.svg);
}
.sales__subtitle--3::before {
  background-image: url(../img/sales-icon-3.svg);
}
.sales__subtitle--4::before {
  background-image: url(../img/sales-icon-4.svg);
}
.sales__paragraph {
  margin-top: 8px;
  font-size: 16px;
  font-weight: 500;
  line-height: 25px;
  max-width: 520px;
  margin-top: 20px;
}
@media (max-width: 570px) {
  .sales__paragraph {
    margin-top: 11px;
  }
}

.ai {
  margin-top: 143px;
}
@media (max-width: 1026px) {
  .ai {
    margin-top: 128px;
  }
}
@media (max-width: 479px) {
  .ai__title {
    font-size: 40px;
    font-weight: 700;
    line-height: 40px;
  }
}
@media (max-width: 359px) {
  .ai__title {
    font-size: 35px;
    line-height: 36px;
  }
}
.ai__title-desc {
  max-width: 805px;
}
.ai__list {
  margin-top: 51px;
}
@media (max-width: 1026px) {
  .ai__list {
    margin-top: 145px;
  }
}
.ai__item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 1026px) {
  .ai__item {
    flex-wrap: wrap;
  }
}
.ai__item {
  justify-content: flex-start;
  align-items: stretch;
  margin-bottom: 44px;
}
@media (max-width: 1026px) {
  .ai__item {
    margin-top: 160px;
    margin-bottom: 0;
  }
}
.ai__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 361px;
}
.ai__bg-text {
  position: absolute;
  top: -500px;
  bottom: -500px;
  left: -500px;
  right: -500px;
  margin: auto;
}
@media (max-width: 1026px) {
  .ai__bg-text {
    top: -110px;
    bottom: auto;
    left: 0;
    right: auto;
  }
}
.ai__canvas {
  position: absolute;
  z-index: 2; /* На переднем плане */
  pointer-events: none;
}
@media (max-width: 1026px) {
  .ai__canvas {
    top: -500px;
    bottom: -384px;
    left: -500px;
    right: -500px;
    margin: auto;
  }
}
@media (max-width: 1026px) {
  .ai__canvas--1 {
    left: -500px;
    right: -420px;
  }
}
.ai__content {
  max-width: 612px;
  margin-left: 29px;
}
@media (max-width: 1026px) {
  .ai__content {
    margin-left: 0;
  }
}
.ai__subtitle {
  font-size: 20px;
  font-weight: 700;
  line-height: 25px;
  margin-bottom: 6px;
}
@media (max-width: 1026px) {
  .ai__subtitle {
    margin-top: 9px;
  }
}
.ai__paragraph {
  margin-top: 8px;
  font-size: 16px;
  font-weight: 500;
  line-height: 25px;
  margin: 0;
  margin-bottom: 5px;
}

.analytics {
  margin-top: 130px;
}
.analytics__title {
  font-size: 46px;
  line-height: 45px;
}
.analytics__title-desc {
  max-width: 735px;
}
.analytics__visual {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 23px;
}
@media (max-width: 1026px) {
  .analytics__image {
    position: absolute;
    left: 0px;
    min-width: 1000px;
  }
}
.analytics__list {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 1026px) {
  .analytics__list {
    flex-wrap: wrap;
  }
}
.analytics__list {
  position: relative;
  margin-top: -293px;
  z-index: 2;
}
@media (max-width: 1026px) {
  .analytics__list {
    margin-top: 270px;
  }
}
.analytics__item {
  width: calc(33.33333% - 20px);
  max-width: 340px;
}
@media (max-width: 1026px) {
  .analytics__item {
    width: calc(50% - 15px);
    margin-bottom: 25px;
  }
  .analytics__item:last-of-type {
    margin-bottom: 0;
  }
}
@media (max-width: 570px) {
  .analytics__item {
    width: 100%;
    max-width: 460px;
  }
}
.analytics__item {
  max-width: 355px;
}
.analytics__subtitle {
  font-size: 20px;
  font-weight: 700;
  line-height: 25px;
  max-width: 200px;
  margin-bottom: 8px;
}
.analytics__paragraph {
  margin-top: 8px;
  font-size: 16px;
  font-weight: 500;
  line-height: 25px;
  margin-top: 0;
  margin-bottom: 5px;
}

.about {
  position: relative;
  margin-top: 128px;
  padding-top: 82px;
  padding-bottom: 105px;
  color: #fff;
  background: linear-gradient(243.08deg, #1F1F20 16.32%, #0E0E10 60.69%);
  overflow: hidden;
}
.about::before {
  content: "";
  position: absolute;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  top: 0;
  left: -2000px;
  right: -2000px;
  width: 1340px;
  height: 177px;
  margin: auto;
  background-image: url(../img/top-light.png);
  z-index: 0;
}
.about::after {
  content: "";
  position: absolute;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  bottom: 0;
  left: -2000px;
  right: -2000px;
  width: 1480px;
  height: 248px;
  margin: auto;
  background-image: url(../img/bottom-light.png);
  z-index: 0;
}
.about__container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 1026px) {
  .about__container {
    flex-wrap: wrap;
  }
}
.about__container {
  position: relative;
  z-index: 2;
}
.about__visual {
  position: relative;
  width: 100%;
  max-width: 350px;
  height: 300px;
  flex-shrink: 0;
}
@media (max-width: 1026px) {
  .about__visual {
    max-width: 1000px;
    flex-shrink: 1;
  }
}
.about__image {
  position: absolute;
  top: -208px;
  right: -20px;
  width: 100%;
  max-width: 557px;
  width: 748px;
  margin: auto;
}
.about__image--mob {
  display: none;
}
@media (max-width: 1026px) {
  .about__image--mob {
    left: -1000px;
    right: -1000px;
    display: block;
    max-width: 1000px;
    margin: auto;
  }
}
@media (max-width: 1026px) {
  .about__image {
    top: -236px;
  }
}
@media (max-width: 1026px) {
  .about__image--pc {
    display: none;
  }
}
.about__content {
  position: relative;
  margin-left: 39px;
  z-index: 2;
}
@media (max-width: 1026px) {
  .about__content {
    margin-top: 170px;
    margin-left: 0;
  }
}
@media (max-width: 479px) {
  .about__title {
    font-size: 46px;
  }
}
@media (max-width: 1026px) {
  .about__title {
    font-size: 40px;
    line-height: 45px;
  }
}
.about__title-desc {
  margin-top: 29px;
}
.about__list {
  margin-top: 30px;
}
.about__item {
  position: relative;
  width: 100%;
  min-width: 200px;
  max-width: 660px;
  margin-bottom: 10px;
  padding-left: 34px;
  font-size: 20px;
  line-height: 27px;
}
.about__item::before {
  content: "";
  position: absolute;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  top: 1px;
  left: 2px;
  width: 25px;
  height: 25px;
  background-image: url(../img/about-icon.svg);
}
.about__button {
  margin-top: 22px;
}

.tariffs {
  margin-top: 102px;
}
@media (max-width: 359px) {
  .tariffs__title {
    font-size: 46px;
    line-height: 46px;
  }
}
.tariffs__title-desc {
  max-width: 540px;
}
@media (max-width: 359px) {
  .tariffs__title-desc {
    font-size: 27px;
    line-height: 34px;
  }
}
.tariffs__main-list {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 1026px) {
  .tariffs__main-list {
    flex-wrap: wrap;
  }
}
.tariffs__main-list {
  margin-top: 25px;
}
@media (max-width: 1026px) {
  .tariffs__main-list {
    justify-content: center;
  }
}
.tariffs__main-item {
  width: calc(33.33333% - 20px);
  max-width: 340px;
}
@media (max-width: 1026px) {
  .tariffs__main-item {
    width: calc(50% - 15px);
    margin-bottom: 25px;
  }
  .tariffs__main-item:last-of-type {
    margin-bottom: 0;
  }
}
@media (max-width: 570px) {
  .tariffs__main-item {
    width: 100%;
    max-width: 460px;
  }
}
.tariffs__main-item {
  max-width: 355px;
}
@media (max-width: 1026px) {
  .tariffs__main-item {
    width: 100%;
    max-width: 500px;
    padding: 10px 20px 20px;
    background-color: #fff;
    border: 1px solid #A3C9FF;
  }
}
.tariffs__list {
  margin-top: 18px;
}
.tariffs__item {
  position: relative;
  margin-bottom: 10px;
  padding-left: 19px;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
}
.tariffs__item::before {
  content: "";
  position: absolute;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  top: 4px;
  left: 0px;
  width: 13px;
  height: 11px;
  background-color: #0056D2;
  mask: url("../img/tariffs-icon.svg") no-repeat center/contain;
}
.tariffs__item--red::before {
  background-color: #D92429;
}
.tariffs__item--ai {
  font-weight: 700;
}
.tariffs__item--ai::before {
  background-color: #6B2CFF;
}
.tariffs__item--duplicate {
  display: none;
  font-size: 14px;
  font-size: 10px;
}
.tariffs__subtitle {
  margin-top: -4px;
  font-size: 20px;
  color: #0056D2;
  line-height: 25px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.tariffs__subtitle--ai {
  color: #6B2CFF;
}
.tariffs__button {
  margin-top: 15px;
}
.tariffs__subtitle-desc {
  color: #333;
}

.outline-button {
  display: inline-block;
  width: 100%;
  padding-top: 16px;
  padding-bottom: 17px;
  font-size: 17px;
  font-weight: 700;
  color: #0056D2;
  letter-spacing: 0.03em;
  line-height: 23px;
  text-transform: uppercase;
  text-align: center;
  border: 2px solid #0056D2;
  border: 2px solid rgba(0, 86, 210, 0.3);
  border-radius: 8px;
  transition: 0.2s;
  transition-timing-function: ease-out;
}
.outline-button:hover {
  color: #fff;
  background-color: #0056D2;
}

.bottom-offer {
  position: relative;
  margin-top: 115px;
  padding-top: 10px;
  padding-bottom: 80px;
  color: #fff;
  background: linear-gradient(243.08deg, #1F1F20 16.32%, #0E0E10 60.69%);
  overflow: hidden;
}
.bottom-offer::before {
  content: "";
  position: absolute;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  top: 0;
  left: -2000px;
  right: -2000px;
  width: 1340px;
  height: 177px;
  margin: auto;
  background-image: url(../img/top-light.png);
  z-index: 0;
}
.bottom-offer::after {
  content: "";
  position: absolute;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  bottom: 0;
  left: -2000px;
  right: -2000px;
  width: 1480px;
  height: 248px;
  margin: auto;
  background-image: url(../img/bottom-light.png);
  z-index: 0;
}
.bottom-offer__container {
  position: relative;
  z-index: 2;
}
.bottom-offer__offer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 1026px) {
  .bottom-offer__offer-wrap {
    flex-wrap: wrap;
  }
}
.bottom-offer__title {
  position: relative;
  margin-top: 65px;
  font-size: 86px;
  font-weight: 200;
  text-transform: uppercase;
  line-height: 90px;
  letter-spacing: 0.02em;
}
@media (max-width: 1149px) {
  .bottom-offer__title {
    font-size: 73px;
    line-height: 78px;
  }
}
@media (max-width: 1026px) {
  .bottom-offer__title {
    margin-top: 66px;
  }
}
@media (max-width: 770px) {
  .bottom-offer__title {
    margin-top: 89px;
    font-size: 63px;
    line-height: 70px;
  }
}
@media (max-width: 570px) {
  .bottom-offer__title {
    font-size: 53px;
    line-height: 60px;
  }
}
@media (max-width: 479px) {
  .bottom-offer__title {
    font-size: 39px;
    font-weight: 700;
    line-height: 50px;
  }
}
@media (max-width: 359px) {
  .bottom-offer__title {
    font-size: 33px;
    line-height: 43px;
  }
}
.bottom-offer__desc {
  display: block;
  max-width: 650px;
  margin-top: 11px;
  margin-left: 0;
  margin-right: auto;
  font-size: 32px;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 45px;
  letter-spacing: 0.02em;
}
@media (max-width: 770px) {
  .bottom-offer__desc {
    max-width: 700px;
    margin-left: 0;
  }
}
@media (max-width: 479px) {
  .bottom-offer__desc {
    font-size: 25px;
    line-height: 35px;
  }
}
@media (max-width: 359px) {
  .bottom-offer__desc {
    font-size: 22px;
    line-height: 33px;
  }
}
.bottom-offer__desc--spec {
  position: relative;
  margin-left: 4px;
  margin-right: 3px;
  font-weight: 700;
  color: #D92429;
}
.bottom-offer__desc--spec::before {
  content: "";
  position: absolute;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  top: 3px;
  bottom: 2px;
  left: -5px;
  right: -4px;
  background-color: #fff;
  border-radius: 4px;
  z-index: -1;
}
.bottom-offer__list {
  margin-top: 57px;
  flex-shrink: 0;
}
@media (max-width: 1026px) {
  .bottom-offer__list {
    margin-top: 25px;
    flex-shrink: 1;
  }
}
.bottom-offer__item {
  width: 100%;
  max-width: 340px;
  margin-bottom: 39px;
}
@media (max-width: 1026px) {
  .bottom-offer__item {
    max-width: 550px;
    margin-bottom: 20px;
  }
}
.bottom-offer__subtitle {
  margin-top: 9px;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
}
.bottom-offer__paragraph {
  margin-top: 3px;
  font-size: 16px;
  font-weight: 500;
  line-height: 25px;
}
.bottom-offer__icon-wrap {
  position: relative;
  width: 64px;
  height: 64px;
  margin: auto;
  margin-left: 0;
}
.bottom-offer__icon {
  position: absolute;
  bottom: 0;
}
@media (max-width: 770px) {
  .bottom-offer__icon {
    left: 0;
  }
}

.start {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 1026px) {
  .start {
    flex-wrap: wrap;
  }
}
.start {
  align-items: flex-end;
  color: #0d0d0d;
  margin-top: 123px;
}
@media (max-width: 1026px) {
  .start {
    margin-top: 23px;
  }
}
@media (max-width: 479px) {
  .start__title {
    font-size: 48px;
    line-height: 48px;
  }
}
@media (max-width: 359px) {
  .start__title {
    font-size: 43px;
    line-height: 44px;
  }
}
.start__title-desc {
  max-width: 639px !important;
  margin-top: 21px;
}
@media (max-width: 479px) {
  .start__title-desc {
    font-size: 28px;
    line-height: 35px;
  }
}
.start__card-wrap {
  position: relative;
  left: -37px;
  width: 100%;
  max-width: 390px;
  margin-bottom: 20px;
  margin-right: -20px;
  padding-top: 28px;
  padding-bottom: 33px;
  padding-left: 40px;
  background-image: url(../img/old_wall.png);
  background-repeat: repeat;
  z-index: 3;
  flex-shrink: 0;
}
@media (max-width: 1026px) {
  .start__card-wrap {
    left: 0;
    max-width: 770px;
  }
}
@media (max-width: 479px) {
  .start__card-wrap {
    padding: 20px;
  }
}
.start__card-wrap::before {
  content: "";
  position: absolute;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  bottom: -20px;
  left: 0;
  width: 0;
  height: 0;
  border-top: 20px solid #c4c4c4; /* Укажите нужный цвет заливки */
  border-left: 37px solid transparent;
}
@media (max-width: 1026px) {
  .start__card-wrap::before {
    display: none;
  }
}
.start__green-list {
  margin-top: 5px;
}
@media (max-width: 1026px) {
  .start__green-item {
    max-width: 1000px;
  }
}
.start__list-title {
  font-size: 20px;
  font-weight: 700;
}
.start__left-column {
  position: relative;
  width: 100%;
  max-width: 777px;
  margin-top: -233px;
  margin-left: -17px;
  padding-top: 41px;
  padding-bottom: 40px;
  padding-left: 40px;
  padding-right: 80px;
  background-color: #fff;
  z-index: 2;
}
@media (max-width: 1200px) {
  .start__left-column {
    margin-left: -20px;
  }
}
@media (max-width: 1026px) {
  .start__left-column {
    margin-top: 0;
    margin-left: 0;
    padding: 20px;
  }
}
@media (max-width: 359px) {
  .start__left-column {
    padding: 15px;
  }
}
.start__icon-wrap {
  position: absolute;
  width: 56px;
  height: 56px;
  top: 5px;
  left: 1px;
}
.start__icon {
  position: absolute;
  top: -100px;
  bottom: -100px;
  left: -100px;
  right: -100px;
  margin: auto;
}
.start__list {
  margin-top: 24px;
}
.start__item {
  position: relative;
  margin-bottom: 24px;
  padding-left: 63px;
}
.start__subtitle {
  font-size: 20px;
  font-weight: 700;
  line-height: 25px;
}
.start__paragraph {
  margin-top: 8px;
  font-size: 16px;
  font-weight: 500;
  line-height: 25px;
  max-width: 580px;
  margin-top: 6px;
}
.start__form {
  position: relative;
  padding-top: 26px;
}
@media (max-width: 1026px) {
  .start__form {
    padding-top: 20px;
    padding-bottom: 10px;
  }
}
.start__form::before {
  content: "";
  position: absolute;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  top: -3px;
  left: -40px;
  right: -50px;
  height: 1px;
  background-color: #A3C9FF;
}
@media (max-width: 1026px) {
  .start__form::before {
    left: -20px;
    right: -20px;
  }
}
@media (max-width: 359px) {
  .start__form::before {
    left: -15px;
    right: -15px;
  }
}
.start__form-title {
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
@media (max-width: 770px) {
  .start__form-title {
    text-align: center;
    line-height: 25px;
  }
}
.start__form-line {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 1026px) {
  .start__form-line {
    flex-wrap: wrap;
  }
}
.start__form-line {
  justify-content: start;
  margin-top: 12px;
}
@media (max-width: 1026px) {
  .start__form-line {
    flex-wrap: nowrap;
  }
}
@media (max-width: 770px) {
  .start__form-line {
    flex-wrap: wrap;
  }
}
.start__input {
  width: 100%;
  max-width: 290px;
  flex-shrink: 0;
}
@media (max-width: 1200px) {
  .start__input {
    flex-shrink: 1;
  }
}
@media (max-width: 770px) {
  .start__input {
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
}
.start__button {
  width: 100%;
  min-width: 280px;
  max-width: 360px;
  margin-left: 10px;
  flex-shrink: 0;
}
@media (max-width: 1200px) {
  .start__button {
    flex-shrink: 1;
  }
}
@media (max-width: 770px) {
  .start__button {
    max-width: 320px;
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 479px) {
  .start__button {
    min-width: 200px;
  }
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 1026px) {
  .footer {
    flex-wrap: wrap;
  }
}
.footer {
  position: relative;
  margin-top: 20px;
  margin-bottom: 21px;
}
@media (max-width: 770px) {
  .footer {
    justify-content: center;
    text-align: center;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.footer__top-link {
  position: absolute;
  left: -1000px;
  right: -1000px;
  max-width: 206px;
  margin: auto;
  bottom: -80px;
  font-size: 26px;
}
@media (max-width: 770px) {
  .footer__copyright {
    width: 100%;
  }
}

.visible {
  display: flex;
}

.no-scroll {
  overflow: hidden !important;
  padding-right: 16px;
}

.bottom {
  display: block;
  width: 100%;
  height: 500px;
}

.plasma-canvas {
  /* Размер холста (самого сгустка) задан в HTML (300x300) */
}

/*# sourceMappingURL=style.css.map */
