html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

* {
  box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  max-width: 100%;
}

a, button {
  color: inherit;
  text-decoration: none;
}

button {
  background-color: transparent;
  border: none;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-family: inherit;
  cursor: pointer;
  padding: 0;
}

@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/Manrope-Medium.woff2") format("woff2"), url("/assets/fonts/Manrope-Medium.ttf") format("truetype");
  font-weight: 400;
}
@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/Manrope-SemiBold.woff2") format("woff2"), url("/assets/fonts/Manrope-SemiBold.ttf") format("truetype");
  font-weight: bold;
}
:root {
  --color-primary: #ba01c7;
  --color-deco-l: #e5e5e5;
  --color-deco-d: #242424;
  --color-text: #262627;
  --indent--xl: clamp(5rem, 12vw, 160px);
  --indent--lg: clamp(3rem, 7vw, 120px);
  --indent--md: clamp(2rem, 5vw, 80px);
  --indent--sm: clamp(1.5rem, 2.5vw, 52px);
}

html,
body {
  scroll-behavior: smooth;
}

html.--no-scroll {
  overflow-y: hidden;
}

body {
  font-family: "Manrope", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.15;
  background-color: #f7f7f7;
  color: var(--color-text);
}

.fw-main {
  margin-top: 70px;
  min-height: calc(100vh - 70px);
}
.fw-container {
  margin: 0px auto;
  width: 90%;
}
.fw-container--md {
  max-width: 80rem;
}
.fw-container--sm {
  max-width: 60rem;
}

.fh {
  height: 100%;
}

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

.indent--lg {
  padding-top: var(--indent--xl);
  padding-bottom: var(--indent--xl);
}

.flex {
  display: flex;
}

.justify-end {
  justify-content: flex-end;
}

.absolute, .atf {
  position: absolute;
}

.atf {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.img-cover {
  position: relative;
}
.img-cover:before {
  content: "";
  display: block;
}
.img-cover img {
  object-fit: cover;
  object-position: center center;
}
.img-16-9:before {
  padding-bottom: 56.25%;
}
.img-1-1:before {
  padding-bottom: 100%;
}
.img-4-3:before {
  padding-bottom: 56.25%;
}
.img-5-3:before {
  padding-bottom: 60%;
}

.h1 {
  font-size: clamp(2.5rem, 1rem + 4.5vw, 80px);
}
.h2 {
  font-size: clamp(1.75rem, 1rem + 3.5vw, 55px);
}
.h3 {
  font-size: clamp(1.5rem, 1rem + 2.5vw, 35px);
}
.h4 {
  font-size: clamp(1.2rem, 1rem + 0.75vw, 22px);
}
.h5 {
  font-size: calc(1rem + 0.25vw);
}
.h6 {
  font-size: 1rem;
}
.h0 {
  font-size: clamp(2.75rem, 1rem + 9.5vw, 100px);
}
@media screen and (max-width: 640px) {
  .h0 {
    font-size: 2rem;
    word-wrap: break-word;
  }
}

p {
  line-height: 1.25;
}
p > a {
  border-bottom: 2px solid currentColor;
}

a b,
p b,
button b {
  font-weight: bold;
}

.mt--xl {
  margin-top: var(--indent--xl) !important;
}
.mt--lg {
  margin-top: var(--indent--lg) !important;
}
.mt--md {
  margin-top: var(--indent--md) !important;
}
.mt--sm {
  margin-top: var(--indent--sm) !important;
}
.mb--xl {
  margin-bottom: var(--indent--xl) !important;
}
.mb--lg {
  margin-bottom: var(--indent--lg) !important;
}
.mb--md {
  margin-bottom: var(--indent--md) !important;
}
.mb--sm {
  margin-bottom: var(--indent--sm) !important;
}

.pt--xl {
  padding-top: var(--indent--xl) !important;
}
.pt--lg {
  padding-top: var(--indent--lg) !important;
}
.pt--md {
  padding-top: var(--indent--md) !important;
}
.pt--sm {
  padding-top: var(--indent--sm) !important;
}
.pb--xl {
  padding-bottom: var(--indent--xl) !important;
}
.pb--lg {
  padding-bottom: var(--indent--lg) !important;
}
.pb--md {
  padding-bottom: var(--indent--md) !important;
}
.pb--sm {
  padding-bottom: var(--indent--sm) !important;
}

.--tac {
  text-align: center;
}

.btn {
  font-weight: normal !important;
}
.btn--def {
  display: inline-block;
  padding: 1.5rem 6rem;
  border: 2px solid currentColor;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .btn--def {
    max-width: 100%;
    width: 100%;
  }
}
.btn--full {
  width: 100%;
}
.lnk {
  opacity: 1;
  transition: opacity 250ms cubic-bezier(0.215, 0.61, 0.355, 1);
}

.brd {
  border-bottom: 2px solid currentColor;
}

.fw-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  border-bottom: 1px solid #ededed;
  background-color: #fff;
  z-index: 8;
}
.fw-header__inner {
  display: grid;
  grid-template-columns: minmax(min-content, 20%) 1fr minmax(min-content, 20%);
  align-items: center;
  height: 100%;
}
@media screen and (min-width: 980px) {
  .fw-header__inner {
    grid-column-gap: 2.5rem;
  }
}
@media screen and (max-width: 980px) {
  .fw-header_nav {
    position: absolute;
    top: 69px;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.99);
    padding: 0 0 0 0;
    transform: translateX(-100%);
    transition: transform 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    max-height: calc(100vh - 160px);
    overflow-y: auto;
  }
  .fw-header_nav.--is-open {
    transform: translateX(0);
  }
}
@media screen and (min-width: 980px) {
  .fw-header_nav-list {
    display: flex;
    align-items: center;
    justify-content: space-around;
  }
}
@media screen and (max-width: 980px) {
  .fw-header_nav-list {
    width: 100%;
  }
}
.fw-header_nav-item {
  white-space: nowrap;
}
@media screen and (min-width: 980px) {
  .fw-header_nav-item {
    margin: 0 0.75rem;
  }
}
@media screen and (max-width: 980px) {
  .fw-header_nav-item {
    font-size: clamp(1.75rem, 1rem + 3.5vw, 55px);
  }
}
@media screen and (max-width: 980px) {
  .fw-header_nav-item + .fw-header_nav-item {
    margin-top: -1px;
  }
}
@media screen and (max-width: 980px) {
  .fw-header_nav-item > a {
    display: block;
    padding: 1.5rem 5%;
    border-top: 1px solid #ededed;
    border-bottom: 1px solid #ededed;
  }
}
@media screen and (min-width: 980px) {
  .fw-header_nav-item > a {
    padding: 0 0.5rem;
  }
}
.fw-header_nav-link {
  display: flex;
  align-items: center;
}
.fw-header_nav-link[dropdown-link]:after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 22px;
  margin-left: 0.5rem;
  transform: rotate(-180deg);
  transition: transform 250ms cubic-bezier(0.165, 0.84, 0.44, 1);
  background-size: 90%;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-image: url("data:image/svg+xml,%3Csvg class='css-13vhvx' width='13' height='24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.664 0 .891 10h11.547L6.664 0zm-1 9v15h2V9h-2z' fill='%23000'%3E%3C/path%3E%3C/svg%3E");
}
.fw-header_nav-link[dropdown-link].--is-active:after {
  transform: rotate(0deg);
}
.fw-header_dropdown {
  display: none;
}
@media screen and (min-width: 980px) {
  .fw-header_dropdown {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    margin-top: -1px;
    background-color: #f7f7f7;
    padding-top: 2rem;
    padding-bottom: 4rem;
    box-shadow: rgba(0, 44, 155, 0.05) 0px 4px 8px;
  }
}
@media screen and (max-width: 980px) {
  .fw-header_dropdown {
    position: relative;
    padding: 1.5rem 0;
  }
}
.fw-header_dropdown__full {
  display: grid;
  grid-template-columns: 320px 1fr;
}
.fw-header_dropdown-list {
  display: grid;
  align-items: stretch;
  grid-gap: 1rem 1.25vw;
}
@media screen and (min-width: 1280px) {
  .fw-header_dropdown-list.--grid-automedia {
    grid-template-columns: repeat(7, 1fr);
  }
}
@media (max-width: 1280px) and (min-width: 980px) {
  .fw-header_dropdown-list.--grid-automedia {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 980px) and (min-width: 640px) {
  .fw-header_dropdown-list.--grid-automedia {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 640px) {
  .fw-header_dropdown-list.--grid-automedia {
    grid-template-columns: repeat(2, 1fr);
  }
}
.fw-header_dropdown-item_title {
  position: relative;
  margin: 1rem 0 0 0;
  line-height: 1.25;
  font-weight: bold;
  z-index: 2;
}
.fw-header_dropdown-item_link {
  overflow: hidden;
}
@media screen and (min-width: 490px) {
  .fw-header_dropdown-item_link {
    display: block;
    text-align: center;
  }
}
@media screen and (max-width: 490px) {
  .fw-header_dropdown-item_link {
    display: flex;
    align-items: center;
  }
}
.fw-header_dropdown-item_media {
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.fw-header_dropdown-item_media .img-cover {
  transition: transform 450ms cubic-bezier(0.23, 1, 0.32, 1);
  transform: scale(1);
}
@media screen and (max-width: 490px) {
  .fw-header_dropdown-item_media {
    width: 25%;
    margin-right: 1.5rem;
  }
}
.fw-header_dropdown-item:hover .fw-header_dropdown-item_media .img-cover {
  transform: scale(1.05);
}
.fw-header [dropdown-link].--is-active + .fw-header_dropdown {
  display: block !important;
}
.fw-header_extra {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.fw-header_extra-item + .fw-header_extra-item {
  margin-left: 1.5rem;
}
@media screen and (max-width: 980px) {
  .fw-header_extra {
    flex-direction: row-reverse;
  }
}
.fw-header_mmtgl {
  position: relative;
  width: 2rem;
  height: 2rem;
  margin-left: 1.5rem;
}
@media screen and (min-width: 980px) {
  .fw-header_mmtgl {
    display: none;
  }
}
@media screen and (max-width: 980px) {
  .fw-header_mmtgl {
    display: block;
  }
}
.fw-header_mmtgl:before, .fw-header_mmtgl:after {
  content: "";
  position: absolute;
  left: 0;
  width: 2rem;
  height: 2px;
  background-color: currentColor;
  transform: rotate(0deg);
  transition: transform 250ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.fw-header_mmtgl:before {
  top: 0.75rem;
}
.fw-header_mmtgl:after {
  bottom: 0.75rem;
}
.fw-header_mmtgl.--is-active:before {
  transform: rotate(-45deg);
}
.fw-header_mmtgl.--is-active:after {
  transform: rotate(45deg);
  margin-bottom: 6px;
}
.fw-header__mask {
  position: fixed;
  top: 70px;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.214);
  backdrop-filter: blur(10px);
  transition: all 400ms cubic-bezier(0.19, 1, 0.22, 1);
  z-index: -1;
  opacity: 0;
  visibility: hidden;
}
.fw-header__mask.--is-visible {
  opacity: 1;
  visibility: visible;
}

.fw-logo {
  white-space: nowrap;
  font-weight: bold;
}
@media screen and (max-width: 640px) {
  .fw-logo {
    font-size: 1rem;
    word-wrap: break-word;
  }
}

.top-bar {
  padding: 0.75rem 0;
  font-size: 0.85rem;
  display: flex;
  flex-wrap: nowrap;
  overflow-y: auto;
}
.top-bar_item {
  white-space: nowrap;
}
.top-bar_item + .top-bar_item {
  position: relative;
  padding-left: 1.5rem;
}
.top-bar_item + .top-bar_item:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0.2rem;
  width: 1.1rem;
  height: 1px;
  background-color: currentColor;
}
.top-bar_item:nth-last-child(1) {
  pointer-events: none;
  opacity: 0.78;
  display: block;
}

.fw-footer {
  background-color: var(--color-deco-d);
  color: #fff;
}
.fw-footer__grid {
  display: grid;
}
@media screen and (min-width: 980px) {
  .fw-footer__grid {
    grid-template-columns: minmax(min-content, 80px) 1.25fr 2fr;
    grid-column-gap: 2.5rem;
  }
}
@media screen and (max-width: 980px) {
  .fw-footer__grid {
    grid-row-gap: 2.5rem;
  }
}
.fw-footer_nav {
  justify-self: center;
}
.fw-footer_nav-descr {
  opacity: 0.65;
  margin-bottom: 1.5rem;
}
.fw-footer_nav-item + .fw-footer_nav-item {
  margin-top: 1.25rem;
}
@media screen and (max-width: 980px) {
  .fw-footer_nav {
    display: none;
  }
}
@media screen and (max-width: 980px) {
  .fw-footer_logo {
    display: none;
  }
}
@media screen and (min-width: 980px) {
  .fw-footer_address {
    justify-self: center;
  }
}
.fw-footer_address-item_title {
  opacity: 0.65;
  margin-bottom: 1rem;
}
.fw-footer_address-item_info {
  line-height: 1.35;
}
.fw-footer_address-item + .fw-footer_address-item {
  margin-top: 1.5rem;
}

.text-description {
  text-align: center;
}
.text-description_title {
  position: relative;
}
@media screen and (min-width: 767px) {
  .text-description_title::after {
    content: "";
    position: relative;
    display: block;
    width: 60px;
    height: 2px;
    margin: 1.5rem auto;
    background-color: currentColor;
  }
}

.smedia-items {
  display: flex;
  flex-wrap: wrap;
  column-gap: 2rem;
}

.screen__grid {
  display: grid;
  grid-template-rows: auto;
  grid-row-gap: 2.5rem;
}
.screen-el {
  position: relative;
  text-align: center;
  padding-left: 5vw;
  padding-right: 5vw;
  z-index: 3;
}
@media screen and (min-width: 980px) {
  .screen-el {
    color: #fff;
  }
}
@media screen and (max-width: 980px) {
  .screen-el {
    color: var(--color-text);
  }
}
.screen-el_title {
  overflow-x: auto;
  overflow-y: hidden;
}
@media screen and (min-width: 980px) {
  .screen-el_title {
    grid-column: 1;
    grid-row: 2/3;
  }
}
@media screen and (max-width: 980px) {
  .screen-el_title {
    grid-row: 1;
    color: #242424;
    padding-top: 2.5rem;
  }
}
@media screen and (min-width: 980px) {
  .screen-el_action {
    grid-column: 1;
    grid-row: 3/4;
  }
}
@media screen and (max-width: 980px) {
  .screen-el_action {
    color: #242424;
  }
}
.screen_bg {
  position: relative;
}
@media screen and (min-width: 980px) {
  .screen_bg {
    grid-column: 1;
    grid-row: 1/5;
  }
}
@media screen and (max-width: 980px) {
  .screen_bg {
    grid-column: 1;
  }
}
.screen_bg .img-cover {
  max-height: calc(100vh - 70px);
  height: auto;
}
@media screen and (min-width: 980px) {
  .screen_bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.18);
    z-index: 1;
  }
}

@media screen and (max-width: 980px) {
  .home-intro {
    padding-top: 2.5rem !important;
  }
}
.home-intro__items {
  margin-top: var(--indent--xl);
  display: grid;
  grid-template-columns: repeat(20, 1fr);
}
@media screen and (max-width: 767px) {
  .home-intro__items {
    grid-gap: 1.25vw;
  }
}
.home-intro_item {
  position: relative;
  display: block;
  overflow: hidden;
  font-size: clamp(1.75rem, 1rem + 4.5vw, 65px);
}
@media screen and (max-width: 767px) {
  .home-intro_item {
    padding-bottom: 57.5%;
  }
}
.home-intro_item .img-cover {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 767px) {
  .home-intro_item:nth-child(1) .home-intro_item-mask {
    place-content: end end;
    transform: rotate(-90deg);
  }
}
@media screen and (min-width: 767px) {
  .home-intro_item:nth-child(1) {
    grid-column: 1/11;
    grid-row: 1/3;
    padding-bottom: 100%;
    background-color: #5a5a5a;
  }
}
@media screen and (max-width: 767px) {
  .home-intro_item:nth-child(1) {
    grid-column: 1/21;
    grid-row: 1;
  }
}
@media screen and (min-width: 767px) {
  .home-intro_item:nth-child(2) .home-intro_item-mask {
    place-content: end start;
    transform: rotate(-90deg);
  }
}
@media screen and (min-width: 767px) {
  .home-intro_item:nth-child(2) {
    grid-column: 11/16;
    grid-row: 1/2;
    background-color: #c5bdbd;
  }
}
@media screen and (max-width: 767px) {
  .home-intro_item:nth-child(2) {
    grid-column: 1/11;
    grid-row: 2;
    padding-bottom: 100%;
  }
}
@media screen and (min-width: 767px) {
  .home-intro_item:nth-child(3) .home-intro_item-mask {
    place-content: start end;
    transform: rotate(-90deg);
  }
}
@media screen and (min-width: 767px) {
  .home-intro_item:nth-child(3) {
    grid-column: 16/21;
    grid-row: 1/2;
    background-color: #a27e7e;
  }
}
@media screen and (max-width: 767px) {
  .home-intro_item:nth-child(3) {
    grid-column: 11/21;
    grid-row: 2;
    padding-bottom: 100%;
  }
}
@media screen and (min-width: 767px) {
  .home-intro_item:nth-child(4) .home-intro_item-mask {
    place-content: end end;
  }
}
@media screen and (min-width: 767px) {
  .home-intro_item:nth-child(4) {
    grid-column: 11/21;
    grid-row: 2/3;
    background-color: #a87070;
  }
}
@media screen and (max-width: 767px) {
  .home-intro_item:nth-child(4) {
    grid-column: 1/21;
    grid-row: 3;
  }
}
.home-intro_item-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: grid;
  color: #fff;
  font-weight: bold;
  transform: translateY(0%);
  padding: 2.5vw 5vw;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .home-intro_item-mask {
    place-content: end start;
  }
}
.home-intro_item-mask:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  transition: opacity 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0.15;
  z-index: -1;
}
.home-intro_item:hover .home-intro_item-mask:before {
  opacity: 0.25;
}

.home-products_items {
  position: relative;
  padding-left: 5%;
}
.home-products .tns-actions {
  display: flex;
  justify-content: flex-end;
  padding-right: 5%;
  margin-top: 1.5rem;
}

.home-services .mosaic-el_descr {
  background-color: #e5e5e5;
}
.home-services .mosaic-el_descr p {
  font-size: clamp(1.5rem, 1rem + 2.5vw, 35px);
}

.mosaic-block {
  overflow: hidden;
}
.mosaic-block .tns-outer,
.mosaic-block .tns-livereion,
.mosaic-block .tns-ovh,
.mosaic-block .tns-inner,
.mosaic-block .tns-slider {
  height: 100%;
}
@media screen and (min-width: 980px) {
  .mosaic-el.inv {
    flex-direction: row-reverse;
  }
}
@media screen and (min-width: 980px) {
  .mosaic-el {
    display: flex;
  }
}
@media screen and (min-width: 980px) {
  .mosaic-el:nth-child(2n) {
    flex-direction: row-reverse;
  }
}
.mosaic-el_descr {
  display: flex;
  align-items: center;
  flex: 1 0 50%;
  padding: 2.5rem 5vw;
}
@media screen and (max-width: 980px) {
  .mosaic-el_descr {
    padding: clamp(4rem, 10vw, 120px) 5vw;
  }
}
.mosaic-el_descr-subtitle {
  margin-top: 1.5rem;
}
.mosaic-el_descr p {
  font-size: clamp(1.2rem, 1rem + 0.75vw, 22px);
}
.mosaic-el_descr p + p {
  margin-top: 1rem;
}
.mosaic-el_media {
  position: relative;
  max-height: 100vh;
  flex: 1 0 50%;
}
.mosaic-el_media .img-cover {
  height: 100%;
  min-height: 100%;
  max-height: calc(100vh - 80px);
  overflow: hidden;
}
.mosaic-block {
  position: relative;
}
@media screen and (max-width: 980px) {
  .mosaic-block .tns-nav {
    display: none;
  }
}
@media screen and (min-width: 980px) {
  .mosaic-block .tns-nav {
    position: absolute;
    bottom: 2.5rem;
    width: 40%;
    z-index: 2;
  }
}
@media screen and (min-width: 980px) {
  .mosaic-block .tns-actions {
    display: none;
  }
}
@media screen and (max-width: 980px) {
  .mosaic-block .tns-actions {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
  }
}
.mosaic-block .tns-btn {
  color: #fff;
}

.tns-nav > [aria-controls] {
  width: 12px;
  height: 12px;
  background: var(--color-deco-d);
}

.tns-nav > .tns-nav-active {
  background: var(--color-primary);
}

.tns-btn {
  position: relative;
  width: 60px;
  height: 60px;
}
.tns-prev .arrow {
  transform: rotate(-90deg);
}
.tns-next .arrow {
  transform: rotate(90deg);
}

.page-title {
  padding-top: var(--indent--md);
  padding-bottom: var(--indent--md);
}

.catalog__inner {
  padding-bottom: var(--indent--lg);
}
.catalog-title {
  margin-bottom: var(--indent--md);
  padding-top: var(--indent--md);
}
@media screen and (max-width: 980px) {
  .catalog-title {
    margin-top: var(--indent--md);
    margin-bottom: var(--indent--md);
  }
}
.catalog__grid {
  display: grid;
  align-items: stretch;
  grid-gap: 2.5rem 1rem;
}
@media screen and (min-width: 980px) {
  .catalog__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 980px) {
  .catalog__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.catalog-nav_actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--color-deco-l);
  max-width: 100%;
  overflow-x: auto;
}
@media screen and (max-width: 980px) {
  .catalog-nav_actions {
    margin-bottom: 1rem;
  }
}
@media screen and (min-width: 980px) {
  .catalog-nav_actions {
    margin-bottom: 2rem;
  }
}
.catalog-nav_actions-filters {
  white-space: nowrap;
  margin-right: 1rem;
}
@media screen and (max-width: 980px) {
  .catalog-nav_actions-filters {
    font-weight: bold;
  }
}
.catalog-item {
  position: relative;
  overflow: hidden;
  font-size: clamp(1.2rem, 1rem + 0.75vw, 22px);
}
.catalog-item_link {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  z-index: 2;
}
.catalog-item_link:hover:after, .catalog-item_link:focus:after, .catalog-item_link:focus-visible:after {
  transform: scaleY(1);
}
.catalog-item_link:hover .img-cover, .catalog-item_link:focus .img-cover, .catalog-item_link:focus-visible .img-cover {
  width: 87.5%;
}
.catalog-item_media {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #edebeb;
  padding-bottom: 100%;
  z-index: 3;
}
.catalog-item_media .img-cover {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media screen and (min-width: 980px) {
  .catalog-item_media .img-cover {
    width: 85%;
  }
}
@media screen and (max-width: 980px) {
  .catalog-item_media .img-cover {
    width: calc(100% - 10vw);
  }
}
.catalog-item_title {
  position: relative;
  margin-top: 1rem;
  white-space: normal;
  letter-spacing: -0.5px;
  line-height: 1.25;
  text-align: center;
  z-index: 3;
}

.full-bg .catalog-item_link:after {
  transform: scaleY(1);
}
.category__inner {
  padding-top: var(--indent--sm);
  padding-bottom: var(--indent--lg);
}
@media screen and (min-width: 980px) {
  .category__inner {
    display: grid;
    grid-template-columns: 320px 1fr;
    column-gap: 2.5vw;
  }
}
@media screen and (min-width: 980px) {
  .category-nav {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}
@media screen and (max-width: 980px) {
  .category-nav__holder {
    position: fixed;
    top: 0;
    left: 0;
    transform: translateX(-100%);
    width: 100%;
    height: 100%;
    padding-top: 100px;
    padding-bottom: 70px;
    padding-left: 5vw;
    padding-right: 5vw;
    overflow-y: auto;
    transition: transform 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
    background-color: rgba(255, 255, 255, 0.98);
    z-index: 8;
  }
}
.category-nav__holder.--is-active {
  transform: translateX(0%);
}
.category-nav__holder.--is-active .category-nav_extra {
  display: flex;
}
.category-nav_extra {
  display: none;
}
.category-nav_extra__close {
  position: absolute;
  top: 2.5rem;
  right: 50%;
  transform: translateX(50%);
}
.category-nav_list-item {
  position: relative;
  display: block;
  width: 100%;
  padding: 0.65rem 0;
}
.category-nav_list-item + .category-nav_list-item {
  border-top: 1px solid var(--color-deco-l);
}
.category-nav_list-item .name {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  width: 100%;
}
.category-nav_list-item .name.active + ul {
  display: block;
}
.category-nav_list-item ul {
  display: none;
  padding: 0.75rem 0 0.75rem 1.5rem;
}
.category-nav_list-item ul li + li {
  margin-top: 0.65rem;
}
.category-nav_list-item.active ul {
  display: block;
}
.category-nav_list-item.active .chevron {
  transform: rotate(-180deg);
}
.category_actions {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  padding-bottom: 1rem;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-deco-l);
}
.category_actions-filters {
  white-space: nowrap;
  margin-right: 5vw;
}
@media screen and (max-width: 980px) {
  .category_actions-filters {
    font-weight: bold;
  }
}
@media screen and (min-width: 980px) {
  .category_actions-filters {
    pointer-events: none;
    display: none;
  }
}
.category_tags {
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
}
@media screen and (max-width: 980px) {
  .category_tags {
    min-width: 100%;
  }
}
.category_tags-list {
  display: flex;
  flex-wrap: nowrap;
  padding-right: 5vw;
  padding-top: 1rem;
}
.category_tags-list li {
  padding-bottom: 0.5rem;
}
.category_tags-list li + li {
  margin-left: 2rem;
}
.category__grid {
  display: grid;
  align-items: stretch;
  grid-gap: 1.5rem 1rem;
}
@media screen and (min-width: 1400px) {
  .category__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 1400px) {
  .category__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.product__inner {
  padding-bottom: var(--indent--md);
}
.product-hero {
  position: relative;
  display: grid;
  align-items: center;
}
@media screen and (min-width: 1200px) {
  .product-hero {
    grid-template-columns: repeat(2, 1fr);
  }
}
.product-hero_descr {
  display: grid;
  align-items: center;
  grid-row-gap: 2rem;
}
@media screen and (min-width: 1200px) {
  .product-hero_descr {
    min-height: calc(100vh - 70px);
    padding-left: 5vw;
  }
}
@media screen and (max-width: 980px) {
  .product-hero_descr {
    grid-row: 2;
  }
}
@media screen and (max-width: 1200px) {
  .product-hero_descr-title {
    margin-top: 2.5rem;
  }
}
.product-hero_descr-info {
  border-top: 1px solid var(--color-deco-l);
  padding-top: 1.5rem;
}
@media screen and (max-width: 1200px) {
  .product-hero_descr-info {
    grid-row: 2;
  }
}
.product-hero_descr-info_item {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 1.5rem;
}
.product-hero_descr-info_item + .product-hero_descr-info_item {
  margin-top: 0.5rem;
}
.product-hero_actions {
  padding-bottom: 2.5rem;
}
.product-media {
  position: relative;
}
@media screen and (min-width: 1200px) {
  .product-media {
    display: flex;
    column-gap: 1rem;
  }
}
.product-media .tns-outer {
  width: 100%;
}
.product-media_main {
  width: 100%;
}
.product-media_thumbnails {
  position: absolute;
  top: 1.25vw;
  left: 1.25vw;
}
@media screen and (max-width: 1200px) {
  .product-media_thumbnails {
    position: relative;
  }
}
@media screen and (max-width: 1200px) {
  .product-media_thumbnails .thumbnails {
    display: flex;
    justify-content: center;
  }
}
.product-media_img {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #edebeb;
  padding-bottom: 100%;
}
.product-media_img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
@media screen and (min-width: 1200px) {
  .product-media .thumbnails li {
    margin-bottom: 4px;
  }
}
@media screen and (max-width: 980px) {
  .product-media .thumbnails li {
    width: 50px;
  }
}
@media screen and (max-width: 980px) {
  .product-media .thumbnails img {
    max-height: 50px;
  }
}
.product-info {
  margin-top: var(--indent--sm);
  margin-bottom: var(--indent--lg);
}
.product-info_title {
  position: relative;
  display: block;
  width: 100%;
  padding-right: 10vw;
  padding-left: 2.5vw;
  text-align: start;
  border-bottom: 1px solid var(--color-deco-l);
  cursor: pointer;
  padding-top: 1.5rem;
  padding-bottom: 0.75rem;
}
.product-info_title .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 250ms cubic-bezier(0.19, 1, 0.22, 1);
  right: 5vw;
}
.product-info_title.active + .product-info_description {
  display: block;
}
.product-info_title.active .arrow {
  transform: translateY(-50%) rotate(-180deg);
}
.product-info_description {
  display: none;
  padding-bottom: 2.5rem;
  margin: 0 auto;
}
.product-info_description ul {
  line-height: 1.25;
  margin-top: 1rem;
}
.product-info_description ul li {
  border: 1px solid var(--color-deco-l);
  padding: 1rem 2.5vw;
}
.product-info_description ul li + li {
  margin-top: -1px;
}
.product-info_description ul li p {
  text-align: start;
}
.product-info_description > p {
  font-size: clamp(1.5rem, 1rem + 2.5vw, 35px);
  margin-top: 2rem;
  padding-left: 2.5vw;
  padding-right: 2.5vw;
  font-weight: bold;
}
.product-features {
  position: relative;
  margin-bottom: var(--indent--lg);
}
.product-features .mosaic-el_descr {
  background-color: #f3eeee;
}
.product-features_nav {
  position: absolute;
  bottom: 0;
  transform: translateX(-50%);
  display: flex;
  z-index: 2;
}
@media screen and (min-width: 980px) {
  .product-features_nav {
    left: 25%;
  }
}
@media screen and (max-width: 980px) {
  .product-features_nav {
    left: 75%;
  }
}

.contact {
  padding-top: var(--indent--sm);
}
.contact-title {
  margin-bottom: var(--indent--sm);
}
.contact__grid {
  display: grid;
  column-gap: 5vw;
}
@media screen and (min-width: 980px) {
  .contact__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 980px) {
  .contact__grid {
    grid-row-gap: 2.5rem;
  }
}
.contact__grid + .contact__grid {
  border-top: 1px solid var(--color-deco-l);
}
.contact-item {
  padding: 2.5rem 0;
}
.contact-item--media {
  justify-self: center;
}
@media screen and (max-width: 980px) {
  .contact-item--media {
    display: none;
  }
}
@media screen and (max-width: 980px) {
  .contact-item--address {
    display: none;
  }
}
.contact-item--form {
  align-self: center;
}

.address {
  display: grid;
  grid-row-gap: 1.25rem;
}
.address-item + .address-item {
  margin-top: 0.5re;
}

.modal {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.614);
  backdrop-filter: blur(10px);
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 100;
  transition: all 0.5s ease-in-out;
}
.modal.active {
  opacity: 1;
  visibility: visible;
}
.modal.active .modal__content {
  opacity: 1;
  transform: translate(0, 0);
}
.modal__area {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.modal__body {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.modal__content {
  width: 100%;
  max-width: 1000px;
  background: #fff;
  margin: 0 auto;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  transform: translate(0px, -100%);
  padding: 80px clamp(2.5vw, 5vw, 2.5rem);
}
@media screen and (max-width: 980px) {
  .modal__content {
    min-height: 100vh;
  }
}
.modal__content.--form {
  max-width: 640px;
}
.modal__close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  z-index: 101;
}

.form-request {
  display: grid;
  grid-template-rows: auto;
  justify-items: flex-start;
  row-gap: 2.5rem;
}
.form-request_row {
  position: relative;
  width: 100%;
}
.form-request_row input, .form-request_row textarea {
  border: none;
  width: 100%;
  font-size: clamp(1.2rem, 1rem + 0.75vw, 22px);
  font-family: inherit;
  padding: 1rem 0.15rem;
}
.form-request_row input + .focus-border, .form-request_row textarea + .focus-border {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-deco-l);
}

/*# sourceMappingURL=main.css.map */
