/*charset UTF-8*/
*:not(svg) {
  box-sizing: border-box;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  width: 100%;
  min-height: 100vh;
  min-height: -moz-available;
  min-height: fill-available;
  min-height: -webkit-fill-available;
  margin: 0;
  position: relative;
  left: 0;
  right: 0;
}

main {
  display: block;
}

h1 {
  font-size: 2em;
  margin: 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

ul {
  list-style-type: none;
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0;
  margin-inline-end: 0;
  padding-inline-start: 0;
}

b,
strong {
  font-weight: 600;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
  border: none;
  outline: none;
}
button:focus-visible,
input:focus-visible,
optgroup:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: none;
}

input[type=tel] {
  padding: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -moz-appearance: button;
       appearance: button;
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: none;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -moz-appearance: textfield;
       appearance: textfield;
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

/* rest */
html {
  overflow-x: hidden;
}

body {
  font-family: "Roboto Flex", sans-serif;
  background-color: #0d0d0d;
  color: #fff;
  overflow-x: hidden;
}

/* menu */
/* colors */
.hamburger {
  display: none;
}

.menu__list {
  display: flex;
  align-items: center;
  width: 100%;
  height: auto;
  flex-direction: column;
  padding: 0;
  margin: 0;
  overflow: hidden;
  pointer-events: auto;
}

.menu-item {
  position: relative;
  width: 100%;
  display: block;
  margin-right: 0;
  white-space: nowrap;
  pointer-events: auto;
  transform: translate(120vw, 0);
  -ms-transform: translateX(-120vw);
}
.menu-item a {
  height: auto;
  font-size: 24px;
  line-height: 110%;
  font-weight: 600;
  color: #fff;
  align-items: center;
  position: relative;
  transition: 0.3s;
  display: inline-block;
  font-family: "Sarpanch", sans-serif;
  padding: 15px;
  transition: all 0.3s;
}
.menu-item a:hover {
  color: #fa1718;
}

.main__menu-inner {
  width: 100%;
  height: 100vh;
  padding-top: 0;
  background-color: rgba(255, 255, 255, 0.5) !important;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 999;
  transform: translate(101vw, 0);
  -ms-transform: translateX(-101vw);
  transition: width 875ms ease-out, transform 450ms ease;
}
.main__menu-inner .main__menu-wrapper-bg {
  width: 100vw;
  height: auto;
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.6) !important;
  padding-top: 0;
  margin-top: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 101;
}

input.hamburger {
  display: none;
}
input.hamburger:checked ~ .main__menu-inner {
  transform: translatex(0);
}
input.hamburger:checked ~ .main__menu-inner li {
  transform: translatex(0);
}
input.hamburger:checked ~ .main__menu-inner li:nth-child(1) {
  transition: transform 1s 0.18s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
input.hamburger:checked ~ .main__menu-inner li:nth-child(2) {
  transition: transform 1s 0.36s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
input.hamburger:checked ~ .main__menu-inner li:nth-child(3) {
  transition: transform 1s 0.54s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
input.hamburger:checked ~ .main__menu-inner li:nth-child(4) {
  transition: transform 1s 0.72s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
input.hamburger:checked ~ .main__menu-inner li:nth-child(5) {
  transition: transform 1s 0.9s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
input.hamburger:checked ~ .main__menu-inner li:nth-child(6) {
  transition: transform 1s 1.08s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
input.hamburger:checked ~ .main__menu-inner li:nth-child(7) {
  transition: transform 1s 1.26s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
input.hamburger:checked ~ .main__menu-inner li:nth-child(8) {
  transition: transform 1s 1.44s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
input.hamburger:checked ~ .main__menu-inner li:nth-child(9) {
  transition: transform 1s 1.62s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
input.hamburger:checked ~ .main__menu-inner li:nth-child(10) {
  transition: transform 1s 1.8s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
input.hamburger:checked ~ .main__menu-inner li:nth-child(11) {
  transition: transform 1s 1.98s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
input.hamburger:checked ~ .main__menu-inner li:nth-child(12) {
  transition: transform 1s 2.16s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
input.hamburger:checked ~ .main__menu-inner li:nth-child(13) {
  transition: transform 1s 2.34s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
input.hamburger:checked ~ .main__menu-inner li:nth-child(14) {
  transition: transform 1s 2.52s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
input.hamburger:checked ~ .main__menu-inner li:nth-child(15) {
  transition: transform 1s 2.7s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
input.hamburger:checked ~ .main__menu-inner li:nth-child(16) {
  transition: transform 1s 2.88s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
input.hamburger:checked ~ .main__menu-inner li:nth-child(17) {
  transition: transform 1s 3.06s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
input.hamburger:checked ~ .main__menu-inner li:nth-child(18) {
  transition: transform 1s 3.24s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
input.hamburger:checked ~ .main__menu-inner li:nth-child(19) {
  transition: transform 1s 3.42s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
input.hamburger:checked ~ .main__menu-inner li:nth-child(20) {
  transition: transform 1s 3.6s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
input.hamburger:checked ~ .main__menu-inner li:nth-child(21) {
  transition: transform 1s 3.78s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
input.hamburger:checked ~ .main__menu-inner li:nth-child(22) {
  transition: transform 1s 3.96s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
input.hamburger:checked ~ .main__menu-inner li:nth-child(23) {
  transition: transform 1s 4.14s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
input.hamburger:checked ~ .main__menu-inner li:nth-child(24) {
  transition: transform 1s 4.32s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
input.hamburger:checked ~ .main__menu-inner li:nth-child(25) {
  transition: transform 1s 4.5s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
input.hamburger:checked ~ .main__menu-inner li:nth-child(26) {
  transition: transform 1s 4.68s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
input.hamburger:checked ~ .main__menu-inner li:nth-child(27) {
  transition: transform 1s 4.86s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
input.hamburger:checked ~ .main__menu-inner li:nth-child(28) {
  transition: transform 1s 5.04s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
input.hamburger:checked ~ .main__menu-inner li:nth-child(29) {
  transition: transform 1s 5.22s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
input.hamburger:checked ~ .main__menu-inner li:nth-child(30) {
  transition: transform 1s 5.4s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
input.hamburger:checked ~ .main__menu-inner li:nth-child(31) {
  transition: transform 1s 5.58s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
input.hamburger:checked ~ .main__menu-inner li:nth-child(32) {
  transition: transform 1s 5.76s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
input.hamburger:checked ~ .main__menu-inner li:nth-child(33) {
  transition: transform 1s 5.94s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
input.hamburger:checked ~ .main__menu-inner li:nth-child(34) {
  transition: transform 1s 6.12s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
input.hamburger:checked ~ .main__menu-inner li:nth-child(35) {
  transition: transform 1s 6.3s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
input.hamburger:checked ~ .main__menu-inner li:nth-child(36) {
  transition: transform 1s 6.48s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
input.hamburger:checked ~ .main__menu-inner li:nth-child(37) {
  transition: transform 1s 6.66s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
input.hamburger:checked ~ .main__menu-inner li:nth-child(38) {
  transition: transform 1s 6.84s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
input.hamburger:checked ~ .main__menu-inner li:nth-child(39) {
  transition: transform 1s 7.02s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
input.hamburger:checked ~ .main__menu-inner li:nth-child(40) {
  transition: transform 1s 7.2s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
input.hamburger:checked ~ .main__menu-inner li:nth-child(41) {
  transition: transform 1s 7.38s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
input.hamburger:checked ~ .main__menu-inner li:nth-child(42) {
  transition: transform 1s 7.56s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
input.hamburger:checked ~ .main__menu-inner li:nth-child(43) {
  transition: transform 1s 7.74s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
input.hamburger:checked ~ .main__menu-inner li:nth-child(44) {
  transition: transform 1s 7.92s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
input.hamburger:checked ~ .main__menu-inner li:nth-child(45) {
  transition: transform 1s 8.1s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
input.hamburger:checked ~ .main__menu-inner li:nth-child(46) {
  transition: transform 1s 8.28s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
input.hamburger:checked ~ .main__menu-inner li:nth-child(47) {
  transition: transform 1s 8.46s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
input.hamburger:checked ~ .main__menu-inner li:nth-child(48) {
  transition: transform 1s 8.64s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
input.hamburger:checked ~ .main__menu-inner li:nth-child(49) {
  transition: transform 1s 8.82s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
input.hamburger:checked ~ .main__menu-inner li:nth-child(50) {
  transition: transform 1s 9s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
input.hamburger:checked ~ label > i {
  right: -12px;
  background-color: transparent;
  transform: rotate(0deg);
}
input.hamburger:checked ~ label > i:before {
  transform: translate(-50%, -50%) rotate(315deg);
  background-color: rgb(255, 255, 255);
}
input.hamburger:checked ~ label > i:after {
  transform: translate(-50%, -50%) rotate(-315deg);
  width: 100%;
}

label.hamburger {
  width: 57px;
  height: 57px;
  display: block;
  background-color: #fa1718;
  position: fixed;
  top: 20px;
  right: 30px;
  z-index: 1000;
  border-radius: 10px;
  overflow: hidden;
}
label.hamburger:hover {
  cursor: pointer;
}
label.hamburger > i {
  width: 70%;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 15px;
  position: absolute;
  top: 47%;
  right: 9px;
  pointer-events: auto;
  transition-duration: 0.35s;
}
label.hamburger > i:before, label.hamburger > i:after {
  content: "";
  width: 100%;
  height: 2px;
  display: block;
  border-radius: 15px;
  position: absolute;
  right: 0;
  transition: transform 0.35s;
  transform-origin: 50% 50%;
}
label.hamburger > i:before {
  transform: translate(0, -14px);
  background-color: rgba(255, 255, 255, 0.3);
}
label.hamburger > i:after {
  transform: translate(0, 14px);
  background-color: rgb(255, 255, 255);
  width: 16px;
}

/* menu */
/* classes */
.container {
  margin: 0 auto;
  width: 1830px;
  position: relative;
}

.number-sec {
  font-family: "Sarpanch", sans-serif;
  position: relative;
  display: inline-block;
  font-size: 128px;
  font-weight: 400;
  color: #fff;
}

.__sarpanch {
  font-family: "Sarpanch", sans-serif;
}

.container__wrapper {
  position: relative;
}

.container-main {
  width: 1460px;
  margin: 0 auto;
  position: relative;
}

.container-medium {
  width: 1610px;
  height: 100%;
  margin: 0 auto;
  position: relative;
}

.section-header {
  width: 100%;
  position: relative;
}
.section-header::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 200px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.section-header::before {
  content: "";
  width: 320px;
  height: 6px;
  background-color: #fa1718;
  border-radius: 200px;
  position: absolute;
  left: 0;
  bottom: -2px;
  z-index: 1;
}
.section-header .section-header__img {
  position: absolute;
  z-index: 1;
}
.section-header .section-header__icn {
  position: absolute;
  bottom: 30px;
  left: 0;
}

.vertical-title {
  -webkit-text-stroke: 1px #959595;
  color: transparent;
  text-transform: uppercase;
  font-family: "Sarpanch", sans-serif;
  text-align: center;
  font-size: 128px;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  position: absolute;
  top: -40px;
  right: 40px;
}

.line-deco {
  width: 1px;
  height: 500px;
  background-color: #fff;
  border-radius: 50px;
  position: absolute;
  left: -40px;
}
.line-deco:before {
  content: "+";
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  color: #fa1718;
  font-family: "Sarpanch", sans-serif;
  font-size: 24px;
  font-weight: 400;
}

/* classes */
.is-ready .main-title {
  opacity: 1;
  transform: scale(1);
  transition-duration: 1s;
}
.is-ready .main-screens-advantages__wrapper {
  transform: translateY(0);
  transition-duration: 2s;
}

section._anim-items .section-header .section-header__icn {
  transform: translateX(-100vw);
  transition: 0.5s transform;
}
section._anim-items .section-header .section-header__img {
  transform: translateX(100vw);
  transition: 0.5s transform;
}
section._anim-items .activ-sec__list {
  transform: translateX(-100vw);
  transition: 0.5s transform;
}
section._anim-items .vertical-title {
  transform: translateX(100vw);
  transition-duration: 12s;
  transition: 0.5s transform;
}
section._anim-items .number-sec {
  transform: translateX(-100vw);
  transition: 0.5s transform;
}
section._anim-items .danger__bg {
  transition: 0.5s transform;
  transform: translate(-54%, 200vh);
}
section._anim-items._active .section-header__icn {
  transform: translateX(0);
}
section._anim-items._active .section-header .section-header__img {
  transform: translateX(0);
}
section._anim-items._active .activ-sec__list {
  transform: translateX(0);
  transition-duration: 1s;
}
section._anim-items._active .vertical-title {
  transform: translateX(0);
  transition-duration: 1s;
}
section._anim-items._active .number-sec {
  transform: translateX(0);
}
section._anim-items._active .danger__bg {
  transition-duration: 1s;
  transform: translate(-54%, 0);
}

#go-top {
  background-color: #fa1718;
  border-radius: 5px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 60px;
  left: 20px;
  transition: 0.2s all;
}
#go-top img {
  width: 30px;
  height: 30px;
}
#go-top:hover {
  transform: scale(1.2);
}

button[data-fancybox-toggle-fullscreen] {
  display: none;
}

.f-button[disabled] {
  display: none;
}

/* global style */
/* main screen */
/* header */
.header .container {
  width: 100%;
  padding: 0 30px;
}

.header__wrapper {
  padding-top: 20px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  position: relative;
}

.btn-link__basket {
  margin-right: 30px;
  background-color: #fa1718;
  border-radius: 10px;
  padding: 5px;
  position: relative;
  z-index: 9999;
}
.btn-link__basket img {
  transition: 0.5s all;
  display: block;
}
.btn-link__basket:hover img {
  transform: scale(1.4);
}

.btn-link__log-in {
  margin-right: 95px;
  background-color: #fa1718;
  border-radius: 10px;
  padding: 0 10px;
  position: relative;
  z-index: 9999;
  height: 57px;
  font-size: 18px;
  color: #fff;
  font-weight: 600;
}
.btn-link__log-in img {
  transition: 0.5s all;
  display: block;
}
.btn-link__log-in:hover img {
  transform: scale(1.4);
}

.header-btn__wrapper {
  display: flex;
  position: fixed;
  z-index: 9999;
  top: 20px;
  right: 30px;
}

/* header */
.main-screens {
  width: 100%;
  position: relative;
}

.main-screens__bg {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  min-height: 1080px;
  background-image: url("../img/main-sec-bg.png");
  background-size: cover;
  background-position: 0 50%;
  background-repeat: no-repeat;
}

.main-screens__deco {
  position: relative;
}

.main-screens .number-sec::after {
  content: "";
  width: 125px;
  height: 2px;
  background-color: #fa1718;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -140px;
}

.main-screens__info {
  width: 320px;
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  position: absolute;
  left: 145px;
  top: 85px;
}

.language-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0;
  top: 20px;
}
.language-list .language-link {
  font-family: "Roboto Flex", sans-serif;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
  transition: 0.3s all;
}
.language-list .language-link.__active, .language-list .language-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.scroling-deco {
  width: 2px;
  height: 255px;
  border-radius: 15px;
  background-color: #fff;
  position: absolute;
  top: 170px;
  right: 15px;
}
.scroling-deco .dot {
  width: 22px;
  height: 22px;
  background-color: #000;
  border: 2px solid #fa1718;
  border-radius: 200%;
  left: -9px;
  position: absolute;
}

.activ-sec__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: absolute;
  left: 0;
  top: 240px;
  z-index: 3;
}
.activ-sec__list .activ-sec {
  height: 70px;
  margin-bottom: 10px;
  position: relative;
  color: rgba(255, 255, 255, 0.5);
  font-family: "Sarpanch", sans-serif;
  font-size: 20px;
  font-weight: 400;
  padding-left: 15px;
  transition: 0.3s all;
}
.activ-sec__list .activ-sec::after {
  content: "";
  width: 3px;
  height: 67px;
  background-color: rgba(255, 255, 255, 0.5);
  position: absolute;
  left: 0;
  top: 6px;
  transition: 0.3s all;
}
.activ-sec__list .activ-sec.__active, .activ-sec__list .activ-sec:hover {
  color: #fff;
  font-size: 32px;
}
.activ-sec__list .activ-sec.__active::after, .activ-sec__list .activ-sec:hover::after {
  background-color: #fa1718;
}

.main-screens__deco-number {
  color: #fff;
  font-family: Roboto Flex;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1.6px;
  transform: rotate(-90deg);
  position: absolute;
  right: 0;
  top: 445px;
}
.main-screens__deco-number span {
  color: #fa1718;
}

.main-title__wrapper {
  text-align: center;
}

.main-title {
  color: #fff;
  font-family: "Sarpanch", sans-serif;
  font-size: 256px;
  font-weight: 400;
  letter-spacing: 128px;
  padding: 30px 0 0 145px;
  opacity: 0;
  transform: scale(0.1);
  transition: 1s all;
}
.main-title span {
  color: #fa1718;
}

.main-subtitle {
  color: #fff;
  font-size: 36px;
  font-weight: 500;
  letter-spacing: 3.6px;
  text-transform: uppercase;
  padding-top: 80px;
}

.main-screens-advantages__wrapper {
  transform: translateY(100vh);
  transition: 1s all;
  width: 1260px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 125px;
  position: relative;
}
.main-screens-advantages__wrapper::after {
  content: "";
  width: 1075px;
  height: 3px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.main-screens-advantages {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 0 0 216px;
}
.main-screens-advantages .main-screens-advantages__number {
  font-family: "Sarpanch", sans-serif;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  font-size: 40px;
  font-weight: 600;
}
.main-screens-advantages .main-screens-advantages__text {
  color: #fff;
  font-size: 20px;
  font-weight: 400;
}
.main-screens-advantages .main-screens-advantages__dot {
  height: 65px;
  margin: 20px 0;
  position: relative;
}
.main-screens-advantages .main-screens-advantages__dot .__small {
  width: 20px;
  height: 20px;
  background-color: rgb(250, 23, 24);
  display: block;
  border-radius: 300px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}
.main-screens-advantages .main-screens-advantages__dot .__midlle {
  width: 45px;
  height: 45px;
  background-color: #fff;
  display: block;
  border-radius: 300px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.main-screens-advantages .main-screens-advantages__dot .__big {
  width: 65px;
  height: 65px;
  background-color: rgba(250, 23, 24, 0.7);
  display: block;
  border-radius: 300px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.main-screens-advantages:nth-child(even) .main-screens-advantages__number {
  order: 3;
}
.main-screens-advantages:nth-child(even) .main-screens-advantages__dot {
  order: 2;
}
.main-screens-advantages:nth-child(even) .main-screens-advantages__text {
  order: 1;
}

.scroll-next {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
}
.scroll-next::after {
  content: "";
  background-image: url("../img/arrow-scroll-next.png");
  width: 30px;
  height: 60px;
  position: absolute;
  top: 35px;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.5s ease;
  animation: rere 2s infinite;
}

@keyframes rere {
  from {
    background-position-y: 0;
  }
  to {
    background-position-y: 60px;
  }
}
.social-links__wrapper {
  width: 97px;
  height: 43px;
  border-radius: 15px;
  background: #fa1718;
  position: absolute;
  bottom: 75px;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 10px;
}
.social-links__wrapper .social-link img {
  transition: 0.4s all;
}
.social-links__wrapper .social-link:hover img {
  transform: scale(1.3);
}

/* main screen */
/* about */
.about {
  position: relative;
  padding-top: 385px;
}
.about .section-header .section-header__img {
  bottom: -180px;
  right: 60px;
}
.about .line-deco {
  top: 200px;
}

.about-title {
  color: #fff;
  font-weight: 600;
  position: absolute;
  top: 35px;
  left: 15px;
}
.about-title span {
  display: block;
  position: absolute;
}
.about-title .__01 {
  font-size: 96px;
  left: 165px;
}
.about-title .__02 {
  font-size: 64px;
  top: 100px;
}
.about-title .__03 {
  font-size: 64px;
  top: 170px;
  left: 60px;
}

.about-content {
  display: flex;
  flex-direction: row;
  padding-top: 40px;
}

.about-content-text__wrapper {
  width: 466px;
  flex: 0 0 466px;
  margin-right: 60px;
  padding-top: 60px;
}

.about-content-text {
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  margin-top: 105px;
  position: relative;
}
.about-content-text::after {
  content: "";
  position: absolute;
  width: 125px;
  height: 2px;
  background-color: #fa1718;
  top: -40px;
  left: 0;
}

.about-content-info__wrapper {
  width: 100%;
}

.about-content-info__header {
  width: 100%;
  position: relative;
}
.about-content-info__header::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 200px;
  position: absolute;
  left: 0;
  bottom: 0;
}
.about-content-info__header::before {
  content: "";
  width: 200px;
  height: 6px;
  background-color: #147d03;
  border-radius: 200px;
  position: absolute;
  right: 0;
  bottom: -2px;
  z-index: 1;
}
.about-content-info__header .about-content-info__header__title {
  color: #147d03;
  font-family: "Sarpanch", sans-serif;
  font-size: 120px;
  font-weight: 600;
  text-align: right;
  position: absolute;
  bottom: 0;
  right: -10px;
}

.about-content-info {
  color: #fff;
  text-align: right;
  font-size: 24px;
  font-weight: 400;
  padding-top: 20px;
}

.about-examples-results__title {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  padding-top: 20px;
  position: relative;
}
.about-examples-results__title::after {
  content: "";
  position: absolute;
  width: 125px;
  height: 2px;
  background-color: #fa1718;
  bottom: -20px;
  left: 0;
}

.about-bg {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  min-height: 1080px;
  background-image: url("../img/about-bg.png");
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

.about-examples-results__wrapper {
  display: flex;
  flex-direction: row;
  padding-top: 43px;
}

.about-examples-results-card {
  width: 450px;
  height: 190px;
  padding: 15px 30px 30px 25px;
  border: 1px solid transparent;
  border-radius: 15px;
  position: relative;
  transition: 0.3s all;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.about-examples-results-card:hover {
  border: 1px solid #f00;
}
.about-examples-results-card.__01 {
  background-image: url("../img/examples-results-border-01.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 100% 0%;
  margin-right: 20px;
}
.about-examples-results-card.__02 {
  background-image: url("../img/examples-results-border-02.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 0% 50%;
}
.about-examples-results-card .about-examples-results-card__header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.about-examples-results-card .about-examples-results-card__action {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  position: absolute;
  top: 70px;
  right: 40px;
}
.about-examples-results-card .about-examples-results-card__action::before {
  content: "";
  width: 53px;
  height: 49px;
  background-image: url("../img/cursor-action.png");
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -35px;
  left: -55px;
}
.about-examples-results-card .about-examples-results-card__number {
  color: #f00;
  font-family: "Sarpanch", sans-serif;
  font-size: 48px;
  font-weight: 500;
}
.about-examples-results-card .about-examples-results-card__name {
  font-size: 20px;
  font-weight: 500;
  position: relative;
}
.about-examples-results-card .about-examples-results-card__name::before {
  content: "";
  width: 40px;
  height: 2px;
  background-color: #fa1718;
  border-radius: 20px;
  position: absolute;
  top: -20px;
  left: 0;
}

.examples-results-file__title {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  padding-top: 30px;
  padding-bottom: 20px;
}

.examples-results-file__wrapper {
  display: flex;
  flex-direction: row;
}

.examples-results-file {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 17px 15px 0 15px;
}
.examples-results-file .examples-results-file__icn {
  width: 56px;
  height: 56px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.examples-results-file .examples-results-file__text {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  padding-top: 20px;
}
.examples-results-file.__green {
  border-top: 1px solid #147d03;
  border-radius: 25px;
  width: 170px;
  flex: 0 0 170px;
  margin-right: 15px;
}
.examples-results-file.__green .examples-results-file__icn {
  background: rgba(20, 125, 3, 0.1);
}
.examples-results-file.__green::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 208px;
  background-image: url("../img/examples-results-file-green-border.png");
  background-size: cover;
  background-position: 0 100%;
  left: -1px;
  top: -1px;
}
.examples-results-file.__green::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 208px;
  background-image: url("../img/examples-results-file-green-border.png");
  background-size: cover;
  background-position: 100% 0;
  right: -1px;
  top: -1px;
}
.examples-results-file.__red {
  border-top: 1px solid #fa1718;
  border-radius: 25px;
  width: 235px;
  flex: 0 0 235px;
  margin-right: 15px;
}
.examples-results-file.__red .examples-results-file__icn {
  background: rgba(255, 0, 0, 0.1);
}
.examples-results-file.__red .examples-results-file__text {
  font-size: 20px;
}
.examples-results-file.__red::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 208px;
  background-image: url("../img/examples-results-file-red-border.png");
  background-size: cover;
  background-position: 0 100%;
  left: -1px;
  top: -1px;
}
.examples-results-file.__red::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 208px;
  background-image: url("../img/examples-results-file-red-border.png");
  background-size: cover;
  background-position: 100% 0;
  right: -1px;
  top: -1px;
}
.examples-results-file.__gray {
  border-top: 1px solid #b8b8b8;
  border-radius: 15px;
  width: 485px;
  flex: 0 0 485px;
  padding: 17px 30px 0 30px;
}
.examples-results-file.__gray .examples-results-file__icn {
  background: rgba(255, 255, 255, 0.1);
}
.examples-results-file.__gray::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 152px;
  background-image: url("../img/examples-results-file-gray-border.png");
  background-size: cover;
  background-position: 0 100%;
  left: -1px;
  top: -1px;
}
.examples-results-file.__gray::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 152px;
  background-image: url("../img/examples-results-file-gray-border.png");
  background-size: cover;
  background-position: 100% 0;
  right: -1px;
  top: -1px;
}

.main-number__title {
  width: 1460px;
  padding-left: 15px;
  padding-bottom: 17px;
  margin: 0 auto;
  color: #fff;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 2.56px;
}

.main-number__wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.main-number-card {
  width: 465px;
  margin: 0 15px;
  padding-top: 45px;
  text-align: center;
  border-radius: 15px;
  position: relative;
}
.main-number-card.__green {
  border-top: 2px solid #147d03;
}
.main-number-card.__green .main-number-card__number {
  color: #147d03;
}
.main-number-card.__green::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 192px;
  background-image: url("../img/green-border-gradient.png");
  background-size: cover;
  background-position: 0 100%;
  left: -2px;
  top: -2px;
}
.main-number-card.__green::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 192px;
  background-image: url("../img/green-border-gradient.png");
  background-size: cover;
  background-position: 100% 0;
  right: -2px;
  top: -2px;
}
.main-number-card.__red {
  border-top: 2px solid #fa1718;
}
.main-number-card.__red .main-number-card__number {
  color: #fa1718;
}
.main-number-card.__red::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 192px;
  background-image: url("../img/red-border-gradient.png");
  background-size: cover;
  background-position: 0 100%;
  left: -2px;
  top: -2px;
}
.main-number-card.__red::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 192px;
  background-image: url("../img/red-border-gradient.png");
  background-size: cover;
  background-position: 100% 0;
  right: -2px;
  top: -2px;
}
.main-number-card.__gray {
  border-top: 2px solid #b8b8b8;
}
.main-number-card.__gray .main-number-card__number {
  color: #b8b8b8;
}
.main-number-card.__gray::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 192px;
  background-image: url("../img/gray-border-gradient.png");
  background-size: cover;
  background-position: 0 100%;
  left: -2px;
  top: -2px;
}
.main-number-card.__gray::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 192px;
  background-image: url("../img/gray-border-gradient.png");
  background-size: cover;
  background-position: 100% 0;
  right: -2px;
  top: -2px;
}
.main-number-card .main-number-card__number {
  font-size: 40px;
  font-weight: 600;
}
.main-number-card .main-number-card__text {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  padding-top: 20px;
}

/* about */
/* price */
.price {
  position: relative;
  padding-top: 460px;
}
.price .section-header .section-header__img {
  bottom: -213px;
  right: -55px;
}
.price .section-header .section-header__img .deco-rectangle-img {
  width: 187px;
  height: 15px;
  background-color: #fa1718;
  position: absolute;
  z-index: 1;
}
.price .section-header .section-header__img .deco-rectangle-img.__01 {
  left: 210px;
  bottom: 205px;
}
.price .section-header .section-header__img .deco-rectangle-img.__02 {
  left: 280px;
  bottom: 184px;
}
.price .line-deco {
  top: 200px;
}
.price .deco-rectangle {
  width: 103px;
  height: 274px;
  background: linear-gradient(180deg, #fa1718 0%, rgba(0, 0, 0, 0) 100%);
  position: absolute;
  bottom: -272px;
  z-index: 0;
}
.price .deco-rectangle.__01 {
  left: 190px;
}
.price .deco-rectangle.__02 {
  left: 605px;
}
.price .deco-rectangle.__03 {
  left: 1000px;
}
.price .line-deco-right__wrapper .line-deco-right {
  width: 1px;
  height: 880px;
  background-color: rgba(255, 255, 255, 0.5);
  position: absolute;
}
.price .line-deco-right__wrapper .line-deco-right .line-deco-right__rectangle {
  width: 15px;
  height: 70px;
  background-color: #fa1718;
  z-index: 32;
  position: absolute;
  left: -7px;
}
.price .line-deco-right__wrapper .line-deco-right.__01 {
  right: 140px;
  top: -230px;
}
.price .line-deco-right__wrapper .line-deco-right.__02 {
  right: 120px;
  top: -170px;
}
.price .line-deco-right__wrapper .line-deco-right .line-deco-right__text {
  color: rgba(255, 255, 255, 0.5);
  font-family: "Sarpanch", sans-serif;
  font-size: 32px;
  font-weight: 400;
  transform: rotate(-90deg);
  position: absolute;
  z-index: 4;
  right: -80px;
}
.price .line-deco-right__wrapper .line-deco-right .line-deco-right__text span {
  color: rgba(255, 0, 0, 0.5);
}

.price-title {
  color: #fff;
  font-size: 76px;
  font-weight: 600;
  position: absolute;
  top: 40px;
  left: 230px;
}

.price-cards__wrapper {
  display: flex;
  flex-direction: row;
}

.price-card {
  width: 277px;
  margin-left: 105px;
}
.price-card .price-card__header {
  position: relative;
}
.price-card .price-card__header::after {
  content: "";
  width: 68px;
  height: 2px;
  border-radius: 200px;
  background: #fa1718;
  position: absolute;
  bottom: 0;
  left: 0;
}
.price-card .price-card__number {
  color: #fff;
  font-family: "Sarpanch", sans-serif;
  font-size: 128px;
  font-weight: 400;
  position: relative;
  left: -10px;
}
.price-card .price-card__title {
  color: #fff;
  font-size: 40px;
  font-weight: 600;
  position: absolute;
  top: 35px;
  right: 4px;
  transform: rotate(-90deg);
}
.price-card.__01 .price-card__title {
  right: 45px;
}
.price-card .price-card__mail {
  color: #fff;
  font-size: 48px;
  font-weight: 400;
  padding-top: 45px;
}
.price-card .price-card__mail span {
  font-family: "Sarpanch", sans-serif;
}
.price-card .price-card__price {
  color: #fff;
  font-size: 48px;
  font-weight: 400;
  padding-top: 45px;
}
.price-card .price-card__price span {
  font-family: "Sarpanch", sans-serif;
}
.price-card .price-card__price span span {
  color: #fa1718;
}
.price-card .price-card__offer {
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  padding-top: 50px;
}

.price-footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-top: 50px;
  padding-left: 100px;
  padding-right: 140px;
}

.price-footer__btn {
  width: 450px;
  flex: 0 0 450px;
  padding: 11px 15px;
  margin-right: 30px;
  background-image: url("../img/Buy-price-border.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 0% 50%;
  display: flex;
  flex-direction: row;
  align-items: center;
  color: #fff;
  font-size: 32px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: 0.4s all;
  border-radius: 5px;
}
.price-footer__btn img {
  margin-right: 20px;
}
.price-footer__btn:hover {
  border: 1px solid #fa1718;
}

.price-footer__offer {
  display: flex;
  flex-direction: column;
  text-align: right;
  color: #fff;
  font-size: 20px;
  font-weight: 400;
}
.price-footer__offer span {
  padding: 8px 0;
}
.price-footer__offer span:first-child {
  padding-right: 20px;
}

/* price */
/* compare */
.compare {
  position: relative;
  padding-top: 435px;
}
.compare .section-header .section-header__img {
  bottom: -60px;
  right: -125px;
}
.compare .compare__bg {
  width: 654px;
  height: 1423px;
  position: absolute;
  top: 395px;
  left: 50%;
  transform: translateX(-50%);
  background-image: url("../img/compare-bg.png");
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}
.compare .compare__bg-line {
  width: 2px;
  height: 1365px;
  background: #fff;
  position: absolute;
  left: 50%;
  top: 465px;
}
.compare .compare__bg-line .line-scroll {
  width: 16px;
  height: 474px;
  background-color: #c51415;
  position: absolute;
  left: -7px;
  top: 331px;
}
.compare .number-sec {
  position: absolute;
  left: 540px;
  top: 0;
}
.compare .line-deco__horizont {
  width: 500px;
  height: 1px;
  background-color: #fff;
  border-radius: 50px;
  position: absolute;
  right: -90px;
  bottom: -135px;
}
.compare .line-deco__horizont:before {
  content: "+";
  position: absolute;
  top: 50%;
  left: -30px;
  transform: translateY(-50%);
  color: #fa1718;
  font-family: "Sarpanch", sans-serif;
  font-size: 24px;
  font-weight: 400;
}
.compare .compare-no {
  transform: translateX(-100vw);
  transition: 0.5s transform;
}
.compare .compare-chart-no {
  transform: translateX(-100vw);
  transition: 0.5s transform;
}
.compare .compare-yes {
  transform: translateX(100vw);
  transition: 0.5s transform;
}
.compare .compare-chart-yes {
  transform: translateX(100vw);
  transition: 0.5s transform;
}
.compare._active .compare-no {
  transform: translateX(0);
}
.compare._active .compare-chart-no {
  transform: translateX(0);
  transition-duration: 2s;
}
.compare._active .compare-yes {
  transform: translateX(0);
}
.compare._active .compare-chart-yes {
  transform: translateX(0);
  transition-duration: 1.8s;
}

.compare-title {
  width: 360px;
  height: 490px;
  display: block;
  position: absolute;
  color: #fff;
  font-size: 48px;
  font-weight: 600;
  left: 740px;
}
.compare-title span {
  display: block;
  position: absolute;
}
.compare-title .__01 {
  top: 30px;
  left: 10px;
}
.compare-title .__02 {
  font-size: 76px;
  top: 90px;
  left: 10px;
}
.compare-title .__03 {
  transform: rotate(-90deg);
  left: -220px;
  top: 280px;
}

.compare__wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 175px 45px 0 45px;
}
.compare__wrapper .__column {
  width: 50%;
  flex: 0 0 50%;
}

.compare-column-title__wrapper {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}
.compare-column-title__wrapper .compare-column-title {
  width: 375px;
  color: #fff;
  text-align: right;
  font-size: 18px;
  font-weight: 400;
  position: relative;
}

.compare-no__list {
  position: relative;
  margin-top: 15px;
}
.compare-no__list::after {
  content: "";
  width: 1px;
  height: 443px;
  position: absolute;
  left: 60px;
  top: -50px;
  background-color: #fff;
}
.compare-no__list::before {
  content: "";
  width: 3px;
  height: 115px;
  position: absolute;
  left: 59px;
  bottom: -20px;
  z-index: 2;
  background-color: #fa1718;
}
.compare-no__list .compare-no-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 55px;
  margin-top: 55px;
}
.compare-no__list .compare-no-row__number {
  color: #fff;
  font-family: "Sarpanch", sans-serif;
  font-size: 64px;
  font-weight: 400;
  text-transform: uppercase;
}
.compare-no__list .compare-no-row__text {
  max-width: 400px;
  padding-top: 5px;
  padding-left: 35px;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
}

.compare-no .compare-column-title__wrapper .compare-column-title {
  margin-left: 30px;
}
.compare-no .compare-column-title__wrapper .compare-column-title::after {
  content: "";
  height: 237px;
  width: 1px;
  background-color: #fff;
  position: absolute;
  right: -22px;
  bottom: 0px;
}
.compare-no .compare-column-title__wrapper .compare-column-title::before {
  content: "";
  height: 100%;
  width: 3px;
  background-color: #fa1718;
  position: absolute;
  right: -23px;
  bottom: 0px;
  z-index: 2;
}

.compare-yes .compare-column-title__wrapper {
  justify-content: flex-end;
}
.compare-yes .compare-column-title__wrapper .compare-column-title::after {
  content: "";
  height: 237px;
  width: 1px;
  background-color: #fff;
  position: absolute;
  left: -22px;
  bottom: 0px;
}
.compare-yes .compare-column-title__wrapper .compare-column-title::before {
  content: "";
  height: 100%;
  width: 3px;
  background-color: #147d03;
  position: absolute;
  left: -23px;
  bottom: 0px;
  z-index: 2;
}

.compare-yes__content {
  display: flex;
  justify-content: flex-end;
  padding-top: 150px;
  position: relative;
}
.compare-yes__content::after {
  content: "";
  width: 1px;
  height: 543px;
  background-color: #fff;
  position: absolute;
  right: -17px;
  top: 25px;
}
.compare-yes__content::before {
  content: "";
  width: 3px;
  height: 39px;
  background-color: #147d03;
  position: absolute;
  right: -18px;
  bottom: -227px;
  z-index: 2;
}
.compare-yes__content .compare-yes__text {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  transform: rotate(-90deg);
  position: absolute;
  top: 235px;
  right: -165px;
}

.compare-chart__wrapper {
  margin-top: 115px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 0 30px 0 60px;
}

.compare-chart__title {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  padding-bottom: 30px;
}
.compare-chart__title span {
  font-size: 20px;
}

.compare-chart-no .compare-chart__title {
  max-width: 467px;
}
.compare-chart-no .compare-chart__title span {
  color: #fa1718;
}

.compare-chart-yes {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.compare-chart-yes .compare-chart__title {
  max-width: 314px;
  text-align: right;
  margin-right: 20px;
}
.compare-chart-yes .compare-chart__title span {
  color: #147d03;
}

.compare-chart-no-card__wrapper {
  position: relative;
  width: 521px;
  height: 385px;
}

.compare-chart-yes-card__wrapper {
  position: relative;
  width: 391px;
  height: 385px;
}

.compare-chart-no-card {
  border-radius: 25px;
  position: absolute;
}
.compare-chart-no-card .compare-chart-no__title {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  position: absolute;
}
.compare-chart-no-card.__01 {
  width: 253px;
  height: 247px;
  background: linear-gradient(0deg, rgba(255, 0, 0, 0.2) 0%, rgba(16, 16, 16, 0) 100%);
  left: 0;
  top: 0;
}
.compare-chart-no-card.__01 .compare-chart-no__chart {
  position: absolute;
  top: 18px;
  right: 30px;
}
.compare-chart-no-card.__01 .compare-chart-no__title {
  text-align: right;
  right: 30px;
  bottom: 47px;
}
.compare-chart-no-card.__02 {
  width: 253px;
  height: 123px;
  background: linear-gradient(0deg, rgba(255, 0, 0, 0.2) 0%, rgba(16, 16, 16, 0) 100%);
  left: 0;
  bottom: 0;
}
.compare-chart-no-card.__02 .compare-chart-no__chart {
  position: absolute;
  left: 16px;
  bottom: 21px;
}
.compare-chart-no-card.__02 .compare-chart-no__title {
  text-align: left;
  right: 47px;
  bottom: 32px;
}
.compare-chart-no-card.__03 {
  width: 253px;
  height: 385px;
  background: linear-gradient(202deg, rgba(255, 0, 0, 0.2) 4.49%, rgba(16, 16, 16, 0) 97.02%);
  right: 0;
  bottom: 0;
}
.compare-chart-no-card.__03 .compare-chart-no__chart {
  position: absolute;
  top: 18px;
  left: 26px;
}
.compare-chart-no-card.__03 .compare-chart-no__title {
  padding: 0 35px;
  text-align: left;
  bottom: 53px;
}

.compare-chart-yes-card {
  border-radius: 25px;
  position: absolute;
}
.compare-chart-yes-card .compare-chart-yes__title {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  position: absolute;
}
.compare-chart-yes-card.__01 {
  width: 188px;
  height: 187px;
  background: linear-gradient(141deg, rgba(92, 92, 92, 0.2) 1.55%, rgba(16, 16, 16, 0) 93.48%);
  left: 0;
  top: 0;
}
.compare-chart-yes-card.__01 .compare-chart-yes__chart {
  position: absolute;
  top: 18px;
  left: 23px;
}
.compare-chart-yes-card.__01 .compare-chart-yes__title {
  text-align: left;
  left: 22px;
  bottom: 22px;
}
.compare-chart-yes-card.__02 {
  width: 188px;
  height: 187px;
  background: linear-gradient(316deg, rgba(92, 92, 92, 0.2) 9.81%, rgba(16, 16, 16, 0) 96.66%);
  top: 0;
  right: 0;
}
.compare-chart-yes-card.__02 .compare-chart-yes__chart {
  position: absolute;
  top: 21px;
  left: 25px;
}
.compare-chart-yes-card.__02 .compare-chart-yes__title {
  text-align: left;
  left: 26px;
  bottom: 50px;
}
.compare-chart-yes-card.__03 {
  width: 391px;
  height: 183px;
  background: linear-gradient(78deg, rgba(92, 92, 92, 0.2) 5.94%, rgba(16, 16, 16, 0) 98.78%);
  right: 0;
  bottom: 0;
}
.compare-chart-yes-card.__03 .compare-chart-yes__chart {
  position: absolute;
  top: 31px;
  left: 24px;
}
.compare-chart-yes-card.__03 .compare-chart-yes__title {
  text-align: right;
  right: 50px;
  bottom: 78px;
}

.compare-chart-no__chart {
  position: relative;
  width: 64px;
  height: 64px;
}
.compare-chart-no__chart svg {
  width: 64px;
  height: 64px;
  stroke: rgba(250, 23, 24, 0.2);
}
.compare-chart-no__chart .compare-chart__number {
  font-family: "Sarpanch", sans-serif;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.compare-chart-yes__chart {
  position: relative;
  width: 64px;
  height: 64px;
}
.compare-chart-yes__chart svg {
  width: 64px;
  height: 64px;
  stroke: rgba(20, 125, 3, 0.2);
}
.compare-chart-yes__chart .compare-chart__number {
  font-family: "Sarpanch", sans-serif;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

#graphg {
  animation: stroke 5s ease-in-out;
  animation-fill-mode: both;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  stroke-dashoffset: calc(2.5135px * var(--val));
  stroke-dasharray: 251.35px;
  stroke: #147d03;
  stroke-width: 11px;
  transition: stroke-dashoffset 0.8s ease-out;
}

#arcg {
  stroke-width: 9px;
}

#graph {
  animation: stroke 5s ease-in-out;
  animation-fill-mode: both;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  stroke-dashoffset: calc(2.5135px * var(--val));
  stroke-dasharray: 251.35px;
  stroke: #fa1718;
  stroke-width: 11px;
  transition: stroke-dashoffset 0.8s ease-out;
}

#arc {
  stroke-width: 9px;
}

@keyframes stroke {
  0% {
    stroke-dashoffset: calc(2.5135px * var(--val));
    stroke-dasharray: 251.35px;
  }
  50% {
    stroke-dashoffset: 0;
    stroke-dasharray: 251.35px;
  }
  100% {
    stroke-dashoffset: calc(-2.5135px * var(--val));
    stroke-dasharray: -251.35px;
  }
}
/* compare */
/* project */
section.project._anim-items._active .number-sec {
  transform: translateX(-50%);
}

.project {
  position: relative;
  margin-top: 190px;
  height: 1100px;
}
.project .container-main {
  width: 1670px;
}
.project .number-sec {
  position: absolute;
  left: 49%;
  transform: translateX(-50%);
}
.project .project-card.__01 {
  transform: translateX(-100vw);
  transition: 0.5s transform;
}
.project .project-card.__02 {
  transform: translateX(100vw);
  transition: 0.5s transform;
}
.project .project-card.__03 {
  transform: translateX(100vw);
  transition: 0.5s transform;
}
.project .project-card.__04 {
  transform: translateX(-100vw);
  transition: 0.5s transform;
}
.project .project-card.__05 {
  transform: translateX(-100vw);
  transition: 0.5s transform;
}
.project .project-card.__06 {
  transform: translateX(100vw);
  transition: 0.5s transform;
}
.project._active .project-card.__01 {
  transform: translateX(0);
  transition-duration: 1s;
}
.project._active .project-card.__02 {
  transform: translateX(0);
  transition-duration: 1.5s;
}
.project._active .project-card.__03 {
  transform: translateX(0);
  transition-duration: 2s;
}
.project._active .project-card.__04 {
  transform: translateX(0);
  transition-duration: 2.5s;
}
.project._active .project-card.__05 {
  transform: translateX(0);
  transition-duration: 3s;
}
.project._active .project-card.__06 {
  transform: translateX(0);
  transition-duration: 3.5s;
}

.project-title {
  color: #fff;
  width: 930px;
  position: absolute;
  right: 152px;
  z-index: 2;
}
.project-title span {
  position: absolute;
}
.project-title .__01 {
  font-family: "Sarpanch", sans-serif;
  font-size: 64px;
  font-weight: 600;
  top: -10px;
  left: 0;
}
.project-title .__02 {
  font-size: 64px;
  font-weight: 400;
  top: 60px;
  left: 0;
}
.project-title .__03 {
  font-size: 96px;
  font-weight: 600;
  top: 120px;
  left: 0;
}
.project-title .__04 {
  font-size: 40px;
  font-weight: 700;
  right: 0;
  top: 173px;
}
.project-title .__05 {
  color: #cd0000;
  font-family: "Sarpanch", sans-serif;
  font-size: 36px;
  font-weight: 700;
  top: 212px;
  right: 133px;
}

.project-cards__wrapper {
  position: relative;
  padding-top: 174px;
}

.project-card {
  position: absolute;
}
.project-card .project-card__text {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
}
.project-card .project-card__img__wrapper {
  position: absolute;
  z-index: -1;
}
.project-card .project-card__number {
  color: #fff;
  font-family: "Sarpanch", sans-serif;
  font-size: 64px;
  font-weight: 700;
  position: absolute;
}
.project-card .project-card__img {
  position: relative;
}
.project-card .project-card__img.__small {
  width: 550px;
  height: 115px;
}
.project-card .project-card__img.__big {
  width: 662px;
  height: 116px;
}
.project-card .project-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.project-card .project-card__img .__overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(255, 0, 0, 0.5);
}
.project-card .__overlay__text {
  color: #fff;
  font-family: "Sarpanch", sans-serif;
  font-size: 36px;
  font-weight: 600;
  position: absolute;
  right: 47px;
  bottom: 41px;
}
.project-card .__overlay__text span {
  color: #d60000;
  font-size: 300px;
  font-weight: 700;
  position: absolute;
  left: -173px;
  bottom: -58px;
}
.project-card.__left .project-card__text {
  text-align: right;
}
.project-card.__right .project-card__text {
  text-align: left;
}
.project-card.__01 .project-card__text {
  width: 456px;
}
.project-card.__01 .project-card__img__wrapper {
  top: 0;
  left: 355px;
}
.project-card.__01 .project-card__number {
  top: -70px;
  left: -6px;
}
.project-card.__02 {
  right: 112px;
  top: 305px;
}
.project-card.__02 .project-card__text {
  width: 431px;
}
.project-card.__02 .project-card__img__wrapper {
  top: 0;
  left: -560px;
}
.project-card.__02 .project-card__number {
  top: -70px;
  right: -6px;
}
.project-card.__03 {
  right: 0;
  top: 435px;
}
.project-card.__03 .project-card__text {
  width: 358px;
}
.project-card.__03 .project-card__img__wrapper {
  top: 0;
  left: -674px;
}
.project-card.__03 .project-card__number {
  top: -70px;
  right: -4px;
}
.project-card.__04 {
  left: 42px;
  top: 569px;
}
.project-card.__04 .project-card__text {
  width: 358px;
}
.project-card.__04 .project-card__img__wrapper {
  top: 0;
  left: 374px;
}
.project-card.__04 .project-card__number {
  top: -70px;
  left: -4px;
}
.project-card.__05 {
  left: 168px;
  top: 705px;
}
.project-card.__05 .project-card__text {
  width: 358px;
  position: absolute;
  left: -171px;
  top: 132px;
}
.project-card.__05 .project-card__title {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  position: absolute;
  bottom: -8px;
  left: -313px;
}
.project-card.__05 .project-card__img__wrapper {
  top: 0;
  left: 374px;
}
.project-card.__06 {
  right: 24px;
  top: 839px;
}
.project-card.__06 .project-card__text {
  width: 596px;
}
.project-card.__06 .project-card__img__wrapper {
  top: 0;
  left: -674px;
}
.project-card.__06 .project-card__number {
  top: -70px;
  right: -4px;
}
.project-card.__06 .__overlay__title {
  color: #fff;
  font-size: 48px;
  font-weight: 600;
  font-family: "Sarpanch", sans-serif;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.project-card.__06 .__overlay__title::before {
  content: "";
  width: 25px;
  height: 3px;
  background-color: #fff;
  position: absolute;
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
}
.project-card.__06 .__overlay__title::after {
  content: "";
  width: 25px;
  height: 3px;
  background-color: #fff;
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
}
.project-card.__last {
  top: 1032px;
  left: 374px;
}
.project-card.__last .project-card__last__text {
  color: #fff;
  font-size: 32px;
  font-weight: 600;
  position: absolute;
  top: -48px;
  left: 3px;
}

/* project */
/* specs */
.specs {
  position: relative;
  padding-top: 300px;
}
.specs .section-header .section-header__img {
  bottom: -91px;
  right: 93px;
}
.specs .number-sec {
  left: -10px;
}
.specs .line-deco {
  top: 145px;
}
.specs .activ-sec__list {
  top: 175px;
}
.specs .deco__01 {
  position: absolute;
  left: -14px;
  bottom: -31px;
}
.specs .deco__02 {
  position: absolute;
  right: -30px;
  bottom: -140px;
}
.specs .line-deco__02 {
  width: 500px;
  height: 1px;
  background-color: #fff;
  border-radius: 50px;
  position: absolute;
  right: -100px;
  bottom: -165px;
}
.specs .line-deco__02::before {
  content: "+ + +";
  position: absolute;
  top: 50%;
  left: -80px;
  transform: translateY(-50%);
  color: #fa1718;
  font-family: "Sarpanch", sans-serif;
  font-size: 24px;
  font-weight: 400;
}
.specs .specs-card {
  opacity: 0;
  transition: 0.8s transform;
}
.specs .specs-card.__01 {
  transform: translateY(-100vh);
  transition: 0.8s transform;
}
.specs .specs-card.__02 {
  transform: translateX(100vw);
  transition: 0.8s transform;
}
.specs .specs-card.__03 {
  transform: translateY(100vh);
  transition: 0.8s transform;
}
.specs .specs-card.__04 {
  transform: translateX(-100vw);
  transition: 0.8s transform;
}
.specs._active .specs-card {
  opacity: 1;
}
.specs._active .specs-card.__01 {
  transform: translateY(0);
}
.specs._active .specs-card.__02 {
  transform: translateX(0);
}
.specs._active .specs-card.__03 {
  transform: translateY(0);
}
.specs._active .specs-card.__04 {
  transform: translateX(0);
}

.specs-title {
  color: #fff;
  font-weight: 600;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 135px;
}
.specs-title .__01 {
  font-size: 64px;
  position: relative;
}
.specs-title .__01::before {
  content: "";
  width: 156px;
  height: 10px;
  background-color: #fff;
  position: absolute;
  left: -39px;
  bottom: -5px;
}
.specs-title .__02 {
  font-size: 40px;
  position: absolute;
  right: 0;
  bottom: -60px;
}
.specs-title .__02::before {
  content: "";
  width: 94px;
  height: 15px;
  background-color: rgba(250, 23, 24, 0.5);
  position: absolute;
  left: -102px;
  bottom: 25px;
}

.specs-card__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1100px;
  height: 390px;
  margin: 80px auto 0 auto;
  position: relative;
}

.specs-card__wrapper__img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.specs-card {
  position: absolute;
}
.specs-card.__01 {
  display: flex;
  flex-direction: column;
  align-items: center;
  top: -80px;
}
.specs-card.__01 .specs-card__text {
  width: 333px;
  text-align: center;
  padding-bottom: 23px;
}
.specs-card.__01 .specs-card__number {
  padding-top: 15px;
}
.specs-card.__02 {
  display: flex;
  align-items: center;
  top: 3px;
  right: 42px;
}
.specs-card.__02 .specs-card__text {
  width: 292px;
  margin-left: 20px;
  text-align: left;
  order: 3;
}
.specs-card.__02 .specs-card__border {
  order: 2;
}
.specs-card.__02 .specs-card__number {
  order: 1;
  padding-right: 20px;
}
.specs-card.__03 {
  top: 293px;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
}
.specs-card.__03 .specs-card__text {
  width: 200px;
  margin-top: 20px;
  text-align: center;
  order: 3;
}
.specs-card.__03 .specs-card__border {
  order: 2;
}
.specs-card.__03 .specs-card__number {
  order: 1;
  padding-bottom: 20px;
}
.specs-card.__04 {
  display: flex;
  align-items: center;
  top: 3px;
  left: -3px;
}
.specs-card.__04 .specs-card__text {
  width: 337px;
  margin-right: 20px;
  text-align: right;
}
.specs-card.__04 .specs-card__number {
  padding-left: 20px;
}
.specs-card .specs-card__text {
  color: #fff;
  font-size: 20px;
  font-weight: 400;
}
.specs-card .specs-card__number {
  color: #fff;
  text-align: center;
  font-family: "Sarpanch", sans-serif;
  font-size: 32px;
  font-weight: 400;
}

/* specs */
/* danger */
.danger {
  height: 1115px;
  margin-top: 215px;
  position: relative;
  overflow: hidden;
}
.danger::after {
  content: "";
  width: 100%;
  height: 24px;
  background-color: #c70000;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
.danger .danger-text-img {
  transition: all 0.5s ease;
  animation: op 2s infinite;
}

@keyframes op {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.danger-bg-line-01 {
  width: 1321px;
  height: 999px;
  position: absolute;
  left: 129px;
  top: 0;
  z-index: -1;
}

.danger-bg-line-02 {
  width: 1252px;
  height: 948px;
  position: absolute;
  left: 343px;
  top: 0;
  z-index: -1;
}

.danger-bg-line__wrapper {
  width: 1645px;
  height: 1115px;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-54%);
}

.danger__bg {
  width: 1645px;
  height: 1115px;
  background-image: url("../img/danger-bg.png");
  background-size: 1645px;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-54%, 200vh);
}

.danger-text-img {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}

.danger-card__wrapper {
  position: relative;
}

.danger-card.__01 {
  width: 371px;
  text-align: right;
  position: absolute;
  top: 180px;
}
.danger-card.__02 {
  width: 507px;
  text-align: left;
  position: absolute;
  right: 0;
  top: 355px;
}
.danger-card.__03 {
  width: 371px;
  text-align: right;
  position: absolute;
  top: 660px;
}
.danger-card .danger-card__number {
  color: #fff;
  font-family: "Sarpanch", sans-serif;
  font-size: 64px;
  font-weight: 400;
}
.danger-card .danger-card__text {
  color: #fff;
  font-size: 20px;
  font-weight: 400;
}

/* danger */
/* footer */
.footer__wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  padding: 40px 0;
}

.footer-info {
  width: 77%;
  display: flex;
  flex-direction: column;
}
.footer-info .footer-info__title {
  color: #fff;
  font-size: 20px;
  font-weight: 400;
}
.footer-info .footer-info__link {
  color: #f00;
  font-size: 20px;
  font-weight: 600;
}
.footer-info .footer-info__link:hover {
  text-decoration: underline;
}

/* footer */
/* media style */
@media screen and (max-width: 1860px) {
  .container {
    width: 1300px;
  }
  .container-medium {
    width: 1300px;
  }
  .container-main {
    width: 1110px;
  }
  .project .container-main {
    width: 1110px;
  }
  .main-title {
    font-size: 156px;
    letter-spacing: 80px;
  }
  .main-screens__deco-number {
    right: -110px;
    top: 341px;
  }
  .number-sec {
    font-size: 96px;
  }
  .main-screens__info {
    width: 230px;
    font-size: 18px;
    left: 112px;
    top: 64px;
  }
  .main-subtitle {
    font-size: 28px;
    padding-top: 45px;
  }
  .activ-sec__list .activ-sec {
    height: 60px;
    margin-bottom: 6px;
    font-size: 16px;
  }
  .activ-sec__list .activ-sec::after {
    height: 49px;
  }
  .activ-sec__list .activ-sec.__active, .activ-sec__list .activ-sec:hover {
    color: #fff;
    font-size: 28px;
  }
  .main-screens__bg {
    left: 50%;
    transform: translateX(-50%);
    top: 45px;
    width: 1392px;
    height: 820px;
    min-height: auto;
  }
  .main-screens-advantages__wrapper {
    width: 1135px;
    margin-top: 150px;
  }
  .main-screens-advantages__wrapper::after {
    width: 970px;
  }
  .main-screens-advantages {
    flex: 0 0 189px;
  }
  .main-screens-advantages .main-screens-advantages__dot .__small {
    width: 15px;
    height: 15px;
  }
  .main-screens-advantages .main-screens-advantages__dot .__midlle {
    width: 35px;
    height: 35px;
  }
  .main-screens-advantages .main-screens-advantages__dot .__big {
    width: 55px;
    height: 55px;
  }
  .main-screens-advantages .main-screens-advantages__text {
    font-size: 16px;
  }
  .main-screens-advantages .main-screens-advantages__number {
    font-size: 32px;
  }
  .language-list .language-link {
    font-size: 16px;
    margin-bottom: 15px;
  }
  .line-deco {
    left: -20px;
  }
  .vertical-title {
    font-size: 98px;
    top: -20px;
    right: -10px;
  }
  .section-header .section-header__icn {
    width: 80px;
    height: 80px;
    bottom: 15px;
  }
  .section-header .section-header__icn img {
    width: 100%;
  }
  .about {
    padding-top: 290px;
  }
  .about .section-header .section-header__img {
    width: 340px;
    bottom: -150px;
    right: 20px;
  }
  .about .section-header .section-header__img img {
    width: 100%;
  }
  .about-title .__01 {
    font-size: 76px;
    left: 130px;
    top: -15px;
  }
  .about-title .__02 {
    font-size: 54px;
    top: 65px;
  }
  .about-title .__03 {
    font-size: 54px;
    top: 120px;
  }
  .about-content-text__wrapper {
    width: 320px;
    flex: 0 0 320px;
    margin-right: 30px;
  }
  .about-content-text {
    font-size: 16px;
    margin-top: 70px;
  }
  .about-content-text::after {
    width: 95px;
    top: -30px;
  }
  .about-content-info {
    font-size: 20px;
  }
  .about-examples-results__title {
    font-size: 18px;
  }
  .about-examples-results-card {
    width: 368px;
    height: 175px;
    padding: 15px;
  }
  .about-examples-results-card.__01 {
    background-size: cover;
  }
  .about-examples-results-card.__02 {
    background-size: cover;
  }
  .about-examples-results-card .about-examples-results-card__name {
    font-size: 16px;
  }
  .examples-results-file {
    padding: 15px;
  }
  .examples-results-file .examples-results-file__text {
    font-size: 14px;
  }
  .examples-results-file.__green {
    width: 145px;
    flex: 0 0 145px;
  }
  .examples-results-file.__red {
    width: 180px;
    flex: 0 0 180px;
  }
  .examples-results-file.__red .examples-results-file__text {
    font-size: 14px;
  }
  .examples-results-file.__gray {
    width: 400px;
    flex: 0 0 400px;
  }
  .main-number {
    padding-top: 30px;
  }
  .main-number__title {
    padding-bottom: 17px;
    font-size: 24px;
    letter-spacing: 1.56px;
  }
  .price {
    padding-top: 335px;
  }
  .price .section-header .section-header__img {
    width: 520px;
    bottom: -182px;
    right: -88px;
  }
  .price .section-header .section-header__img img {
    width: 100%;
  }
  .price .section-header .section-header__img .deco-rectangle-img {
    width: 157px;
  }
  .price .section-header .section-header__img .deco-rectangle-img.__01 {
    left: 178px;
    bottom: 175px;
  }
  .price .section-header .section-header__img .deco-rectangle-img.__02 {
    left: 237px;
    bottom: 154px;
  }
  .price .deco-rectangle.__01 {
    left: 134px;
  }
  .price .deco-rectangle.__02 {
    left: 485px;
  }
  .price .deco-rectangle.__03 {
    left: 815px;
  }
  .price .line-deco-right__wrapper .line-deco-right {
    height: 687px;
  }
  .price .line-deco-right__wrapper .line-deco-right.__01 {
    right: 81px;
    top: -230px;
  }
  .price .line-deco-right__wrapper .line-deco-right.__02 {
    right: 61px;
    top: -170px;
  }
  .price .line-deco {
    top: 30px;
  }
  .price .activ-sec__list {
    top: 95px;
  }
  .price-title {
    font-size: 54px;
    top: 30px;
    left: 163px;
  }
  .price-card {
    margin-left: 60px;
  }
  .price-card .price-card__number {
    font-size: 96px;
    left: -10px;
  }
  .price-card .price-card__title {
    font-size: 28px;
    top: 28px;
    right: 64px;
  }
  .price-card .price-card__mail {
    font-size: 34px;
    padding-top: 25px;
  }
  .price-card .price-card__price {
    font-size: 34px;
    padding-top: 25px;
  }
  .price-card .price-card__offer {
    font-size: 16px;
    padding-top: 30px;
  }
  .price-card.__01 .price-card__title {
    right: 95px;
  }
  .price-footer__btn {
    width: 330px;
    flex: 0 0 330px;
    font-size: 22px;
    margin-right: 15px;
  }
  .price-footer {
    padding-left: 70px;
    padding-right: 110px;
  }
  .price-footer__offer {
    font-size: 14px;
  }
  .compare .section-header .section-header__img {
    width: 435px;
    bottom: -38px;
    right: -80px;
  }
  .compare .section-header .section-header__img img {
    width: 100%;
  }
  .compare .number-sec {
    left: 415px;
  }
  .compare .compare__bg {
    width: 583px;
    height: 1199px;
  }
  .compare .line-deco__horizont {
    bottom: -85px;
  }
  .compare .compare__bg-line {
    height: 1174px;
  }
  .compare-title {
    width: 360px;
    height: 490px;
    display: block;
    position: absolute;
    color: #fff;
    font-size: 36px;
    font-weight: 600;
    left: 567px;
  }
  .compare-title .__01 {
    top: 25px;
    left: 0px;
  }
  .compare-title .__02 {
    font-size: 58px;
    top: 67px;
    left: 0;
  }
  .compare-title .__03 {
    left: -175px;
    top: 220px;
  }
  .compare-column-title__wrapper .compare-column-title {
    width: 300px;
    font-size: 15px;
  }
  .compare-no .compare-column-title__wrapper .compare-column-title::after {
    height: 229px;
  }
  .compare-no__list .compare-no-row__text {
    max-width: 370px;
    padding-left: 20px;
    font-size: 16px;
  }
  .compare-no__list .compare-no-row__number {
    font-size: 52px;
  }
  .compare-no__list .compare-no-row {
    height: 40px;
    margin-top: 40px;
  }
  .compare-no__list::before {
    height: 91px;
    left: 43px;
  }
  .compare-no__list::after {
    height: 338px;
    left: 44px;
    top: -40px;
  }
  .compare-yes .compare-column-title__wrapper .compare-column-title::after {
    height: 229px;
  }
  .compare-yes__img {
    width: 70px;
  }
  .compare-yes__img img {
    width: 100%;
  }
  .compare-yes__content .compare-yes__text {
    font-size: 16px;
    top: 209px;
    right: -150px;
  }
  .compare-yes__content::before {
    bottom: -188px;
  }
  .compare-yes__content::after {
    height: 452px;
  }
  .compare-chart-no .compare-chart__title {
    max-width: 420px;
  }
  .compare-chart__title {
    font-size: 16px;
  }
  .compare-chart__title span {
    font-size: 18px;
  }
  .compare-chart-no-card__wrapper {
    width: 460px;
    height: 355px;
  }
  .compare-chart-no-card .compare-chart-no__title {
    font-size: 14px;
  }
  .compare-chart-no-card.__01 {
    width: 225px;
    height: 220px;
  }
  .compare-chart-no-card.__02 {
    width: 225px;
  }
  .compare-chart-no-card.__03 {
    width: 220px;
    height: 355px;
  }
  .compare-chart-yes .compare-chart__title {
    max-width: 290px;
  }
  .compare-chart-yes-card__wrapper {
    width: 365px;
    height: 365px;
  }
  .compare-chart-yes-card .compare-chart-yes__title {
    font-size: 14px;
  }
  .compare-chart-yes-card.__01 {
    width: 175px;
    height: 175px;
  }
  .compare-chart-yes-card.__02 {
    width: 175px;
    height: 175px;
  }
  .compare-chart-yes-card.__03 {
    width: 365px;
    height: 175px;
  }
  .project {
    margin-top: 138px;
    height: 840px;
  }
  .project-title {
    width: 555px;
    right: 187px;
  }
  .project-title .__01 {
    font-size: 46px;
    top: -5px;
  }
  .project-title .__02 {
    font-size: 46px;
    top: 46px;
  }
  .project-title .__03 {
    font-size: 52px;
    top: 97px;
  }
  .project-title .__04 {
    font-size: 26px;
    top: 121px;
  }
  .project-title .__05 {
    font-size: 22px;
    top: 147px;
    right: 93px;
  }
  .project-card .project-card__number {
    font-size: 48px;
  }
  .project-card .project-card__text {
    font-size: 14px;
  }
  .project-card .project-card__img.__small {
    width: 350px;
    height: 75px;
  }
  .project-card .project-card__img.__big {
    width: 425px;
    height: 75px;
  }
  .project-card .__overlay__text {
    font-size: 24px;
    right: 31px;
    bottom: 23px;
  }
  .project-card .__overlay__text span {
    font-size: 200px;
    left: -115px;
    bottom: -39px;
  }
  .project-card.__01 .project-card__text {
    width: 323px;
  }
  .project-card.__01 .project-card__img__wrapper {
    left: 270px;
  }
  .project-card.__01 .project-card__number {
    top: -54px;
  }
  .project-card.__02 {
    right: 29px;
    top: 257px;
  }
  .project-card.__02 .project-card__text {
    width: 312px;
  }
  .project-card.__02 .project-card__img__wrapper {
    top: 3px;
    left: -360px;
  }
  .project-card.__02 .project-card__number {
    top: -53px;
    right: -2px;
  }
  .project-card.__03 {
    top: 345px;
  }
  .project-card.__03 .project-card__number {
    top: -52px;
  }
  .project-card.__03 .project-card__text {
    width: 227px;
  }
  .project-card.__03 .project-card__img__wrapper {
    top: 0;
    left: -427px;
  }
  .project-card.__04 {
    left: 25px;
    top: 431px;
  }
  .project-card.__04 .project-card__number {
    top: -58px;
    left: -4px;
  }
  .project-card.__04 .project-card__text {
    width: 250px;
  }
  .project-card.__04 .project-card__img__wrapper {
    left: 290px;
  }
  .project-card.__05 {
    left: 20px;
    top: 516px;
  }
  .project-card.__05 .project-card__title {
    font-size: 24px;
    bottom: -3px;
    left: -236px;
  }
  .project-card.__05 .project-card__text {
    width: 249px;
    position: absolute;
    left: 0;
    top: 80px;
  }
  .project-card.__06 {
    right: 0;
    top: 600px;
  }
  .project-card.__06 .__overlay__title {
    font-size: 26px;
  }
  .project-card.__06 .project-card__img__wrapper {
    left: -439px;
  }
  .project-card.__06 .project-card__text {
    width: 376px;
  }
  .project-card.__last {
    top: 727px;
    left: 300px;
  }
  .project-card.__last .project-card__last__text {
    font-size: 22px;
    top: -32px;
    left: 3px;
  }
  .project-card.__last .project-card__last__deco {
    width: 385px;
  }
  .project-card.__last .project-card__last__deco img {
    width: 100%;
  }
  .specs .section-header .section-header__img {
    bottom: -66px;
    right: 27px;
    width: 260px;
  }
  .specs .section-header .section-header__img img {
    width: 100%;
  }
  .specs-title .__01 {
    font-size: 48px;
  }
  .specs-title .__01::before {
    width: 99px;
    height: 6px;
    left: -20px;
    bottom: -3px;
  }
  .specs-title .__02 {
    font-size: 26px;
    bottom: -40px;
  }
  .specs-title .__02::before {
    width: 90px;
    height: 10px;
    left: -98px;
    bottom: 19px;
  }
  .specs-card .specs-card__text {
    font-size: 16px;
  }
  .danger__bg {
    width: 1300px;
    height: 905px;
    background-size: 1300px;
    left: 50%;
    transform: translate(-50%, 200vh);
  }
  .danger-card .danger-card__text {
    font-size: 16px;
  }
  .danger {
    height: 902px;
  }
  .danger .danger-text-img {
    width: 480px;
    animation: op 4s infinite;
  }
  .danger .danger-text-img img {
    width: 100%;
  }
  .danger-bg-line__wrapper {
    width: 1100px;
    height: 805px;
    transform: translateX(-50%);
  }
  .danger-bg-line-01 {
    width: 776px;
    height: auto;
  }
  .danger-bg-line-01 img {
    width: 100%;
  }
  .danger-bg-line-02 {
    width: 880px;
    height: auto;
    left: 127px;
  }
  .danger-bg-line-02 img {
    width: 100%;
  }
  .danger-card.__03 {
    top: 501px;
  }
  .footer-info .footer-info__title {
    font-size: 16px;
  }
  .footer-info .footer-info__link {
    font-size: 16px;
  }
}
@media screen and (max-width: 1360px) {
  .container {
    width: 740px;
  }
  .container-medium {
    width: 740px;
  }
  .container-main {
    width: 620px;
  }
  .project .container-main {
    width: 620px;
  }
  .main-title {
    font-size: 96px;
    letter-spacing: 0;
    padding: 0;
  }
  .main-screens__deco-number {
    display: none;
  }
  .logo-header {
    width: 65px;
  }
  .logo-header img {
    width: 100%;
  }
  .btn-link__basket {
    width: 40px;
    margin-right: 20px;
    display: inline-block;
  }
  .btn-link__basket img {
    width: 100%;
  }
  label.hamburger {
    top: 20px;
    right: 15px;
  }
  .main-screens__bg {
    width: 100%;
    height: 100%;
    min-height: 600px;
    max-height: 600px;
    background-size: cover;
    background-position: center;
  }
  .main-subtitle {
    font-size: 16px;
    padding-top: 5px;
  }
  .number-sec {
    font-size: 72px;
  }
  .main-screens__info {
    width: 197px;
    font-size: 14px;
    left: 87px;
    top: 47px;
  }
  .main-screens-advantages__wrapper {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
  }
  .main-screens-advantages__wrapper::after {
    display: none;
  }
  .main-screens-advantages {
    flex: 0 0 auto;
    width: 175px;
  }
  .main-screens-advantages .main-screens-advantages__dot {
    display: none;
  }
  .main-screens-advantages .main-screens-advantages__text {
    font-size: 14px;
  }
  .main-screens-advantages:nth-child(even) .main-screens-advantages__number {
    order: 1;
  }
  .main-screens-advantages:nth-child(even) .main-screens-advantages__text {
    order: 3;
  }
  .scroling-deco {
    height: 226px;
    top: 115px;
  }
  .language-list {
    right: 3px;
  }
  .language-list .language-link {
    font-size: 14px;
  }
  .activ-sec__list {
    top: 79px;
    z-index: 3;
  }
  .activ-sec__list .activ-sec {
    height: 30px;
    margin-bottom: 5px;
    font-size: 14px;
    padding-left: 10px;
  }
  .activ-sec__list .activ-sec::after {
    height: 25px;
  }
  .social-links__wrapper {
    bottom: -60px;
    z-index: 3;
  }
  .about .section-header .section-header__img {
    width: 240px;
    bottom: -107px;
    right: 0px;
  }
  .vertical-title {
    font-size: 48px;
    top: -10px;
    right: 0;
  }
  .about-title {
    top: 29px;
    left: 105px;
    display: flex;
  }
  .about-title span {
    font-size: 40px !important;
    position: static;
    padding-right: 10px;
  }
  .about-content {
    flex-direction: column;
    padding-top: 0;
  }
  .about-content-text__wrapper {
    width: 100%;
    flex: 0 0 auto;
    margin-right: 0;
    padding-top: 0;
  }
  .about-content-text {
    font-size: 14px;
    margin-top: 40px;
  }
  .about-content-info__wrapper {
    padding-top: 80px;
  }
  .about-content-info__header .about-content-info__header__title {
    font-size: 70px;
    right: -5px;
  }
  .about-content-info__header::before {
    width: 120px;
    height: 4px;
    bottom: -1px;
  }
  .section-header::before {
    width: 190px;
    height: 4px;
    bottom: -1px;
  }
  .about {
    padding-top: 180px;
  }
  .about-content-info {
    font-size: 16px;
    padding-top: 10px;
  }
  .about-examples-results__title {
    font-size: 16px;
    padding-top: 40px;
  }
  .about-examples-results__title::after {
    width: 90px;
    bottom: -10px;
  }
  .about-examples-results__wrapper {
    padding-top: 30px;
  }
  .examples-results-file__wrapper {
    flex-wrap: wrap;
  }
  .examples-results-file {
    margin-bottom: 40px;
  }
  .examples-results-file.__green {
    width: 300px;
    flex: 0 0 300px;
  }
  .examples-results-file.__red {
    width: 300px;
    flex: 0 0 300px;
    margin-right: 0;
  }
  .examples-results-file.__gray {
    width: 100%;
    flex: 0 0 100%;
  }
  .main-number__title {
    font-size: 20px;
    letter-spacing: 0;
    width: 100%;
  }
  .main-number-card .main-number-card__number {
    font-size: 26px;
  }
  .main-number-card .main-number-card__text {
    font-size: 14px;
  }
  .main-number-card {
    width: 33%;
    margin: 0 8px;
  }
  .price {
    padding-top: 210px;
  }
  .price .section-header .section-header__img {
    width: 320px;
    bottom: -110px;
  }
  .price .section-header .section-header__img .deco-rectangle-img.__01 {
    left: 116px;
    bottom: 110px;
    width: 95px;
    height: 7px;
  }
  .price .section-header .section-header__img .deco-rectangle-img.__02 {
    display: none;
  }
  .price .deco-rectangle {
    width: 60px;
    height: 146px;
    bottom: -146px;
  }
  .price .deco-rectangle.__01 {
    left: 96px;
  }
  .price .deco-rectangle.__02 {
    left: 308px;
  }
  .price .deco-rectangle.__03 {
    left: 513px;
  }
  .line-deco {
    left: -7px;
  }
  .line-deco-right__wrapper {
    display: none;
  }
  .price-title {
    font-size: 38px;
    top: 29px;
    left: 106px;
  }
  .price-card {
    width: 187px;
    margin-left: 20px;
  }
  .price-card .price-card__number {
    font-size: 86px;
  }
  .price-card .price-card__title {
    font-size: 18px;
    top: 39px;
    right: 23px;
  }
  .price-card .price-card__mail {
    font-size: 26px;
    padding-top: 20px;
  }
  .price-card .price-card__price {
    font-size: 26px;
    padding-top: 20px;
  }
  .price-card .price-card__offer {
    font-size: 12px;
    padding-top: 20px;
  }
  .price-card.__01 .price-card__title {
    right: 52px;
  }
  .price-footer {
    padding: 0 15px;
    flex-direction: column;
  }
  .price-footer__btn {
    width: 280px;
    flex: 0 0 auto;
    font-size: 16px;
    margin-right: 0;
  }
  .price-footer__btn img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
  }
  .price-footer__offer {
    padding-top: 30px;
    font-size: 12px;
  }
  .price-footer__offer span:first-child {
    padding-right: 0;
  }
  .compare {
    padding-top: 180px;
  }
  .compare .number-sec {
    left: 0;
  }
  .compare .line-deco__horizont {
    display: none;
  }
  .compare .section-header .section-header__img {
    width: 335px;
    bottom: -29px;
    right: -56px;
  }
  .compare .compare__bg {
    width: 583px;
    height: 874px;
    top: 112px;
  }
  .compare .compare__bg-line {
    height: 892px;
    top: 255px;
  }
  .compare .compare__bg-line .line-scroll {
    width: 13px;
    height: 322px;
    background-color: #c51415;
    position: absolute;
    left: -5px;
    top: 79px;
  }
  .compare__wrapper {
    padding: 105px 0 0 0;
  }
  .compare-title {
    width: 100%;
    height: auto;
    font-size: 28px;
    left: 110px;
    top: 40px;
    display: flex;
    flex-direction: row;
  }
  .compare-title .__03 {
    transform: rotate(0deg);
  }
  .compare-title span {
    position: static;
    font-size: 28px !important;
    padding-right: 10px;
  }
  .compare-no .compare-column-title__wrapper .compare-column-title {
    text-align: left;
    font-size: 14px;
    margin-left: 0;
  }
  .compare-no .compare-column-title__wrapper .compare-column-title::before {
    display: none;
  }
  .compare-no .compare-column-title__wrapper .compare-column-title::after {
    display: none;
  }
  .compare-no__list .compare-no-row__text {
    max-width: 240px;
    padding-left: 20px;
    font-size: 14px;
  }
  .compare-no__list::after {
    height: 100%;
    left: 44px;
    top: 0;
  }
  .compare-no__list::before {
    height: 55px;
    left: 43px;
    bottom: 0;
  }
  .compare-yes .compare-column-title__wrapper .compare-column-title {
    text-align: right;
    font-size: 14px;
    margin-left: 0;
  }
  .compare-yes .compare-column-title__wrapper .compare-column-title::before {
    display: none;
  }
  .compare-yes .compare-column-title__wrapper .compare-column-title::after {
    display: none;
  }
  .compare-yes__content .compare-yes__text {
    font-size: 16px;
    top: 150px;
    right: -100px;
  }
  .compare-yes__img {
    width: 70px;
    margin-right: 45px;
  }
  .compare-yes__content {
    padding-top: 95px;
  }
  .compare-yes__content::after {
    height: 280px;
    right: 33px;
    top: 25px;
  }
  .compare-yes__content::before {
    display: none;
  }
  .compare-chart__wrapper {
    margin-top: 35px;
    padding: 0;
  }
  .compare-chart__wrapper .__column {
    flex: 0 0 50%;
  }
  .compare-chart-no-card__wrapper {
    position: static;
    width: auto;
    height: auto;
  }
  .compare-chart-no {
    padding-right: 20px;
  }
  .compare-chart-no .compare-chart__title {
    max-width: 100%;
  }
  .compare-chart-no .compare-chart__title span {
    font-size: 16px;
  }
  .compare-chart-no-card {
    position: relative;
    margin-bottom: 15px;
  }
  .compare-chart-no-card .compare-chart-no__title {
    text-align: right !important;
    bottom: 50% !important;
    transform: translateY(50%);
  }
  .compare-chart-no-card .compare-chart-no__chart {
    top: 15px !important;
    right: auto !important;
    left: 15px !important;
    top: 32px !important;
  }
  .compare-chart-no-card.__01 {
    width: 100%;
    height: 110px;
  }
  .compare-chart-no-card.__02 {
    width: 100%;
    height: 110px;
  }
  .compare-chart-no-card.__03 {
    width: 100%;
    height: 110px;
  }
  .compare-chart-yes-card__wrapper {
    position: relative;
    width: 100%;
    height: auto;
  }
  .compare-chart-yes {
    padding-left: 20px;
  }
  .compare-chart-yes .compare-chart__title {
    max-width: 100%;
    margin-right: 0;
  }
  .compare-chart-yes .compare-chart__title span {
    font-size: 16px;
  }
  .compare-chart-yes-card {
    position: relative;
    margin-bottom: 15px;
  }
  .compare-chart-yes-card .compare-chart-yes__title {
    text-align: right !important;
    bottom: 50% !important;
    transform: translateY(50%);
    left: auto !important;
    right: 15px !important;
    max-width: 180px;
  }
  .compare-chart-yes-card .compare-chart-yes__chart {
    top: 15px !important;
    right: auto !important;
    left: 15px !important;
    top: 32px !important;
  }
  .compare-chart-yes-card.__01 {
    width: 100%;
    height: 110px;
  }
  .compare-chart-yes-card.__02 {
    width: 100%;
    height: 110px;
  }
  .compare-chart-yes-card.__03 {
    width: 100%;
    height: 110px;
  }
  section.project._anim-items._active .number-sec {
    transform: translateX(0);
  }
  .project {
    height: auto;
  }
  .project .number-sec {
    position: static;
    transform: translateX(0);
  }
  .project-title {
    width: 100%;
    right: auto;
    position: static;
  }
  .project-title span {
    position: static;
    font-size: 24px !important;
    padding-right: 10px;
  }
  .project-title .__01 {
    display: none;
  }
  .project-cards__wrapper {
    padding-top: 60px;
  }
  .project-card {
    position: static;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
  }
  .project-card .project-card__number {
    font-size: 64px;
    position: static;
    order: 1;
  }
  .project-card .project-card__text {
    order: 2;
  }
  .project-card .project-card__img__wrapper {
    position: static;
  }
  .project-card .__overlay__text {
    font-size: 36px;
    position: static !important;
  }
  .project-card .project-card__img.__small {
    width: auto;
    height: auto;
  }
  .project-card .project-card__img.__big {
    width: auto;
    height: auto;
  }
  .project-card .project-card__img.__overlay {
    display: none;
  }
  .project-card .project-card__img img {
    display: none;
  }
  .project-card .__overlay__title {
    position: static !important;
  }
  .project-card.__01 .project-card__text {
    width: 100%;
  }
  .project-card.__02 .project-card__text {
    width: 100%;
  }
  .project-card.__03 .project-card__text {
    width: 100%;
  }
  .project-card.__03 .__overlay__text {
    display: none;
  }
  .project-card.__04 .project-card__text {
    width: 100%;
  }
  .project-card.__05 .project-card__text {
    width: 100%;
    position: static;
  }
  .project-card.__05 .project-card__title {
    position: static;
  }
  .project-card.__06 .project-card__text {
    width: 100%;
  }
  .project-card.__06 .__overlay__title {
    font-size: 48px;
    position: static;
    transform: translate(0);
  }
  .project-card.__06 .__overlay__title::after {
    display: none;
  }
  .project-card.__06 .__overlay__title::before {
    display: none;
  }
  .project-card.__last {
    position: absolute;
    top: auto;
    bottom: -155px;
    left: auto;
    right: 0;
  }
  .project-card.__left .project-card__text {
    text-align: left;
  }
  .specs {
    padding-top: 240px;
  }
  .specs .line-deco {
    display: none;
  }
  .specs .line-deco__02 {
    width: 500px;
    height: 1px;
    background-color: #fff;
    border-radius: 50px;
    position: absolute;
    right: 0;
    bottom: 0;
  }
  .specs .section-header .section-header__img {
    bottom: -47px;
    right: 20px;
    width: 180px;
  }
  .specs-title {
    position: static;
  }
  .specs-title .__01 {
    font-size: 32px;
  }
  .specs-title .__01::before {
    display: none;
  }
  .specs-title .__02 {
    font-size: 20px;
  }
  .specs-title .__02::before {
    display: none;
  }
  .specs-title span {
    position: static !important;
    padding-right: 10px;
  }
  .specs-card__wrapper__img {
    display: none;
  }
  .specs-card__wrapper {
    width: 100%;
    height: auto;
    flex-wrap: wrap;
    align-items: flex-start;
    margin: 20px auto 0 auto;
  }
  .specs-card {
    position: static;
    flex-direction: column;
    flex: 0 0 50%;
    padding: 15px;
  }
  .specs-card .specs-card__border {
    display: none;
  }
  .specs-card .specs-card__number {
    order: 1;
    padding: 0 !important;
  }
  .specs-card .specs-card__text {
    width: 100% !important;
    margin: 0 !important;
    text-align: center;
    padding-bottom: 23px;
    order: 2;
    text-align: center !important;
  }
  .deco__01 {
    display: none;
  }
  .deco__02 {
    display: none;
  }
  .danger {
    height: auto;
    margin-top: 110px;
  }
  .danger::after {
    height: 10px;
    bottom: -10px;
  }
  .danger__bg {
    width: 100%;
    height: 581px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    left: 50%;
    transform: translate(-50%, 200vh);
  }
  .danger-card__wrapper {
    position: static;
    padding-bottom: 30px;
  }
  .danger-card {
    width: 371px;
    text-align: left !important;
    position: static !important;
    top: 180px;
  }
  .danger-text-img {
    position: absolute;
    left: 100%;
    bottom: 0;
    transform: translateX(-100%);
  }
  .danger .danger-text-img {
    width: 250px;
    animation: op 14s infinite;
    bottom: -6px;
  }
  .danger-bg-line__wrapper {
    width: 600px;
    height: 505px;
    transform: translateX(-50%);
  }
  .danger-bg-line-01 {
    width: 100%;
    height: auto;
    left: -40px;
  }
  .danger-bg-line-02 {
    width: 100%;
    height: auto;
    left: 40px;
  }
  .footer-info .footer-info__title {
    font-size: 12px;
  }
  .footer-info .footer-info__link {
    font-size: 12px;
  }
  .footer-copyright {
    font-size: 12px;
  }
}
@media screen and (max-width: 739px) {
  .container {
    width: 100%;
    padding: 0 10px;
  }
  .container-medium {
    width: 100%;
    padding: 0 10px;
  }
  .container-main {
    width: 100%;
    padding: 0 10px;
  }
  .project .container-main {
    width: 100%;
    padding: 0 10px;
  }
  .menu-item a {
    font-size: 16px;
  }
  .activ-sec__list {
    display: none;
  }
  .line-deco {
    display: none;
  }
  .number-sec {
    font-size: 38px;
  }
  .main-screens .number-sec::after {
    width: 81px;
    right: auto;
    left: 45px;
  }
  .main-screens__info {
    width: 197px;
    font-size: 14px;
    left: 44px;
    top: 24px;
  }
  .main-screens__content {
    padding-top: 60px;
  }
  .main-title {
    font-size: 64px;
  }
  .main-subtitle {
    font-size: 12px;
    padding-top: 5px;
  }
  .scroling-deco {
    display: none;
  }
  .social-links__wrapper {
    width: 43px;
    height: 87px;
    right: 10px;
    padding: 5px;
    flex-direction: column;
  }
  .section-header .section-header__icn {
    width: 40px;
    height: 40px;
    bottom: 15px;
  }
  .about .section-header .section-header__img {
    width: 164px;
    bottom: -73px;
  }
  .about-title {
    position: static;
    flex-wrap: wrap;
  }
  .about-title span {
    font-size: 28px !important;
    position: static;
    padding-right: 10px;
  }
  .about-examples-results__wrapper {
    flex-wrap: wrap;
  }
  .about-examples-results-card .about-examples-results-card__action {
    font-size: 12px;
  }
  .about-examples-results-card .about-examples-results-card__action::before {
    width: 30px;
    height: 33px;
    top: -30px;
    left: -31px;
  }
  .about-examples-results-card .about-examples-results-card__name {
    font-size: 14px;
  }
  .about-examples-results-card.__01 {
    margin: 15px;
  }
  .about-examples-results-card.__02 {
    margin: 15px;
  }
  .examples-results-file__wrapper {
    justify-content: center;
  }
  .examples-results-file {
    margin: 15px !important;
  }
  .examples-results-file.__red {
    width: 100%;
    flex: 0 0 100%;
    max-width: 280px;
  }
  .examples-results-file.__green {
    width: 100%;
    flex: 0 0 100%;
    max-width: 280px;
  }
  .examples-results-file.__gray {
    width: 100%;
    flex: 0 0 100%;
    max-width: 280px;
  }
  .main-number__wrapper {
    flex-wrap: wrap;
  }
  .main-number-card {
    width: 200px;
    margin: 10px;
  }
  .main-number__title {
    font-size: 17px;
  }
  .price {
    padding-top: 145px;
  }
  .price .section-header .section-header__img {
    width: 248px;
    bottom: -88px;
  }
  .price .section-header .section-header__img .deco-rectangle-img.__01 {
    left: 89px;
    bottom: 88px;
    width: 69px;
    height: 4px;
  }
  .section-header::before {
    width: 83px;
  }
  .price-title {
    position: static;
  }
  .price-cards__wrapper {
    flex-wrap: wrap;
  }
  .compare .compare__bg-line {
    display: none;
  }
  .compare .section-header .section-header__img {
    width: 221px;
    bottom: -21px;
    right: -22px;
  }
  .compare .number-sec {
    position: static;
  }
  .compare-title {
    position: static;
  }
  .compare-title {
    flex-wrap: wrap;
  }
  .compare-title span {
    position: static;
    font-size: 22px !important;
  }
  .compare__wrapper {
    justify-content: center;
    padding: 0;
    flex-wrap: wrap;
  }
  .compare__wrapper .__column {
    width: 100%;
    flex: 0 0 100%;
    max-width: 230px;
    margin-top: 40px;
  }
  .compare-chart__wrapper {
    justify-content: center;
    flex-wrap: wrap;
  }
  .compare-chart__wrapper .__column {
    width: 100%;
    flex: 0 0 100%;
    max-width: 230px;
  }
  .compare-yes__content {
    padding-top: 95px;
    padding-bottom: 60px;
  }
  .compare-chart-no-card .compare-chart-no__title {
    bottom: 20px !important;
    transform: translateY(0);
  }
  .compare-chart-no-card.__01 {
    width: 100%;
    height: 180px;
  }
  .compare-chart-no-card.__02 {
    width: 100%;
    height: 180px;
  }
  .compare-chart-no-card.__03 {
    width: 100%;
    height: 180px;
  }
  .compare-chart-yes-card .compare-chart-yes__title {
    bottom: 20px !important;
    transform: translateY(0);
  }
  .compare-chart-yes-card.__01 {
    width: 100%;
    height: 180px;
  }
  .compare-chart-yes-card.__02 {
    width: 100%;
    height: 180px;
  }
  .compare-chart-yes-card.__03 {
    width: 100%;
    height: 180px;
  }
  .compare-chart__title {
    font-size: 14px;
  }
  .compare-chart__title span {
    font-size: 14px;
  }
  .project {
    margin-top: 40px;
  }
  .project-cards__wrapper {
    padding-top: 0px;
  }
  .project-card.__05 .project-card__title {
    font-size: 20px;
    padding-bottom: 10px;
  }
  .project-card.__06 .__overlay__title {
    font-size: 28px;
  }
  .project-card.__last .project-card__last__text {
    font-size: 16px;
  }
  .project-card.__last .project-card__last__deco {
    width: 280px;
  }
  .specs .section-header .section-header__img {
    bottom: -33px;
    width: 130px;
  }
  .specs-card .specs-card__text {
    font-size: 14px;
    padding-bottom: 0;
  }
  .specs-card.__01 .specs-card__text {
    padding-bottom: 0;
  }
  .danger .danger-text-img {
    display: none;
  }
  .danger-card.__01 {
    width: 100%;
  }
  .danger-card.__02 {
    width: 100%;
  }
  .danger-card.__03 {
    width: 100%;
  }
  .danger__bg {
    width: 600px;
    height: 405px;
  }
  .btn-link__log-in {
    width: 155px;
    margin-right: 60px;
    font-size: 14px;
  }
}/*# sourceMappingURL=style.css.map */