﻿﻿html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
sup,
sub,
tt,
var,
center,
dl,
dt,
dd,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tfoot,
thead,
p {
  background: transparent;
  border: 0 none;
  font-style: inherit;
  font-weight: inherit;
  margin: 0;
  padding: 0;
  outline: 0;
  vertical-align: baseline;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
[hidden] {
  display: none;
}

.black {
  color: #000;
}

body,
button,
input,
textarea,
select {
  font-family: "Zona Pro";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  color: #2f2f2f;
  line-height: 26px;
}

h1,
h2,
h3 {
  font-weight: 700;
  color: #000;
}

h1 {
  font-size: 36px;
  line-height: 42px;
}
h2 {
  margin: 34px 0 14px 0;
  font-size: 24px;
  line-height: 30px;
}
h3 {
  margin: 24px 0 10px 0;
  font-size: 18px;
  line-height: 24px;
}

h1 span {
  padding-left: 20px;
  font-size: 18px;
  font-weight: 400 !important;
}

.red {
  color: #7e7e7e;
  font-weight: 600;
}

.pointer {
  cursor: pointer;
}
.button_calc {
  color: #515151;
  text-decoration: underline;
  cursor: pointer;
}
.button_calc:hover {
  color: #646464;
  text-decoration: none;
  cursor: pointer;
}

p {
  margin-top: 14px;
  padding: 0 0 14px 0;
}

p > img {
  border-radius: 10px;
  overflow: hidden;
  line-height: 0;
}

b,
strong {
  font-weight: 700;
}

a {
  color: #8f8f8f;
  text-decoration: underline;
}
a:hover {
  color: #7d7d7d;
  text-decoration: none;
}
a:hover,
a:active,
a:focus {
  outline: 0;
}

ul,
ol {
  margin: 0;
  padding: 0 0 14px 0;
  list-style: none;
}
ol {
  counter-reset: list1;
}

li {
  margin: 0;
  padding-left: 24px;
  position: relative;
}
ul > li:before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #000;
  position: absolute;
  top: 11px;
  left: 7px;
}

ol li > ul {
  padding: 0;
}

ol > li {
  padding-left: 24px;
}
ol > li:before {
  counter-increment: list1;
  content: counter(list1, decimal) ".";
  display: block;
  text-align: center;
  color: #787878;
  position: absolute;
  top: 0;
  left: 0;
}

ol ol > li {
  padding-left: 34px;
}
ol ol > li:before {
  content: counters(list1, ".");
}

img {
  border: 0;
  max-width: 100%;
  width: auto;
  height: auto;
}

blockquote {
  display: block;
  margin: 14px 0;
  padding: 30px;
  width: 100%;
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  background: #7c7c7c;
  border-radius: 10px;
  box-sizing: border-box;
  line-height: 30px;
}

hr {
  display: block;
  margin: 30px 0 45px 0;
  width: 100%;
  height: 1px;
  border: none;
  background: #d9d9d9;
}

.wrapper input[type="text"],
.wrapper input[type="password"],
.wrapper textarea {
  padding: 0 20px;
  width: 100%;
  height: 60px;
  font-size: 16px;
  background: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  box-sizing: border-box;
}
.wrapper input[type="text"].error,
.wrapper input[type="password"].error {
  border: 1px solid red;
}
.wrapper textarea {
  padding: 14px 20px;
  height: 134px;
  resize: none;
}
.wrapper input:focus,
.wrapper textarea:focus {
  outline: none;
}

input[type="text"]::-webkit-input-placeholder {
  color: #7b7b7b;
  opacity: 1;
}
input[type="text"]::-moz-placeholder {
  color: #7b7b7b;
  opacity: 1;
}
input[type="text"]:-moz-placeholder {
  color: #7b7b7b;
  opacity: 1;
}
input[type="text"]:-ms-input-placeholder {
  color: #7b7b7b;
  opacity: 1;
}
input[type="text"]:focus::-webkit-input-placeholder {
  color: transparent;
}
input[type="text"]:focus::-moz-placeholder {
  color: transparent;
}
input[type="text"]:focus:-moz-placeholder {
  color: transparent;
}
input[type="text"]:focus:-ms-input-placeholder {
  color: transparent;
}
input[type="password"]::-webkit-input-placeholder {
  color: #7b7b7b;
  opacity: 1;
}
input[type="password"]::-moz-placeholder {
  color: #7b7b7b;
  opacity: 1;
}
input[type="password"]:-moz-placeholder {
  color: #7b7b7b;
  opacity: 1;
}
input[type="password"]:-ms-input-placeholder {
  color: #7b7b7b;
  opacity: 1;
}
input[type="password"]:focus::-webkit-input-placeholder {
  color: transparent;
}
input[type="password"]:focus::-moz-placeholder {
  color: transparent;
}
input[type="password"]:focus:-moz-placeholder {
  color: transparent;
}
input[type="password"]:focus:-ms-input-placeholder {
  color: transparent;
}
textarea::-webkit-input-placeholder {
  color: #7b7b7b;
  opacity: 1;
}
textarea::-moz-placeholder {
  color: #7b7b7b;
  opacity: 1;
}
textarea:-moz-placeholder {
  color: #7b7b7b;
  opacity: 1;
}
textarea:-ms-input-placeholder {
  color: #7b7b7b;
  opacity: 1;
}
textarea:focus::-webkit-input-placeholder {
  color: transparent;
}
textarea:focus::-moz-placeholder {
  color: transparent;
}
textarea:focus:-moz-placeholder {
  color: transparent;
}
textarea:focus:-ms-input-placeholder {
  color: transparent;
}

.wrapper input[type="checkbox"] {
  display: none;
}
.wrapper input[type="checkbox"] + label {
  padding-left: 35px;
  line-height: 20px;
  cursor: pointer;
  position: relative;
}
.wrapper input[type="checkbox"] + label span {
  position: absolute;
  top: -2px;
  left: 0;
  display: block;
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.wrapper input[type="checkbox"] + label span:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid #e6e6e6;
  border-radius: 50%;
  box-sizing: border-box;
}
.wrapper input[type="checkbox"] + label:hover span:before {
  border-color: #585858;
}
.wrapper input[type="checkbox"]:checked + label span:before {
  border-color: #5c5c5c;
}
.wrapper input[type="checkbox"]:checked + label span:after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #717171;
  position: absolute;
  top: 5px;
  left: 5px;
}

.wrapper input[type="checkbox"] + label:hover div,
.wrapper input[type="checkbox"]:checked + label div {
  color: #646464;
}

.wrapper input[type="checkbox"] + label div {
  display: inline-block;
  max-width: calc(100% - 35px);
}

.button,
.wrapper button,
.wrapper input[type="button"],
.wrapper input[type="reset"],
.wrapper input[type="submit"] {
  display: block;
  padding: 0 20px;
  width: 100%;
  height: 50px;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  text-decoration: none;
  background: #2f2f2f;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  *overflow: visible;
  -webkit-appearance: none;
  box-sizing: border-box;
  line-height: 50px;
  transition: all 0.2s ease;
  user-select: none;
}
.button:hover,
.wrapper button:hover,
.wrapper input[type="button"]:hover,
.wrapper input[type="reset"]:hover,
.wrapper input[type="submit"]:hover {
  color: #fff;
  background: #a7a7a5;
  border: none;
  text-decoration: none;
}
.button.red,
.wrapper button.red,
.wrapper input[type="button"].red,
.wrapper input[type="reset"].red,
.wrapper input[type="submit"].red {
  background: #f2dc86;
  color: #fff;
}
.button.red:hover,
.wrapper button.red:hover,
.wrapper input[type="button"].red:hover,
.wrapper input[type="reset"].red:hover,
.wrapper input[type="submit"].red:hover {
  background: #4c4c4c;
  color: #fff;
}
.button.icon:before,
.wrapper button.icon:before,
.wrapper input[type="button"].icon:before,
.wrapper input[type="reset"].icon:before,
.wrapper input[type="submit"].icon:before {
  content: "";
  display: inline-block;
  width: 35px;
  height: 12px;
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAAMCAYAAABvEu28AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAADJJREFUeNpi/P///30GBgYFBsrAAyaGUUAQgAL7P/HgPi5zRgOb/MC+T6o5VAtsgAADAClzTBzXW9u1AAAAAElFTkSuQmCC")
    left center no-repeat;
}

.button.black {
  cursor: default;
}
.button.black:hover {
  background: #2f2f2f;
}
.button.grey {
  background: #eee;
  color: #000;
}
.button.grey:hover {
  background: #757575;
  color: #fff;
}

.button.border {
  background: #fff;
  border: 1px solid #565656;
  color: #666666;
}
.button.border:hover {
  background: #525252;
  border: 1px solid #575757;
  color: #fff;
}

.inline {
  display: inline-block;
  padding-left: 30px;
  padding-right: 30px;
  width: auto;
}

.table_wrap {
  padding: 14px 0;
  width: 100%;
  font-size: 15px;
  border: none;
  overflow: hidden;
  overflow-x: auto;
}
.table_wrap table {
  width: 100%;
  text-align: left;
  border-collapse: separate;
  overflow: hidden;
}
.table_wrap table th {
  background: #f8f8f8;
  font-weight: 700;
}
.table_wrap table tr > th:first-child {
  border-radius: 10px 0 0 10px;
}
.table_wrap table tr > th:last-child {
  border-radius: 0 10px 10px 0;
}
.table_wrap table th,
.table_wrap table td {
  padding: 16px 10px 16px 50px;
}
.table_wrap table td {
  border-bottom: 1px solid #e1e1e1;
}

@media only screen and (max-width: 1340px) {
  body,
  button,
  input,
  textarea,
  select {
    font-size: 15px;
    line-height: 22px;
  }

  h1 {
    font-size: 34px;
    line-height: 40px;
  }
  h2 {
    margin: 30px 0 12px 0;
    font-size: 22px;
    line-height: 28px;
  }
  h3 {
    margin: 20px 0 10px 0;
    font-size: 17px;
    line-height: 22px;
  }

  h1 span {
    font-size: 17px;
  }

  blockquote {
    padding: 20px;
    font-size: 20px;
    line-height: 28px;
  }

  .wrapper input[type="text"],
  .wrapper input[type="password"],
  .wrapper textarea {
    padding: 0 15px;
    height: 50px;
    font-size: 15px;
  }
  .wrapper textarea {
    padding: 10px 15px;
    height: 114px;
  }

  .button,
  .wrapper button,
  .wrapper input[type="button"],
  .wrapper input[type="reset"],
  .wrapper input[type="submit"] {
    padding: 0 15px;
    font-size: 15px;
  }

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

@media only screen and (max-width: 960px) {
  body,
  button,
  input,
  textarea,
  select {
    font-size: 14px;
    line-height: 20px;
  }

  h1 {
    font-size: 30px;
    line-height: 36px;
  }
  h2 {
    margin: 25px 0 10px 0;
    font-size: 20px;
    line-height: 26px;
  }
  h3 {
    margin: 16px 0 8px 0;
    font-size: 16px;
    line-height: 20px;
  }

  h1 span {
    font-size: 16px;
  }

  blockquote {
    padding: 15px;
    font-size: 18px;
    line-height: 24px;
  }

  ul > li:before {
    top: 9px;
  }

  .wrapper input[type="text"],
  .wrapper input[type="password"],
  .wrapper textarea {
    padding: 0 10px;
    font-size: 14px;
  }
  .wrapper textarea {
    padding: 7px 10px;
    height: 98px;
  }

  .button,
  .wrapper button,
  .wrapper input[type="button"],
  .wrapper input[type="reset"],
  .wrapper input[type="submit"] {
    font-size: 14px;
  }
}

@media only screen and (max-width: 600px) {
  body,
  button,
  input,
  textarea,
  select {
    font-size: 13px;
    line-height: 18px;
  }

  h1 {
    font-size: 24px;
    line-height: 28px;
  }
  h2 {
    margin: 30px 0 12px 0;
    font-size: 20px;
    line-height: 24px;
  }
  h3 {
    margin: 20px 0 10px 0;
    font-size: 16px;
    line-height: 20px;
  }

  h1 span {
    font-size: 16px;
  }

  blockquote {
    padding: 10px;
    font-size: 14px;
    line-height: 19px;
  }

  .table_wrap {
    font-size: 13px;
  }

  p {
    margin-top: 10px;
    padding: 0 0 10px 0;
  }

  ul,
  ol {
    padding: 0 0 10px 0;
  }
  ul > li:before {
    top: 7px;
  }
}

@charset "utf-8";
html {
  width: 100%;
}
body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: #f8f8f8;
}
.openArea {
  overflow: hidden !important;
  scrollbar-gutter: stable;
}

.wrapper {
  margin: 0 auto;
  width: 100%;
  /* background: #fff; */
  overflow: hidden;
  position: relative;
}

.ns-fx {
  display: flex;
}
.ns-fx > div,
.ns-fx > li,
.ns-fx > a {
  display: block;
  box-sizing: border-box;
  position: relative;
}

.icon-bg:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url(../../../../../../local/templates/sp/images/split.png);
  background-repeat: no-repeat;
}

.head-top_wrap {
  padding: 15px 20px;
  height: 80px;
  background: #2f2f2f;
  box-sizing: border-box;
}
.head-top {
  margin: 0 auto;
  width: 100%;
  max-width: 1300px;
  color: #fff;
  align-items: center;
}
.head-top > div:nth-child(1) {
  width: 100%;
  overflow: hidden;
}
.head-top > div:nth-child(2) {
  padding: 0 20px;
}

.head-top .adres {
  padding-left: 30px;
  font-size: 14px;
  line-height: 20px;
}
.head-top .adres:before {
  background-position: 0 0;
  position: absolute;
  left: -2px;
}
.head-top .favorite {
  display: block;
  padding-left: 30px;
  width: 200px;
  font-size: 12px;
  color: #fff;
  text-decoration: none;
  line-height: 20px;
  white-space: nowrap;
  box-sizing: border-box;
  position: relative;
}
.head-top .favorite:before {
  background-position: -100px 0;
  position: absolute;
  left: 0;
}
.head-top .favorite:hover {
  color: #545453;
}

.top-search {
  width: 478px;
  height: 50px;
  background: #464646;
  border-radius: 10px;
}
.top-search > div:nth-child(1) {
  width: 63px;
}
.top-search > div:nth-child(2) {
  width: 415px;
}
.top-search button {
  padding: 0;
  width: 100%;
  height: 50px;
  background: none;
  border-radius: 10px 0 0 10px;
  line-height: 0px;
}
.top-search button:hover {
  background: none;
}
.top-search input[type="text"] {
  padding: 0 20px 0 0;
  height: 50px;
  color: #fff;
  background: none;
  border: none;
  border-radius: 0 10px 10px 0;
}

.head {
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  max-width: 1340px;
  height: 100px;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}
.head > div:nth-child(1) {
  min-width: 250px;
  max-width: 250px;
}

.t-cnt {
  padding-left: 50px;
  position: relative;
}
.t-cnt > div:nth-child(1) {
  font-weight: 600;
  color: #a2a2a2;
  line-height: 22px;
}
.t-cnt > div:nth-child(2) {
  font-size: 14px;
  color: #000;
  line-height: 18px;
}

.t-cnt a {
  color: #000;
}
.t-cnt a:hover {
  color: #727272;
}

.t-cnt.icon-bg:after {
  content: "";
  display: block;
  width: 35px;
  height: 35px;
  background: #fff;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: calc(50% - 17.5px);
  z-index: 1;
}
.t-cnt.icon-bg:before {
  position: absolute;
  left: 7.5px;
  top: calc(50% - 10px);
  z-index: 2;
}
.t-cnt.time.icon-bg:before {
  background-position: -20px 0;
}
.t-cnt.phone.icon-bg:before {
  background-position: -40px 0;
}
.t-cnt.mail.icon-bg:before {
  background-position: -60px 0;
}
.t-cnt.dev.icon-bg:before {
  background-position: -80px 0;
}

.head .top-social {
  width: 20px;
  gap: 10px;
  flex-direction: column;
}
.head .top-social > a {
  width: 20px;
  height: 20px;
  text-decoration: none;
}
.head .mobail {
  display: none;
}

nav {
  padding: 0 20px;
  height: 80px;
  background: #f8f8f8;
  position: relative;
  z-index: 1010;
}

.menu-desctop {
  margin: 0 auto;
  max-width: 1300px;
  height: 80px;
  align-items: center;
  justify-content: space-between;
}
.menu-desctop .button {
  width: 200px;
}
.menu-desctop .link {
  font-weight: 600;
  color: #000;
  text-decoration: none;
}
.menu-desctop .link:hover,
.menu-desctop .link.active {
  color: #5b5b5b;
}

.menu-mobail {
  display: none;
}

.open-cat-menu.active {
  background: #525252;
}

.catalog-menu-desctop {
  display: none;
  padding: 0 20px;
  width: 100%;
  height: auto;
  background: #f8f8f8;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  z-index: 1050;
}
.catalog-menu-line {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin: 0 auto;
  padding: 50px 0;
  width: 100%;
  max-width: 1300px;
  border-bottom: 1px solid #d9d9d9;
}
.catalog-menu-line:last-child {
  border-bottom: none;
}
.catalog-menu-line > div {
  width: calc(100% / 3);
}

.catalog-menu-line .item > div:nth-child(1) {
  width: 90px;
}
.catalog-menu-line .item > div:nth-child(2) {
  padding-left: 20px;
  width: calc(100% - 90px);
}
.catalog-menu-line .item .img {
  justify-content: center;
  align-items: center;
  padding: 8px;
  width: 90px;
  height: 90px;
  background: #fff;
  border-radius: 10px;
  box-sizing: border-box;
  line-height: 0;
  overflow: hidden;
}
.catalog-menu-line .item .img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.catalog-menu-line .title {
  margin-bottom: 10px;
  color: #2f2f2f;
  font-size: 18px;
  font-weight: 700;
}
.catalog-menu-line a {
  color: #4b4b4b;
  text-decoration: none;
}
.catalog-menu-line a:hover,
.catalog-menu-line a.active,
.catalog-menu-line .child a:hover,
.catalog-menu-line .child a.active,
.catalog-menu-line .child-view.c_open {
  color: #636363;
}

.catalog-menu-line ul {
  padding: 0;
}
.catalog-menu-line li {
  padding-left: 0;
}
.catalog-menu-line li:before {
  display: none;
}
.catalog-menu-line li ul {
  margin: 10px 0;
}

.catalog-menu-line .child-view:after {
  content: "";
  display: inline-block;
  margin: 2px 0 0 10px;
  border: 5px solid transparent;
  border-top: 5px solid #bbbbbb;
  vertical-align: middle;
}
.catalog-menu-line .child-view.c_open:after {
  margin: 0 0 5px 10px;
  border: 5px solid transparent;
  border-bottom: 5px solid #5b5b5b;
  vertical-align: middle;
}

footer {
  background: #f8f8f8;
}

.footer {
  margin: 0 auto;
  padding: 50px 20px;
  width: 100%;
  max-width: 1340px;
  box-sizing: border-box;
}
.footer .line:nth-child(1) {
  margin-bottom: 50px;
  align-items: center;
}

.footer .line > div:nth-child(1) {
  min-width: 300px;
  max-width: 300px;
}
.footer .line > div:nth-child(2) {
  padding: 0 20px;
  width: 100%;
  overflow: hidden;
}
.footer .line > div:nth-child(3) {
  min-width: 200px;
  max-width: 200px;
}

.footer .top-search {
  width: 100%;
  background: #fff;
}
.footer .top-search > div:nth-child(2) {
  width: calc(100% - 63px);
}
.footer .top-search input[type="text"] {
  color: #000;
}
.footer .top-search button path {
  fill: #7b7b7b;
}
.footer .top-search button:hover path {
  fill: #000;
}

.footer .t-cnt {
  margin-bottom: 30px;
}
.footer .t-cnt.dev {
  margin-bottom: 0;
}

.footer .bot-social {
  gap: 14px;
}
.footer .bot-social svg {
  width: 40px;
  height: 40px;
}

.bottom-nav {
  padding: 0 90px;
  gap: 30px;
}
.bottom-nav > div {
  width: 50%;
}
.bottom-nav > div ul {
  padding: 0 0 14px 0;
  gap: 20px;
  flex-direction: column;
}
.bottom-nav > div li {
  display: block;
  padding-left: 0;
  line-height: normal;
}
.bottom-nav > div li:before {
  display: none;
}
.bottom-nav span {
  cursor: pointer;
}
.bottom-nav a {
  color: #000;
  text-decoration: none;
}
.bottom-nav a:hover,
.bottom-nav a.active,
.bottom-nav span:hover {
  color: #7b7b7b;
}

.bottom-wrap {
  padding: 0 20px;
  background: #2f2f2f;
  font-size: 15px;
}
.bottom-wrap .bottom {
  margin: 0 auto;
  width: 100%;
  height: 60px;
  max-width: 1300px;
  color: #fff;
  justify-content: space-between;
  align-items: center;
}
.bottom-wrap .bottom a {
  color: #fff;
}
.bottom-wrap .bottom a:hover {
  color: #757575;
}

main {
  margin: 0 auto 80px auto;
  padding: 0 20px;
  width: 100%;
  max-width: 1340px;
  box-sizing: border-box;
  
}

.promo-wrap-all {
  width: 100%;
  background: #f8f8f8;
  height: auto;
}
.promo-slide {
  width: 100%;
  height: 650px;
  /* background: linear-gradient(263.46deg, #cbcbcb 0%, #535353 100%); */
  position: relative;
  background: url("/11.jpg") no-repeat center center;
  background-size: cover; /* картинка растянется */
}
.promo-slide:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  /* background: url(../../../../../../local/templates/sp/images/promo.jpg) center
    center no-repeat; */
  background-size: cover;
  opacity: 0.1;
  position: absolute;
  left: 0;
  top: 0;
}

.promo {
  margin: 0 auto;
  padding: 30px 20px;
  width: 100%;
  height: 560px;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
}

.promo .slide_view {
  margin: 0 auto;
  width: 100%;
  max-width: 1300px;
  flex-direction:column;
  align-items: center;
  color: #fff;
  margin-top: 100px;
}
.promo .slide_view > div:nth-child(1) {
  width: 80%;
  line-height: 0;
}
.promo .slide_view > div:nth-child(2) {
  padding-bottom: 90px;
  width: 800px;
}
.promo .slide_view .text-top {
  padding-bottom: 25px;
  font-size: 18px;
  opacity: 0.5;
  line-height: 21px;
}
.promo .slide_view .title {
  padding-bottom: 25px;
  font-size: 42px;
  font-weight: 700;
  line-height: 50px;
  color: #fff;
}
.promo .slide_view .text {
  font-size: 24px;
  line-height: 30px;
}
.promo .slide_view .wrp-btn {
  padding-top: 40px;
  max-width: 200px;
}
.promo .slide_view .button {
  background: none;
  border: 1px solid #fff;
  font-size: 18px;
  text-transform: uppercase;
  color: #fff;
}
.promo .slide_view .button:hover {
  background: #2f2f2f;
}

.promo .nav-slider {
  align-items: center;
  width: 750px;
  overflow: hidden;
  position: absolute;
  bottom: 60px;
  left: calc((100% - 1300px) / 2);
  z-index: 5;
}

.promo .nav-slider .btn-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  text-align: center;
  cursor: pointer;
  line-height: 40px;
}
.promo .nav-slider .swiper-button-disabled {
  cursor: default !important;
}
.promo .nav-slider .btn-circle:nth-child(1) {
  margin-right: 30px;
}
.promo .nav-slider .btn-circle:nth-child(2) {
  margin-right: 20px;
}

.promo .nav-slider .swiper-pagination {
  max-width: 620px;
  position: relative !important;
  bottom: 1px;
  text-align: left;
  line-height: 0px;
}
.promo .nav-slider .swiper-pagination-bullet {
  width: 90px;
  height: 1px;
  background: #d9d9d9;
  opacity: 0.3;
}
.promo .nav-slider .swiper-pagination-bullet-active {
  opacity: 1;
}

.after-slider {
  margin: -90px auto 0 auto;
  padding: 0 20px 50px 20px !important;
  max-width: 1340px;
  box-sizing: border-box;
}
.after-slider .swiper-slide {
  height: auto;
  width: 32% !important;
}
@media (max-width: 768px) {
  .after-slider .swiper-slide {
    height: auto;
    width: 100% !important;
  }
}
.after-slider .slide_view {
  padding: 30px;
  height: 100%;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.05);
  position: relative;
  box-sizing: border-box;
}
.after-slider .icon {
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
  line-height: 0px;
}
.after-slider .icon img {
  display: block;
}
.after-slider .name {
  padding: 25px 0 20px 0;
  font-size: 20px;
  font-weight: 600;
  color: #000;
  line-height: 25px;
}
.after-slider .text {
  line-height: 20px;
}

.after-slider.swiper {
  overflow: inherit !important;
}

.after-slider.cnt {
  margin: 90px -20px 0 -20px;
  padding: 0 20px !important;
}

.pre-crumbs {
  align-items: center;
  margin: 25px 0 35px 0;
  height: 40px;
}
.pre-crumbs > div:nth-child(1) {
  width: 100%;
  overflow: hidden;
}

.breadcrumb {
  display: block;
}
.breadcrumb > div {
  display: inline;
  height: 18px;
  line-height: 18px;
  position: relative;
}
.breadcrumb > div:nth-child(1) {
  padding-left: 0;
}
.breadcrumb > div:after {
  content: "\002F";
  display: inline;
  padding: 0 12px;
}
.breadcrumb > div:last-child:after {
  display: none;
}
.breadcrumb a {
  color: #2f2f2f;
  text-decoration: none;
}
.breadcrumb a:hover,
.breadcrumb span {
  color: #7b7b7b;
}

.top-back-link {
  align-items: center;
  padding-left: 20px;
  text-decoration: none;
  color: #2f2f2f;
  white-space: nowrap;
}
.top-back-link > div:nth-child(1) {
  padding-right: 18px;
  text-transform: uppercase;
}
.top-back-link > div:nth-child(2) {
  width: 40px;
  height: 40px;
  border: 1px solid #e1e1e1;
  border-radius: 50%;
  text-align: center;
  line-height: 38px;
  transition: all 0.2s ease;
}
.top-back-link:hover svg path {
  stroke: #7b7b7b;
}
.top-back-link:hover > div:nth-child(2) {
  border-color: #7b7b7b;
}

.wrp_h1 {
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 45px;
}
.wrp_h1 > div:nth-child(1) {
  width: 100%;
  overflow: hidden;
}
.wrp_h1 > div:nth-child(2) {
  padding: 0 0 0 20px;
  white-space: nowrap;
}

.page_button_list {
  margin: 50px 0 0 0;
}
.page_button_list .button {
  border-radius: 20px;
  text-transform: uppercase;
}

.rew-item {
  gap: 30px;
  margin-bottom: 35px;
}
.rew-item > div:nth-child(1) {
  padding: 0 15px;
  min-width: 305px;
  max-width: 305px;
}
.rew-item h2 {
  padding-top: 0;
}

.pre-news {
  gap: 20px;
  margin: -20px 0 50px 0;
  justify-content: flex-start;
}
.pre-news .button {
  padding: 0 30px;
  width: auto;
  min-width: 200px;
}

.news-list {
  margin: 0 -10px;
  flex-wrap: wrap;
}
.news-list > a {
  margin-bottom: 45px;
  padding: 0 10px 30px 10px;
  width: calc(100% / 3);
  text-decoration: none;
  color: #000;
}
.news-list .image {
  margin-bottom: 20px;
  width: 100%;
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
}
.news-list .image.big {
  height: auto;
}
.news-list .image img {
  object-fit: contain;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.news-list .date {
  color: #b1b1b1;
}
.news-list .title {
  padding: 14px 0 6px 0;
  font-size: 24px;
  line-height: 29px;
}
.news-list p {
  padding-bottom: 0;
  color: #1c1c1c;
  line-height: 21px;
}
.news-list .link {
  color: #234fc0;
  text-decoration: underline;
  position: absolute;
  bottom: 0;
}

.news-list > a:hover .link {
  text-decoration: none;
}

.item-date {
  color: #7b7b7b;
  text-align: right;
}
.item-detail .photo {
  margin-bottom: 14px;
  border-radius: 10px;
  overflow: hidden;
  line-height: 0;
}
.item-detail img {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  line-height: 0;
}

.wrpap-dop-news {
  margin-top: 90px;
}
.wrpap-dop-news .top-title {
  padding-bottom: 30px;
  font-size: 36px;
  font-weight: 700;
  line-height: 40px;
}
.wrpap-dop-news .pre-news {
  margin: 0 0 50px 0;
}

.wrpap-dop-news .top-lnk {
  align-items: flex-end;
  justify-content: space-between;
}
.wrpap-dop-news .top-lnk > div:nth-child(2) {
  padding-bottom: 50px;
}
.wrpap-dop-news .top-lnk > div:nth-child(2) a {
  color: #000;
}
.wrpap-dop-news .top-lnk > div:nth-child(2) a:hover {
  color: #7b7b7b;
}

.main-promo-catalog {
  padding: 35px 0 100px 0;
  background: #f8f8f8;
  position: relative;
  z-index: 2;
}
.main-promo-catalog:before {
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  background: #f8f8f8;
  position: absolute;
  top: 0;
  left: calc((1300px - 100vw) / 2);
  z-index: -1;
}
.main-promo-catalog .top-catalog h1 {
  margin-bottom: -7px;
  padding: 4px 0 0 0;
}
.main-promo-catalog .top-catalog a {
  text-decoration: none;
}
.main-promo-catalog .top-catalog p {
  margin-top: 0;
  padding: 14px 0;
  color: #7b7b7b;
}
.main-promo-catalog .top-catalog p span {
  display: block;
}

.section-list-slider .wrap-cat-slide {
  display: none;
}

.swiper-wrapper.section-list {
  width: auto;
}

.section-list {
  margin: 0 -10px;
  flex-wrap: wrap;
}
.section-list > div {
  padding: 10px;
  width: calc(100% / 2);
}

.section-list .swiper-slide {
  height: auto;
}

.section-list .item {
  padding: 35px 35px 120px 35px;
  height: 100%;
  background: #fff;
  border: 1px solid #e1e1e1;
  border-radius: 10px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}
.section-list .img {
  justify-content: center;
  align-items: center;
  height: 210px;
  overflow: hidden;
}
.section-list .img > div {
  overflow: hidden;
}
.section-list .img img {
  display: block;
  object-fit: cover;
  max-width: 100%;
  max-height: 210px;
}
.section-list .txt {
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
}
.section-list .name {
  padding: 35px 0 10px 0;
}
.section-list .price {
  color: #7b7b7b;
}

.section-list .bottom {
  width: 100%;
  height: 50px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.section-list .bottom > div {
  width: 100%;
  height: 50px;
  font-size: 15px;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  line-height: 50px;
  cursor: pointer;
}
.section-list .bottom .fast-view-section {
  background: #7b7b7b;
}
.section-list .bottom .fast-view-section:hover {
  background: #000;
}
.section-list .bottom a {
  display: block;
  width: 100%;
  height: 50px;
  color: #fff;
  background: #000;
  text-decoration: none;
}
.section-list .bottom a:hover {
  background: #7b7b7b;
}

.section-list.page .item {
  height: 100%;
  box-sizing: border-box;
}

.top-list-text {
  margin-top: -30px;
  color: #7b7b7b;
}

.top-list-sect {
  margin-top: 26px;
  gap: 20px;
  flex-wrap: wrap;
}
.top-list-sect.v2 {
  margin-bottom: 50px;
}
.top-list-sect.bottom {
  margin: 70px 0 0 0;
}
.top-list-sect > a {
  padding: 0 20px;
  height: 50px;
  color: #4b4b4b;
  text-decoration: none;
  background: #f8f8f8;
  border-radius: 10px;
  white-space: nowrap;
  line-height: 50px;
}
.top-list-sect > a:hover,
.top-list-sect > a.active {
  color: #fff;
  background: #2f2f2f;
}

.goods-list {
  flex-wrap: wrap;
  margin: 25px -10px;
}
.goods-list > div {
  margin-top: 25px;
  padding: 0 10px;
  width: 25%;
}
.goods-list .good {
  padding-bottom: 160px;
  height: 100%;
  box-sizing: border-box;
  position: relative;
}
.goods-list .good.v2 {
  padding-bottom: 90px;
}
.goods-list .img {
  justify-content: center;
  align-items: center;
  padding: 20px;
  width: 100%;
  height: 310px;
  border: 1px solid #e1e1e1;
  border-radius: 10px;
  box-sizing: border-box;
  line-height: 0;
  cursor: pointer;
}
.goods-list .img > div {
  max-width: 100%;
  max-height: 100%;
  overflow: hidden;
}
.goods-list .img > div img {
  object-fit: cover;
  max-width: 100%;
  max-height: 250px;
}
.goods-list .name {
  padding: 25px 0 14px 0;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  line-height: 22px;
}

.goods-list .bottom {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
}
.goods-list .bottom > div {
  margin-bottom: 20px;
}
.goods-list .bottom > div:last-child {
  margin-bottom: 0;
}

.goods-list .art {
  color: #7b7b7b;
  text-align: center;
  line-height: 19px;
}
.goods-list .button {
  text-transform: uppercase;
}

.sect-bot-text,
.sect-bot-props {
  margin-top: 50px;
}

.sect-bot-text .i_video {
  width: 100%;
  padding-top: 56.25%;
  position: relative;
  overflow: hidden;
}
.sect-bot-text .i_video iframe {
  width: 100% !important;
  height: 100% !important;
  display: block;
  position: absolute;
  margin: 0;
  top: 0;
  left: 0;
  border: none;
}

.sect-bot-text table {
  padding: 0 30px;
  border: 1px solid #e1e1e1;
  border-radius: 10px;
}

.sect-bot-text table th {
  background: #000;
  font-weight: 700;
  color: #fff;
  position: relative;
}
.sect-bot-text table tr > th:nth-child(1):before {
  content: "";
  display: block;
  width: 40px;
  height: 100%;
  background: #000;
  border-radius: 10px 0 0 10px;
  position: absolute;
  left: -30px;
  top: 0;
}
.sect-bot-text table tr > th:last-child:before {
  content: "";
  display: block;
  width: 40px;
  height: 100%;
  background: #000;
  border-radius: 0 10px 10px 0;
  position: absolute;
  right: -30px;
  top: 0;
}
.sect-bot-text table tr:last-child td {
  border-bottom: none;
}

.sect-bot-text.fon {
  padding: 30px;
  background: #f8f8f8;
  border-radius: 10px;
}
.sect-bot-text.fon > h2:nth-child(1) {
  margin-top: 0;
}

.goods-list-slider-wrap {
  margin-top: 50px;
  overflow: hidden;
  box-sizing: border-box;
}
.goods-list-slider-wrap .swiper-slide {
  height: auto;
}
.goods-list-slider-wrap .goods-list {
  margin: 40px 0 0 0;
}
.goods-list-slider-wrap .goods-list > div {
  margin: 0;
  padding: 0;
}
.goods-list-slider-wrap .goods-list .good {
  padding-bottom: 90px;
}

.detail-good {
  margin: 35px -10px 0 -10px;
}
.detail-good > div {
  padding: 0 10px;
  width: 50%;
}
.detail-good .photo {
  justify-content: center;
  align-items: center;
  padding: 20px;
  width: 100%;
  height: 100%;
  border: 1px solid #e1e1e1;
  border-radius: 10px;
  box-sizing: border-box;
}
.detail-good .photo a {
  text-decoration: none;
  line-height: 0;
  overflow: hidden;
}
.detail-good .photo img {
  object-fit: cover;
  max-width: 550px;
  max-height: 550px;
}
.detail-good .swiper-slide {
  width: 100%;
  height: auto;
}
.detail-good .slide_view {
  justify-content: center;
  align-items: center;
}
.detail-good .slide_view a {
  line-height: 0;
}

.detail-good .info {
  padding: 20px 30px;
  width: 100%;
  height: 100%;
  background: #f8f8f8;
  border-radius: 10px;
  color: #000;
  box-sizing: border-box;
}

.detail-good .info .title {
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
}
.detail-good .info .aricle {
  margin-top: 14px;
  color: #7b7b7b#7b7b7b;
}
.detail-good .info hr {
  margin: 30px 0;
}
.detail-good .info .name {
  padding-bottom: 5px;
  font-size: 18px;
  font-weight: 700;
}
.detail-good .info p {
  padding: 10px 0;
}

.detail-good .info .wrp-btn {
  gap: 20px;
  margin: 40px 0;
  text-transform: uppercase;
}
.detail-good .info .wrp-btn > div {
  white-space: nowrap;
}
.detail-good .info .favorite {
  background: #fff;
  border: 1px solid #e1e1e1;
  color: #000;
}
.detail-good .info .favorite.in {
  background: #7b7b7b;
  color: #fff;
  border: 1px solid #7b7b7b;
  cursor: default;
}
.detail-good .info .favorite.in path {
  fill: #fff;
}
.detail-good .info .favorite:hover {
  background: #7b7b7b;
  border: 1px solid #7b7b7b;
  color: #fff;
}
.detail-good .info .favorite:hover path {
  fill: #fff;
}
.detail-good .info .favorite > span {
  display: inline-block;
  height: 50px;
  vertical-align: top;
}
.detail-good .info .favorite > span:nth-child(1) {
  margin-right: 7px;
  padding-top: 3.5px;
  height: 46.5px;
}

.detail-good .info .photos {
  flex-wrap: wrap;
  margin: 0 -7px;
  padding-top: 7px;
}
.detail-good .info .photos > div {
  padding: 7px;
}
.detail-good .info .photos > div > div {
  width: 86px;
  height: 86px;
  background-color: #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border: 1px solid #e1e1e1;
  border-radius: 10px;
  overflow: hidden;
  user-select: none;
  cursor: pointer;
}
.detail-good .info .photos .active {
  border-color: #7b7b7b;
}

.wrap_partners {
  margin: 80px 0 30px 0;
}
.wrap_partners .top {
  align-items: center;
  padding-bottom: 40px;
}
.wrap_partners .top > div:nth-child(1) {
  width: 100%;
  font-size: 36px;
  font-weight: 700;
  line-height: 42px;
  padding-right: 18px;
  overflow: hidden;
}
.wrap_partners .top > div:nth-child(2) {
  white-space: nowrap;
}
.wrap_partners .top a {
  color: #000;
}
.wrap_partners .top a:hover {
  color: #7b7b7b;
}

.partners-slider-wrap {
  margin: 0 calc((1300px - 100vw) / 2);
}

.partners-slider .swiper-slide {
  width: 200px;
}
.partners-slider .item {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 110px;
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  line-height: 0;
  filter: grayscale(1);
  transition: 0.1s ease-in-out;
}
.partners-slider .item > div {
  padding: 10px;
  box-sizing: border-box;
  overflow: hidden;
}
.partners-slider .item > div img {
  object-fit: cover;
  max-width: 100%;
  max-height: 90px;
}
.partners-slider .item:hover {
  filter: grayscale(0);
}

.partners-page {
  flex-wrap: wrap;
  margin: 0 -10px;
}
.partners-page > div {
  padding: 0 10px 20px 10px;
  width: 25%;
}
.partners-page .item {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 110px;
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  line-height: 0;
  filter: grayscale(1);
  transition: 0.1s ease-in-out;
}
.partners-page .item > div {
  padding: 10px;
  box-sizing: border-box;
  overflow: hidden;
}
.partners-page .item > div img {
  object-fit: cover;
  max-width: 100%;
  max-height: 90px;
}
.partners-page .item:hover {
  filter: grayscale(0);
}

.faq-wrap {
  margin: 90px 0;
  position: relative;
}
.faq-wrap .title {
  padding-bottom: 10px;
  font-size: 36px;
  font-weight: 700;
  line-height: 42px;
}
.faq-wrap .title span {
  color: #6b6b6b;
}
.faq-wrap .text {
  color: #7b7b7b;
}

.faq-wrap .bg-wrap {
  margin-top: 65px;
  position: relative;
}
.faq-wrap .bg-wrap:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #000;
  position: absolute;
  top: -40px;
  right: 270px;
}
.faq-wrap .bg-wrap .bg {
  display: block;
  border-radius: 50%;
  background: #8e8e8e;
  position: absolute;
  z-index: 2;
}
.faq-wrap .bg-wrap .bg-1 {
  width: 50px;
  height: 50px;
  top: -22px;
  right: 200px;
}
.faq-wrap .bg-wrap .bg-2 {
  width: 100px;
  height: 100px;
  bottom: -40px;
  left: -40px;
}

.faq-wrap .faq-list {
  padding: 15px 0 40px 0;
  border: 1px solid #fff;
  background: rgb(248, 248, 248, 0.5);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  box-sizing: border-box;
  position: relative;
  z-index: 5;
}

.faq-wrap .faq {
  counter-reset: listF;
}
.faq-wrap .item:before {
  counter-increment: listF;
  content: counter(listF, decimal-leading-zero);
  display: block;
  width: 39px;
  height: 42px;
  font-size: 36px;
  font-weight: 300;
  text-align: center;
  color: #eaeaea;
  line-height: 42px;
  position: absolute;
  top: 21px;
  left: 30px;
}

.faq-wrap .item {
  padding: 0 30px 10px 112px;
  border-bottom: 1px solid #e8edee;
  position: relative;
}
.faq-wrap.v2 .item:last-child {
  border-bottom: none;
}

.faq-wrap .question {
  align-items: center;
  padding: 30px 50px 20px 0;
  font-size: 18px;
  font-weight: 600;
  color: #000;
  box-sizing: border-box;
  cursor: pointer;
  position: relative;
}
.faq-wrap .question:before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #d9d9d9;
  position: absolute;
  top: 23px;
  right: 0;
  transition: all 0.3s ease;
}
.faq-wrap .question:after {
  content: "";
  display: block;
  width: 20px;
  height: 10px;
  background: url("data:image/svg+xml;utf8;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMTAiIHZpZXdCb3g9IjAgMCAyMCAxMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE1LjI3OTMgOUwxOC45OTkzIDQuOTk5OTdMMTUuMjc5MyAxIiBzdHJva2U9IndoaXRlIiBzdHJva2Utd2lkdGg9IjEuNSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+CjxwYXRoIGQ9Ik0xIDUuMDAwMDZMMTkgNS4wMDAwNiIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIxLjUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4K");
  background-repeat: no-repeat;
  position: absolute;
  top: 38px;
  right: 10px;
}

.faq-wrap .question:hover:before,
.faq-wrap .item.active .question:before {
  background: #7b7b7b;
}
.faq-wrap .item.active .question:after {
  transform: rotate(90deg);
}

.faq-wrap .ansver {
  display: none;
}
.faq-wrap .ansver p {
  padding-top: 0;
}

.faq-wrap .all {
  padding-top: 40px;
  font-weight: 300;
  text-align: center;
}
.faq-wrap .all a {
  color: #000;
}
.faq-wrap .all a:hover {
  color: #7b7b7b;
}

.form-pre-wrap {
  margin: 50px 0;
  position: relative;
  z-index: 2;
}
.form-pre-wrap:before {
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  background: linear-gradient(263.46deg, #7e7e7e 0%, #b4b4b4 100%);
  position: absolute;
  top: 0;
  left: calc((1300px - 100vw) / 2);
  z-index: -1;
}

.form-wrap {
  width: 100%;
  gap: 100px;
  color: #fff;
}
.form-wrap > div {
  padding: 65px 0 55px 0;
  width: 55%;
}
.form-wrap > div:nth-child(1) {
  padding-bottom: 340px;
  width: 45%;
}
.form-wrap > div:nth-child(1):before {
  content: "";
  display: block;
  width: 107px;
  height: 134px;
  background: url() no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  right: 0;
}
.form-wrap > div:nth-child(2) {
  padding-top: 95px;
}

.form-wrap span {
  display: block;
}
.form-wrap .title {
  padding-bottom: 20px;
  font-size: 36px;
  font-weight: 700;
  line-height: 42px;
}
.form-wrap .text {
  padding-bottom: 25px;
  font-size: 18px;
  line-height: 28px;
}

.form-wrap .contact {
  gap: 40px;
}
.form-wrap .t-cnt > div:nth-child(1) {
  color: #fff;
}
.form-wrap .t-cnt a {
  color: #fff;
}

.form-wrap .people {
  width: 278px;
  height: 325px;
  background: url(../../../../../../local/templates/sp/images/frm-people.png)
    no-repeat;
  background-size: cover;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
}
.form-wrap .people:before {
  content: "";
  display: block;
  width: 220px;
  height: 132px;
  background: url(../../../../../../local/templates/sp/images/frm-arrow.png)
    no-repeat;
  background-size: cover;
  position: absolute;
  bottom: 65px;
  left: 220px;
  z-index: -1;
}
.form-wrap .people .text {
  width: 290px;
  font-size: 16px;
  font-weight: 100;
  font-style: italic;
  line-height: 20px;
  position: absolute;
  top: 50px;
  left: 220px;
  z-index: 4;
}

.form-wrap .row {
  margin-bottom: 50px;
}
.form-wrap .row.end {
  margin-bottom: 30px;
}
.form-wrap .two {
  gap: 20px;
}
.form-wrap .two > div {
  width: 50%;
}
.form-wrap .row input[type="text"],
.form-wrap .row textarea {
  border-color: transparent;
}
.form-wrap .button {
  height: 60px;
  border: 1px solid #fff;
  text-transform: uppercase;
  line-height: 60px;
}
.form-wrap .txt {
  padding-top: 25px;
}
.form-wrap .txt a {
  color: #fff;
}

.form-wrap .file-upload {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 60px;
  border: 1px solid #2f2f2f;
  background: #2f2f2f;
  border-radius: 10px;
  position: relative;
  box-sizing: border-box;
}
.form-wrap .file-upload:hover {
  border: 1px solid #fff;
  background: #7b7b7b;
}
.form-wrap .file-upload:hover svg path {
  fill: #fff;
}
.form-wrap .file-upload input[type="file"] {
  display: none;
}
.form-wrap .file-upload label {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  text-align: center;
  box-sizing: border-box;
  cursor: pointer;
  overflow: hidden;
  line-height: 60px;
}
.form-wrap .file-upload .my-file {
  align-items: center;
  justify-content: center;
  gap: 15px;
  height: 60px;
}
.form-wrap .file-upload .my-file > div {
  height: 25px;
  line-height: 25px;
  text-transform: uppercase;
}
.form-wrap .file-upload .file-name {
  max-width: 270px;
  text-transform: none !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tabs {
  gap: 20px;
  margin: 20px 0 90px 0;
  padding-top: 50px;
  border-top: 1px solid #e6e6e6;
}
.tabs > div {
  width: 100%;
  overflow: hidden;
}
.tabs > div:nth-child(1) {
  padding: 50px 30px 80px 30px;
  min-width: 530px;
  max-width: 530px;
  background: #2f2f2f;
  border-radius: 10px;
  color: #fff;
}
.tabs > div:nth-child(1):before {
  content: "";
  display: block;
  width: 220px;
  height: 220px;
  background: #a9a9a9;
  border-radius: 50%;
  position: absolute;
  bottom: -110px;
  right: -110px;
  z-index: 3;
}
.tabs > div:nth-child(1):after {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  background: #5f5f5f;
  border-radius: 50%;
  position: absolute;
  bottom: 46px;
  right: 130px;
  z-index: 3;
}

.tabs .title {
  padding-bottom: 45px;
  font-size: 36px;
  font-weight: 600;
  line-height: 42px;
}

.tabs .name {
  margin-bottom: 30px;
  align-items: center;
}
.tabs .name > div {
  width: 100%;
  overflow: hidden;
  cursor: pointer;
  z-index: 10;
}
.tabs .name > div:nth-child(1) {
  min-width: 40px;
  max-width: 40px;
  height: 40px;
  text-align: center;
  background: #fff;
  border-radius: 50%;
  line-height: 40px;
  overflow: hidden;
}
.tabs .name > div:nth-child(2) {
  padding-left: 20px;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
}
.tabs .name.active > div:nth-child(1) {
  background: #808080;
}
.tabs .name.active > div:nth-child(2) {
  color: #757575;
}
.tabs .name.active svg path {
  stroke: #fff;
}

.tabs_item {
  display: none;
  line-height: 20px;
}
.tabs_item.active {
  display: block;
}

.tabs_item h2,
.tabs_item h3 {
  padding: 0 0 15px 0;
  color: #b7b7b7;
  line-height: 22px;
}
.tabs_item p {
  margin-top: 10px;
  padding: 0 0 10px 0;
}
.tabs_item ul,
.tabs_item ol {
  padding: 0 0 10px 0;
}

.top-about {
  justify-content: space-between;
  align-items: center;
  margin: 70px 0;
}
.top-about .title {
  font-size: 36px;
  font-weight: 700;
  line-height: 42px;
}

.nav-about {
  gap: 30px;
}
.nav-about > div {
  width: 40px;
  height: 40px;
  background: #fff;
  border: 1px solid #ededed;
  border-radius: 20px;
  text-align: center;
  line-height: 40px;
  overflow: hidden;
  cursor: pointer;
}
.nav-about > div:hover {
  border: 1px solid #717171;
  background: #757575;
}
.nav-about > div:hover path {
  stroke: #fff;
}

.about-slider-wrap {
  margin: 0 calc((1300px - 100vw) / 2) 90px 0;
}

.about-slider .swiper-slide {
  width: 510px;
  height: auto;
}

.about_view {
  width: 510px;
  height: 100%;
  overflow: hidden;
}
.about_view > div:nth-child(1) {
  min-width: 90px;
  max-width: 90px;
  font-size: 80px;
  font-weight: 600;
  text-align: right;
  transform: rotate(180deg);
  writing-mode: vertical-rl;
  line-height: 80px;
}
.about_view > div:nth-child(2) {
  padding-bottom: 300px;
  color: #b0b0b0;
  line-height: 19px;
}
.about_view ul > li:before {
  background: #b0b0b0;
  top: 7px;
}

.about_view .img {
  width: 100%;
  height: 250px;
  border-radius: 20px;
  line-height: 0;
  overflow: hidden;
  position: absolute;
  bottom: 0;
  left: 0;
}
.about_view img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.contacts-block {
  margin: 0 -10px 20px -10px;
  flex-wrap: wrap;
}
.contacts-block > div {
  margin-bottom: 30px;
  padding: 0 10px;
  width: 50%;
}

.contacts-block .block {
  border-radius: 10px;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  overflow: hidden;
}
.contacts-block .fon {
  padding: 45px 40px;
  background: #f8f8f8;
}

.contacts-block .t-cnt {
  margin-bottom: 50px;
}
.contacts-block .t-cnt:last-child {
  margin-bottom: 0;
}
.contacts-block .t-cnt.icon-bg::before {
  top: 7.5px;
}
.contacts-block .t-cnt.icon-bg::after {
  top: 0;
}
.contacts-block .t-cnt > div:nth-child(1) {
  padding-bottom: 14px;
  color: #000;
}
.contacts-block .t-cnt a {
  color: #7b7b7b;
  text-decoration: none;
}

.contacts-block h2 {
  margin-top: 0;
}

.contacts-block img {
  object-fit: cover;
  width: 100%;
}
.contacts-block .photo {
  line-height: 0;
  max-height: 410px;
}
.contacts-block p {
  margin: 7px 0;
  padding: 0;
}

.contacts-form h2,
.contacts-form p {
  text-align: center;
}
.contacts-form .grey {
  color: #9e9e9e;
}

.contacts-form .cnt_form {
  margin: 0 -10px;
  flex-wrap: wrap;
}
.contacts-form .cnt_form > div {
  padding: 0 10px 20px 10px;
  width: calc(100% / 3);
}
.contacts-form .cnt_form .all {
  width: 100%;
  text-align: center;
}
.contacts-form .button {
  margin: 0 auto;
  max-width: 300px;
}
.contacts-form a {
  color: #000;
}
.contacts-form a:hover {
  color: #7b7b7b;
}

.contacts-form input[type="text"],
.contacts-form textarea {
  background: #f5f5f5;
  border: 1px solid #f5f5f5;
}
.contacts-form input[type="text"].error,
.contacts-form textarea.error {
  border: 1px solid #7b7b7b;
}

.events-list {
  flex-wrap: wrap;
  margin: 0 -10px;
}
.events-list > div {
  margin-bottom: 30px;
  padding: 0 10px;
  width: calc(100% / 3);
}
.events-list a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: #000;
}
.events-list a:hover {
  color: #7b7b7b;
}
.events-list .img {
  width: 100%;
  height: 300px;
  border-radius: 10px;
  overflow: hidden;
  line-height: 0;
}
.events-list .img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.events-list .name {
  padding-top: 20px;
  font-size: 24px;
  line-height: 30px;
}

.favorite-list {
  margin: 0 -20px;
}
.favorite-list > div {
  padding: 0 20px;
}
.favorite-list > div:nth-child(1) {
  width: 850px;
}
.favorite-list > div:nth-child(2) {
  padding-top: 36px;
  width: calc(100% - 850px);
}

.favorite-list .right {
  padding: 25px 20px;
  background: #f8f8f8;
  border-radius: 20px;
}
.favorite-list .right .name {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  text-transform: uppercase;
}
.favorite-list .right p {
  padding-bottom: 25px;
}
.favorite-list .right .row {
  margin-bottom: 12px;
}
.favorite-list .right input[type="text"] {
  height: 50px;
  line-height: 50px;
}
.favorite-list .right .button {
  text-transform: uppercase;
}
.favorite-list .right .txt {
  font-size: 12px;
  color: #7b7b7b;
  line-height: 14px;
}
.favorite-list .right .txt a {
  color: #7b7b7b;
}
.favorite-list .right .txt a:hover {
  color: #7b7b7b;
}

.favorite-list .file-upload {
  display: block;
  margin: 25px 0;
  width: 100%;
  height: auto;
  position: relative;
}
.favorite-list .file-upload input[type="file"] {
  display: none;
}
.favorite-list .file-upload label {
  display: block;
  width: 100%;
  text-align: left;
  box-sizing: border-box;
  cursor: pointer;
  overflow: hidden;
}
.favorite-list .file-upload .my-file {
  align-items: center;
  gap: 20px;
  height: 60px;
  color: #7b7b7b;
}
.favorite-list .file-upload .my-file > div {
  max-width: 250px;
  text-decoration: underline;
  line-height: 25px;
}
.favorite-list .file-upload .my-file > div:nth-child(1) {
  min-width: 20px;
  max-width: 20px;
  line-height: 0;
}
.favorite-list .file-upload .file-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-decoration: none !important;
  line-height: 26px !important;
}

.favorite-list .pre-list {
  justify-content: space-between;
  margin-bottom: 20px;
  height: 18px;
  line-height: 18px;
}
.favorite-list .pre-list > div:nth-child(1) {
  padding-left: 20px;
}

.favorite-list .btn {
  cursor: pointer;
}

.favorite-list .delete-all {
  color: #858585;
}
.favorite-list .delete-all:hover {
  color: #7b7b7b;
}
.favorite-list .delete-all:hover path {
  fill: #7b7b7b;
}
.favorite-list .delete-all > span {
  display: inline-block;
  height: 18px;
  vertical-align: top;
}
.favorite-list .delete-all > span:nth-child(1) {
  margin: -1px 5px 0 0;
}

.favorite-list .list {
  padding: 0 20px;
  width: 100%;
  border-radius: 20px;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.06);
  box-sizing: border-box;
}

.favorite-list .list .item-wrap {
  padding: 30px 0;
  border-bottom: 1px solid #e6e6e6;
}
.favorite-list .list .item-wrap:last-child {
  border: none;
}

.favorite-list .item {
  align-items: center;
  height: 150px;
}
.favorite-list .item > div {
  overflow: hidden;
}
.favorite-list .item input[type="checkbox"] + label {
  padding-left: 0;
  position: static;
  display: block;
  width: 20px;
  height: 20px;
}
.favorite-list .item input[type="checkbox"] + label span {
  top: 0;
}
.favorite-list .list .item > div:nth-child(1) {
  width: 20px;
  height: 20px;
}
.favorite-list .list .item > div:nth-child(2) {
  width: 150px;
}
.favorite-list .list .item > div:nth-child(3) {
  padding-right: 30px;
  width: calc(100% - 210px);
}
.favorite-list .list .item > div:nth-child(4) {
  width: 40px;
}

.favorite-list .list .item .middle {
  align-items: center;
}
.favorite-list .list .item .middle > div:nth-child(1) {
  width: calc(100% - 320px);
}
.favorite-list .list .item .middle > div:nth-child(2) {
  padding-right: 30px;
  width: 170px;
}
.favorite-list .list .item .middle > div:nth-child(3) {
  width: 150px;
  color: #000;
  font-size: 22px;
}
.favorite-list .list .item .img {
  justify-content: center;
  align-items: center;
  padding: 15px;
  width: 100%;
  height: 150px;
  box-sizing: border-box;
}
.favorite-list .list .item img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.favorite-list .item .name {
  display: -webkit-box;
  margin-bottom: 7px;
  font-size: 17px;
  font-weight: 700;
  color: #000;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 19px;
}
.favorite-list .item .art {
  margin-bottom: 7px;
  font-size: 15px;
  color: #000;
  text-overflow: ellipsis;
  overflow: hidden;
}
.favorite-list .item .art span {
  color: #858585;
}

.favorite-list .item .button {
  display: inline-block;
  padding: 0 12px;
  width: auto;
  height: 24px;
  font-size: 12px;
  border-radius: 100px;
  line-height: 24px;
}
.favorite-list .item .button.opened {
  background: #000;
}

.favorite-list .item .del {
  padding: 11px 0;
  width: 40px;
  height: 40px;
  background: #ffebeb;
  border-radius: 50%;
  text-align: center;
  box-sizing: border-box;
  line-height: 0;
  cursor: pointer;
}
.favorite-list .item .del:hover {
  background: #ff5050;
}
.favorite-list .item .del:hover path {
  fill: #fff;
}

.col_wrap {
  width: 140px;
  height: 40px;
  line-height: 40px;
  border: 1px solid #e6e6e6;
  border-radius: 100px;
  box-sizing: border-box;
  overflow: hidden;
}
.col_wrap > div {
  display: block;
  width: 100%;
  height: 40px;
  text-align: center;
}
.col_wrap > div:nth-child(1),
.col_wrap > div:nth-child(3) {
  min-width: 40px;
  max-width: 40px;
  font-size: 34px;
  cursor: pointer;
}
.col_wrap input[type="text"] {
  border: none;
  padding: 0;
  height: 40px;
  background: #fff;
  text-align: center;
}
.col_wrap .minus,
.col_wrap .plast {
  -moz-user-select: none;
  -khtml-user-select: none;
  user-select: none;
}
.col_wrap .minus:before {
  content: "";
  display: block;
  width: 16px;
  height: 1px;
  background: #858585;
  position: absolute;
  left: calc(50% - 8px);
  top: 50%;
}
.col_wrap .plast:before {
  content: "";
  display: block;
  width: 16px;
  height: 1px;
  background: #858585;
  position: absolute;
  left: calc(50% - 8px);
  top: 50%;
}
.col_wrap .plast:after {
  content: "";
  display: block;
  width: 1px;
  height: 15px;
  background: #858585;
  position: absolute;
  left: 50%;
  top: calc(50% - 7px);
}

.favorite-list .comment {
  display: none;
  margin-left: 170px;
  padding: 20px;
  background: #f8f8f8;
  border-radius: 10px;
  font-size: 12px;
  line-height: 14px;
}
.favorite-list .comment.active {
  display: block;
}
.favorite-list .comment textarea {
  padding: 0;
  height: auto;
  background: none;
  border: none;
  font-size: 12px;
  font-style: italic;
  line-height: 14px;
}
.favorite-list .comment .addComment {
  font-size: 14px;
  font-weight: 600;
  color: #7b7b7b;
  cursor: pointer;
}

.favorite-list .after-list {
  margin: 30px -15px 0 -15px;
  align-items: center;
}
.favorite-list .after-list > div {
  padding: 0 15px;
  width: 50%;
}
.favorite-list .after-list .code > div {
  padding: 5px 0;
}
.favorite-list .after-list .code input[type="text"] {
  height: 50px;
  background-image: url(../../../../../../local/templates/sp/images/arrow_circle.png);
  background-position: right 15px center;
  background-repeat: no-repeat;
  border-radius: 100px;
  line-height: 50px;
}
.favorite-list .after-list .price-wrap {
  padding: 20px;
  width: 100%;
  border-radius: 20px;
  background: #f8f9fb;
  box-sizing: border-box;
}
.favorite-list .after-list .ns-fx {
  padding: 10px 0;
}
.favorite-list .after-list .ns-fx > div {
  white-space: nowrap;
}
.favorite-list .after-list .ns-fx > div:nth-child(2) {
  width: 100%;
  border-bottom: 1px dotted #858585;
  line-height: 20px;
  overflow: hidden;
}

.favorite-list .after-list .p-price {
  color: #858585;
  line-height: 16px;
}
.favorite-list .after-list .all-price {
  font-size: 22px;
  font-weight: 600;
  color: #000;
  text-transform: uppercase;
  line-height: 22px;
}

.search-page .form {
  gap: 20px;
}
.search-page .form > div {
  display: block;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}
.search-page .form > div:nth-child(2) {
  min-width: 220px;
  max-width: 220px;
}
.search-page input[type="submit"] {
  height: 60px;
}

.search-page .search_result_count {
  padding: 5px 17px;
  font-size: 12px;
  color: #aaa;
}
.search-page .search-language-guess {
  padding: 5px 17px;
  font-style: italic;
}
.search-page .search_results .item_search {
  display: block;
  padding: 20px 0;
  border-bottom: 1px solid #d9d9d9;
}
.search-page .search_results .item_search:last-child {
  border-bottom: none;
}
.search-page .search_results .item_search h3 {
  margin-top: 0;
}
.search-page .search_results .item_search p {
  padding-bottom: 0;
}

.documents {
  flex-wrap: wrap;
  margin: 0 -10px;
}
.documents > div {
  margin-bottom: 25px;
  padding: 0 10px;
  width: 25%;
}
.documents a {
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  width: 100%;
  height: 100%;
  border: 1px solid #e1e1e1;
  border-radius: 10px;
  text-decoration: none;
  box-sizing: border-box;
}
.documents .photo {
  line-height: 0;
}
.documents .name {
  font-weight: 600;
  color: #000;
  text-align: center;
  line-height: 22px;
}
.documents a:hover .name {
  color: #7b7b7b;
}

.popup {
  display: block;
  position: fixed;
  z-index: 90002;
  top: 0;
  left: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  white-space: nowrap;
  text-align: center;
  overflow: auto;
  opacity: 0;
}
.popup:after {
  display: inline-block;
  vertical-align: middle;
  width: 0;
  height: 100%;
  content: "";
}

.popup.fast {
  z-index: 90001;
}

.popup .popup_form {
  position: relative;
  display: inline-block;
  padding-bottom: 40px;
  vertical-align: middle;
  height: auto;
  white-space: normal;
  text-align: left;
  background: #fff;
  border-radius: 20px;
  box-sizing: border-box;
}

.popup .popup_form.v1 {
  width: 860px;
}
.popup .popup_form.v2 {
  width: 1300px;
}
.popup .popup_form .wrp {
  padding: 0 110px;
}

.popup .closeForm {
  position: absolute;
  top: 15px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #2f2f2f;
  cursor: pointer;
  user-select: none;
}
.popup .closeForm.top {
  top: 55px;
}
.popup .closeForm.v2 {
  background: #4a4a4a;
}
.popup .closeForm:hover,
.popup .closeForm.v2:hover {
  background: #7b7b7b;
}
.popup .closeForm:before,
.popup .closeForm:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 24px;
  background: #fff;
}
.popup .closeForm:after {
  transform: translate3d(-50%, -50%, 0) rotate(45deg);
}
.popup .closeForm:before {
  transform: translate3d(-50%, -50%, 0) rotate(-45deg);
}

.popup .name {
  width: 100%;
  height: 70px;
  border-radius: 20px 20px 0 0;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  line-height: 70px;
}
.popup .name.top {
  margin-top: 40px;
}
.popup .name.red {
  font-size: 18px;
  background: #7b7b7b;
  color: #fff;
}
.popup .name.black {
  background: #2f2f2f;
  color: #fff;
}
.popup .name.black span {
  padding: 0 3px;
}
.popup .name.left {
  padding-left: 110px;
  text-align: left;
}

.popup .row {
  margin-top: 30px;
  gap: 20px;
}
.popup .row > div {
  width: 50%;
}
.popup .row input[type="text"],
.popup .row textarea {
  background: #f5f5f5;
  border: 1px solid #f5f5f5;
}
.popup .row input[type="text"].error,
.popup .row textarea.error {
  border: 1px solid #7b7b7b;
}

.pop_up_file_1 .file-upload {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 50px;
  border: 1px solid #2f2f2f;
  background: #2f2f2f;
  border-radius: 10px;
  color: #fff;
  position: relative;
}
.pop_up_file_1 .file-upload:hover {
  border: 1px solid #fff;
  background: #7b7b7b;
}
.pop_up_file_1 .file-upload:hover path {
  fill: #fff;
}
.pop_up_file_1 .file-upload input[type="file"] {
  display: none;
}
.pop_up_file_1 .file-upload label {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  text-align: center;
  box-sizing: border-box;
  cursor: pointer;
  overflow: hidden;
  line-height: 50px;
}
.pop_up_file_1 .file-upload .my-file {
  align-items: center;
  justify-content: center;
  gap: 15px;
  height: 50px;
}
.pop_up_file_1 .file-upload .my-file > div {
  height: 25px;
  line-height: 25px;
}
.pop_up_file_1 .file-upload .my-file .file-name {
  max-width: 270px;
  text-transform: none !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pop-good {
  gap: 20px;
  padding-top: 40px;
}
.pop-good > div:nth-child(1) {
  width: 100%;
  overflow: hidden;
}
.pop-good > div:nth-child(2) {
  padding: 25px;
  min-width: 420px;
  max-width: 420px;
  background: #f8f8f8;
  border-radius: 10px;
}

.pop-good .top {
  padding-bottom: 25px;
  gap: 20px;
}
.pop-good .top > div:nth-child(1) {
  width: 100%;
  overflow: hidden;
}
.pop-good .top > div:nth-child(2) {
  min-width: 100px;
  max-width: 100px;
}

.pop-good .column {
  flex-direction: column;
}

.pop-good .top .title {
  padding-bottom: 7px;
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
}
.pop-good .top .art {
  color: #7b7b7b;
  line-height: 19px;
}

.pop-good .elem-nav {
  gap: 20px;
}
.pop-good .elem-nav > div {
  width: 40px;
  height: 40px;
  border: 1px solid #ededed;
  border-radius: 50%;
  text-align: center;
  line-height: 39px;
  user-select: none;
  cursor: pointer;
}
.pop-good .elem-nav > div:hover {
  background: #7b7b7b;
}
.pop-good .elem-nav > div:hover path {
  stroke: #fff !important;
}

.pop-good .img {
  justify-content: center;
  align-items: center;
  padding: 20px;
  width: 100%;
  min-height: 600px;
  height: auto;
  border: 1px solid #e1e1e1;
  border-radius: 10px;
  box-sizing: border-box;
  overflow: hidden;
}
.pop-good .img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.pop-good .props {
  padding: 25px;
  background: #fff;
  border-radius: 10px;
  box-sizing: border-box;
}
.pop-good .props .title {
  padding-bottom: 5px;
  font-size: 18px;
  font-weight: 600;
  line-height: 18px;
}
.pop-good .props .i-prop {
  padding: 15px 0;
  border-bottom: 1px solid #d9d9d9;
  justify-content: space-between;
  gap: 20px;
}
.pop-good .props .i-prop > div {
  line-height: 20px;
}
.pop-good .props .i-prop > div:nth-child(2) {
  text-align: right;
}
.pop-good .props .i-prop:last-child {
  border-bottom: none;
}

.pop-good .wrp-btn {
  padding-top: 10px;
}
.pop-good .wrp-btn > div {
  margin-top: 20px;
}

.pop-good .favorite {
  background: #fff;
  border: 1px solid #e1e1e1;
  color: #000;
}
.pop-good .favorite.in {
  background: #7b7b7b;
  border: 1px solid #7b7b7b;
  color: #fff;
  cursor: default;
}
.pop-good .favorite.in path {
  fill: #fff;
}
.pop-good .favorite:hover {
  background: #7b7b7b;
  border: 1px solid #7b7b7b;
  color: #fff;
}
.pop-good .favorite:hover path {
  fill: #fff;
}
.pop-good .favorite > span {
  display: inline-block;
  height: 50px;
  vertical-align: top;
}
.pop-good .favorite > span:nth-child(1) {
  margin-right: 7px;
  padding-top: 3.5px;
  height: 46.5px;
}

.pop-favor {
  padding-top: 40px;
  gap: 20px;
}
.pop-favor.v2 {
  padding-top: 20px;
}
.pop-favor > div:nth-child(1) {
  min-width: 310px;
  max-width: 310px;
}
.pop-favor.v2 > div:nth-child(1) {
  min-width: 210px;
  max-width: 210px;
}
.pop-favor > div:nth-child(2) {
  padding-bottom: 140px;
  width: 100%;
  overflow: hidden;
}

.pop-favor .img {
  justify-content: center;
  align-items: center;
  padding: 20px;
  width: 100%;
  height: 310px;
  border: 1px solid #e1e1e1;
  border-radius: 10px;
  box-sizing: border-box;
  overflow: hidden;
}
.pop-favor.v2 .img {
  height: 210px;
}

.pop-favor .img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.pop-favor .title {
  padding-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
}
.pop-favor .art {
  color: #7b7b7b;
  line-height: 19px;
}

.pop-favor .wrp-btn {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.pop-favor .button {
  margin-top: 20px;
  font-size: 14px;
  text-transform: uppercase;
}

.pop-order .file-upload {
  display: block;
  margin: 25px 0;
  width: 100%;
  height: auto;
  position: relative;
}
.pop-order .file-upload input[type="file"] {
  display: none;
}
.pop-order .file-upload label {
  display: block;
  width: 100%;
  text-align: left;
  box-sizing: border-box;
  cursor: pointer;
  overflow: hidden;
}
.pop-order .file-upload .my-file {
  align-items: center;
  gap: 20px;
  height: 50px;
  color: #7b7b7b;
}
.pop-order .file-upload .my-file > div {
  text-decoration: underline;
  line-height: 25px;
}
.pop-order .file-upload .my-file > div:nth-child(1) {
  min-width: 20px;
  max-width: 20px;
  line-height: 0;
}
.pop-order .file-upload .file-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-decoration: none !important;
  line-height: 26px !important;
}

.pop-order .row input[type="text"],
.pop-order .row textarea {
  font-size: 15px;
  background: #fff;
  border: 1px solid #d9d9d9;
}
.pop-order .row input[type="text"] {
  height: 50px;
}
.pop-order .button {
  text-transform: uppercase;
}

.fon_all {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0px;
  left: 0px;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

#loader {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0px;
  left: 0px;
  background: rgba(0, 0, 0, 0.5)
    url(../../../../../../local/templates/sp/images/loader.png) center center
    no-repeat;
  z-index: 9900;
}

@font-face {
  font-family: "Zona Pro";
  src: url("../../../../../../local/templates/sp/fonts/ZonaPro-Regular.eot");
  src: local("fonts/Zona Pro Regular"), local("fonts/ZonaPro-Regular"),
    url("../../../../../../local/templates/sp/fonts/ZonaPro-Regular-1.eot")
      format("embedded-opentype"),
    url("../../../../../../local/templates/sp/fonts/ZonaPro-Regular.woff2")
      format("woff2"),
    url("../../../../../../local/templates/sp/fonts/ZonaPro-Regular.woff")
      format("woff"),
    url("../../../../../../local/templates/sp/fonts/ZonaPro-Regular.ttf")
      format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Zona Pro";
  src: url("../../../../../../local/templates/sp/fonts/ZonaPro-Bold.eot");
  src: local("fonts/Zona Pro Bold"), local("fonts/ZonaPro-Bold"),
    url("../../../../../../local/templates/sp/fonts/ZonaPro-Bold-1.eot")
      format("embedded-opentype"),
    url("../../../../../../local/templates/sp/fonts/ZonaPro-Bold.woff2")
      format("woff2"),
    url("../../../../../../local/templates/sp/fonts/ZonaPro-Bold.woff")
      format("woff"),
    url("../../../../../../local/templates/sp/fonts/ZonaPro-Bold.ttf")
      format("truetype");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "Zona Pro";
  src: url("../../../../../../local/templates/sp/fonts/ZonaPro-Light.eot");
  src: local("fonts/Zona Pro Light"), local("fonts/ZonaPro-Light"),
    url("../../../../../../local/templates/sp/fonts/ZonaPro-Light-1.eot")
      format("embedded-opentype"),
    url("../../../../../../local/templates/sp/fonts/ZonaPro-Light.woff2")
      format("woff2"),
    url("../../../../../../local/templates/sp/fonts/ZonaPro-Light.woff")
      format("woff"),
    url("../../../../../../local/templates/sp/fonts/ZonaPro-Light.ttf")
      format("truetype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Zona Pro";
  src: url("../../../../../../local/templates/sp/fonts/ZonaPro-SemiBold.eot");
  src: local("fonts/Zona Pro SemiBold"), local("fonts/ZonaPro-SemiBold"),
    url("../../../../../../local/templates/sp/fonts/ZonaPro-SemiBold-1.eot")
      format("embedded-opentype"),
    url("../../../../../../local/templates/sp/fonts/ZonaPro-SemiBold.woff2")
      format("woff2"),
    url("../../../../../../local/templates/sp/fonts/ZonaPro-SemiBold.woff")
      format("woff"),
    url("../../../../../../local/templates/sp/fonts/ZonaPro-SemiBold.ttf")
      format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Zona Pro";
  src: url("../../../../../../local/templates/sp/fonts/ZonaPro-Black.eot");
  src: local("fonts/Zona Pro Black"), local("fonts/ZonaPro-Black"),
    url("../../../../../../local/templates/sp/fonts/ZonaPro-Black-1.eot")
      format("embedded-opentype"),
    url("../../../../../../local/templates/sp/fonts/ZonaPro-Black.woff2")
      format("woff2"),
    url("../../../../../../local/templates/sp/fonts/ZonaPro-Black.woff")
      format("woff"),
    url("../../../../../../local/templates/sp/fonts/ZonaPro-Black.ttf")
      format("truetype");
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: "Zona Pro";
  src: url("../../../../../../local/templates/sp/fonts/ZonaPro-ThinItalic.eot");
  src: local("fonts/Zona Pro Thin Italic"), local("fonts/ZonaPro-ThinItalic"),
    url("../../../../../../local/templates/sp/fonts/ZonaPro-ThinItalic-1.eot")
      format("embedded-opentype"),
    url("../../../../../../local/templates/sp/fonts/ZonaPro-ThinItalic.woff2")
      format("woff2"),
    url("../../../../../../local/templates/sp/fonts/ZonaPro-ThinItalic.woff")
      format("woff"),
    url("../../../../../../local/templates/sp/fonts/ZonaPro-ThinItalic.ttf")
      format("truetype");
  font-weight: 100;
  font-style: italic;
}

@font-face {
  font-family: "Zona Pro";
  src: url("../../../../../../local/templates/sp/fonts/ZonaPro-RegularItalic.eot");
  src: local("fonts/Zona Pro Regular Italic"),
    local("fonts/ZonaPro-RegularItalic"),
    url("../../../../../../local/templates/sp/fonts/ZonaPro-RegularItalic-1.eot")
      format("embedded-opentype"),
    url("../../../../../../local/templates/sp/fonts/ZonaPro-RegularItalic.woff2")
      format("woff2"),
    url("../../../../../../local/templates/sp/fonts/ZonaPro-RegularItalic.woff")
      format("woff"),
    url("../../../../../../local/templates/sp/fonts/ZonaPro-RegularItalic.ttf")
      format("truetype");
  font-weight: normal;
  font-style: italic;
}

@media only screen and (max-width: 1340px) {
  .promo .nav-slider {
    left: 20px;
  }
  .main-promo-catalog:before {
    left: -20px;
  }
  .partners-slider-wrap {
    margin: 0 -20px;
  }
  .form-pre-wrap:before {
    left: -20px;
  }
  .about-slider-wrap {
    margin: 0 -20px 90px 0;
  }

  .promo .slide_view > div:nth-child(1) {
    width: 80%;
  }
  .promo .slide_view > div:nth-child(2) {
    width: 60%;
  }

  .news-list .image.big {
    height: auto;
  }

  .search-page input[type="submit"] {
    height: 50px;
  }

  .popup .popup_form {
    padding-bottom: 30px;
  }
  .popup .popup_form.v1 {
    width: 800px;
  }
  .popup .popup_form.v2 {
    width: 1000px;
  }
  .popup .popup_form .wrp {
    padding: 0 50px;
  }
  .popup .closeForm {
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
  }
  .popup .closeForm:before,
  .popup .closeForm:after {
    height: 20px;
  }
  .popup .name {
    height: 60px;
    font-size: 22px;
    line-height: 60px;
  }
  .popup .name.red {
    font-size: 17px;
  }
  .popup .name.left {
    padding-left: 50px;
  }
  .popup .row {
    margin-top: 20px;
  }
  .pop_up_file_1 .file-upload .my-file .file-name {
    max-width: 200px;
  }
  .pop-good {
    padding-top: 30px;
  }
  .pop-good > div:nth-child(2) {
    padding: 20px;
    min-width: 390px;
    max-width: 390px;
  }
  .pop-good .top {
    padding-bottom: 20px;
  }
  .pop-good .top .title {
    font-size: 22px;
    line-height: 24px;
  }
  .pop-good .img {
    padding: 15px;
    min-height: 480px;
  }
  .pop-good .props {
    padding: 20px;
  }
  .pop-good .props .title {
    font-size: 17px;
  }
  .pop-good .props .i-prop {
    padding: 10px 0;
    gap: 15px;
  }
  .pop-good .props .i-prop > div {
    line-height: 18px;
  }
  .pop-good .wrp-btn {
    padding-top: 5px;
  }
  .pop-good .wrp-btn > div {
    margin-top: 15px;
  }
  .pop-favor {
    padding-top: 30px;
  }
  .pop-favor.v2 {
    padding-top: 20px;
  }
  .pop-favor > div:nth-child(1) {
    min-width: 310px;
    max-width: 310px;
  }
  .pop-favor.v2 > div:nth-child(1) {
    min-width: 210px;
    max-width: 210px;
  }
  .pop-favor > div:nth-child(2) {
    padding-bottom: 140px;
  }
  .pop-favor .img {
    padding: 20px;
    height: 310px;
  }
  .pop-favor.v2 .img {
    height: 210px;
  }
  .pop-favor .title {
    padding-bottom: 10px;
    font-size: 18px;
  }
  .pop-favor .button {
    margin-top: 20px;
    font-size: 13px;
  }
  .pop-order .file-upload {
    margin: 15px 0;
  }
}

@media only screen and (max-width: 1200px) {
  .main-promo-catalog {
    padding: 35px 0;
  }
  .swiper-wrapper.section-list {
    margin: 0;
    width: 100%;
    flex-wrap: nowrap;
  }
  .swiper-wrapper.section-list > div {
    padding: 0;
    width: auto;
  }
  .section-list-slider .wrap-cat-slide {
    display: block;
    text-align: center;
  }
  .section-list-slider .wrap-cat-slide a {
    color: #2f2f2f;
    text-decoration: underline;
  }
  .section-list-slider .wrap-cat-slide a:hover {
    color: #7b7b7b;
    text-decoration: none;
  }
  .section-list-slider .nav-slider {
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
  }
  .section-list-slider .btn-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    text-align: center;
    cursor: pointer;
    line-height: 40px;
  }
  .section-list-slider .btn-circle path {
    stroke: #2f2f2f;
  }
  .section-list-slider .btn-circle:hover {
    background: #7b7b7b;
  }
  .section-list-slider .btn-circle:hover path {
    stroke: #fff;
  }

  .section-list > div {
    width: 50%;
  }

  .goods-list > div {
    width: calc(100% / 3);
  }
  .news-list .image.big {
    height: auto;
  }

  .top-list-sect {
    margin: 25px -20px 0 -20px;
    padding-bottom: 10px;
    flex-wrap: nowrap;
    overflow-x: auto;
  }
  .top-list-sect.bottom {
    margin: 70px -20px 0 -20px;
  }

  .top-list-sect > a:nth-child(1) {
    margin-left: 20px;
  }
  .top-list-sect > a:last-child {
    margin-right: 20px;
  }

  .favorite-list {
    margin: 0;
    flex-wrap: wrap;
  }
  .favorite-list > div {
    padding: 0;
  }
  .favorite-list > div:nth-child(1) {
    width: 100%;
  }
  .favorite-list > div:nth-child(2) {
    padding-top: 30px;
    width: 100%;
  }
  .favorite-list .file-upload {
    margin: 20px 0;
  }
  .favorite-list .file-upload .my-file {
    height: 50px;
  }
  .favorite-list .file-upload .my-file > div {
    max-width: inherit;
    overflow: hidden;
  }

  .detail-good .info p {
    padding-top: 0;
  }
  .detail-good .info .wrp-btn {
    margin: 30px 0;
  }
}

@media only screen and (max-width: 1100px) {
  header {
    padding-bottom: 50px;
    background: #fff;
    position: relative;
    z-index: 1010;
  }

  .head {
    height: 90px;
  }
  .head .desctop {
    display: none;
  }
  .head .mobail {
    display: block;
  }
  .head .menu_button {
    cursor: pointer;
  }

  .head-top_wrap {
    padding: 0;
    height: 0;
    background: none;
    position: relative;
    top: -1px;
  }
  .head-top > div {
    display: none;
  }
  .head-top > div:nth-child(2) {
    display: block;
    padding: 0;
    width: calc(100% - 40px);
    position: absolute;
    top: 90px;
    left: 20px;
  }

  .top-search {
    width: 100%;
    background: #f5f5f5;
  }
  .top-search > div:nth-child(2) {
    width: calc(100% - 63px);
  }
  .top-search input[type="text"] {
    color: #2f2f2f;
  }
  .top-search svg path {
    fill: #2f2f2f;
  }

  nav {
    height: auto;
    background: none;
  }
  .menu-desctop > div:nth-child(1),
  .menu-desctop > a {
    display: none;
  }
  .menu-desctop .button {
    width: 100%;
  }

  .menu_button.active {
    transform: rotate(-90deg);
  }
  .menu_button.active path {
    fill: #000;
  }

  .menu-mobail {
    display: none;
    padding: 20px 20px 30px 20px;
    width: 100%;
    height: auto;
    background: #fff;
    box-sizing: border-box;
    position: absolute;
    top: -55px;
    left: 0;
  }
  .menu-mobail .favorite {
    display: block;
    padding-left: 30px;
    width: 200px;
    font-size: 12px;
    color: #000;
    text-decoration: none;
    line-height: 20px;
    white-space: nowrap;
    box-sizing: border-box;
    position: relative;
  }
  .menu-mobail .favorite:before {
    background-position: -100px 0;
    position: absolute;
    left: 0;
  }
  .menu-mobail .favorite:hover {
    color: #7b7b7b;
  }

  .tabs-menu {
    padding-top: 20px;
  }
  .tabs-menu .tabs-item {
    display: none;
  }
  .tabs-menu .tabs-item.active {
    display: block;
  }

  .menu_sect {
    padding: 5px;
    height: 40px;
    background: #2f2f2f;
    border-radius: 10px;
  }
  .menu_sect .name {
    width: 50%;
    height: 40px;
    color: #fff;
    text-align: center;
    border-radius: 10px;
    line-height: 40px;
    cursor: pointer;
  }
  .menu_sect .name.active {
    background: #7b7b7b;
  }

  .tabs-menu .tabs-item > div {
    margin-top: 30px;
  }
  .tabs-menu .tabs-item .link {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    line-height: 19px;
  }
  .tabs-menu .tabs-item .link:hover,
  .tabs-menu .tabs-item .link.active {
    color: #7b7b7b;
  }

  .tabs-menu .tabs-item .itemName {
    align-items: center;
  }
  .tabs-menu .tabs-item .itemName .open-nxt {
    padding-left: 14px;
    width: 29px;
    height: 19px;
    cursor: pointer;
  }

  .tabs-menu .tabs-item .open-nxt:after,
  .tabs-menu .tabs-item .child-view:after {
    content: "";
    display: block;
    margin: 2px 0 0 10px;
    border: 5px solid transparent;
    border-top: 5px solid #bbbbbb;
    position: absolute;
    top: 7px;
    right: 4px;
  }
  .tabs-menu .tabs-item .open-nxt.c_open:after,
  .tabs-menu .tabs-item .child-view.c_open:after {
    border: 5px solid transparent;
    border-bottom: 5px solid #7b7b7b;
    top: 0;
  }

  .tabs-menu .tabs-item ul {
    padding: 0;
  }
  .tabs-menu .tabs-item div > ul {
    padding-top: 5px;
    display: none;
  }
  .tabs-menu .tabs-item li {
    padding: 15px 0 0 0;
    font-size: 16px;
    line-height: 19px;
  }
  .tabs-menu .tabs-item li:before {
    display: none;
  }

  .tabs-menu .tabs-item li a {
    color: #4b4b4b;
    text-decoration: none;
  }

  .tabs-menu .tabs-item .child a {
    font-weight: 300;
    color: #787878;
  }

  .tabs-menu .tabs-item li a:hover,
  .tabs-menu .tabs-item .child a:hover,
  .tabs-menu .tabs-item li a.active,
  .tabs-menu .tabs-item .child a.active {
    color: #7b7b7b;
  }

  .tabs-menu .tabs-item .child {
    display: none;
  }

  .tabs-menu .adres span {
    display: block;
  }

  .bottom-nav {
    padding: 0 30px;
  }

  .form-wrap {
    flex-wrap: wrap;
    padding: 30px 0;
    box-sizing: border-box;
    gap: 10px;
  }
  .form-wrap > div {
    padding: 0;
    width: 100%;
  }
  .form-wrap > div:nth-child(1) {
    padding-bottom: 0;
    width: 100%;
  }

  .form-wrap > div:nth-child(1):before {
    display: none;
  }
  .form-wrap > div:nth-child(2) {
    padding-top: 30px;
  }

  .form-wrap span {
    display: inline;
  }
  .form-wrap .title {
    text-align: center;
  }
  .form-wrap .text {
    text-align: center;
  }

  .form-wrap .contact {
    justify-content: center;
  }
  .form-wrap .people,
  .form-wrap .people:before,
  .form-wrap .people .text {
    display: none;
  }

  .form-wrap .row {
    margin-bottom: 20px;
  }
  .form-wrap .row.end {
    margin-bottom: 20px;
  }
  .form-wrap .button {
    height: 50px;
    line-height: 50px;
  }
  .form-wrap .txt {
    padding-top: 20px;
    text-align: center;
  }
  .form-wrap .file-upload {
    height: 50px;
  }
  .form-wrap .file-upload label {
    height: 50px;
    line-height: 50px;
  }
  .form-wrap .file-upload .my-file {
    height: 50px;
  }
  .form-wrap .file-upload .my-file > div {
    height: 25px;
    line-height: 25px;
    text-transform: uppercase;
  }
  .form-wrap .file-upload .file-name {
    max-width: 270px;
    text-transform: none !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .detail-good .photo > a img {
    max-width: 100%;
    max-height: 100%;
  }

  .documents > div {
    width: calc(100% / 3);
  }

  .news-list .title {
    font-size: 20px;
    line-height: 24px;
  }
}

@media only screen and (max-width: 1024px) {
  .promo-slide {
    height: auto;
    background-image: url("/111.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  }
  .promo {
    padding: 30px 20px 100px 20px;
    height: auto;
  }
  .promo .slide_view .text-top {
    font-size: 16px;
  }
  .promo .slide_view .title {
    font-size: 34px;
    line-height: 42px;
  }
  .promo .slide_view .text {
    font-size: 20px;
    line-height: 28px;
  }
  .promo .nav-slider {
    bottom: 120px;
  }

  .footer .line:nth-child(1) {
    display: none;
  }

  .footer .line > div:nth-child(1) {
    min-width: 280px;
    max-width: 2800px;
  }
  .footer .line > div:nth-child(2) {
    padding: 0 0 0 20px;
  }
  .footer .line > div:nth-child(3) {
    display: none;
  }

  .bottom-nav {
    padding: 0;
    gap: 20px;
  }

  main {
    margin: 0 auto 50px auto;
  }

  .main-promo-catalog {
    padding: 0 0 35px 0;
  }

  .news-list > a {
    width: 50%;
  }
  .news-list.v2 > a:nth-child(3) {
    display: none;
  }

  .tabs {
    margin: 20px 0 50px 0;
    flex-wrap: wrap;
  }
  .tabs > div:nth-child(1) {
    padding: 50px 30px 80px 30px;
    min-width: inherit;
    max-width: inherit;
    width: 100%;
  }
  .tabs > div:nth-child(1):before {
    content: "";
    display: block;
    width: 220px;
    height: 220px;
    background: #9a9a9a;
    border-radius: 50%;
    position: absolute;
    bottom: -110px;
    right: -110px;
    z-index: 3;
  }
  .tabs > div:nth-child(1):after {
    content: "";
    display: block;
    width: 32px;
    height: 32px;
    background: #848484;
    border-radius: 50%;
    position: absolute;
    bottom: 46px;
    right: 130px;
    z-index: 3;
  }

  .tabs .title {
    padding-bottom: 45px;
    font-size: 36px;
    font-weight: 600;
    line-height: 42px;
  }

  .tabs .name {
    margin-bottom: 30px;
    align-items: center;
  }
  .tabs .name > div {
    width: 100%;
    overflow: hidden;
    cursor: pointer;
    z-index: 10;
  }
  .tabs .name > div:nth-child(1) {
    min-width: 40px;
    max-width: 40px;
    height: 40px;
    text-align: center;
    background: #fff;
    border-radius: 50%;
    line-height: 40px;
    overflow: hidden;
  }
  .tabs .name > div:nth-child(2) {
    padding-left: 20px;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
  }
  .tabs .name.active > div:nth-child(1) {
    background: #909090;
  }
  .tabs .name.active > div:nth-child(2) {
    color: #898989;
  }
  .tabs .name.active svg path {
    stroke: #fff;
  }

  .tabs_item {
    display: none;
    line-height: 20px;
  }
  .tabs_item.active {
    display: block;
  }
  .tabs_item h2,
  .tabs_item h3 {
    padding: 0 0 15px 0;
    color: #7b7b7b;
    line-height: 22px;
  }
  .tabs_item p {
    padding: 10px 0;
  }
  .tabs_item ul,
  .tabs_item ol {
    padding: 0 0 10px 0;
  }

  .about-slider-wrap {
    margin: 0 -20px 50px 0;
  }

  .about-slider .swiper-slide {
    width: auto;
  }
  .about_view {
    width: 330px;
    flex-direction: column;
  }

  .about_view > div:nth-child(1) {
    order: 2;
    min-width: inherit;
    max-width: inherit;
    width: 100%;
    font-size: 36px;
    text-align: left;
    transform: none;
    writing-mode: horizontal-tb;
    line-height: 36px;
    position: static;
  }
  .about_view > div:nth-child(2) {
    order: 1;
    padding-bottom: 0;
    line-height: 19px;
  }

  .about_view .date {
    position: absolute;
    top: 160px;
  }

  .about_view .info {
    display: flex;
    flex-direction: column;
  }
  .about_view .info > ul {
    display: block;
    order: 2;
  }
  .about_view .info > div {
    order: 1;
  }

  .about_view .img {
    margin-bottom: 60px;
    height: 150px;
    position: static;
  }

  .faq-wrap {
    margin: 50px 0;
  }

  .goods-list .img > div img {
    max-width: 100%;
  }

  .detail-good .info .wrp-btn {
    flex-wrap: wrap;
  }
  .detail-good .info .wrp-btn > div:nth-child(1) {
    order: 2;
  }
  .detail-good .info .wrp-btn > div:nth-child(2) {
    order: 1;
  }

  .rew-item {
    gap: 20px;
  }
  .rew-item > div:nth-child(1) {
    padding: 0 10px;
    min-width: 250px;
    max-width: 250px;
  }

  .contacts-block > div {
    margin-bottom: 20px;
    width: 100%;
  }

  .events-list > div {
    width: 50%;
  }

  .popup {
    padding: 20px 0;
    box-sizing: border-box;
  }
  .popup .popup_form.v1б .popup .popup_form.v2 {
    width: 768px;
  }

  .pop-good {
    flex-wrap: wrap;
  }
  .pop-good > div:nth-child(1) {
    width: 100%;
  }
  .pop-good > div:nth-child(2) {
    padding: 25px;
    min-width: inherit;
    max-width: inherit;
    width: 100%;
  }

  .pop-good .column > div:nth-child(1) {
    order: 2;
  }
  .pop-good .column > div:nth-child(2) {
    order: 1;
  }

  .pop-good .img {
    padding: 10px;
    min-height: inherit;
    height: 250px;
  }
  .pop-good .img > div {
    height: 228px;
    overflow: hidden;
  }

  .pop-good .top {
    flex-wrap: wrap;
  }
  .pop-good .top > div:nth-child(1) {
    padding-top: 20px;
    text-align: center;
  }
  .pop-good .top > div:nth-child(2) {
    min-width: inherit;
    max-width: inherit;
    width: 100%;
  }

  .pop-good .elem-nav {
    justify-content: center;
  }

  .pop-good .props .title {
    padding-bottom: 0;
    cursor: pointer;
  }
  .pop-good .props .title:after {
    content: "";
    display: inline-block;
    margin: 2px 0 0 10px;
    border: 5px solid transparent;
    border-top: 5px solid #7b7b7b;
    vertical-align: middle;
  }
  .pop-good .props .title.open:after {
    margin: 0 0 5px 10px;
    border: 5px solid transparent;
    border-bottom: 5px solid #bbbbbb;
    vertical-align: middle;
  }

  .pop-good .wrp-props {
    display: none;
  }
}

@media only screen and (max-width: 900px) {
  .detail-good .info .wr-ph {
    display: none;
  }
  .detail-good .info .photos {
    display: none;
  }
}

@media only screen and (max-width: 800px) {
  .promo .slide_view {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
  .promo .slide_view > div:nth-child(1) {
    width: 80%;
  }
  .promo .slide_view > div:nth-child(2) {
    padding: 20px 0;
    width: 100%;
    text-align: center;
  }
  .promo .slide_view .wrp-btn {
    max-width: inherit;
  }
  .promo .slide_view .button {
    margin: 0 auto;
    max-width: 300px;
    color: #000;
  }
  .promo .nav-slider {
    display: none;
  }

  .main-promo-catalog .top-catalog p span {
    display: inline;
  }

  .swiper-wrapper.section-list > div,
  .section-list > div {
    padding-bottom: 130px;
  }
  .section-list .item {
    padding: 25px;
    overflow: visible;
  }
  .section-list .txt {
    text-align: center;
    font-size: 20px;
    line-height: 26px;
  }
  .section-list .name {
    padding: 25px 0 10px 0;
  }

  .section-list .bottom {
    flex-wrap: wrap;
    height: 90px;
    bottom: -110px;
    z-index: 5;
  }
  .section-list .bottom > div {
    width: 100%;
    height: 40px;
    font-size: 14px;
    border-radius: 10px;
    line-height: 40px;
    overflow: hidden;
  }
  .section-list .bottom a {
    height: 40px;
  }

  .goods-list > div {
    width: 50%;
  }

  .detail-good {
    flex-wrap: wrap;
    gap: 20px;
  }
  .detail-good > div {
    padding: 0;
    width: 100%;
  }

  .detail-good .photo {
    padding: 10px;
    height: 350px;
  }
  .detail-good .photo > div {
    max-height: 100%;
    overflow: hidden;
  }
  .detail-good .photo a img {
    max-width: 100%;
    max-height: 330px;
  }

  .faq-wrap .faq-list {
    padding-bottom: 25px;
  }
  .faq-wrap .item {
    padding: 0 20px 10px 80px;
  }
  .faq-wrap .title {
    font-size: 30px;
    line-height: 36px;
  }

  .faq-wrap .item::before {
    width: 35px;
    height: 42px;
    font-size: 30px;
    left: 20px;
  }

  .faq-wrap .question {
    padding: 30px 50px 20px 0;
    font-size: 16px;
  }
  .faq-wrap .question::before {
    width: 30px;
    height: 30px;
    top: 23px;
  }
  .faq-wrap .question::after {
    width: 20px;
    height: 10px;
    top: 33px;
    right: 5px;
  }

  .pre-crumbs {
    margin: 10px 0 40px 0;
  }

  .wrpap-dop-news .top-title {
    font-size: 30px;
    line-height: 36px;
  }

  .news-list .title {
    font-size: 18px;
    line-height: 22px;
  }

  .documents > div {
    width: 50%;
  }

  .tabs {
    margin: 20px 0 50px 0;
    padding-top: 30px;
  }
  .tabs > div:nth-child(1) {
    padding: 30px 20px 15px 20px;
  }

  .tabs > div:nth-child(1):before,
  .tabs > div:nth-child(1):after {
    display: none;
  }

  .tabs .title {
    padding-bottom: 40px;
    font-size: 30px;
    line-height: 36px;
  }

  .tabs .name {
    margin-bottom: 30px;
    align-items: center;
  }
  .tabs .name > div {
    width: 100%;
    overflow: hidden;
    cursor: pointer;
    z-index: 10;
  }
  .tabs .name > div:nth-child(1) {
    min-width: 40px;
    max-width: 40px;
    height: 40px;
    text-align: center;
    background: #fff;
    border-radius: 50%;
    line-height: 40px;
    overflow: hidden;
  }
  .tabs .name > div:nth-child(2) {
    padding-left: 20px;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
  }

  .tabs .name.active > div:nth-child(1) {
    background: #707070;
  }
  .tabs .name.active > div:nth-child(2) {
    color: #6d6d6d;
  }
  .tabs .name.active svg path {
    stroke: #fff;
  }

  .top-about .title {
    font-size: 30px;
    line-height: 36px;
  }

  .contacts-block .t-cnt {
    margin-bottom: 30px;
  }
  .contacts-block .t-cnt > div:nth-child(1) {
    padding-bottom: 10px;
  }

  .events-list .name {
    font-size: 20px;
    line-height: 26px;
  }

  .news-list .image {
    margin-bottom: 15px;
  }

  .partners-page > div {
    width: calc(100% / 3);
  }

  .favorite-list .list .item .middle {
    flex-wrap: wrap;
  }
  .favorite-list .list .item .middle > div:nth-child(1) {
    width: 100%;
  }
  .favorite-list .list .item .middle > div:nth-child(2) {
    margin-top: 20px;
  }
  .favorite-list .list .item .middle > div:nth-child(3) {
    margin-top: 20px;
  }

  .favorite-list .comment.active {
    margin-top: 10px;
  }

  .favorite-list .after-list .all-price {
    font-size: 18px;
  }

  .popup .popup_form.v1,
  .popup .popup_form.v2 {
    width: 640px;
  }
  .popup .popup_form .wrp {
    padding: 0 20px;
  }

  .pop-favor > div:nth-child(1) {
    min-width: 270px;
    max-width: 270px;
  }
  .pop-favor .img {
    padding: 10px;
    height: 270px;
  }

  .popup .name.left {
    padding-left: 20px;
  }
}

@media only screen and (max-width: 720px) {
  .footer .line {
    flex-wrap: wrap;
  }
  .footer .line > div:nth-child(1) {
    margin-bottom: 45px;
    min-width: inherit;
    max-width: inherit;
    width: 100%;
  }
  .footer .line > div:nth-child(2) {
    padding: 0;
    width: 100%;
  }

  .bottom-wrap .bottom {
    flex-wrap: wrap;
    gap: 15px;
    padding: 20px 0;
    height: auto;
    justify-content: center;
  }
  .bottom-wrap .bottom > div {
    width: 100%;
    text-align: center;
  }
  .bottom-wrap .bottom > div:nth-child(1) {
    order: 2;
  }
  .bottom-wrap .bottom > div:nth-child(2) {
    order: 1;
  }

  .pre-crumbs {
    justify-content: center;
    height: auto;
  }
  .pre-crumbs > div:nth-child(1) {
    display: none;
  }
  .top-back-link {
    padding-left: 0;
  }

  .top-catalog {
    text-align: center;
  }

  .wrap_partners {
    margin-top: 45px;
  }
  .wrap_partners .top > div:nth-child(1) {
    font-size: 30px;
    line-height: 36px;
  }
  .wrap_partners .top > div:nth-child(2) {
    display: none;
  }

  .news-list.v2 > a:nth-child(2) {
    display: none;
  }
  .news-list > a {
    width: 100%;
    text-align: center;
  }
  .news-list .link {
    width: calc(100% - 20px);
  }
  .news-list.v2 .link {
    display: none;
  }

  .wrpap-dop-news {
    position: relative;
    margin-top: 40px;
  }
  .wrpap-dop-news .top-title {
    text-align: center;
  }
  .wrpap-dop-news .top-lnk {
    position: absolute;
    bottom: 5px;
    width: calc(100% - 20px);
    font-size: 16px;
  }
  .wrpap-dop-news .top-lnk > div:nth-child(1) {
    display: none;
  }
  .wrpap-dop-news .top-lnk > div:nth-child(2) {
    padding-bottom: 15px;
    width: 100%;
    text-align: center;
  }

  .form-wrap .title {
    font-size: 30px;
    line-height: 36px;
  }
  .form-wrap .text {
    font-size: 16px;
    line-height: 24px;
  }

  .top-about {
    margin: 40px 0;
  }
  .top-about > div:nth-child(2) {
    display: none;
  }

  .documents a {
    padding: 10px;
  }

  .rew-item > div:nth-child(1) {
    padding: 0;
    min-width: 200px;
    max-width: 200px;
  }

  .contacts-block .fon {
    padding: 25px 20px;
  }

  .events-list .img {
    height: 250px;
  }

  .favorite-list .after-list {
    flex-wrap: wrap;
    gap: 10px;
  }
  .favorite-list .after-list > div {
    width: 100%;
  }

  .popup .popup_form.v1,
  .popup .popup_form.v2 {
    width: 590px;
  }
  .popup .popup_form .wrp {
    padding: 0 20px;
  }

  .pop-favor > div:nth-child(1) {
    min-width: 200px;
    max-width: 200px;
  }
  .pop-favor .img {
    padding: 10px;
    height: 220px;
  }
}

@media only screen and (max-width: 600px) {
  .promo .slide_view > div:nth-child(1) {
    width: 70%;
  }
  .promo .slide_view .title {
    font-size: 24px;
    line-height: 28px;
    color: #000;
    
  }
  .promo .slide_view .text {
    font-size: 16px;
    line-height: 18px;
  }

  .after-slider .name {
    padding: 20px 0 15px 0;
    font-size: 18px;
    line-height: 21px;
  }

  .section-list-slider .nav-slider {
    margin: 5px 0 20px 0;
  }

  .wrap_partners .top > div:nth-child(1) {
    font-size: 24px;
    line-height: 28px;
  }

  .faq-wrap .title {
    font-size: 24px;
    line-height: 28px;
  }
  .faq-wrap .bg-wrap {
    margin-top: 10px;
  }
  .faq-wrap .bg-wrap::before {
    display: none;
  }
  .faq-wrap .bg-wrap .bg-1 {
    display: none;
  }
  .faq-wrap .item::before {
    display: none;
  }
  .faq-wrap .item {
    padding: 0 20px 10px 20px;
  }

  .form-wrap .title {
    font-size: 24px;
    line-height: 28px;
  }

  .form-wrap .t-cnt {
    padding-left: 0;
    text-align: center;
  }
  .form-wrap .t-cnt.icon-bg::before,
  .t-cnt.icon-bg::after {
    display: none;
  }
  .form-wrap .t-cnt > div:nth-child(1) {
    font-size: 16px;
    line-height: 22px;
  }

  .form-wrap .row {
    margin-bottom: 10px;
  }
  .form-wrap .two {
    flex-wrap: wrap;
    gap: 0;
  }
  .form-wrap .two > div {
    width: 100%;
  }
  .form-wrap .two .button {
    margin-top: 10px;
  }

  .wrpap-dop-news .top-title {
    font-size: 24px;
    line-height: 28px;
  }

  .tabs {
    gap: 10px;
  }
  .tabs_item h2,
  .tabs_item h3 {
    padding-bottom: 0;
  }

  .tabs .name {
    margin-bottom: 20px;
  }
  .tabs .name > div:nth-child(1) {
    min-width: 30px;
    max-width: 30px;
    height: 30px;
    line-height: 30px;
  }
  .tabs .name > div:nth-child(2) {
    font-size: 16px;
    line-height: 20px;
  }
  .tabs .name svg {
    width: 17px;
  }

  .pre-crumbs {
    margin: 0 0 30px 0;
  }

  .wrp_h1 {
    margin-bottom: 25px;
  }

  .documents > div {
    width: 100%;
  }

  .top-list-text {
    margin-top: -10px;
  }

  .section-list > div {
    width: 100%;
  }

  .goods-list {
    gap: 25px;
  }
  .goods-list > div {
    margin-top: 0;
    width: 100%;
  }
  .goods-list .img {
    padding: 15px;
    height: 270px;
  }
  .goods-list .img > div img {
    max-height: 240px;
  }

  .sect-bot-text.fon {
    padding: 20px 15px;
  }

  .detail-good .photo {
    height: 300px;
  }
  .detail-good .photo a img {
    max-height: 280px;
  }

  .detail-good .info {
    padding: 20px;
  }

  .detail-good .info .title {
    font-size: 18px;
    line-height: 21px;
  }
  .detail-good .info .aricle {
    font-size: 15px;
  }

  .detail-good .info hr {
    margin: 20px 0;
  }

  .detail-good .info .wrp-btn {
    margin: 20px 0 0 0;
  }

  .sect-bot-text,
  .sect-bot-props {
    margin-top: 40px;
  }

  .rew-item > div:nth-child(1) {
    min-width: 150px;
    max-width: 150px;
  }
  .rew-item h2 {
    margin-top: 0;
    font-size: 18px;
    line-height: 21px;
  }

  .contacts-form .cnt_form > div {
    margin-top: 10px;
    padding: 0 10px;
    width: 100%;
  }

  .events-list > div {
    width: 100%;
  }
  .events-list .img {
    height: 230px;
  }
  .events-list .name {
    padding-top: 15px;
    font-size: 18px;
    line-height: 22px;
  }

  .pre-news {
    display: none;
  }

  .news-list .image.big {
    height: auto;
  }

  .partners-page > div {
    width: 50%;
  }

  .search-page .form {
    gap: 10px;
  }
  .search-page .form > div:nth-child(2) {
    min-width: 120px;
    max-width: 120px;
  }

  .search-page .search_result_count {
    padding: 5px;
  }
  .search-page .search-language-guess {
    padding: 5px;
  }

  .favorite-list .list {
    padding: 0 10px;
  }
  .favorite-list .item {
    align-items: flex-start;
    height: auto;
  }

  .favorite-list .list .item-wrap {
    padding: 20px 0;
  }
  .favorite-list .list .item {
    position: relative;
  }
  .favorite-list .list .item > div:nth-child(1) {
    margin-top: 10px;
  }
  .favorite-list .list .item > div:nth-child(2) {
    width: 100px;
  }
  .favorite-list .list .item > div:nth-child(3) {
    padding-right: 0;
    width: calc(100% - 110px);
  }
  .favorite-list .list .item > div:nth-child(4) {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 0;
    right: 0;
  }
  .favorite-list .list .item .img {
    align-items: flex-start;
    padding: 0 10px;
  }

  .favorite-list .item .del {
    padding: 6px 0;
    width: 30px;
    height: 30px;
  }
  .favorite-list .item .name {
    padding-right: 40px;
  }

  .favorite-list .list .item .middle > div:nth-child(2) {
    padding-right: 20px;
  }
  .favorite-list .list .item .middle > div:nth-child(3) {
    width: 110px;
    font-size: 18px;
  }

  .favorite-list .comment {
    margin-left: 0;
    padding: 10px;
  }

  .after-slider.cnt {
    margin-top: 50px;
  }

  .popup .popup_form {
    border-radius: 0;
  }

  .popup .popup_form.v1,
  .popup .popup_form.v2 {
    width: 100%;
  }

  .popup .name {
    padding-left: 20px;
    height: 50px;
    border-radius: 0;
    font-size: 20px;
    text-align: left;
    line-height: 50px;
  }
  .popup .name.top {
    margin: 30px 0 10px 0;
    padding-left: 0;
    text-align: center;
  }

  .popup .row {
    margin-top: 10px;
  }

  .popup .closeForm {
    top: 10px;
  }
  .popup .closeForm.top {
    top: 40px;
  }

  .pop-favor > div:nth-child(1) {
    min-width: 140px;
    max-width: 140px;
  }
  .pop-favor .img {
    padding: 7px;
    height: 140px;
  }

  .popup .row.ns-fx {
    flex-wrap: wrap;
    gap: 10px;
  }

  .popup .row > div {
    width: 100%;
  }
}

@media only screen and (max-width: 414px) {
  .promo .slide_view > div:nth-child(1) {
    width: 100%;
    
  }

  .form-wrap .contact {
    flex-wrap: wrap;
    gap: 15px;
  }
  .form-wrap .contact > div {
    width: 100%;
  }

  .rew-item {
    flex-wrap: wrap;
  }
  .rew-item > div:nth-child(1) {
    min-width: inherit;
    max-width: inherit;
    width: 100%;
    text-align: center;
  }

  .contacts-block .fon {
    padding: 15px 10px;
  }
  .contacts-form .button {
    max-width: inherit;
  }

  .wrp_h1 {
    flex-wrap: wrap;
  }
  .wrp_h1 > div:nth-child(1) {
    width: 100%;
  }
  .wrp_h1 > div:nth-child(2) {
    padding: 0;
  }
  .wrp_h1 .item-date {
    margin-top: 20px;
    margin-bottom: -15px;
  }

  .popup .name {
    font-size: 18px;
  }

  .pop-good > div:nth-child(2) {
    padding: 15px;
  }

  .pop-favor {
    flex-wrap: wrap;
  }
  .pop-favor > div:nth-child(1) {
    min-width: inherit;
    max-width: inherit;
    width: 100%;
  }
  .pop-favor .img img {
    max-height: 140px;
  }

  .pop-favor.v2 > div:nth-child(1) {
    min-width: inherit;
    max-width: inherit;
    width: 100%;
  }
  .pop-favor.v2 > div:nth-child(2) {
    padding-bottom: 20px;
  }

  .pop-favor.v2 .img {
    height: 160px;
  }
}

@media only screen and (max-width: 360px) {
  .about_view {
    width: 300px;
  }

  .partners-page > div {
    width: 100%;
  }

  .favorite-list .after-list .price-wrap {
    padding: 15px;
  }
  .favorite-list .right {
    padding: 20px 10px;
  }

  .favorite-list .pre-list > div:nth-child(1) {
    padding-left: 0;
  }

  .wrapper input[type="checkbox"] + label {
    padding-left: 30px;
  }
  .wrapper input[type="checkbox"] + label div {
    max-width: calc(100% - 30px);
  }

  .favorite-list .list .item > div:nth-child(1) {
    margin-top: 10px;
  }
  .favorite-list .list .item > div:nth-child(2) {
    display: none;
  }
  .favorite-list .list .item > div:nth-child(3) {
    padding-left: 15px;
    width: calc(100% - 20px);
  }
  .favorite-list .list .item > div:nth-child(4) {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 0;
    right: 0;
  }
}

@media only screen and (max-width: 320px) {
  .head {
    padding: 0 15px;
  }
  .menu-mobail {
    padding: 20px 15px 30px 15px;
  }
  .head-top > div:nth-child(2) {
    width: calc(100% - 30px);
    left: 15px;
  }

  nav {
    padding: 0 15px;
  }

  .promo {
    padding: 30px 15px 100px 15px;
  }

  .after-slider {
    padding: 0 15px 50px 15px !important;
  }

  .footer {
    padding: 40px 15px;
  }
  .bottom-wrap {
    padding: 0 15px;
  }

  main {
    padding: 0 15px;
  }

  .main-promo-catalog::before {
    left: -15px;
  }
  .form-pre-wrap::before {
    left: -15px;
  }

  .section-list .item {
    padding: 15px;
  }

  .tabs > div:nth-child(1) {
    padding: 25px 15px 15px 15px;
  }
  .tabs .name > div:nth-child(2) {
    font-size: 15px;
    line-height: 19px;
  }

  .about_view {
    width: 270px;
  }

  .popup .name {
    font-size: 16px;
  }
}

@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-pointer-events {
  touch-action: pan-y;
}
.swiper-pointer-events.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  
}
.swiper-3d,
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(
    to left,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}
.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}
.swiper-centered.swiper-horizontal
  > .swiper-wrapper
  > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}
.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}
.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
}
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}
.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}
.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}
.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}
:root {
  --swiper-navigation-size: 44px;
}
.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-next.swiper-button-hidden,
.swiper-button-prev.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}
.swiper-navigation-disabled .swiper-button-next,
.swiper-navigation-disabled .swiper-button-prev {
  display: none !important;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}
.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev";
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "next";
}
.swiper-button-lock {
  display: none;
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}
.swiper-pagination-bullet {
  width: var(
    --swiper-pagination-bullet-width,
    var(--swiper-pagination-bullet-size, 8px)
  );
  height: var(
    --swiper-pagination-bullet-height,
    var(--swiper-pagination-bullet-size, 8px)
  );
  display: inline-block;
  border-radius: 50%;
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet:only-child {
  display: none !important;
}
.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}
.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-vertical
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet,
.swiper-vertical
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  display: inline-block;
  transition: 0.2s transform, 0.2s top;
}
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}
.swiper-horizontal
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-horizontal
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s left;
}
.swiper-horizontal.swiper-rtl
  > .swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s right;
}
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}
.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}
.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
.swiper-vertical
  > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}
.swiper-horizontal
  > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-vertical > .swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-lock {
  display: none;
}
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}
.swiper-scrollbar-disabled > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}
.swiper-horizontal > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}
.swiper-scrollbar.swiper-scrollbar-vertical,
.swiper-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}
.swiper-scrollbar-cursor-drag {
  cursor: move;
}
.swiper-scrollbar-lock {
  display: none;
}
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.swiper-zoom-container > canvas,
.swiper-zoom-container > img,
.swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.swiper-slide-zoomed {
  cursor: move;
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}
.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}
.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}
.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}
.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}
.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}
.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-fade .swiper-slide-active,
.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-cube {
  overflow: visible;
}
.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}
.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}
.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-next + .swiper-slide,
.swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}
.swiper-cube .swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-right,
.swiper-cube .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}
.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}
.swiper-flip {
  overflow: visible;
}
.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}
.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-flip .swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-right,
.swiper-flip .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}
.swiper-cards {
  overflow: visible;
}
.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}
