@charset "UTF-8";

@font-face {
  font-family: "Inter";
  font-weight: 300;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/InterLight/Inter-Light.eot");
  src: url("../fonts/InterLight/Inter-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/InterLight/Inter-Light.woff") format("woff"), url("../fonts/InterLight/Inter-Light.ttf") format("truetype"), url("../fonts/InterLight/Inter-Light.svg#Inter") format("svg");
}

@font-face {
  font-family: "Inter";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/InterRegular/Inter-Regular.eot");
  src: url("../fonts/InterRegular/Inter-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/InterRegular/Inter-Regular.woff") format("woff"), url("../fonts/InterRegular/Inter-Regular.ttf") format("truetype"), url("../fonts/InterRegular/Inter-Regular.svg#Inter") format("svg");
}

@font-face {
  font-family: "Inter";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/InterMedium/Inter-Medium.eot");
  src: url("../fonts/InterMedium/Inter-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/InterMedium/Inter-Medium.woff") format("woff"), url("../fonts/InterMedium/Inter-Medium.ttf") format("truetype"), url("../fonts/InterMedium/Inter-Medium.svg#Inter") format("svg");
}

@font-face {
  font-family: "Inter";
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/InterSemiBold/Inter-SemiBold.eot");
  src: url("../fonts/InterSemiBold/Inter-SemiBold.eot?#iefix") format("embedded-opentype"), url("../fonts/InterSemiBold/Inter-SemiBold.woff") format("woff"), url("../fonts/InterSemiBold/Inter-SemiBold.ttf") format("truetype"), url("../fonts/InterSemiBold/Inter-SemiBold.svg#Inter") format("svg");
}

@font-face {
  font-family: "Inter";
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/InterBold/Inter-Bold.eot");
  src: url("../fonts/InterBold/Inter-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/InterBold/Inter-Bold.woff") format("woff"), url("../fonts/InterBold/Inter-Bold.ttf") format("truetype"), url("../fonts/InterBold/Inter-Bold.svg#Inter") format("svg");
}

@font-face {
  font-family: "Inter";
  font-weight: 800;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/InterExtraBold/Inter-ExtraBold.eot");
  src: url("../fonts/InterExtraBold/Inter-ExtraBold.eot?#iefix") format("embedded-opentype"), url("../fonts/InterExtraBold/Inter-ExtraBold.woff") format("woff"), url("../fonts/InterExtraBold/Inter-ExtraBold.ttf") format("truetype"), url("../fonts/InterExtraBold/Inter-ExtraBold.svg#Inter") format("svg");
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
video {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

:root {
  --container-width: 1260px;
  --transition: 0.3s ease;
  --default-font-family: "Inter", sans-serif;
  --heading-font-family: "Inter", sans-serif;
  --sp: 85px;
  --sp-small: 57px;
  --sp-big: 115px;
  --accent: #C5D800;
  --bg: #fff;
  --bg-gray: #F0F1F2;
  --bg-section: #323F48;
  --text-dark: #323F48;
  --text-light: #FFFFFF;
  --text-gray: #687076;
  --fz-default: 18px;
  --br: 20px;
  --h1: 125px;
  --h2: 40px;
  --h3: 30px;
  --h4: 28px;
  --l: 30px;
  --m: 23px;
  --s: 16px;
}

body {
  font: 400 var(--fz-default)/150% var(--default-font-family), Helvetica, Arial, sans-serif;
  min-width: 360px;
  padding: 48px 15px 0;
  color: var(--text-color);
  position: relative;
  background: #DCDCDC;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*,
*:before,
*:after {
  box-sizing: border-box;
  outline: none;
}

.hidden {
  display: none;
  overflow: hidden;
}

.wrapper {
  margin: 0 auto;
  position: relative;
}

[class*=__container] {
  position: relative;
  margin: 0 auto;
  max-width: var(--container-width);
  padding: 0 10px;
  width: 100%;
}

form input.error {
  border-bottom: 2px solid red !important;
}

form input.not_error {
  border-bottom: 2px solid var(--accent) !important;
}

h1,
.h1 {
  font: 800 var(--h1)/106% var(--heading-font-family);
  letter-spacing: 1.25px;
  text-transform: uppercase;
}

h2,
.h2 {
  font: 700 var(--h2)/130% var(--heading-font-family);
  text-transform: uppercase;
  text-align: center;
}

h2 span,
.h2 span {
  color: var(--accent);
}

h3,
.h3 {
  font: 600 var(--h3)/130% var(--heading-font-family);
}

h3 span,
.h3 span {
  color: var(--accent);
}

h4,
.h4 {
  font: 600 var(--h4)/130% var(--heading-font-family);
}

h4 span,
.h4 span {
  color: var(--accent);
}

a {
  color: var(--text-color);
  text-decoration: none;
}

.btn {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 13px 15px;
  border-radius: 3px;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 1.5;
  text-decoration: none;
  border-radius: 3px;
  border: 1px solid #FFF;
  white-space: nowrap;
}

.btn__icon {
  width: 20px;
  height: 21px;
  margin-left: 10px;
  transition: var(--transition);
}

.btn--green {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--text-dark);
}

.btn--green .btn__icon {
  background: url("data:image/svg+xml,%3Csvg width='20' height='21' viewBox='0 0 20 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.4443 3.5L17.7777 9.1V10.9667L12.4443 16.5667' stroke='%23323F48' stroke-width='1.5' stroke-linejoin='round'/%3E%3Cpath d='M2.6665 10.0332H15.1109' stroke='%23323F48' stroke-width='1.5'/%3E%3C/svg%3E%0A") center/contain no-repeat;
}

.btn--transparent {
  background: var(--transparent);
  color: var(--text-light);
  border-color: var(--text-light);
}

.btn--transparent .btn__icon {
  background: url("data:image/svg+xml,%3Csvg width='20' height='21' viewBox='0 0 20 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.4443 3.5L17.7777 9.1V10.9667L12.4443 16.5667' stroke='%23ffffff' stroke-width='1.5' stroke-linejoin='round'/%3E%3Cpath d='M2.6665 10.0332H15.1109' stroke='%23ffffff' stroke-width='1.5'/%3E%3C/svg%3E%0A") center/contain no-repeat;
}

.btn--white {
  background: var(--bg);
  border-color: var(--bg);
  color: var(--text-dark);
}

.btn--white .btn__icon {
  background: url("data:image/svg+xml,%3Csvg width='20' height='21' viewBox='0 0 20 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.4443 3.5L17.7777 9.1V10.9667L12.4443 16.5667' stroke='%23323F48' stroke-width='1.5' stroke-linejoin='round'/%3E%3Cpath d='M2.6665 10.0332H15.1109' stroke='%23323F48' stroke-width='1.5'/%3E%3C/svg%3E%0A") center/contain no-repeat;
}

.btn:hover .btn__icon {
  transform: translateX(5px);
}

.subm {
  cursor: pointer;
  border: none;
  display: block;
  margin: 0 auto;
}

.form {
  padding: 60px 90px;
  position: relative;
}

.form__inputs {
  margin-top: 35px;
}

.form .input,
.form .textarea {
  background: transparent;
  width: 100%;
  padding-bottom: 4px;
  border: none;
  border-bottom: 1px solid #DADEE1;
  font-weight: 400;
  font-size: 16px;
  display: block;
  color: var(--text-dark);
}

.form .input:placeholder,
.form .textarea:placeholder {
  color: var(--text-gray);
}

.form .input {
  margin-bottom: 35px;
  height: 28px;
  line-height: 28px;
}

.form .textarea {
  resize: vertical;
}

.form:before {
  content: "";
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(255, 255, 255, 0.7) url(../img/loading.svg) 50% no-repeat;
  z-index: 10;
}

.form.loading:before {
  display: block;
}

.form .intl-tel-input {
  width: 100%;
  margin-bottom: 35px;
}

.form .country-list .country-name {
  color: #333;
}

.form__agree {
  margin-top: 22px;
  font-size: 12px;
  font-weight: 500;
  line-height: 150%;
}

.form__agree a {
  color: var(--accent);
}

.form__btn {
  width: 100%;
  margin-top: 35px;
  cursor: pointer;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 10px 15px;
  z-index: 111;
  background: #DCDCDC;
}

.header__logo {
  width: 25px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background: center/contain no-repeat;
}

.header__logo::before {
  content: "";
  display: block;
  padding-bottom: 112%;
}

.header a {
  position: relative;
  text-decoration: none;
  line-height: 1.2;
}

.header a::before {
  content: "";
  position: absolute;
  bottom: -1px;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--text-dark);
  transition: var(--transition);
}

.header a:hover::before {
  right: auto;
  width: 100%;
  left: 0;
}

.header__menu {
  display: flex;
  gap: 40px;
  margin-left: 50px;
  margin-right: auto;
}

.header__menu a {
  font-size: 14px;
}

.header__lang,
.header__tel {
  font-size: 16px;
}

.header__lang {
  position: relative;
  width: 100px;
  margin-left: auto;
}

.header__lang:hover ul {
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
}

.header__lang-current {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding-left: 28px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cg clip-path='url(%23clip0_201_40)'%3E%3Cpath d='M1 10H19M1 10C1 14.9706 5.02944 19 10 19M1 10C1 5.02944 5.02944 1 10 1M19 10C19 14.9706 14.9706 19 10 19M19 10C19 5.02944 14.9706 1 10 1M10 19C2.75561 11.08 6.98151 3.7 10 1M10 19C17.2444 11.08 13.0185 3.7 10 1' stroke='%23323F48' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_201_40'%3E%3Crect width='20' height='20' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E") left center no-repeat;
  cursor: pointer;
  text-transform: uppercase;
}

.header__lang ul {
  position: absolute;
  bottom: -22px;
  transform: translateY(100%);
  padding: 20px 39px;
  border-radius: 15px;
  background: var(--bg-gray);
  opacity: 0;
  z-index: -111;
  transition: var(--transition);
  pointer-events: none;
}

.header__lang ul::before {
  content: "";
  position: absolute;
  left: 0;
  top: -20px;
  right: 0;
  bottom: 100%;
}

.header__tel {
  margin-left: 6px;
}

.header__burger {
  display: none;
  width: 56px;
  height: 28px;
  z-index: 100;
  background: url("data:image/svg+xml,%3Csvg width='20' height='12' viewBox='0 0 20 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='20' height='2' rx='1' fill='%23323F48'/%3E%3Crect y='5' width='20' height='2' rx='1' fill='%23323F48'/%3E%3Crect y='10' width='20' height='2' rx='1' fill='%23323F48'/%3E%3C/svg%3E%0A") 50% no-repeat;
  transition: var(--transition);
}

._bg--white {
  background: var(--bg);
}

._mark {
  color: var(--accent);
}

section {
  position: relative;
}

._sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 48px;
}

._spacer {
  height: var(--sp-big);
  position: relative;
}

.hero {
  border-radius: var(--br);
  overflow: hidden;
  background: #FDFEFD;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 135px 0;
}

.hero__title {
  max-width: 700px;
  margin-bottom: 30px;
}

.hero__title span {
  display: block;
}

.hero__title span:last-child {
  margin-left: 66px;
  margin-top: -10px;
}

.hero__subtitle {
  max-width: 400px;
  width: 100%;
  margin-bottom: 30px;
  font-weight: 500;
}

.hero__img {
  position: absolute;
  left: 0;
  top: 0;
  right: -260px;
  bottom: 0;
  background: right bottom/contain no-repeat;
  z-index: 1;
}

.main {
  margin-top: 8px;
  border-radius: var(--br);
  background: var(--bg);
}

.usage {
  overflow: hidden;
  padding-top: calc(var(--sp-small) * 2);
  border-radius: var(--br) var(--br) 0 0;
}

.usage__container {
  z-index: 2;
}

.usage__header {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 115px;
}

.usage__header-item {
  display: flex;
  width: calc(50% - 10px);
  padding: 15px;
  border-radius: 15px;
  background: var(--bg-gray);
}

.usage__header-img {
  flex: 0 0 156px;
  height: 156px;
  border-radius: 10px;
  margin-right: 24px;
  background: center/cover no-repeat;
}

.usage__header-text {
  flex: 1 1 auto;
  padding-top: 36px;
  font-size: var(--s);
  line-height: 1.5;
}

.usage__header-text span {
  display: block;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: 600;
}

.usage__wrap {
  position: relative;
  width: 100%;
  margin-top: 60px;
}

.usage__circle {
  width: 814px;
  height: 814px;
  padding-top: 180px;
  border-radius: 50%;
}

.usage__circle:nth-child(1) {
  padding-left: 115px;
  margin-left: -30px;
  background: var(--bg-gray);
}

.usage__circle:nth-child(2) {
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  padding-left: 390px;
  padding-right: 90px;
  background: var(--accent);
}

.usage__circle:nth-child(2) .usage__circle-title {
  color: var(--text-light);
}

.usage__circle-title {
  min-height: 90px;
  margin-bottom: 15px;
  font-size: var(--l);
}

.usage__circle-subtitle {
  margin-bottom: 30px;
}

.usage__circle-arrows {
  display: flex;
  gap: 93px;
  margin-bottom: 30px;
}

.usage__circle-arrows span {
  width: 30px;
  height: 30px;
  background: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24.6665 17.6667L16.6665 25.6667L13.9998 25.6667L5.99984 17.6667' stroke='%23C5D800' stroke-width='2' stroke-linejoin='round'/%3E%3Cpath d='M15.333 3L15.333 21.6667' stroke='%23C5D800' stroke-width='2'/%3E%3C/svg%3E%0A") center/contain no-repeat;
}

.usage__circle-text {
  max-width: 309px;
  width: 100%;
  font-weight: 300;
}

.usage__circle-marks {
  position: relative;
  width: 341px;
  margin-left: 70px;
  margin-top: 45px;
}

.usage__circle-marks .item {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 13px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 49px;
  padding: 0 25px;
  border-radius: 26.818px;
  border: 0.894px solid var(--text-dark);
  background: var(--bg);
}

.usage__circle-marks .item:nth-child(1) {
  left: 0;
  top: 0;
  transform: rotate(-21.083deg);
}

.usage__circle-marks .item:nth-child(2) {
  left: 100%;
  top: 0;
  transform: translateX(-100%) rotate(19.088deg);
}

.usage__circle-marks .item:nth-child(3) {
  left: 50%;
  top: 20px;
  transform: translateX(-50%) rotate(-3.112deg);
}

.usage__circle-list ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.usage__circle-list ul li {
  width: 100px;
  padding-top: 50px;
  margin-bottom: 20px;
  background: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24.6665 17.6667L16.6665 25.6667L13.9998 25.6667L5.99984 17.6667' stroke='%23323F48' stroke-width='2' stroke-linejoin='round'/%3E%3Cpath d='M15.333 3L15.333 21.6667' stroke='%23323F48' stroke-width='2'/%3E%3C/svg%3E%0A") center top no-repeat;
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
}

.usage__img {
  position: absolute;
  top: 50%;
  left: 52%;
  transform: translate(-50%, -50%);
  width: 372px;
  height: 372px;
  border-radius: 50%;
  background: center/cover no-repeat;
}

.usage__ticker {
  pointer-events: none;
  margin-top: -100px;
  z-index: 1;
}

.usage__ticker .swiper-wrapper {
  transition-timing-function: linear;
}

.usage__ticker .swiper-slide {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 217.683px;
  color: var(--bg);
  -webkit-text-stroke: 2px var(--accent);
  font-weight: 800;
  letter-spacing: 2.177px;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1.2;
}

.for {
  padding: var(--sp-small) 0;
}

.for__wrap {
  padding: var(--sp);
  background: var(--bg-gray);
  border-radius: var(--br);
}

.for__items {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-bottom: 38px;
  margin-top: 60px;
}

.for__items::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 740px;
  height: 25px;
  background: url("data:image/svg+xml,%3Csvg width='742' height='22' viewBox='0 0 742 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 0V21H741V0' stroke='%23323F48'/%3E%3C/svg%3E%0A") center bottom/contain no-repeat;
}

.for__items .item {
  width: calc((100% - 66px) / 3);
}

.for__items .item__img {
  border-radius: 15px;
  background: center/cover no-repeat;
}

.for__items .item__img::before {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.for__items .item__title {
  margin-top: 20px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}

.for__footer {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 35px;
}

.for__footer-icon {
  flex: 0 0 191px;
  height: 168px;
  margin-right: 85px;
  background: center/contain no-repeat;
}

.for__footer-desc {
  flex: 1 1 auto;
  max-width: 465px;
  font-size: var(--s);
  line-height: 1.5;
}

.for__footer-desc b,
.for__footer-desc strong {
  font-weight: 700;
}

.now {
  padding: var(--sp-small) 0 var(--sp-big);
}

.now__items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 60px;
}

.now__items .item {
  display: flex;
  flex-direction: column;
  width: calc((100% - 40px) / 3);
  border-radius: 15px;
  border: 1px solid #DADEE1;
  overflow: hidden;
  transition: var(--transition);
}

.now__items .item:hover {
  transform: translateY(-20px);
}

.now__items .item__img {
  width: 100%;
  height: 344px;
  background: center/190px no-repeat;
}

.now__items .item__text {
  flex: 1 1 auto;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  min-height: 250px;
  padding: 50px 20px 35px;
  background: var(--bg-gray);
  text-align: center;
  font-size: var(--s);
  line-height: 1.5;
  color: var(--text-gray);
}

.now__items .item__text span {
  display: block;
  margin-bottom: 15px;
  color: var(--text-dark);
  font-size: var(--l);
  font-weight: 600;
  line-height: 130%;
}

.advantages {
  padding: var(--sp) 0;
  background: var(--bg-section);
  border-radius: 20px 20px 0px 0px;
  color: var(--text-light);
}

.advantages__items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 60px;
}

.advantages__items .item {
  display: flex;
  flex-direction: column;
  width: calc((100% - 40px) / 3);
  border-radius: 15px;
  overflow: hidden;
}

.advantages__items .item__img {
  background: center/cover no-repeat;
}

.advantages__items .item__img::before {
  content: "";
  display: block;
  padding-bottom: 43%;
}

.advantages__items .item__text {
  flex: 1 1 auto;
  padding: 40px;
  background: var(--bg);
  text-align: center;
  font-size: var(--s);
  line-height: 1.5;
  color: var(--text-gray);
}

.advantages__items .item__text span {
  display: block;
  margin-bottom: 15px;
  color: var(--text-dark);
  font-size: var(--l);
  font-weight: 600;
  line-height: 130%;
}

.advantages__items .item__text b,
.advantages__items .item__text strong {
  font-weight: 700;
}

.advantages__footer {
  position: relative;
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
}

.advantages__footer-col {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  flex: 1 1 30%;
}

.advantages__text {
  margin-top: 52px;
  margin-right: 55px;
  font-size: var(--l);
  line-height: 130%;
  font-weight: 300;
}

.advantages__text b {
  font-weight: 600;
}

.advantages__text span {
  font-weight: 600;
  color: var(--accent);
}

.advantages__circle {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 0 316px;
  height: 316px;
  background: var(--accent);
  border-radius: 50%;
  color: var(--text-dark);
  text-align: center;
  font-size: var(--m);
}

.advantages__circle > div {
  max-width: 210px;
}

.advantages__circle span {
  display: block;
  margin-bottom: 15px;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.2;
}

.advantages__circle--2 {
  margin-left: 20px;
  border-radius: 464.63px 0px 464.63px 464.63px;
}

.business {
  padding: var(--sp-big) 0 var(--sp-small);
}

.business__wrap {
  position: relative;
  display: flex;
  align-items: center;
  padding: 60px 135px 60px 85px;
  border-radius: var(--br);
  background: var(--bg-gray);
  overflow: hidden;
}

.business__block {
  flex: 0 0 419px;
  height: 419px;
  border-radius: 15px;
  padding: 62px;
  background: var(--bg);
}

.business__title {
  text-align: center;
}

.business__img {
  height: 153px;
  margin-top: 32px;
  background: center/contain no-repeat;
}

.business__content {
  flex: 1 1 auto;
  max-width: 400px;
  margin-left: 126px;
}

.business__content p,
.business__content li {
  margin-bottom: 20px;
}

.business__content b,
.business__content strong {
  font-weight: 700;
}

.business__content ul {
  list-style: disc;
  padding-left: 30px;
}

.business__decor-1,
.business__decor-2,
.business__decor-3,
.business__decor-4 {
  position: absolute;
  right: 0;
  width: 105px;
  height: 105px;
}

.business__decor-1 {
  top: 0;
  transform: translateY(-5%);
  background: url("data:image/svg+xml,%3Csvg width='106' height='105' viewBox='0 0 106 105' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 61.9519C0 27.7368 27.7368 -6.10352e-05 61.9519 -6.10352e-05H105.821V42.2015C105.821 76.4167 78.0842 104.153 43.8691 104.153H0V61.9519Z' fill='white'/%3E%3C/svg%3E%0A") right center/contain no-repeat;
}

.business__decor-2 {
  top: 33.3333333333%;
  transform: translateY(-36%);
  background: url("data:image/svg+xml,%3Csvg width='105' height='105' viewBox='0 0 105 105' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='Frame 3'%3E%3Cg clip-path='url(%23clip0_201_398)'%3E%3Crect id='Rectangle 13' y='0.819336' width='105.821' height='105.821' fill='%23323F48'/%3E%3C/g%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_201_398'%3E%3Cpath d='M0 52.8961C0 24.1349 23.3156 0.819336 52.0768 0.819336H105.821V52.0624C105.821 81.284 81.712 104.973 52.4903 104.973C23.7291 104.973 0 81.6573 0 52.8961Z' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A") right center/contain no-repeat;
}

.business__decor-3 {
  top: 66.6666666667%;
  transform: translateY(-60%);
  background: url("data:image/svg+xml,%3Csvg width='105' height='105' viewBox='0 0 105 105' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 62.0139C0 27.7988 27.7368 0.0619507 61.9519 0.0619507H105.821V42.2636C105.821 76.4787 78.0842 104.215 43.8691 104.215H0V62.0139Z' fill='white'/%3E%3C/svg%3E%0A") right center/contain no-repeat;
}

.business__decor-4 {
  bottom: 0;
  transform: translateY(20%);
  background: url("data:image/svg+xml,%3Csvg width='106' height='105' viewBox='0 0 106 105' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cellipse cx='52.9105' cy='52.3365' rx='52.9105' ry='52.0768' fill='%23323F48'/%3E%3C/svg%3E%0A") right center/contain no-repeat;
}

.number {
  padding: var(--sp-small) 0 var(--sp-big);
}

.number__items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  counter-reset: count;
}

.number__items .item {
  position: relative;
  width: calc((100% - 40px) / 3);
  padding: 20px;
  border-radius: 15px;
  border: 1px solid #DADEE1;
  counter-increment: count;
}

.number__items .item::before {
  content: "";
  position: absolute;
  top: 20px;
  right: 20px;
  width: 71px;
  height: 71px;
  background: url("data:image/svg+xml,%3Csvg width='71' height='71' viewBox='0 0 71 71' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='arrow'%3E%3Cg id='Group 3'%3E%3Cpath id='Vector 43' d='M27.106 20.8202L45.9621 20.8202L49.1048 23.9629L49.1048 42.8191' stroke='%23323F48' stroke-width='2' stroke-linejoin='round'/%3E%3Cpath id='Vector 44' d='M20.8208 49.1045L42.8197 27.1056' stroke='%23323F48' stroke-width='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A") right top/contain no-repeat;
}

.number__items .item__text {
  color: var(--text-gray);
}

.number__items .item__text::before {
  margin-bottom: 6px;
  content: counter(count, decimal-leading-zero);
  font-weight: 700;
  line-height: 130%;
  font-size: 70px;
  color: var(--bg);
  -webkit-text-stroke: 1px var(--accent);
}

.number__items .item__text span {
  display: block;
  min-height: 73px;
  margin-bottom: 15px;
  font-size: var(--h4);
  color: var(--text-dark);
  line-height: 130%;
}

.profit {
  padding: var(--sp) 0;
  border-radius: 20px 20px 0px 0px;
  background: var(--bg-section);
  color: var(--text-light);
}

.profit__container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.profit__content {
  display: flex;
  flex-direction: column;
  max-width: 564px;
}

.profit__desc {
  margin: 30px 0;
  font-weight: 300;
}

.profit__btn {
  margin-top: auto;
}

.profit__items {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 476px;
}

.profit__items .item {
  width: 228px;
  height: 228px;
  padding: 49px 20px 20px;
  font-size: var(--s);
  text-align: center;
  color: var(--text-dark);
}

.profit__items .item span {
  display: block;
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 120%;
  font-size: var(--h4);
}

.profit__items .item:nth-child(1) {
  border-radius: 50%;
  background: var(--bg);
}

.profit__items .item:nth-child(1) b {
  color: #E02401;
}

.profit__items .item:nth-child(2) {
  border-radius: 15px;
  background: center/cover no-repeat;
}

.profit__items .item:nth-child(3) {
  border-radius: 15px;
  background: var(--bg);
}

.profit__items .item:nth-child(3) b {
  color: var(--accent);
}

.profit__items .item:nth-child(4) {
  border-radius: 336.134px 0px 336.134px 336.134px;
  background: var(--accent);
}

.equipment {
  padding: var(--sp-big) 0 var(--sp-small);
}

.equipment__wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 60px;
}

.equipment__text {
  width: 34%;
  padding-top: 30px;
}

.equipment__text b,
.equipment__text strong {
  font-weight: 600;
}

.equipment__text em,
.equipment__text i {
  color: var(--accent);
}

.equipment__text p:not(:last-child) {
  margin-bottom: 20px;
}

.equipment__img {
  width: 26%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 50%;
  background: center/cover no-repeat;
  border: 1px solid #DADEE1;
}

.equipment__img:before {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.why {
  padding: var(--sp-small) 0;
}

.why__wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 60px;
}

.why__col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: calc(50% - 10px);
}

.why__item {
  position: relative;
  border-radius: 15px;
}

.why__item--1,
.why__item--2 {
  min-height: 209px;
  padding: 25px 25px 25px 76px;
  background: var(--bg-gray);
  font-size: var(--s);
  line-height: 150%;
}

.why__item--1 .why__item-number,
.why__item--2 .why__item-number {
  position: absolute;
  top: 22px;
  left: 22px;
  font-weight: 700;
  line-height: 130%;
  font-size: var(--l);
  color: var(--accent);
}

.why__item--1 .why__item-title,
.why__item--2 .why__item-title {
  margin-bottom: 15px;
  font-weight: 600;
}

.why__item--1 .why__item-text,
.why__item--2 .why__item-text {
  color: var(--text-gray);
}

.why__item--3 {
  padding: 65px 55px;
  background: var(--bg-section) right bottom no-repeat;
  color: var(--text-light);
  font-size: var(--h4);
  font-weight: 500;
  line-height: 130%;
}

.why__item--3 strong,
.why__item--3 b {
  color: var(--accent);
}

.complex {
  padding: var(--sp-small) 0;
}

.complex__wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 60px;
}

.complex__wrap-images {
  width: 39%;
  margin: 0;
}

.complex__wrap-images .img {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background: center/cover no-repeat;
}

.complex__wrap-images .img::before {
  content: " ";
  display: block;
  padding-bottom: 100%;
}

.complex__wrap-titles {
  width: 50%;
}

.complex__wrap-titles .title {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 15px 10px;
  border-bottom: 1px solid #DADEE1;
  font-size: var(--s);
  font-weight: 400;
  line-height: 150%;
  /* 24px */
  cursor: pointer;
  transition: var(--transition);
}

.complex__wrap-titles .title.swiper-slide-thumb-active {
  padding-top: 24px;
  padding-bottom: 24px;
  font-size: 27px;
  font-weight: 600;
}

.guarantees {
  padding: var(--sp-small) 0 var(--sp-big);
}

.guarantees__items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 60px;
}

.guarantees__items .item {
  width: calc((100% - 40px) / 3);
  padding: 50px 20px;
  border-radius: 15px;
  border: 1px solid #DADEE1;
}

.guarantees__items .item__icon {
  width: 82px;
  margin: 0 auto 30px;
  border-radius: 50%;
  background: var(--accent) url("data:image/svg+xml,%3Csvg width='82' height='82' viewBox='0 0 82 82' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cmask id='mask0_450_3' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='82' height='82'%3E%3Crect width='82' height='82' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_450_3)'%3E%3C/g%3E%3Cg clip-path='url(%23clip0_450_3)'%3E%3Cpath d='M56.7993 29.3594L36.3331 49.773L26.0002 39.44' stroke='white' stroke-width='3'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_450_3'%3E%3Crect x='24' y='27' width='35' height='27' rx='13.5' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A") center/contain no-repeat;
}

.guarantees__items .item__icon::before {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.guarantees__items .item__text {
  text-align: center;
  color: var(--text-gray);
}

.guarantees__items .item__text span {
  display: block;
  margin-bottom: 15px;
  font-size: var(--l);
  font-weight: 600;
  line-height: 130%;
  color: var(--text-dark);
}

.calculation {
  padding: var(--sp) 0;
  border-radius: 20px 20px 0px 0px;
  background: var(--bg-section);
  color: var(--text-light);
}

.calculation__header {
  display: flex;
  flex-wrap: wrap;
}

.calculation__header-item {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 315px;
  flex: 0 0 315px;
  padding: 20px;
  background: var(--accent);
  font-size: var(--m);
  text-align: center;
  color: var(--text-dark);
}

.calculation__header-item span {
  display: block;
  margin-bottom: 15px;
  font-size: 38px;
  font-weight: 700;
  line-height: 120%;
}

.calculation__header-item--1 {
  border-radius: 50%;
  margin-right: 20px;
}

.calculation__header-item--2 {
  border-radius: 464.63px 0px 464.63px 464.63px;
}

.calculation__header-col {
  flex: 1 1 auto;
  max-width: 490px;
  margin-left: auto;
}

.calculation__header-info {
  display: flex;
  align-items: center;
}

.calculation__header-info p {
  flex: 1 1 auto;
  margin-left: 20px;
}

.calculation__header-info p span,
.calculation__header-info p b {
  font-weight: 600;
}

.calculation__header-icon {
  flex: 0 0 85px;
  border-radius: 50%;
  background: var(--bg) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='23' height='59' viewBox='0 0 23 59' fill='none'%3E%3Cpath d='M11.5 10.6875V37.5619M11.5 48.3117H11.5269' stroke='%23E02401' stroke-width='3.10976' stroke-linecap='square'/%3E%3C/svg%3E") center no-repeat;
}

.calculation__header-icon::before {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.calculation__header-btn {
  margin-top: 40px;
}

.calculation__ticker {
  pointer-events: none;
  margin-top: 22px;
  z-index: 1;
}

.calculation__ticker .swiper-wrapper {
  transition-timing-function: linear;
}

.calculation__ticker .swiper-slide {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 120px;
  color: var(--bg-section);
  -webkit-text-stroke: 1px var(--accent);
  font-weight: 700;
  line-height: 130%;
  letter-spacing: 1.195px;
  text-transform: uppercase;
  white-space: nowrap;
}

.calculation__title {
  margin: 88px 0 60px;
}

.calculation__info {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

.calculation__info-col {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  width: 100%;
  max-width: 515px;
}

.calculation__info-text {
  margin-bottom: 35px;
  font-weight: 600;
  line-height: 130%;
  font-size: var(--l);
}

.calculation__info-text span {
  color: var(--accent);
}

.calculation__info-buttons {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.calculation__info-list {
  width: 100%;
  max-width: 505px;
}

.calculation__info-list li {
  position: relative;
  padding-left: 18px;
}

.calculation__info-list li:not(:last-child) {
  margin-bottom: 10px;
}

.calculation__info-list li b,
.calculation__info-list li strong {
  font-weight: 600;
}

.calculation__info-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.calculation__math {
  padding: var(--sp);
  border-radius: var(--br);
  border: 10px solid #242424;
  background: var(--bg);
  color: var(--text-dark);
}

.calculation__math-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.calculation__math-col {
  width: 100%;
  max-width: 440px;
}

.calculation__math-subtitle {
  margin-top: 20px;
  font-size: var(--s);
  line-height: 1.5;
}

.calculation__math-block {
  display: flex;
  width: 100%;
  max-width: 525px;
  padding: 40px;
}

.calculation__math-block .calculation__math-text {
  flex: 1 1 auto;
  margin-right: 29px;
}

.calculation__math-block .calculation__math-list {
  flex: 0 0 auto;
}

.calculation__math .block {
  border-radius: 15px;
  background: var(--bg-gray);
  font-size: 14px;
  line-height: 150%;
}

.calculation__math span {
  color: var(--accent);
}

.calculation__math b,
.calculation__math strong {
  font-weight: 600;
}

.calculation__math-text {
  font-weight: 600;
}

.calculation__math-items-title {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
}

.calculation__math-items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 30px 0;
}

.calculation__math-items .item {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  width: calc((100% - 40px) / 3);
  padding: 30px 28px;
  text-align: center;
}

.calculation__math-items .item__text {
  margin-bottom: 13px;
}

.calculation__math-result {
  width: 100%;
  height: 102px;
  border-radius: 15px;
  background: var(--accent);
  line-height: 102px;
  text-align: center;
  font-size: var(--l);
  font-weight: 700;
}

.manufacturing {
  padding: var(--sp-big) 0 var(--sp-small);
}

.manufacturing__container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.manufacturing__title {
  width: 100%;
  max-width: 550px;
}

.manufacturing__text {
  width: 100%;
  max-width: 460px;
  margin-right: 65px;
}

.manufacturing__img {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin-top: 60px;
  border-radius: var(--br);
  background: center/cover no-repeat;
}

.manufacturing__img::before {
  content: "";
  display: block;
}

.manufacturing__img--1 {
  width: 34%;
}

.manufacturing__img--1::before {
  padding-bottom: 71.4285714286%;
}

.manufacturing__img--2 {
  width: 59%;
}

.manufacturing__img--2::before {
  padding-bottom: 64.8979591837%;
}

.facilities {
  padding: var(--sp-small) 0 var(--sp-big);
}

.facilities__title {
  max-width: 820px;
  margin-bottom: 15px;
}

.facilities__subtitle {
  max-width: 600px;
}

.facilities__title,
.facilities__subtitle {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.facilities__items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 70px;
}

.facilities__items .item {
  position: relative;
  width: calc((100% - 40px) / 3);
  border-radius: 15px;
}

.facilities__items .item__front {
  padding-bottom: 40px;
  border-radius: 15px;
  background: var(--bg-section);
  overflow: hidden;
  transition: all 0.8s;
}

.facilities__items .item__img {
  background: center/cover no-repeat;
}

.facilities__items .item__img::before {
  content: "";
  display: block;
  padding-bottom: 87.5%;
}

.facilities__items .item b,
.facilities__items .item strong {
  font-weight: 600;
}

.facilities__items .item__title {
  padding: 0 20px;
  margin: 40px 0 20px;
  text-align: center;
  color: var(--text-light);
}

.facilities__items .item__btn--show {
  margin: 0 auto;
  color: var(--accent);
}

.facilities__items .item__btn--show .icon {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='21' viewBox='0 0 20 21' fill='none'%3E%3Cg clip-path='url(%23clip0_201_980)'%3E%3Cpath d='M7.17334 3.84277L14.9044 4.03134L16.2243 5.35127L16.4129 13.0823' stroke='%23C5D800' stroke-width='1.5' stroke-linejoin='round'/%3E%3Cpath d='M4.87939 15.376L13.6789 6.57643' stroke='%23C5D800' stroke-width='1.5'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_201_980'%3E%3Crect width='20' height='21' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E") center/contain no-repeat;
}

.facilities__items .item__btn--hide {
  margin-top: auto;
}

.facilities__items .item__btn--hide .icon {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='21' viewBox='0 0 20 21' fill='none'%3E%3Cg clip-path='url(%23clip0_201_970)'%3E%3Cpath d='M16.4136 6.98438L16.225 14.7154L14.9051 16.0353L7.17405 16.2239' stroke='%23323F48' stroke-width='1.5' stroke-linejoin='round'/%3E%3Cpath d='M4.87988 4.69043L13.6794 13.49' stroke='%23323F48' stroke-width='1.5'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_201_970'%3E%3Crect width='20' height='21' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E") center/contain no-repeat;
}

.facilities__items .item__back {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  padding: 40px;
  border-radius: 15px;
  background: var(--accent);
  transition: all 0.8s;
  opacity: 0;
  transform: translateY(10%);
  pointer-events: none;
}

.facilities__items .item__text p:not(:last-of-type) {
  margin-bottom: 20px;
}

.facilities__items .item.active .item__front {
  transform: scale(0.93) translateY(-10px);
  transform-origin: top;
}

.facilities__items .item.active .item__back {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.analogs {
  padding: var(--sp) 0;
  border-radius: 20px 20px 0px 0px;
  background: var(--bg-section);
}

.analogs__title {
  margin-bottom: 15px;
  color: var(--text-light);
}

.analogs__subtitle {
  text-align: center;
  color: var(--text-light);
}

.analogs__wrap {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 60px 85px;
  margin-top: 60px;
  border-radius: var(--br);
  background: var(--bg);
}

.analogs__wrap .desc {
  width: 200px;
}

.analogs__wrap .desc--2,
.analogs__wrap .desc--3 {
  display: none;
}

.analogs__wrap .desc .item__list li {
  font-weight: 400;
  line-height: 140%;
}

.analogs__wrap .desc .item__price::before {
  content: "";
  position: absolute;
  left: -25px;
  right: 100%;
  top: 0;
  bottom: 0;
  background: var(--accent);
  border-radius: 15px 0 0 15px;
}

.analogs__wrap .item {
  width: calc((100% - 200px) / 3);
  text-align: center;
}

.analogs__wrap .item--1 .item__header .icon {
  background: url(../img/flag-ua.webp) center/contain no-repeat;
}

.analogs__wrap .item--2 .item__header .icon {
  background: url(../img/flag-cn.webp) center/contain no-repeat;
}

.analogs__wrap .item--3 .item__header .icon {
  background: url(../img/flag-eu.webp) center/contain no-repeat;
}

.analogs__wrap .item--3 .item__price::before {
  content: "";
  position: absolute;
  right: -25px;
  left: 100%;
  top: 0;
  bottom: 0;
  background: var(--accent);
  border-radius: 0 15px 15px 0;
}

.analogs__wrap .item__header {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-wrap: wrap;
  min-height: 73px;
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 130%;
  font-size: var(--h4);
}

.analogs__wrap .item__header span {
  width: 100%;
  color: var(--accent);
}

.analogs__wrap .item__header .icon {
  display: inline-block;
  width: 27px;
  height: 34px;
  margin-left: 7px;
}

.analogs__wrap .item__list li {
  padding: 15px 0;
  border-top: 1px solid #DADEE1;
  font-weight: 600;
  line-height: 140%;
}

.analogs__wrap .item__list li b,
.analogs__wrap .item__list li strong {
  color: var(--accent);
}

.analogs__wrap .item__list li del {
  opacity: 0;
  visibility: hidden;
}

.analogs__wrap .item__price {
  position: relative;
  display: flex;
  align-items: center;
  height: 77px;
  background: var(--accent);
  font-weight: 600;
}

.analogs__wrap .item__price span {
  color: var(--text-light);
}

.analogs__wrap .item__footer {
  margin-top: 25px;
  line-height: 130%;
}

.analogs__wrap .item .item__price {
  justify-content: center;
  font-size: var(--h4);
  line-height: 130%;
}

.card-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}

.card-btn .icon {
  width: 20px;
  height: 20px;
  transition: var(--transition);
}

.steps {
  padding: var(--sp-big) 0 var(--sp-big);
}

.steps__items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 60px;
}

.steps__items .item {
  position: relative;
  width: calc((100% - 40px) / 3);
  border-radius: 15px;
}

.steps__items .item__front {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 30px;
  border-radius: 15px;
  background: var(--bg-gray);
  overflow: hidden;
  transition: all 0.8s;
}

.steps__items .item__number {
  font-size: 16px;
  line-height: 130%;
}

.steps__items .item__title {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 150px;
  margin: 39px auto 56px;
  background: center/contain no-repeat;
  color: var(--accent);
}

.steps__items .item b,
.steps__items .item strong {
  font-weight: 600;
}

.steps__items .item__subtitle {
  margin-bottom: 37px;
  font-weight: 600;
}

.steps__items .item__btn {
  margin-top: auto;
}

.steps__items .item__btn--show {
  margin-left: auto;
}

.steps__items .item__btn--show:hover {
  color: var(--accent);
}

.steps__items .item__btn--show:hover .icon {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='21' viewBox='0 0 20 21' fill='none'%3E%3Cg clip-path='url(%23clip0_201_980)'%3E%3Cpath d='M7.17334 3.84277L14.9044 4.03134L16.2243 5.35127L16.4129 13.0823' stroke='%23C5D800' stroke-width='1.5' stroke-linejoin='round'/%3E%3Cpath d='M4.87939 15.376L13.6789 6.57643' stroke='%23C5D800' stroke-width='1.5'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_201_980'%3E%3Crect width='20' height='21' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E") center/contain no-repeat;
}

.steps__items .item__btn--show .icon {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='21' viewBox='0 0 20 21' fill='none'%3E%3Cg clip-path='url(%23clip0_201_980)'%3E%3Cpath d='M7.17334 3.84277L14.9044 4.03134L16.2243 5.35127L16.4129 13.0823' stroke='%23323F48' stroke-width='1.5' stroke-linejoin='round'/%3E%3Cpath d='M4.87939 15.376L13.6789 6.57643' stroke='%23323F48' stroke-width='1.5'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_201_980'%3E%3Crect width='20' height='21' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E") center/contain no-repeat;
}

.steps__items .item__btn--hide {
  margin-top: auto;
}

.steps__items .item__btn--hide .icon {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='21' viewBox='0 0 20 21' fill='none'%3E%3Cg clip-path='url(%23clip0_201_970)'%3E%3Cpath d='M16.4136 6.98438L16.225 14.7154L14.9051 16.0353L7.17405 16.2239' stroke='%23323F48' stroke-width='1.5' stroke-linejoin='round'/%3E%3Cpath d='M4.87988 4.69043L13.6794 13.49' stroke='%23323F48' stroke-width='1.5'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_201_970'%3E%3Crect width='20' height='21' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E") center/contain no-repeat;
}

.steps__items .item__back {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  padding: 30px 30px 15px;
  border-radius: 15px;
  background: var(--accent);
  transition: all 0.8s;
  opacity: 0;
  transform: translateY(10%);
  pointer-events: none;
  font-size: var(--s);
  line-height: 150%;
}

.steps__items .item__text p:not(:last-of-type) {
  margin-bottom: 15px;
}

.steps__items .item.active .item__front {
  transform: scale(0.93) translateY(-10px);
  transform-origin: top;
}

.steps__items .item.active .item__back {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.steps__btn {
  margin: 60px auto 0;
}

.team {
  padding: var(--sp) 0 var(--sp-small);
  border-radius: 20px 20px 0px 0px;
  background: var(--accent);
  overflow: hidden;
}
.team .swiper-container {
  overflow: hidden;
}
.team__title {
  margin-bottom: 60px;
}

.team__title span {
  color: var(--text-light);
}

.team__items .item {
  width: 400px;
  padding: 30px;
  border-radius: 15px;
  background: var(--bg);
}

.team__items .item.active .item__photo {
  opacity: 0;
  visibility: hidden;
}

.team__items .item.active .item__desc {
  visibility: visible;
  opacity: 1;
}

.team__items .item.active .item__btn .show {
  display: none;
}

.team__items .item.active .item__btn .hide {
  display: block;
}

.team__items .item.active .item__btn .icon {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='21' viewBox='0 0 20 21' fill='none'%3E%3Cg clip-path='url(%23clip0_201_970)'%3E%3Cpath d='M16.4136 6.98438L16.225 14.7154L14.9051 16.0353L7.17405 16.2239' stroke='%23323F48' stroke-width='1.5' stroke-linejoin='round'/%3E%3Cpath d='M4.87988 4.69043L13.6794 13.49' stroke='%23323F48' stroke-width='1.5'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_201_970'%3E%3Crect width='20' height='21' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E") center/contain no-repeat;
}

.team__items .item.active .item__btn:hover .icon {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='21' viewBox='0 0 20 21' fill='none'%3E%3Cg clip-path='url(%23clip0_201_970)'%3E%3Cpath d='M16.4136 6.98438L16.225 14.7154L14.9051 16.0353L7.17405 16.2239' stroke='%23C5D800' stroke-width='1.5' stroke-linejoin='round'/%3E%3Cpath d='M4.87988 4.69043L13.6794 13.49' stroke='%23C5D800' stroke-width='1.5'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_201_970'%3E%3Crect width='20' height='21' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E") center/contain no-repeat;
}

.team__items .item__name {
  line-height: 150%;
}

.team__items .item__prof {
  min-height: 100px;
  margin-bottom: 25px;
  font-size: var(--s);
  line-height: 150%;
}

.team__items .item__prof span {
  color: var(--accent);
}

.team__items .item__block {
  position: relative;
  height: 320px;
  cursor: pointer;
}

.team__items .item__photo {
  margin: 0 auto;
  width: 290px;
  border-radius: 50%;
  background: center/cover no-repeat;
  transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.team__items .item__photo:hover {
  transform: scale(1.1);
}

.team__items .item__photo::before {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.team__items .item__desc {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  visibility: hidden;
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.team__items .item__desc li {
  position: relative;
  padding-left: 15px;
  font-size: 14px;
  line-height: 1.5;
}

.team__items .item__desc li:not(:last-child) {
  margin-bottom: 15px;
}

.team__items .item__desc li::before {
  content: " ";
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.team__items .item__desc li b,
.team__items .item__desc li strong {
  color: var(--accent);
}

.team__items .item__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid var(--bg-gray);
}

.team__items .item__btn .hide {
  display: none;
}

.team__items .item__btn:hover {
  color: var(--accent);
}

.team__items .item__btn:hover .icon {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='21' viewBox='0 0 20 21' fill='none'%3E%3Cg clip-path='url(%23clip0_201_980)'%3E%3Cpath d='M7.17334 3.84277L14.9044 4.03134L16.2243 5.35127L16.4129 13.0823' stroke='%23C5D800' stroke-width='1.5' stroke-linejoin='round'/%3E%3Cpath d='M4.87939 15.376L13.6789 6.57643' stroke='%23C5D800' stroke-width='1.5'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_201_980'%3E%3Crect width='20' height='21' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E") center/contain no-repeat;
}

.team__items .item__btn .icon {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='21' viewBox='0 0 20 21' fill='none'%3E%3Cg clip-path='url(%23clip0_201_980)'%3E%3Cpath d='M7.17334 3.84277L14.9044 4.03134L16.2243 5.35127L16.4129 13.0823' stroke='%23323F48' stroke-width='1.5' stroke-linejoin='round'/%3E%3Cpath d='M4.87939 15.376L13.6789 6.57643' stroke='%23323F48' stroke-width='1.5'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_201_980'%3E%3Crect width='20' height='21' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E") center/contain no-repeat;
}

.team__items .item__social {
  display: flex;
  gap: 10px;
  margin-left: auto;
}

.team__items .item__social a {
  display: block;
  width: 16px;
  height: 16px;
  background: center/contain no-repeat;
  transition: var(--transition);
  opacity: 0.9;
}

.team__items .item__social a:hover {
  opacity: 1;
}

.goal {
  padding: var(--sp) 0 var(--sp-small);
  border-radius: 20px 20px 0px 0px;
  background: var(--bg-section);
  color: var(--text-light);
}

.goal__title {
  width: 100%;
  max-width: 975px;
  margin: 0 auto 20px;
}

.goal__subtitle {
  width: 100%;
  max-width: 530px;
  margin: 0 auto 60px;
  text-align: center;
}

.goal__subtitle span {
  color: var(--accent);
}

.goal__img--desctop,
.goal__img--mobile {
  background: center/contain no-repeat;
}

.goal__img--desctop::before {
  content: "";
  display: block;
  padding-bottom: 33.5483870968%;
}

.goal__img--mobile {
  display: none;
}

.contacts {
  padding: var(--sp-big) 0;
  border-radius: 0 0 var(--br) var(--br);
}

.contacts__wrap {
  padding: var(--sp);
  background: var(--accent);
  border-radius: var(--br);
}

.contacts__title {
  text-align: center;
}

.contacts__title span {
  color: var(--text-light);
}

.contacts__items {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 60px;
}

.contacts__items .item {
  display: flex;
  flex-direction: column;
  width: calc((100% - 40px) / 3);
  min-height: 238px;
  padding: 20px;
  border-radius: 15px;
  background: var(--bg);
}

.contacts__items .item__title {
  margin-bottom: 20px;
  font-size: var(--s);
  line-height: 130%;
}

.contacts__items .item__text {
  font-weight: 600;
  line-height: 150%;
  font-size: var(--m);
}

.contacts__items .item__location {
  display: flex;
  align-items: center;
  margin-top: auto;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 150%;
  font-size: 14px;
}

.contacts__items .item__location svg {
  margin-left: 10px;
}

.contacts__items .item__location svg path {
  transition: var(--transition);
}

.contacts__items .item__location:hover svg path {
  stroke: var(--accent);
}

.contacts__items .item a {
  text-decoration: none;
  transition: var(--transition);
}

.contacts__items .item a:not(:last-child) {
  margin-bottom: 4px;
}

.contacts__items .item a:hover {
  color: var(--accent);
}

.contacts__items .item__social li:not(:last-child) {
  margin-bottom: 18px;
}

.contacts__items .item__social a {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}

.contacts__items .item__social a:hover .icon--default {
  opacity: 0;
}

.contacts__items .item__social a:hover .icon--hover {
  opacity: 1;
}

.contacts__items .item__social .icon {
  position: relative;
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

.contacts__items .item__social .icon > div {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: center/contain no-repeat;
  transition: var(--transition);
}

.contacts__items .item__social .icon--hover {
  opacity: 0;
}

.footer {
  padding: var(--sp) 0;
  background: var(--bg-gray);
  position: relative;
}

.footer__container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 14px;
  line-height: 17px;
}

.footer__logo {
  width: 85px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background: center/contain no-repeat;
}

.footer__logo::before {
  content: "";
  display: block;
  padding-bottom: 111.7647058824%;
}

.footer a {
  text-decoration: none;
  transition: var(--transition);
}

.footer a:hover {
  color: var(--text-light);
}

.footer__menu li:not(:last-child) {
  margin-bottom: 20px;
}

.footer__contacts {
  font-size: var(--m);
  line-height: 150%;
}

.footer__contacts-tel {
  margin-bottom: 14px;
  font-weight: 600;
}

.footer__social {
  font-size: var(--m);
  line-height: 150%;
  text-transform: uppercase;
}

.footer__social li:not(:last-child) {
  margin-bottom: 10px;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  flex-wrap: wrap;
  margin-top: 85px;
}

.footer__dev {
  display: flex;
  align-items: center;
}

.footer__dev svg {
  margin-right: 10px;
}

.totop-btn {
  position: fixed;
  bottom: 20px;
  right: 40px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--bg-gray) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='25' viewBox='0 0 25 25' fill='none'%3E%3Cpath d='M2.5332 9.7168L10.9332 1.7168L13.7332 1.7168L22.1332 9.7168' stroke='%23323F48' stroke-width='2' stroke-linejoin='round'/%3E%3Cpath d='M12.333 24.3828L12.333 5.71614' stroke='%23323F48' stroke-width='2'/%3E%3C/svg%3E") center no-repeat;
  z-index: 99;
  cursor: pointer;
  transition: var(--transition);
}

.totop-btn:hover {
  transform: scale(1.1);
}

.modal-overlay {
  display: none;
  padding-top: 1px;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 999;
  overflow: auto;
  align-items: center;
  justify-content: center;
  padding-top: 60px;
}

.modal-overlay .modal-content {
  margin-bottom: 0px;
  border-radius: 4px;
}

.modal-overlay .close-button {
  position: absolute;
  width: 50px;
  height: 50px;
  top: 0;
  right: -60px;
  cursor: pointer;
  transition: 0.2s linear;
  z-index: 11;
}

.modal-overlay .close-button:before {
  background: #fff;
  content: "";
  height: 50px;
  width: 2px;
  display: block;
  transform: translateX(25px) rotate(-45deg);
}

.modal-overlay .close-button:after {
  background: #fff;
  content: "";
  margin-top: -50px;
  height: 50px;
  width: 2px;
  display: block;
  transform: translateX(25px) rotate(45deg);
  transition: 0.2s linear;
}

#modal-video .modal-content {
  height: auto;
  width: 100%;
}

#modal-video .video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

#modal-video .video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modal-form .modal-content {
  position: relative;
  width: 100%;
  margin: 0 auto;
  max-width: 567px;
}

.modal-form__wrap {
  border-radius: var(--br);
  background: var(--bg);
}

.modal-form__title {
  font-size: var(--l);
  font-weight: 600;
  line-height: 130%;
  text-transform: uppercase;
  text-align: center;
}

.modal-form__subtitle {
  font-size: var(--s);
  line-height: 150%;
  /* 24px */
  text-align: center;
}

.modal-form__thanks {
  display: none;
  padding: 120px 70px;
}

.modal-form__thanks-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 40px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100' fill='none'%3E%3Ccircle cx='50' cy='50' r='50' fill='%23C5D800'/%3E%3Cpath d='M27 48.7288L43.1758 65L73 35' stroke='white' stroke-width='5' stroke-linecap='square'/%3E%3C/svg%3E") center/contain no-repeat;
}

.modal-form__thanks-title {
  margin-bottom: 5px;
}

.countdownHolder {
  margin: 0 auto;
  font: 30px/1 Roboto, sans-serif;
  text-align: center;
  letter-spacing: -3px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  /*Параметры цифр */
  /*Параметры подложки для секций */
  /*Параметры секций разделения (:)*/
  /*Параметры вспомогательного текста (дни, часы, минуты, секунды)*/
}

.countdownHolder .position {
  display: inline-block;
  height: 1em;
  overflow: hidden;
  position: relative;
  width: 0.5em;
}

.countdownHolder .digit {
  position: absolute;
  display: block;
  border-radius: 0.2em;
  text-align: center;
  color: #000;
  letter-spacing: -1px;
  left: 50%;
  transform: translateX(-50%);
}

.countdownHolder .countDays,
.countdownHolder .countHours,
.countdownHolder .countMinutes,
.countdownHolder .countSeconds {
  background: #fff;
  border-radius: 5px;
  padding: 10px;
}

.countdownHolder .countDiv {
  display: none;
  width: 10px;
  height: 1em;
  position: relative;
}

.countdownHolder .countDiv:before,
.countdownHolder .countDiv:after {
  background: #444;
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  left: 50%;
  margin-left: -3px;
  top: 0.2em;
  box-shadow: 1px 1px 1px rgba(4, 4, 4, 0.5);
  content: "";
}

.countdownHolder .countDiv:after {
  top: 0.6em;
}

.countdownHolder .textdigit {
  font-size: 15px;
  letter-spacing: 0px;
}

@media (max-width: 1260px) {
  :root {
    --container-width: 760px;
    --sp: 65px;
    --sp-big: 65px;
    --sp-small: 33px;
    --fz-default: 16px;
    --h1: 64px;
    --h2: 35px;
    --h3: 25px;
    --h4: 20px;
    --l: 25px;
    --m: 18px;
    --s: 14px;
  }

  .wrapper {
    overflow: hidden;
  }

  .header.active .header__burger {
    background-image: url("data:image/svg+xml,%3Csvg width='17' height='17' viewBox='0 0 17 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='2' y='1' width='20' height='2' rx='1' transform='rotate(45 2 1)' fill='%23323F48'/%3E%3Crect x='1' y='15' width='20' height='2' rx='1' transform='rotate(-45 1 15)' fill='%23323F48'/%3E%3C/svg%3E%0A");
  }

  .header.active .header__menu {
    transform: translateX(0);
  }

  .header__menu {
    position: fixed;
    top: 50px;
    right: 15px;
    transform: translateX(120%);
    flex-direction: column;
    gap: 20px;
    margin-left: 0;
    padding: 20px 30px;
    border-radius: 15px;
    background: #F0F1F2;
    transition: var(--transition);
  }

  .header__menu a {
    font-size: 18px;
  }

  .header__lang ul {
    bottom: -14px;
  }

  .header__burger {
    display: block;
    margin-left: 30px;
  }

  ._sticky {
    position: relative;
    top: auto;
  }

  .hero__content {
    padding: 65px 0;
  }

  .hero__title span:last-child {
    margin-top: -5px;
  }

  .hero__subtitle {
    max-width: 320px;
  }

  .hero__img {
    top: 30px;
    right: -100px;
  }

  .usage__header {
    margin-bottom: 65px;
  }

  .usage__header-item {
    padding: 10px;
  }

  .usage__header-img {
    flex: 0 0 100px;
    height: 100px;
    margin-right: 15px;
  }

  .usage__header-text {
    padding-top: 0;
  }

  .usage__wrap {
    margin-top: 35px;
  }

  .usage__circle {
    width: 600px;
    height: 600px;
    padding-top: 95px;
  }

  .usage__circle:nth-child(2) {
    position: relative;
    right: -30px;
    top: -30px;
    transform: translateY(0);
    padding-left: 200px;
    padding-right: 50px;
    margin-left: auto;
  }

  .usage__circle-title {
    min-height: 48px;
  }

  .usage__img {
    top: 76%;
    left: 23%;
    width: 330px;
    height: 330px;
  }

  .usage__ticker .swiper-slide {
    font-size: 117px;
  }

  .for__items::before {
    width: 435px;
  }

  .now__items {
    margin-top: 30px;
  }

  .now__items .item {
    width: calc((100% - 20px) / 2);
  }

  .now__items .item:hover {
    transform: translateY(0);
  }

  .advantages__items {
    margin-top: 30px;
  }

  .advantages__items .item {
    width: calc((100% - 20px) / 2);
  }

  .advantages__footer {
    justify-content: center;
    padding-bottom: 80px;
  }

  .advantages__footer-col {
    flex-basis: 100%;
    margin-bottom: 25px;
    text-align: center;
  }

  .advantages__text {
    margin-right: 0;
    margin-top: 0;
  }

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

  .business__wrap {
    padding: 30px 85px 30px 20px;
  }

  .business__block {
    flex: 0 0 240px;
    height: 240px;
    padding: 20px;
  }

  .business__img {
    height: 80px;
    margin-top: 15px;
  }

  .business__content {
    margin-left: 35px;
  }

  .business__content p,
  .business__content li {
    margin-bottom: 10px;
  }

  .business__decor-1,
  .business__decor-2,
  .business__decor-3,
  .business__decor-4 {
    width: 70px;
    height: 70px;
  }

  .number__items .item {
    width: calc((100% - 20px) / 2);
  }

  .number__items .item__text span {
    min-height: 52px;
  }

  .profit__container {
    justify-content: center;
  }

  .profit__content {
    text-align: center;
  }

  .profit__items {
    margin-top: 40px;
  }

  .profit__btn {
    margin: 0 auto;
  }

  .equipment__wrap {
    align-items: center;
  }

  .equipment__text {
    padding-top: 0;
  }

  .why__wrap {
    margin-top: 40px;
  }

  .complex__wrap {
    margin-top: 40px;
  }

  .complex__wrap-titles .title {
    padding: 8px;
  }

  .complex__wrap-titles .title.swiper-slide-thumb-active {
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 16px;
  }

  .guarantees__items {
    margin-top: 40px;
  }

  .guarantees__items .item {
    width: calc((100% - 20px) / 2);
  }

  .calculation__header {
    justify-content: center;
  }

  .calculation__header-col {
    max-width: 100%;
    margin-top: 35px;
    margin-left: 0;
  }

  .calculation__header-info {
    width: 100%;
    max-width: 490px;
    margin: 0 auto;
  }

  .calculation__header-btn {
    margin-left: auto;
    margin-right: auto;
  }

  .calculation__ticker .swiper-slide {
    font-size: 100px;
  }

  .calculation__info {
    justify-content: center;
    padding-bottom: 80px;
  }

  .calculation__info-buttons {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 515px;
  }

  .calculation__math {
    padding: var(--sp) 20px 20px;
    border-width: 5px;
  }

  .calculation__math-header {
    justify-content: center;
  }

  .calculation__math-col {
    margin-bottom: 25px;
    text-align: center;
  }

  .calculation__math-block {
    flex-direction: column;
    padding: 20px;
    text-align: center;
  }

  .calculation__math-block .calculation__math-text {
    margin-right: 0;
    margin-bottom: 13px;
  }

  .calculation__math-items .item {
    width: calc((100% - 20px) / 2);
  }

  .manufacturing__title {
    text-align: center;
    margin: 0 auto 25px;
  }

  .manufacturing__text {
    max-width: none;
    margin-right: 0;
    text-align: center;
  }

  .manufacturing__img {
    margin-top: 40px;
  }

  .facilities__items {
    margin-top: 40px;
  }

  .facilities__items .item {
    width: calc((100% - 20px) / 2);
  }

  .analogs__wrap {
    padding: 0;
    margin-top: 40px;
    background: transparent;
  }

  .analogs__wrap .desc {
    width: 50%;
    max-width: 300px;
    padding: 30px 0 30px 60px;
    margin-bottom: 35px;
    border-radius: 20px 0 0 20px;
    background: var(--bg);
  }

  .analogs__wrap .desc--2,
  .analogs__wrap .desc--3 {
    display: block;
  }

  .analogs__wrap .item {
    width: 50%;
    max-width: 310px;
    padding: 30px 60px 30px 0;
    margin-bottom: 35px;
    border-radius: 0 20px 20px 0;
    background: var(--bg);
  }

  .analogs__wrap .item--1 .item__price::before,
  .analogs__wrap .item--2 .item__price::before {
    content: "";
    position: absolute;
    right: -25px;
    left: 100%;
    top: 0;
    bottom: 0;
    background: var(--accent);
    border-radius: 0 15px 15px 0;
  }

  .analogs__wrap .item__header {
    min-height: 53px;
  }

  .analogs__wrap .item__header .icon {
    height: 26px;
  }

  .steps__items {
    margin-top: 40px;
  }

  .steps__items .item {
    width: calc((100% - 20px) / 2);
  }

  .steps__btn {
    margin-top: 40px;
  }

  .team__title {
    margin-bottom: 40px;
  }

  .team__items .item {
    width: 310px;
    padding: 20px;
  }

  .goal__subtitle {
    margin-bottom: 40px;
  }

  .contacts__title br {
    display: none;
  }

  .contacts__items {
    margin-top: 40px;
  }

  .contacts__items .item {
    width: calc((100% - 20px) / 2);
  }
}

@media (max-width: 760px) {
  :root {
    --container-width: 360px;
    --sp: 40px;
    --fz-default: 16px;
    --h1: 62px;
    --h2: 20px;
    --h3: 18px;
    --l: 18px;
    --m: 16px;
    --s: 14px;
  }

  body {
    padding-top: 88px;
    padding-left: 5px;
    padding-right: 5px;
  }

  .form {
    padding: 30px 20px;
  }

  .header {
    justify-content: space-between;
    padding: 18px 5px;
  }

  .header__logo {
    width: 40px;
    order: 1;
  }

  .header__menu {
    top: 80px;
    right: 5px;
    left: 5px;
    bottom: 0;
    justify-content: center;
    align-items: center;
    border-radius: 0;
  }

  .header__lang {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: 0;
    order: 3;
  }

  .header__lang ul {
    padding: 10px 20px;
    bottom: -19px;
  }

  .header__tel {
    margin-left: 0;
    order: 2;
  }

  .header__burger {
    width: 35px;
    margin-left: 0;
    order: 4;
  }

  .hero__content {
    padding: 28px 0 0;
  }

  .hero__btn {
    width: 100%;
  }

  .hero__img {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    height: 229px;
    margin-top: 30px;
    background-position-x: center;
  }

  .usage__header {
    gap: 15px;
  }

  .usage__header-item {
    width: 100%;
  }

  .usage__circle {
    padding-right: 30px;
    width: 340px;
    height: 340px;
    padding-top: 30px;
    text-align: center;
  }

  .usage__circle:nth-child(1) {
    padding-left: 30px;
    margin-left: 0;
  }

  .usage__circle:nth-child(2) {
    right: 0;
    padding-left: 20px;
    padding-right: 20px;
    top: 15px;
  }

  .usage__circle-title {
    min-height: auto;
    margin-bottom: 10px;
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
  }

  .usage__circle-subtitle {
    margin-bottom: 10px;
    font-size: 14px;
  }

  .usage__circle-arrows {
    margin-bottom: 10px;
    gap: initial;
    justify-content: space-around;
  }

  .usage__circle-arrows span {
    width: 20px;
    height: 20px;
  }

  .usage__circle-text {
    line-height: 1.5;
    font-size: var(--s);
  }

  .usage__circle-marks {
    width: 83%;
    margin: 20px auto 0;
  }

  .usage__circle-marks .item {
    gap: 8px;
    height: 30px;
    padding: 0 15px;
    font-size: 12px;
    border-radius: var(--br);
  }

  .usage__circle-marks .item:nth-child(2) {
    top: -13px;
  }

  .usage__circle-marks .item:nth-child(3) {
    top: -10px;
  }

  .usage__circle-marks .item svg {
    width: 20px;
    height: auto;
    display: block;
  }

  .usage__circle-list ul {
    justify-content: space-around;
  }

  .usage__circle-list ul li {
    width: 80px;
    padding-top: 20px;
    margin-bottom: 15px;
    background-size: 20px;
    font-size: 10px;
    line-height: 1.2;
  }

  .usage__img {
    display: none;
  }

  .usage__ticker {
    margin-top: -15px;
  }

  .usage__ticker .swiper-slide {
    font-size: 65px;
  }

  .for__wrap {
    padding-right: 20px;
    padding-left: 20px;
  }

  .for__items {
    justify-content: center;
    margin-top: 30px;
    padding-bottom: 0;
  }

  .for__items::before {
    display: none;
  }

  .for__items .item {
    width: 100%;
  }

  .for__items .item:not(:last-child) {
    margin-bottom: 30px;
  }

  .for__footer {
    flex-direction: column;
  }

  .for__footer-icon {
    width: 145px;
    flex: 0 0 130px;
    margin: 0 auto 20px;
  }

  .for__footer-desc {
    text-align: center;
  }

  .now__items {
    gap: 15px;
  }

  .now__items .item {
    width: 100%;
  }

  .now__items .item__img {
    height: 200px;
    background-size: 120px;
  }

  .now__items .item__text {
    min-height: 160px;
    padding: 25px 15px 20px;
  }

  .advantages__items {
    gap: 15px;
    margin-top: 20px;
  }

  .advantages__items .item {
    width: 100%;
  }

  .advantages__items .item__text {
    padding: 20px;
  }

  .advantages__footer {
    margin-top: 35px;
  }

  .advantages__btn {
    width: 100%;
  }

  .advantages__circle {
    flex: 0 0 calc(50% - 8px);
    height: 163px;
    font-size: 14px;
    line-height: 150%;
  }

  .advantages__circle > div {
    max-width: 121px;
  }

  .advantages__circle span {
    margin-bottom: 5px;
    font-size: 18px;
    line-height: 1.2;
  }

  .advantages__circle--2 {
    margin-left: 16px;
  }

  .business__wrap {
    flex-wrap: wrap;
    padding: 20px;
  }

  .business__block {
    flex-basis: 100%;
  }

  .business__content {
    margin-left: 0;
    margin-top: 25px;
  }

  .business__decor {
    display: none;
  }

  .number__items {
    gap: 15px;
  }

  .number__items .item {
    width: 100%;
  }

  .profit__items {
    gap: 15px;
  }

  .profit__items .item {
    width: calc((100% - 15px) / 2);
    height: 163px;
    padding: 26px 15px 15px;
  }

  .profit__items .item span {
    margin-bottom: 5px;
  }

  .equipment__wrap {
    margin-top: 20px;
  }

  .equipment__text {
    width: 100%;
    order: 2;
    text-align: center;
  }

  .equipment__text:first-of-type {
    margin-bottom: 20px;
  }

  .equipment__img {
    width: 90%;
    order: 1;
    margin: 0 auto 20px;
  }

  .why__wrap {
    margin-top: 30px;
    gap: 15px;
  }

  .why__col {
    width: 100%;
    gap: 15px;
  }

  .why__item--1,
  .why__item--2 {
    min-height: auto;
    padding: 15px 15px 16px 50px;
  }

  .why__item--1 .why__item-number,
  .why__item--2 .why__item-number {
    top: 15px;
    left: 15px;
    font-size: 20px;
  }

  .why__item--3 {
    padding: 20px 20px 55px;
    background-size: 58%;
    font-size: 18px;
  }

  .complex__wrap {
    margin-top: 30px;
  }

  .complex__wrap-images {
    width: 80%;
    margin: 0 auto;
  }

  .complex__wrap-titles {
    width: 100%;
  }

  .complex__wrap-titles .title {
    text-align: center;
  }

  .guarantees__items {
    margin-top: 30px;
    gap: 15px;
  }

  .guarantees__items .item {
    width: 100%;
    padding: 30px 20px 20px;
  }

  .guarantees__items .item__icon {
    width: 70px;
    margin-bottom: 20px;
  }

  .guarantees__items .item__text span {
    margin-bottom: 5px;
  }

  .calculation__header-item {
    flex: 0 0 163px;
    height: 163px;
    font-size: 14px;
    line-height: 150%;
  }

  .calculation__header-item span {
    margin-bottom: 5px;
    font-size: 18px;
    line-height: 1.2;
  }

  .calculation__header-item--1 {
    margin-right: auto;
  }

  .calculation__header-info p {
    margin-left: 15px;
    font-size: 14px;
    line-height: 1.4;
  }

  .calculation__header-icon {
    flex: 0 0 64px;
  }

  .calculation__ticker .swiper-slide {
    font-size: 65px;
  }

  .calculation__title {
    margin: 50px 0 30px;
  }

  .calculation__info {
    padding-bottom: 150px;
  }

  .calculation__info-text {
    margin-bottom: 15px;
  }

  .calculation__info-buttons {
    gap: 15px;
    justify-content: center;
  }

  .calculation__info-list li:not(:last-child) {
    margin-bottom: 5px;
  }

  .calculation__math-items {
    gap: 15px;
    margin-top: 20px;
  }

  .calculation__math-items .item {
    width: 100%;
  }

  .calculation__math-result {
    height: 64px;
    line-height: 64px;
  }

  .manufacturing__title {
    margin-bottom: 15px;
  }

  .manufacturing__img {
    margin-top: 15px;
  }

  .manufacturing__img--1 {
    width: 100%;
  }

  .manufacturing__img--2 {
    width: 100%;
  }

  .facilities__items {
    gap: 15px;
    margin-top: 30px;
  }

  .facilities__items .item {
    width: 100%;
  }

  .facilities__items .item__front {
    padding-bottom: 25px;
  }

  .facilities__items .item__title {
    margin: 25px 0 15px;
  }

  .facilities__items .item__back {
    padding: 20px;
  }

  .analogs__wrap {
    margin-top: 30px;
    font-size: 14px;
  }

  .analogs__wrap .desc {
    padding: 10px 0 10px 10px;
    margin-bottom: 25px;
  }

  .analogs__wrap .item {
    padding: 10px 10px 10px 0;
    margin-bottom: 25px;
  }

  .analogs__wrap .item__header {
    min-height: 47px;
    font-size: 18px;
  }

  .analogs__wrap .item__header .icon {
    height: 23px;
  }

  .analogs__wrap .item__price {
    height: 57px;
  }

  .analogs__wrap .item__footer {
    margin-top: 15px;
    font-size: 12px;
  }

  .steps__title br {
    display: none;
  }

  .steps__items {
    gap: 15px;
    margin-top: 30px;
  }

  .steps__items .item {
    width: 100%;
  }

  .steps__items .item__front {
    padding-bottom: 25px;
  }

  .steps__items .item__back {
    padding: 20px;
  }

  .steps__btn {
    margin-top: 30px;
  }

  .team__title {
    margin-bottom: 30px;
  }

  .team__items .item__prof {
    min-height: 72px;
    font-size: 12px;
  }

  .team__items .item__block {
    height: 270px;
  }

  .team__items .item__photo {
    width: 230px;
  }

  .team__items .item__desc li {
    font-size: 12px;
  }

  .team__items .item__desc li:not(:last-child) {
    margin-bottom: 10px;
  }

  .team__items .item__footer {
    padding-top: 15px;
  }

  .goal__subtitle {
    margin-bottom: 30px;
  }

  .goal__img--desctop {
    display: none;
  }

  .goal__img--mobile {
    display: block;
  }

  .goal__img--mobile::before {
    content: "";
    display: block;
    padding-bottom: 200%;
  }

  .contacts__items {
    margin-top: 30px;
    gap: 15px;
  }

  .contacts__items .item {
    width: 100%;
    min-height: 200px;
  }

  .footer__container {
    align-items: center;
    flex-direction: column;
    text-align: center;
  }

  .footer__menu {
    margin: 30px 0 20px;
    text-align: center;
  }

  .footer__social {
    margin-top: 35px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 15px;
    margin-top: 40px;
  }

  .totop-btn {
    width: 50px;
    height: 50px;
    right: 20px;
    bottom: 10px;
  }

  .modal-overlay .close-button {
    right: 0;
  }

  .modal-overlay .close-button {
    width: 35px;
    height: 35px;
    top: 6px;
    right: 12px;
  }

  .modal-overlay .close-button:before {
    height: 30px;
    background-color: var(--text-dark);
  }

  .modal-overlay .close-button:after {
    height: 30px;
    margin-top: -30px;
    background-color: var(--text-dark);
  }

  .modal-form__thanks {
    padding: 80px 20px;
  }

  .modal-form__thanks-icon {
    width: 70px;
    height: 70px;
  }
}