@font-face {
  font-family: "Inter";
  font-weight: 200;
  font-style: normal;
  src: url("../fonts/Inter-ExtraLight.woff2") format("woff2"), url("../fonts/Inter-ExtraLight.woff") format("woff");
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  font-weight: 300;
  font-style: normal;
  src: url("../fonts/Inter-Light.woff2") format("woff2"), url("../fonts/Inter-Light.woff") format("woff");
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  font-weight: 400;
  font-style: normal;
  src: url("../fonts/Inter-Regular.woff2") format("woff2"), url("../fonts/Inter-Regular.woff") format("woff");
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  font-weight: 500;
  font-style: normal;
  src: url("../fonts/Inter-Medium.woff2") format("woff2"), url("../fonts/Inter-Medium.woff") format("woff");
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  font-weight: 600;
  font-style: normal;
  src: url("../fonts/Inter-SemiBold.woff2") format("woff2"), url("../fonts/Inter-SemiBold.woff") format("woff");
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  font-weight: 700;
  font-style: normal;
  src: url("../fonts/Inter-Bold.woff2") format("woff2"), url("../fonts/Inter-Bold.woff") format("woff");
  font-display: swap;
}

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

:root {
  --scrollbar-width: 0px;
  --app-height: 100vh;
  --section-offset: 150px;
  --box-offset: 60px;
  --box-radius: 30px;
  --main-radius: 14px;
  --gray-color: #F5F5F4;
  --dark-color: #323D2A;
  --dark-color-rgb: 50, 61, 42;
  --main-color: #94AC7C;
  --main-color-rgb: 148, 172, 124;
  --main-color-dark: #708B57;
  --main-color-dark-rgb: 112, 139, 87;
  --border-color: rgba(var(--dark-color-rgb), 0.1);
  scroll-behavior: auto;
}

::-webkit-input-placeholder {
  opacity: 1;
  color: #848B7F;
}

::-moz-placeholder {
  opacity: 1;
  color: #848B7F;
}

:-ms-input-placeholder {
  opacity: 1;
  color: #848B7F;
}

::-ms-input-placeholder {
  opacity: 1;
  color: #848B7F;
}

::placeholder {
  opacity: 1;
  color: #848B7F;
}

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

::-webkit-scrollbar-track {
  background: var(--gray-color);
}

::-webkit-scrollbar-thumb {
  background: var(--main-color);
}

body,
html {
  font-size: 16px;
}

body {
  position: relative;
  overflow-x: hidden;
  min-width: 320px;
  background: #F3F6EF url("../img/bg.jpg") no-repeat 50% 0;
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--dark-color);
}

.global-noscroll {
  margin-right: var(--scrollbar-width);
}

.global-noscroll,
.global-noscroll body {
  overflow: hidden !important;
}

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

a:hover {
  text-decoration: none;
}

button {
  cursor: pointer;
}

strong,
b {
  font-weight: bold;
}

p,
blockquote,
ul,
ol {
  margin: 0 0 20px;
}

ul,
ol {
  padding-left: 1.4em;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  margin: 0 0 20px;
}

h1,
.h1,
h2,
.h2 {
  line-height: 1.15;
  font-weight: 200;
  font-size: 52px;
}

h1 strong,
.h1 strong,
h2 strong,
.h2 strong {
  font-weight: 600;
}

h3,
.h3 {
  line-height: 1.2;
  font-weight: 600;
  font-size: 46px;
}

h3._small,
.h3._small {
  font-size: 40px;
}

h4,
.h4 {
  line-height: 1.3;
  font-weight: 600;
  font-size: 32px;
}

h5,
.h5 {
  line-height: 1.4;
  font-weight: bold;
  font-size: 20px;
}

h6,
.h6 {
  line-height: 1.45;
  font-weight: bold;
  font-size: 18px;
}

img {
  display: inline-block;
  vertical-align: middle;
  width: auto;
  height: auto;
  max-width: 100%;
}

hr {
  margin: 20px 0;
  border: none;
  border-bottom: 1px solid var(--border-color);
  background: none;
}

hr:first-child {
  margin-top: 0;
}

hr:last-child {
  margin-bottom: 0;
}

.wrapper {
  overflow: hidden;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: var(--app-height);
}

.wrapper>main {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  width: 100%;
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

.container {
  width: 1410px;
  margin: 0 auto;
  padding: 0 15px;
}

.img-box {
  position: relative;
}

.img-box img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}

.img-full-box {
  overflow: hidden;
  position: relative;
}

.img-full-box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.tt-upper {
  text-transform: uppercase;
}

.tt-none {
  text-transform: none;
}

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

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

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

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

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

.fz-14 {
  font-size: 14px;
}

.fz-12 {
  font-size: 12px;
}

.c-main {
  color: var(--main-color);
}

.c-main-dark {
  color: var(--main-color-dark);
}

.m-sect {
  margin-top: var(--section-offset);
  margin-bottom: var(--section-offset);
}

.mt-sect {
  margin-top: var(--section-offset);
}

.mb-sect {
  margin-bottom: var(--section-offset);
}

.p-sect {
  padding-top: var(--section-offset);
  padding-bottom: var(--section-offset);
}

.pt-sect {
  padding-top: var(--section-offset);
}

.pb-sect {
  padding-bottom: var(--section-offset);
}

.margins-10>* {
  margin-bottom: 10px;
}

.margins-10>*:last-child {
  margin-bottom: 0;
}

.p-box {
  padding: var(--box-offset);
}

.d-none {
  display: none !important;
}

[data-animate] {
  opacity: 0;
  -webkit-animation-duration: 0.7s;
  animation-duration: 0.7s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

[data-animate].animated {
  -webkit-animation-name: fade;
  animation-name: fade;
}

[data-animate=fadeIn].animated {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

[data-animate=fadeLeft].animated {
  -webkit-animation-name: fadeLeft;
  animation-name: fadeLeft;
}

[data-animate=fadeRight].animated {
  -webkit-animation-name: fadeRight;
  animation-name: fadeRight;
}

[data-animate=fadeDown].animated {
  -webkit-animation-name: fadeDown;
  animation-name: fadeDown;
}

[data-animate=zoomIn].animated {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes fade {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fade {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes fadeLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(30px, 0, 0);
    transform: translate3d(30px, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(30px, 0, 0);
    transform: translate3d(30px, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes fadeRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-30px, 0, 0);
    transform: translate3d(-30px, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-30px, 0, 0);
    transform: translate3d(-30px, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes fadeDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.title {
  margin-bottom: 80px;
  font-weight: 300;
  font-size: 20px;
}

.title> :last-child {
  margin-bottom: 0;
}

.content> :last-child {
  margin-bottom: 0;
}

.decor-line {
  pointer-events: none;
  position: absolute;
  z-index: -10;
  max-width: none;
}

.decor-el {
  pointer-events: none;
  position: absolute;
  z-index: -5;
}

.decor-el img {
  max-width: none;
  opacity: 0.3;
  -webkit-animation: spin 45s linear infinite;
  animation: spin 45s linear infinite;
}

@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.headline-el {
  position: relative;
  display: block;
  width: 130px;
}

.headline-el:before,
.headline-el:after {
  content: "";
  position: absolute;
  top: 4px;
  border-bottom: 1px solid var(--main-color);
}

.headline-el:before {
  left: 0;
  width: 20px;
}

.headline-el:after {
  right: 0;
  width: 91px;
}

.headline-el span {
  display: block;
  position: relative;
  margin-left: 25px;
  width: 9px;
  height: 9px;
  border: 1px solid var(--main-color);
  border-radius: 50%;
}

.headline-el span:after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  border-radius: 50%;
  background: var(--main-color);
}

.headline-el._white:before,
.headline-el._white:after,
.headline-el._white span {
  border-color: #fff;
}

.headline-el._white span:after {
  background-color: #fff;
}

.btn {
  cursor: pointer;
  overflow: hidden;
  position: relative;
  z-index: 3;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 24px;
  min-height: 60px;
  background: var(--main-color);
  border: 1px solid transparent;
  border-radius: var(--main-radius);
  text-decoration: none;
  text-align: center;
  line-height: 20px;
  font-weight: bold;
  font-size: 16px;
  color: #fff;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.btn .ic {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
}

.btn .ic-rotate {
  font-size: 1.1em;
}

.btn .ic-up-right {
  position: relative;
  top: 0.05em;
  font-size: 0.7em;
}

.btn .ic[class*=chevron] {
  font-size: 0.8em;
}

.btn:hover {
  background-color: rgba(var(--main-color-rgb), 0.1);
  color: var(--main-color);
}

.btn._main-dark {
  background-color: var(--main-color-dark);
}

.btn._main-dark:hover {
  background-color: rgba(var(--main-color-dark-rgb), 0.4);
  color: #fff;
}

.btn._bd {
  border-color: var(--main-color);
  background: none;
  color: var(--main-color);
}

.btn._bd:hover {
  background-color: var(--main-color);
  color: #fff;
}

.btn._small {
  padding: 8px 14px;
  border-radius: 10px;
  min-height: 36px;
  line-height: 18px;
  font-size: 14px;
}

.btn._medium {
  min-height: 50px;
}

.btn._big {
  padding: 15px 39px;
  min-height: 70px;
  line-height: 22px;
  font-size: 18px;
}

.btn._full {
  width: 100%;
  padding-left: 19px;
  padding-right: 19px;
}

.btn._full._small {
  padding-left: 10px;
  padding-right: 10px;
}

.btn._ic-bd {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  text-align: left;
}

.btn._ic-bd .ic {
  position: relative;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  margin-right: 10px;
  width: 2em;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  font-size: 20px;
  -webkit-transition: border-color 0.4s;
  transition: border-color 0.4s;
}

.btn._ic-bd .ic:before {
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -0.5em;
  width: 1em;
  text-align: center;
}

.btn._ic-bd:hover .ic {
  border-right-color: rgba(var(--main-color-rgb), 0.2);
}

.btn:disabled,
.btn.disabled {
  pointer-events: none;
  opacity: 0.5;
}

.close-btn {
  overflow: hidden;
  position: absolute;
  z-index: 100;
  top: 0;
  right: 0;
  padding: 0;
  border: none;
  border-radius: 0 var(--box-radius);
  background: var(--main-color);
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  font-size: 16px;
  color: #fff;
}

.close-btn:before {
  display: inline-block;
  -webkit-transition: -webkit-transform 0.6s;
  transition: -webkit-transform 0.6s;
  transition: transform 0.6s;
  transition: transform 0.6s, -webkit-transform 0.6s;
}

.close-btn:hover:before {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.form-title {
  margin-bottom: 40px;
  font-weight: 300;
  font-size: 18px;
}

.form-title>* {
  margin-bottom: 10px;
}

.form-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
}

.form-grid .form-item {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
  min-width: 22%;
  margin-bottom: 0;
}

.form-grid .form-item._50p {
  min-width: 40%;
}

.form-grid .form-item._100p {
  min-width: 100%;
}

.form-grid .form-action {
  width: 100%;
  margin-top: 20px;
}

.form-item {
  margin-bottom: 20px;
}

.form-field {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  width: 100%;
  padding: 17px 24px;
  background: #fff;
  border: 1px solid transparent;
  border-radius: var(--main-radius);
  line-height: 24px;
  font-weight: 300;
  font-size: 18px;
  color: var(--dark-color);
  -webkit-transition: border-color 0.4s;
  transition: border-color 0.4s;
}

.form-field:focus {
  border-color: var(--main-color-dark);
}

.form-field._medium {
  padding: 13px 19px;
  line-height: 22px;
  font-weight: normal;
  font-size: 16px;
}

.form-field._bd {
  border-color: var(--border-color);
}

.form-field._bd:focus {
  border-color: var(--main-color);
}

select.form-field {
  cursor: pointer;
  padding-right: 50px;
  background-image: url("../img/select.svg");
  background-repeat: no-repeat;
  background-position: calc(100% - 24px) 50%;
  text-overflow: ellipsis;
}

select.form-field._place {
  color: #848B7F;
}

select.form-field option {
  color: var(--dark-color);
}

textarea.form-field {
  resize: none;
}

textarea.form-field:not([rows]) {
  height: 100px;
}

.form-option {
  cursor: pointer;
  position: relative;
  display: inline-block;
  min-height: 20px;
  line-height: 20px;
  font-weight: 300;
  font-size: 14px;
}

.form-option input,
.form-option span:before,
.form-option span:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
}

.form-option input {
  opacity: 0;
}

.form-option input:checked~span:before {
  border-color: var(--main-color);
  background-color: var(--main-color);
}

.form-option input:checked~span:after {
  opacity: 1;
}

.form-option span {
  display: block;
  position: relative;
  padding: 0 0 0 35px;
}

.form-option span:before,
.form-option span:after {
  border-radius: 5px;
  -webkit-transition: 0.15s;
  transition: 0.15s;
}

.form-option span:before {
  content: "";
  border: 1px solid rgba(var(--dark-color-rgb), 0.2);
}

.form-option span:after {
  padding-left: 1px;
  text-align: center;
  content: "\e901";
  font-family: "icomoon";
  text-transform: none;
  font-weight: normal;
  font-style: normal;
  line-height: 20px;
  font-size: 10px;
  opacity: 0;
  color: #fff;
}

.form-options {
  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;
}

.form-options>* {
  max-width: 100%;
}

.form-file {
  cursor: pointer;
  display: block;
  background: #fff;
  border: 1px solid transparent;
  border-radius: var(--main-radius);
  color: #848B7F;
}

.form-file__input {
  display: none;
}

.form-file__files {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 60px;
  padding: 0 10px 0 24px;
}

.form-file__files-title {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
  margin-right: 10px;
  display: block;
  position: relative;
  height: 20px;
  line-height: 20px;
  font-weight: 300;
  font-size: 18px;
}

.form-file__files-title span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.form-file__files-btn {
  position: relative;
  display: inline-block;
  padding: 10px 15px 10px 44px;
  border-radius: 10px;
  background: #F3F6EF;
  line-height: 20px;
  font-size: 14px;
  color: var(--main-color);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.form-file__files-btn:before {
  position: absolute;
  top: 50%;
  left: 15px;
  margin-top: -0.5em;
  content: "\e91a";
  font-family: "icomoon";
  text-transform: none;
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  font-size: 18px;
}

.form-file:hover .form-file__files-btn {
  background: var(--main-color);
  color: #fff;
}

.form-file.selected {
  color: var(--dark-color);
}

.form-action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

.form-action .btn {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
}

.form-action__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.form-action__social-head {
  margin: 0 10px 0 0;
  max-width: 160px;
  font-size: 14px;
}

.form-action__social .social-grid {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
}

.social-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.social-item {
  display: inline-block;
  border-radius: 10px;
  background: rgba(var(--main-color-rgb), 0.1);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
  text-align: center;
  font-size: 18px;
  color: var(--main-color);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.social-item:hover {
  background-color: var(--main-color);
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
  color: #fff;
}

.social-item._big {
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 20px;
}

.social-item._light {
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.social-item._light:hover {
  background-color: var(--dark-color);
}

.top-line {
  padding: 10px 0;
  background: var(--main-color);
  color: #fff;
}

.top-line__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.top-line__line {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
  margin: 0 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.top-line__line:last-child {
  display: none;
}

.top-line .top-contact .ic {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.top-line .top-contact._phone {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
}

.top-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1.4;
  font-size: 14px;
}

.top-contact .ic {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  margin-right: 10px;
  border-radius: 10px;
  background: rgba(var(--main-color-rgb), 0.1);
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  font-size: 14px;
  color: var(--main-color);
}

.top-contact__descr {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
}

.top-contact__descr a {
  text-decoration: none;
}

.top-contact__descr a:hover {
  text-decoration: underline;
}

.top-contact__phones {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 2px 2em;
  margin: 0;
  padding: 0;
  list-style: none;
}

.top-contact__phones li {
  position: relative;
}

.top-contact__phones li:nth-child(even) {
  position: relative;
}

.top-contact__phones li:nth-child(even):after {
  content: "/";
  position: absolute;
  top: 0;
  left: -1.2em;
  opacity: 0.2;
}

.top-contact__phones li:first-child:last-child {
  grid-column: 1/-1;
}

.top-contact__phones a {
  text-decoration: none;
}

.top-contact__phones a:hover {
  text-decoration: underline;
}

.lang-menu__toggle {
  display: none;
}

.lang-menu__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.lang-menu__item {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  width: 30px;
  height: 30px;
  line-height: 28px;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  font-size: 12px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.lang-menu__item:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.lang-menu__item.active {
  border-color: transparent;
  background-color: rgba(255, 255, 255, 0.2);
}

.sandwich {
  overflow: hidden;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  padding: 0;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 10px;
  background: rgba(var(--main-color-rgb), 0.1);
}

.sandwich span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  margin: -1px 0 0 -9px;
  border-radius: 2px;
  background: var(--main-color);
  -webkit-transition: width 0.4s, -webkit-transform 0.4s;
  transition: width 0.4s, -webkit-transform 0.4s;
  transition: width 0.4s, transform 0.4s;
  transition: width 0.4s, transform 0.4s, -webkit-transform 0.4s;
}

.sandwich span:nth-child(1) {
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
}

.sandwich span:nth-child(3) {
  -webkit-transform: translateY(5px);
  -ms-transform: translateY(5px);
  transform: translateY(5px);
}

.sandwich.active span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.sandwich.active span:nth-child(2) {
  -webkit-transform: translateX(200%);
  -ms-transform: translateX(200%);
  transform: translateX(200%);
}

.sandwich.active span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.mob-menu {
  display: none;
  position: fixed;
  z-index: 95;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--app-height);
  background: #fff;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.mob-menu__wrapper {
  overflow: hidden;
  padding: 90px 0 20px;
  min-height: var(--app-height);
}

.mob-menu__list {
  margin-bottom: 20px;
  line-height: 1.25;
  font-weight: 600;
  font-size: 16px;
}

.mob-menu__list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mob-menu__list a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.mob-menu__list a:hover {
  opacity: 0.8;
}

.mob-menu__list>ul ul {
  display: none;
}

.mob-menu__list>ul>li {
  position: relative;
  margin-bottom: 12px;
}

.mob-menu__list>ul>li:last-child {
  margin-bottom: 0;
}

.mob-menu__row {
  padding: 20px 0;
  border-top: 1px solid var(--border-color);
}

.mob-menu .top-contact {
  margin-bottom: 10px;
}

.mob-menu .top-contact:last-child {
  margin-bottom: 0;
}

.header {
  position: relative;
  height: 90px;
}

.header+.m-sect,
.header+.mt-sect {
  margin-top: calc(var(--section-offset) - 30px);
}

.header+.p-sect,
.header+.pt-sect {
  padding-top: calc(var(--section-offset) - 30px);
}

.header__scroll {
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  border-radius: 0 0 var(--box-radius) var(--box-radius);
  border-bottom: 1px solid var(--border-color);
  background: #fff;
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}

.header__scroll._fixed {
  position: fixed;
}

.header__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
  height: 89px;
}

.header__logo {
  display: inline-block;
  max-width: 200px;
}

.header__logo img {
  display: block;
  max-height: 52px;
}

.header__menu {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
}

.header__menu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.header__menu-list a {
  display: block;
  padding: 10px 20px;
  border-radius: 10px;
  background: var(--gray-color);
  text-decoration: none;
  line-height: 1.25;
  font-size: 16px;
  color: var(--dark-color);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.header__menu-list a:hover {
  background-color: var(--main-color);
  color: #fff;
}

.header__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__social-head {
  margin: 0 10px 0 0;
  max-width: 135px;
  line-height: 1.4;
  font-size: 14px;
}

.header__social .social-grid {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
}

.header__toggle {
  display: none;
}

.global-noscroll .header__scroll._fixed,
.popup-opened .header__scroll._fixed {
  margin-right: var(--scrollbar-width);
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.pagination__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  margin: 0;
  padding: 10px;
  list-style: none;
  border-radius: var(--main-radius);
  background: rgba(var(--main-color-rgb), 0.1);
}

.pagination__item {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  border-radius: 10px;
  background: rgba(var(--main-color-rgb), 0.15);
  padding: 0 7px;
  min-width: 30px;
  height: 30px;
  line-height: 30px;
  text-decoration: none;
  text-align: center;
  font-size: 12px;
  color: var(--main-color);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.pagination__item .ic {
  vertical-align: middle;
}

.pagination__item .ic-chevron-left {
  margin-right: 0.1em;
}

.pagination__item .ic-chevron-right {
  margin-left: 0.1em;
}

.pagination__item:hover {
  background-color: rgba(var(--main-color-rgb), 0.25);
}

.pagination__item.active {
  background-color: var(--main-color);
  color: #fff;
}

span.pagination__item {
  pointer-events: none;
}

.filter {
  display: block;
  position: relative;
}

.filter__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 15px;
  width: 100%;
  height: 50px;
  padding: 0 20px;
  border: none;
  border-radius: var(--main-radius);
  background: var(--main-color);
  font-size: 16px;
  color: #fff;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.filter__btn .ic {
  font-size: 18px;
}

.filter__btn:hover {
  background-color: rgba(var(--main-color-rgb), 0.1);
  color: var(--main-color);
}

.filter__drop {
  display: none;
  position: absolute;
  z-index: 10;
  top: 100%;
  right: 0;
  width: 280px;
  padding: 19px;
  margin-top: 10px;
  border: 1px solid var(--border-color);
  border-radius: var(--main-radius);
  -webkit-box-shadow: 40px 40px 60px rgba(50, 61, 42, 0.2);
  box-shadow: 40px 40px 60px rgba(50, 61, 42, 0.2);
  background: #fff;
}

.filter__drop:before {
  content: "";
  position: absolute;
  bottom: 100%;
  right: 20px;
  border: 7px solid transparent;
  border-bottom: 8px solid #fff;
}

.filter-item {
  margin-bottom: 15px;
}

.filter-item:nth-of-type(n+2) {
  padding-top: 15px;
  border-top: 1px solid var(--border-color);
}

.filter-item:last-child {
  margin-bottom: 0;
}

.filter-item__head {
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1;
  font-weight: bold;
  font-size: 10px;
  color: #ADB1AA;
}

.filter-item__wrap {
  overflow: auto;
  max-height: 170px;
}

.filter-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 20px;
  padding: 30px;
  border-radius: 20px;
  background: #fff;
}

.filter-line__search {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
  position: relative;
  display: block;
}

.filter-line__search .form-field {
  padding-right: 50px;
}

.filter-line__search .ic-search {
  pointer-events: none;
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 19px;
  margin-top: -0.5em;
  font-size: 18px;
  color: var(--main-color);
}

.filter-line .filter {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
}

.catalog {
  position: relative;
}

.catalog .decor-el._1 {
  top: 80px;
  left: 50%;
  margin-left: 740px;
}

.catalog .decor-el._2 {
  top: 50%;
  right: 50%;
  margin: -120px 815px 0 0;
}

.catalog .decor-el._2 img {
  -webkit-animation-delay: -30s;
  animation-delay: -30s;
}

.catalog .decor-el._3 {
  top: 50%;
  left: 50%;
  margin: 60px 0 0 650px;
}

.catalog .decor-el._3 img {
  -webkit-animation-delay: -10s;
  animation-delay: -10s;
}

.catalog__subhead {
  max-width: 1000px;
}

.catalog__advants {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 40px;
  margin-bottom: 80px;
}

.catalog__advant {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1.5;
}

.catalog__advant .ic {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  margin-right: 20px;
  border-radius: var(--main-radius);
  background: rgba(var(--main-color-rgb), 0.15);
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  font-size: 16px;
  color: var(--main-color);
}

.catalog-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px 0;
  margin: 0 -10px;
}

.catalog-grid._hide {
  display: none;
}

.catalog-grid__col {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 25%;
  padding: 0 10px;
}

.catalog-grid__col .catalog-item {
  height: 100%;
}

.catalog-item {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 10px;
  border-radius: 20px;
  background: #fff;
}

.catalog-item__img {
  overflow: hidden;
  width: 100%;
  padding-bottom: 100%;
  border-radius: var(--main-radius);
  background: var(--gray-color);
}

.catalog-item__img img {
  max-width: 87%;
  max-height: 87%;
  -webkit-filter: drop-shadow(40px 40px 60px rgba(50, 61, 42, 0.3));
  filter: drop-shadow(40px 40px 60px rgba(50, 61, 42, 0.3));
}

.catalog-item__main {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 20px 10px 10px;
}

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

.catalog-item__info-item {
  display: inline-block;
  padding: 6px 15px;
  border-radius: 10px;
  background: var(--gray-color);
  line-height: 18px;
  font-size: 14px;
}

.catalog-item__action {
  margin-top: auto;
  padding-top: 10px;
}

a.catalog-item {
  text-decoration: none;
}

.js-product-card-main {
  display: none;
}

.catalog-no-match {
  display: none;
}

.scheme-boxes {
  max-width: 1920px;
  margin: 20px auto;
  padding: 0 20px;
}

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

.scheme-box {
  display: block;
  overflow: hidden;
  position: relative;
  height: 900px;
  min-height: 380px;
  border-radius: var(--box-radius);
  text-decoration: none;
  color: #fff;
}

.scheme-box .img-full-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--box-radius);
}

.scheme-box .img-full-box:before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: var(--box-radius);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(20%, rgba(50, 61, 42, 0)), color-stop(40%, rgba(50, 61, 42, 0.4)), color-stop(70%, rgba(50, 61, 42, 0.8)), to(#323D2A));
  background: linear-gradient(to bottom, rgba(50, 61, 42, 0) 20%, rgba(50, 61, 42, 0.4) 40%, rgba(50, 61, 42, 0.8) 70%, #323D2A);
}

.scheme-box .img-full-box img {
  -webkit-transition: 1.5s;
  transition: 1.5s;
}

.scheme-box__content {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 120px;
}

.scheme-box__content> :last-child {
  margin-bottom: 0;
}

.scheme-box__content .btn {
  margin-top: 20px;
}

.scheme-box__descr {
  max-width: 28em;
  font-weight: 300;
  font-size: 18px;
}

.scheme-box:hover img {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.faq {
  position: relative;
}

.faq .decor-line {
  left: 50%;
  bottom: -600px;
  -webkit-transform: translateX(-46%);
  -ms-transform: translateX(-46%);
  transform: translateX(-46%);
}

.faq .decor-el._1 {
  top: 430px;
  right: 50%;
  margin-right: 610px;
}

.faq .decor-el._2 {
  bottom: 200px;
  left: 50%;
  margin-left: 810px;
}

.faq .decor-el._2 img {
  -webkit-animation-delay: -30s;
  animation-delay: -30s;
}

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

.faq__title {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  margin-right: 120px;
  width: 400px;
}

.faq__title> :last-child {
  margin-bottom: 0;
}

.faq__items {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
}

.faq-item {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.faq-item:last-child .faq-item__content {
  padding-bottom: 0;
}

.faq-item__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0;
  width: 100%;
  border: none;
  background: none;
  text-align: left;
  line-height: 1.4;
  font-size: 20px;
  color: inherit;
}

.faq-item__btn>* {
  display: inline-block;
}

.faq-item__btn ._count {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  min-width: 60px;
  line-height: 1.3;
  font-weight: 300;
  font-size: 30px;
  color: var(--main-color);
}

.faq-item__btn ._head {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
  font-weight: bold;
  -webkit-transition: color 0.4s;
  transition: color 0.4s;
}

.faq-item__btn .ic {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  margin-left: 20px;
  position: relative;
  border: 1px solid var(--main-color);
  border-radius: var(--main-radius);
  width: 40px;
  height: 40px;
  text-align: center;
  font-size: 14px;
  color: var(--main-color);
}

.faq-item__btn .ic:before {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin-top: -0.5em;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.faq-item__btn:hover ._head {
  color: var(--main-color);
}

.faq-item__btn.active .ic:before {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.faq-item__hidden {
  display: none;
}

.faq-item__content {
  padding: 5px 60px;
  font-size: 18px;
}

.faq-item__content> :last-child {
  margin-bottom: 0;
}

.about {
  margin: 20px 0;
  border-radius: var(--box-radius);
  background: var(--main-color);
  background: url("../img/pattern-lines.svg") repeat 50% 0, linear-gradient(120deg, var(--main-color), var(--main-color-dark));
  color: #fff;
}

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

.about__logo {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 400px;
  margin-right: 120px;
}

.about__logo img {
  max-height: 125px;
}

.about__main {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
}

.about__main>* {
  margin-bottom: 40px;
}

.about__main>*:last-child {
  margin-bottom: 0;
}

.about__content {
  line-height: 1.5;
  font-size: 20px;
}

.about__content> :last-child {
  margin-bottom: 0;
}

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

.about__advant {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
  min-width: 40%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.2);
}

.about__advant-img {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  margin-right: 20px;
  width: 64px;
  height: 64px;
  border-radius: var(--main-radius);
  background: rgba(255, 255, 255, 0.2);
}

.about__advant-img img {
  max-width: 55%;
  max-height: 55%;
}

.about__advant-content {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
  padding-right: 10px;
  line-height: 1.5;
  font-size: 18px;
}

.contacts {
  position: relative;
}

.contacts .decor-line {
  top: 20px;
  left: 50%;
  -webkit-transform: translateX(-55%);
  -ms-transform: translateX(-55%);
  transform: translateX(-55%);
}

.contacts .decor-el._1 {
  top: -160px;
  left: 50%;
  margin-left: 390px;
}

.contacts .decor-el._1 img {
  -webkit-animation-delay: -55s;
  animation-delay: -55s;
}

.contacts .decor-el._2 {
  bottom: 15px;
  right: 50%;
  margin-right: 740px;
}

.contacts .title h2 strong {
  display: inline-block;
}

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

.contacts__boxes {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  margin-right: 10px;
  padding-right: 10px;
}

.contacts__box {
  padding: 60px;
  border-radius: var(--box-radius);
  background: #fff;
}

.contacts__box> :last-child {
  margin-bottom: 0;
}

.contacts__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.contacts__social-content {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
  margin-right: 15px;
  line-height: 1.4;
}

.contacts__social-content strong {
  display: block;
  font-size: 1.25em;
}

.contacts__img {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  border-radius: var(--box-radius);
}

.contacts__img:before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 58.82%;
}

.contacts__map {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
  overflow: hidden;
  position: relative;
  border: 5px solid #fff;
  border-radius: var(--box-radius);
  background: var(--gray-color);
  min-height: 400px;
}

.contacts__map-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.contact-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 10px;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-item__icon {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  margin-right: 15px;
  width: 52px;
  height: 52px;
  line-height: 52px;
  border-radius: var(--main-radius);
  background: rgba(var(--main-color-rgb), 0.1);
  text-align: center;
  font-size: 22px;
  color: var(--main-color);
}

.contact-item__content {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
}

.contact-item__content>* {
  margin-bottom: 0;
}

.contact-item__content ._head {
  font-weight: bold;
}

.contact-item__content a {
  text-decoration: none;
}

.contact-item__content a:hover {
  text-decoration: underline;
}

.contact-item__content ul._main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0 1.15em;
  padding: 0;
  list-style: none;
}

.contact-item__content ul._main li {
  position: relative;
}

.contact-item__content ul._main li:after {
  content: "/";
  position: absolute;
  top: 0;
  right: -0.8em;
  opacity: 0.1;
}

.contact-item__content ul._main li:last-child:after {
  display: none;
}

.footer {
  padding: var(--section-offset) 0 80px;
  border-radius: var(--box-radius) var(--box-radius) 0 0;
  background: url("../img/pattern-lines.svg") repeat 50% 0, var(--main-color);
  line-height: 1.5;
  color: #fff;
}

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

.footer__first {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  max-width: 200px;
}

.footer__logo {
  display: inline-block;
  vertical-align: top;
}

.footer__logo img {
  display: block;
  max-height: 52px;
}

.footer__menu._main {
  max-width: 200px;
}

.footer__menu._links {
  max-width: 300px;
}

.footer__menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer__menu li {
  margin-bottom: 6px;
}

.footer__menu li:last-child {
  margin-bottom: 0;
}

.footer__menu a {
  text-decoration: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.footer__menu a:hover {
  color: var(--dark-color);
}

.footer__social {
  max-width: 150px;
}

.footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 56px;
}

.footer__copy {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
  margin: 0;
  font-size: 14px;
}

.footer__dev {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  margin-left: 20px;
  text-decoration: none;
  font-size: 14px;
}

.footer__dev .ic {
  margin-top: -0.15em;
  font-size: 24px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.footer__dev:hover .ic {
  color: var(--dark-color);
}

.scheme-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.scheme-grid:last-child {
  margin-bottom: 0;
}

.scheme-item {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
  min-width: 30%;
  padding: 30px;
  border-radius: 20px;
  background: var(--gray-color);
}

.scheme-item:first-of-type {
  background-color: #F3F6EF;
}

.scheme-item>* {
  margin-bottom: 10px;
}

.scheme-item>*:last-child {
  margin-bottom: 0;
}

.scheme-item__top {
  position: relative;
  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;
  gap: 15px;
  margin-bottom: 20px;
}

.scheme-item__top:before {
  content: "";
  pointer-events: none;
  position: absolute;
  z-index: 3;
  top: 50%;
  left: -71px;
  margin-top: -8px;
  width: 62px;
  height: 16px;
  background: url("../img/sch-arrow.svg") no-repeat center;
}

.scheme-item__icon {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 64px;
  height: 64px;
  border-radius: var(--main-radius);
  background: var(--main-color);
}

.scheme-item__icon img {
  max-width: 55%;
  max-height: 55%;
}

.scheme-item__numb {
  font-weight: 200;
  line-height: 1;
  font-size: 60px;
  color: var(--main-color);
}

.scheme-info-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 29px;
  border: 1px solid var(--main-color);
  border-radius: 20px;
}

.scheme-info-content .ic {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  margin-right: 30px;
  font-size: 30px;
  color: var(--main-color);
}

.scheme-info-content .content {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
}

.product-card__wrap {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 10px;
}

.product-card__img {
  overflow: hidden;
  border-radius: 20px;
  background: var(--gray-color);
}

.product-card__img:before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 100%;
}

.product-card__img img {
  -webkit-filter: drop-shadow(40px 40px 60px rgba(50, 61, 42, 0.3));
  filter: drop-shadow(40px 40px 60px rgba(50, 61, 42, 0.3));
  max-width: 90%;
  max-height: 90%;
}

.product-card__main {
  padding: 50px;
}

.product-card__main #js-product-card-main> :last-child {
  margin-bottom: 0;
}

.product-card__pack {
  display: inline-block;
  padding: 11px 15px;
  border-radius: 10px;
  background: var(--gray-color);
  line-height: 18px;
  font-size: 14px;
}

.product-card__content {
  margin-bottom: 20px;
}

.product-card__content * {
  margin-bottom: 0;
}

.product-card__price {
  margin-bottom: 20px;
}

.product-card__price-head {
  margin: 0;
  font-weight: bold;
}

.product-card__price-main {
  line-height: 1;
  font-weight: 300;
  font-size: 20px;
}

.product-card__price-main strong {
  font-weight: 600;
  font-size: 2em;
  color: var(--main-color);
}

.product-card__deliv {
  margin-bottom: 20px;
}

.product-card__deliv-head {
  margin-bottom: 10px;
  font-weight: bold;
}

.product-card__deliv-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

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

.product-card__deliv-item img {
  max-width: 120px;
  max-height: 50px;
  border-radius: 10px;
}

.product-card__deliv-item span {
  line-height: 1.4;
  font-size: 14px;
}

.product-card__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-bottom: 20px;
}

.product-card__buttons .btn {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
  min-width: 40%;
}

.product-card__info {
  padding: 20px;
  border-radius: 20px;
  background: #F3F6EF;
  font-size: 14px;
}

.product-card__info>* {
  margin-bottom: 10px;
}

.product-card__info>*:last-child {
  margin-bottom: 0;
}

.product-card__info-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-color);
  font-weight: bold;
}

.product-card__info-head .ic {
  margin-right: 10px;
  font-size: 20px;
  color: var(--main-color);
}

.product-card .js-product-card-main {
  display: block;
}

/* Popups */
.popup {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1380px;
  margin: 40px auto;
}

.popup__title {
  margin-bottom: 40px;
}

.popup__row {
  background: #fff;
}

.popup__row:first-of-type {
  border-top-left-radius: var(--box-radius);
  border-top-right-radius: var(--box-radius);
}

.popup__row:last-of-type {
  border-bottom-left-radius: var(--box-radius);
  border-bottom-right-radius: var(--box-radius);
}

.popup__row._bg-main {
  background: var(--main-color);
  color: #fff;
}

.popup .content {
  word-wrap: break-word;
}

.tx-popup.popup {
  max-width: 500px;
}

.tx-popup.popup .content {
  padding: 40px;
}

/* Customize plugins */
.mfp-bg {
  background: rgba(var(--dark-color-rgb), 0.6);
  -webkit-backdrop-filter: blur(35px);
  backdrop-filter: blur(35px);
}

.mfp-zoom-in .mfp-with-anim {
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
}

.mfp-zoom-in.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}

.mfp-zoom-in.mfp-ready .mfp-with-anim {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.mfp-zoom-in.mfp-ready.mfp-bg {
  opacity: 1;
}

.mfp-zoom-in.mfp-removing .mfp-with-anim {
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
  opacity: 0;
}

.mfp-zoom-in.mfp-removing.mfp-bg {
  opacity: 0;
}

.mfp-container {
  padding-left: 6px;
  padding-right: 6px;
}

.mfp-figure:after {
  -webkit-box-shadow: none;
  box-shadow: none;
  background: #fff;
}

.mfp-title {
  color: #fff;
}

.mfp-iframe-scaler iframe {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.mfp-image-holder .close-btn,
.mfp-iframe-holder .close-btn {
  right: 0;
  height: 40px;
  border-radius: 0;
  background: none;
  text-align: right;
  line-height: 40px;
  font-size: 18px;
  color: #fff;
}

.mfp-image-holder .close-btn:hover,
.mfp-iframe-holder .close-btn:hover {
  opacity: 0.7;
}

.mfp-image-holder .close-btn {
  top: 0;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
  width: 100%;
}

.mfp-iframe-holder .close-btn {
  width: auto;
  top: -40px;
}

[class*=ymaps-2-1][class*=-ground-pane] {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}