@charset "UTF-8";
@import "stylesheet.css";
@import "stylesheet_1.css";
:root {
  --cl-light: #ffffff;
  --cl-void: #000000;
  --cl-void-04: rgba(0, 0, 0, 0.4);
  --cl-abyss: #141414;
  --cl-shadow: #1e1e1e;
  --cl-echo: #3c3c3c;
  --cl-drift: #6b6b6b;
  --cl-haze: #999999;
  --cl-light-haze: #d7d7d7;
  --cl-accent: #0b413b;
  --cl-warning: #fb2b2b;
  --cl-success: #15ad36;
  --desktop-width: 1000px;
  --transition-main: all 0.3s ease-in;
  --spacing-sm: 4px;
  --spacing: 8px;
  --spacing-m: 16px;
}

.visually-hidden {
  position: absolute;
  clip: rect(0 0 0 0);
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(100%);
  overflow: hidden;
}

.container {
  max-width: 1440px;
  min-width: 320px;
  padding: 0 10px;
  margin: 0 auto;
  position: relative;
  box-sizing: border-box;
}
@media screen and (min-width: 450px) {
  .container {
    padding: 0 20px;
  }
}
@media screen and (min-width: 1400px) {
  .container {
    padding: 0 70px;
  }
}

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

.text {
  margin: 0;
  padding: 0;
}

.title {
  margin: 0;
  padding: 0;
}

.link {
  text-decoration: none;
  color: inherit;
}

.button {
  padding: 0;
  margin: 0;
  background: none;
  outline: none;
  cursor: pointer;
}

.input {
  outline: none;
}
.input:active,
.input:focus {
  outline: none;
}
.input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
}

.fieldset {
  margin: 0;
  padding: 0;
  border: none;
}

.title-main {
  font-family: "Blender Pro", "Arial", sans-serif;
  font-size: 38px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.05em;
}
.title-main .title-main__line {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 1000px) {
  .title-main .shift-desk {
    padding-left: 65px;
  }
}
.title-main .light {
  color: var(--cl-light);
}
.title-main .accent {
  color: var(--cl-accent);
}
.title-main .neutral {
  color: var(--cl-haze);
}
@media screen and (min-width: 1000px) {
  .title-main {
    font-size: 50px;
  }
}

.title-basic {
  font-family: "Blender Pro", "Arial", sans-serif;
  font-size: 25px;
  text-transform: uppercase;
  font-weight: 900;
}

.button-main {
  box-sizing: border-box;
  width: 100%;
  font-family: "Helvetica", "Arial", sans-serif;
  line-height: 80%;
  font-weight: 400;
  text-align: center;
  background: var(--cl-light);
  border-radius: 30px;
  transition: var(--transition-main);
  cursor: pointer;
  box-sizing: border-box;
}
.button-main:hover {
  background: var(--cl-accent);
  color: var(--cl-light);
}

.button-order {
  padding: 12px;
  min-width: 103px;
  background: #fb2b2b;
  color: #ffffff;
  box-sizing: border-box;
  border-radius: 6px;
  font-size: 14px;
  line-height: 120%;
  font-weight: 700;
  cursor: pointer;
  font-family: "Helvetica", "Arial", sans-serif;
  text-align: center;
}

.button-favorite {
  cursor: pointer;
}
.button-favorite .button-favorite__icon-block {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  padding: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  pointer-events: none;
}
.button-favorite .button-favorite__icon {
  fill: none;
  stroke-width: 1px;
  paint-order: fill;
  pointer-events: none;
  -o-object-fit: contain;
  object-fit: contain;
  transition: var(--transition-main);
}
.button-favorite input:checked + span svg {
  stroke-width: 0;
}
.button-favorite:hover svg {
  stroke: var(--cl-warning);
}

.button-favorite--dark .button-favorite__icon-block {
  border: 1px solid var(--cl-light);
}
.button-favorite--dark .button-favorite__icon {
  stroke: var(--cl-light);
}
.button-favorite--dark input:checked + span svg {
  fill: var(--cl-warning);
}

.button-favorite--light .button-favorite__icon-block {
  border: 1px solid var(--cl-shadow);
}
.button-favorite--light .button-favorite__icon {
  stroke: var(--cl-shadow);
}
.button-favorite--light input:checked + span svg {
  fill: var(--cl-warning);
}

.button-slider {
  padding: 5px;
  box-sizing: border-box;
  width: 48px;
  height: 38px;
  border-radius: 13px;
  background: var(--cl-light);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: var(--transition-main);
}
.button-slider svg {
  fill: var(--cl-shadow);
}
.button-slider:hover {
  background: var(--cl-accent);
}
.button-slider:hover svg {
  fill: var(--cl-light);
}
.button-slider[disabled] {
  opacity: 0;
  pointer-events: none;
}
@media screen and (min-width: 1000px) {
  .button-slider {
    width: 70px;
    height: 56px;
  }
}

.mobile-br {
  display: block;
}
@media screen and (min-width: 1000px) {
  .mobile-br {
    display: none;
  }
}

.desktop-br {
  display: none;
}
@media screen and (min-width: 1000px) {
  .desktop-br {
    display: block;
  }
}

.footer {
  padding-bottom: 90px;
}
@media screen and (min-width: 1000px) {
  .footer {
    padding-bottom: 0;
  }
}

.lock {
  overflow: hidden;
}

.bg-dark {
  position: relative;
}
.bg-dark::before {
  content: "";
  min-width: 100%;
  min-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 99;
  background: #000000;
  opacity: 0.7;
}

.language-select {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 24px;
  line-height: 84%;
  position: relative;
  cursor: pointer;
}
.language-select .language-select__field {
  padding-right: 20px;
  position: relative;
  font-size: inherit;
}
.language-select .language-select__field::before {
  content: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgaWQ9Ikljb24gMTIgcHggQXJyb3cgZG93biAiPgo8cGF0aCBpZD0iVmVjdG9yIDEzMyIgZD0iTTEuMzMzMDEgNEw3Ljk5OTY3IDEwLjY2NjdMMTQuNjY2MyA0IiBzdHJva2U9IiMxRTFFMUUiIHN0cm9rZS13aWR0aD0iMi4xMzMzMyIvPgo8L2c+Cjwvc3ZnPgo=");
  position: absolute;
  right: 0;
  transition: all 0.3s ease-in;
}
.language-select:hover .language-select__options {
  display: block;
}
.language-select:hover .language-select__field::before {
  transform: rotate(180deg);
}
.language-select .language-select__options {
  width: 100%;
  box-sizing: border-box;
  display: none;
  box-shadow: 0 0 7px -1px #999;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 2;
  border-radius: 5px;
  z-index: 101;
}
.language-select .language-select__options a {
  padding: 5px 10px;
  text-decoration: none;
  color: inherit;
  display: block;
  border-bottom: 1px solid #999;
  transition: opacity 0.3s ease-in;
}
.language-select .language-select__options a:hover {
  opacity: 0.3;
}
.language-select .language-select__options a:last-child {
  border-bottom: none;
}

.language-select--light {
  color: #000000;
}
.language-select--light .language-select__options {
  background: #ffffff;
}

.language-select--dark {
  color: #ffffff;
}
.language-select--dark .language-select__options {
  color: #000000;
  background: #ffffff;
}
.language-select--dark .language-select__field::before {
  content: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgaWQ9Ikljb24gMTIgcHggQXJyb3cgZG93biAiPgo8cGF0aCBpZD0iVmVjdG9yIDEzMyIgZD0iTTEuMzMzMDEgNEw3Ljk5OTY3IDEwLjY2NjdMMTQuNjY2MyA0IiBzdHJva2U9IiNGRkZGRkYiIHN0cm9rZS13aWR0aD0iMi4xMzMzMyIvPgo8L2c+Cjwvc3ZnPgo=");
}

.contacts .contacts__list {
  margin: -12px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.contacts .contacts__item {
  transition: opacity 0.3s ease-in;
}
.contacts .contacts__item:hover {
  opacity: 0.5;
}
.contacts .contacts__item svg {
  max-width: 100%;
  height: auto;
  fill: #000000;
}
.contacts .contacts__item a {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contacts--narrow .contacts__list {
  margin: -6px;
}
.contacts--narrow .contacts__item {
  padding: 6px;
}

.contacts--dark .contacts__item svg {
  fill: #ffffff;
}

.field {
  transition: var(--transition-main);
}
.field .error__text {
  display: none;
}
.field input {
  padding: 16px;
  border-radius: 12px;
  box-sizing: border-box;
  width: 100%;
  background: var(--cl-echo);
  color: var(--cl-light);
}
.field input:focus {
  color: var(--cl-shadow);
}
.field input:focus::-moz-placeholder {
  color: var(--cl-light-haze);
}
.field input:focus::placeholder {
  color: var(--cl-light-haze);
}
.field input:focus {
  background: var(--cl-light);
  box-shadow: 0 0 0 0 var(--cl-abyss);
}

.field--error {
  position: relative;
}
.field--error::before {
  content: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMiIgaGVpZ2h0PSIxMSIgdmlld0JveD0iMCAwIDIgMTEiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMC41IDAuNVY2LjVIMS41VjAuNUgwLjVaTTAuNSA4LjVWMTAuNUgxLjVWOC41SDAuNVoiIGZpbGw9IndoaXRlIi8+Cjwvc3ZnPgo=");
  position: absolute;
  top: 16px;
  right: 16px;
  width: 16px;
  height: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--cl-warning);
  border-radius: 50%;
}
.field--error .error__text {
  display: block;
  color: var(--cl-warning);
  font-size: 12px;
  line-height: 90%;
  text-align: center;
}
.field--error input {
  padding-right: 48px;
  margin-bottom: var(--spacing-sm);
  box-shadow: 0 0 0 2px var(--cl-warning);
  background: var(--cl-light);
}

.field--success {
  position: relative;
}
.field--success::before {
  content: url("data:image/svg+xml;base64,Cjxzdmcgd2lkdGg9IjE2IiBoZWlnaHQ9IjE3IiB2aWV3Qm94PSIwIDAgMTYgMTciIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0yIDlMNiAxMi41TDE0IDMuNSIgc3Ryb2tlPSIjMTVBRDM2IiBzdHJva2Utd2lkdGg9IjEuNiIvPgo8L3N2Zz4K");
  position: absolute;
  top: 18px;
  right: 16px;
  width: 16px;
  height: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.field--success input {
  padding-right: 48px;
  box-shadow: 0 0 0 2px var(--cl-success);
  background: var(--cl-light);
}

.multi-level {
  counter-reset: level1;
  list-style: none;
  padding-left: 0;
  font-size: 16px;
}
.multi-level p {
  margin-bottom: 10px;
  display: inline;
  font-size: inherit !important;
}
.multi-level a {
  color: inherit;
}
.multi-level > li {
  margin-bottom: 16px;
  counter-increment: level1;
}
.multi-level > li > p {
  margin-bottom: 16px;
}
.multi-level > li:last-of-type {
  margin-bottom: 0;
}
.multi-level > li::before {
  content: counter(level1) ". ";
  font-weight: bold;
}
.multi-level ol {
  margin-left: 20px;
  counter-reset: level2;
  list-style: none;
}
.multi-level ol > li {
  counter-increment: level2;
  position: relative;
}
.multi-level ol > li::before {
  content: counter(level1) "." counter(level2) ". ";
  font-weight: bold;
}
.multi-level ol ol {
  counter-reset: level3;
}
.multi-level ol ol > li {
  counter-increment: level3;
  font-size: 16px;
}
.multi-level ol ol > li::before {
  content: counter(level1) "." counter(level2) "." counter(level3) ". ";
  font-weight: bold;
}
.multi-level ol ol ol {
  counter-reset: level4;
}
.multi-level ol ol ol > li {
  counter-increment: level4;
}
.multi-level ol ol ol > li::before {
  content: "- ";
  font-weight: normal;
}

.text-main {
  font-size: 16px;
}
.text-main p {
  margin: 0 0 16px;
}
.text-main p:last-child {
  margin-bottom: 0;
}

.table-basic {
  border-collapse: collapse;
  width: 100%;
  border: 1px solid var(--cl-void);
}
.table-basic td,
.table-basic th {
  border: 1px solid var(--cl-void);
  padding: 6px;
}
.table-basic p {
  margin: 0 0 16px;
  font-size: 16px !important;
}
.table-basic p:last-child {
  margin-bottom: 0;
}

#nl .footer .butts a,
#nl .footer,
#nl .line_control,
#nl .button_w,
#nl .fh {
  font-family: "Helvetica";
  font-size: 18px;
}

#nl .footer .contact .line .val.big,
#nl .h,
#nl .fb {
  font-family: "Blender Pro";
  font-size: 70px;
}

#nl .customize-controls.new.type2 .next,
#nl .customize-controls.new.type2 .prev,
#nl .customize-controls.new .next,
#nl .customize-controls.new .prev,
#nl .button_w {
  transition: all 0.2s 0s;
}

#head.lend .menu_top {
  justify-content: flex-start;
  gap: 14px;
}
#head.lend .phone a {
  font-family: "Blender Pro";
  font-size: 52px;
  letter-spacing: -3px;
}
#head.lend .lc {
  height: 110px;
}
#head.lend .logo {
  margin-top: -10px;
  margin-right: 70px;
}
#head.lend .wrapper {
  max-width: 1400px;
}
#head.lend #wrap_mobile_catalog {
  margin-left: auto;
  max-width: 1000px;
}

#nl img {
  display: block;
}
#nl * {
  line-height: 1.1;
}
#nl .txt,
#nl .table,
#nl p {
  font-family: "Helvetica";
  line-height: 1.1;
  font-size: 18px;
}
#nl .black {
  background-color: #1e1e1e;
}
#nl .wh {
  background-color: #fff;
}
#nl .wpf.w3 {
  padding: 1px 0;
}
#nl .wpc {
  margin: auto;
  max-width: 1440px;
  padding-top: 130px;
  padding-left: 70px;
  padding-right: 70px;
  box-sizing: border-box;
}
#nl .h {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.05em;
}
#nl .h .l {
  padding-left: 65px;
}
#nl .h .w {
  color: #fff;
}
#nl .h .r {
  color: #0b413b;
}
#nl .h .b {
  color: #1e1e1e;
}
#nl .h .green {
  color: #0b413b;
}
#nl .h .gray {
  color: #999999;
}
#nl .h span {
  display: block;
  line-height: 90%;
}
#nl .open {
  position: relative;
}
#nl .open::before {
  display: block;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 600px;
  z-index: 0;
  border-radius: 60px 60px 0 0;
}
@media screen and (max-width: 1000px) {
  #nl .open::before {
    border-radius: 16px 16px 0 0;
  }
}
#nl .open.r::before {
  background-color: #0b413b;
}
#nl .open.w::before {
  background-color: #fff;
}
#nl .open > div {
  position: relative;
  z-index: 1;
}
#nl .close {
  position: relative;
}
#nl .close::before {
  display: block;
  content: "";
  position: absolute;
  bottom: 200px;
  left: 0;
  right: 0;
  top: 0;
  z-index: 0;
  border-radius: 0 0 60px 60px;
}
@media screen and (max-width: 1000px) {
  #nl .close::before {
    border-radius: 0 0 16px 16px;
  }
}
#nl .close.w::before {
  background-color: #fff;
}
#nl .close.b::before {
  background-color: #1e1e1e;
}
#nl .close > div {
  position: relative;
  z-index: 1;
}
#nl .flex {
  display: flex;
}
#nl .sb {
  justify-content: space-between;
}
#nl .button_w {
  padding: 32px 45px;
  background: #ffffff;
  border-radius: 30px;
  color: #1e1e1e;
  text-align: center;
  font-size: 30px;
  display: inline-block;
  letter-spacing: -0.05em;
  cursor: pointer;
}
#nl .button_w:hover {
  background: #0b413b;
  color: #fff;
}
#nl .hr {
  align-items: center;
  position: relative;
  top: -80px;
}
#nl .hr .g {
  flex-grow: 1;
  height: 2px;
  background-color: #fff;
}
#nl .hr .n {
  color: #fff;
  margin-left: 80px;
}
#nl .customize-controls.new div {
  width: 70px;
  height: 56px;
  border-radius: 20px;
  bottom: 60px;
  top: unset;
}
@media screen and (max-width: 1100px) {
  #nl .customize-controls.new div {
    width: 48px;
    height: 38px;
    border-radius: 13px;
    bottom: 30px;
    top: unset;
  }
}
#nl .customize-controls.new .prev {
  background: #fff url(../images/left.svg) no-repeat center center;
  left: 20%;
}
#nl .customize-controls.new .prev:hover {
  background: #0b413b url(../images/left.svg) no-repeat center center;
}
#nl .customize-controls.new .next {
  background: #fff url(../images/right.svg) no-repeat center center;
  right: 20%;
}
#nl .customize-controls.new .next:hover {
  background: #0b413b url(../images/right.svg) no-repeat center center;
}
#nl .customize-controls.new.type2 {
  display: flex;
  gap: 30px;
}
#nl .customize-controls.new.type2 div {
  position: static;
  width: 100px;
  height: 100px;
  border-radius: 100px;
  border: 2px solid #fff;
}
#nl .customize-controls.new.type2 .prev {
  background: #0b413b url(../images/left2.svg) no-repeat center center;
}
#nl .customize-controls.new.type2 .prev:hover {
  background: #1e1e1e url(../images/left2.svg) no-repeat center center;
}
#nl .customize-controls.new.type2 .next {
  background: #0b413b url(../images/right2.svg) no-repeat center center;
}
#nl .customize-controls.new.type2 .next:hover {
  background: #1e1e1e url(../images/right2.svg) no-repeat center center;
}
#nl .table {
  padding-left: 340px;
  padding-bottom: 60px;
}
#nl .table .tr {
  border-bottom: 1px #1e1e1e solid;
}
#nl .table .tr.g {
  background-color: #fff;
  margin-top: 40px;
  color: #0b413b;
}
#nl .table .tr:last-child {
  border-bottom: none;
}
#nl .table .tr .td:first-child {
  padding-left: 0;
  text-align: left !important;
}
#nl .table .tr .td:last-child {
  text-align: right;
  padding-right: 0;
}
#nl .line_control {
  padding-left: 340px;
}
#nl .line_control .but {
  background-color: #0b413b;
  color: #fff;
  font-size: 30px;
  padding: 22px 45px;
  cursor: pointer;
  text-transform: uppercase;
  height: 79px;
  box-sizing: border-box;
}
#nl .line_control .ts {
  gap: 35px;
  margin-left: 100px;
}
#nl .line_control .up {
  margin-left: auto;
}
#nl .line_control .butc {
  color: #0b413b;
  border: 2px solid #0b413b;
  border-radius: 50px;
  width: 79px;
  height: 79px;
  text-align: center;
  line-height: 76px;
  font-size: 30px;
  cursor: pointer;
}
#nl .footer {
  padding-top: 1px;
  padding-bottom: 40px;
}
#nl .footer .icons_con {
  gap: 13px;
  margin-top: -12px;
}
#nl .footer .icons_con .ic {
  width: 54px;
  height: 54px;
  cursor: pointer;
}
#nl .footer .icons_con .vk {
  background: url("../images/vk.svg") no-repeat center center;
}
#nl .footer .icons_con .tg {
  background: url("../images/telegram.svg") no-repeat center center;
}
#nl .footer .icons_con .mail {
  background: url("../images/e-mail.svg") no-repeat center center;
  width: 62px;
}
#nl .footer .icons_con .b2b {
  background: url("../images/b2b.svg") no-repeat center center;
  width: 62px;
}
#nl .footer:before {
  bottom: unset;
  height: 62px;
}
#nl .footer .main_l {
  align-items: flex-start;
}
#nl .footer .contact {
  margin-left: 95px;
  flex-grow: 1;
}
#nl .footer .contact .line {
  border-bottom: 2px solid #fff;
  margin-bottom: 82px;
  height: 57px;
  color: #fff;
}
#nl .footer .contact .line.b {
  height: 67px;
}
#nl .footer .contact .line .name {
  margin-top: 4px;
  letter-spacing: -0.05em;
}
#nl .footer .contact .line .val {
  margin-left: auto;
  text-align: right;
  line-height: 1.05;
  align-self: start;
}
#nl .footer .contact .line .val.big {
  font-size: 60px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
}
#nl .footer .contact .line .val.vr {
  font-size: 30px;
}
#nl .footer .contact .line .val.em {
  font-size: 18px;
  line-height: 110%;
}
#nl .footer .butts {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
  max-width: 334px;
  margin-left: 125px;
}
#nl .footer .butts a {
  font-size: 30px;
  color: #fff;
  padding: 10px 20px;
  border: 1px solid #ffffff;
  background-color: #1e1e1e;
  border-radius: 20px;
  white-space: nowrap;
  transition: all 0.2s 0s;
  text-decoration: none;
  text-transform: uppercase;
}
#nl .footer .butts a:hover {
  transform: rotate(-8deg);
  background-color: #0b413b;
  color: #fff;
}

.pilsing {
  position: absolute;
  z-index: 2;
  width: 40px;
  height: 40px;
  margin: -20px 0 0 -20px;
}

.pilsing div:nth-child(1) {
  animation: pulse_t 2s infinite;
  -webkit-animation: pulse_t 2s infinite;
  -moz-animation: pulse_t 2s infinite;
  -o-animation: pulse_t 2s infinite;
}

.pilsing div:nth-child(2) {
  animation: pulse_t 2s infinite 0.3s;
  -webkit-animation: pulse_t 2s infinite 0.3s;
  -moz-animation: pulse_t 2s infinite 0.3s;
  -o-animation: pulse_t 2s infinite 0.3s;
}

.pilsing span {
  position: absolute;
  display: block;
  width: 20px;
  height: 20px;
  background-color: #0b413b;
  top: 0;
  bottom: 0;
  left: 0px;
  right: 0;
  margin: auto;
  border-radius: 50px;
}

.pilsing div {
  border-radius: 50%;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 30px;
  height: 30px;
  border: 2px solid #0b413b;
}

@keyframes tuda_suda {
  0% {
    transform: translate(0, 20px);
  }
  50% {
    transform: translate(0, -60px);
  }
  100% {
    transform: translate(0, 20px);
  }
}
@keyframes tuda_suda_vn {
  0% {
    transform: rotate(180deg) translate(0, 20px);
  }
  50% {
    transform: rotate(180deg) translate(0, -60px);
  }
  100% {
    transform: rotate(180deg) translate(0, 20px);
  }
}
@keyframes blim {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes circl {
  0% {
    transform: rotate(0);
  }
  50% {
    transform: rotate(-360deg);
  }
  100% {
    transform: rotate(-720deg);
  }
}
@keyframes pulse_t {
  0% {
    transform: scale(0.1);
    -moz-transform: scale(0.1);
    -webkit-transform: scale(0.1);
    -o-transform: scale(0.1);
    -ms-transform: scale(0.1);
    opacity: 0;
  }
  50% {
    opacity: 0.4;
  }
  100% {
    transform: scale(1.6);
    -moz-transform: scale(1.6);
    -webkit-transform: scale(1.6);
    -o-transform: scale(1.6);
    -ms-transform: scale(1.6);
    opacity: 0;
  }
}
@media screen and (max-width: 1400px) {
  #nl .hr {
    top: -60px;
  }
  #nl .wpc {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 100px;
  }
  #nl .h {
    font-size: 50px;
  }
  #nl .button_w {
    font-size: 25px;
  }
  #nl .customize-controls.new.type2 div {
    width: 60px;
    height: 60px;
    background-size: 20px !important;
  }
}
@media screen and (max-width: 1330px) {
  #nl .footer .contact .line .val.big {
    font-size: 34px;
  }
  #nl .footer .contact .line .val.vr {
    font-size: 20px;
  }
  #nl .footer .butts {
    margin-left: 40px;
    flex-flow: column;
  }
  #nl .footer .contact {
    margin-left: 30px;
  }
  #nl .logo_red img {
    max-width: 100px;
  }
  #nl .footer .butts a {
    font-size: 18px;
  }
  #nl .footer .contact .line {
    margin-bottom: 50px;
  }
}
@media screen and (min-width: 1000px) {
  #nl .mobile {
    display: none !important;
  }
}
@media screen and (max-width: 1000px) {
  #nl .line_control {
    padding-left: 0;
  }
  #nl .mobile {
    display: block !important;
  }
  #nl .desctop,
  #nl .desktop {
    display: none !important;
  }
  #nl .hr {
    top: -50px;
  }
  #nl .hr .g {
    margin-right: -20px;
  }
  #nl .hr .n {
    display: none;
  }
  #nl .txt {
    font-size: 14px;
    line-height: 120%;
  }
  #nl .h {
    font-size: 38px;
  }
  #nl .h .l {
    padding-left: 38px;
  }
  #nl .button_w {
    padding: 16px 45px;
    font-size: 20px;
  }
  #nl .video_div.active::before {
    width: 80px;
    height: 80px;
    background: url("../images/play.svg") no-repeat center right 11px;
    background-size: 45px;
  }
  #nl .video_div.active:hover::before {
    background: #fff url("../images/play_b.svg") no-repeat center right 11px;
    border: 2px #fff solid;
    background-size: 45px;
  }
}
@media screen and (max-width: 800px) {
  #nl .footer .icons_con {
    margin-top: -3px;
  }
  #nl .footer .icons_con .ic {
    width: 34px;
    height: 34px;
    background-size: 100% auto !important;
  }
  #nl .footer .icons_con .mail {
    width: 39px;
  }
  #nl .footer .icons_con .b2b {
    width: 39px;
  }
}
@media screen and (max-width: 700px) {
  #nl .h {
    font-size: 32px;
  }
  #nl .h .l {
    padding-left: 28px;
  }
  #nl .footer .butts,
  #nl .footer .logo_red {
    display: none;
  }
  #nl .footer .contact {
    margin-left: 0;
  }
  #nl .footer .contact .line .name {
    font-size: 16px;
  }
  #nl .footer .contact .line .val.big {
    font-size: 30px;
  }
  #nl .footer .contact .line {
    height: 42px !important;
  }
  #nl .footer .contact .line {
    margin-bottom: 30px;
  }
  #nl .line_control .ts {
    gap: 20px;
    margin-left: 25px;
  }
  #nl .line_control .but {
    font-size: 14px;
    height: 33px;
    padding: 10px 20px;
  }
  #nl .line_control .butc {
    font-size: 14px;
    height: 31px;
    width: 31px;
    line-height: 31px;
  }
}
#nl .oldp {
  display: none;
}

@media screen and (max-width: 1300px) {
  #head.lend .menu_top {
    gap: 10px;
  }
  #head.lend .menu_top .item {
    font-size: 16px;
  }
  #head.lend .logo {
    margin-right: 20px;
    width: auto;
  }
  #head.lend .logo img {
    max-width: 90px;
  }
  #head.lend .phone a {
    font-size: 28px;
    letter-spacing: -2px;
  }
}
@media screen and (max-width: 700px) {
  #head.lend .logo {
    margin-right: 20px;
  }
  #head.lend .logo img {
    max-width: 90px;
  }
  #head.lend .phone a {
    font-size: 20px;
    letter-spacing: -1px;
  }
}
* {
  border: none;
  font-style: normal;
  margin: 0;
  padding: 0;
}

img {
  vertical-align: top;
}

html,
body {
  height: 100%;
}

.play {
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAE0AAABNCAYAAADjCemwAAAAAXNSR0IArs4c6QAAAAlwSFlzAAALEwAACxMBAJqcGAAABgtJREFUeNrtXE1IJEcUFuYgHhZZAzOQwKLsaeY4MuCisLNkMUYM+TtmQwgYQSEg8RCIBAMBSYIQPCgEEiEYISZIgrhzCRLYg+BBMiiDGCHGH4xGETH4O85M+huql7Knuqe7urq7ercePAZnuqtefXZVvfe911VToyRUUqdpVNMmTROaJjVt0bRN0/uapslnG/k+Sa5rIvfVPQ8gRTSNaRrX9B4Bxa3eI+3FSPvPjLxAnpAbA+7s7HxrcnLyk8XFxe82NjZ+Ozw8XDk9Pd29urr6r1Ao5EulUhGf+Bvf43dch+txH+5ngJgg/YVWXtI0RQ9qbGzso1wu99PJyclfJQGCdtAe2jWAlyL9h0ZeJGtQeQC9vb2Pstns1NnZ2X7JQ0H76Af9UeC1EHukldtksS4bPDw83Le5uTlfCkDQL/qnwEsS+6SSu/SThbWnJIHADsOTd1cGsG5p2qwbhUXayaCOj4//XFtbm52fn/96fHx8oK+v793W1tbXGhoaHkYikQf4xN/4Hr/jOlyP+5z0A7so4JqJ3YFITPenBgcHP8DuZmcA29vbT2ZnZ4fb29vfcONu4H60g/bs9Av7YCfl/8X8BuyObnwmk/kK7kGVRfqfhYWFb9wCZQUg2kc/VbArwl7q3jt+Adakd4rdysrC8/PzfzGlvADKTNEf+rWyC3ZT9zT5Btj6+nqmmmHRaPShn4Dpin6r/UNhvx/APZ2SVrsjFumRkZEPgwDLqLDDatPAOLycqjE7T5j22+Pa2toHMgCmK+yBXTafOGGbwy19l7R65LVt/VuZwDIq7LOxxt0X5Y40U7skU/xe7N1sEmZjoHbVZiGePvwbM7ciLIDZAK5I+XHckcNtvSMzx1X2Kel0qmKc1HVcsWrSKjTC4hpGwKgN7XGVkCvJQ++Ug28zt0K2XZJnVzVzR6gg3xGt1GLlj8nih4nw46r4by1OGNcyH2YjBLGte3t7i/39/e/JBpyZG0XxcbYY4DJFzSIQEdPxhka4v1AoXK+urv7a0dHxpiygYTysWBXjp6jzqkkQ07XMjXtBt5PP58+wgzU2Nr4isxtCrW2WyZqE2SML2sWNYWa8/szMzOcgHIMGjkUrUUtRwiovqTdQkQQBXyUaNF2Ojo5yBk7fd8X4WP9U6pqIaVCOdBhrYG4JRBvkanFra+v37u7ud4IADeNjGUWlB5nBPDLVaeQRWRS1W6Ps8vnX19f5lZWV6VQq1eU3cCzqHHiQ3+Ms0MqlAqxELrh4v0DT5fLy8hgLdH19/ct+gYZxshLSVAnEDanTSwW8mJo8oFFG/z0xMfFxkFOUKoG4UXSDKpw0aiRYIZMIg9zmMA8ODv6gWAjPlBVaARfye7SC+2cF58gzygAacY6LYFq7urre9go0jNciiG+q8M9YsaYovkxk5txL55jl6FKxaKKCBmLxZshsywYa7UfNzc19IZJxwXgteLZkBauBOjDjDSgJkBU0et0dHR3tF2EnxmtsH7iwWA+UaKZRQGe8AbUUsoOmy87OzhO3zjHGa2wXuJDf22jQytkmUoF4Q1CEEhbQRDjHGC9jA8pT2aqnog+sInkiKpj2CzTssNgB0+n06zx2YrysEI+65tl60hD4Dw0N9bix08mTFuo1DSFXJpP5UsQu6mRNC+XuSZjgX0QG9052z9D5aYYivXQQflpoIoKLi4tDsBFesb1OIgLpY09MxVwu97PXPJuT2FNqlgMMx8DAwPt+0ENOWA4p+TRMRT8TL075NKmYW3j1y8vLP8bj8Vf9pLudMrfS5Aj29/eXgsrE8+QIAs1GgeaZnp7+LKgUHm82KpC8J6ZiNpv9we+pKCrv6XuGHUUxPT09j2QoTeDNsPtWy6EZuDc1NfWp7CWldms5PK0a0qbixdLS0veyFL6IqhryrD5td3d3IaiSAz/q01QlJEclpKq55ay5VdXdHNXdEPUeAaeoN1Y4Rb0bxSHqLTxOUe97cop6s5hT1DvsboFTpyVwTlV1LofzzUGdAMPpjqizhtxEDjXqVCuuWFWdn8Yp6qQ+F6LOhHQh6vRRF6LOuRUg6kTl50n+B4KhcERZo7nRAAAAAElFTkSuQmCC")
    no-repeat center center;
}

body {
  background: var(--cl-light);
  font-family: "Helvetica", sans-serif;
  font-size: 16px;
  line-height: 135%;
  width: 100%;
  min-width: 320px;
  margin: 0;
  padding: 0;
  color: #222;
}

p {
  font-size: 16px;
  line-height: 135%;
}

b {
  font-weight: bold;
}

.grey {
  color: #939b9f;
}

.txt ul {
  list-style: none;
}

.txt ul li {
  margin: 16px 0;
}

.txt ul li::before {
  content: "⁃";
  color: inherit;
  display: inline-block;
  width: 1em;
}

.wrapper {
  max-width: 1110px;
  min-width: 300px;
  padding: 0 10px;
  margin: 0 auto;
  position: relative;
}

.flexb {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}

.flexb.asc .elem {
  align-self: center;
}

.flexgrow {
  flex-grow: 1;
}

.f_wrap {
  flex-wrap: wrap;
}

.wrapp1400 {
  max-width: 1400px;
  margin: auto;
}

h1,
h2.h1 {
  font-size: 42px;
  line-height: 130%;
  font-weight: bold;
}

h2,
.h2 {
  font-size: 26px;
  line-height: 140%;
  font-weight: bold;
}

h3,
.h3 {
  font-weight: bold;
  font-size: 20px;
  line-height: 140%;
}

.col2 > .elem {
  width: 50%;
  box-sizing: border-box;
}

.betw {
  justify-content: space-between;
}

.col2.betw > .elem {
  width: calc(50% - 15px);
}

.col3 > .elem {
  width: 33.3333%;
  box-sizing: border-box;
}

.col4 > .elem {
  width: 25%;
  box-sizing: border-box;
}

.col3.betw > .elem {
  width: calc(33.3333% - 20px);
}

.butb {
  background-color: #072e2a;
  color: #fff;
  text-align: center;
  letter-spacing: 0.05em;
  padding: 18px 40px;
  cursor: pointer;
  box-sizing: border-box;
  transition: all 0.3s;
}

.butb:hover {
  background-color: #222;
}

.butb.grey {
  background-color: #f5f6f8;
  color: #222222;
}

.butb.grey:hover {
  background-color: #e3e4e6;
}

.table {
  margin-top: 32px;
}

.table .tr {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}

.table .tr.g {
  background-color: #f5f6f8;
}

.table .tr .td {
  width: 50%;
  box-sizing: border-box;
  padding: 24px 15px 24px 0;
}

.table .tr .td.o {
  padding-left: 60px;
}

.table .tr .td:first-child {
  padding-left: 40px;
}

img {
  max-width: 100%;
}

.pdr {
  padding-right: 15px;
}

.pdl {
  padding-left: 15px;
}

.mt24 {
  margin-top: 24px;
}

.mt {
  margin-top: 32px;
}

.mtb {
  margin-top: 80px;
}

.maxw {
  max-width: 540px;
}

.icp {
  padding-left: 48px;
}

.pdt5 {
  padding-top: 5px;
  padding-bottom: 5px;
}

.yaz {
  color: #222 !important;
  vertical-align: middle;
  position: relative;
}

.yaz img {
  vertical-align: middle;
}

.yaz:hover .yzv {
  display: block;
}

.yzv {
  display: none;
  position: absolute;
  padding: 5px 10px;
  background-color: #fff;
  box-shadow: 0 0 2px 0px #999;
  left: 0;
  right: 0;
  z-index: 2;
}

.yzv a {
  text-decoration: none;
  color: #222;
}

#head .lc {
  height: 110px;
}

#head .flexb > div {
  align-self: center;
}

#head .logo {
  width: 120px;
  text-align: center;
  margin-right: 30px;
  cursor: pointer;
  margin-top: -10px;
}

#head .logo img {
  margin-top: 5px;
}

#head .menu_top,
#wrap_mobile_catalog {
  flex-grow: 1;
}

#head .menu_top .item {
  display: block;
  text-decoration: none;
  padding: 3px 8px;
  color: #000;
  font-family: "Helvetica";
  font-size: 18px;
}

#head .menu_top .item.fill {
  border-radius: 10px;
  overflow: hidden;
}

#head .menu_top .item.fill:hover {
  color: #fff;
}

#head .phone {
  margin-left: 30px;
}

#head .phone a {
  color: #222;
  font-weight: bold;
  text-decoration: none;
}

#head .gamb {
  width: 45px;
  height: 45px;
  background: #0b413b url("../images/cat.png") no-repeat center center;
  margin: 0 15px;
  display: none;
}

.bread {
  margin-bottom: 24px;
}

.bread .item.home {
  height: 16px;
  width: 16px;
  background: url("../images/home.png") no-repeat center center;
  display: inline-block;
  margin-bottom: -1px;
}

.bread .item {
  color: #939b9f;
  vertical-align: center;
  line-height: 200%;
}

.bread .item.b {
  margin-left: 14px;
  text-decoration: none;
}

.bread .item.b:nth-child(2) {
  color: #222;
}

.bread .item.b::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 16px;
  background: url("../images/rgg.png") no-repeat left center;
  margin-bottom: -3px;
}

@media screen and (min-width: 1001px) {
  #wrap_mobile_catalog {
    display: block !important;
  }
}
@media screen and (max-width: 1100px) {
  #head .logo {
    margin-right: 30px;
  }
}
@media screen and (max-width: 1000px) {
  .yaz .yzv .p {
    display: block;
  }
  .yzv {
    position: relative;
    padding: 0;
    box-shadow: unset;
  }
  .yzv .p {
    padding: 8px 5px;
    border-top: 1px solid #dcdcdc;
    margin-left: -5px;
    margin-right: -5px;
  }
  .yzv .p:first-child {
    margin-top: 8px;
  }
  #head {
    position: fixed;
    top: 0;
    box-shadow: 0 0 3px 2px #eee;
    left: 0;
    right: 0;
    background-color: #fff;
    z-index: 4;
  }
  #head .lc {
    height: 90px !important;
  }
  #head .menu_top .item {
    padding: 14px 8px;
  }
  #head .gamb,
  .mob {
    display: block !important;
  }
  #wrap_mobile_catalog {
    background: #fff;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    position: fixed;
    top: 0;
    display: none;
    width: 100%;
    z-index: 400000;
    box-sizing: border-box;
    left: 0;
    right: 0;
    padding: 10px;
  }
  #head .phone {
    margin-left: auto;
  }
  #head .lc {
    height: 120px;
  }
  .control_mob {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    border-top: none !important;
    padding: 10px 0 20px;
  }
  .cmoc {
    background: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%09%20%20%20viewBox%3D%220%200%205.242%205.242%22%20enable-background%3D%22new%200%200%205.242%205.242%22%20xml%3Aspace%3D%22preserve%22%3E%3Cline%20fill%3D%22none%22%20stroke%3D%22%234c1e87%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-miterlimit%3D%2210%22%20x1%3D%220.5%22%20y1%3D%220.5%22%20x2%3D%224.742%22%20y2%3D%224.742%22%2F%3E%3Cline%20fill%3D%22none%22%20stroke%3D%22%234c1e87%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-miterlimit%3D%2210%22%20x1%3D%220.5%22%20y1%3D%224.742%22%20x2%3D%224.742%22%20y2%3D%220.5%22%2F%3E%3C%2Fsvg%3E")
      no-repeat;
    width: 15px;
    height: 15px;
    cursor: pointer;
    filter: brightness(0) invert(0);
  }
  .wpi {
    display: block !important;
  }
  .wpi .item {
    padding: 10px;
    border-top: 1px solid #dcdcdc;
  }
}
/*
?????
 */
#footer .wpf {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-grow: 1;
}

#footer .pd5 {
  padding: 50px 0;
}

#footer .tabl {
  width: calc(33.3333333333% - 20px);
  flex-grow: 1;
}

#footer .zag {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 24px;
}

#footer .tabl.min {
  max-width: 180px;
}

#footer .tabl.f {
  margin-left: 20px;
}

#footer .tabl a,
#footer .tabl .a {
  display: block;
  color: #8c8c8c;
  text-decoration: none;
  line-height: 25px;
  margin-bottom: 12px;
}

#footer .tabl .a.cn {
  font-weight: bold;
  color: #222;
}

#footer .tabl a:hover,
#footer .tabl .a:hover {
  color: #222;
}

#footer .logo {
  align-self: center;
}

#footer .logo img {
  margin: 0 40px;
  margin-top: -40px;
}

@media screen and (max-width: 1070px) {
  #footer .logo img {
    margin: 10px;
  }
}
@media screen and (max-width: 1000px) {
  #footer .logo img {
    display: none;
  }
}
@media screen and (max-width: 800px) {
  #footer .wpf {
    display: block;
    padding: 20px 0;
  }
  #footer .tabl {
    width: auto;
    margin-bottom: 18px;
  }
  #footer .tabl.f {
    margin-left: 0px;
  }
  #footer .wpf .zag {
    background: url("../images/fn.png") no-repeat right center;
    background-size: auto;
    background-size: 10px;
    margin-bottom: 13px;
    font-size: 16px;
    font-weight: normal;
  }
  #footer .tabl.min {
    max-width: none;
  }
  .lish {
    display: none;
  }
}
/*
???????
 */
.home {
  background-color: #f5f6f8;
}

.home .b1 {
  padding: 1px 0;
  height: 548px;
  background-color: #072e2a;
  overflow: hidden;
}

.home .b1 > .wrapper {
  padding: 1px 0;
  height: 100%;
  box-sizing: border-box;
  position: relative;
}

.home .b1 > .wrapper:before {
  background: #d7d7d7 url("../images/h1.jpg") no-repeat right center;
  width: 990px;
  position: absolute;
  left: 285px;
  display: block;
  content: "";
  top: -1px;
  bottom: -1px;
  z-index: 0;
}

.home h1 {
  color: #fff;
  max-width: 270px;
  margin-top: 168px;
  margin-left: 10px;
  z-index: 1;
  position: relative;
  font-size: 36px;
}

.ll {
  position: relative;
}

.ll:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 10px;
  top: 40%;
  width: 40px;
  right: 10px;
  background-size: auto 100%;
}

.home .b2 {
  margin-top: -156px;
  padding-bottom: 80px;
}

.home .b2 > div {
  width: 50%;
}

.home .ht {
  height: 468px;
  background: url("../images/main_l.jpg") no-repeat center center;
  width: 556px;
  display: flex;
  flex-direction: row-reverse;
}

.home .ht .elem {
  height: 312px;
  background-color: #072e2a;
  box-sizing: border-box;
  width: 271px;
  padding: 28px;
}

.home .ht .elem h2 {
  color: #fff;
}

.home .ht .elem .desc {
  color: #fff;
  margin-top: 160px;
}

.home .plit .elem:hover a {
  color: #072e2a;
}

.home .plit .elem {
  background: #fff !important;
  width: 50%;
  height: 33.33333%;
  box-sizing: border-box;
  padding: 24px;
  background-color: #fff;
  box-shadow: -1px 0px 0px #f5f5f5, 0px -1px 0px #f5f5f5, 1px 0px 0px #f5f5f5,
    0px 1px 0px #f5f5f5;
  position: relative;
  cursor: pointer;
  transition: all 0.3s;
}

.home .plit .elem:hover {
  background-color: #f5f5f5 !important;
}

.home .plit .elem:before {
  display: block;
  content: "";
  width: 14px;
  height: 12px;
  left: 24px;
  bottom: 24px;
  position: absolute;
  background: url("../images/st.svg") no-repeat center center;
}

.home .plit .elem a {
  transition: all 0.3s;
  color: #222;
  text-decoration: none;
  max-width: 100px;
  display: block;
}

.home .plit .elem.e1,
.home .plit .elem.e1 a {
  background-color: #222 !important;
  color: #fff;
  box-shadow: unset;
}

.home .plit .elem.e2 {
  background: #fff url("../images/p2.svg") no-repeat right 14px bottom 14px;
}

.home .plit .elem.e3 {
  background: #fff url("../images/p3.svg") no-repeat left bottom 58px;
}

.home .plit .elem.e4 {
  background: #fff url("../images/p4.svg") no-repeat center bottom;
}

.home .plit .elem.e5 {
  background: #fff url("../images/p5.svg") no-repeat right bottom;
}

.home .plit .elem.e6 {
  background: #fff url("../images/p6.svg") no-repeat right center;
}

/*
???????? ? ??????
 */
#br .h1 {
  margin-top: 44px;
  margin-bottom: 32px;
  max-width: 555px;
}

#br.catt .b1 {
  padding: 1px 0;
  height: 392px;
  overflow: hidden;
  background: linear-gradient(
      0deg,
      rgba(23, 27, 46, 0.74),
      rgba(23, 27, 46, 0.74)
    ),
    url("../images/zg.jpg") no-repeat center center;
}

#br .b1 {
  padding: 1px 0;
  height: 550px;
  overflow: hidden;
  background: #072e2a url("../images/n_a.jpg") no-repeat 400px center;
}

#br .b1 h1 {
  color: #ffffff;
  max-width: 360px;
  margin-top: 100px;
  z-index: 1;
  position: relative;
  margin-left: 20px;
  font-size: 32px;
}

#br .b8 .elem {
  box-shadow: 0 0 3px 3px #e3e3e3;
  cursor: pointer;
}

#br .b1 .desc {
  font-size: 20px;
  line-height: 140%;
  color: #ffffff;
  max-width: 360px;
  margin-top: 32px;
  margin-left: 20px;
}

#br .b2 {
  margin-top: 48px;
}

#br .b2 .elem {
  padding: 32px 24px;
  box-shadow: -1px 0px 0px #f5f5f5, 0px -1px 0px #f5f5f5, 1px 0px 0px #f5f5f5,
    0px 1px 0px #f5f5f5;
  position: relative;
}

#br .b2 .zag {
  font-weight: bold;
  font-size: 18px;
  line-height: 130%;
  margin-bottom: 16px;
}

#br .b2 .txt {
  color: #939b9f;
}

#br .b3 .h1 {
  margin-top: 44px;
  margin-bottom: 32px;
  max-width: 555px;
}

#br .b3 .h2 {
  max-width: 730px;
}

#br .b3 .txt {
  margin-top: 32px;
  color: #939b9f;
}

#br img.fi {
  margin-top: 32px;
  max-width: 100%;
}

#br .b2.b5 .elem {
  box-shadow: unset;
  padding: 22px 0px;
}

#br .b2.b5 .elem .int {
  color: #939b9f;
  margin-bottom: 16px;
}

#br .b6 .h1 {
  margin-top: 60px;
}

#br .b6 .ob {
  max-width: 540px;
  color: #939b9f;
  margin-top: 32px;
  margin-bottom: 20px;
}

#br .b6 .puz {
  padding: 20px 0;
  border-bottom: 1px solid #f5f6f8;
}

#br .b6 .puz .elem {
  align-self: center;
}

#br .b6 .puz .elem.e2 {
  justify-content: flex-end;
  align-items: center;
}

#br .b6 .puz .elem.e2 {
  justify-content: center;
  margin-top: 32px;
}

#br .b6 .puz .elem.e2 .p {
  background-color: #f5f6f8;
  border-radius: 50%;
  box-sizing: border-box;
  padding: 15px;
  min-width: 132px;
  min-height: 132px;
  justify-content: center;
  flex-direction: column;
  margin-left: 15px;
}

#br .b6 .puz .elem.e2 .p.si {
  background-color: #072e2a;
  color: #fff;
}

#br .b6 .puz .elem.e2 .p.si .name {
  color: #fff;
}

#br .b6 .puz .elem.e2 .p > div {
  text-align: center;
}

#br .b6 .puz .elem.e2 .p .int {
  font-size: 20px;
  font-weight: bold;
}

#br .b6 .puz .elem.e2 .p .name {
  color: #939b9f;
  margin-top: 4px;
}

#br .b6 .puz h3 {
  font-weight: bold;
}

#br .b6 .puz .txt {
  color: #939b9f;
  margin-top: 16px;
}

#br .b7 .txt {
  color: #939b9f;
}

#br .b7 .name {
  font-size: 18px;
  margin-bottom: 16px;
  font-weight: bold;
}

#br .b7 .elem {
  padding: 32px 24px 24px;
  box-shadow: inset 0px -1px 0px #f5f6f8, inset 0px 1px 0px #f5f6f8;
}

#br .b7 {
  margin-top: 32px;
}

#br .b8 .elem {
  width: calc(25% - 22.5px);
}

#br .b8 .elem img {
  max-width: 100%;
}

#br .b9 .predesc {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 42px;
}

#br .b9 img {
  max-width: 100%;
}

#br .b9 .txt {
  padding-left: 25px;
}

.dopbr .e1 {
  max-width: 635px;
}

#prd .nzibut {
  margin: 64px 0 !important;
}

#prd .main_prd {
  /*background-color: #F5F6F8;*/
  padding: 45px 95px 32px;
  margin-bottom: 24px;
  box-shadow: 0 0 15px 4px #f5f6f8 inset;
}

.wrap_li {
  position: relative;
  cursor: pointer;
}

.wrap_li .item img {
  margin-bottom: 3px;
  margin-left: 3px;
}

.wrap_li .item.active img,
.wrap_li .item:hover img {
  box-shadow: 0 0 2px 2px #d3dadc;
}

.customize-controls > div {
  width: 44px;
  height: 44px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -22px;
  margin: auto;
  background: #072e2a;
  cursor: pointer;
  border-radius: 50%;
  outline: none !important;
}

#customize-controls2 > div.prev {
  left: 0px;
}

#customize-controls2 > div.next {
  right: 0px;
}

.customize-controls > div.prev {
  background: #072e2a url("../images/prev.png") no-repeat center center;
}

.customize-controls > div.next {
  background: #072e2a url("../images/next.png") no-repeat center center;
  left: auto;
  right: -22px;
}

#prd .mb .img {
  padding-right: 40px;
}

#prd .mb .img img {
  max-width: 100%;
}

#prd .mb .comb {
  padding: 1px;
}

#prd .mb .comb h1 {
  margin-top: 29px;
}

#prd .mb .price {
  font-size: 20px;
  font-weight: bold;
  margin-top: 8px;
}

#prd .mb .desc {
  margin-top: 20px;
  color: #939b9f;
  margin-bottom: 24px;
}

#prd .mb .price span {
  color: #072e2a;
  font-weight: bold;
  white-space: nowrap;
}

#prd .b1 .elem {
  max-width: 158px;
}

.sort {
  color: #939b9f;
  margin-bottom: 24px;
}

.sort .pere {
  color: #072e2a;
  cursor: pointer;
  display: inline-block;
  margin-left: 25px;
}

.sort .pere.active {
  color: #222;
}

.dil .tuc .elem {
  cursor: pointer;
}

.products {
  display: flex;
}

#prd .b1 .elem .name {
  text-align: center;
  color: #939b9f;
}

#prd .bf {
  width: 340px;
  margin: 80px auto 0;
  text-transform: uppercase;
}

#prd .b2 {
  margin-top: 80px;
}

#prd .b2 .e1 {
  padding-right: 15px;
}

#prd .txt {
  color: #939b9f;
}

#prd img {
  max-width: 100%;
}

#prd .b2 .e2 {
  text-align: center;
}

#prd .b2 .txt {
  margin-top: 32px;
}

#prd .b3 {
  margin-top: 80px;
}

#prd .mainc {
  margin-top: 40px;
}

#prd .mainc .row {
  margin-top: 40px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
}

#prd .mainc .row .elem {
  width: calc(50% - 15px);
  align-self: center;
}

#prd .mainc .row .txt {
  margin-top: 32px;
}

#prd .also {
  margin-bottom: 80px;
}

.desc_main {
  margin-bottom: 40px;
}

#prd .also .h1 {
  margin-top: 80px;
  margin-bottom: 40px;
}

.a-slider {
  cursor: pointer;
}

.a-slider .card {
  max-width: 285px;
}

.a-slider .card .img {
  text-align: center;
}

.a-slider .card img {
  max-width: 100%;
  border: 1px solid #f5f6f8;
}

.a-slider .card .name {
  margin-top: 18px;
  text-align: center;
}

.a-slider .card .name a {
  text-decoration: none;
  color: #222;
  font-weight: bold;
  font-size: 20px;
  line-height: 140%;
}

.maps {
  height: 550px;
}

#con .txt {
  color: #939b9f;
}

#con h1 {
  margin-bottom: 36px;
}

#con .inb .elem {
  padding-left: 28px;
  margin-bottom: 24px;
}

#con .inb .elem .name {
  font-weight: bold;
}

#con .inb .elem.tel {
  background: url("../images/pho.png") no-repeat left center;
}

#con .inb .elem.ml {
  background: url("../images/mail.png") no-repeat left center;
}

#con .big {
  width: 55%;
  padding-right: 20px;
}

#con .map {
  width: 45%;
}

#con h2 {
  margin-bottom: 39px;
}

.zform textarea.p100 {
  height: calc(100% - 20px);
}

#con .form input,
#con .form textarea,
.zform input,
.zform textarea {
  background-color: #f5f6f8;
  padding: 13px 18px;
  display: block;
  margin-bottom: 20px;
  width: 100%;
  box-sizing: border-box;
  resize: none;
  font-family: "Gotham Pro", sans-serif;
  font-size: 16px;
  line-height: 135%;
  color: #222;
}

.placeholder-container input:not(:-moz-placeholder-shown),
.zform textarea:not(:-moz-placeholder-shown) {
  outline: 1px solid #f5f6f8;
  background-color: #fff;
  color: #222;
}

.zform input:focus,
.zform textarea:focus,
.placeholder-container input:not(:placeholder-shown),
.zform textarea:not(:placeholder-shown) {
  outline: 1px solid #f5f6f8;
  background-color: #fff;
  color: #222;
}

.grey_bt {
  background-color: #f5f6f8;
  margin-top: 80px;
}

.main_content.cnt {
  background-color: #f5f6f8;
  padding-bottom: 1px;
}

#serv .b1 .elem {
  align-self: center;
}

#serv .b2 .elem {
  text-align: center;
  padding: 16px;
  cursor: pointer;
  background-color: #f5f6f8;
}

#serv .b2 .elem.active {
  background-color: #072e2a;
  color: #fff;
}

#serv .map {
  height: 460px;
  margin-top: 40px;
  text-align: center;
}

#serv .zform textarea {
  height: 264px;
}

#serv .b5 .elem {
  padding: 32px 24px;
  box-shadow: inset 0px -1px 0px #f5f6f8, inset 0px 1px 0px #f5f6f8;
  position: relative;
}

#serv .b5 .zag {
  font-weight: bold;
  font-size: 18px;
  line-height: 130%;
  margin-bottom: 16px;
}

#serv .b3 .elem {
  padding: 24px 21px;
}

#serv .b3 .name::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  left: -12px;
  background: url("../images/map-pin.png") no-repeat center center;
}

#serv .b3 .name {
  position: relative;
  padding-left: 18px;
}

#serv .b3 .desc {
  padding-left: 18px;
  color: #939b9f;
  margin-top: 4px;
}

#serv .b3 .sin .name {
  color: #fff;
  font-weight: bold;
  padding-left: 0;
}

#serv .b3 .scc {
  margin-top: 10px;
}

#serv .b3 .sin {
  background-color: #072e2a;
}

#serv .b3 .sin .desc {
  padding-left: 0;
  color: #fff;
}

#serv .b3 .sin .name:before {
  display: none;
}

#serv .b6 .elem {
  width: 160px;
  margin-bottom: 32px;
}

#serv .b6 .elem .i1 {
  text-align: center;
  padding: 16px;
  border: 1px solid #f5f6f8;
}

#serv .b6 .elem .name {
  text-align: center;
  font-weight: bold;
  margin-bottom: 20px;
}

#serv .b6 .elem .butb {
  display: block;
  text-decoration: none;
  text-align: center;
  padding: 18px;
  cursor: pointer;
}

#serv .b6 .elem.spec {
  max-width: 920px;
  margin-left: 30px;
  padding-top: 1px;
  padding-left: 20px;
  padding-right: 20px;
  /*background: url("/i/begh.png") no-repeat 143px 3px;*/
  align-self: stretch;
  border: 1px solid #f5f6f8;
}

#serv .b6 .elem.spec .name {
  margin-top: 30px;
  text-align: left;
}

.dil ol {
  list-style-type: none;
  counter-reset: item;
  margin-left: 34px;
  position: relative;
}

.dil li:nth-child(-n + 9)::before {
  content: "0" counter(item) ".";
  counter-increment: item;
  color: #939b9f;
  letter-spacing: 0.1em;
  position: absolute;
  left: -32px;
}

.dil .up {
  text-transform: uppercase;
  color: #222;
  font-weight: bold;
  text-align: center;
  max-width: 730px;
  margin: 80px auto;
}

.icp.nag {
  background: url("../images/nag.png") no-repeat 0px center;
}

.icp.sh {
  background: url("../images/sh.png") no-repeat 0px center;
}

.icp.users {
  background: url("../images/users.png") no-repeat 0px center;
}

.icp.gar {
  background: url("../images/gar.png") no-repeat 0px center;
}

.icp.rub {
  background: url("../images/rub.png") no-repeat 0px center;
}

.dil .vibc > .elem {
  width: calc(100% - 200px);
}

.dil .vibc .ili {
  text-align: center;
  align-self: center;
  min-width: 200px !important;
  width: 200px;
}

.dil .vibc .ili > div {
  text-transform: uppercase;
  font-weight: bold;
  margin: auto;
  padding: 0 16px;
  position: relative;
}

.dil .vibc .ili > div:before {
  width: 54px;
  height: 1px;
  content: "";
  display: block;
  position: absolute;
  background: #f5f6f8;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 10px;
}

.dil .vibc .ili > div:after {
  width: 54px;
  height: 1px;
  content: "";
  display: block;
  position: absolute;
  background: #f5f6f8;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 10px;
}

.dil .tuc {
  margin-top: 16px;
}

.dil .tuc img {
  border: 1px solid #f5f6f8;
  max-width: 190px;
}

.dil .zform input {
  margin-bottom: 25px;
}

.dil .tuc .name {
  font-weight: bold;
  margin-top: 8px;
}

.dil .tuc .price {
  margin-top: 8px;
}

.dil .tuc .price span {
  font-weight: bold;
}

.dil .cat .butb {
  margin-top: 24px;
}

.dil .vibc .ff .txt {
  margin-bottom: 16px;
}

.dil .txt.xz {
  background-color: #f5f6f8;
  padding: 40px;
  margin-bottom: 80px;
}

.poli_inp {
  min-width: 24px;
}

.poli {
  margin-top: 24px;
}

.poli * {
  box-sizing: border-box;
}

*:before,
*:after {
  box-sizing: inherit;
}

.shake {
  animation-name: shake;
  animation-duration: 1s;
  animation-fill-mode: both;
  border: 1px solid #ec7979;
}
@keyframes shake {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%,
  40%,
  60%,
  80% {
    transform: translate3d(10px, 0, 0);
  }
}
.mainc v {
  font-size: 12px;
  position: relative;
  top: -6px;
}

.form_uni {
  background-color: rgba(34, 34, 34, 0.7);
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  display: none;
}

.form_uni .cmb {
  background-color: #fff;
  width: 510px;
  margin: auto;
  padding: 24px 52px;
  box-sizing: border-box;
  max-height: 100%;
  max-width: 100%;
  overflow: auto;
  position: relative;
}

.form_uni #zh {
  text-align: center;
}

.form_uni .close {
  background: #222222
    url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M24 8L8 24' stroke='white' stroke-linejoin='round'/%3e%3cpath d='M8 8L24 24' stroke='white' stroke-linejoin='round'/%3e%3c/svg%3e")
    no-repeat center center;
  width: 44px;
  height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
}

.hide {
  display: none !important;
}

.zform.ok {
  position: relative;
}

.zform.ok:before {
  content: "";
  position: absolute;
  top: -5px;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff
    url("data:image/svg+xml;charset=UTF-8,%3csvg height='512pt' viewBox='0 0 512 512' width='512pt' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='m256 0c-141.164062 0-256 114.835938-256 256s114.835938 256 256 256 256-114.835938 256-256-114.835938-256-256-256zm0 0' fill='%23004790'/%3e%3cpath d='m385.75 201.75-138.667969 138.664062c-4.160156 4.160157-9.621093 6.253907-15.082031 6.253907s-10.921875-2.09375-15.082031-6.253907l-69.332031-69.332031c-8.34375-8.339843-8.34375-21.824219 0-30.164062 8.339843-8.34375 21.820312-8.34375 30.164062 0l54.25 54.25 123.585938-123.582031c8.339843-8.34375 21.820312-8.34375 30.164062 0 8.339844 8.339843 8.339844 21.820312 0 30.164062zm0 0' fill='%23fafafa'/%3e%3c/svg%3e")
    no-repeat center center;
  background-size: auto 70%;
  z-index: 2;
}

.zform.ok:after {
  content: "Успешно отправлена";
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  text-align: center;
  z-index: 3;
  color: #000;
  position: absolute;
}

.placeholder-container {
  position: relative;
  margin-bottom: 20px;
}

.placeholder-container label {
  color: #939b9f;
  padding: 5px 10px;
  pointer-events: none;
  position: absolute;
  transition: all 200ms;
  top: 10px;
  left: 10px;
}

.placeholder-container input.hide + label {
  display: none !important;
}

.placeholder-container input:not(:-moz-placeholder-shown) + label {
  top: -12px;
  left: 10px;
  font-size: 11px;
  background-color: #fff;
  padding: 2px 10px;
}

.placeholder-container input:focus + label,
.placeholder-container input:not(:placeholder-shown) + label {
  top: -12px;
  left: 10px;
  font-size: 11px;
  background-color: #fff;
  padding: 2px 10px;
}

.placeholder-container input:not(:-moz-placeholder-shown) + label {
  background-color: unset;
}

.placeholder-container input:not(:placeholder-shown) + label {
  background-color: unset;
}

.fill,
.fill:after,
.fill:before {
  transition: all 0.5s;
}

.fill {
  position: relative;
}

.fill:after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 0%;
  content: ".";
  color: transparent;
  background: #aaa;
  height: 1px;
}

.fill {
  transition: all 1s;
}

.fill:after {
  text-align: left;
  content: ".";
  margin: 0;
  opacity: 0;
}

.fill:hover {
  z-index: 1;
}

.fill:hover:after {
  z-index: -10;
  animation: fill 0.5s forwards;
  -webkit-animation: fill 0.5s forwards;
  -moz-animation: fill 0.5s forwards;
  opacity: 1;
}
.dil .pl {
  margin-bottom: 10px;
  color: #939b9f;
}

.dil .pl .name {
  font-weight: bold;
}

.dil .pl.tel {
  padding-left: 28px;
  background: url("../images/pho.png") no-repeat left center;
}

.dil .pl.ml {
  padding-left: 28px;
  background: url("../images/mail.png") no-repeat left center;
}

.br_nav {
  position: fixed;
  left: 22px;
  top: calc(50% - 150px);
}

.mob_h,
.mob_s {
  display: none;
}

.br_nav .e:first-child {
  margin-top: 0;
}

.br_nav .e {
  margin-top: 18px;
  position: relative;
  cursor: pointer;
}

.br_nav .c {
  color: #939b9f;
  text-decoration: none;
}

.br_nav .e.active .c {
  color: #072e2a;
}

.br_nav .e:hover .d {
  display: block;
}

.br_nav .d {
  position: absolute;
  padding: 8px;
  display: none;
  background-color: #f5f6f8;
  color: #222;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 100px;
  white-space: nowrap;
  left: 28px;
  top: -8px;
}

@media screen and (max-width: 1400px) {
  .wrapp1400 {
    margin: 0 10px;
  }
}
.mobile_swap,
.mob_e {
  display: none !important;
  position: relative;
}

@media screen and (max-width: 1200px) {
  #cat .pinfo .b1 {
    flex-wrap: wrap;
  }
  .ugol_h {
    display: none;
  }
  #cat .pinfo .name {
    margin-top: 20px;
  }
}
@media screen and (max-width: 1240px) {
  .br_nav {
    display: none !important;
  }
}
@media screen and (max-width: 1100px) {
  #prd .main_prd {
    padding: 20px;
  }
  .col4 .elem {
    width: 50%;
  }
  .col4 {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 850px) {
  .mob_e .item.tns-item {
    text-align: center;
  }
  #br .b9 .col2 {
    flex-wrap: wrap;
  }
  .dil .tuc .elem {
    width: calc(50% - 8px) !important;
  }
  .dil .tuc .elem img {
    max-width: 100% !important;
  }
  .butb {
    padding: 18px;
  }
  .form_uni .cmb {
    padding: 24px 15px;
  }
  #br .b9 .elem {
    width: 100%;
  }
  #cat .dop_img {
    display: none;
  }
  .mobile_swap {
    display: block !important;
  }
  #prd .mb .img {
    display: none;
  }
  .mob_e {
    display: block !important;
  }
  #prd .mb .elem {
    width: 100%;
  }
  #prd .mb {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 700px) {
  .ll:after {
    content: "";
    display: block;
    position: absolute;
    bottom: 10px;
    top: 5%;
    width: 20px;
    right: 10px;
    background-size: auto 100%;
  }
  .mob_h {
    display: block;
  }
  .mob_s {
    display: inline;
  }
  .mob_suk {
    display: none;
  }
  #prd .b2 {
    flex-wrap: wrap;
  }
  #prd .b2 .elem {
    width: 100%;
  }
  .mtb {
    margin-top: 40px;
  }
  h1,
  h2.h1 {
    font-size: 28px;
  }
  h2,
  .h2 {
    font-size: 22px;
  }
  h3,
  .h3 {
    font-weight: bold;
    font-size: 18px;
    line-height: 140%;
  }
  .col2,
  .col3,
  .col4 {
    flex-wrap: wrap;
  }
  .col2 > .elem {
    width: 50%;
  }
  .col2.betw > .elem {
    width: calc(50% - 15px);
  }
  .col3 > .elem {
    width: 50%;
    box-sizing: border-box;
  }
  .col4 > .elem {
    width: 50%;
    box-sizing: border-box;
  }
  .col3.betw > .elem {
    width: calc(50% - 15px);
  }
  #head .phone {
    margin-left: auto;
    padding-left: 0px;
    background: none;
  }
  #head .gamb {
    margin-left: 0px;
    margin-right: 5px;
  }
  #head .logo {
    margin-right: 0px;
  }
  #head .phone a {
    font-size: 14px;
  }
  .home .b1 > .wrapper:before {
    background: #072e2a url(../images/mob_h2.jpg) no-repeat center center;
    left: auto;
    background-size: cover;
    right: 0;
    left: 0;
    width: auto;
    margin: auto;
  }
  .home .b1 .wrapper {
    min-height: 200px;
  }
  .home h1 {
    display: none;
    margin-top: 40px;
    padding: 0 10px;
    margin-bottom: 40px;
  }
  .home .b1 {
    height: auto;
  }
  .home .b2 {
    margin-top: 0;
  }
  .home .plit .elem {
    min-height: 120px;
  }
  .home .ht {
    display: none;
  }
  .home .b2 > div {
    width: 100%;
  }
  #br .b1 {
    height: auto;
    background-size: cover;
  }
  #br .b1 h1 {
    margin-top: 40px;
  }
  #br .b1 h1,
  #br .b1 .desc {
    margin-left: 0px;
  }
  #br .b1 .desc {
    margin-bottom: 40px;
    font-size: 16px;
  }
  .col3 > .elem {
    width: 50%;
  }
  #br .b3 .h2 {
    font-size: 18px;
  }
  #br .b2 {
    margin-top: 15px;
  }
  #br .b6 {
    display: none;
  }
  #br .b7,
  #br .b8 .col4 {
    flex-wrap: wrap;
  }
  #br .b8 .elem {
    width: calc(50% - 10px);
    margin-bottom: 20px;
  }
  #br .b9 .txt {
    padding-left: 0;
  }
  #br .b9 .predesc {
    margin: 15px 0;
  }
  #serv .map {
    display: none;
  }
  #serv .b6 .elem {
    width: calc(50% - 10px);
  }
  #serv .b6 .elem .butb {
    font-size: 14px;
  }
  #serv .b6 .elem.spec {
    margin-left: 0px;
    padding: 10px;
    background: none;
    align-self: stretch;
    border: 1px solid #f5f6f8;
  }
  #serv .b1 .elem {
    width: 100%;
  }
  #serv .b1 .elem img {
    margin-top: 20px;
  }
  .dil .vibc .ili {
    margin: 20px 0;
  }
  .dil .vibc > .elem {
    width: 100%;
  }
  .dil .vibc {
    flex-wrap: wrap;
  }
  #cat .prd {
    flex-wrap: wrap;
  }
  #cat .dop_img {
    display: none;
  }
  #cat .img {
    width: 100%;
    padding: 0;
    text-align: center;
    justify-content: center;
  }
  #cat .img img {
    box-shadow: unset;
  }
  #cat .pinfo {
    text-align: center;
    padding: 10px;
  }
  #cat .pinfo .b1 {
    flex-wrap: wrap;
    justify-content: center;
  }
  #cat .pinfo .name {
    margin-top: 10px;
  }
  .ugol_h,
  .sort {
    display: none;
  }
  #prd .main_prd {
    padding: 1px 0;
    box-shadow: none;
  }
  .wrap_li {
    display: none;
  }
  #prd .b1 {
    flex-wrap: wrap;
  }
  #prd .b1 .elem {
    width: calc(50% - 10px);
    margin-bottom: 10px;
  }
  #prd .mb .price span {
    line-height: 140%;
  }
  .elem .cir {
    margin-bottom: 10px;
  }
  #prd .b2 img {
    margin-top: 15px;
  }
  #prd .mainc .row {
    flex-wrap: wrap;
  }
  #prd .mainc .row img {
    margin: 10px 0;
  }
  #prd .mainc .row .elem {
    width: 100%;
  }
  .table .tr .td:first-child {
    padding-left: 10px;
  }
  .table .tr .td {
    padding-right: 10px;
  }
  #head .menu_top .item {
    padding: 14px 8px;
  }
  #con .big,
  #con .map {
    width: 100%;
  }
  #con .map {
    margin-top: 24px;
    height: 400px;
  }
  #prd .mb .comb h1 {
    margin-top: 15px;
  }
  #prd .also .h1 {
    margin: 0px 0;
  }
  .desc_main .row:nth-child(2n) {
    flex-direction: column-reverse !important;
  }
}
@media screen and (max-width: 480px) {
  .col2 > .elem {
    width: 100%;
  }
  .zform textarea.p100 {
    min-height: 220px;
  }
  .kk2 .pl {
    display: none;
  }
  .col2.betw > .elem {
    width: 100%;
  }
  .col3 > .elem {
    width: 100%;
    box-sizing: border-box;
  }
  .col4 > .elem {
    width: 100%;
    box-sizing: border-box;
  }
  .col3.betw > .elem {
    width: 100%;
  }
}
@media screen and (min-width: 1800px) {
  .br_nav .d {
    display: block;
    background-color: unset;
    font-weight: normal;
  }
  .br_nav .active .d {
    background-color: #f5f6f8;
    font-weight: bold;
  }
}
.brd .back {
  min-height: 200px;
  max-height: 300px;
  background: url("../images/n_a.jpg") no-repeat center center;
  background-size: cover;
}

.brd .hj {
  background-color: #072e2a;
  color: #fff;
  padding: 20px 15px;
}

.brd .hj h1 {
  margin-bottom: 20px;
}

#bn_m .m,
#bn_m .s {
  display: none;
}

@media screen and (max-width: 1000px) {
  #bn_m {
    margin-top: 0 !important;
  }
}
@media screen and (max-width: 700px) {
  #bn_m .f {
    display: none;
  }
  #bn_m .m {
    display: block;
  }
}
@media screen and (max-width: 400px) {
  #bn_m .m {
    display: none;
  }
  #bn_m .s {
    display: block;
  }
}
.war ol li {
  margin-bottom: 20px;
}

.form_uni .prde {
  display: none;
}

.form_uni.prd_new .cmb {
  width: 1100px;
}

.form_uni.prd_new .prde {
  display: block;
}

.form_uni.prd_new .elem {
  padding: 0 10px;
}

.form_uni.prd_new textarea {
  height: 117px;
}

.form_uni.prd_new .z_ {
  display: none;
}

.form_uni.prd_new .z_2 {
  padding: 12px 40px;
}

.form_uni.prd_new .poli {
  padding: 0 10px;
  margin-top: 0px;
}

.form_uni .usl {
  display: none;
}

.form_uni.prd_new .usl {
  display: flex;
}

.form_uni.prd_new ul {
  margin-left: 22px;
}

.form_uni.prd_new li {
  padding: 5px 0;
}

.form_uni.prd_new .title {
  font-weight: bold;
  margin-bottom: 10px;
}

.form_uni.prd_new {
  z-index: 2;
}

@media screen and (max-width: 800px) {
  .form_uni.prd_new .elem {
    padding: 0;
  }
  .form_uni.prd_new .poli {
    padding: 0;
    margin-top: 10px;
  }
  .form_uni.prd_new #zh {
    margin-top: 30px;
  }
}
.form_uni #zdesc {
  text-align: center;
  margin-top: 16px;
  color: #666;
}

.form_uni #zdesc span {
  font-weight: bold;
}

.oldp {
  display: inline-block;
  color: #777;
  font-size: 13px !important;
  text-decoration: line-through;
  margin-right: 10px;
}

#not_bf li:before {
  display: none !important;
}

#zdesc > span {
  color: #072e2a;
}

#footer .logo {
  cursor: pointer;
}

.mob {
  display: none !important;
}

@media screen and (max-width: 1000px) {
  .mob {
    display: block !important;
  }
}
/*new mainc*/
.mainc.new .bg {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

#prd .mainc.new .row {
  margin-top: 0;
}

#prd .mainc.new .row .elem {
  width: 50%;
  box-sizing: border-box;
  align-self: stretch;
  color: #fff;
}

#prd .mainc.new .row .txt {
  color: #fff;
}

#prd .mainc.new .row .elem:not(.bg) {
  padding: 50px 38px;
}

#prd.new .b3 {
  margin-top: 0;
}

@media screen and (max-width: 700px) {
  #prd.new .desc_main .row:nth-child(2n) {
    flex-direction: column !important;
  }
  #prd.new .mainc.new .row .elem:not(.bg) {
    padding: 15px 10px;
  }
  #prd.new .mainc.new .row .elem {
    width: 100%;
  }
  #prd.new .mainc .row img {
    margin: 0;
  }
}
#wsc {
  position: relative;
}

#wsc .tns-nav {
  text-align: center;
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 20px;
}

#wsc .tns-nav > [aria-controls] {
  width: 45px;
  height: 10px;
  padding: 0;
  margin: 0 5px;
  background: #d9d9d9;
  border: 0;
}

#wsc .tns-nav > .tns-nav-active {
  background: #999;
}

.favorite-button {
  position: relative;
}

.search-button svg,
.favorite-button svg {
  max-width: 100%;
  width: 19px;
  height: auto;
  fill: #999;
  pointer-events: none;
}
@media screen and (min-width: 1000px) {
  .search-button svg,
  .favorite-button svg {
    width: 29px;
  }
}

.favorite-button__count {
  padding: 3px;
  min-width: 15px;
  min-height: 15px;
  justify-content: center;
  align-items: center;
  height: auto;
  box-sizing: border-box;
  display: none;
  position: absolute;
  right: -5px;
  top: -5px;
  font-size: 10px;
  line-height: 1;
  vertical-align: middle;
  font-weight: 700;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--cl-warning);
  color: var(--cl-light);
}
@media screen and (min-width: 1200px) {
  .favorite-button__count {
    min-width: 18px;
    min-height: 18px;
    font-size: 12px;
    top: -5px;
    right: 0;
  }
}

.favorite-button.favorite-button--active .favorite-button__count {
  display: flex;
}

.close-button {
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.close-button svg {
  fill: #000000;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  z-index: 100;
}

.header__wrapper {
  padding: 11px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
}
@media screen and (min-width: 1000px) {
  .header__wrapper {
    padding: 20px 0;
  }
}

.header__menu {
  width: 36px;
  height: 36px;
  overflow: hidden;
  order: 3;
}
@media screen and (min-width: 1000px) {
  .header__menu {
    width: 100%;
    height: inherit;
    overflow: visible;
  }
}

.header__lang-panel {
  order: 2;
  display: none;
}
@media screen and (min-width: 1000px) {
  .header__lang-panel {
    display: none;
  }
}

.header__logo {
  flex: 0 0 50px;
  order: 1;
}
.header__logo svg {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 1000px) {
  .header__logo {
    flex: 0 0 65px;
    margin-right: 16px;
  }
}
@media screen and (min-width: 1200px) {
  .header__logo {
    flex: 0 0 90px;
    margin-right: 8px;
  }
}

.header.hidden {
  opacity: 0;
  transform: translateY(-100%);
}

.header.visible {
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  opacity: 1;
  transform: translateY(0);
}

.logo-main {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.logo-main svg {
  max-width: 100%;
}

.no-scroll {
  overflow: hidden;
  height: 100vh;
}

.burger {
  width: 36px;
  height: 36px;
  display: block;
  position: relative;
  cursor: pointer;
}
@media screen and (min-width: 1000px) {
  .burger {
    display: none;
  }
}

.burger__line {
  position: absolute;
  width: 32px;
  height: 2px;
  background: #000000;
  top: 50%;
  left: 50%;
  transform: translate(-50%);
  border-radius: 4px;
  transition: all 0.3s ease-in;
}
.burger__line::before,
.burger__line::after {
  content: "";
  position: absolute;
  width: 32px;
  height: 2px;
  background: #000000;
  left: 50%;
  top: 50%;
  border-radius: 4px;
  transition: all 0.3s ease-in;
}
.burger__line::before {
  transform: translate(-50%, calc(-50% - 8px));
}
.burger__line::after {
  transform: translate(-50%, calc(-50% + 8px));
}

.nav-menu {
  padding: 45px 20px 45px;
  max-height: 0;
  overflow: hidden;
  background: #ffffff;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1000px) {
  .nav-menu {
    padding: 0;
    min-height: 57px;
    max-height: -moz-fit-content;
    max-height: fit-content;
    height: auto;
    overflow-y: hidden;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
  }
}

.nav-menu__list-wrapper {
  flex: 1 1 auto;
  height: auto;
  transition: width 0.3s ease;
}
@media screen and (min-width: 1000px) {
  .nav-menu__list-wrapper {
    margin-right: 12px;
    flex: 1 0 38%;
  }
}
@media screen and (min-width: 1200px) {
  .nav-menu__list-wrapper {
    margin-right: 20px;
  }
}

.nav-menu__list {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 24px;
  line-height: 84%;
  vertical-align: middle;
}
@media screen and (min-width: 1000px) {
  .nav-menu__list {
    margin: -8px;
    flex-direction: row;
    justify-content: center;
    font-size: 16px;
    line-height: 110%;
    width: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .nav-menu__list {
    margin: -16px;
    font-size: 18px;
  }
}

.nav-menu__item {
  white-space: nowrap;
  text-align: center;
  width: 100%;
}
.nav-menu__item:hover > a,
.nav-menu__item:hover > p {
  opacity: 0.5;
}
@media screen and (min-width: 1000px) {
  .nav-menu__item {
    width: -moz-fit-content;
    width: fit-content;
  }
}

@media screen and (min-width: 1000px) {
  .nav-menu__item--mob-only {
    display: none;
  }
}

.nav-menu__link {
  font-size: inherit;
  padding: 18px;
  box-sizing: border-box;
  display: block;
  text-align: inherit;
}
@media screen and (min-width: 1000px) {
  .nav-menu__link {
    padding: 8px;
    width: -moz-min-content;
    width: min-content;
  }
}
@media screen and (min-width: 1200px) {
  .nav-menu__link {
    padding: 16px;
  }
}

.nav-menu__item--submenu {
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.nav-menu__submenu-title {
  position: relative;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.nav-menu__submenu-title span {
  margin-right: 4px;
}
.nav-menu__control {
  transition: all 0.3s ease-in;
}

.nav-menu__search {
  margin-bottom: 40px;
  box-sizing: border-box;
}
@media screen and (min-width: 1000px) {
  .nav-menu__search {
    margin-bottom: 0;
    margin-right: 30px;
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media screen and (min-width: 1200px) {
  .nav-menu__search {
    margin-right: 20px;
  }
}
@media screen and (min-width: 1300px) {
  .nav-menu__search {
    margin-right: min(10vw, 127px);
  }
}

.nav-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
@media screen and (min-width: 1000px) {
  .nav-submenu {
    position: absolute;
    background: #ffffff;
    top: 70%;
    transform: translateX(10px);
    z-index: 100;
    border-radius: 5px;
    box-shadow: 0 0 7px -1px #999;
  }
}

.nav-submenu__item:hover a {
  opacity: 0.5;
}

.nav-submenu__link {
  padding: 18px;
  display: block;
  transition: opacity 0.3s ease-in;
}

.nav-menu__phone {
  text-align: center;
  font-family: "Blender Pro";
  font-weight: 900;
  font-size: 35px;
  line-height: 90%;
  white-space: nowrap;
}
@media screen and (min-width: 1000px) {
  .nav-menu__phone {
    font-size: 40px;
    flex: 0 0 min-content;
  }
}
@media screen and (min-width: 1200px) {
  .nav-menu__phone {
    font-size: 46px;
  }
}

.nav-menu__contacts {
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 1000px) {
  .nav-menu__contacts {
    display: none;
  }
}

.nav-menu__contacts .contacts__item {
  padding: 8px;
  width: 50px;
}
@media screen and (min-width: 1000px) {
  .nav-menu__contacts .contacts__item {
    padding: 12px;
  }
}

.menu-open .burger__line {
  background: transparent;
}
.menu-open .burger__line::before {
  display: block;
  transform: translate(-50%, 0) rotate(-45deg);
}
.menu-open .burger__line::after {
  display: block;
  transform: translate(-50%, 0) rotate(45deg);
}

.menu-open .nav-menu {
  width: 100%;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 100;
  overflow-y: auto;
}

.menu-open .header__lang-panel {
  display: block;
}

.nav-menu__item--open-submenu .nav-menu__submenu-title .nav-menu__control {
  transform: rotate(180deg);
}

.search-field {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
}
.search-field::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #000000;
  border-radius: 2px;
}
@media screen and (min-width: 1000px) {
  .search-field::before {
    display: none;
    justify-content: flex-end;
  }
}

.search-field__form {
  width: 100%;
  display: flex;
}
@media screen and (min-width: 1000px) {
  .search-field__form {
    max-width: 0;
    overflow: hidden;
  }
}

.search-field__field {
  padding: 8px 0;
  margin-right: 8px;
  min-height: 28px;
  width: 100%;
  font-size: 18px;
  line-height: 110%;
  box-sizing: border-box;
}
.search-field__field::-moz-placeholder {
  color: #999;
}
.search-field__field::placeholder {
  color: #999;
}

.search-field__close-button {
  display: none;
}

.search-field__button {
  flex: 0 0 24px;
  width: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.search-field__button--favorite {
  display: none;
}
.search-field__button--open {
  display: none;
}
@media screen and (min-width: 1000px) {
  .search-field__button {
    margin-right: 8px;
    flex: 0 0 23px;
  }
  .search-field__button:last-child {
    margin-right: 0;
  }
  .search-field__button--favorite {
    display: flex;
  }
  .search-field__button--open {
    display: flex;
  }
}
@media screen and (min-width: 1200px) {
  .search-field__button {
    margin-right: min(1vw, 16px);
    flex: 0 0 36px;
  }
  .search-field__button:last-child {
    margin-right: 0;
  }
}

.search-open #search-button {
  display: none;
}
@media screen and (min-width: 1000px) {
  .search-open .nav-menu__list-wrapper {
    overflow: hidden;
    display: none;
  }
}
.search-open .nav-menu__search {
  flex: 1 1 auto;
}
.search-open .search-field__form {
  max-width: 100%;
  transition: all 0.5s ease;
}
@media screen and (min-width: 1000px) {
  .search-open .search-field__form {
    margin-right: 20px;
    position: relative;
    display: flex;
  }
  .search-open .search-field__form::before {
    content: "";
    width: 100%;
    height: 1px;
    background: #000000;
    border-radius: 2px;
    position: absolute;
    bottom: 0;
  }
}
@media screen and (min-width: 1000px) {
  .search-open .search-field__close-button {
    display: block;
  }
}

.navigation-list {
  margin: -10px;
  font-size: 16px;
  line-height: 120%;
}
@media screen and (min-width: 1000px) {
  .navigation-list {
    margin: -8px;
    font-size: 18px;
  }
}

.navigation-list__link {
  padding: 12px 10px;
  box-sizing: border-box;
  display: block;
  transition: var(--transition-main);
}
.navigation-list__link:hover,
.navigation-list__link:active {
  opacity: 0.5;
}
@media screen and (min-width: 1000px) {
  .navigation-list__link {
    padding: 8px;
  }
}

.contact-footer__phone {
  margin-bottom: 12px;
  display: block;
}

.contact-footer__text {
  margin-bottom: var(--spacing-m);
  color: var(--cl-light);
  font-size: 14px;
  line-height: 120%;
}
@media screen and (min-width: 1000px) {
  .contact-footer__text {
    font-size: 24px;
  }
}

.footer-phone {
  font-family: "Blender Pro";
  text-transform: uppercase;
  font-size: 24px;
  line-height: 90%;
  font-weight: 900;
  color: var(--cl-light);
}
@media screen and (min-width: 1000px) {
  .footer-phone {
    font-size: 46px;
  }
}

.footer {
  padding-top: 60px;
  padding-bottom: 150px;
  position: relative;
  background: var(--cl-shadow);
  color: var(--cl-haze);
}
@media screen and (min-width: 1000px) {
  .footer {
    padding-bottom: 60px;
  }
}

@media screen and (min-width: 1000px) {
  .footer__wrapper {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: repeat(3, auto);
    row-gap: 120px;
    -moz-column-gap: 16px;
    column-gap: 16px;
  }
}

.footer__navigation {
  margin-bottom: 60px;
}
@media screen and (min-width: 1000px) {
  .footer__navigation {
    margin: -10px;
    display: flex;
    margin-bottom: 0;
    grid-row: 1/2;
    grid-column: 1/2;
  }
}

.footer__navigation-list {
  margin-bottom: 12px;
}
.footer__navigation-list:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 1000px) {
  .footer__navigation-list {
    padding: 10px;
    margin-bottom: 0;
    flex: 1 0 30%;
  }
}

.footer__language {
  margin-bottom: 60px;
}
@media screen and (min-width: 1000px) {
  .footer__language {
    margin-bottom: 0;
    grid-row: 2/3;
    grid-column: 1/3;
  }
}

.footer__contact-block {
  margin-bottom: 120px;
}
@media screen and (min-width: 1000px) {
  .footer__contact-block {
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    grid-row: 1/3;
    grid-column: 2/3;
  }
}

@media screen and (min-width: 1000px) {
  .footer__copyright-block {
    grid-row: 3/4;
    grid-column: 1/3;
  }
}

.footer__copyright-text {
  margin-bottom: 13px;
  font-size: 12px;
}
@media screen and (min-width: 1000px) {
  .footer__copyright-text {
    font-size: 16px;
  }
}

.footer__copyright-img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
  fill: var(--cl-light);
}

.footer__contacts-item {
  width: 36px;
  height: auto;
}
.footer__contacts-item svg {
  width: 100%;
}
@media screen and (min-width: 1000px) {
  .footer__contacts-item {
    width: 56px;
  }
}

.footer__main-link {
  display: block;
}

.button-menu {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #999;
}
.button-menu .button-menu__image-block {
  position: relative;
  width: 100%;
  margin-bottom: var(--spacing);
  flex: 1 1 24px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.button-menu .button-menu__image-block svg {
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  fill: #999;
  transition: all 0.3s ease-in;
}
.button-menu .button-menu__text-block {
  width: 100%;
  font-size: 12px;
  line-height: 116%;
  text-align: center;
  transition: all 0.3s ease-in;
}
.button-menu .button-menu__text-block p {
  font-size: inherit;
}

.button-menu__count {
  display: none;
  padding: 3px;
  min-width: 18px;
  min-height: 18px;
  justify-content: center;
  align-items: center;
  height: auto;
  box-sizing: border-box;
  display: none;
  position: absolute;
  left: 50%;
  top: -5px;
  transform: translateX -9px;
  font-size: 12px;
  line-height: 1;
  vertical-align: middle;
  font-weight: 700;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--cl-warning);
  color: var(--cl-light);
}

.button-menu.button-menu--active .button-menu__count {
  display: flex;
}

.search-simple__field-block {
  display: flex;
  align-items: center;
  position: relative;
}
.search-simple__field-block::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #000000;
  border-radius: 2px;
}

.search-simple__field {
  flex: 1 1 auto;
  padding: var(--spacing);
}
.search-simple__field::-moz-placeholder {
  font-size: 18px;
  color: #999;
}
.search-simple__field::placeholder {
  font-size: 18px;
  color: #999;
}

.menu-bar {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #ffffff;
  z-index: 80;
  box-sizing: border-box;
}
@media screen and (min-width: 1000px) {
  .menu-bar {
    display: none;
  }
}

.menu-bar__list {
  padding: 16px;
}

.menu-bar__search {
  padding: 16px;
  box-sizing: border-box;
}

.menu-bar__search__wrapper {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease-in;
}

.menu-list {
  margin: calc(-1 * var(--spacing-sm));
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.menu-list__item {
  padding: var(--spacing-sm);
  flex: 0 0 calc(20% - 8 * var(--spacing-sm));
}

.menu-list__item:hover .button-menu {
  color: #000000;
}
.menu-list__item:hover .button-menu svg {
  fill: #000000;
}

.psr {
  position: relative;
}

.catalog_desc {
  padding: 30px 40px 20px;
  background-color: #1e1e1e;
  color: #fff;
  position: absolute;
  z-index: 4;
  border-radius: 12px;
  left: 170px;
  top: 81px;
  display: none;
}
.catalog_desc.show {
  animation: AnTop 0.4s linear 0s 1 normal forwards;
  display: block;
  overflow: hidden;
}
.catalog_desc a {
  display: inline-block;
  font-size: 30px;
  color: #fff;
  padding: 10px 20px;
  border: 1px solid #ffffff;
  background-color: #1e1e1e;
  border-radius: 20px;
  white-space: nowrap;
  margin-bottom: 14px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s 0s;
}
.catalog_desc a:hover {
  transform: rotate(-8deg);
  background-color: #0b413b;
  color: #fff;
}

.main_content {
  padding-top: 58px;
  position: relative;
}
@media screen and (min-width: 1000px) {
  .main_content {
    padding-top: 85px;
  }
}
@media screen and (min-width: 1200px) {
  .main_content {
    padding-top: 101px;
  }
}

.main_content.black {
  position: relative;
}
.main_content.black:after {
  display: block;
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  background-color: rgba(0, 0, 0, 0.7);
  animation: AnBlack 0.4s linear 0s 1 normal forwards;
}

@keyframes AnTop {
  0% {
    height: 0px;
  }
  100% {
    height: 120px;
  }
}
@keyframes AnBlack {
  0% {
    background-color: rgba(0, 0, 0, 0);
  }
  100% {
    background-color: rgba(0, 0, 0, 0.7);
  }
}
.pbb {
  padding-bottom: 80px;
}

.pb_desk {
  padding-bottom: 40px;
}

.pbb_desk {
  padding-bottom: 80px;
}

@media screen and (max-width: 1000px) {
  .pb_desk,
  .pbb_desk {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 700px) {
  .pbb {
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 400px) {
  .pbb {
    padding-bottom: 50px;
  }
}
/*Стили нового меню*/
@media screen and (min-width: 1000px) {
  .yzv.new {
    box-shadow: none;
    padding-top: 15px;
    position: absolute;
    left: 0;
    right: 0;
    z-index: 5;
  }
  .yzv.new .wr_yzv {
    box-shadow: 0 0 2px 0px #999;
    left: -32px;
    z-index: 5;
    padding: 30px 40px 20px;
    background-color: #1e1e1e;
    color: #fff;
    position: absolute;
    border-radius: 12px;
  }
  .yzv.new .p {
    display: inline-block;
    font-size: 30px;
    color: #fff;
    padding: 10px 20px;
    border: 1px solid #ffffff;
    background-color: #1e1e1e;
    border-radius: 20px;
    white-space: nowrap;
    margin-bottom: 14px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s 0s;
  }
  .yzv.new .p:hover {
    transform: rotate(-8deg);
    background-color: #fb2b2b;
    color: #1e1e1e;
  }
}
@media screen and (max-width: 1000px) {
  .yzv.new .p {
    padding: 14px 5px;
  }
  .yzv.new .p:last-child {
    margin-bottom: -14px;
  }
}
.elem .cir {
  width: 80px;
  height: 80px;
  margin: auto;
  background-color: #1e1e1e;
  border-radius: 14px;
}

.cir {
  position: relative;
  font-family: "Helvetica", "Arial", sans-serif;
}

.cir .param {
  color: var(--cl-light);
  font-size: 10px;
  text-align: center;
  position: absolute;
  margin: auto;
  font-weight: bold;
}

.brief_card .icons .name {
  display: none !important;
}

.cir.ves {
  background: #1e1e1e url("../images/ves.svg") no-repeat center center;
}

.cir.ves .param {
  font-size: 9px;
  line-height: 11px;
  width: 30px;
  top: 38px;
  left: 0;
  right: 0;
  font-weight: bold;
}

.cir.po {
  background: #1e1e1e url("../images/po.svg") no-repeat center center;
}

.cir.po .param {
  line-height: 12px;
  top: 40px;
  left: 0;
  right: 0;
  font-size: 10px;
}

.cir.maskr {
  background: #1e1e1e url("../images/maskr.svg") no-repeat top 6px center;
  background-size: 63px;
}

.cir.maskr.i {
  background: #1e1e1e url("../images/maskr_i.svg") no-repeat top 15px center;
}

.cir.maskr .param {
  line-height: 12px;
  bottom: 11px;
  left: 0;
  right: 0;
}

.cir.pod {
  background: #1e1e1e url("../images/pod.svg") no-repeat top 15px center;
  background-size: 50px;
}

.cir.pod .param {
  line-height: 12px;
  bottom: 11px;
  left: 0;
  right: 0;
}

.cir.pro {
  background: #1e1e1e url("../images/pro.svg") no-repeat top 25px center;
}

.cir.pro .param {
  line-height: 12px;
  bottom: 11px;
  left: 0;
  right: 0;
}

.cir.z {
  background: #1e1e1e url("../images/z.svg") no-repeat top -21px center;
  background-size: 123px;
}

.cir.z .param {
  line-height: 12px;
  bottom: 11px;
  left: 0;
  right: 0;
}

.cir.mes {
  background: #1e1e1e url("../images/mes.svg") no-repeat top 17px center;
  background-size: 60px;
}

.cir.mes .param {
  line-height: 12px;
  bottom: 11px;
  left: 0;
  right: 0;
}

.cir.kor {
  background: #1e1e1e url("../images/kor.svg") no-repeat top 14px center;
}

.cir.kor .param {
  line-height: 12px;
  bottom: 18px;
  left: 0;
  right: 0;
}

.cir.d {
  background: #1e1e1e url("../images/3d.svg") no-repeat center center;
}

.cir.d.d4 {
  background: #1e1e1e url("../images/4d.svg") no-repeat center center;
}

.cir.d.d8 {
  background: #1e1e1e url("../images/8d.svg") no-repeat center center;
}

.cir.vibro {
  background: #1e1e1e url("../images/vibro.svg") no-repeat center center;
  background-size: 70% auto;
}

.i_ms .cir.cnt_r {
  background: #1e1e1e url("../images/cnt_r.svg") no-repeat center center;
}
.i_ms .cir.time {
  background: #1e1e1e url("../images/time.svg") no-repeat center center;
  background-size: 75% 50% !important;
}
.i_ms .cir.lvl_p {
  background: #1e1e1e url("../images/lvl_p.svg") no-repeat center center;
  background-size: 75% 50% !important;
}
.i_ms .cir.lvl_p .param,
.i_ms .cir.cnt_r .param,
.i_ms .cir.time .param,
.i_ms .cir.remen .param {
  font-size: 9px;
  line-height: 11px;
  width: 30px;
  top: 5px;
  left: 0;
  right: 0;
  font-weight: bold;
}
.i_ms .cir.auto {
  background: #1e1e1e url("../images/auto.svg") no-repeat center center;
}
.i_ms .cir.travel {
  background: #1e1e1e url("../images/travel.svg") no-repeat center center;
}
.i_ms .cir.akb {
  background: #1e1e1e url("../images/akb.svg") no-repeat center center;
}
.i_ms .cir.control {
  background: #1e1e1e url("../images/control.svg") no-repeat center center;
}
.i_ms .cir.rm {
  background: #1e1e1e url("../images/rm.svg") no-repeat center center;
}
.i_ms .cir.uni {
  background: #1e1e1e url("../images/loc_uni.svg") no-repeat center center;
}
.i_ms .cir.eyes {
  background: #1e1e1e url("../images/loc_eyes.svg") no-repeat center center;
}
.i_ms .cir.hand {
  background: #1e1e1e url("../images/loc_hand.svg") no-repeat center center;
}
.i_ms .cir.back {
  background: #1e1e1e url("../images/loc_back.svg") no-repeat center center;
}
.i_ms .cir.feet {
  background: #1e1e1e url("../images/loc_feet.svg") no-repeat center center;
}
.i_ms .cir.neck {
  background: #1e1e1e url("../images/loc_neck.svg") no-repeat center center;
}
.i_ms .cir.sho {
  background: #1e1e1e url("../images/loc_sho.svg") no-repeat center center;
}
.i_ms .cir.head {
  background: #1e1e1e url("../images/loc_head.svg") no-repeat center center;
}
.i_ms .cir.pult {
  background: #1e1e1e url("../images/pult.svg") no-repeat center center;
}
.i_ms .cir.remen {
  background: #1e1e1e url("../images/remen.svg") no-repeat center center;
}
.i_ms .cir.bluetooth {
  background: #1e1e1e url("../images/bluetooth.svg") no-repeat center center;
}
.i_ms .cir.remen .param {
  bottom: 5px;
  top: auto;
}
.i_ms .cir {
  background-size: 85% 60% !important;
}

.cookie-banner {
  padding: 20px;
  margin: auto 10px auto auto;
  width: 300px;
  box-sizing: border-box;
  position: fixed;
  right: 0;
  bottom: 100px;
  z-index: 1000;
  color: var(--cl-light);
  background: var(--cl-void-04);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  border-radius: 20px;
  border: 1px solid var(--cl-light);
}
@media screen and (min-width: 1000px) {
  .cookie-banner {
    margin-right: 40px;
  }
}

.cookie-banner__text-block {
  margin-bottom: 20px;
}
.cookie-banner__text-block p {
  margin: 0 0 10px;
  font-size: 12px;
}
.cookie-banner__text-block p:last-child {
  margin-bottom: 0;
}

.cookie-banner__button {
  padding: 12px;
  width: 100%;
  box-sizing: border-box;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--cl-light);
  background: var(--cl-accent);
}

.cookie-banner__link {
  color: inherit;
}
.cookie-banner__link:focus {
  outline: none;
}
