/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
*,
::after,
::before {
  box-sizing: border-box;
}

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

details,
main {
  display: block;
}

h1 {
  font-size: 2em;
}

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

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

a {
  background-color: transparent;
  color: var(--first-color);
  text-decoration: none;
  transition: 0.2s linear;
  outline: 0;
  -webkit-tap-highlight-color: transparent;
}

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

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

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

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

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

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

[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring,
button:-moz-focusring {
  outline: ButtonText dotted 1px;
}

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

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

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

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

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

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

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

summary {
  display: list-item;
}

[hidden],
template {
  display: none;
}

:root {
  --h1: 56px;
  --h2: 36px;
  --col: 33.33333333%;
  --Uni: 400;
  --UniHeavy: 900;
  --text-color: #212121;
  --first-color: #00aa27;
  --bg-orange: #f09520;
  --primary: #00aa27;
  --theme-color-primary: #00aa27;
}

@font-face {
  font-family: Uni;
  src: local("Uni Neue Heavy"), local("Uni-Neue-Heavy"),
  url(../fonts/UniNeueHeavy.woff2) format("woff2"),
  url(../fonts/UniNeueHeavy.woff) format("woff");
  font-weight: var(--UniHeavy);
  font-style: normal;
}

@font-face {
  font-family: Uni;
  src: local("Uni Neue Regular"), local("Uni-Neue-Regular"),
  url(../fonts/UniNeueRegular.woff2) format("woff2"),
  url(../fonts/UniNeueRegular.woff) format("woff");
  font-weight: var(--Uni);
  font-style: normal;
}

body,
html {
  padding: 0;
  margin: 0;
  border: 0;
  /*max-width: 1920px;*/
  min-width: 320px;
  overflow-x: hidden;
  font-family: "Open Sans", sans-serif;
  background-color: #fff;
  height: 100%;
  line-height: 1;
  position: relative;
  font-size: 13px;
  -webkit-font-smoothing: antialiased;
}

p {
  margin: 0;
  padding: 0;
}

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

h1,
h2 {
  padding: 0;
  margin: 0;
}

fieldset {
  padding: 0;
  border: none;
}

label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

button:hover {
  cursor: pointer;
}

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

.flex {
  display: flex;
  /* justify-content: flex-start;*/
  justify-content: center;
  align-items: flex-start;
}

.flex__row,
.flex__row>li {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
}

.flex__row>li {
  margin-bottom: 30px;
}

.flex__row {
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.col {
  width: var(--col);
  padding-left: 15px;
  padding-right: 15px;
}

.col_cat {
  width: 50%;
  padding-left: 15px;
  padding-right: 15px;
}

.col_cat .product__link {
  height: 350px;
}

@media (max-width: 968px) {
  .col_cat {
    width: var(--col);
    padding-left: 0;
    padding-right: 0;
  }

  .col_cat .product__link {
    height: 265px;
  }
}

.title_navesy {
  margin-top: 50px;
}

details>summary {
  list-style: none;
}

details>summary:hover {
  cursor: pointer;
}

.btn {
  border-radius: 40px;
  border: 0;
  font: var(--Uni) 15px Uni, sans-serif;
  color: #fff;
  display: block;
  margin: 0 auto;
  text-align: center;
  transition: 0.3s;
}

.btn:hover {
  cursor: pointer;
}

.burger {
  display: none;
}

.main__title {
  font: var(--UniHeavy) var(--h1) Uni, sans-serif;
  text-transform: uppercase;
  color: #fff;
}

.section__title {
  position: relative;
}

.section__title span {
  font: var(--UniHeavy) var(--h2) Uni, sans-serif;
  color: var(--text-color);
  text-transform: uppercase;
}

.section__title_big {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font: var(--UniHeavy) 75px Uni, sans-serif;
  color: #e5e5e5;
  text-transform: uppercase;
}





.section__line {
  width: 60px;
  height: 3px;
  margin: 25px 0 35px;
  background: var(--first-color);
}

.path__list {
  padding-top: 20px;
  display: flex;
	flex-wrap: wrap;
  align-items: center;
}

.path__item:not(:last-child) {
  margin-right: 10px;
}

.path__link span {
  color: #fff;
  font-size: 14px;
  transition-duration: 0.5s;
}

.path__link:hover span {
  cursor: pointer;
  text-decoration: underline;
  transition-duration: 0.5s;
}

.symbol__el {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 10px;
  background-repeat: no-repeat;
  background-image: url(../img/arrow.svg);
  background-size: cover;
}

.path__link_active span {
  color: #fff;
}

.slick-list {
  overflow: hidden;
}

.slick-track {
  display: flex;
  min-width: 0;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-dots {
  display: flex;
}

.slick-dots li {
  width: 7px;
  height: 7px;
  margin: 0 8px;
  border-radius: 50%;
  cursor: pointer;
  background-color: #fff;
}

.slick-dots li.slick-active {
  background-color: var(--first-color);
}

.slick-dots button {
  border: none;
  font-size: 0;
  padding: 0;
  margin: 0;
}

.header {
  position: relative;
  z-index: 2;
  width: 100%;
}

.header_fixed {
  position: fixed;
  order: 1;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999;
}

.header-top {
  position: relative;
  z-index: 1;
  padding: 25px 0;
  transition: 0.3s;
  background-color: #fff;
}

.header-top .container.flex {
  justify-content: space-between;
  align-items: center;
}

.header-top__logo.flex {
  align-items: center;
}

.header-top__logo img {
  width: 155px;
  margin-top: -5px;
}

.header-top__logo span {
  display: block;
  width: 185px;
  font: var(--Uni) 15px/20px Uni, sans-serif;
  color: #7a7a7a;
}

.header-top__info.flex {
  justify-content: flex-end;
  align-items: center;
}

.header-top__call {
  white-space: nowrap;
  margin-right: 30px;
}

.header-top__call a {
  font: var(--UniHeavy) 19px Uni, sans-serif;
  color: var(--text-color);
}

.header-top__call a:before {
  content: "";
  width: 13px;
  height: 13px;
  background-repeat: no-repeat;
  display: inline-block;
  background-size: contain;
  margin-right: 7px;
  background-image: url(../img/phone.svg);
}

.header-top__call p {
  padding-left: 30px;
}

.header-top__info .btn {
  height: 44px;
  padding: 0 30px;
}

.btn__callback {
  background-color: var(--first-color);
  margin-right: 15px;
}

.btn__measurer {
  background-color: var(--bg-orange);
}

.header-bottom {
  position: relative;
  background-color: #f6f6f6;
}

.header-bottom__list.flex {
  justify-content: space-between;
}

.header-bottom__list {
  z-index: 10;
}

.header-bottom__item {
  display: block;
  padding: 0 20px;
}

.header-bottom__link {
  display: block;
  font: var(--UniHeavy) 18px/60px Uni, sans-serif;
  height: 60px;
  color: #000;
  transition: 0.3s;
}

.header-bottom__link:hover {
  color: var(--first-color);
}

.dropdown__content.flex {
  justify-content: space-between;
}

.dropdown__content,
.dropdown__content::before {
  position: absolute;
  z-index: -1;
}

.dropdown__content {
  width: 100%;
  left: 0;
  top: 100%;
  padding: 45px 30px;
  transform: translateX(-200%);
  opacity: 0;
  transition: 0.5s;
}

.dropdown:hover .dropdown__content {
  transform: translateX(0);
  opacity: 1;
  z-index: 5;
}

.dropdown__content::before {
  content: "";
  height: 100%;
  width: 100%;
  background: var(--first-color);
  opacity: 0.95;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.dropdown__col {
  position: relative;
  z-index: -1;
  width: 19%;
}

.dropdown:hover .dropdown__col {
  z-index: 12;
}

.dropdown__link {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  transition-duration: 0.5s;
}

.dropdown__link .text {
  transition-duration: 0.2s;
  margin-right: 5px;
}

.dropdown__link span {
  font: var(--Uni) 14px/24px Uni, sans-serif;
  color: #fff;
}

.dropdown__link .price {
  white-space: nowrap;
}

.dropdown__link:first-child span {
  width: 100%;
  display: block;
  font: var(--UniHeavy) 16px Uni, sans-serif;
  color: #fff;
  cursor: default;
  padding-bottom: 10px;
  margin-bottom: 10px;
  text-decoration: none;
  border-bottom: 1px solid #efb366;
  transition-duration: 0.2s;
}

.dropdown__link:hover {
  border-bottom: 1px solid #fff;
  transition-duration: 0.5s;
}

.dropdown__link:first-child:hover {
  border-bottom: none;
}

.dropdown__link:not(:last-child) {
  margin-bottom: 5px;
}

.dropdown__link:not(:first-child) {
  padding-left: 15px;
}

.header-bottom__info {
  display: none;
}

.hero {
  position: relative;
}

.hero__slider {
  position: relative;
  height: 50vh;
  min-height: 300px;
  overflow: hidden;
}

.hero__bg:before {
  content: "";
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  height: 100%;
  width: 100%;
  background-size: cover;
  /*box-shadow: inset 0 0 0 9999px rgb(148 255 172 / 40%);*/
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.6), transparent);
}

.hero__bg {
  width: 100%;
  position: relative;
  height: 50vh;
  min-height: 300px;
  background-size: cover;
  background-position: 50%;
}

.hero__slider .slide-item .container.flex {
  flex-direction: column;
  justify-content: center;
}

.hero__slider .slide-item .container {
  position: relative;
  z-index: 3;
  height: 60vh;
}

.hero__title {
  width: 100%;
  font: var(--UniHeavy) var(--h1) Uni, sans-serif;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.hero__title h1 {
  font-size: 56px;
}

.hero__link {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 0;
  width: 280px;
  height: 65px;
  line-height: 4;
  background-color: var(--first-color);
}

.hero__nav {
  display: flex;
  align-items: center;
  padding: 0 15px;
  position: absolute;
  width: 100%;
  max-width: 1140px;
  left: 50%;
  transform: translateX(-50%);
  bottom: 40px;
}

.hero__nav .slick-arrow {
  width: 39px;
  height: 39px;
  border-radius: 100px;
  text-indent: 9999px;
  border: 0;
  background: url(../img/slider-arrow-white.svg) 0 0/100% 100%;
  z-index: 3;
}

.hero__nav .slick-prev {
  transform: rotate(180deg);
}

.hero__nav .slick-next {
  order: 1;
}

.hero__nav .slick-dots {
  justify-content: center;
  padding: 0 15px;
}

.product__card {
  position: relative;
  z-index: 1;
}

.product {
  padding: 80px 0 60px;
  background-color: #fff;
}

.product__link {
  display: block;
  width: 100%;
  height: 265px;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
}

.product__bg,
.product__shadow {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
}

.product__bg {
  z-index: 1;
}

.product__shadow {
  z-index: 2;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.1));
  transition: 0.3s;
}

.product__link:hover .product__shadow {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
}

.product__info {
  position: absolute;
  left: 30px;
  bottom: 16px;
  width: 230px;
  z-index: 3;
}

.product__subtitle {
  font: var(--UniHeavy) 20px Uni, sans-serif;
  color: #fff;
  margin-bottom: 10px;
}

.product__info p {
  font: var(--Uni) 16px Uni, sans-serif;
  color: #fff;
}

.product__text {
  display: none;
  font: var(--Uni) 16px/24px Uni, sans-serif;
  color: #fff;
  margin-bottom: 10px;
  -webkit-animation-duration: all 2s linear;
  animation-duration: all 2s linear;
}

.product__link:hover .product__text {
  display: block;
}

.product__info p .product__info_price {
  font: var(--Uni) 20px Uni, sans-serif;
  color: var(--first-color);
}

.product__btn.flex {
  justify-content: center;
  align-items: center;
}

.product__btn {
  width: 50px;
  height: 50px;
  position: absolute;
  z-index: 3;
  right: 30px;
  bottom: 20px;
  border-radius: 15px;
  background: hsla(0, 0%, 100%, 0.25);
  transition: 0.3s;
}

.product__btn img {
  width: 15px;
}

.product__link:hover .product__btn {
  background: var(--first-color);
  cursor: pointer;
}

.calc {
  display: none;
}

.form-help,
.form-question {
  padding: 110px 0;
  background: url(../img/form-help_bg.jpg) 50% / cover no-repeat fixed;
  box-shadow: inset 0 0 0 9999px rgb(0 0 0 / 80%);
}

.form-help__title,
.form-question__title {
  font: var(--UniHeavy) var(--h2) Uni, sans-serif;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
}

.form-help__line,
.form-question__line {
  width: 60px;
  height: 3px;
  margin: 20px auto;
  background: var(--first-color);
}

.form-help__text,
.form-question__text {
  font: var(--Uni) 24px Uni, sans-serif;
  color: #fff;
  text-align: center;
}

.form-help form {
  width: 1000px;
  border-radius: 32px;
  height: 65px;
  margin: 35px auto 0;
}

.form-help form.flex {
  flex-wrap: wrap;
  justify-content: space-between;
}

.form-help form input {
  height: 100%;
  width: 320px;
  padding: 0 40px;
  font: var(--Uni) 15px Uni, sans-serif;
  color: #232323;
  border-radius: 32px;
  border: 2px solid brown;
  font-style: italic;
}

.form-help__btn {
  font: var(--UniHeavy) 15px Uni, sans-serif;
  color: #fff;
  border: 0;
  background: var(--first-color);
  border-radius: 32px;
  width: 280px;
  height: 100%;
}

.form-help__policy,
.form-question__policy {
  font: var(--Uni) 14px Uni, sans-serif;
  color: #fff;
  text-align: center;
  display: block;
  width: 100%;
  margin-top: 22px;
}

.company {
  padding: 75px 0;
}

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

.company__cards {
  margin-bottom: 50px;
}

.company__card {
  text-align: center;
}

.company__img {
  height: 50px;
}

.company__img img {
  width: 50px;
}

.company__img.flex {
  justify-content: center;
  align-items: center;
}

.company__number {
  font: var(--UniHeavy) 46px Uni, sans-serif;
  color: var(--text-color);
  display: block;
  text-align: center;
  margin: 20px 0 15px;
}

.company__desc {
  font: var(--Uni) 18px/24px Uni, sans-serif;
  color: var(--text-color);
  text-align: center;
}

.company__symbol {
  width: 1px;
  height: 180px;
  background: #dcdcdc;
  transform: rotate(15deg);
  align-self: center;
}

.advantage {
  padding: 75px 0;
  background: #f3f3f3;
}

.advantage__cards {
  margin-top: 50px;
}

.advantage__cards.flex {
  align-items: stretch;
  flex-wrap: wrap;
  margin: 0 -11px;
}

.advantage__card {
  width: 263px;
  margin: 0 11px 22px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 30px 0 rgb(0 0 0 / 15%);
  text-align: center;
  padding: 30px 15px;
  transition: 0.3s;
}

.advantage__card:hover {
  transform: scale(1.05);
}

.advantage__img {
  position: relative;
}

.advantage__img.flex {
  justify-content: center;
  align-items: center;
}

.advantage__img svg {
  width: 67px;
  height: 67px;
}

.advantage__card:hover .advantage__img>svg,
.advantage__card:hover .advantage__img>svg g {
  fill: var(--first-color);
}

.advantage__title {
  font: var(--UniHeavy) 22px Uni, sans-serif;
  color: var(--text-color);
  margin: 20px auto 0;
  display: block;
  text-align: center;
}

.advantage__desc {
  font: var(--Uni) 16px/24px Uni, sans-serif;
  color: var(--text-color);
  margin-top: 10px;
}

.objects {
  padding: 75px 0;
}

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

.objects__cards {
  margin-top: 5px;
  margin-bottom: 20px;
}

.objects__link {
  display: block;
  width: 555px;
  height: 365px;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.objects__img,
.objects__shadow {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 100%;
}

.objects__shadow {
  z-index: 2;
  background: linear-gradient(90deg,
  rgba(0, 0, 0, 0.8),
  rgba(0, 0, 0, 0.6),
  rgba(0, 0, 0, 0.4),
  transparent);
  transition: 0.3s;
}

.objects__img {
  z-index: 1;
  background-size: cover;
  background-position: 50%;
}

.objects__info {
  position: absolute;
  left: 30px;
  top: 25px;
  width: 230px;
  z-index: 3;
}

.objects__info h3 {
  font: var(--UniHeavy) 26px Uni, sans-serif;
  color: #fff;
  margin-bottom: 8px;
}

.objects__link:hover .objects__info h3 {
  text-decoration: underline;
}

.objects__text {
  display: none;
  font: var(--Uni) 18px/32px Uni, sans-serif;
  color: #fff;
}

.objects__link:hover .objects__text {
  display: block;
}

.objects__text span {
  font-weight: var(--UniHeavy);
}

.objects__date {
  position: absolute;
  left: 30px;
  bottom: 20px;
  width: 230px;
  z-index: 3;
  font: var(--Uni) 15px Uni, sans-serif;
  color: #b8b8b8;
}

.objects__btn.flex {
  justify-content: center;
  align-items: center;
}

.objects__btn {
  width: 50px;
  height: 50px;
  position: absolute;
  z-index: 3;
  right: 20px;
  bottom: 20px;
  border-radius: 15px;
  background: hsla(0, 0%, 100%, 0.25);
  transition: 0.3s;
}

.objects__link:hover .objects__btn {
  background: var(--first-color);
  cursor: pointer;
}

.objects__btn img {
  width: 15px;
}

.objects__all {
  width: 280px;
  height: 65px;
  background-color: var(--first-color);
  line-height: 65px;
}

.recall {
  background: #f3f3f3;
  padding: 80px 0;
}

.recall__block {
  margin: 50px 0 100px;
}

.recall__slider {
  width: 100%;
  position: relative;
}

.recall__slider .slick-list {
  margin: 0 -15px;
}

.recall__slider11 .slide-item {
  margin: 0 15px 25px;

}

.recall__el {
  display: block;
  height: 240px;
  border: 6px solid #fff;
  position: relative;
}

.recall__el iframe {
  width: 100%;
  height: 240px;
}

.recall__nav {
  display: flex;
  justify-content: center;
  margin-top: 45px;
}

.recall__nav .slick-arrow {
  width: 39px;
  height: 39px;
  border-radius: 100px;
  border: 0;
  background: url(../img/recall-arrow.svg) 0 0/100% 100%;
  z-index: 3;
  filter: grayscale(1);
}

.recall__nav .recall-prev {
  transform: rotate(180deg);
}

.recall__nav .recall-next {
  order: 1;
}

.recall__nav .slick-dots {
  justify-content: center;
  align-items: center;
  list-style: none;
  padding: 0 15px;
}

.recall__nav .slick-dots li {
  width: 7px;
  height: 7px;
  margin: 0 6px;
  padding: 0;
  background: #c7c7c7;
}

.recall__nav .slick-dots li.slick-active {
  background: var(--first-color);
}

.scheme {
  background: #fff;
  padding: 90px 0;
}

.scheme__cards.flex {
  flex-wrap: wrap;
}

.scheme__cards {
  margin-top: 50px;
}

.scheme__card {
  width: 25%;
  text-align: center;
  padding: 30px 40px 35px;
}

.scheme__item1 {
  padding-left: 30px;
  padding-right: 50px;
  background: url(../img/scheme-img1.png) 0 0/100% 100%;
}

.scheme__item2,
.scheme__item3 {
  background: url(../img/scheme-img2.png) 0 0/100% 100%;
}

.scheme__item3 {
  padding-left: 56px;
  padding-right: 33px;
}

.scheme__item4 {
  background: url(../img/scheme-img3.png) 0 0/100% 100%;
}

.scheme__number {
  font: var(--UniHeavy) 60px Uni, sans-serif;
  color: var(--first-color);
  display: block;
  text-align: center;
  margin-bottom: 10px;
}

.scheme__title {
  color: var(--text-color);
  margin-bottom: 8px;
}

.scheme__desc {
  font: var(--Uni) 16px/24px Uni, sans-serif;
  color: var(--text-color);
}

.text-about {
  padding-top: 55px;
  padding-bottom: 55px;
}

.text-about ol,
.text-about p,
.text-about ul {
  font: var(--Uni) 17px/26px Uni, sans-serif;
  color: var(--text-color);
  margin-bottom: 15px;
}

.form-question {
  background: url(../img/form-question_bg.jpg) 50% / cover no-repeat fixed;
}

.form-question form.flex {
  justify-content: space-between;
  flex-wrap: wrap;
}

.form-question form {
  width: 1000px;
  margin: 35px auto 0;
  height: 65px;
}

.form-question form input {
  height: 100%;
  width: 320px;
  padding: 0 40px;
  font: var(--Uni) 15px Uni, sans-serif;
  color: #232323;
  border-radius: 32px;
  border: 2px solid #fff;
  font-style: italic;
}

.form-question__btn {
  font: var(--UniHeavy) 15px Uni, sans-serif;
  color: #fff;
  border: 0;
  background: var(--first-color);
  border-radius: 32px;
  width: 320px;
  height: 100%;
}

.banner-detail {
  padding: 20px 0;
  background-size: cover;
  background-position: 50%;
  margin-bottom: 40px;
  margin-top: -32px;

  box-shadow: inset 0 0 0 9999px rgb(12 12 12 / 50%);
}

.banner-detail__block {
  padding: 90px 0 100px;
  display: flex;
  justify-content: space-between;
}

.banner-detail__contacts {
  width: 50%;
  display: flex;
  flex-direction: column;
}

.banner-detail__contacts>* {
  font-size: 18px;
  color: #fff;
}

.banner-detail__contacts> :not(:last-child) {
  margin-bottom: 10px;
  display: block;
}

.banner-detail__contacts a::before {
  content: "";
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  background-repeat: no-repeat;
  background-size: contain;
}

.banner-detail__contacts .phone::before {
  background-image: url(../img/phone-contacts.svg);
}

.banner-detail__contacts .mail::before {
  background-image: url(../img/mail-contacts.svg);
}

.banner-detail__contacts b {
  margin-top: 20px;
}

.text-detail {
  padding: 45px 0;
}

.text-detail__container {
  font: var(--Uni) 17px/26px Uni, sans-serif;
  color: #000;
  margin-bottom: 15px;
}

.text-detail__container p+p,
.text-detail__container ul {
  margin-top: 15px;
}

.advantage-detail .advantage__desc,
.advantage-detail .section__title_big {
  display: none;
}

.prices-page {
  padding: 40px 0;
}

.price-detail {
  padding: 65px 0;
  background-color: #fff;
}

.price-detail__table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
  text-align: center;
  margin-bottom: 5px;
}

.price-detail__table p,
.price-detail__table li {
  text-align: left;
}

.price-detail__table ul {
  list-style: disk;
  padding-left: 40px;
}

.price__subtitle {
  display: flex;
  justify-content: space-between;
  text-align: left;
  font: var(--UniHeavy) 22px Uni, sans-serif;
  color: var(--text-color);
  border: 1px solid var(--first-color);
  padding: 15px 20px;
  border-radius: 10px;
  margin-bottom: 0;
}

.price-detail__table td,
.price-detail__table th {
  border: 1px solid #d6d6d6;
  padding: 4px 10px;
}

.price-detail__table th {
  text-align: center;
  font: var(--UniHeavy) 17px Uni, sans-serif;
}

.price-detail__table tbody tr:nth-child(odd) {
  background-color: #f3f3f3;
}

.price-detail__table td {
  font: var(--Uni) 17px Uni, sans-serif;

}

.price-detail__info {
  font-size: 16px;
  margin-bottom: 40px;
  line-height: 1.3;
}

.price-detail__block:not(:last-child) {
  margin-bottom: 40px;
}

.price-detail__el:not(:last-child) {
  margin-bottom: 15px;
}

details[open].price__accordion summary {
  background-color: var(--first-color);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

details[open].price__accordion .price__subtitle {
  color: #fff;
  transition-duration: 0.5s;
}

details[open].price__accordion .price__subtitle .arrow>path {
  fill: #fff;
  transition-duration: 0.5s;
}

details[open].price__accordion .price__subtitle .arrow {
  transform: rotate(270deg) translateX(-5px);
  transition-duration: 0.5s;
}

.price__subtitle .arrow {
  transform: rotate(90deg) translateX(5px);
  transition-duration: 0.5s;
}





.addition-page {
  padding: 75px 0;
  background-color: #f3f3f3;
}

.addition-page__cards.flex {
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.addition-page__card {
  width: 263px;
  box-shadow: 0 10px 30px 0 rgba(0 0 0 / 15%);
  border-radius: 30px;
  background: #fff;
  padding-bottom: 30px;
  text-align: center;
}

.addition-page__img {
  width: 100%;
  height: 180px;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  margin-bottom: 20px;
}

.addition-page__title {
  font: var(--UniHeavy) 22px Uni, sans-serif;
  color: var(--text-color);
  margin-bottom: 7px;
}

.addition-page__desc {
  font: var(--Uni) 16px Uni, sans-serif;
  color: var(--text-color);
}

.gallery-page {
  padding: 80px 0;
  background-color: #f3f3f3;
}

.gallery-page__block {
  align-items: center;
  margin: 0 -11px;
  flex-wrap: wrap;
}

.footer {
  padding: 50px 0;
  background-color: #353535;
}

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

.footer__left {
  width: 300px;
}

.footer__logo {
  display: block;
  width: 185px;
  margin-bottom: 30px;
}

.footer__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.footer__left p {
  font: var(--Uni) 15px Uni, sans-serif;
  color: #fff;
  margin-bottom: 15px;
}

.footer__left p:last-child {
  margin-bottom: 0;
}

.footer__center {
  width: 400px;
}

.footer__title {
  font: var(--UniHeavy) 24px Uni, sans-serif;
  color: #7c7c7c;
  margin-bottom: 15px;
}

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

.footer__link {
  font: var(--Uni) 15px Uni, sans-serif;
  color: #fff;
  display: block;
  margin-bottom: 15px;
}

.footer__link:last-child {
  margin-bottom: 0;
}

.footer__right {
  width: 250px;
}

.footer__social.flex {
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
}

.footer__icon {
  width: 41px;
  height: 41px;
  border-radius: 100%;
  border: 1px solid #686868;
  margin-bottom: 60px;
  transition: 0.2s;
}

.footer__icon.flex {
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.footer__icon img {
  width: 50%;
}

.footer__right-link {
  font: var(--Uni) 15px Uni, sans-serif;
  color: #fff;
  display: block;
  margin-bottom: 15px;
}

.footer__right-link:last-child {
  margin-bottom: 0;
}

.footer__measurer {
  height: 44px;
  padding: 0 30px;
  background-color: var(--bg-orange);
  margin-left: 0;
}

.footer__quiz {
  height: 44px;
  padding: 0 30px;
  background-color: var(--first-color);
  margin: 10px 0;
}

.modal {
  width: 600px;
  position: fixed;
  top: 0;
  left: 50%;
  margin-left: -300px;
  border: 0;
  opacity: 0;
  z-index: -1;
  background: #fff;
  border-radius: 30px;
}

.modal_show {
  z-index: 9999;
  opacity: 1;
  top: 100px;
}

.modal__close {
  position: absolute;
  right: 18px;
  top: 18px;
  cursor: pointer;
}

.modal__container {
  padding: 40px 70px 60px;
  text-align: center;
}

.modal__container h2 {
  font: var(--UniHeavy) var(--h2) Uni, sans-serif;
  text-transform: uppercase;
  color: #000;
}

.modal__form.flex {
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.modal__form {
  margin-top: 30px;
  text-align: center;
}

.modal__form input {
  width: 100%;
  height: 55px;
  padding: 0 30px;
  background: #f5f5f5;
  font: italic var(--Uni) 14px Uni, sans-serif;
  color: #000;
  border: 2px solid #d2d2d2;
  margin-bottom: 30px;
  text-align: left;
  border-radius: 30px;
}

.modal__submit {
  width: 240px;
  height: 65px;
  background-color: var(--first-color);
}

.modal__policy {
  text-align: center;
  margin-top: 20px;
  font-style: italic;
}

.black {
  display: none;
  background: #363636;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.65;
  -moz-opacity: 0.65;
  z-index: 9998;
  overflow: hidden;
}

.quiz-block__title {
  margin-bottom: 20px;
  text-align: center;
}

.quiz-block__desc {
  text-align: center;
  margin-bottom: 40px;
  text-transform: uppercase;
}

.quiz {
  position: relative;
  z-index: 999;
  max-width: 1080px;
  margin: 0 auto;
}

.quiz ul {
  list-style: none;
}

.quiz-section__container .close__btn {
  display: none;
}

.quiz__item {
  display: flex;
  border-radius: 4px;
  border: 1px solid #2f4e6c;
  box-shadow: 1px 1px 38px 0 rgba(0, 0, 0, 0.37);
  -webkit-box-shadow: 1px 1px 38px 0 rgba(0, 0, 0, 0.37);
  -moz-box-shadow: 1px 1px 38px 0 rgba(0, 0, 0, 0.37);
  margin-bottom: 40px;
  background-color: #fff;
  padding: 20px;
}

.quiz__question {
  width: 100%;
}

.quiz10__item,
.quiz11__item,
.quiz12__item,
.quiz13__item,
.quiz2__item,
.quiz3__item,
.quiz4__item,
.quiz5__item,
.quiz6__item,
.quiz7__item,
.quiz8__item,
.quiz9__item {
  display: none;
}

.questions__title {
  font-weight: 400;
  font-size: 30px;
  margin-bottom: 20px;
}

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

.questions__footer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.questions__progress {
  height: 10px;
  width: 90%;
  background-color: var(--first-color);
  border-radius: 10px;
}

.questions__bar {
  height: 100%;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.bar1 {
  width: 16.6%;
  background-color: var(--bg-orange);
}

.questions__number {
  font-size: 30px;
  color: var(--first-color);
  font-weight: 700;
}

.questions__number b {
  color: var(--bg-orange);
}

.question10__list,
.question1__list,
.question2__list,
.question3__list,
.question4__list,
.question5__list,
.question6__list,
.question7__list,
.question9__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.question__items {
  max-height: 240px;
}

.question10__item,
.question2__item,
.question3__item,
.question4__item,
.question5__item,
.question9__item {
  position: relative;
  width: 23%;
}

.question6__item,
.question9__item {
  position: relative;
  width: 20%;
}

.question1__item,
.question7__item {
  position: relative;
  width: 24%;
  margin-bottom: 10px;
}

.question7__item {
  width: 25%;
}

.question1__item:not(:nth-child(4n)) {
  margin-right: 10px;
}

.question7__item:not(:nth-child(3n)) {
  margin-right: 30px;
}

.question10__item:not(:nth-child(3n)),
.question2__item:not(:nth-child(3n)),
.question3__item:not(:nth-child(3n)),
.question4__item:not(:nth-child(3n)),
.question5__item:not(:nth-child(3n)),
.question6__item:not(:nth-child(4n)),
.question9__item:not(:nth-child(4n)) {
  margin-right: 50px;
}

.question10__img,
.question1__img,
.question2__img,
.question3__img,
.question4__img,
.question5__img,
.question6__img,
.question7__img,
.question9__img {
  border-radius: 8px 8px 0 0;
  width: 100%;
  height: 100%;
  max-height: 120px;
  margin-bottom: 15px;
}

@-webkit-keyframes click-wave {
  0% {
    height: 40px;
    width: 40px;
    opacity: 0.35;
    position: relative;
  }

  100% {
    height: 200px;
    width: 200px;
    margin-left: -60px;
    margin-top: -60px;
    opacity: 0;
  }
}

@keyframes click-wave {
  0% {
    height: 40px;
    width: 40px;
    opacity: 0.35;
    position: relative;
  }

  100% {
    height: 200px;
    width: 200px;
    margin-left: -60px;
    margin-top: -60px;
    opacity: 0;
  }
}

.custom__radio {
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
  opacity: 0;
  top: 13.33333px;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  transition: 0.2s ease-out;
  background: #cbd1d8;
  border: none;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  outline: 0;
  position: absolute;
  z-index: 1000;
}

.custom__radio:hover {
  background: #9faab7;
}

.custom__radio:checked {
  position: absolute;
  left: calc(100% / 3);
  width: 75px;
  height: 75px;
  opacity: 1;
  background: var(--first-color);
}

.custom__radio:checked::before {
  opacity: 1;
  height: 75px;
  width: 75px;
  position: absolute;
  content: "✔";
  display: inline-block;
  font-size: 26.66667px;
  text-align: center;
  line-height: 75px;
}

.custom__radio:checked::after {
  opacity: 1;
  border-radius: 50%;
  -webkit-animation: 0.65s 0.1s click-wave;
  animation: 0.65s 0.1s click-wave;
  background: var(--first-color);
  content: "";
  display: block;
  position: relative;
  z-index: 100;
}

.custom__radio.radio,
.custom__radio.radio::after {
  border-radius: 50%;
}

.question10__lbl,
.question1__lbl,
.question2__lbl,
.question3__lbl,
.question4__lbl,
.question5__lbl,
.question6__lbl,
.question7__lbl,
.question9__lbl {
  font-family: var(--Uni);
  display: block;
  font-weight: 700;
  width: 100%;
  text-align: center;
  font-size: 15px;
}

.bar2 {
  width: 33.3%;
  background-color: var(--bg-orange);
}

.question10__img,
.question2__img,
.question3__img,
.question4__img,
.question5__img,
.question6__img,
.question7__img,
.question9__img {
  margin-bottom: 15px;
}

.bar3 {
  width: 49.8%;
  background-color: var(--bg-orange);
}

.question11__list,
.question12__block,
.question13__list {
  width: 40%;
}

.question11__item,
.question13__item {
  position: relative;
  display: flex;
  align-items: center;
  background-color: #fff;
  margin-bottom: 5px;
  border: 1px solid var(--bg-orange);
}

.question11__check:checked::before,
.question11__radio:checked::before,
.question13__check1:checked::before,
.question13__check2:checked::before,
.question13__radio1:checked::before,
.question13__radio:checked::before {
  opacity: 0;
}

.question11__check:checked,
.question11__radio:checked,
.question13__check1:checked,
.question13__check2:checked,
.question13__radio1:checked,
.question13__radio:checked {
  width: 100%;
  height: 100%;
  border-radius: 0;
  left: 0;
  top: 0;
}

.question11__check:checked+label,
.question11__radio:checked+label,
.question13__check1:checked+label,
.question13__check2:checked+label,
.question13__radio1:checked+label,
.question13__radio:checked+label {
  color: #fff;
}

.question11__radio,
.question13__check1,
.question13__check2,
.question13__radio,
.question13__radio1 {
  top: 0;
}

.question11__check:checked::after,
.question11__radio:checked::after,
.question13__check1:checked::after,
.question13__check2:checked::after,
.question13__radio1:checked::after,
.question13__radio:checked::after {
  border-radius: 0;
}

.question11__lbl,
.question13__lbl {
  font-size: 16px;
  width: 100%;
  font-weight: 700;
  padding: 5px 10px;
  margin-bottom: 0;
  position: relative;
  z-index: 1001;
}

.question11__input,
.question13__input {
  display: none;
  border: 1px solid #eaeaea;
  height: 100%;
  width: 100%;
  padding: 5px 10px;
  z-index: 1001;
}

.bar4 {
  width: 66.4%;
  background-color: var(--bg-orange);
}

.bar5 {
  width: 83%;
  background-color: var(--bg-orange);
}

.question12__title {
  display: inline-flex;
  flex-direction: column;
  line-height: 24px;
  margin-bottom: 50px;
}

.question12__title small {
  font-size: 16px;
  text-align: center;
  color: #aaa;
}

.question12__block {
  margin-bottom: 15px;
}

.question12__input {
  width: 100%;
  display: block;
  font-size: 15px;
  height: 50px;
  border: none;
  padding: 0 30px;
  border-radius: 5px;
  border: 1px solid var(--bg-orange);
}

.questions__block-btn {
  display: flex;
}

.questions__block-btn button {
  padding: 10px 30px;
  font-size: 16px;
  border-radius: 4px;
  border: 1px solid var(--bg-orange);
  background: #fff;
  font-weight: 700;
  color: var(--bg-orange);
}

.questions__back {
  margin-right: 20px;
}

.questions__block-btn button:hover {
  color: #fff;
  background-color: var(--bg-orange);
}

.question13__item:last-child {
  border: none;
  flex-direction: column;
}

.question13__subitem,
.question13__subtitle {
  width: 100%;
}

.question13__subitem {
  position: relative;
  border: 1px solid var(--bg-orange);
  margin-bottom: 5px;
}

.bar6 {
  width: 100%;
  background-color: var(--bg-orange);
}

.quiz__last {
  width: 100%;
}

.question-end__result {
  width: 47%;
  padding: 20px;
  border: 1px solid var(--bg-orange);
  margin-bottom: 20px;
  background-color: rgba(0, 170, 39, 0.6);
}

.question-end__title {
  margin-bottom: 10px;
}

.questions__block {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
}

.questions__img {
  width: 40%;
}

.questions__img img {
  width: 100%;
}

.question-end__form {
  width: 47%;
  display: flex;
  flex-direction: column;
}

.question-end__form .question-end__input {
  width: 100%;
  display: block;
  font-size: 16px;
  font-weight: 700;
  height: 50px;
  border: none;
  padding: 0 20px;
  border-radius: 5px;
  background-color: #fff;
  box-shadow: 1px 1px 6px 0 rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 1px 1px 6px 0 rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 1px 1px 6px 0 rgba(0, 0, 0, 0.25);
  margin-bottom: 20px;
}

.question-end__submit {
  width: 100%;
  height: 50px;
  border: none;
  color: #fff;
  border-radius: 4px;
  background-color: #49ca08;
  margin-bottom: 10px;
}

.question-end__label {
  text-align: center;
  font-size: 12px;
}

.question-end-el:not(:last-child) {
  margin-bottom: 10px;
}

.question-end__gate-name,
.question-end__goal-name,
.question-end__name {
  font-weight: 700;
}

.quiz__popup {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: none;
  overflow-y: auto;
}

.popup .black-quiz {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1;
}

.popup {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: none;
  overflow-y: auto;
}

.thanks__block {
  width: 100%;
  max-width: 450px;
  padding: 40px;
  background-color: #fff;
  margin: 100px auto 0;
  position: relative;
  z-index: 999;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
}

.thanks__name {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}

.thanks__text {
  text-align: center;
  line-height: 28px;
  margin-bottom: 15px;
}

.thanks__btn {
  width: 200px;
  padding: 10px 0;
  margin: 0 auto;
  background-color: var(--first-color);
}

.popup .black-thanks {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1;
}

.catalog-detail__container {
  justify-content: space-between;
}

.catalog-detail__slider {
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.catalog-detail__col {
  width: 47%;
}

.catalog-detail__nav {
  position: relative;
  width: 94%;
}

.catalog-detail__nav .slide-item {
  margin: 0 5px;
  line-height: 0;
}

.catalog-detail__nav .slide-item img {
  width: 100%;
}

.catalog-detail__nav .slide-item.slick-current {
  position: relative;
}

.catalog-detail__nav .slide-item.slick-current::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
  border: 4px solid var(--first-color);
}

.catalog-detail__nav .slick-arrow {
  top: 0;
  bottom: 0;
  margin: auto;
  width: 11px;
  height: 17px;
  position: absolute;
  font-size: 0;
  border: none;
  z-index: 1;
  background-color: transparent;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../img/arrow.svg);
}

.catalog-detail__nav .slick-arrow.slick-prev {
  left: 4%;
  transform: rotate(180deg);
}

.catalog-detail__nav .slick-arrow.slick-next {
  right: 4%;
}

.catalog-detail__tabs {
  font-size: 0;
}

.catalog-detail__tabs>input[type="radio"] {
  display: none;
}

.catalog-detail__tabs>div {
  display: none;
  font-size: 16px;
}

#catalog-detail__tab-btn-1:checked~#catalog-detail__content-1,
#catalog-detail__tab-btn-2:checked~#catalog-detail__content-2 {
  display: block;
}

.catalog-detail__tabs>label {
  display: inline-block;
  width: 50%;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding: 2px 8px;
  border-bottom: 2px solid #ececec;
  color: #c1c1c1;
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out;
  cursor: pointer;
  position: relative;
  top: 1px;
}

.catalog-detail__tabs>label:not(:first-of-type) {
  border-left: none;
}

.catalog-detail__tabs>input[type="radio"]:checked+label {
  color: var(--first-color);
  background-color: #fff;
  border-bottom: 2px solid var(--first-color);
}

.catalog-detail__el {
  align-items: center;
  justify-content: space-between;
  padding: 8px 35px;
}

.catalog-detail__el .title {
  font-weight: 700;
  font-weight: 18px;
}

.catalog-detail__el .price {
  font-weight: 700;
  font-weight: 22px;
  color: var(--first-color);
}

.catalog-detail__el div {
  width: 50%;
}

.catalog-detail__el::before {
  content: "";
  width: 22px;
  height: 22px;
  margin-right: 20px;
  background-repeat: no-repeat;
}

.catalog-detail__icon::before {
  background-image: url(../img/detail-color.svg);
}

.catalog-detail__price::before {
  background-image: url(../img/detail-price.svg);
}

.catalog-detail__price {
  padding-top: 10px;
  padding-bottom: 10px;
  border-top: 1px solid var(--first-color);
  margin-bottom: 20px;
}

.catalog-detail__wrap-btn button {
  width: 40%;
  height: 45px;
  background-color: var(--first-color);
}

.about-page__container p {
  margin-bottom: 20px;
  line-height: 25px;
  font-size: 14px;
}

.about-page__container h3,
.about-page__container ul {
  margin-bottom: 20px;
}

.about-page__container ul li::before {
  content: "";
  width: 15px;
  height: 15px;
  margin-right: 10px;
  display: inline-block;
  background-repeat: no-repeat;
  background-image: url(../img/trick-green.svg);
}

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

.payment-page__item {
  display: flex;
  align-items: center;
}

.contacts-page {
  position: relative;
}

.contacts-page__map {
  width: 60%;
  position: absolute;
  right: 0;
  /*top: -40px;*/
  top: 20px;
}

.contacts-page__map iframe {
  height: 300px;
}

.contacts-page__subtitle {
  width: 15%;
  padding: 7px 0;
  text-align: center;
  margin-bottom: 40px;
  color: var(--first-color);
  border-bottom: 2px solid var(--first-color);
}

.contacts-page__address {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 320px;
  margin-bottom: 90px;
  max-width: 40%;
}

.contacts-page__address b {
  display: block;
  margin-bottom: 7px;
  font-size: 24px;
}

.contacts-page__address>div>span {
  font-size: 18px;
}

.contacts-page__time {
  margin-top: 20px;
  margin-bottom: 40px;
}

.contacts-page__time .title {
  font-size: 18px;
  color: var(--first-color);
}

.contacts-page__time .time {
  margin-top: 5px;
  font-size: 24px;
}

.contacts-page__info a {
  display: flex;
  align-items: center;
  font-size: 18px;
}

.contacts-page__info small {
  font-size: 14px;
  padding-left: 40px;
}

.contacts-page__el a::before,
.contacts-page__info a::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  background-repeat: no-repeat;
  background-size: contain;
}

.contacts-page__info .phone::before {
  background-image: url(../img/phone-contacts_g.svg);
}

.contacts-page__el .mail::before,
.contacts-page__info .mail::before {
  background-image: url(../img/mail-contacts_g.svg);
}

.contacts-page__el .phone::before,
.contacts-page__info .phone::before {
  background-image: url(../img/phone-contacts_g.svg);
}

.contacts-page__info .phone {
  margin-bottom: 10px;
}

.contacts-page__row {
  justify-content: space-between;
  margin-bottom: 90px;
}

.contacts-page__el {
  padding-top: 45px;
  width: 47%;
  border-top: 2px solid var(--first-color);
}

.contacts-page__el .title {
  text-transform: uppercase;
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 18px;
}

.contacts-page__el .title::before {
  content: "";
  width: 55px;
  height: 52px;
  display: block;
  margin-right: 20px;
  background-repeat: no-repeat;
  background-size: contain;
}

.contacts-page__el .postavshik::before {
  background-image: url(../img/postav-icon.svg);
}

.contacts-page__el .rukovodstvo::before {
  background-image: url(../img/ruk-icon.svg);
}

.contacts-page__el .zhalyuzi::before {
  background-image: url(../img/zhalyuzi.svg);
}

.contacts-page__el .vorota::before {
  background-image: url(../img/vorota.svg);
}

.contacts-page__el .navesy::before {
  background-image: url(../img/navesy.svg);
}



.contacts-page__el a {
  display: flex;
  align-items: center;
  padding-left: 70px;
  font-size: 18px;
  margin-bottom: 10px;
}

.contacts-page__el .time {
  display: flex;
  flex-direction: column;
  padding-left: 70px;
}

.contacts-page__el .time b {
  font-size: 18px;
  margin-bottom: 5px;
  padding: 10px 0px 0px 0px;
}

.contacts-page__el .time span {
  font-size: 20px;
  padding: 0 0 20px;
}

.error-page {
  padding-bottom: 50px;
}

.error-page__title {
  color: var(--text-color);
}

.error-page .text {
  font-size: 20px;
  line-height: 1.6;
}

.catalogZaborov {
  padding: 50px 0;
}

.analog-detail {
  padding-bottom: 75px;
}

.analog-detail__slider .slick-arrow {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: 39px;
  height: 39px;
  border-radius: 100px;
  text-indent: 9999px;
  border: 0;
  background: url(../img/slider-arrow-white.svg) 0 0/100% 100%;
  background-color: var(--first-color);
  z-index: 3;
}

.analog-detail__slider .slick-arrow.slick-prev {
  transform: rotate(180deg);
  left: 0;
}

.analog-detail__slider .slick-arrow.slick-next {
  right: 0;
}

.advantage__slider {
  position: relative;
}

.advantage__slider .slick-arrow {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: 39px;
  height: 39px;
  border-radius: 100px;
  text-indent: 9999px;
  border: 0;
  background: url(../img/slider-arrow-white.svg) 0 0/100% 100%;
  background-color: var(--first-color);
  z-index: 3;
}

.advantage__slider .slick-arrow.slick-prev {
  transform: rotate(180deg);
  left: 0;
}

.advantage__slider .slick-arrow.slick-next {
  right: 0;
}

.konf__section {
  padding: 60px 0;
}

.konf__title {
  font-size: 32px;
  color: var(--text-color);
  margin-bottom: 30px;
}

.konf__subtitle {
  margin-bottom: 20px;
}

.konf__section p {
  margin-bottom: 20px;
  line-height: 25px;
}

.konf__section ul {
  list-style: disc;
  padding-left: 30px;
  margin-bottom: 20px;
}

.konf__section ul li {
  font-size: 14px;
}

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


@media only screen and (max-width: 1448px) {
  img {
    width: 100%;
  }
}


@media (max-width: 1480px) {
  .contacts-page__map {
    width: 800px;
  }

  .dropdown__content {
    flex-wrap: wrap;
  }

  .dropdown__col {
    width: 28%;
  }

  .dropdown__col:not(:nth-child(n + 4)) {
    margin-bottom: 20px;
  }


}

@media (max-width: 1200px) {
  :root {
    --h1: 46px;
    --h2: 30px;
  }



  .container {
    max-width: 990px;
  }

  .section__title_big {
    font-size: 56px;
  }

  .section__line {
    margin: 15px 0 25px;
  }

  .btn__callback {
    margin-right: 0;
  }

  .btn__measurer {
    display: none;
  }

  .dropdown__col {
    width: 31%;
  }

  .product__info {
    width: 190px;
  }

  .product__text {
    font-size: 14px;
    line-height: 18px;
  }

  .footer__left {
    width: 225px;
  }

  .quiz {
    width: 80%;
  }

  .question10__item:not(:nth-child(3n)),
  .question2__item:not(:nth-child(3n)),
  .question3__item:not(:nth-child(3n)),
  .question4__item:not(:nth-child(3n)),
  .question5__item:not(:nth-child(3n)),
  .question6__item:not(:nth-child(4n)) {
    margin-right: 35px;
  }

  .catalog-detail__el {
    padding: 8px 15px;
  }

  .contacts-page__map {
    width: 500px;
  }
}

@media (max-width: 992px) {
  :root {
    --h1: 40px;
    --h2: 28px;
    --col: 50%;
  }

  .hero__title h1 {
    font-size: 45px;
  }

  .section__title__line {
    display: none;
  }




  .container {
    max-width: 1024px;
  }

  .section__title_big {
    font-size: 50px;
  }

  .section__line {
    margin: 15px 0 20px;
  }

  .header-top__logo span {
    width: 155px;
    line-height: 17px;
  }

  .header-bottom__item {
    padding: 0;
  }

  .header-bottom__link {
    font-size: 16px;
    line-height: 50px;
    height: 50px;
  }

  .company {
    padding: 40px 0;
  }

  .company__card {
    width: 40%;
    margin-bottom: 30px;
  }

  .advantage__card {
    width: 48%;
    margin: 0 1% 20px;
  }

  .objects__link {
    width: 355px;
    height: 335px;
  }

  .scheme {
    padding: 40px 0;
  }

  .scheme__cards {
    margin-top: 0;
  }

  .scheme__card {
    width: 50%;
    margin-bottom: 20px;
    padding: 30px 65px 35px;
  }

  .form-question {
    padding: 60px 0;
  }

  .form-question form {
    width: 100%;
  }

  .form-question form input {
    width: 235px;
  }

  .form-question__btn {
    width: 250px;
  }

  .addition-page__card {
    width: 355px;
    margin-bottom: 30px;
  }

  .footer__center {
    display: none;
  }

  .modal {
    width: 700px;
    margin-left: -350px;
  }

  .modal__form.flex {
    justify-content: center;
  }

  .quiz {
    width: 100%;
  }

  .question1__item:not(:nth-child(4n)) {
    margin-right: 5px;
  }

  .questions__block-btn button {
    padding: 8px 15px;
  }

  .questions__number {
    font-size: 22px;
  }

  .question10__item:not(:nth-child(3n)),
  .question2__item:not(:nth-child(3n)),
  .question3__item:not(:nth-child(3n)),
  .question4__item:not(:nth-child(3n)),
  .question5__item:not(:nth-child(3n)) {
    margin-right: 35px;
  }

  .questions__img {
    width: 50%;
  }

  .questions__img img {
    width: 100%;
  }

  .header-top__time {
    display: none;
  }

  .catalog-detail__container {
    flex-direction: column;
    align-items: center;
  }

  .catalog-detail__col {
    width: 60%;
  }

  .catalog-detail__col:first-child {
    margin-bottom: 20px;
  }

  .contacts-page__map {
    display: none;
    position: static;
    width: 80%;
    margin: 0 auto 20px;
  }

  .contacts-page__address {
    height: 200px;
  }
}

@media (max-width: 768px) {
  :root {
    --h1: 24px;
    --h2: 22px;
  }

  .hero__title h1 {
    font-size: 40px;
  }


  .section__title_big {
    transform: none;
    font-size: 26px;
  }

  .header-top__logo img {
    width: 100px;
    margin-right: 10px;
  }

  .header-top__logo span {
    width: 170px;
    font-size: 14px;
    line-height: 16px;
  }

  .header-bottom_desktop {
    position: absolute;
    top: -400px;
    z-index: 0;
    width: 100%;
    background-color: #fff;
    transition: 0.5s linear;
  }

  .burger__content_active {
    transition: 0.5s linear;
    top: 100%;
  }

  .header-bottom__list.flex {
    flex-wrap: wrap;
  }

  .header-bottom__item {
    width: 100%;
    text-align: left;
    margin-left: 15px;
  }

  .header-bottom__link {
    font: var(--UniHeavy) 16px/30px Uni, sans-serif;
    height: 30px;
  }

  .btn__callback,
  .btn__measurer,
  .dropdown__content {
    display: none;
  }

  .burger__content_active .dropdown__content {
    display: block;
    transform: translateX(0);
    opacity: 1;
    padding: 15px 20px;
    position: relative;
  }

  .dropdown__col {
    width: 100%;
    margin-bottom: 10px !important;
  }

  .dropdown__col::after {
    content: "";
    display: block;
    width: 20px;
    height: 8px;
    background-image: url("../img/arrow-left.png");
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 8px;
    transition-duration: 0.3s;
  }

  .dropdown__col_active::after {
    transform: rotate(180deg);
    transition-duration: 0.3s;
  }

  .dropdown__link:first-child span {
    color: #000000;
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
    cursor: pointer;
    line-height: 30px;
  }

  .dropdown__link:not(:first-child) {
    display: none;
  }

  .dropdown__col_active .dropdown__link:first-child span {
    border-bottom: 1px solid var(--first-color);
  }

  .dropdown__col_active .dropdown__link:not(:first-child) {
    display: flex;
  }

  .dropdown__link span {
    color: #000000;
  }

  .burger__content_active .btn__callback {
    display: block;
  }

  .burger {
    display: block;
    width: 32px;
    height: 22px;
    position: relative;
    cursor: pointer;
    order: 4;
  }

  .burger span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #000;
    opacity: 1;
    left: 0;
    transform: rotate(0);
    transition: 0.25s ease-in-out;
  }

  .burger span:nth-child(1) {
    top: 0;
  }

  .burger span:nth-child(2) {
    top: 9px;
  }

  .burger span:nth-child(3) {
    top: 18px;
  }

  .header-bottom__list {
    margin-bottom: 10px;
  }

  .header-bottom__info {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 20px;
  }

  .header-bottom__call {
    margin-bottom: 10px;
  }

  .header-bottom__call a {
    font: var(--UniHeavy) 19px Uni, sans-serif;
    color: var(--text-color);
  }

  .header-bottom__call p {
    text-align: center;
  }

  .header-bottom__call a:before {
    content: "";
    width: 13px;
    height: 13px;
    background-repeat: no-repeat;
    display: inline-block;
    background-size: contain;
    margin-right: 7px;
    background-image: url(../img/phone.svg);
  }

  .header-bottom__info .btn {
    height: 44px;
    padding: 0 30px;
  }

  .btn__callback {
    margin: 0;
  }

  .hero__bg,
  .hero__slider {
    min-height: 350px;
  }

  .hero__link {
    width: 240px;
    height: 50px;
  }

  .dropdown__content::before {
    display: none;
  }

  .form-help {
    padding: 50px 0;
  }

  .form-help__text {
    font-size: 16px;
  }

  .form-help form.flex {
    justify-content: center;
  }

  .form-help form input {
    width: 280px;
    height: 50px;
    margin-bottom: 15px;
  }

  .form-help form {
    width: 100%;
    height: auto;
    background: 0 0;
  }

  .form-help__btn {
    height: 50px;
  }

  .company__card {
    width: 48%;
    margin-bottom: 20px;
  }

  .company__symbol {
    display: none;
  }

  .advantage__card {
    width: 100%;
    margin-bottom: 15px;
  }

  .objects__link {
    width: 555px;
    margin-bottom: 20px;
  }

  .scheme__cards {
    margin-top: 50px;
  }

  .scheme__card {
    width: 100%;
    background: 0 0;
    padding: 20px 30px;
  }

  .text-about {
    padding-top: 35px;
    padding-bottom: 35px;
  }

  .text-about ol,
  .text-about p,
  .text-about ul {
    font-size: 15px;
    line-height: 22px;
  }

  .form-question {
    padding: 50px 0;
  }

  .form-question form.flex {
    justify-content: center;
  }

  .form-question form {
    height: auto;
    width: 100%;
  }

  .form-question form input {
    margin-bottom: 15px;
  }

  .form-question form input,
  .form-question__btn {
    width: 280px;
    height: 50px;
  }

  .text-detail {
    padding: 25px 0;
  }

  .price-detail {
    padding-top: 30px;
  }

  .price-detail__table th:first-child {
    width: 28%;
  }

  .price-detail__table td,
  .price-detail__table th {
    font-size: 12px;
    padding: 0px 4px;
  }

  .addition-page {
    padding: 30px 0 10px;
  }

  .addition-page__card {
    width: 100%;
  }

  .footer__left {
    width: 300px;
  }

  .footer__center {
    display: block;
    width: 400px;
  }

  .footer__center,
  .footer__icon,
  .footer__left {
    margin-bottom: 20px;
  }

  .modal {
    width: 300px;
    margin-left: -150px;
  }

  .modal__container {
    padding: 35px 30px 30px;
  }

  .modal__container h2 {
    font-size: 22px;
  }

  .modal__form {
    margin-top: 20px;
  }

  .modal__form input {
    width: 100%;
    height: 45px;
    margin-bottom: 15px;
  }

  .modal__submit {
    height: 45px;
  }

  .quiz {
    width: 100%;
  }

  .question10__list,
  .question1__list,
  .question2__list,
  .question3__list,
  .question4__list,
  .question5__list,
  .question6__list,
  .question7__list,
  .question9__list {
    flex-direction: column;
  }

  .question10__item,
  .question1__item,
  .question2__item,
  .question3__item,
  .question4__item,
  .question5__item,
  .question6__item,
  .question7__item,
  .question9__item {
    width: 100%;
    border-radius: 4px;
    margin-bottom: 5px;
    border: 1px solid var(--bg-orange);
  }

  .question10__item:not(:nth-child(3n)),
  .question2__item:not(:nth-child(3n)),
  .question3__item:not(:nth-child(3n)),
  .question4__item:not(:nth-child(3n)),
  .question5__item:not(:nth-child(3n)),
  .question6__item:not(:nth-child(4n)),
  .question9__item:not(:nth-child(4n)) {
    margin-right: 0;
  }

  .questions__header {
    justify-content: center;
  }

  .questions__title {
    font-size: 24px;
  }

  .question10__img,
  .question1__img,
  .question2__img,
  .question3__img,
  .question4__img,
  .question5__img,
  .question6__img,
  .question7__img,
  .question9__img {
    display: none;
  }

  .custom__radio:checked+label::before {
    background-image: none;
  }

  .question10__lbl,
  .question1__lbl,
  .question2__lbl,
  .question3__lbl,
  .question4__lbl,
  .question5__lbl,
  .question6__lbl,
  .question7__lbl,
  .question9__lbl {
    position: relative;
    z-index: 1001;
    margin-bottom: 0;
    padding: 5px 0;
  }

  .questions__block-btn button {
    padding: 8px 15px;
  }

  .questions__number {
    font-size: 22px;
  }

  .questions__progress {
    width: 80%;
  }

  .custom__radio:checked {
    width: 100%;
    height: 100%;
    border-radius: 0;
    left: 0;
    top: 0;
  }

  .custom__radio:checked+label {
    color: #fff;
  }

  .custom__radio:checked::after {
    border-radius: 0;
  }

  @-webkit-keyframes click-wave {
    0% {
      height: 100%;
      width: 100%;
      opacity: 0.35;
      position: relative;
    }

    100% {
      height: 130%;
      width: 130%;
      margin-left: -20px;
      margin-top: -20px;
      opacity: 0;
    }
  }

  @keyframes click-wave {
    0% {
      height: 100%;
      width: 100%;
      opacity: 0.35;
      position: relative;
    }

    100% {
      height: 130%;
      width: 130%;
      margin-left: -20px;
      margin-top: -20px;
      opacity: 0;
    }
  }

  .custom__radio:checked::before {
    opacity: 0;
  }

  .question11__list,
  .question13__list {
    width: 100%;
  }

  .question11__lbl,
  .question13__lbl,
  .question13__subtitle {
    text-align: center;
  }

  .questions__img {
    display: none;
  }

  .question12__block {
    width: 70%;
  }

  .block-end {
    flex-direction: column;
  }

  .question-end__form,
  .question-end__result {
    width: 100%;
  }

  .question-end__form .question-end__input {
    height: 35px;
    margin-bottom: 10px;
  }

  .catalog-detail__col {
    width: 75%;
  }

  .contacts-page__row {
    flex-wrap: wrap;
  }

  .contacts-page__el {
    width: 100%;
    padding-top: 18px;
  }
}

@media (max-width: 576px) {
  :root {
    --col: 100%;
  }


  .header-top__logo span {
    display: none;
  }

  .catalog-detail__col {
    width: 100%;
  }

  .catalog-detail__tabs>label {
    font-size: 12px;
  }

  .catalog-detail__wrap-btn {
    flex-direction: column;
  }

  .catalog-detail__wrap-btn button:first-child {
    margin-bottom: 20px;
  }

  .catalog-detail__wrap-btn button {
    width: 100%;
  }

  .banner-detail__block {
    flex-direction: column;
  }

  .banner-detail__title {
    margin-bottom: 30px;
  }

  .contacts-page__map {
    width: 100%;
  }
}

@media (max-width: 480px) {

  .hero__title h1 {
    font-size: 32px;
  }

  .contacts-page__address {
    max-width: 100%;
  }

  .header-top__call a {
    font-size: 15px;
  }

  .header-top__call p {
    padding-left: 24px;
    font-size: 11px;
  }

  .montage {
    flex-direction: column;
  }

  .footer__logo {
    margin: 0 auto;
  }

  .footer__list.flex {
    justify-content: center;
  }

  .footer__left {
    text-align: center;
  }

  .footer__measurer {
    margin-left: auto;
  }

  .footer__title {
    text-align: center;
  }

  .footer__catalog.flex {
    justify-content: center;
  }

  .footer__col {
    text-align: center;
  }

  .footer__right-link {
    text-align: center;
  }

  .footer__social.flex {
    justify-content: center;
  }

  .footer__icon.flex {
    margin-left: 10px;
    margin-right: 10px;
  }
}

.feedback__item {
  padding-bottom: 40px;
  border-bottom: 3px solid var(--first-color);
  margin-top: 60px;
}

.feedback__title.flex {
  justify-content: space-between;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
}

.feedback__title {
  margin-bottom: 10px;
}

.feedback__name {
  font: 900 24px Uni, sans-serif;
  color: #212121;
}

.feedback__date {
  font: 400 16px Uni, sans-serif;
  color: #7d7d7d;
}

.feedback__fio {
  font: 400 16px Uni, sans-serif;
  color: #212121;
  display: block;
  margin-bottom: 10px;
}

.feedback__stars.nonactive {
  pointer-events: none;
}

.feedback__star.active {
  background: url(../../moszabor/img/star-a.png);
  background-size: auto;
  background-size: 100% 100%;
}

.feedback__star {
  width: 19px;
  height: 18px;
  margin-right: 5px;
  background: url(../../moszabor/img/star.png);
  background-size: 100% 100%;
}

.feedback__text {
  margin: 15px 0 25px;
}

.feedback__text p,
.price-detail__table p,
.price-detail__table li {
  font: 400 18px/28px Uni, sans-serif;
  color: #212121;
}

.tabs {
  width: 100%;
  padding: 0px;
  margin: 0 auto;
}

.tabs>input {
  display: none;
}

.tabs>div {
  display: none;
  background: #FFFFFF;
  margin-top: 20px;
}

.tabs>label {
  display: inline-block;
  margin: 0 5px -1px 0;
  text-align: center;
  color: #ffffff;
  border: 1px solid #ffffff;
  background: #353535;
;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  padding: 15px;
  border-radius: 20px;
  min-width: 125px;
}

.tabs>input:checked+label {
  color: #ffffff;
  border: 1px solid #ffffff;
  background: #00aa27;
}

#tab_1:checked~#txt_1,
#tab_2:checked~#txt_2,
#tab_3:checked~#txt_3,
#tab_4:checked~#txt_4 {
  display: flex;
}

.button__objects {
  margin: 0 auto;
}

@media (max-width: 603px) {
  .tabs>label {
    margin: 5px 0;
  }
}

@media (max-width: 581px) {
  .tabs>label {
    display: flex;
    justify-content: center;
  }
}


.whatsapp-button {
  position: fixed;
  right: 13px;
  bottom: 90px;
  transform: translate(-50%, -50%);
  background: #25D366;
  /*цвет кнопки*/
  border-radius: 50%;
  width: 55px;
  /*ширина кнопки*/
  height: 55px;
  /*высота кнопки*/
  color: #fff;
  text-align: center;
  line-height: 53px;
  /*центровка иконки в кнопке*/
  font-size: 35px;
  /*размер иконки*/
  z-index: 9999;
}

.whatsapp-button a {
  color: #fff;
}

.whatsapp-button:before,
.whatsapp-button:after {
  content: " ";
  display: block;
  position: absolute;
  border: 1px solid #25D366;
  /*цвет анимированных волн от кнопки*/
  left: -20px;
  right: -20px;
  top: -20px;
  bottom: -20px;
  border-radius: 50%;
  animation: animate 1.5s linear infinite;
  opacity: 0;
  backface-visibility: hidden;
}

.whatsapp-button:after {
  animation-delay: .5s;
}

@keyframes animate {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}

@media (max-width : 800px) {
  .whatsapp-button {
    bottom: 5px;
    /*отступ кнопки снизу от экрана*/
    right: 10px;
    /*отступ кнопки слева от экрана(right - справа)*/
  }

  .whatsapp-button {
    width: 55px;
    /*ширина кнопки*/
    height: 55px;
    /*высота кнопки*/
    line-height: 53px;
    font-size: 35px;
  }
}

.fa-mobile-alt::before {
  content: "\f232";
}

.smart-filter-slider-price-bar-vd {
  background: var(--primary);
}


.smart-filter-form input[type="checkbox"] {
  display: none;
}

.smart-filter-form label {
  color: #000;
  cursor: default;
  font-weight: normal;
  line-height: 15px;
  vertical-align: middle;
}

.smart-filter-form label:before {
  content: " ";
  color: var(--primary);
  display: inline-block;
  font: 12px/12px FontAwesome;
  margin-right: 5px;
  position: relative;
  text-align: center;
  text-indent: 0px;
  width: 15px;
  height: 15px;
  background: #FFF;
  border: 2px solid var(--primary);
  border-image: initial;
  vertical-align: middle;
  cursor: pointer;
}

.smart-filter-form input:checked+label:before {
  /* глифон - галочка */
  content: "\f00c";
}

.smart-filter-form input:disabled+label:before {
  background: #eee;
  color: #aaa;
  border: 2px solid #aaa;
}

.smart-filter-form input:disabled+label {
  color: #aaa;
}

.smart-filter-popup-result {
  margin-top: 26px !important;
  border: none !important;
  color: #333 !important;
  font-weight: 600 !important;
  line-height: 1.15 !important;
  font-size: 15px !important;
}

#modef_num {
  color: var(--primary);
  font-size: 20px;
}


/*эскизы*/
.price-detail__table0 {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
  text-align: center;
  margin-bottom: 5px;

}

.price-detail__table0 p,
.price-detail__table0 li {
  text-align: left;
}

.price-detail__table0 ul {
  list-style: disk;
  padding-left: 40px;
}

.price__subtitle0 {
  display: flex;
  justify-content: space-between;
  text-align: left;
  font: var(--UniHeavy) 22px Uni, sans-serif;
  color: var(--text-color);
  border: 1px solid var(--first-color);
  padding: 15px 20px;
  border-radius: 10px;
  margin-bottom: 0;
}

.price-detail__table0 td,
.price-detail__table0 th {
  border: 1px solid #f9f7f700;
  padding: 9px 1px;
}

.price-detail__table0 th {
  text-align: center;
  font: var(--UniHeavy) 17px Uni, sans-serif;
}

.price-detail__table0 tbody tr:nth-child(odd) {
  background-color: #ffff;
}

.price-detail__table0 td {
  font: var(--Uni) 22px Uni, sans-serif;

}

@media only screen and (max-width: 4000px) {
  img {
    width: 100%;
  }
}

.video_subscribe_page {
  padding-bottom: 60px;
}

.container_photo_page {
  padding: 50px 0;
}

.container_photo_page img {
  height: auto;
}

.container_photo_page div.photo-section table.data-table th.data-cell {
  padding-bottom: 30px;
  font-size: 15px;
}

.container_photo_page .bx-pagination .bx-pagination-container ul li.bx-active span {
  background: var(--first-color);
}

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


.button_price {
  position: relative;
  left: 50%;
  transform: translate(-50%, 0);
  height: 60px;
  padding: 0 30px;
  background-color: #00aa27;
  color: #fff;
  border-radius: 40px;
  border: none;
  font: var(--UniHeavy) 15px Uni, sans-serif;
}







.maintip {
  text-align: justify;
  margin-bottom: 20px;
}

.photos_text {
  text-align: center;
  margin: 0 0 20px 0;
  overflow: hidden;
}

.photos_text a {
  width: 25%;
  display: block;
  float: left;
  /* line-height: 0;*/
  font-size: var(--fontsize07);
  font-weight: 600;
}

.photos_text img {
  border-radius: 20px;
  width: 100%;
  height: auto;
  padding: 5px 5px 5px 5px;
}



.photosbig_text {
  text-align: center;
  margin: 0 0 20px 0;
  overflow: hidden;
}

.photosbig_text a {
  width: 100%;
  display: block;
  float: left;
  /* line-height: 0;*/
  font-size: var(--fontsize07);
  font-weight: 600;
}

.photosbig_text img {
  border-radius: 20px;
  width: 100%;
  height: auto;
  padding: 5px 5px 5px 5px;
}




.scale {
  transition: 1s;
  /* Время эффекта */
}

.scale:hover {
  transform: scale(1.5);
  /* Увеличиваем масштаб */
}


@media screen and (max-width: 800px) {
  .photos_text a {
    width: 100%;
    float: none;
  }

  .photosbig_text a {
    width: 100%;
    float: none;
  }
}

img[tabindex="0"] {
  cursor: zoom-in;
}

img[tabindex="0"]:focus {
  position: fixed;
  z-index: 20;
  top: 110px;
  left: 0;
  bottom: 0;
  right: 0;
  width: auto;
  height: auto;
  max-width: 76%;
  max-height: 76%;
  margin: auto;
  box-shadow: 0 0 200px #000, 0 0 0 1000px rgba(0, 0, 0, .3);
  opacity: 1;
// border: 3px solid var(--color02);; /* бордюр */
  border-radius: 20px;
  /* радиус углов */
}

img[tabindex="0"]:focus,
  /* Строчка для того что бы при клике на увеличенное фото, оно возвращалось в исходное состояние */
img[tabindex="0"]:focus~* {
  pointer-events: none;
  cursor: zoom-out;
}


/*для текста фото*/
IMG.fig {
  float: right;
  /* Обтекание картинки по левому краю */
  /*   padding-left: 10px;  Отступ слева */
  /*    padding-bottom: 10px; Отступ снизу */
  width: 400px;
  height: 300px;
  border-radius: 20px;
  margin-left: 20px;
  margin-bottom: 10px;
  border: 1px solid #00aa27;
}

IMG.figleft {
  float: left;
  /* Обтекание картинки по левому краю */
  /*   padding-right: 20px; Отступ слева */
  /*  padding-bottom: 10px;  Отступ снизу */
  width: 400px;
  height: 300px;
  border-radius: 20px;
  margin-right: 20px;
  margin-bottom: 10px;
}


@media (max-width: 769px) {
  .adv__none {
    display: none;
  }

  IMG.figleft {
    margin-right: 10px;
    margin-left: 10px;
    margin-bottom: 10px;
    width: auto;
  }

  IMG.fig {
    margin-right: 15px;
    margin-left: 10px;
    margin-bottom: 10px;
    width: auto;
    height: 240px;
  }
}

.smart-filter-form {
  padding: 20px;
  box-shadow: 0 2px 20px rgba(86, 86, 86, 0.15);
  border-radius: 2px;
  margin-bottom: 70px;
}

.justifY_flex,
.justify-content-between {
  justify-content: space-between;
  flex-wrap: wrap;
}

.smart-filter-section .smart-filter-title {
  margin-bottom: 20px;
  text-align: center;
}

.smart-filter-parameters-box {
  position: relative;
  width: 25%;
}

.smart-filter {
  margin-bottom: 20px;
  min-width: 220px;
  width: 100%;
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.smart-filter-section {
  position: relative;
}

.smart-filter-title {
  margin-bottom: 10px;
  color: #000;
  font-size: 18px;
}

/*Sections*/

.smart-filter-parameters-box {
  position: relative;
  width: 25%;
}

@media (max-width: 768px) {
  .smart-filter-parameters-box {
    width: 50%;
  }
}

@media (max-width: 530px) {
  .smart-filter-parameters-box {
    width: 100%;
  }
}

.smart-filter-parameters-box-title {
  display: inline-block;
  padding-bottom: 7px;
  padding-top: 15px;
  font-size: 13px;
}

.smart-filter-parameters-box-title-text {
  color: var(--primary);
  cursor: pointer;
  transition: 250ms linear all;
}

.bx-active .smart-filter-parameters-box-title-text {
  color: #333;
}

/*region Angles*/
.smart-filter-angle {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 19px;
  vertical-align: middle;
}

.smart-filter-angles {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  line-height: 20px;
  cursor: pointer;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

.smart-filter-angles:after,
.smart-filter-angles:before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 2px;
  background-color: #000000;
  content: "";
  transition: all 250ms ease;
  -webkit-transform-origin: center;
  -moz-transform-origin: center;
  -ms-transform-origin: center;
  -o-transform-origin: center;
  transform-origin: center;
}

.smart-filter-angles:before,
.smart-filter-angle-up .smart-filter-angles:after {
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -moz-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -o-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

.smart-filter-angles:after {
  margin-left: 6px;
}

.smart-filter-angles:after,
.smart-filter-angle-up .smart-filter-angles:before {
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  -moz-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  -ms-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  -o-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}

/*endregion*/

/*region hint*/
.smart-filter-hint {
  position: relative;
  display: inline-block;
  margin-right: 6px;
}

.smart-filter-hint-icon {
  display: block;
  padding: 0 5px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: var(--primary);
  color: #fff;
  vertical-align: middle;
  text-align: center;
  font-size: 12px;
  line-height: 15px;
}

.smart-filter-hint-popup {
  position: absolute;
  top: calc(100% + 8px);
  left: -7px;
  z-index: 10;
  display: none;
  padding: 10px;
  min-width: 200px;
  max-width: 300px;
  border: 1px solid #dfdfdf;
  border-radius: 3px;
  background-color: #fff;
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.14);
}

.smart-filter-hint:hover .smart-filter-hint-popup {
  display: block;
}

.smart-filter-hint-popup-angle {
  position: absolute;
  top: -5px;
  left: 10px;
  width: 10px;
  height: 10px;
  border-top: 1px solid #dfdfdf;
  border-left: 1px solid #dfdfdf;
  background-color: #fff;
  transform: rotate(45deg);
}

/*endregion*/

.smart-filter-block {
  display: none;
  box-sizing: content-box;
  transition: padding .3s ease;
}

.smart-filter-button-box .smart-filter-block,
.smart-filter-parameters-box.bx-active .smart-filter-block {
  display: block;
}

.smart-filter-parameters-box.bx-active .smart-filter-block i.bx-ft-sub {
  display: block;
  padding-bottom: 5px;
  font-style: normal;
  font-size: 14px;
}

/*region NUMBERS_WITH_SLIDER*/
.smart-filter-input-group-number {
  width: 100%;
}

/*endregion*/

/*region TRACK FOR TYPE NUMBER*/

.smart-filter-block .smart-filter-slider-track-container {
  overflow: hidden;
  padding: 30px 35px 25px 15px;
}

.smart-filter-slider-track {
  position: relative;
  height: 7px;
  background: #e7e7e7;
}

.smart-filter-slider-ruler {
  position: absolute;
  top: -6px;
  width: 1px;
  height: 17px;
  background: #a2bfc7;
}

.smart-filter-slider-ruler.p1 {
  left: -1px;
}

.smart-filter-slider-ruler.p2 {
  left: 25%;
}

.smart-filter-slider-ruler.p3 {
  left: 50%;
}

.smart-filter-slider-ruler.p4 {
  left: 75%;
}

.smart-filter-slider-ruler.p5 {
  right: -1px;
}

.smart-filter-slider-ruler span {
  position: absolute;
  top: -16px;
  left: 50%;
  display: block;
  margin-left: -50px;
  width: 100px;
  color: #000;
  text-align: center;
  font-size: 11px;
}

.smart-filter-slider-ruler.p2 span,
.smart-filter-slider-ruler.p3 span,
.smart-filter-slider-ruler.p4 span {
  color: #6b8086;
}

.smart-filter-slider-range {
  z-index: 50;
}

.smart-filter-slider-range,
.smart-filter-slider-price-bar,
.smart-filter-slider-price-bar-vd,
.smart-filter-slider-price-bar-vn,
.smart-filter-slider-price-bar-v {
  position: absolute;
  top: 0;
  bottom: 0;
}

.smart-filter-slider-price-bar {
  z-index: 100;
}

.smart-filter-slider-price-bar-vd {
  z-index: 60;
  background: #b1b1b1;
}

.smart-filter-slider-price-bar-vn {
  z-index: 70;
  background-color: var(--theme-color-light);
}

.smart-filter-slider-price-bar-v {
  z-index: 80;
  background-color: var(--theme-color-primary);
}

.smart-filter-slider-handle {
  position: absolute;
  top: 100%;
  width: 0;
  height: 0;
  border: 7px solid var(--primary);
}

.smart-filter-slider-handle:hover {
  cursor: grab;
  -webkit-cursor: grab;
  -ms-cursor: grab;
  -o-cursor: grab;
}

.smart-filter-slider-handle:active {
  cursor: grabbing;
  -webkit-cursor: grabbing;
  -ms-cursor: grabbing;
  -o-cursor: grabbing;
}

.smart-filter-slider-handle.left {
  left: 0;
  margin-left: -14px;
  border-top: 7px solid transparent;
  border-left: 7px solid transparent;
}

.smart-filter-slider-handle.right {
  right: 0;
  margin-right: -14px;
  border-top: 7px solid transparent;
  border-right: 7px solid transparent;
}

/*endregion*/

/* region Select */
.smart-filter-input-group-dropdown {
  display: block;
  height: 31px;
  border: 1px solid #ccd5db;
  border-radius: 3px;
}

.smart-filter-input-group-dropdown.bx-active,
.smart-filter-input-group-dropdown:focus {
  border-color: var(--primary);
}

.smart-filter-dropdown-block {
  position: relative;
  display: block;
  margin: 0;
  padding: 0 29px 0 10px;
  width: 100%;
  height: 29px;
  border: none;
  border-radius: 2px;
  background: #fff;
}

.smart-filter-dropdown-text {
  overflow: hidden;
  max-width: 100%;
  height: 29px;
  vertical-align: middle;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 29px;
  cursor: pointer;
}

.smart-filter-dropdown-text.fix {
  min-width: 120px;
}

.smart-filter-dropdown-text label {
  cursor: pointer;
}

.smart-filter-dropdown-arrow {
  position: absolute;
  top: 0;
  right: 0;
  width: 29px;
  height: 29px;
  background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAECAYAAABCxiV9AAAAG0lEQVQY02OYOXPmf1yYAQRwSsAATglkBch8ADy7LKHqFrgoAAAAAElFTkSuQmCC') no-repeat center;
  cursor: pointer;
}

.smart-filter-input-group-dropdown-flex {
  display: flex;
  align-items: center;
}

.smart-filter-input-group-dropdown-flex .smart-filter-checkbox-btn-image {
  margin-right: 5px;
}

/*
* Select popup
*
*/

.smart-filter-dropdown-popup {
  padding: 0;
  min-width: 173px;
  background: #fff;
}

.smart-filter-dropdown-popup ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.smart-filter-dropdown-popup ul li {
  display: block;
  vertical-align: middle;
}

.smart-filter-dropdown-popup ul li:first-child {
  margin-bottom: 5px;
  padding-bottom: 5px;
  border-bottom: 1px solid #e5e5e5;
}

.smart-filter-dropdown-popup ul li label {
  display: flex;
  align-items: center;
  overflow: hidden;
  /*padding: 0 5px;*/
  width: 100%;
  color: #575757;
  white-space: nowrap;
  cursor: pointer;
}

.smart-filter-dropdown-popup ul li label.selected,
.smart-filter-dropdown-popup ul li label:hover {
  background: #f3f8fa;
  color: #000;
}

.smart-filter-dropdown-popup ul li label.disabled {
  background: transparent;
  color: #b8b8b8;
}

.smart-filter-dropdown-popup ul li .smart-filter-dropdown-text {
  padding-left: 5px;
}

/*endregion */

/* region TAGS */

.smart-filter-tag {
  padding: 18px;
  border-top: 1px solid var(--theme-color-light);
  border-bottom: 1px solid var(--theme-color-light);
}

.smart-filter .bx-tag-link {
  color: var(--theme-color-light);
  text-decoration: none;
  text-shadow: none;
  font-size: 12px;
}

.smart-filter .bx-tag-link.bx-active,
.smart-filter .bx-tag-link:hover {
  color: #1d3d46;
}

/*endregion*/

/*region CHECKBOXES_WITH_PICTURES*/
.smart-filter-input-group-checkbox-pictures {}

.smart-filter-input-group-checkbox-pictures .smart-filter-param-label {
  display: block;
  float: left;
  margin-right: 5px;
  margin-bottom: 5px;
}

/*endregion*/

/*region CHECKBOXES_WITH_PICTURES_AND_LABELS*/
.smart-filter-input-group-checkbox-pictures-text {}

.smart-filter-input-group-checkbox-pictures-text .smart-filter-checkbox-label {
  display: flex;
  align-items: center;
}

.smart-filter-input-group-checkbox-pictures-text .smart-filter-checkbox-text {
  padding-left: 5px;
}

/*endregion*/

/*region LABEL */
.smart-filter-checkbox-btn,
.smart-filter-checkbox-text-btn {
  position: relative;
  display: inline-block;
  padding: 3px;
  width: 31px;
  height: 31px;
  border: 1px solid #ccd5db;
  border-radius: 2px;
  background: #fff;
  color: #000;
  vertical-align: middle;
  text-align: center;
  text-decoration: none;
  font-weight: normal;
  line-height: 23px;
  cursor: pointer;
  transition: border .3s ease, box-shadow .1s ease, color .3s ease;
}

.smart-filter-checkbox-btn:hover,
.smart-filter-checkbox-btn:active,
.smart-filter-checkbox-btn:focus,
.smart-filter-checkbox-label.bx-active .smart-filter-checkbox-btn,
.smart-filter-checkbox-label.bx-active .smart-filter-checkbox-btn,
.smart-filter-checkbox-text-label.bx-active .smart-filter-checkbox-btn {
  border-color: var(--primary);
}

.smart-filter-checkbox-text,
.smart-filter-dropdown-text {
  font-size: 14px;
}

.smart-filter-checkbox-label.disabled .smart-filter-checkbox-text,
.smart-filter-dropdown-label.disabled .smart-filter-dropdown-text,
.smart-filter-checkbox-text-label.disabled .smart-filter-checkbox-text,
.smart-filter-input-group-checkbox-list.disabled .smart-filter-checkbox-text {
  color: #6c6c6c;
}

.smart-filter-checkbox-label.disabled .smart-filter-checkbox-btn,
.smart-filter-checkbox-text-label.disabled .smart-filter-checkbox-btn {
  position: relative;
  opacity: .7;
}

.smart-filter-checkbox-label.disabled .smart-filter-checkbox-btn:before,
.smart-filter-checkbox-text-label.disabled .smart-filter-checkbox-btn:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  display: block;
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAYAAAAfSC3RAAAA/UlEQVQ4y5WSQQ6CQAxFOSBuwAtoAitc4R6MkKgYJULUi8Ax4DgKm9o/45BxBBNJmkB/33T6qUVEHkfDUXHY1sQD7V2DWg+JJox3lOZ3enYdf5IzAjnQkvxGa64Fg2S9PV3JXa4ozoovWEGbY0nOIqDkfIVeQ5hBAOQsAy5guO8FbEJxVqqDZ+rUuQ6rziJ3VLkBcs05BBxlF1nIADrJESYgE0YhAER0KH5DphEKFDNPuG1AhTAi4jnRWV17FNYhcT3NHLzLzuUnjI0YHP203EWY8ENqNsAq5Y3Qf4NuhIT7wTBsDxgIbRjvCfCUe6ozoFCuXIukj5c/lhy1/gvSDM3b8PrjegAAAABJRU5ErkJggg==") no-repeat center;
  content: ' ';
  opacity: .7;
}

.smart-filter-number-label,
.smart-filter-dropdown-label,
.smart-filter-checkbox-label,
.smart-filter-checkbox-text-label {
  min-height: 20px;
  font-weight: normal;
  cursor: pointer;
}

/**/

.smart-filter-checkbox-btn-image {
  display: block;
  width: 23px;
  height: 23px;
  border-radius: 2px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .05);
  vertical-align: middle;
  line-height: 24px;
  -webkit-background-size: cover;
}

.smart-filter-checkbox-btn-image.all {
  position: relative;
  border: none;
  box-shadow: none;
  display: inline-block;
}

.smart-filter-checkbox-btn-image.all:after,
.smart-filter-checkbox-btn-image.all:before {
  position: absolute;
  width: 60%;
  height: 60%;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .2);
  content: " ";
}

.smart-filter-checkbox-btn-image.all:after {
  right: 0;
  bottom: 0;
}

.smart-filter-checkbox-btn-image.all:before {
  top: 0;
  left: 0;
}

/*endregion*/

/*region Checkbox / Radio */
.smart-filter-input-group-checkbox-list {}

.smart-filter-checklist {
  margin: 0;
  padding: 0;
  list-style: none;
}

/*endregion*/

/* COLOR */
/* --- colors */
.smart-filter-param-btn.bx-color-sl {}

.smart-filter-param-label.disabled .smart-filter-param-btn.bx-color-sl {
  position: relative;
  background: transparent;
  box-shadow: none
}

.smart-filter-param-label.disabled .smart-filter-param-btn.bx-color-sl:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  display: block;
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAYAAAAfSC3RAAAA/UlEQVQ4y5WSQQ6CQAxFOSBuwAtoAitc4R6MkKgYJULUi8Ax4DgKm9o/45BxBBNJmkB/33T6qUVEHkfDUXHY1sQD7V2DWg+JJox3lOZ3enYdf5IzAjnQkvxGa64Fg2S9PV3JXa4ozoovWEGbY0nOIqDkfIVeQ5hBAOQsAy5guO8FbEJxVqqDZ+rUuQ6rziJ3VLkBcs05BBxlF1nIADrJESYgE0YhAER0KH5DphEKFDNPuG1AhTAi4jnRWV17FNYhcT3NHLzLzuUnjI0YHP203EWY8ENqNsAq5Y3Qf4NuhIT7wTBsDxgIbRjvCfCUe6ozoFCuXIukj5c/lhy1/gvSDM3b8PrjegAAAABJRU5ErkJggg==") no-repeat center;
  content: ' ';
  opacity: .7;
}

.smart-filter-param-label .smart-filter-param-btn:hover,
.smart-filter-param-label.bx-active .smart-filter-param-btn {
  border-color: var(--primary);
}

/*
* BTN P/M
*
*/

.smart-filter-param-btn.bx-spm {
  padding: 0;
  min-width: 23px;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background-color: transparent;
  color: #767b7e;
  vertical-align: top;
  font-weight: normal;
  font-size: 17px;
  line-height: 23px;
}

.smart-filter-param-btn.bx-spm.bx-plus {
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAAMCAYAAAC0qUeeAAAANUlEQVQoz2NgwAQsQMzJQCSwAeKGQa7YFKoAhmOgim3QsAxIcSFUkhC2GaqhgQ4UgNgFmwQAij8OUFmBFssAAAAASUVORK5CIIA=") no-repeat center;
}

.smart-filter-param-btn.bx-spm.bx-minus {
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAACCAYAAABhYU3QAAAAG0lEQVQYV2NgYGDgBuI4AlgGiBn4gLicAFYGAAFkBwE95V42AAAAAElFTkSuQmCC") no-repeat center;
}

.smart-filter-param-btn.bx-spm:active {
  outline: none !important;
  box-shadow: inset 0 2px 3px rgba(0, 0, 0, .12);
}

.smart-filter span.bx-spm {
  display: inline-block;
  margin: 0 10px;
  height: 23px;
  color: #000;
  vertical-align: middle;
  font-size: 18px;
  line-height: 23px;
}

/*
* icon
*
*/

.smart-filter-select-popup .smart-filter-select-text-icon,
.smart-filter-select-text-icon {
  position: relative;
  display: inline-block;
  margin-top: -4px;
  margin-right: 2px;
  width: 23px;
  height: 23px;
  border-radius: 2px;
  vertical-align: middle;
  line-height: 33px;
}

.smart-filter-select-popup .smart-filter-btn-color-icon,
.smart-filter-btn-color-icon {
  display: block;
  width: 24px;
  height: 24px;
  border-radius: 2px;
  background-size: cover;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .05);
  vertical-align: middle;
  line-height: 24px;
  -webkit-background-size: cover;
}

.smart-filter-select-popup .smart-filter-btn-color-icon {
  top: 0 !important;
  margin: 2px 0;
  width: 20px;
  height: 20px;
}

.smart-filter-select-block .smart-filter-btn-color-icon {
  top: -1px !important;
}

.smart-filter-param-label.disabled .smart-filter-btn-color-icon {
  opacity: .2;
}

/*
*   BIZ
*
*/

.smart-filter-parameter-biz {
  display: inline-block;
  margin-right: 10px;
  border-bottom: 1px dashed;
  color: #1485ce;
  text-decoration: none;
  font-size: 14px;
  line-height: 15px;
}

.smart-filter-parameter-biz:hover {
  border-bottom: 1px solid;
  text-decoration: none;
}

.smart-filter-parameter-biz.bx-active {
  position: relative;
  border-color: transparent;
  color: #000;
}

/*
* BTN result and reset
*
*/

.btn-themes {
  color: #fff
}

.btn-themes.bx-active,
.btn-themes.focus,
.btn-themes:active,
.btn-themes:focus,
.btn-themes:hover {
  color: #fff
}

/*
*   Result Popup
*
*/

.smart-filter-popup-result {
  position: absolute;
  z-index: 915;
  display: none;
  margin-top: -7px;
  margin-left: 10px;
  padding: 0 10px;
  min-height: 37px;
  border: 1px solid #c6dce7;
  color: #3f3f3f;
  white-space: nowrap;
  font-weight: normal;
  font-size: 13px;
  line-height: 18px;
}

.smart-filter-popup-result.right {
  left: 97%;
}

.smart-filter-popup-result.left {
  right: 97%;
}

.smart-filter-horizontal .smart-filter-popup-result {
  position: relative;
  right: auto;
  bottom: -7px;
  left: auto;
  display: inline-block;
}

.smart-filter-popup-result a {
  color: #0073a3;
  line-height: 10px;
}

.smart-filter-popup-result a:hover {
  text-decoration: none;
}

.smart-filter-popup-result-close {
  display: none;
}

@media (max-width: 767px) {
  .bx-touch .smart-filter-popup-result {
    position: fixed !important;
    top: auto !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    z-index: 1001;
    margin-top: 0;
    margin-left: 0;
    padding: 10px;
    width: auto;
    height: auto;
    border: 1px solid #c6dae7;
    border-radius: 2px;
    background: rgba(255, 255, 255, .9);
    font-size: 12px;
    line-height: 14px;
  }

  .bx-touch .smart-filter-popup-result br {
    display: none;
  }

  .smart-filter-popup-result .arrow {
    display: none;
  }
}

.smart-filter-form {
  padding: 20px;
  box-shadow: 0 2px 20px rgba(86, 86, 86, 0.15);
  border-radius: 2px;
  margin-bottom: 70px;
}

.smart-filter-parameters-box-title-text {
  font-weight: 600;
  line-height: 1.15;
  font-size: 15px;
}

.justifY_flex,
.justify-content-between {
  justify-content: space-between;
  flex-wrap: wrap;
}

.d-flex {
  display: flex;
}

.form-control {
  width: 100px;
}

.smart-filter-parameters-box-container {
  display: flex;
  justify-content: space-between;
}

.btn_filter {
  background-color: var(--first-color);
  height: 44px;
  padding: 0 30px;
  margin: 30px 10px;
}

.btn_filter_measurer {
  background-color: var(--bg-orange);
}

.smart-filter-button-box {
  margin: 0 auto;
}

.smart-filter-horizontal .no_count_result .smart-filter-popup-result #modef_num {
  display: none !important;
}

.smart-filter-horizontal .no_count_result .smart-filter-popup-result {
  padding: 10px;
  background-color: #00aa27;
  color: #fff !important;
  height: 50px;
  font-size: 18px !important;
}

.smart-filter-horizontal .no_count_result .smart-filter-popup-result a {
  color: #fff !important;
  font-size: 18px !important;
}

#goods_container {
  padding: 30px 15px;
}



.product__url {
  border: 1px solid var(--first-color);
}

.product__content {
  padding: 10px;
  min-height: 330px;
}


.product__content_title {
  margin: 10px 0 15px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}

.product__content p {
  text-align: center;
  font-size: 18px;
}

.product__content_properties {
  margin-top: 15px;
  font-size: 15px;
  color: #000;
}

.product__content_properties .flex {
  justify-content: flex-start;
}

.content_properties_char_title {
  width: 50%;
  font-weight: 700;
}

.product__content_properties_char {
  color: #00aa27;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  display: block;
  border-bottom: 2px solid #00aa27;
  width: fit-content;
  padding-bottom: 7px;
}

.content_properties_char_detail {
  margin-bottom: 10px;
  font-size: 13px;
}

.product__content_buttons {
  margin-top: 20px;
  margin-bottom: 20px;
  justify-content: space-between;
}

.product__button {
  font: var(--UniHeavy) 15px Uni, sans-serif;
  height: 44px;
  padding: 0 30px;
  background-color: var(--first-color);
  border: none;
  border-radius: 40px;
  color: #fff;
  display: block;
  margin: 0 auto;
  text-align: center;
  transition: 0.3s;
}

.product__more_button {
  background-color: var(--bg-orange);
}

.strong_orange_text {
  font-weight: 700;
  color: #b06a0f;
}

.form_order_info {
  width: 100%;
  border: none;
  background: none;
  text-align: center;
  font: var(--Uni) 18px Uni, sans-serif;
  height: auto;
  margin-bottom: 15px;
}

.block_order_price {
  font-weight: 700;
  color: var(--first-color);
  font-size: 24px;
}


.description_order {
  text-align: center;
  margin: 30px 0 0;
  font-size: 18px;
}

.description_order span {
  font-weight: 700;
  color: var(--first-color);
}





/* текста по разделам */

.price-detail__info1 {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.3;
    border: 1px solid #d6d6d6;
    padding-left: 10px;
    padding-right: 10px;
}  

.price-detail__info2 {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.3;
    padding-left: 10px;
    padding-right: 10px;
} 

@media (max-width: 700px) {
.img_text_razdel {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    width: 100%;
    flex-direction: column;
}

	.banner-detail {
		margin-top: -50px;
	}
}

@media (min-width: 701px) {
.img_text_razdel {
display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    flex-direction: row;
    width: 33.3%;
}
}



div {
    display: block;
}


.uk-grid-small {
    margin-left: -15px;
}
@media (min-width: 1200px) {
  .uk-grid {
    margin-left: -40px;
  }

  .uk-grid {
    margin-left: -30px;
  }

  .uk-grid {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
  }
}


@media (min-width: 701px){
  .uk-child-width-1-3\@m>* {
      width: 33.32223%;
  }
  [class*=uk-child-width]>* {
      box-sizing: border-box;
      width: 50%;
  }
  .uk-grid-small>* {

      padding-left: 5px;
      padding-right: 5px;
  }
}

@media (max-width: 700px){
.uk-child-width-1-2\@s>* {
    width: 50%;
}
[class*=uk-child-width]>* {
    box-sizing: border-box;
    width: 50%;
}

.uk-grid-small>* {
    padding-left: 5px;
    padding-right: 5px;
}

}

@media (max-width: 444px){
  .uk-child-width-1-2\@s>* {
      width: 100%;
  }
  [class*=uk-child-width]>* {
      box-sizing: border-box;
      width: 100%;
  }

  .uk-grid-small>* {
      padding-left: 5px;
      padding-right: 5px;
  }

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

  .colors>div>div div b {
      display: block;
  }

  .colors>div>div {
      padding: 15px 5px;
      margin-bottom: 15px!important;
      border-radius: 10px;
  }
  .colors>div>div div {
      text-align: center;
      color: #fff!important;
  }

  .ral8017 {
      background: #442f29;
  }
  .ral8019 {
      background: #3d3635;
  }
  .ral6005 {
      background: #114232;
  }
  .ral6002 {
      background: #325928;
  }
  .ral7024 {
      background: #45494e;
  }
  .ral7004 {
      background: #9b9b9b;
  }
  .ral5002 {
      background: #00387b;
  }
  .ral5005 {
      background: #005387;
  }
  .ral3005 {
      background: #59191f;
  }


  .ral1016 {
      background: #eaed3e;
  }


  .ral2004 {
      background: #f58b07;
  }

  .ral1015 {
      background: #f1edcf;
  }

    .derevo {
      background-image: url(/upload/img_text_razdel/profnastil-derevo.jpg);
  }

  .kirpich {
      background-image: url(/upload/img_text_razdel/profnastil-kirpich.jpg);
  }

  .kamen {
      background-image: url(/upload/img_text_razdel/profnastil-kamen.jpg);
  }
}
/* конец текста по разделам */


.length_attention {
  font-size: 14px;
  margin-bottom: 15px;
  color: #f00;
  font-weight: 600;
}


/* Линкация по поддоменам */
.linkation__section {
  padding: 25px 0;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: -550px;
  width: 100%;
  box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.2);
  transition: top 1s ease;
  -moz-transition: top 1s ease;
  -o-transition: top 1s ease;
  -webkit-transition: top 1s ease;
  z-index: 999;
}

.linkation__section.active {
  display: block;
  top: 0;
}

.linkation__section .container {
  position: relative;
}

.linkation__section .close__btn {
  position: absolute;
  right: -50px;
  top: -15px;
  opacity: .7;
  background-color: #fff;
  border-radius: 50%;
  cursor: pointer;
  font-weight: 700;
  font-size: 18px;
}


.linkation__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  flex-direction: column;
  max-height: 450px;
}

.linkation__item a {
  color: #333;
  margin: 5px;
  font-size: 14px;
  line-height: 1.5;
}

.linkation__item a:hover {
  color: var(--first-color);
  font-weight: 700;
}

.linkation__item_bold a {
  font-weight: 700;
}

.toggle_linkation {
  cursor: pointer;
}

.header-top__logo {
  text-align: center;
}

.header-top__logo span {
  color: var(--first-color);
}

.header-top__logo img {
  margin-right: 0;
}

.header-top__descr span {
  display: block;
  width: 185px;
  font: var(--Uni) 15px/20px Uni, sans-serif;
  color: #7a7a7a;
}

.header-top__whatsup {
  text-align: center;
}

.header-top__whatsup .whatsup_link,
.footer__whatsup .whatsup_link {
  display: block;
  font: var(--UniHeavy) 15px Uni, sans-serif;
  color: #fff;
  padding: 8px 20px;
  border-radius: 40px;
  border: 0;
  background-color: var(--first-color);
  margin-bottom: 5px;
}

.footer__whatsup {
  margin: 10px 0;
}

.footer__whatsup .whatsup_link {
  width: fit-content;
}

.invisible {
  display: none;
}

.header-top__whatsup_description span {
  color: red;
  font-weight: 700;
}

.contacts-page .footer__whatsup {
  margin-top: 25px;
}

@media (max-width: 600px){
  .linkation__list {
    max-height: 200vh;
  }

  .linkation__section {
    top: -220vh;
  }

  .linkation__section .close__btn {
    right: 20px;
  }
  .linkation__item a {
    font-size: 12px;
  }

  .header-top__logo .toggle_linkation {
    display: block;
  }

  .header-top__descr span {
    display: none;
  }

  .header-top__whatsup {
    display: none;
  }

  .header-top__whatsup.visible {
    display: block;
  }

  .header-top .container.flex {
    padding: 0 5px;
  }

  .header-top__logo span {
    width: auto;
    white-space: nowrap;
  }

  .header-top__whatsup .whatsup_link {
    font-size: 14px;
    padding: 8px 15px;
  }

  .footer__whatsup .whatsup_link {
    margin: 0 auto;
  }

  .contacts-page__address {
    text-align: center;
  }

  .contacts-page__info a {
    justify-content: center;
  }

  .contacts-page__el .title {
    font-size: 15px;
  }

  .contacts-page__el .time b {
    font-size: 14px;
  }

  .contacts-page__el .time span {
    font-size: 16px;
  }
}



.product-item-wrapper {
   width: 100%;
   height: fit-content;
 }