:root {
  --color-primary: #23F3A8;
  --color-secondary: #ff8800;
  --color-black: #141519;
}

* {
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  min-width: 320px;
  min-height: 100%;
  font-family: "Inter", sans-serif;
  color: var(--color-black);
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

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

a:focus,
button:focus,
input:focus,
select:focus {
  outline-color: var(--color-primary);
}

img {
  max-width: 100%;
}

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

.body--lock {
  overflow: hidden;
}

.container {
  max-width: 1470px;
  margin: 0 auto;
  padding: 0 15px;
}

.link {
  transition: color 0.3s;
}

.link:hover {
  color: var(--color-primary);
}

.link-more {
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
}

.link-more:after {
  content: "";
  margin-left: 15px;
  flex: 0 0 auto;
  content: "";
  display: inline-block;
  background: url(../img/icons/arrow-right.svg) center/contain no-repeat;
  width: 14px;
  height: 14px;
}

.link-more--down:after {
  transform: rotate(90deg);
}

.link-doc {
  display: flex;
  align-items: center;
  text-transform: uppercase;
  line-height: 1.3;
}

.link-doc__text {
  margin-top: 4px;
  display: block;
  text-transform: none;
}

.link-doc:before {
  content: "";
  margin-right: 12px;
  flex: 0 0 auto;
  content: "";
  display: inline-block;
  background: url(../img/icons/download.svg) center/contain no-repeat;
  width: 16px;
  height: 16px;
}

.btn-back {
  display: inline-flex;
  align-items: center;
  font-family: "SourceCodePro", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.btn-back:before {
  transform: rotate(180deg) translateY(-1px);
  margin-right: 12px;
  flex: 0 0 auto;
  content: "";
  display: inline-block;
  background: url(../img/icons/right.svg) center/contain no-repeat;
  width: 8px;
  height: 14px;
}

.input {
  height: 40px;
  border-radius: 10px;
  border: none;
  padding: 0 15px;
  outline: none;
  border: 1px solid transparent;
  transition: border 0.3s;
}

.input[type=number] {
  appearance: textfield;
}

.input:focus {
  border-color: var(--color-primary);
}

.title1,
.title1 h1,
.title1 h2,
.title1 h3,
.title2,
.title2 h1,
.title2 h2,
.title2 h3,
.title3,
.title3 h1,
.title3 h2,
.title3 h3 {
  line-height: 1.3;
  font-weight: 300;
  text-transform: uppercase;
}

.title1 b,
.title1 h1 b,
.title1 h2 b,
.title1 h3 b,
.title2 b,
.title2 h1 b,
.title2 h2 b,
.title2 h3 b,
.title3 b,
.title3 h1 b,
.title3 h2 b,
.title3 h3 b {
  font-weight: 300;
  color: var(--color-primary);
}

.title1--white,
.title1--white h1,
.title1--white h2,
.title1--white h3,
.title2--white,
.title2--white h1,
.title2--white h2,
.title2--white h3,
.title3--white,
.title3--white h1,
.title3--white h2,
.title3--white h3 {
  color: #fff;
}

.title1--lh-120,
.title1--lh-120 h1,
.title1--lh-120 h2,
.title1--lh-120 h3,
.title2--lh-120,
.title2--lh-120 h1,
.title2--lh-120 h2,
.title2--lh-120 h3,
.title3--lh-120,
.title3--lh-120 h1,
.title3--lh-120 h2,
.title3--lh-120 h3 {
  line-height: 1.2;
}

.title1,
.title1 h1,
.title1 h2,
.title1 h3 {
  font-size: 32px;
}

.title1--big,
.title1--big h1,
.title1--big h2,
.title1--big h3 {
  font-size: 48px;
}

.title2,
.title2 h1,
.title2 h2,
.title2 h3 {
  font-size: 26px;
}

.text {
  font-size: 15px;
  line-height: 1.2;
}

.text b {
  font-weight: 600;
}

.text-primary {
  color: var(--color-primary);
}

.text-white {
  color: #fff;
}

.text-content {
  font-size: 15px;
  line-height: 1.2;
}

.text-content h1,
.text-content h2 {
  font-size: 28px;
  font-weight: 300;
  line-height: 1.3;
  text-transform: uppercase;
}

.text-content h1:not(:first-child),
.text-content h2:not(:first-child) {
  margin-top: 40px;
}

.text-content h1:not(:last-child),
.text-content h2:not(:last-child) {
  margin-bottom: 16px;
}

.text-content b {
  font-weight: 600;
}

.text-content p:not(:first-child) {
  margin-top: 16px;
}

.text-content ul {
  padding-left: 27px;
  list-style-type: disc;
}

.text-content--big {
  font-size: 17px;
}

.btn {
  padding: 23px 32px;
  display: inline-block;
  background-color: var(--color-primary);
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  cursor: pointer;
  transition: color 0.3s, background 0.3s;
}

.btn:hover {
  background-color: #24e49d;
}

.btn--black {
  background-color: var(--color-black);
  color: var(--color-primary);
}

.btn--black:hover {
  background-color: #2b2b2b;
}

.btn--white {
  background-color: #fff;
  color: var(--color-black);
}

.btn--white:hover {
  background-color: #f3f3f3;
}

.btn--black-white {
  background-color: var(--color-black);
  color: #fff;
}

.btn--black-white:hover {
  background-color: #2b2b2b;
}

.btn--border {
  padding-top: 21px;
  padding-bottom: 21px;
  border: 2px solid var(--color-black);
}

.input {
  padding: 30px 24px;
  font-size: 15px;
  line-height: 1;
  border: 2px solid var(--color-black);
  transition: border 0.3s;
  outline: none;
  border-radius: 0;
}

.input::placeholder {
  color: var(--color-black);
}

.input:focus {
  border-color: #1dcc8d;
}

.file-field {
  display: flex;
  justify-content: space-between;
}

.file-field__input {
  display: none;
}

.file-field__name {
  flex: 1 1 auto;
  padding-left: 22px;
  display: flex;
  align-items: center;
  font-size: 15px;
  border: 2px solid var(--color-black);
}

.file-field__label {
  flex: 0 0 120px;
  display: inline-block;
}

.select-field {
  display: none;
}

.easy-select {
  position: relative;
  user-select: none;
}

.easy-select:focus {
  outline: none;
}

.easy-select:focus .easy-select__field {
  border-color: #1dcc8d;
}

.easy-select__input {
  display: none;
}

.easy-select__field {
  position: relative;
  padding: 22px 22px 23px;
  font-size: 15px;
  line-height: 1;
  border: 2px solid var(--color-black);
  transition: border 0.3s;
}

.easy-select__field:after {
  content: "";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  background: #000;
  width: 9px;
  height: 9px;
  clip-path: polygon(100% 25%, 0 25%, 50% 75%);
}

.easy-select__list {
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 100;
  margin-top: 8px;
  display: none;
  width: 100%;
  background: #fff;
  border: 2px solid var(--color-black);
  max-height: 320px;
}

.easy-select__list--active {
  display: block;
}

.easy-select__list .os-viewport {
  max-height: 320px;
}

.easy-select__item {
  padding: 11px 16px;
  font-size: 15px;
  line-height: 1.2;
  transition: background 0.3s;
  cursor: pointer;
}

.easy-select__item--placeholder {
  display: none;
}

.easy-select__item--hover {
  background-color: #f2f2f2;
}

.os-scrollbar {
  padding: 0;
  width: 16px;
}

.os-scrollbar .os-scrollbar-track {
  border-left: 2px solid var(--color-black) !important;
  border-radius: 0;
  background: #fff;
}

.os-scrollbar .os-scrollbar-handle {
  border-radius: 0;
  background: #000;
}

.os-scrollbar.os-scrollbar-vertical .os-scrollbar-handle {
  min-height: 65px;
  max-height: 65px;
}

.checkbox {
  display: flex;
  align-items: flex-start;
}

.checkbox__input {
  display: none;
}

.checkbox__switch {
  margin-top: 3px;
  position: relative;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-black);
  cursor: pointer;
}

.checkbox__switch:before {
  content: "";
  content: "";
  display: inline-block;
  background: url(../img/icons/check.svg) center/contain no-repeat;
  width: 10px;
  height: 8px;
  display: none;
}

.checkbox__input:checked~.checkbox__switch {
  background: var(--color-black);
}

.checkbox__input:checked~.checkbox__switch:before {
  display: block;
}

.checkbox__text {
  margin-left: 12px;
  font-size: 15px;
  line-height: 1.4;
  user-select: none;
}

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

.logo__img {
  object-fit: contain;
}

.logo__text {
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  color: #323D4F;
}

.logo__text:not(:first-child) {
  margin-left: 12px;
}

.tabs__btns {
  border-top: 2px solid var(--color-black);
  border-bottom: 2px solid var(--color-black);
  display: flex;
  overflow-x: auto;
}

.tabs__btn {
  padding: 14px 30px;
  font-size: 28px;
  font-weight: 300;
  line-height: 1.3;
  text-transform: uppercase;
}

.tabs__btn:not(:first-child) {
  border-left: 2px solid var(--color-black);
}

.tabs__btn:last-child {
  border-right: 2px solid var(--color-black);
}

.tabs__btn--active {
  background-color: var(--color-primary);
}

.tabs__item {
  display: none;
}

.tabs__item--active {
  display: block;
}

.menu__header {
  display: none;
}

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

.menu__item {
  position: relative;
}

.menu__item--mobile {
  display: none;
}

.menu__link {
  display: inline-block;
  min-width: 159px;
  text-align: center;
  padding: 21px 24px;
  border-left: 2px solid var(--color-black);
  font-size: 15px;
  color: var(--color-black);
  transition: color 0.3s;
}

.menu__link:hover {
  color: var(--color-primary);
}

.menu__active {
    color: var(--color-primary);
}

.menu__link img {
  margin-right: 8px;
}

.menu__open {
  height: 24px;
  display: none;
}

.menu__lines {
  position: relative;
  z-index: 6;
}

.menu__lines,
.menu__lines:before,
.menu__lines:after {
  height: 2px;
  background-color: var(--color-black);
  display: block;
  transform: rotate(0);
  width: 18px;
  transition: transform 0.3s, width 0.3s;
}

.menu__lines:before,
.menu__lines:after {
  content: "";
  position: absolute;
  right: 0;
}

.menu__lines:before {
  transform: translateY(-5px);
}

.menu__lines:after {
  transform: translateY(5px);
}

.menu__lines--close {
  height: 0;
}

.menu__lines--close:before {
  transform: rotate(-45deg);
  background-color: var(--color-black);
}

.menu__lines--close:after {
  transform: rotate(45deg);
  background-color: var(--color-black);
}

.menu__lang-box {
  display: none;
}

.menu__btn {
  display: none;
}

.dropdown {
  position: relative;
}

.dropdown__main {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1;
  display: none;
}

.dropdown--active .dropdown__main {
  display: block;
}

.lang__toggle {
  display: flex;
  align-items: center;
  padding: 12px 20px 12px 25px;
  color: var(--color-black);
  border-left: 2px solid var(--color-black);
  font-size: 14px;
}

.lang__toggle:hover:after {
  border-top-color: var(--color-primary);
}

.lang__toggle:after {
  content: "";
  border: 4px solid transparent;
  border-top: 4px solid var(--color-black);
  display: inline-block;
  top: 17px;
  margin-left: 8px;
  transform: translateY(2px);
  transition: border-color 0.3s;
}

.lang__dropdown {
  right: 0;
  left: unset;
}

.lang__btns {
  border: 2px solid var(--color-black);
  border-right: none;
  display: flex;
}

.lang__btn {
  padding: 21px 41px;
  min-width: 138px;
}

.lang__btn:not(:first-child) {
  border-left: 2px solid var(--color-black);
}

.lang--menu .lang__dropdown {
  right: -4px;
}

.lang--menu .lang__btns {
  border: 2px solid #fff;
}

.lang--menu .lang__toggle {
  color: var(--color-black);
  border-left: none;
}

.lang--menu .lang__toggle:after {
  border-top-color: var(--color-black);
}

.lang--menu .lang__btn {
  border-color: #fff;
}

.lang.dropdown--active .lang__toggle:after {
  transform: rotate(180deg) translateY(3px);
}

.pagination__list {
  border: 2px solid var(--color-black);
  display: inline-flex;
  overflow-x: auto;
  max-width: 100%;
}

.pagination__active,
.pagination__link {
  display: block;
  flex: 0 0 auto;
  padding: 0 15px;
  min-width: 44px;
  height: 44px;
  line-height: 44px;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
}

.pagination__active:not(:first-child),
.pagination__link:not(:first-child) {
  border-left: 2px solid var(--color-black);
  min-width: 46px;
}

.pagination__active {
  background: var(--color-primary);
}

.pagination--mobile {
  display: none;
}

.header {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 20;
  width: 100%;
  background: #fff;
}

.header__top {
  border-bottom: 2px solid var(--color-black);
}

.header__container {
  display: flex;
}

.header__top-links {
  margin-left: auto;
  min-width: 278px;
  display: flex;
  justify-content: flex-end;
}

.header__top-link {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  padding: 12px 20px 12px 25px;
  color: var(--color-black);
  border-left: 2px solid var(--color-black);
  font-size: 14px;
}

.header__top-link:hover svg {
  fill: var(--color-primary);
}

.header__top-link img,
.header__top-link svg {
  margin-right: 8px;
}

.header__top-link svg {
  fill: var(--color-black);
  transition: fill 0.3s;
}

.header__lang {
  width: 82.5px;
}

.header__bottom {
  border-bottom: 2px solid var(--color-black);
}

.header__bottom-content {
  padding-left: 16px;
  width: 100%;
  display: flex;
  align-items: center;
}

.header__mobile-links {
  display: none;
}

.header__mobile-link {
  font-size: 14px;
  color: var(--color-black);
}

.header__menu {
  margin-left: auto;
}

.header__btn {
  padding: 21px 41px;
  min-width: 278px;
  border-left: 2px solid var(--color-black);
}

.header--fixed {
  position: fixed;
}

.header--index:not(.header--fixed) {
  background: transparent;
}

.header--index:not(.header--fixed) .header__top {
  border-color: #fff;
}

.header--index:not(.header--fixed) .header__top-link {
  color: #fff;
  border-color: #fff;
}

.header--index:not(.header--fixed) .header__top-link:hover {
  color: var(--color-primary);
}

.header--index:not(.header--fixed) .header__top-link:hover svg {
  fill: var(--color-primary);
}

.header--index:not(.header--fixed) .header__top-link svg {
  fill: #fff;
}

.header--index:not(.header--fixed) .header__lang .lang__toggle {
  color: #fff;
  border-color: #fff;
}

.header--index:not(.header--fixed) .header__lang .lang__toggle:hover {
  color: var(--color-primary);
}

.header--index:not(.header--fixed) .header__lang .lang__toggle:hover:after {
  border-top-color: var(--color-primary);
}

.header--index:not(.header--fixed) .header__lang .lang__toggle:after {
  border-top-color: #fff;
}

.header--index:not(.header--fixed) .header__lang .lang__btns {
  border-color: #fff;
}

.header--index:not(.header--fixed) .header__lang .lang__btn:not(:first-child) {
  border-color: #fff;
}

.header--index:not(.header--fixed) .header__menu .menu__link {
  color: #fff;
  border-color: #fff;
}

.header--index:not(.header--fixed) .header__menu .menu__link:hover {
  color: var(--color-primary);
}

.header--index:not(.header--fixed) .header__bottom {
  border-color: #fff;
}

.header--index:not(.header--fixed) .header__btn {
  border-color: #fff;
}

.breadcrumbs {
  padding-bottom: 88px;
}

.breadcrumbs__list {
  display: flex;
  align-items: center;
  font-family: "SourceCodePro", sans-serif;
  line-height: 1.27;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
  overflow-x: auto;
}

.breadcrumbs__item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.breadcrumbs__item:not(:last-child) {
  position: relative;
  margin-right: 20px;
}

.breadcrumbs__item:not(:last-child):after {
  content: "";
  content: "";
  display: inline-block;
  background: url(../img/icons/right.svg) center/contain no-repeat;
  width: 8px;
  height: 14px;
  margin-left: 20px;
}

.breadcrumbs__link,
.breadcrumbs__current {
  color: inherit;
  text-transform: uppercase;
}

.breadcrumbs__link:hover {
  text-decoration: underline;
}

.breadcrumbs__current {
  flex: 0 0 auto;
}

.breadcrumbs--white {
  color: #fff;
}

.main {
  padding-top: 120px;
  overflow: hidden;
}

.main__title {
  margin-bottom: 80px;
  padding: 0 16px;
}

.main__title h1,
.main__title h2 {
  text-transform: none;
}

.main__directs {
  margin-top: 125px;
}

.banner {
  position: relative;
  margin-top: -120px;
  padding-top: 120px;
  padding-bottom: 60px;
  background-position-y: 44%;
  min-height: max(900px, 100vh);
}

.webp .banner {
  background: url(../img/banner.webp) center/cover no-repeat;
  background-position-y: 44%;
}

.no-webp .banner {
  background: url(../img/banner.jpg) center/cover no-repeat;
  background-position-y: 44%;
}

.banner:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
}

.banner__content {
  position: relative;
  z-index: 1;
  padding: 0 16px;
}

.banner__title {
  max-width: 600px;
  color: #fff;
  text-transform: uppercase;
}

.banner__features {
  margin-top: 64px;
}

.banner__features-list {
  margin: -16px -8px;
  display: flex;
  flex-wrap: wrap;
}

.banner__features--indent {
  margin-top: 290px;
  padding-top: 14px;
  border-top: 2px solid #fff;
}

.banner__feature {
  display: flex;
  align-items: center;
  width: calc(25% - 18px);
  margin: 16px 8px;
}

.banner__feature:before {
  content: "";
  margin-right: 24px;
  flex: 0 0 auto;
  background-color: var(--color-primary);
  width: 54px;
  height: 54px;
  border-radius: 50%;
}

.banner__feature-text {
  max-width: 250px;
  color: #fff;
}

.banner__feature--vertical {
  flex-direction: column;
  align-items: flex-start;
}

.banner__feature--vertical:before {
  margin-bottom: 16px;
  margin-right: 0;
  width: 40px;
  height: 40px;
}

.banner__feature--vertical .banner__feature-text {
  max-width: 240px;
  font-weight: 500;
}

.banner__feature--col-4 {
  width: calc(33.3333333333% - 18px);
}

.banner__feature--col-4 .banner__feature-text {
  max-width: 310px;
}

.banner__img {
  position: relative;
  margin: 64px -15px 0;
  padding: 34.2% 15px 0;
  border-top: 2px solid #141519;
  border-bottom: 2px solid #141519;
}

.banner__img img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 30px);
  max-height: 100%;
  border-left: 2px solid #141519;
  border-right: 2px solid #141519;
  object-fit: cover;
}

.banner--white {
  padding-bottom: 0;
  min-height: auto;
  background: #fff;
}

.banner--white:before {
  display: none;
}

.webp .banner--white,
.no-webp .banner--white {
  background: #fff;
}

.banner--white .banner__title {
  max-width: 704px;
  color: var(--color-black);
}

.banner--white .banner__feature-text {
  color: var(--color-black);
}

.banner--company .banner__title {
  max-width: none;
}

.banner--company .banner__features {
  margin-left: auto;
  margin-right: auto;
  max-width: 1292px;
}

.banner--company .banner__img {
  margin-top: 88px;
}

.partners {
  padding: 13px 0 125px;
}

.partners__info {
  margin-bottom: 64px;
  padding: 0 16px;
}

.partners__title {
  max-width: 1056px;
}

.partners__list,
.partners__item {
  border-style: solid;
  border-color: var(--color-black);
}

.partners__list {
  display: flex;
  flex-wrap: wrap;
  border-width: 2px 0 0 0;
}

.partners__item {
  padding: 30px;
  width: 25%;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-width: 0 2px 2px 0;
}

.partners__item:nth-child(4n) {
  border-right: none;
}

.partners__item-img {
  object-fit: contain;
}

.services {
  padding: 16px 0 125px;
  background-color: #000;
}

.services__breadcrumbs {
  padding-left: 16px;
  padding-right: 16px;
}

.services__main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}

.services__title {
  padding-left: 16px;
  max-width: min(704px, 100% - 290px);
}

.services__btn {
  margin: 0 16px;
  flex: 0 0 auto;
}

.services__list-box {
  margin-top: 64px;
  width: 100%;
}

.services__list {
  margin: 0 -12px;
  display: flex;
  flex-wrap: wrap;
}

.services__item {
  position: relative;
  margin: 0 12px;
  padding: 29px;
  width: calc(25% - 24px);
  min-height: 192px;
  border-top: 2px solid rgba(255, 255, 255, 0.5);
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
}

.services__item:before {
  content: "";
  margin-bottom: 19px;
  display: inline-block;
  background-color: var(--color-primary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.services__item:nth-child(4n+1) {
  padding-left: 16px;
}

.services__item:not(:nth-child(4n)):after {
  content: "";
  position: absolute;
  right: -13px;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: calc(100% - 26px);
  background-color: rgba(255, 255, 255, 0.5);
}

.services__item:nth-child(4n+5),
.services__item:nth-child(4n+6),
.services__item:nth-child(4n+7),
.services__item:nth-child(4n+8) {
  border-top: none;
}

.services__item-text {
  max-width: 270px;
  color: #fff;
}

.services__item-text:not(:first-child) {
  margin-top: 16px;
}

.products {
  padding: 16px 0 125px;
}

.products__info {
  padding: 0 16px;
}

.products__list,
.products__item {
  border-style: solid;
  border-color: var(--color-black);
}

.products__list {
  display: flex;
  flex-wrap: wrap;
  border-width: 2px 0 0 0;
}

.products__item {
  width: 25%;
  border-width: 0 2px 2px 0;
}

.products__item:nth-child(4n) {
  border-right-color: transparent;
}

.products__item--col-4 {
  width: 33.3333333333%;
}

.products__item--col-4:nth-child(4n) {
  border-right: 2px solid var(--color-black);
}

.products__item--col-4:nth-child(3n) {
  border-right-color: transparent;
}

.products__models-list {
  counter-reset: models;
}

.products__models {
  border-top: 2px solid var(--color-black);
  counter-increment: models;
}

.products__models:before {
  content: counter(models, decimal-leading-zero);
}

.products__models:last-child {
  border-bottom: 2px solid var(--color-black);
}

.products--pt-0 {
  padding-top: 0;
}

.product-card {
  display: flex;
  flex-direction: column;
}

.product-card__img {
  position: relative;
  padding-top: 74.5%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card__img img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: calc(100% - 30px);
  max-height: calc(100% - 30px);
  object-fit: contain;
}

.product-card__info {
  position: relative;
  padding: 22px 26px 22px 24px;
  width: 100%;
  border-top: 2px solid var(--color-black);
}

.product-card__name {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
}

.product-card__name a {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s;
}

.product-card__name a:hover {
  color: var(--color-primary);
}

.product-card__name a:after {
  content: "";
  display: inline-block;
  background: url(../img/icons/arrow-right.svg) center/contain no-repeat;
  width: 16px;
  height: 16px;
}

.product-card__name a span {
  max-width: 250px;
  display: block;
}

.product-card__text {
  margin-top: 4px;
  max-width: 355px;
}

.product-card__more {
  margin: auto;
  text-align: center;
}

.product-card__more-text {
  display: block;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.3s;
}

.product-card__more-text:not(:first-child) {
  margin-top: 22px;
}

.product-card__more:hover .product-card__more-text {
  color: var(--color-primary);
}

.product-models {
  padding: 40px 16px 38px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}

.product-models:before {
  display: block;
  grid-column: 1/2;
}

.product-models__main {
  max-width: 615px;
  padding-right: 15px;
  grid-column: 2/6;
}

.product-models__title {
  font-size: 28px;
}

.product-models__title h2,
.product-models__title h3 {
  font-size: 28px;
}

.product-models__more {
  margin-top: 16px;
  display: inline-flex;
  grid-column: 2/6;
}

.product-models__img {
  padding-right: 25px;
  grid-column: 6/10;
  grid-row: 1/5;
  text-align: center;
}

.product-models__img img {
  object-fit: contain;
  height: auto;
  max-height: 100%;
}

.product-models__items {
  margin-left: auto;
  width: 100%;
  grid-column: 10/13;
  grid-row: 1/5;
}

.product-models__item {
  display: block;
}

.product-models__item:not(:first-child) {
  margin-top: 16px;
}

.model__main {
  padding: 0 16px;
}

.model__mobile-back {
  display: none;
}

.model__info {
  margin-top: 64px;
  padding-left: 25px;
  max-width: 690px;
  display: flex;
  align-items: flex-start;
}

.model__img {
  margin-right: 35px;
  max-width: 42%;
}

.model__products {
  margin-top: 86px;
  border-top: 2px solid var(--color-black);
}

.product-model {
  padding: 64px 16px 62px;
  display: flex;
  align-items: flex-start;
  border-bottom: 2px solid var(--color-black);
}

.product-model__img {
  margin-right: auto;
  max-width: 240px;
  object-fit: contain;
  flex: 0 0 auto;
}

.product-model__main {
  flex: 0 0 50%;
  margin: 0 45px;
}

.product-model__more {
  max-width: 320px;
}

.callback__content {
  padding: 0 16px;
  border-top: 2px solid var(--color-black);
}

.callback__main {
  border-left: 2px solid var(--color-black);
  border-right: 2px solid var(--color-black);
  padding: 16px 16px 127px;
  background-color: var(--color-primary);
}

.callback__breadcrumbs {
  padding-bottom: 92px;
}

.callback__info {
  margin: 0 auto;
  max-width: 535px;
  text-align: center;
}

.callback__btn {
  margin-top: 32px;
  padding-left: 25px;
  padding-right: 25px;
}

.directs {
  padding: 16px 0 125px;
  background-color: #000;
  overflow: hidden;
}

.directs__content {
  padding-left: 16px;
}

.directs__title {
  width: 704px;
  max-width: calc(50% - 28px);
}

.directs__main {
  display: flex;
  align-items: flex-end;
}

.directs__arrows {
  margin-right: 43px;
  flex: 0 0 auto;
}

.directs__list {
  margin: -96px -12px 0;
  display: flex;
  flex-wrap: wrap;
}

.directs__item {
  position: relative;
  margin: 0 12px;
  padding: 36px;
  width: calc(25% - 24px);
  min-height: 193px;
  border-top: 2px solid rgba(255, 255, 255, 0.5);
}

.directs__item:before {
  content: "";
  height: calc(100% - 22px);
  width: 2px;
  position: absolute;
  left: -13px;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.5);
}

.directs__item:nth-last-child(1):not(.directs__item--empty, .directs__item--img),
.directs__item:nth-last-child(2):not(.directs__item--empty, .directs__item--img),
.directs__item:nth-last-child(3):not(.directs__item--empty, .directs__item--img),
.directs__item:nth-last-child(4):not(.directs__item--empty, .directs__item--img) {
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
}

.directs__item-num {
  margin-bottom: 40px;
  font-family: "SourceCodePro", sans-serif;
  font-size: 15px;
  line-height: 1.27;
  letter-spacing: 0.04em;
  color: var(--color-primary);
}

.directs__item-img {
  max-height: 190px;
}

.directs__item--empty {
  padding: 0;
  border: none;
}

.directs__item--empty:before {
  display: none;
}

.directs__item--img {
  padding: 0 8px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.directs__item--img:before {
  display: none;
}

.team {
  padding: 16px 0 125px;
}

.team__content {
  padding: 0 16px;
}

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

.team__img {
  margin-right: 60px;
  width: 290px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.direct {
  padding: 16px 0 125px;
  border-top: 2px solid var(--color-black);
}

.direct__content {
  padding: 0 16px;
}

.direct__quote {
  margin-top: 40px;
  margin-left: 25%;
  max-width: 345px;
}

.contacts {
  padding-bottom: 125px;
}

.contacts__breadcrumbs {
  padding-left: 16px;
  padding-right: 16px;
}

.contacts__main {
  border-bottom: 2px solid var(--color-black);
  display: grid;
  grid-template-areas: "A A F F" "B C F F" "D E G H";
  grid-auto-columns: 1fr;
}

.contacts__item {
  padding: 16px 16px 14px;
  display: flex;
  align-items: center;
  height: 100%;
  border-right: 2px solid var(--color-black);
  border-top: 2px solid var(--color-black);
  font-size: 28px;
  font-weight: 300;
  line-height: 1.286;
  color: var(--color-black);
  text-transform: uppercase;
}

.contacts__item:nth-child(1) {
  grid-area: A;
}

.contacts__item:nth-child(2) {
  grid-area: B;
}

.contacts__item:nth-child(3) {
  grid-area: C;
}

.contacts__item:nth-child(4) {
  grid-area: D;
}

.contacts__item:nth-child(5) {
  grid-area: E;
}

.contacts__item:nth-child(6) {
  grid-area: F;
  border-right-color: transparent;
}

.contacts__item:nth-child(7) {
  grid-area: G;
}

.contacts__item:nth-child(8) {
  grid-area: H;
  border-right-color: transparent;
}

.contacts__item-img {
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contacts__item-img img {
  height: 140px;
  max-height: 100%;
  object-fit: contain;
}

.contacts__map {
  position: relative;
  margin-top: 88px;
  padding-top: 33.75%;
  border-top: 2px solid var(--color-black);
  border-bottom: 2px solid var(--color-black);
}

.contacts__map iframe {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  width: calc(100% - 32px);
  height: 100%;
  border: none;
  border-left: 2px solid var(--color-black);
  border-right: 2px solid var(--color-black);
}

.news {
  padding-bottom: 125px;
}

.news__breadcrumbs {
  padding-left: 16px;
  padding-right: 16px;
}

.news__item {
  border-top: 2px solid var(--color-black);
}

.news__item:last-child {
  border-bottom: 2px solid var(--color-black);
}

.news__pagination {
  margin-top: 48px;
  padding: 0 16px;
}

.news--pagination {
  padding-bottom: 48px;
}

.news-item {
  padding: 0 16px;
}

.news-item__content {
  min-height: 275px;
  display: flex;
  border-left: 2px solid var(--color-black);
  border-right: 2px solid var(--color-black);
}

.news-item__img {
  width: 25%;
  flex: 0 0 auto;
}

.news-item__img img {
  display: block;
  height: 100%;
  object-fit: cover;
}

.news-item__main {
  padding: 40px 45px 40px 40px;
  flex: 1 1 auto;
}

.news-item__meta {
  margin-bottom: 11px;
  display: flex;
  align-items: center;
}

.news-item__date {
  font-family: "SourceCodePro", sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.27;
  letter-spacing: 0.04em;
}

.news-item__more {
  margin-left: auto;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-item__more img {
  width: 21px;
  height: 21px;
}

.news-item__title {
  max-width: 664px;
}

.news-item__text {
  margin-top: 12px;
  max-width: 664px;
}

.news-about {
  padding-bottom: 125px;
}

.news-about__date {
  margin-bottom: 88px;
  padding: 0 16px;
  font-family: "SourceCodePro";
  font-weight: 500;
  font-size: 15px;
  line-height: 1.27;
  letter-spacing: 0.04em;
}

.news-about__header {
  margin-bottom: 88px;
  display: flex;
  border-top: 2px solid var(--color-black);
  border-bottom: 2px solid var(--color-black);
}

.news-about__info {
  padding: 64px 16px;
  flex: 1 1 auto;
}

.news-about__title {
  max-width: 664px;
}

.news-about__img {
  width: 50%;
  flex: 0 0 auto;
  min-height: 354px;
  padding-right: 14px;
}

.news-about__img img {
  display: block;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.news-about__main {
  max-width: 736px;
  padding: 0 16px;
}

.news-about__text {
  font-size: 15px;
  line-height: 1.2;
}

.news-about__text h1,
.news-about__text h2,
.news-about__text h3 {
  font-weight: 300;
  line-height: 1.3;
  text-transform: uppercase;
}

.news-about__text h1:not(:last-child),
.news-about__text h2:not(:last-child),
.news-about__text h3:not(:last-child) {
  margin-bottom: 32px;
}

.news-about__text h1,
.news-about__text h2 {
  font-size: 32px;
}

.news-about__text h3 {
  font-size: 26px;
}

.news-about__text p:not(:first-child) {
  margin-top: 24px;
}

.news-about__text--excerpt {
  margin-bottom: 64px;
}

.not-found {
  padding-bottom: 155px;
}

.not-found__content {
  padding: 0 16px;
}

.not-found__main {
  margin: 25px auto 0;
  max-width: 590px;
  text-align: center;
}

.not-found__img {
  margin-bottom: 24px;
  width: 334px;
}

.not-found__text {
  margin: 24px auto 0;
  max-width: 392px;
  text-align: center;
}

.not-found__btn {
  margin-top: 48px;
  padding: 1px 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
}

.not-found__btn:after {
  content: "";
  margin-left: 15px;
  content: "";
  display: inline-block;
  background: url(../img/icons/arrow-right.svg) center/contain no-repeat;
  width: 14px;
  height: 14px;
}

.app__main {
  padding: 0 16px;
}

.app__title {
  max-width: 704px;
}

.app__links {
  margin-top: 41px;
  display: flex;
  flex-direction: column;
}

.app__link {
  line-height: 1.3;
  display: flex;
  text-transform: uppercase;
}

.app__link:not(:first-child) {
  margin-top: 24px;
}

.app__link:before {
  content: "";
  margin-top: 3px;
  margin-right: 12px;
  content: "";
  display: inline-block;
  background: url(../img/icons/download.svg) center/contain no-repeat;
  width: 16px;
  height: 16px;
}

.app__form {
  margin-top: 40px;
  border-top: 2px solid var(--color-black);
}

.app-form {
  padding-top: 16px;
}

.app-form__breadcrumbs {
  padding-bottom: 20px;
  padding-left: 16px;
  padding-right: 16px;
}

.app-form__message {
  margin-top: 16px;
  border-left: 3px solid;
  border-radius: 2px;
}

.app-form__message--success {
  border-color: #23F3A8;
}

.app-form__message--error {
  border-color: #ff4d4f;
}

.app-form__field-error {
  margin-top: 8px;
  color: #ff4d4f;
  font-size: 14px;
  line-height: 1.3;
}

.app-form__message .breadcrumbs__current {
  color: var(--color-black, #141519);
  text-transform: none;
  font-weight: 500;
  letter-spacing: 0;
}

.app-form__message--success.app-form__breadcrumbs {
  padding-bottom: 0;
  margin-bottom: 16px;
}

.header__lang,
.menu__lang-box {
  display: none;
}

.app-form__body {
  padding: 0 16px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.app-form__main {
  margin-bottom: 10px;
  max-width: 352px;
}

.app-form__text:not(:first-child) {
  margin-top: 16px;
}

.app-form__field:not(:first-child) {
  margin-top: 24px;
}

.app-form__footer {
  margin-top: 53px;
  padding: 0 16px;
  border-top: 2px solid var(--color-black);
}

.app-form__submit {
  width: 100%;
  border-left: 2px solid var(--color-black);
  border-right: 2px solid var(--color-black);
}

.converter__header {
  padding: 0 16px 86px;
}

.converter__title {
  max-width: 1056px;
}

.converter__form {
  border-top: 2px solid var(--color-black);
}

.converter__result {
  border-top: 2px solid var(--color-black);
}

.convert-form {
  padding: 86px 16px;
}

.convert-form__main {
  max-width: 1056px;
}

.convert-form__item {
  display: flex;
}

.convert-form__item:not(:first-child) {
  margin-top: 40px;
}

.convert-form__label {
  padding-right: 5px;
  width: 33.3333333333%;
  flex: 0 0 auto;
  font-family: "SourceCodePro", sans-serif;
  font-weight: 500;
  line-height: 1.27;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.convert-form__select {
  width: 100%;
}

.convert-form__input {
  width: 100%;
}

.convert-form__checkbox:not(:first-child) {
  margin-top: 21px;
}

.convert-form__footer {
  margin-top: 64px;
  margin-left: 33.3333333333%;
  display: flex;
}

.convert-form__footer-btn {
  min-width: 280px;
}

.convert-form__footer-btn:not(:first-child) {
  margin-left: 16px;
}

.convert-result {
  padding: 16px 0 125px;
}

.convert-result__breadcrumbs {
  padding-left: 16px;
  padding-right: 16px;
}

.convert-result__item {
  display: flex;
  border-top: 2px solid var(--color-black);
  font-size: 28px;
  font-weight: 300;
  line-height: 1.2;
}

.convert-result__item:last-child {
  border-bottom: 2px solid var(--color-black);
}

.convert-result__name,
.convert-result__value {
  display: block;
  flex: 1 1 100%;
  padding: 16px;
  text-transform: uppercase;
}

.convert-result__value {
  border-left: 2px solid var(--color-black);
}

.product__header {
  padding: 0 16px;
}

.product__title {
  margin-bottom: 40px;
}

.product__mobile-back {
  display: none;
}

.product__main {
  margin-bottom: 125px;
  display: flex;
  border-top: 2px solid var(--color-black);
  border-bottom: 2px solid var(--color-black);
}

.product__sliders {
  border-right: 2px solid var(--color-black);
  position: relative;
  display: flex;
  min-height: 384px;
  flex: 0 0 368px;
}

.product__big-slider {
  flex: 1 1 auto;
  position: relative;
}

.product__big-slide {
  padding: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
}

.product__big-slide img {
  max-height: 100%;
  object-fit: cover;
}

.product__big-slide--video {
  padding: 0;
}

.product__big-slide-video {
  position: relative;
  width: 100%;
  height: 100%;
}

.product__big-slide-video iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.product__nav-wrapper {
  border-right: 2px solid var(--color-black);
  position: relative;
  flex: 0 0 auto;
}

.product__nav-slider {
  max-height: 100%;
}

.product__nav-slide {
  position: relative;
  padding: 5px 7px;
  width: 62px;
  height: 62px;
  cursor: pointer;
}

.product__nav-slide:not(:first-child) {
  height: 64px;
  border-top: 2px solid var(--color-black);
}

.product__nav-slide:last-child {
  height: 66px;
  border-bottom: 2px solid var(--color-black);
}

.product__nav-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product__nav-slide.swiper-slide-thumb-active {
  background-color: var(--color-primary);
}

.product__nav-slide--video {
  position: relative;
  padding: 0;
}

.product__nav-slide--video:before {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  content: "";
  display: inline-block;
  background: url(../img/icons/play.svg) center/contain no-repeat;
  width: 20px;
  height: 20px;
}

.product__nav-slide--video img {
  object-fit: cover;
}

.product__slider-next,
.product__slider-prev {
  position: absolute;
  top: 50%;
  z-index: 1;
  transform: translateY(-50%);
  display: none;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.product__slider-next:before,
.product__slider-prev:before {
  content: "";
  display: inline-block;
  background: url(../img/icons/right-green.svg) center/contain no-repeat;
  width: 12px;
  height: 20px;
}

.product__slider-next.swiper-button-disabled,
.product__slider-prev.swiper-button-disabled {
  opacity: 0.3;
  cursor: default;
}

.product__slider-prev {
  left: 8px;
}

.product__slider-prev:before {
  transform: rotate(180deg);
}

.product__slider-next {
  right: 8px;
}

.product__excerpt {
  padding: 64px 62px;
  max-width: 924px;
}

.product__excerpt-more {
  margin-top: 24px;
}

.product__tabs {
  margin-bottom: 125px;
}

.product__column {
  display: flex;
  padding: 0 16px;
}

.product__column-text {
  padding-top: 62px;
  padding-right: 42px;
  flex: 0 0 calc(50% - 3px);
}

.product__column-img {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 2px solid var(--color-black);
  border-right: 2px solid var(--color-black);
}

.product__column-img img {
  display: block;
  object-fit: contain;
  height: auto;
}

.product__column--img {
  border-bottom: 2px solid var(--color-black);
}

.product__column--img .product__column-text {
  padding-bottom: 40px;
}

.product__docs {
  margin: -32px -15px 0;
  padding: 64px 16px 0;
  display: flex;
  flex-wrap: wrap;
}

.product__doc {
  margin: 32px 15px 0;
  width: calc(50% - 30px);
}

.product__doc:before {
  width: 21px;
  height: 21px;
  margin-right: 21px;
}

.footer__content {
  border-top: 2px solid var(--color-black);
  padding: 40px 0;
  display: flex;
  justify-content: space-between;
}

.footer__copyright {
  font-size: 14px;
  line-height: 1.2;
}

.footer__menu {
  display: flex;
}

.footer__menu-item:not(:first-child) {
  margin-left: 32px;
}

.footer__menu-link {
  font-size: 14px;
  line-height: 1.2;
}

.popup {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 50;
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: visibility .4s, opacity .4s;
  overflow-y: auto;
}

.popup:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

.popup__content {
  position: relative;
  max-width: calc(100vw - 50px);
  max-height: calc(100vh - 50px);
  border-radius: 6px;
  transition: transform .4s;
  transform: translateY(20px);
}

.popup__video {
  position: relative;
  width: 800px;
  max-width: 100%;
  padding-top: min(56.25%, calc(100vh - 50px));
}

.popup__video iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.popup__close {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup__close:before {
  content: "";
  display: inline-block;
  background: url(../img/icons/close.svg) center/contain no-repeat;
  width: 20px;
  height: 20px;
}

.popup--show {
  display: flex;
}

.popup--active {
  opacity: 1;
  visibility: visible;
}

.popup--active .popup__content {
  transform: translate(0, 0);
}
