.btn {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  padding: 8px 24px;
  border-radius: 2px;
  transition: background 0.2s;
  display: block; }
  .btn--blue {
    color: #fff;
    background: #3883d9; }
    .btn--blue:hover {
      background: #2862a5; }
  .btn--orange {
    color: #fff;
    background: #ff6a14; }
    .btn--orange:hover {
      background: #e25d10; }
  .btn--default {
    color: #373737;
    background: #fff; }
    .btn--default:hover {
      color: #373737; }
  .btn--transparent {
    color: #ff6a14;
    background: transparent; }
    .btn--transparent:hover {
      color: #e25d10; }

.logo {
  display: flex;
  align-items: center; }
  .logo__image {
    width: 100%;
    position: relative; }
  .logo--header .logo__image {
    max-width: 353px; }
  .logo--footer .logo__image {
    max-width: 252px; }

.crumbs {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #988e88;
  margin: 0 0 8px; }
  .crumbs__link {
    color: #988e88; }
  .crumbs__slash {
    margin: 0 4px;
    display: inline-flex; }

.close--modal {
  width: 48px;
  height: 48px;
  position: absolute;
  top: 0;
  right: -48px;
  background: #fff;
  mask: url(/images/icons/close.svg) no-repeat center / 24px; }
  .close--gallery {
    width: 48px;
    height: 48px;
    position: absolute;
    top: 0;
    right: -48px;
    background: #fff;
    mask: url(/images/icons/close.svg) no-repeat center / 24px; }
  .close--popup {
    width: 48px;
    height: 48px;
    position: absolute;
    top: 10px;
    right: 13px;
    z-index: 100;
    background: #000;
    mask: url(/images/icons/close.svg) no-repeat center / 24px; }
  .close--filters {
    display: flex; }

.notice {
  padding: 24px;
  margin: 0 0 24px; }
  .notice p {
    font-weight: 400;
    font-size: 12px;
    line-height: 167%;
    margin: 0 0 16px; }
  .notice--grey {
    background: #f4f4f4; }
    .notice--grey p {
      color: #373737; }
  .notice .btn {
    display: inline-block; }
  .notice:last-child {
    margin: 0; }

.no-scroll {
  overflow: hidden; }

.header {
  padding: 10px 0 32px;
  position: relative; }
  .header__city {
    position: relative;
    margin: 0 0 10px; }
    .header__city-link {
      font-weight: 400;
      font-size: 16px;
      color: #373737;
      display: inline-flex;
      align-items: center;
      gap: 4px; }
      .header__city-link span {
        border-bottom: 1px dashed #373737; }
      .header__city-link:before {
        content: '';
        width: 16px;
        height: 16px;
        background: url(/images/icons/pin.svg) no-repeat center / 16px;
        flex: 0 0 auto; }
    .header__city-content {
      display: inline-flex;
      position: relative; }
  .header__nav {
    display: flex;
    gap: 12px; }
    .header__nav-link {
      font-weight: 500;
      font-size: 16px;
      line-height: 150%;
      color: #373737;
      opacity: 1;
      transition: opacity 0.2s; }
      .header__nav-link:hover {
        opacity: 0.8; }
    .header__nav-item {
      padding: 10px 0;
      position: relative; }
      .header__nav-item:hover .header__submenu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto; }
  .header__submenu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 2;
    min-width: 180px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: #fff;
    padding: 12px 16px;
    border-top: 2px solid #ff6a14;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    pointer-events: none;
    transition: 0.25s ease; }
    .header__submenu-link {
      font-size: 15px;
      line-height: 150%;
      color: #373737;
      text-decoration: none;
      transition: opacity 0.2s; }
      .header__submenu-link:hover {
        opacity: 0.7; }
  .header__phone {
    font-weight: 500;
    font-size: 24px;
    line-height: 133%;
    color: #ff6a14; }
  .header__callback {
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: #3883d9;
    transition: color 0.2s; }
    .header__callback:hover, .header__callback:focus {
      color: #2862a5; }
  .header__item--logo {
    order: 1; }
    .header__item--nav {
      order: 2; }
    .header__item--contacts {
      order: 3;
      text-align: right; }
  .header__content {
    display: flex;
    justify-content: space-between;
    align-items: center; }

.callback {
  width: 100%;
  max-width: 340px;
  display: none;
  position: absolute;
  top: 100px;
  left: 50%;
  margin-left: 280px;
  z-index: 11;
  border-radius: 4px;
  padding: 12px 16px;
  box-shadow: 0 0 20px 0 rgba(104, 104, 104, .25);
  background: #fbfbfc; }
  .callback__content {
    margin: 0 0 12px; }
  .callback .input-field {
    margin: 0 0 10px; }
    .callback .input-field:last-child {
      margin: 0; }
  .callback.open {
    display: block; }

.arrow {
  width: 44px;
  height: 48px;
  position: absolute;
  inset: 0;
  right: auto;
  margin: auto;
  border-radius: 0 4px 4px 0;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10; }
  .arrow::before {
    content: '';
    width: 24px;
    height: 24px;
    background: #242440;
    transition: opacity 0.2s;
    transform: rotate(180deg);
    mask: url(/images/arrows/arrow_l.svg) no-repeat center / 24px; }
  .arrow--right {
    border-radius: 4px 0 0 4px;
    right: 0;
    left: auto; }
    .arrow--right::before {
      transform: none; }
  .arrow:hover:before {
    opacity: 0.8; }
  .arrow.slick-disabled {
    cursor: default; }
    .arrow.slick-disabled:before {
      opacity: 0.4; }
    .arrow.slick-disabled:hover {
      opacity: 1; }

.product-arrow {
  width: 20px;
  height: 20px;
  position: absolute;
  inset: 0;
  left: 4px;
  right: auto;
  margin: auto;
  border-radius: 2px;
  background: #fff;
  box-shadow: 0 0 20px 0 rgba(104, 104, 104, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10; }
  .product-arrow::before {
    content: '';
    width: 20px;
    height: 20px;
    background: #3883d9;
    transition: opacity 0.2s;
    transform: rotate(180deg);
    flex: 0 0 auto;
    mask: url(/images/arrows/arrow_s.svg) no-repeat center / 24px; }
  .product-arrow--right {
    right: 4px;
    left: auto; }
    .product-arrow--right::before {
      transform: none; }
  .product-arrow:hover:before {
    opacity: 0.8; }
  .product-arrow.slick-disabled {
    cursor: default; }
    .product-arrow.slick-disabled:before {
      opacity: 0.4; }
    .product-arrow.slick-disabled:hover {
      opacity: 1; }

.title--main {
  font-weight: 600;
  font-size: 32px;
  line-height: 125%;
  margin: 0 0 24px; }
  .title--inner {
    font-weight: 600;
    font-size: 32px;
    line-height: 125%;
    margin: 0 0 24px; }
  .title--product {
    font-weight: 500;
    font-size: 32px;
    line-height: 125%;
    color: #373737; }
  .title--popup {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%; }

.catalog {
  margin: 0 0 44px;
  display: flex;
  gap: 44px; }

.categories {
  display: flex;
  gap: 44px; }
  .categories__item {
    padding: 20px 16px;
    min-height: 216px;
    background: #f4f4f4;
    position: relative;
    flex: 0 0 calc((100% - 88px) / 3); }
    .categories__item-image {
      /*object-fit: cover;*/
      object-fit: contain;
      position: absolute;
      bottom: 0; }
  .categories__title {
    font-weight: 500;
    font-size: 24px;
    line-height: 133%;
    color: #373737;
    display: flex; }
    .categories__title span {
      max-width: 50%; }
    .categories__title:before {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 1; }

.categories--catalog {
  margin: 0 0 44px; }
  .categories--catalog .categories__item-image {
    width: 140px;
    height: 192px;
    right: 16px; }

.categories--service {
  margin: 0 0 44px; }
  .categories--service .categories__item {
    background-image: url("/images/service_left_bottom_vector.svg"), url("/images/service_right_top_vector.svg");
    background-repeat: no-repeat, no-repeat;
    background-position: left bottom, right top; }
  .categories--service .categories__item-image {
    width: 192px;
    height: 192px;
    right: 0; }

.categories-slider {
  margin-bottom: 32px; }
  .categories-slider__item {
    margin: 0 8px; }
  .categories-slider__image {
    width: 46px;
    height: 46px;
    object-fit: cover; }
  .categories-slider__wrapper {
    padding: 8px 24px;
    position: relative;
    background: #f4f4f4;
    display: flex;
    gap: 16px; }
  .categories-slider__title {
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    color: #373737;
    max-width: 200px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block; }
    .categories-slider__title:before {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 1; }
  .categories-slider__price {
    font-weight: 500;
    font-size: 14px;
    line-height: 143%;
    color: #373737; }
  .top-categories__item {
    padding: 20px 16px;
    margin: 0 0 16px;
    min-height: 150px;
    background: #f4f4f4;
    position: relative; }
    .top-categories__item-image {
      width: fit-content;
      height: 110px;
      object-fit: contain;
      position: absolute;
      right: 0;
      bottom: 0;
      right: 20px; }
    .top-categories__item:last-child {
      margin: 0; }
  .top-categories__title {
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: #373737;
    display: flex; }
    .top-categories__title span {
      max-width: 50%; }
    .top-categories__title:before {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 1; }

.facets {
  width: 100%;
  margin: 0 0 44px;
  position: relative; }
  .facets__item {
    position: relative;
    border-top: 1px solid #d4d4d4; }
    .facets__item:first-child {
      border: none; }
  .facets__title {
    font-weight: 500;
    font-size: 24px;
    line-height: 133%;
    color: #373737;
    padding: 16px 0;
    display: flex;
    align-items: center;
    justify-content: space-between; }
    .facets__title.open:after {
      background-position: bottom center; }
    .facets__title:after {
      content: '';
      width: 24px;
      height: 24px;
      margin: 4px 0;
      background: url(/images/collapse.svg) no-repeat top center / 24px auto;
      flex: 0 0 auto; }
    .facets__title--price:after {
      content: none; }
  .facets__options {
    margin: 0 0 24px; }
  .facets .btn--orange {
    font-weight: 500;
    display: none;
    white-space: nowrap; }
  .facets .btn-container {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 10;
    margin: auto;
    margin-left: 384px;
    display: flex;
    align-items: center; }
  .facets .checkbox-container {
    margin: 0 0 16px; }
    .facets .checkbox-container:last-child {
      margin: 0; }

.facets-container {
  flex: 0 0 384px; }

.product__head {
  margin: 0 0 44px;
  display: flex;
  gap: 44px; }
  .product__slider {
    max-width: 384px;
    margin: 0 0 32px; }
  .product__gallery {
    flex: 0 0 384px; }
    .product__gallery .notice .btn {
      font-size: 12px;
      line-height: 167%; }
  .product__options {
    width: 100%; }
    .product__options-content {
      margin: 0 0 12px;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 24px; }
    .product__options-row {
      flex: 0 0 calc(50% - 12px); }
    .product__options-btn {
      font-weight: 600;
      font-size: 16px;
      line-height: 150%;
      color: #3883d9;
      border-radius: 2px;
      padding: 4px 8px;
      background: rgba(56, 131, 217, 0.07);
      display: inline-flex;
      align-items: center;
      gap: 4px; }
      .product__options-btn:after {
        content: '';
        width: 20px;
        height: 20px;
        background: #3883d9;
        mask: url(/images/arrows/arrow_s.svg) no-repeat center / 20px; }
    .product__options-list {
      display: flex;
      flex-wrap: wrap;
      gap: 4px; }
    .product__options-item {
      font-weight: 500;
      font-size: 16px;
      line-height: 150%;
      color: #373737;
      padding: 4px 12px;
      border: 1px solid #ebe7e5;
      border-radius: 2px;
      display: block;
      transition: border-color 0.2s, box-shadow 0.2s; }
      .product__options-item.active, .product__options-item:hover {
        border-color: #3883d9;
        box-shadow: 0px 0px 0px 1px #3883d9; }
    .product__options-title {
      font-weight: 500;
      font-size: 24px;
      line-height: 133%;
      color: #373737;
      margin: 0 0 12px; }
    .product__options-label {
      font-weight: 500;
      font-size: 16px;
      line-height: 150%;
      color: #373737;
      margin: 0 0 8px; }
      .product__options-label span {
        color: #988e88; }
    .product__options-types {
      display: flex;
      gap: 4px; }
      .product__options-types .c-grey {
        color: #fff;
        background: #676767; }
      .product__options-types .c-brown {
        color: #fff;
        background: #433b3e; }
    .product__options-group {
      padding: 12px;
      margin: 0 0 12px;
      width: 100%;
      border: 1px solid #ebe7e5;
      border-radius: 4px; }
  .product__options-container {
    margin: 0 0 12px; }
    .product__options-container:last-of-type {
      margin: 0; }
  .product__type {
    height: 98px;
    padding: 2px;
    border: 1px solid #ebe7e5;
    border-radius: 2px;
    transition: border-color 0.2s, box-shadow 0.2s; }
    .product__type-image {
      width: 46px;
      height: 92px;
      display: block;
      object-fit: cover; }
    .product__type--color {
      font-weight: 400;
      font-size: 10px;
      line-height: 100%;
      text-align: center;
      max-width: 50px;
      display: flex; }
    .product__type-color-name {
      height: 100%;
      display: flex;
      align-items: end;
      padding-bottom: 8px;
      overflow-wrap: anywhere; }
    .product__type.active, .product__type:hover {
      border-color: #3883d9;
      box-shadow: 0px 0px 0px 1px #3883d9; }
  .product__right {
    flex: 0 0 277px; }
  .product__info {
    padding: 24px;
    background: #f4f4f4;
    position: sticky;
    top: 20px; }
    .product__info .btn {
      margin: 0 0 12px;
      display: block;
      text-align: center; }
    .product__info .btn-container {
      margin: 0 0 16px; }
  .product__price {
    font-weight: 500;
    font-size: 24px;
    line-height: 133%;
    color: #373737;
    margin: 0 0 16px; }
  .product__actions li {
    margin: 0 0 12px; }
    .product__actions li:last-child {
      margin: 0; }
    .product__actions-item {
      font-weight: 500;
      font-size: 16px;
      line-height: 150%;
      color: #988e88;
      display: inline-flex;
      align-items: center;
      gap: 8px; }
    .product__actions-item:before {
      content: '';
      width: 20px;
      height: 20px;
      background: #988e88; }
    .product__actions-item.active {
      color: #3883d9; }
      .product__actions-item.active:before {
        background: #3883d9; }
    .product__actions-item--info:before {
      mask: url(/images/icons/info.svg) no-repeat center / 20px; }
    .product__actions-item--share:before {
      mask: url(/images/icons/share.svg) no-repeat center / 20px; }
    .product__actions-item--download:before {
      mask: url(/images/icons/download.svg) no-repeat center / 20px; }
    .product__actions--head {
      margin: 0 0 16px; }
  .product__content {
    margin: 0 0 44px;
    display: flex;
    gap: 44px; }

.product-preview__item {
  padding: 24px 32px;
  margin: 0 0 24px;
  position: relative;
  background: #f4f4f4;
  display: flex;
  gap: 44px; }
  .product-preview__item:last-child {
    margin: 0; }
  .product-preview__price {
    font-weight: 500;
    font-size: 24px;
    line-height: 133%;
    margin: 0 0 12px; }
  .product-preview__color {
    margin: 0 0 12px; }
  .product-preview__color-more {
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: #3883d9; }
  .product-preview__notice {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #988e88;
    margin-top: 12px;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2; }
  .product-preview__description .btn {
    display: inline-block; }
  .product-preview .color-list {
    margin: 0 0 12px; }

.products__section {
  margin: 0 0 32px; }
  .products__section:last-child {
    margin: 0; }
  .products--main {
    flex: 0 1 auto; }

.feature-section {
  margin: 0 0 44px; }
  .feature-section__title {
    font-weight: 600;
    font-size: 32px;
    line-height: 125%;
    color: #373737;
    margin: 0 0 32px; }
  .feature-section__left {
    flex: 0 0 277px; }
  .feature-section__body {
    display: flex;
    gap: 44px; }
  .feature-section__image {
    width: 100%; }
  .feature-section:last-child {
    margin: 0; }

.feature-list {
  width: 100%; }
  .feature-list__item {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    padding: 16px 0;
    color: #373737;
    border-bottom: 1px solid #d4d4d4;
    display: flex; }
  .feature-list__item:last-child {
    border: none; }
  .feature-list__label {
    color: #988e88;
    width: 50%; }
  .feature-list__value {
    width: 50%; }

.props-list {
  width: 100%;
  counter-reset: item; }
  .props-list__item {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    margin: 0 0 12px;
    counter-increment: item;
    position: relative; }
  .props-list__item::before {
    content: counter(item);
    color: #ff6a14; }
  .props-list__item:last-child {
    margin: 0; }

.photo-list {
  margin: 0 0 32px;
  display: flex;
  gap: 12px; }
  .photo-list__image {
    width: 186px;
    height: 398px;
    object-fit: cover; }
  .photo-list--preview {
    margin: 0;
    gap: 28px; }
  .photo-list--preview .photo-list__image {
    width: 130px;
    height: 280px; }

.color-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px; }
  .color-list__link {
    width: 44px;
    height: 44px;
    border-radius: 4px;
    border: 1px solid #dadadb;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s, box-shadow 0.2s; }
  .color-list__link.active {
    border-color: #3883d9;
    box-shadow: inset 0 0 0 1px #3883d9; }
  .color-list__link:hover {
    border-color: #3883d9;
    box-shadow: inset 0 0 0 1px #3883d9; }
  .color-list__image {
    width: 14px;
    height: 28px;
    object-fit: cover; }

.price-range {
  max-width: 270px; }
  .price-range__fields {
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px; }
  .price-range__fields .input-field {
    font-weight: 500;
    font-size: 24px;
    line-height: 133%;
    width: 100%;
    padding: 8px 0;
    padding-left: 25px;
    background: #fff;
    border-bottom: 2px solid #dadadb; }
  .price-range__fields .input-field::placeholder {
    font-weight: 500;
    font-size: 24px;
    line-height: 133%; }
  .price-range__fields .field-container {
    position: relative; }
  .price-range__prefix {
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: #988e88;
    position: absolute;
    bottom: 12px; }

.slider {
  margin: 0 0 44px;
  height: 400px; }
  .slider__item:before {
    content: '';
    width: 100%;
    max-width: 640px;
    height: 100%;
    max-height: 400px;
    background: url(/images/preview/slider_wrapper@2x.png) no-repeat center;
    background-size: cover;
    position: absolute;
    inset: 0; }
  .slider__image {
    /*width: 100%;*/
    margin-left: 50%;
    width: 50%;
    height: 400px;
    object-fit: cover; }
  .slider__notice {
    font-weight: 500;
    font-size: 48px;
    line-height: 120%;
    color: #373737;
    padding: 0 100px;
    padding-right: 40px;
    margin: 0;
    max-width: 640px;
    overflow-y: hidden;
    position: absolute;
    inset: 0;
    right: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px; }
  .slider__notice span {
    font-size: 36px;
    line-height: 120%;
    font-weight: 400;
    color: #ee7c3a; }

.city-list {
  display: flex;
  flex-wrap: wrap;
  gap: 44px; }
  .city-list__group {
    margin: 0 0 44px; }
  .city-list__group:last-child {
    margin: 0; }
  .city-list__column {
    flex: 0 0 calc((100% - 132px) / 4); }
  .city-list__letter {
    font-weight: 500;
    font-size: 24px;
    line-height: 133%;
    color: #373737;
    margin: 0 0 16px;
    text-transform: uppercase; }
  .city-list__link {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #3883d9; }

.city-popup {
  width: 230px;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -105px;
  z-index: 11;
  margin-top: 32px;
  border-radius: 2px;
  box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, .1); }
  .city-popup__content {
    padding: 15px;
    position: relative;
    border-radius: 4px;
    background: #fff; }
  .city-popup__content-link {
    color: #373737;
    border-bottom: 1px dashed #373737; }
  .city-popup__content:before {
    content: '';
    width: 0;
    height: 0;
    position: absolute;
    top: -8px;
    left: 0;
    right: 0;
    margin: auto;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #fff; }
  .city-popup .title--popup {
    margin: 0 0 10px; }
  .city-popup .btn {
    text-align: center;
    flex: 0 0 calc((100% - 4px) / 2); }
  .city-popup .btn-container {
    display: flex;
    gap: 4px; }

.city-selection {
  margin: 0 0 44px; }
  .city-selection__modal {
    width: 600px;
    padding: 44px; }
  .city-selection__modal .city-list {
    gap: 10px; }
  .city-selection__modal .city-list__column {
    flex: 0 0 calc((100% - 20px) / 3); }
  .city-selection__modal .city-list__item {
    margin: 0 0 10px; }
  .city-selection__modal .city-list__item:last-child {
    margin: 0; }
  .city-selection__modal .city-list__link {
    color: #373737;
    border-bottom: 1px dashed #373737; }
  .city-selection__modal .city-list__link:hover {
    border-color: transparent; }
  .city-selection__fields {
    margin: 0 0 32px; }
  .city-selection__notice {
    margin: 0 0 44px; }
  .city-selection__section {
    margin: 0 0 44px; }
  .city-selection__section:last-child {
    margin: 0; }
  .city-selection .text-content p {
    font-weight: 500; }

.selection-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px; }
  .selection-list__link {
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: #373737;
    display: flex;
    background: #f4f4f4;
    padding: 12px 24px; }
  .selection-list__link.active {
    color: #fff;
    background: #ff6a14; }

.contacts {
  margin: 0 0 44px; }
  .contacts__content {
    display: flex;
    gap: 44px; }
  .contacts__list {
    flex: 0 0 384px; }
  .contacts__item {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #373737;
    padding: 24px;
    margin: 0 0 24px;
    background: #f4f4f4; }
  .contacts__item:last-child {
    margin: 0; }
  .contacts__phone {
    color: #373737; }
  .contacts__shop {
    margin-top: 8px; }
  .contacts__address-sub {
    color: #988e88; }
  .contacts__email {
    color: #373737; }
  .contacts__schedule {
    margin: 0 0 16px;
    display: flex;
    gap: 16px; }
  .contacts__schedule:before {
    content: '';
    width: 24px;
    height: 24px;
    background: #ff6a14;
    display: flex;
    mask: url(/images/icons/clock.svg) no-repeat center / 24px;
    flex: 0 0 auto; }
  .contacts__emails {
    display: flex;
    gap: 16px; }
  .contacts__emails:before {
    content: '';
    width: 24px;
    height: 24px;
    background: #ff6a14;
    display: flex;
    mask: url(/images/icons/mail.svg) no-repeat center / 24px;
    flex: 0 0 auto; }
  .contacts__address {
    margin: 0 0 16px;
    display: flex;
    gap: 16px; }
  .contacts__address:before {
    content: '';
    width: 24px;
    height: 24px;
    background: #ff6a14;
    display: flex;
    mask: url(/images/icons/pin.svg) no-repeat center / 24px;
    flex: 0 0 auto; }
  .contacts__phones {
    margin: 0 0 16px;
    display: flex;
    gap: 16px; }
  .contacts__phones:before {
    content: '';
    width: 24px;
    height: 24px;
    background: #ff6a14;
    display: flex;
    mask: url(/images/icons/phone.svg) no-repeat center / 24px;
    flex: 0 0 auto; }
  .contacts__phones:last-child {
    margin: 0; }
  .contacts__map {
    width: 100%; }
  .contacts__map .map {
    position: sticky;
    top: 24px; }

.news__items {
  display: flex;
  flex-wrap: wrap;
  gap: 44px; }
  .news__item {
    padding: 24px;
    position: relative;
    background: #f4f4f4;
    flex: 0 0 calc((100% - 88px) / 3); }
  .news__date {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #988e88;
    margin: 0 0 8px; }
  .news__image {
    width: 100%;
    margin: 0 0 16px; }
  .news__title {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #373737; }
  .news__title:before {
    content: '';
    position: absolute;
    inset: 0; }
  .news__content {
    margin: 0 0 44px; }
  .news__content--inner {
    display: flex;
    gap: 44px; }
  .news__content--inner .news__image {
    margin: 0 0 16px; }
  .news__content--inner .news__date {
    margin: 0 0 8px; }
  .news__left {
    flex: 0 1 auto; }
  .news__right {
    flex: 0 0 384px; }
  .news__right .news__item {
    width: 100%;
    margin: 0 0 44px; }
  .news__right .news__item:last-child {
    margin: 0; }
  .news .text-content {
    margin: 0; }
  .news .selection-list {
    margin: 0 0 44px; }

.map__image {
  width: 100%; }

.content {
  margin: 0 0 44px; }
  .content p {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #373737;
    margin: 0 0 24px; }
  .content p:last-child {
    margin: 0; }
  .content__left {
    flex: 0 0 384px; }
  .content__right {
    width: 100%; }
  .content__menu {
    background: #f4f4f4;
    padding: 24px;
    position: sticky;
    top: 20px; }
  .content__menu-item {
    margin: 0 0 16px; }
  .content__menu-item:last-child {
    margin: 0; }
  .content__menu-link {
    font-weight: 500;
    font-size: 24px;
    line-height: 133%;
    color: #373737; }
  .content__item {
    margin: 0 0 44px; }
  .content__item:last-child {
    margin: 0; }
  .content__row {
    margin: 0 0 44px;
    display: flex;
    gap: 44px; }
  .content__row:last-child {
    margin: 0; }
  .content__column {
    flex: 0 0 calc((100% - 44px) / 2); }
  .content__column-image {
    width: 100%;
    height: 277px;
    object-fit: cover;
    display: block;
    margin: 0 0 16px; }
  .content__column--wide {
    flex: 0 0 100%; }
  .content__title {
    font-weight: 600;
    font-size: 32px;
    line-height: 125%;
    color: #373737;
    margin: 0 0 32px; }
  .content__title--column {
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    margin: 0 0 16px; }
  .content__employ-item {
    margin: 0 0 32px;
    display: flex;
    gap: 24px; }
  .content__employ-item:last-child {
    margin: 0; }
  .content__employ-image {
    width: 200px;
    height: 200px;
    object-fit: cover; }
  .content__employ-person {
    margin: 0 0 8px; }
  .content__employ-position {
    margin: 0 0 8px; }
  .content__employ-description {
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: #373737; }
  .content__employ-description p {
    font-weight: 400; }
  .content__vacancy {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #373737; }
  .content__vacancy-item {
    background: #f4f4f4;
    padding: 24px;
    margin: 0 0 32px; }
  .content__vacancy-item:last-child {
    margin: 0; }
  .content__vacancy-link {
    color: #3883d9; }
  .content__vacancy-title {
    font-weight: 500;
    font-size: 24px;
    line-height: 133%;
    color: #373737;
    margin: 0 0 8px; }
  .content__vacancy-description {
    margin: 0 0 8px; }
  .content__gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 44px; }
  .content__gallery-item {
    flex: 0 0 calc((100% - 44px) / 2); }
  .content__gallery-image {
    width: 100%;
    height: 215px;
    object-fit: cover; }
  .content__wrapper {
    display: flex;
    gap: 44px; }

.text-content {
  margin: 0 0 44px; }
  .text-content p {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #373737;
    margin: 0 0 24px; }
  .text-content p:last-child {
    margin: 0; }
  .text-content a {
    color: #ff6a14; }
  .text-content ul, .text-content ol {
    margin: 0 0 24px; }
  .text-content ul li, .text-content ol li {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #373737;
    margin-bottom: 16px; }
  .text-content ul li:last-child, .text-content ol li:last-child {
    margin-bottom: 0; }
  .text-content ul li {
    display: flex;
    align-items: center;
    gap: 12px; }
  .text-content ul li:before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ff6a14;
    flex-shrink: 0; }
  .text-content table {
    width: 100%;
    margin: 0 0 24px;
    border-collapse: collapse; }
  .text-content table:last-child {
    margin: 0; }
  .text-content th, .text-content td {
    border: 1px solid #ebe7e5;
    padding: 16px 24px;
    text-align: left; }
  .text-content th span, .text-content td span {
    color: #988e88; }
  .text-content ~ .btn-container {
    margin: 0 0 44px;
    display: flex;
    gap: 20px; }
  .text-content--narrow {
    max-width: 920px; }

.social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px; }
  .social__icon {
    width: 32px;
    height: 32px; }

.feedback {
  width: 100%;
  max-width: 564px;
  padding: 44px; }
  .feedback__left {
    width: 100%; }
  .feedback__right {
    flex: 0 0 157px; }
  .feedback__right-image {
    width: 100%;
    max-width: 157px;
    position: sticky;
    top: 0; }
  .feedback__preview {
    margin: 0 0 32px;
    display: flex;
    gap: 16px; }
  .feedback__preview-image {
    width: 150px;
    height: 150px;
    object-fit: cover;
    flex: 0 0 auto; }
  .feedback__preview-title {
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: #373737; }
  .feedback__preview-description p {
    font-weight: 400;
    font-size: 12px;
    line-height: 167%;
    color: #373737; }
  .feedback__fields {
    margin: 0 0 32px; }
  .feedback__notice {
    margin: 0 0 32px; }
  .feedback__notice p {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #373737; }
  .feedback__notice:last-child {
    margin: 0; }
  .feedback--call .title--inner {
    margin: 0 0 16px; }
  .feedback--completed .title--inner {
    margin: 0 0 16px;
    display: flex;
    align-items: center;
    gap: 24px; }
  .feedback--completed .title--inner:before {
    content: '';
    width: 40px;
    height: 40px;
    background: #0d8e5b;
    mask: url(/images/icons/completed.svg) no-repeat center / 40px;
    flex: 0 0 40px; }
  .feedback--completed .feedback__notice {
    margin-left: 64px; }
  .feedback--choice {
    width: 800px;
    max-width: 100%;
    max-height: 800px;
    overflow-y: auto; }
  .feedback--choice .feedback__content {
    display: flex;
    gap: 20px; }
  .feedback--choice .product__options-list {
    margin: 0; }
  .feedback--choice .product__options-types {
    flex-wrap: wrap; }
  .feedback--choice .product__options-content {
    margin: 0 0 32px;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 24px; }
  .feedback--choice .btn-container {
    display: flex;
    gap: 12px; }
  .feedback .field-container {
    margin: 0 0 24px; }
  .feedback .checkbox-container {
    margin: 0 0 24px; }
  .feedback .checkbox-field + label {
    font-size: 12px;
    line-height: 167%; }

.footer {
  padding: 44px 0;
  background-image: url("/images/footer_right_top_vector.svg"), url("/images/footer_left_bottom_vector.svg"), url("/images/footer_right_bottom_vector.svg");
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-position: right top, left bottom, right bottom;
  background-color: #f4f4f4; }
  .footer__nav-item {
    margin: 0 0 8px; }
  .footer__nav-item:last-child {
    margin: 0; }
  .footer__nav-link {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #373737;
    opacity: 1;
    transition: opacity 0.2s; }
  .footer__nav-link:hover {
    opacity: 0.8; }
  .footer__item {
    flex: 1; }
  .footer__item--contacts {
    flex: 0 0 353px; }
  .footer__title {
    font-weight: 500;
    font-size: 24px;
    line-height: 133%;
    margin: 0 0 20px; }
  .footer__phone {
    color: #373737; }
  .footer__address {
    margin: 0 0 8px; }
  .footer__contacts {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #373737;
    margin: 0 0 20px; }
  .footer__content {
    margin: 0 0 64px;
    display: flex;
    flex-wrap: wrap;
    gap: 32px; }
  .footer .logo--footer {
    margin: 0 0 20px; }

.mobile-arrow {
  display: none;
  width: 20px;
  height: 20px;
  position: relative;
  top: 4px;
  cursor: pointer;
  transition: transform 0.1s; }
  .mobile-arrow.open {
    transform: rotate(180deg); }

.mobile-popup {
  height: 100%;
  background: rgba(0, 0, 0, .2);
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: none;
  background: #fff; }
  .mobile-popup__content {
    padding: 15px;
    /*height: calc(100% - 115px);*/
    height: 100vh;
    position: relative;
    overflow-y: auto; }
  .mobile-popup--menu .header__nav {
    flex-direction: column; }
  .mobile-popup.open {
    display: block; }

.mobile-facets {
  font-weight: 500;
  font-size: 20px;
  line-height: 133%;
  color: #373737;
  margin: 0 0 24px;
  display: none;
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #ebe7e5;
  border-radius: 4px;
  background: #f4f4f4;
  align-items: center;
  gap: 12px; }
  .mobile-facets span {
    width: 100%; }
  .mobile-facets:before {
    content: '';
    width: 24px;
    height: 24px;
    background: #988e88;
    mask: url(/images/icons/filter.svg) no-repeat center / 24px;
    flex: 0 0 auto; }
  .mobile-facets:after {
    content: '';
    width: 20px;
    height: 20px;
    background: #000;
    mask: url(/images/arrows/arrow_s.svg) no-repeat center / 20px;
    transform: rotate(90deg);
    flex: 0 0 auto; }

.mobile-toggle {
  display: none;
  width: 24px;
  height: 24px;
  justify-content: center;
  align-items: center;
  order: 2; }
  .mobile-toggle__icon {
    width: 24px;
    height: 24px; }

.mobile-head {
  padding: 10px 15px;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #d4d4d4;
  display: flex;
  align-items: center;
  justify-content: space-between; }
  .mobile-head__item {
    flex: 1; }
  .mobile-head__item--title {
    font-weight: 500;
    font-size: 14px;
    line-height: 143%;
    text-align: center;
    flex: 2; }
  .mobile-head__item--close {
    display: flex;
    justify-content: end; }
  .mobile-head__clear {
    font-weight: 500;
    font-size: 12px;
    line-height: 167%;
    color: #ff6a14; }

.mobile-footer {
  padding: 15px;
  background: #f4f4f4;
  width: 100%; }
  .mobile-footer .btn--orange {
    width: 100%;
    text-align: center; }

.slider-for__image {
  width: 384px;
  height: 235px;
  object-fit: cover;
  margin: 0 0 16px; }

.slider-nav {
  position: relative; }
  .slider-nav__item {
    display: block;
    margin: 0 4px; }
  .slider-nav__image {
    width: 100%; }
  .slider-nav .product-arrow {
    left: 8px; }
  .slider-nav .product-arrow--right {
    left: auto; }

.gallery-arrow {
  width: 64px;
  height: 64px;
  position: absolute;
  inset: 0;
  left: -64px;
  right: auto;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10; }
  .gallery-arrow::before {
    content: '';
    width: 64px;
    height: 64px;
    background: #fff;
    transition: opacity 0.2s;
    transform: rotate(180deg);
    flex: 0 0 auto;
    mask: url(/images/arrows/arrow_xl.svg) no-repeat center / 64px; }
  .gallery-arrow--right {
    right: -64px;
    left: auto; }
  .gallery-arrow--right::before {
    transform: none; }
  .gallery-arrow:hover:before {
    opacity: 0.8; }
  .gallery-arrow.slick-disabled {
    cursor: default; }
  .gallery-arrow.slick-disabled:before {
    opacity: 0.4; }
  .gallery-arrow.slick-disabled:hover {
    opacity: 1; }
