:root {
  --beige: #fef6f2;
  --black: #000;
  --black20: rgba(0, 0, 0, 0.2);
  --black30: rgba(0, 0, 0, 0.3);
  --black50: rgba(0, 0, 0, 0.5);
  --black70: rgba(0, 0, 0, 0.7);
  --white: #fff;
  --green: #8dc9a0;
  --hoverGreen: #458a5b;
  --lightGreen: #e2f4e7;
  --gap: 20px;
}

@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: block;
}
* {
  margin: 0;
  padding: 0;
  border: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -moz-tap-highlight-color: rgba(0, 0, 0, 0);
  -o-tap-highlight-color: rgba(0, 0, 0, 0);
  -ms-tap-highlight-color: rgba(0, 0, 0, 0);
  tap-highlight-color: rgba(0, 0, 0, 0);
}

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

:focus,
:active {
  outline: none;
}

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

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

html,
body {
  font-size: 18px;
  line-height: 140%;
  font-family: "Montserrat";
  font-weight: 400;
  color: var(--black);
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: var(--beige);
}

main {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

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

button {
  cursor: pointer;
  outline: none;
  background: transparent;
}

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

textarea {
  resize: none;
}

a {
  color: var(--black);
}

a:not([class]) {
  color: var(--green);
}

a:not([class]):hover {
  text-decoration: underline;
}

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

input,
button,
textarea {
  font-family: "Montserrat";
  font-weight: 400;
  font-size: inherit;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

input[type=number],
input[type=number]:hover,
input[type=number]:focus {
  -webkit-appearance: none;
  appearance: none;
  -moz-appearance: textfield;
}

img {
  max-width: 100%;
  max-height: 100%;
}

ul li {
  list-style: none;
}

img {
  vertical-align: middle;
}

iframe {
  width: 100%;
}

input:-webkit-autofill {
  background: #ffffff;
  -webkit-transition: 10000000000s linear;
  transition: 10000000000s linear;
}

.header-box {
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
}

.header-box .header {
  position: static;
  background: transparent;
}

.header-box .header path {
  stroke: var(--white);
}

.header-box .header a {
  color: var(--white);
}

.header-box .header .btn {
  background: var(--white);
  color: var(--black);
}

.header-box .header .btn:hover {
  background: var(--green);
  color: var(--beige);
}

.header {
  padding: 20px 0;
  position: relative;
  z-index: 100;
  background: var(--beige);
}

.header a:not(.btn) {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.header a:not(.btn):hover {
  color: var(--green);
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}

.header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 232px;
}

.header__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}

.header__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px;
}

.header__icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}

.header__icons-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header .btn {
  padding: 18px;
  min-width: 191px;
}

.header__mobile {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 40px;
}

.header__mobile p:not(:last-child) {
  margin: 0 0 15px 0;
}

.header__close {
  display: none;
}

.header__burger {
  display: none;
}

.footer {
  padding: 50px 0;
  background: var(--green);
  color: var(--white);
}

.footer a {
  color: var(--white);
}

.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 10px 30px;
}

.footer__inner:not(:last-child) {
  margin: 0 0 60px 0;
}

.footer__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 243px;
}

.footer__menu-item:not(:last-child) {
  margin: 0 0 10px 0;
}

.footer__contacts {
  text-align: right;
}

.footer__contacts p:not(:last-child) {
  margin: 0 0 10px 0;
}

.footer__social {
  margin: 30px 0 0 0;
}

.footer a:not(.btn) {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.footer a:not(.btn):hover {
  color: var(--hoverGreen);
  text-decoration: none;
}

h1,
.h1 {
  font-weight: 500;
  font-size: 60px;
  text-transform: uppercase;
  line-height: 140%;
}

h2,
.h2 {
  font-weight: 400;
  font-size: 42px;
  line-height: 130%;
  text-transform: uppercase;
}

h2:not([class]),
.h2:not([class]) {
  margin: 80px 0 40px 0;
}

h2:not([class]):first-child,
.h2:not([class]):first-child {
  margin-top: 0 !important;
}

h2:not([class]):last-child,
.h2:not([class]):last-child {
  margin-bottom: 0 !important;
}

h3,
.h3 {
  font-weight: 500;
  font-size: 30px;
  line-height: 130%;
}

h3:not([class]),
.h3:not([class]) {
  margin: 80px 0 30px 0;
}

h3:not([class]):first-child,
.h3:not([class]):first-child {
  margin-top: 0 !important;
}

h3:not([class]):last-child,
.h3:not([class]):last-child {
  margin-bottom: 0 !important;
}

h4,
.h4,
th {
  font-weight: 700;
  font-size: 24px;
  line-height: 130%;
}

h4:not([class]),
.h4:not([class]),
th:not([class]) {
  margin: 60px 0 30px 0;
}

h4:not([class]):first-child,
.h4:not([class]):first-child,
th:not([class]):first-child {
  margin-top: 0 !important;
}

h4:not([class]):last-child,
.h4:not([class]):last-child,
th:not([class]):last-child {
  margin-bottom: 0 !important;
}

h5,
.h5 {
  font-weight: 600;
  font-size: 24px;
  line-height: 130%;
}

h5:not([class]),
.h5:not([class]) {
  margin: 40px 0 20px 0;
}

h5:not([class]):first-child,
.h5:not([class]):first-child {
  margin-top: 0;
}

h5:not([class]):last-child,
.h5:not([class]):last-child {
  margin-bottom: 0;
}

h6,
.h6 {
  font-weight: 500;
  font-size: 20px;
  line-height: 130%;
}

h6:not([class]),
.h6:not([class]) {
  margin: 40px 0 20px 0;
}

h6:not([class]):first-child,
.h6:not([class]):first-child {
  margin-top: 0;
}

h6:not([class]):last-child,
.h6:not([class]):last-child {
  margin-bottom: 0;
}

th {
  margin: 0 !important;
}

ol:not([class]),
ul:not([class]) {
  margin: 20px 0 30px 0;
  padding: 0 0 0 20px;
}

ol:not([class]) li:not(:last-child),
ul:not([class]) li:not(:last-child) {
  margin: 0 0 15px 0;
}

ul:not([class]) li {
  list-style-type: disc;
}

ul:not([class]) li::marker {
  color: var(--green);
}

img {
  display: block;
}

img:not(:last-child) {
  margin: 40px 0;
}

p img {
  display: inline-block;
}

p:not(:last-child) {
  margin: 0 0 20px 0;
}

main table:not([class]) {
  border-radius: 10px;
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse;
  margin: 40px 0;
}

main table:not([class]) tr:last-child td:first-child {
  border-radius: 0 0 0 10px;
}

main table:not([class]) tr:last-child td:last-child {
  border-radius: 0 0 10px 0;
}

main table:not([class]):last-child {
  margin-bottom: 0;
}

main table:not([class]) {
  display: block;
}

main table:not([class]) tbody,
main table:not([class]) th,
main table:not([class]) td {
  display: block;
}

main table:not([class]) tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

main table:not([class]) th,
main table:not([class]) td {
  text-align: center;
  padding: 30px 20px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

main table:not([class]) th {
  background: var(--green);
  color: var(--white);
}

main table:not([class]) th:not(:last-child) {
  border-right: 1px solid var(--white);
}

main table:not([class]) th:first-child {
  border-radius: 10px 0 0 0;
}

main table:not([class]) th:last-child {
  border-radius: 0 10px 0 0;
  border-right: 2px solid transparent;
}

main table:not([class]) td {
  border: 1px solid var(--green);
  border-width: 0 1px 1px 0;
}

main table:not([class]) td:first-child {
  border-width: 0 1px 1px 1px;
}

.page-body {
  padding: 0 0 120px 0;
}

.text {
  font-size: 24px;
  line-height: 140%;
}

.text-1 {
  font-weight: 500;
  font-size: 18px;
  line-height: 130%;
}

.text-2 {
  font-size: 16px;
  line-height: 130%;
}

.text-3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 130%;
}

.text-4 {
  font-size: 14px;
  line-height: 130%;
}

.text-5 {
  font-size: 12px;
  line-height: 130%;
}

.numbers {
  font-weight: 700;
  font-size: 24px;
  line-height: 130%;
}

.button-text {
  font-size: 18px;
  line-height: 130%;
}

.button-text-1 {
  font-size: 16px;
  line-height: 130%;
}

.menu-text {
  font-size: 18px;
  line-height: 130%;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.row:not(:last-child) {
  margin: 80px 0;
}

.row__img {
  width: 750px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.btn {
  min-width: 328px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  padding: 25px;
  background: var(--green);
  color: var(--beige);
  border-radius: 5px;
  font-size: 18px;
  line-height: 130%;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  border: 1px solid transparent;
}

.btn:hover {
  color: var(--hoverGreen);
}

.btn.transparent {
  border: 1px solid var(--green);
  background: transparent;
  color: var(--black);
}

.btn.transparent:hover {
  color: var(--hoverGreen);
}

.container {
  width: 100%;
  max-width: 1580px;
  margin: 0 auto;
  padding: 0 30px;
}

.container .container {
  padding: 0;
}

video {
  max-width: 100%;
  max-height: 100%;
}

.columns {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
}
.columns * {
  -webkit-column-break-inside: avoid;
  -moz-column-break-inside: avoid;
  break-inside: avoid;
}

.top-page {
  padding: 30px 0 50px 0;
}
.top-page.has-banner {
  padding: 0;
  position: relative;
  color: var(--white);
  margin: 0 0 80px 0;
}
.top-page__banner img {
  width: 100%;
}
.top-page__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 130px 0 100px 0;
}
.top-page__content .container {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.top-page__content h1, .top-page__content .h1 {
  margin-top: auto !important;
}

.grid-2 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  counter-reset: section;
}

.grid__item.span-2 {
  -ms-grid-column-span: 2;
  grid-column: span 2;
}
.grid__item-descr {
  max-width: 1140px;
}
.grid__item-head {
  margin: 0 0 15px 0;
}
.grid__item-head.green {
  color: var(--green);
}
.grid__item-head.has-counter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.grid__item-head.has-counter::before {
  counter-increment: section;
  content: "0" counter(section);
  font-size: 24px;
  font-weight: 700;
  position: relative;
  top: 3px;
}

.top-page h1,
.top-page .h1 {
  margin: 60px 0 0 0;
}

.top-page h1:not(:last-child),
.top-page .h1:not(:last-child) {
  margin-bottom: 20px;
}

.breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
}

.breadcrumbs__item:last-child {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.breadcrumbs__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  color: var(--green);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.breadcrumbs__link:hover {
  color: var(--hoverGreen);
}

.breadcrumbs__link::after {
  content: url(../img/svg/bread.svg);
}

.social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 24px;
}

.social__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}

.main-screen {
  position: relative;
  color: var(--white);
}

.main-screen img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.main-screen__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.main-screen__inner {
  max-width: 890px;
}

.main-screen__heading {
  margin: 0 0 15px 0;
}

.main-screen__text {
  margin: 0 0 40px 0;
}

.section,
section {
  margin: 120px 0;
}

.section:last-child,
section:last-child {
  margin-bottom: 0;
}

.section__heading,
section__heading {
  margin: 0 0 50px 0;
}

.main-about__text {
  margin: 0 146px 0 auto;
  max-width: 861px;
  width: 100%;
  position: relative;
}

.main-about__text::before {
  content: "";
  width: 400px;
  height: 434px;
  background: url(../img/svg/ma-decor.svg) no-repeat;
  background-size: 100% 100%;
  position: absolute;
  top: -82px;
  left: -323px;
  pointer-events: none;
}

.light-bg {
  background: var(--lightGreen);
  border-radius: 10px;
  padding: 40px;
}

.choose {
  counter-reset: section;
}

.choose__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.choose__img {
  border-radius: 20px;
  overflow: hidden;
  width: 503px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.choose__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top;
  object-position: top;
}

.choose__content {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.choose__item {
  padding: 30px;
  border: 1px solid var(--black20);
  border-width: 1px 0 0 0;
}

.choose__item:last-child {
  border-width: 1px 0 1px 0;
}

.choose__item-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  color: var(--green);
  margin: 0 0 15px 0;
}

.choose__item-heading::before {
  counter-increment: section;
  content: "0" counter(section);
}

.process__layout {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr [4];
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}

.process__item-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 15px 0;
}

.process__item-heading:not(:last-child) {
  margin: 0 0 15px 0;
}

.work__layout {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr [2];
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
}

.work__item-name {
  margin: 0 0 15px 0;
}

.work__item-name::before {
  content: "";
  width: 120px;
  height: 6px;
  background: url(../img/svg/w-decor.svg) no-repeat;
  background-size: cover;
  display: block;
  margin: 0 0 15px 0;
}

.faq__item {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  background: var(--white);
  border-radius: 10px;
}
.faq__item-price:not(:last-child) {
  margin: 0 0 15px 0;
}
.faq__item-price-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  margin: 0 0 5px 0;
}
.faq__item-price-head::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}
.faq__item h4, .faq__item .h4 {
  font-weight: 500;
}
.faq__item h4 {
  margin: 30px 0 15px 0;
}
.faq__item h4:last-child {
  margin-bottom: 0;
}

.process__item.span-2 {
  -ms-grid-column-span: 2;
  grid-column: span 2;
}

.faq.transparent .faq__item-head {
  padding: 30px;
  color: var(--green);
}
.faq.transparent .faq__item-head.active {
  padding: 30px;
}
.faq.transparent .faq__item-head.active svg {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.faq.transparent .faq__item-head.active svg line {
  opacity: 1 !important;
}
.faq.transparent .faq__item {
  background: transparent;
  border-bottom: 1px solid var(--black20);
  border-radius: 0;
}
.faq.transparent .faq__item:not(:last-child) {
  margin: 0;
}
.faq.transparent .faq__item:first-child {
  border-top: 1px solid var(--black20);
}
.faq.transparent .faq__item-body {
  padding: 0 30px 30px 30px;
}

.faq__item:not(:last-child) {
  margin: 0 0 20px 0;
}

.faq__item.active {
  background: var(--lightGreen);
}

.faq__item.active .faq__item-head {
  padding: 40px 30px 20px 30px;
}

.faq__item.active .faq__item-head svg {
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.faq__item.active .faq__item-head svg line:last-child {
  opacity: 0;
}

.faq__item-body {
  padding: 0 30px 30px 30px;
  display: none;
}

.faq__item-head {
  padding: 40px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.faq__item-head svg {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.faq__item-head svg,
.faq__item-head line {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.banner__inner {
  padding: 60px 390px 60px 60px;
  position: relative;
  z-index: 1;
  min-height: 332px;
}

.banner__img {
  width: 360px;
  position: absolute;
  z-index: -1;
  bottom: 0;
  right: 0;
}

.banner__text {
  max-width: 876px;
}

.banner__descr {
  max-width: 796px;
  margin: 0 0 40px 0;
}

.banner__heading {
  margin: 0 0 10px 0;
}

.auth {
  margin: 120px 0 0 0;
}

.auth__inner {
  padding: 50px;
  max-width: 860px;
  width: 100%;
  margin: 0 auto;
}

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

.input-error input {
  border-color: #eb0c0c;
}

.input-error input::-webkit-input-placeholder {
  color: #eb0c0c;
}

.input-error input::-moz-placeholder {
  color: #eb0c0c;
}

.input-error input:-ms-input-placeholder {
  color: #eb0c0c;
}

.input-error input::-ms-input-placeholder {
  color: #eb0c0c;
}

.input-error input::placeholder {
  color: #eb0c0c;
}

.centered-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 40px 0 0 0;
}

.jq-selectbox.opened .jq-selectbox__trigger {
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.jq-selectbox__trigger {
  width: 12px;
  height: 7px;
  position: absolute;
  top: 7px;
  right: 0;
  background: url(../img/svg/chevron.svg) no-repeat;
  background-size: 100% 100%;
}

.jq-selectbox__select {
  padding: 0 30px 0 0;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  min-width: 100px;
}

.jq-selectbox__dropdown {
  bottom: auto !important;
  top: 100% !important;
  left: -15px;
  width: calc(100% + 15px);
  background: var(--white);
  border-radius: 10px;
  padding: 15px;
  -webkit-box-shadow: 0px 0px 13px -2px rgba(141, 201, 160, 0.2);
  box-shadow: 0px 0px 13px -2px rgba(141, 201, 160, 0.2);
}

.jq-selectbox ul {
  max-height: 200px !important;
}

.jq-selectbox ul:not([class]) {
  padding: 0;
  margin: 0;
}

.jq-selectbox ul:not([class]) li {
  list-style-type: none;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.jq-selectbox ul:not([class]) li.disabled {
  display: none;
}

.form input,
.form textarea {
  display: block;
  width: 100%;
  height: 74px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 5px;
  color: black;
}

.form input::-webkit-input-placeholder,
.form textarea::-webkit-input-placeholder {
  color: var(--black70);
}

.form input::-moz-placeholder,
.form textarea::-moz-placeholder {
  color: var(--black70);
}

.form input:-ms-input-placeholder,
.form textarea:-ms-input-placeholder {
  color: var(--black70);
}

.form input::-ms-input-placeholder,
.form textarea::-ms-input-placeholder {
  color: var(--black70);
}

.form input::-webkit-input-placeholder, .form textarea::-webkit-input-placeholder {
  color: var(--black70);
}

.form input::-moz-placeholder, .form textarea::-moz-placeholder {
  color: var(--black70);
}

.form input:-ms-input-placeholder, .form textarea:-ms-input-placeholder {
  color: var(--black70);
}

.form input::-ms-input-placeholder, .form textarea::-ms-input-placeholder {
  color: var(--black70);
}

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

.form textarea {
  height: 148px;
  padding: 24px;
}

.form__layout {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr [2];
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.form__checkbox-text.text-4 {
  font-size: 14px;
}

.form__checkbox-value {
  color: var(--black50);
}

.form__checkbox-value.text-5 {
  font-size: 12px;
}

.form__checkbox-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  padding: 0 0 0 33px;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.form__checkbox-group::before,
.form__checkbox-group::after {
  content: "";
  width: 22px;
  height: 22px;
  position: absolute;
  top: -1px;
  left: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.form__checkbox-group::before {
  border-radius: 5px;
  border: 1px solid var(--black30);
}

.form__checkbox-group::after {
  background: url(../img/svg/check.svg) no-repeat;
  background-size: 100% 100%;
  opacity: 0;
}

.form__checkbox input {
  display: none;
}

.form__checkbox input:checked + .form__checkbox-group::after {
  opacity: 1;
}

.form__checkbox input:checked + .form__checkbox-group::before {
  background: var(--beige);
  border-color: var(--beige);
}

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

.form__item {
  position: relative;
}

.form__icon {
  position: absolute;
  top: 50%;
  right: 25px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 24px;
  height: 24px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.form__icon svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.form__icon.active .form__icon-active {
  opacity: 1;
  visibility: visible;
}
.form__icon.active .form__icon-default {
  opacity: 0;
  visibility: hidden;
}

.form__icon-active {
  opacity: 0;
  visibility: hidden;
}

.form__item:has(.form__icon) input {
  padding-right: 60px;
}

.form__item.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 15px 10px;
}

.form__item.span-2 {
  -ms-grid-column-span: 2;
  grid-column: span 2;
}

.toggle {
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.toggle__place {
  display: block;
  width: 50px;
  height: 25px;
  border-radius: 50px;
  border: 1px solid var(--green);
  cursor: pointer;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.toggle input {
  display: none;
}

.toggle input:checked + .toggle__circle {
  left: calc(100% - 23px);
  background: var(--white);
}

.toggle input:checked + .toggle__circle + .toggle__place {
  background: var(--green);
}

.toggle__circle {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 21px;
  height: 21px;
  background: var(--green);
  border-radius: 50%;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}

.sliders {
  margin: 16px 0 0 0;
  height: 1px;
  padding: 0 12px 0 0;
  position: relative;
}

.sliders::after {
  content: "";
  width: 12px;
  height: 1px;
  background: var(--black30);
  position: absolute;
  bottom: 0;
  right: 0;
}

.noUi-handle {
  width: 16px;
  height: 15px;
  border-radius: 50%;
  background: var(--green);
  top: -7px;
  left: 27px;
  cursor: -webkit-grab;
  cursor: grab;
}

.noUi-handle:active {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.noUi-connects {
  background: var(--black30);
}

.noUi-connect {
  background: var(--green);
}

.category__content {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  width: 100%;
  overflow: hidden;
}

.category__mobile {
  display: none;
}

.category__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: var(--gap);
  margin: 0 0 28px 0;
}

.category__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}

.category .form__checkbox-group::before,
.category .form__checkbox-group::after {
  top: -2px;
}

.category .form__checkbox-group::before {
  border: 1px solid var(--black30) !important;
}

.category__aside {
  width: 345px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.category__aside .form__checkbox-group::after {
  background: url(../img/svg/a-check.svg) no-repeat;
  background-size: 100% 100%;
}

.category__aside-mobile {
  display: none;
}

.category__aside-sliders {
  width: 100%;
}

.category__aside-wrapper {
  height: 401px;
}

.category__aside-compare {
  padding: 0 0 15px 0;
  margin: 20px 0 0 0;
}

.category__aside-compare p:not(:last-child) {
  margin: 0 0 20px 0;
}

.category__aside-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 15px;
  color: var(--black50);
}

.category__aside-links a {
  color: var(--black50);
}

.category__aside-links:not(:last-child) {
  margin: 0 0 40px 0;
}

.category__aside-links-item {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.category__aside-links-item:hover,
.category__aside-links-item.current {
  color: var(--green);
}

.category__aside-links-item.current {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.category__aside .btn {
  min-width: unset;
  width: 100%;
  margin: 20px 0 0 0;
}

.category__aside-filter:not(:last-child) {
  margin: 0 0 20px 0;
}

.category__aside-body {
  display: none;
}

.category__aside-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 12px;
  padding: 15px 0 0 0;
}

.category__aside-item {
  padding: 20px;
  border: 1px solid var(--green);
  border-radius: 10px;
}

.category__aside-item:not(:last-child) {
  margin: 0 0 10px 0;
}

.category__aside-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  gap: 15px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: var(--black);
}

.category__aside-row svg {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.category__aside-row.active svg {
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.category__aside-available {
  margin: 0 0 30px 0;
}

.category__layout {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr [3];
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.modal {
  max-width: 860px;
  width: 100%;
  background: var(--lightGreen);
  padding: 70px 50px 50px 50px;
  border-radius: 10px;
}

.modal .fancybox-close-small {
  padding: 4px !important;
  width: 30px;
  height: 30px;
  border-radius: 5px;
  background: var(--green);
  top: 30px;
  right: 30px;
  opacity: 1;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.modal .fancybox-close-small:hover {
  background: var(--hoverGreen);
}

.modal .fancybox-close-small svg {
  width: 100%;
  height: 100%;
}

.modal .fancybox-close-small svg path {
  fill: var(--white);
}

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

.modal .form__checkbox-group::after {
  background: url(../img/svg/modal-check.svg) no-repeat;
  background-size: 100% 100%;
}

.modal .form__checkbox input:checked + .form__checkbox-group::before {
  background: var(--green);
  border-color: var(--green);
}

.modal a {
  color: var(--black);
  text-decoration: underline;
}

.product-card {
  position: relative;
  color: var(--white);
}

.product-card .btn {
  min-width: 181px;
  padding: 20px;
}

.product-card:hover .product-card__text {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.product-card a {
  color: var(--white);
}

.product-card__mobile {
  display: none;
}

.product-card__compare {
  margin: 20px 0 0 0;
  color: var(--black);
}

.product-card__compare-item:not(:last-child) {
  margin: 0 0 20px 0;
}

.product-card__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 5px 10px;
  margin: 3px 0 0 0;
}

.product-card__row.centered {
  gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.product-card__row:not(:last-child) {
  margin: 0 0 15px 0;
}

.product-card__row-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.product-card__row-item:not(:last-child)::after {
  content: "/";
  font-size: 16px;
  line-height: normal;
  color: var(--white);
}

.product-card__name {
  text-transform: unset;
}

.product-card__text {
  width: 100%;
  padding: 30px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 5;
}

.product-card__controls {
  position: absolute;
  top: 20px;
  right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}

.product-card__controls-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.product-card__controls-item path {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.product-card__controls-item.active path {
  stroke: var(--green);
}

.product-card__flag {
  padding: 5px 7px;
  text-transform: uppercase;
  border-radius: 0 5px 5px 0;
}

.product-card__flag.green {
  background: var(--green);
  color: var(--white);
}

.product-card__flag.white {
  background: var(--white);
  color: var(--green);
}

.product-card__flags {
  position: absolute;
  top: 10px;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 10px;
}

.product-card__img {
  position: relative;
  padding-top: 110%;
  display: block;
  border-radius: 10px;
  overflow: hidden;
}

.product-card__img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/gradient.png) no-repeat;
  background-size: cover;
  z-index: 3;
  pointer-events: none;
}

.product-card__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.compare {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: var(--gap);
  overflow: auto;
  padding: 0 0 15px 0;
}

.compare::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.compare::-webkit-scrollbar-track {
  background: var(--lightGreen);
  border-radius: 20px;
}

.compare::-webkit-scrollbar-thumb {
  background-color: var(--green);
  border-radius: 20px;
}

.compare .product-card {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 365px;
}

.arrow-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  color: var(--green);
}

.arrow-link:hover span {
  text-decoration: underline;
}

.arrow-link svg {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.big-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  margin: 0 0 80px 0;
}

.big-card__main {
  width: 740px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.big-card__content {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.big-card__content .btn {
  min-width: unset;
  width: 100%;
}

.big-card__flags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 6px;
}

.big-card__flags-item {
  text-transform: uppercase;
  color: var(--white);
  padding: 4px 6px;
  border-radius: 5px;
}

.big-card__flags-item.green {
  background: var(--green);
}

.big-card__flags-item.darkgreen {
  background: var(--hoverGreen);
}

.big-card__number {
  color: var(--green);
}

.big-card__head {
  margin: 0 0 20px 0;
}

.big-card__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px;
  margin: 0 0 20px 0;
}

.big-card__body:not(:last-child) {
  margin: 0 0 20px 0;
}

.big-card__footer {
  margin-top: auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr [2];
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.big-card__table {
  display: block;
  line-height: 140%;
}

.big-card__table tbody {
  display: block;
}

.big-card__table tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 414px;
  width: 100%;
}

.big-card__table td {
  display: block;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.big-card__table td:first-child {
  font-weight: 600;
}

.big-card__table td:not(:last-child) {
  padding-right: 50px;
}

.big-card__table tr:not(:last-child) td {
  padding-bottom: 20px;
}

@-webkit-keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.card-chars video {
  display: block;
  margin: 40px 0;
}

.card-chars__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0px;
  font-size: 18px;
  font-weight: 500;
  position: sticky;
  z-index: 10;
  top: 0;
  background: var(--beige);
}

.card-chars__head-item {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  text-align: center;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding: 20px 20px 14px 20px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  border-bottom: 1px solid var(--black30);
}

.card-chars__head-item.active {
  color: var(--green);
  border-color: var(--green);
}

.card-chars__wrapper {
  margin: 50px 0 0 0;
}

.card-chars__body {
  display: none;
}

.card-chars__body.active {
  display: block;
  -webkit-animation: fade 0.5s ease-in-out;
  animation: fade 0.5s ease-in-out;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.card-chars__body .big-card__table tbody {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
  -webkit-column-gap: 264px;
  -moz-column-gap: 264px;
  column-gap: 264px;
  max-width: 1100px;
  width: 100%;
}

.card-gallery {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr [12];
  grid-template-columns: repeat(12, 1fr);
  gap: var(--gap);
  grid-auto-flow: dense;
}

.card-gallery__item {
  border-radius: 5px;
  overflow: hidden;
  display: block;
}

.card-gallery__item img,
.card-gallery__item video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.card-gallery__item.span-2 {
  -ms-grid-column-span: 2;
  grid-column: span 2;
  -ms-grid-row-span: 2;
  grid-row: span 2;
}

.card-gallery__item.span-4 {
  -ms-grid-column-span: 4;
  grid-column: span 4;
  -ms-grid-row-span: 3;
  grid-row: span 3;
}

.overlay {
  position: fixed;
  z-index: 110;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  background: var(--black30);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

@media screen and (max-width: 1620px) {
  .main-about__text::before {
    width: 350px;
    height: 350px;
  }
  .light-bg {
    padding: 30px;
  }
  .top-page__banner {
    height: 430px;
  }
  .top-page__banner img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .product-card__text {
    padding: 15px;
  }
  .container {
    max-width: 1300px;
  }
  h1,
  .h1 {
    font-size: 52px;
  }
  h2,
  .h2 {
    font-size: 36px;
  }
  h2:not([class]),
  .h2:not([class]) {
    margin: 60px 0 30px 0;
  }
  h2:not([class]):first-child,
  .h2:not([class]):first-child {
    margin-top: 0 !important;
  }
  h2:not([class]):last-child,
  .h2:not([class]):last-child {
    margin-bottom: 0 !important;
  }
  h3,
  .h3 {
    font-size: 30px;
  }
  h3:not([class]),
  .h3:not([class]) {
    margin: 60px 0 30px 0;
  }
  h4,
  .h4,
  th {
    font-size: 22px;
  }
  h4:not([class]),
  .h4:not([class]),
  th:not([class]) {
    margin: 50px 0 30px 0;
  }
  h5,
  .h5 {
    font-size: 19px;
  }
  h5:not([class]),
  .h5:not([class]) {
    margin: 30px 0 20px 0;
  }
  h6,
  .h6 {
    font-size: 17px;
  }
  h6:not([class]),
  .h6:not([class]) {
    margin: 30px 0 20px 0;
  }
  html,
  body {
    font-size: 16px;
  }
  .text {
    font-size: 22px;
  }
  .text-1 {
    font-size: 15px;
  }
  .text-2 {
    font-size: 15px;
  }
  .text-3 {
    font-size: 14px;
  }
  .text-4 {
    font-size: 13px;
  }
  .text-5 {
    font-size: 11px;
  }
  .numbers {
    font-size: 20px;
  }
}

@media screen and (max-width: 1320px) {
  h1,
  .h1 {
    font-size: 38px;
  }
  ul:not([class]) li:not(:last-child),
  ol:not([class]) li:not(:last-child) {
    margin: 0 0 10px 0;
  }
  .top-page__content {
    padding: 130px 0 45px 0;
  }
  .page-body {
    padding: 0 0 80px 0;
  }
  section,
  .section {
    margin: 80px 0;
  }
  section__heading,
  .section__heading {
    margin: 0 0 30px 0;
  }
  .process__item-icon {
    height: 4px;
    /*
    width: 100px;
    background: var(--green);
    -webkit-clip-path: polygon(0 0, 100% 0, 97% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, 97% 100%, 0% 100%);
    */
  }
  /*
  .process__item-icon img {
    display: none;
  }
  */
  .card-chars__body .big-card__table tbody {
    -webkit-column-gap: 50px;
    -moz-column-gap: 50px;
    column-gap: 50px;
  }
  .big-card__main {
    width: 520px;
  }
  .auth {
    margin: 60px 0 0 0;
  }
  .auth__inner.light-bg {
    padding: 25px !important;
  }
  .category__aside {
    width: 280px;
  }
  .category__aside-wrapper {
    height: 379px;
  }
  .category__layout {
    -ms-grid-columns: 1fr [2];
    grid-template-columns: repeat(2, 1fr);
  }
  .category__inner {
    gap: 15px;
  }
  .compare .product-card {
    width: 343px;
  }
  .noUi-handle {
    left: 21px;
  }
  .main-about__text {
    margin: 0;
    max-width: unset;
  }
  .main-about__text::before {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  .top-page {
    padding: 20px 0 35px 0;
  }
  .top-page h1,
  .top-page .h1 {
    margin: 30px 0 0 0;
  }
  .top-page h1:not(:last-child),
  .top-page .h1:not(:last-child) {
    margin-bottom: 15px;
  }
  .light-bg:not(.banner__inner) {
    padding: 20px;
  }
  .container {
    max-width: 1062px;
  }
  .main-screen__inner {
    max-width: 620px;
  }
  .main-screen__img {
    height: 550px;
  }
  .main-screen__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: right;
    object-position: right;
  }
  .row__img {
    width: 380px;
  }
}

@media screen and (max-width: 1024px) {
  .header-box .header a {
    color: var(--black);
  }
  .grid__item-head.has-counter::before {
    font-size: 16px;
    top: 0;
  }
  .top-page.has-banner {
    margin: 0 0 50px 0;
  }
  .top-page__content {
    padding: 108px 0 18px 0;
  }
  .top-page__banner {
    height: 264px;
  }
  .faq.transparent .faq__item-head,
  .faq.transparent .faq__item-head.active {
    padding: 15px;
  }
  .faq.transparent .faq__item-body {
    padding: 0 15px 15px 15px;
  }
  .grid-2 {
    gap: 12px;
  }
  .grid__item-head.has-counter {
    gap: 12px;
  }
  .header-box .header .btn {
    background: var(--green);
    color: var(--beige);
  }
  .header-box .header__burger span {
    background: var(--white);
  }
  .header__logo {
    width: 110px;
  }
  .header__icons {
    gap: 10px;
  }
  .header__icons-item {
    width: 30px;
    height: 30px;
  }
  .header__icons-item svg {
    width: 100%;
    height: 100%;
  }
  .header__group {
    gap: 30px;
  }
  .header__close {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    top: 20px;
    right: 20px;
  }
  .header__box {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100vh;
    height: 100%;
    overflow: auto;
    z-index: 100;
    background: var(--beige);
    padding: 70px 20px;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    opacity: 0;
    visibility: hidden;
  }
  .header__box.active {
    opacity: 1;
    visibility: visible;
  }
  .header__burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 36px;
  }
  .header__burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--black);
  }
  .header__burger span:not(:last-child) {
    margin: 0 0 9px 0;
  }
  .header__menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
    margin: 0 0 40px 0;
  }
  .header .btn {
    display: none;
  }
  .header__mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header__mobile .btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .footer__logo {
    width: 150px;
  }
  :root {
    --gap: 10px;
  }
  .auth__heading {
    margin: 0 0 20px 0;
  }
  .choose__img {
    width: 400px;
  }
  .choose__item {
    padding: 20px 15px;
  }
  .process__layout {
    -ms-grid-columns: 1fr [2];
    grid-template-columns: repeat(2, 1fr);
  }
  .big-card {
    gap: 15px;
  }
  .big-card__main {
    width: 400px;
  }
  .big-card__content {
    max-width: unset;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    width: 100%;
  }
  main table:not([class]) {
    margin: 40px 0;
  }
  main table:not([class]) th,
  main table:not([class]) td {
    padding: 15px;
  }
  h1,
  .h1 {
    font-size: 26px;
  }
  h2,
  .h2 {
    font-size: 24px;
  }
  h2:not([class]),
  .h2:not([class]) {
    margin: 40px 0 25px 0;
  }
  h3,
  .h3 {
    font-size: 18px;
  }
  h3:not([class]),
  .h3:not([class]) {
    margin: 40px 0 20px 0;
  }
  h4,
  .h4,
  th {
    font-size: 16px;
  }
  h4:not([class]),
  .h4:not([class]),
  th:not([class]) {
    margin: 40px 0 20px 0;
  }
  h5,
  .h5 {
    font-size: 15px;
  }
  h5:not([class]),
  .h5:not([class]) {
    margin: 30px 0 20px 0;
  }
  h6,
  .h6 {
    font-size: 14px;
  }
  h6:not([class]),
  .h6:not([class]) {
    margin: 30px 0 20px 0;
  }
  html,
  body {
    font-size: 14px;
  }
  p:not(:last-child) {
    margin: 0 0 10px 0;
  }
  .banner__inner {
    padding: 30px 280px 30px 30px;
    min-height: 232px;
  }
  .banner__img {
    width: 250px;
  }
  .faq__item:not(:last-child) {
    margin: 0 0 10px 0;
  }
  .faq__item.active .faq__item-head {
    padding: 15px 10px 15px 10px;
  }
  .faq__item-head {
    padding: 15px 10px;
  }
  .faq__item-head svg {
    width: 25px;
    height: 25px;
  }
  .faq__item-body {
    padding: 10px 10px 10px 10px;
  }
  .work__item-name {
    margin: 0 0 10px 0;
  }
  .work__item-name::before {
    width: 100px;
    height: 4px;
    margin: 0 0 10px 0;
  }
  .process__item::before {
    font-size: 18px;
    margin: 0 0 10px 0;
  }
  .text {
    font-size: 17px;
  }
  .text-1 {
    font-size: 14px;
  }
  .text-2 {
    font-size: 14px;
  }
  .text-3 {
    font-size: 13px;
  }
  .text-4 {
    font-size: 12px;
  }
  .text-5 {
    font-size: 11px;
  }
  .numbers {
    font-size: 17px;
  }
  .container {
    padding: 0 20px;
  }
  .light-bg:not(.banner__inner) {
    padding: 15px 10px;
  }
  .main-screen__inner {
    max-width: 420px;
  }
  .main-screen__heading {
    margin: 0 0 10px 0;
  }
  .main-screen__text {
    margin: 0 0 30px 0;
  }
  .main-screen__img {
    height: 450px;
  }
  .btn {
    min-width: 197px;
    padding: 16px;
  }
  .social {
    gap: 20px;
  }
  .social__item {
    width: 40px;
    height: 40px;
  }
  .form input {
    height: 56px;
    padding: 0 15px;
  }
  .form textarea {
    height: 120px;
    padding: 15px;
  }
}

@media screen and (max-width: 768px) {
  .footer {
    padding: 30px 0;
  }
  .columns {
    -webkit-column-count: unset;
    -moz-column-count: unset;
    column-count: unset;
  }
  .footer__contacts {
    text-align: left;
  }
  .footer__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
  }
  .footer__inner:not(:last-child) {
    margin: 0 0 30px 0;
  }
  .footer__inner:last-child {
    gap: 10px;
  }
  .main-about__text::before {
    width: 280px;
    height: 300px;
  }
  .choose__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
  }
  .choose__item-heading {
    gap: 10px;
  }
  .choose__item-heading:not(:last-child) {
    margin: 0 0 10px 0;
  }
  .choose__img {
    position: relative;
    width: 100%;
    padding-top: 92%;
  }
  .choose__img img {
    position: absolute;
    top: 0;
    left: 0;
  }
  .modal {
    padding: 50px 20px;
  }
  .modal__head {
    margin: 0 0 20px 0;
  }
  .modal .fancybox-close-small {
    top: 15px;
    right: 15px;
  }
  .card-gallery {
    -ms-grid-columns: 1fr [6];
    grid-template-columns: repeat(6, 1fr);
  }
  .card-chars__body .big-card__table tbody {
    -webkit-column-count: unset;
    -moz-column-count: unset;
    column-count: unset;
  }
  .card-chars__head {
    overflow: auto;
    scrollbar-width: none;
  }
  .card-chars__head-item {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding: 10px 10px 6px 10px;
  }
  .card-chars__wrapper {
    margin: 35px 0 0 0;
  }
  .big-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
  .big-card__main {
    width: auto;
  }
  .big-card__table tr {
    max-width: unset;
  }
  .big-card__name {
    gap: 12px;
  }
  .big-card__footer {
    gap: 5px;
  }
  .big-card__content .btn {
    font-size: 14px;
  }
  .overlay {
    display: block;
    opacity: 0;
    visibility: hidden;
  }
  .overlay.active {
    opacity: 1;
    visibility: visible;
  }
  .category__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
  }
  .category__aside-compare {
    display: none;
  }
  .category__aside-links-item.current {
    display: none;
  }
  .category__aside-links:not(:last-child) {
    margin: 0 0 15px 0;
  }
  .category__aside:not(.response) {
    width: auto;
  }
  .category__aside-wrapper {
    height: auto;
  }
  .category__aside-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    background: var(--beige);
    position: sticky;
    top: 0;
    z-index: 20;
    padding: 10px 0 10px 0px;
  }
  .category__aside.response {
    z-index: 120;
    position: fixed;
    top: 0;
    left: 0;
    min-height: 100vh;
    height: 100%;
    background: var(--beige);
    padding: 0 15px 15px 15px;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    opacity: 0;
    visibility: hidden;
    overflow: auto;
  }
  .category__aside.response.active {
    opacity: 1;
    visibility: visible;
  }
  .category__head .no-mobile {
    display: none;
  }
  .category__mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
  }
  .category__mobile svg {
    position: relative;
    bottom: 1px;
  }
  .compare .product-card {
    width: calc(50% - 5px);
  }
  .product-card__controls {
    gap: 15px;
    top: 12px;
    right: 12px;
  }
  .product-card .btn {
    padding: 12px;
    min-width: 150px;
  }
  .product-card__mobile {
    display: block;
    font-weight: 600;
    margin: 0 0 5px 0;
  }
  .product-card__compare-item:not(:last-child) {
    margin: 0 0 15px 0;
  }
  .add-compare svg {
    width: 17px;
    height: 24px;
  }
  .add-favorite svg {
    width: 26px;
    height: 20px;
  }
  main table:not([class]) {
    display: block;
  }
  main table:not([class]) th,
  main table:not([class]) tr:has(th),
  main table:not([class]) thead {
    display: none;
  }
  main table:not([class]) tr {
    display: block;
  }
  main table:not([class]) tr:not(:last-child) {
    margin: 0 0 15px 0;
    padding: 0 0 15px 0;
    border-bottom: 1px solid var(--green);
  }
  main table:not([class]) tbody {
    display: block;
  }
  main table:not([class]) td {
    display: block;
    border: none;
    padding: 0;
  }
  main table:not([class]) td:not(:last-child) {
    margin: 0 0 10px 0;
  }
  main table:not([class]) td::before {
    content: attr(data-cell);
    font-weight: 700;
    display: block;
    margin: 0 0 5px 0;
  }
  .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .row:not(:last-child) {
    margin: 40px 0;
  }
  .row__img {
    width: auto;
  }
}

@media screen and (max-width: 620px) {
  .work__layout {
    -ms-grid-columns: 4fr;
    grid-template-columns: 4fr;
  }
  .grid-2 {
    -ms-grid-columns: 4fr;
    grid-template-columns: 4fr;
  }
  .process__item.span-2,
  .grid__item.span-2 {
    grid-column: auto;
  }
  .compare .product-card {
    width: calc(100% - 50px);
  }
  .product-card__row.centered {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 5px;
  }
  .product-card .btn {
    min-width: unset;
    width: 100%;
  }
  .category__layout {
    -ms-grid-columns: 4fr;
    grid-template-columns: 4fr;
  }
  .banner__inner {
    padding: 0;
  }
  .banner__text {
    padding: 25px 15px 10px 15px;
  }
  .banner__descr {
    margin: 0 0 30px 0;
  }
  .banner__img {
    position: static;
    margin-left: auto;
    width: 157px;
  }
  .process__layout {
    -ms-grid-columns: 4fr;
    grid-template-columns: 4fr;
  }
  .process__item-icon {
    margin: 0 0 10px 0;
  }
  .process__item-heading:not(:last-child) {
    margin: 0 0 10px 0;
  }
  .main-screen {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .main-screen__content {
    position: relative;
    background: var(--black);
    width: auto;
    height: auto;
    padding: 103px 0 0 0;
  }
  .main-screen__btn {
    position: relative;
    top: 30px;
  }
  .main-screen__text {
    margin: 0;
  }
  .main-screen__img {
    height: auto;
  }
}

@media screen and (min-width: 1025px) {
  .fancybox-active .header-box {
    left: -7.5px;
  }
}