<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
}

.grey {
  background-color: #E5E5E5;
}

:root {
  --animate-duration: 1.5s !important;
  --animate-delay: 0s !important;
  --animate-repeat: 1;
}

[image] {
  position: relative;
  background-color: #fff;
}

[image]::before {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f110";
  animation: fa-spin 2s linear infinite;
  position: absolute;
  font-size: 24px;
  top: calc(50% - 12px);
  left: calc(50% - 12px);
  opacity: .6;
  z-index: 3;
  transition: all .6s ease;
}

[image].loaded::before {
  opacity: 0;
}

body {
  margin: 0;
  padding: 0;
  background-color: #FFFFFF;
  color: #191919;
  display: grid;
  min-height: 100vh;
}

body.loading {
  overflow: hidden;
} 

p {
  font-size: 24px;
  font-weight: 300;
  margin-top: 0;
  margin-bottom: 1.2em;
  line-height: 1.2em;
}

p.small {
  font-size: .7em;
}

input[type="text"],
textarea {
  width: 100%;
  padding: 14px 18px 12px 18px;
  font-size: inherit;
  border: 1px solid #191919;
  background: none;
  color: #191919;
  outline: none;
  transition: all .2s ease-in-out;
}

textarea {
  resize: none;
  height: 7em;
}

input[type="text"]:focus,
input[type="text"]:hover,
textarea:focus,
textarea:hover {
  border: 1px solid rgba(0,0,0,.5);
}

input[type="file"] {
  display: none;
}

.formContainer__inputs__file {
  display: block;
  position: relative;
  width: 100%;
  padding: 16px 20px 14px 20px;
  padding-top: 38px;
  color: #BFBFBF;
  background: #EDEDED;
  outline: none;
  overflow: hidden;
  transition: all .2s ease-in-out;
}

input[type="file"] + label {
  width: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  font-size: inherit;
  padding: 16px 20px 14px 20px;
  cursor: pointer;
  transition: all .2s ease-in-out;
}

input[type="file"]:focus + label,
input[type="file"]:hover + label {
  color: #9a9999;
}

.formContainer__inputs__file ul {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.formContainer__inputs__file ul li {
  margin-top: .5em;
}

.formContainer__inputs__file ul li:first-child {
  margin-top: 1em;
}

.formContainer__inputs__file ul li span {
  color: #000;
  cursor: pointer;
}

.formContainer__inputs__file span.icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 20px;
  top: 14px;
  width: 24px;
  height: 24px;
  font-size: 24px;
  text-align: center;
  color: inherit;
}

.formContainer__inputs__file span.icon::before {
  display: inline-block;
  position: relative;
  content: "\f574";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.formContainer__inputs__file.loading span.icon::before {
  content: "\f1ce";
  -webkit-animation-name: fa-spin;
  animation-name: fa-spin;
  -webkit-animation-duration: var(--fa-animation-duration,1.5s);
  animation-duration: var(--fa-animation-duration,1.5s);
  -webkit-animation-iteration-count: var(--fa-animation-iteration-count,infinite);
  animation-iteration-count: var(--fa-animation-iteration-count,infinite);
  -webkit-animation-timing-function: var(--fa-animation-timing,linear);
  animation-timing-function: var(--fa-animation-timing,linear);
}

.formContainer__inputs__file.loaded span.icon::before {
  content: "\f00c";
  -webkit-animation-name: fa-bounce;
  animation-name: fa-bounce;
  -webkit-animation-delay: var(--fa-animation-delay,0);
  animation-delay: var(--fa-animation-delay,0);
  -webkit-animation-direction: var(--fa-animation-direction,normal);
  animation-direction: var(--fa-animation-direction,normal);
  -webkit-animation-duration: var(--fa-animation-duration,1s);
  animation-duration: var(--fa-animation-duration,1s);
  -webkit-animation-iteration-count: var(--fa-animation-iteration-count,1s);
  animation-iteration-count: var(--fa-animation-iteration-count,1s);
  -webkit-animation-timing-function: var(--fa-animation-timing,cubic-bezier(.28,.84,.42,1));
  animation-timing-function: var(--fa-animation-timing,cubic-bezier(.28,.84,.42,1));
}

.formContainer__inputs__file.error span.icon::before {
  content: "\f071";
  -webkit-animation-name: fa-shake;
  animation-name: fa-shake;
  -webkit-animation-duration: var(--fa-animation-duration,1s);
  animation-duration: var(--fa-animation-duration,1s);
  -webkit-animation-iteration-count: var(--fa-animation-iteration-count,1s);
  animation-iteration-count: var(--fa-animation-iteration-count,1s);
  -webkit-animation-timing-function: var(--fa-animation-timing,linear);
  animation-timing-function: var(--fa-animation-timing,linear);
}

.formContainer__inputs__file span.progress {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  opacity: 0;
  background-color: rgba(0,0,0);
  transition: width .2s ease-in-out;
}

.formContainer__inputs__file.loading span.progress {
  opacity: 1;
}

h1 {
  font-style: normal;
  font-weight: 400;
  font-size: 56px;
  line-height: 1.2em;
  margin: 0;
}

h2 {
  font-style: normal;
  font-weight: 400;
  font-size: 48px;
  line-height: 1.2em;
}

h3 {
  font-size: 40px;
  font-weight: 400;
  line-height: 1.2em;
  margin-top: 0;
}

h4 {
  font-size: 32px;
  font-weight: 200;
  line-height: 1.2em;
  margin-top: 0;
}

button {
  position: relative;
  border: 1px solid #191919;
  background: none;
  outline: none;
  font-size: 18px;
  padding: 14px 22px 12px 22px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

button::before {
  display: inline-block;
  position: absolute;
  top: calc(50% - .5em);
  left: 0;
  right: 0;
  font-size: inherit;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f110";
  animation: fa-spin 2s linear infinite;
  opacity: 0;
  color: inherit;
}

button.success::before {
  content: "\f00c";
  animation: none;
}

button.loading,
button.success {
  opacity: 1;
  color: rgba(0,0,0,0) !important;
}

button.loading::before,
button.success::before {
  opacity: 1;
  color: #000;
}

button.black.loading::before,
button.black.success::before {
  opacity: 1;
  color: #fff;
}

button:hover {
  color: rgba(0, 0, 0, .5);
  border: 1px solid rgba(0, 0, 0, .7);
}

button img {
  width: 13px;
  margin-left: 0.3em;
  transition: all .2s ease-in-out;
}

button:hover img {
  transform: rotate(45deg);
}

button.black {
  background-color: #191919;
  color: #fff;
}

button.black:hover {
  background-color: rgba(0, 0, 0, .7);
  border: 1px solid rgba(0, 0, 0, 0);
  color: #fff;
}

.linkBlock {
  text-align: right;
  font-weight: 400;
}

.linkBlock a {
  color: #000;
  font-size: 24px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.linkBlock.white a {
  color: #fff;
}

.linkBlock a:hover {
  color: rgba(0, 0, 0, .8);
}

.linkBlock.white a:hover {
  color: rgba(255, 255, 255, .8);
}

.linkBlock a span {
  position: relative;
  display: inline-block;
  padding-bottom: 2px;
}

.linkBlock a span::after {
  display: block;
  position: absolute;
  content: "";
  right: 0;
  bottom: 0px;
  height: 2px;
  width: 100%;
  background: #000;
  transition: all .3s ease-in-out;
}

.linkBlock.white a span::after {
  background: #fff;
}

.linkBlock a:hover span::after {
  width: 0%;
}

.linkBlock a::after {
  display: inline-block;
  position: relative;
  content: '';
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 17px;
  height: 17px;
  margin-left: 0.3em;
  transition: all .2s ease-in-out ;
}

.linkBlock a::after {
  background-image: url(/assets/img/icons/pass_through.svg);
}

.linkBlock.white a::after {
  background-image: url(/assets/img/icons/pass_through_white.svg);
}

.linkBlock a:hover::after {
  transform: rotate(45deg);
}

.linkBlock-back {
  font-weight: 400;
  position: relative;
}

.linkBlock-back a {
  color: #191919;
  font-size: 16px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.linkBlock-back.white a {
  color: #fff;
}

.linkBlock-back a span {
  vertical-align: middle;
}

.linkBlock-back a:hover {
  color: rgba(0, 0, 0, .8);
}

.linkBlock-back.white a:hover {
  color: rgba(255, 255, 255, .8);
}

.linkBlock-back a::before {
  content: "";
  position: relative;
  margin-right: .5em;
  display: inline-block;
  vertical-align: middle;
  background-image: url(/assets/img/icons/back_box.svg);
  background-position: center;
  background-size: 100%;
  background-repeat: no-repeat;
  height: 1.7em;
  width: 1.5em;
}

.linkBlock-back a::after {
  content: "";
  position: absolute;
  display: inline-block;
  vertical-align: middle;
  background-image: url(/assets/img/icons/back_arrow.svg);
  background-position: center;
  background-size: 100%;
  background-repeat: no-repeat;
  width: 1.5em;
  height: 1em;
  left: .5em;
  top: calc(50% - 1em/2);
  transition: all .2s ease-in-out
}

.linkBlock-back.white a::before {
  background-image: url(/assets/img/icons/back_box_white.svg);
}

.linkBlock-back.white a::after {
  background-image: url(/assets/img/icons/back_arrow_white.svg);
}

.linkBlock-back a:hover::after {
  left: .3em;
}

section,
article,
header,
footer {
  padding-left: calc(100vw / 14);
  padding-right: calc(100vw / 14);
  padding-top: calc(100vw / 14 / 2);
  padding-bottom: calc(100vw / 14 / 2);
}

section {
  background-color: #fff;
  overflow: hidden;
  padding-top: calc(100vw / 14);
  padding-bottom: calc(100vw / 14);
}

footer {
  background-color: #191919;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 16px;
  align-self: end;
}

footer p {
  margin-bottom: 0;
  font-size: inherit;
}

nav.navMobile {
  display: none;
}

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  text-align: right;
  font-size: 16px;
  font-weight: 300;
  line-height: 1em;
  color: #fff;
  z-index: 9;
  transition: opacity .4s ease-in-out;
}

.main header {
  opacity: 0;
}

header.dark:not(.full) {
  color: #191919;
}

header.full {
  height: 100vh;
  background-color: rgba(25, 25, 25, 0.7);
  transition: all .2s ease;
}

header a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: all .2s ease;
}
header a[href]:hover {
  opacity: .6;
}

header ul {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  gap: 40px;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
}

header li {
  position: relative;
}

header li.logo {
  display: none;
  width: 80px;
  height: 60px;
  position: absolute;
  left: 0;
}

header li.logo a {
  display: inline-block;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

header.light li.logo a {
  background-image: url(/assets/img/logo_white.png);
}

header.dark li.logo a {
  background-image: url(/assets/img/logo_black.png);
}

header li.logo.visible {
  display: block;
}

header li ul {
  flex-direction: column;
  position: absolute;
  top: 0;
  padding-top: calc(1em + 40px);
  left: 2px;
  align-items: baseline;
  visibility: hidden;
  opacity: 0;
  color: #fff;
  transition: all 0s;
}

header.full li ul {
  visibility: visible;
  opacity: 1;
  transition: all .2s ease-in-out .2s;
}

header li.current {
  font-weight: 500;
}

.navMobile__menu input[type="checkbox"] {
  display: block;
  width: calc(100vw/14 + 47px);
  height: calc(100vw/14*2 + 50px);
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
  opacity: 0;
  z-index: 2;
  -webkit-touch-callout: none;
}

.navMobile__menu span{
  display: block;
  width: 47px;
  height: 2px;
  margin-bottom: 12px;
  position: relative;
  background: #fff;
  z-index: 1;
  transform-origin: 4px 0px;
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

.navMobile__menu span:first-child {
  transform-origin: 0% 0%;
}

.navMobile__menu span:nth-last-child(2) {
  transform-origin: 0% 100%;
}

.navMobile__menu input:checked ~ span {
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
}

.navMobile__menu input:checked ~ span:nth-last-child(3) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

.navMobile__menu input:checked ~ span:nth-last-child(2) {
  transform: rotate(-45deg) translate(0, -1px);
}

.navMobile__menu ul {
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  font-size: 24px;
  line-height: 1.2em;
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  padding: calc(100vw/14);
  padding-top: calc(100vw/14 * 5);
  background: rgba(0, 0, 0, .9);
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  transform-origin: 0% 0%;
  transform: translate(-100%, 0);
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}

.navMobile__menu ul li ul {
  font-size: 16px;
  position: relative;
  height: auto;
  width: auto;
  transform: unset;
  gap: 16px;
  padding: 16px 0 0 1px;
  opacity: 1;
  visibility: visible;
  background: none;
}

.navMobile__menu input:checked ~ ul {
  transform: none;
}

header.dark .navMobile__menu span {
  background: #191919;
}

header.dark .navMobile__menu ul {
  background: rgba(255,255,255,.9);
  color: #191919;
}

header.dark .navMobile__menu ul li ul {
  background: none;
  color: #191919;
}

.nav__phone,
.nav__email {
  display: inline-block;
  position: absolute;
  vertical-align: middle;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  outline: none;
  top: calc(100vw/14 * 2 + ((30px - 24px)/2));
  z-index: 99;
}

.nav__phone {
  right: calc(100vw / 14 + 30px * 2);
}

.nav__email {
  right: calc(100vw / 14);
}

header.light .nav__phone {
  background-image: url(/assets/img/icons/phone_white.svg);
}

header.dark .nav__phone {
  background-image: url(/assets/img/icons/phone_black.svg);
}

header.light .nav__email {
  background-image: url(/assets/img/icons/envelope_white.svg);
}

header.dark .nav__email {
  background-image: url(/assets/img/icons/envelope_black.svg);
}

.preloader {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background-color: #fff;
  text-align: center;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: all .2s ease-in-out;
}

.preloader img {
  max-width: 140px;
  transition: all .2s ease-in-out;
  animation: opacity 1.5s linear infinite;
}


.mainSection {
  min-height: 100vh;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: flex-end;
  background-image: url(/assets/img/main_cover.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.mainSection__bigText {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: calc(100% - 100vw / 14 / 2);
  overflow: hidden;
}

.mainSection__bigText span {
  color: rgba(255, 255, 255, 0.2);
  font-size: 40vh;
  font-weight: 900;
  line-height: 1.2em;
  display: block;
  width: 100%;
  transition: left 2s ease-in-out, right 2s ease-in-out;
  position: absolute;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.mainSection__bigText span:first-child {
  top: 0;
  left: -100vw;
}

.mainSection__bigText span:last-child {
  bottom: 0;
  right: -100vw;
  text-align: right;
}

.mainSection__bigText.animated span:first-child {
  left: 0;
}

.mainSection__bigText.animated span:last-child {
  right: 0;
}

.mainSection h1 {
  color: #fff;
  opacity: 0;
  transition: all .4s ease-in-out;
  z-index: 2;
}

.mainSection h1.show {
  opacity: 1;
}

.mainSection h1 span {
  position: relative;
  padding-right: 2px;
}

.mainSection h1 span:after {
  display: block;
  position: absolute;
  width: 4px;
  height: calc(100% - .2em);
  right: 0;
  top: .1em;
  background-color: #fff;
  transition: all .2s ease-in-out;
  animation: opacity .8s linear infinite;
  content: '';
}

.projectsSection {
  padding: 0 calc(100vw / 14);
}

.projectsSection .textBlock {
  position: relative;
  padding: calc(100vw / 14);
  padding-left: calc(100vw / 14 * 3);
}

.projectsSection .textBlock:before {
  display: block;
  position: absolute;
  top: 0;
  height: 0%;
  width: 2px;
  background-color: #000;
  left: calc(100vw / 14 * 2);
  content: "";
  transition: all 2s ease-in-out;
}

.projectsSection .textBlock.showLine:before {
  height: 100%;
}

.projectsSection p {
  margin-bottom: 0;
}

.projectsSection .linksGrid {
  display: grid;
  height: 75vh;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: calc(100vw / 14 / 2);
  opacity: 0;
  transition: all .2s;
}

.projectsSection .linksGrid a {
  position: relative;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  transition: all .3s ease-in-out;
  cursor: pointer;
}

.projectsSection .linksGrid a::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0);
  transition: all .2s ease-in-out;
  content: "";
}

.projectsSection .linksGrid a:hover::before {
  background-color: rgba(0,0,0,.2);
}

.projectsSection .linksGrid a p {
  text-align: center;
  font-size: 40px;
  color: #fff;
  line-height: 1.2em;
  z-index: 2;
  transition: all .2s ease-in-out;
}

.projectsSection .linksGrid a p span {
  font-size: 16px;
  line-height: 1.2em;
  display: block;
  transition: all .2s ease-in-out;
}

.projectsSection .linksGrid a:hover p span {
  margin-top: .5em;
}

.brandsSection {
  position: relative;
  overflow: hidden;
  width: 100vw;
  background-color: #fff;
  padding: calc(100vw/14) 0;
}

.brandsSection .brands {
  width: fit-content;
  display: flex;
  position: relative;
  white-space: nowrap;
  transform: translateX(0);
  animation: marquee 16s linear infinite;
  animation-play-state: running;
  align-items: center;
  gap: calc(100vw / 5 - 160px);
  padding-right: calc(100vw / 5 - 160px);
}

.brandsSection .brands div {
  width: 160px;
  height: 160px;
  background-size: contain !important; 
}

.modelsSection {
  gap: 64px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}

.modelsSection__grid {
  gap: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 24px;
  row-gap: 24px;
}

.modelsSection__grid h3 {
  font-weight: 400;
  margin: 0;
  width: 75%;
  order: 1;
  grid-row: 1 / 5;
}

.modelsSection__grid__img {
  width: 80%;
  order: 3;
  grid-row: 5 / 11;
}

.modelsSection__grid__textBlock {
  order: 2;
  grid-row: 1 / 6;
}

.modelsSection__grid__textBlock button {
  position: relative;
  width: 85%;
}

.modelsSection__grid__textBlock button .bottomLine {
  display: block;
  position: absolute;
  width: 2px;
  left: calc(50% - 1px);
  background-color: #000;
  top: calc(100% + 2px);
  height: 0px;
  transition: all 3s;
}

.modelsSection__grid__chairsBlock {
  order: 4;
  grid-row: 6 / 11;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: start;
  width: 85%;
}

.modelsSection__grid__chairsBlock img {
  max-width: 50%;
}


.modelsSection__block {
  max-width: 60%;
}

.modelsSection__catalog {
  display: grid;
  grid-template-columns: 4fr 3fr 3fr;
  column-gap: 32px;
  row-gap: 32px;
  /* z-index: 2; */
  transition: all 0.2s;
}

.modelsSection__catalog &gt; div {
  background-size: contain !important;
  background-color: #e9eaec;
  opacity: 0;
}

.modelsSection__catalog.visible &gt; div {
  opacity: 1;
}

.modelsSection__catalog__armchair {
  grid-row: 1 / 3;
  grid-column: 1 / 2;
  transition: all .5s ease-in-out .4s;
}

.modelsSection__catalog__sofa {
  grid-column: 2 / 4;
  grid-row: 1 / 2;
  height: 300px;
  transition: all .5s ease-in-out 0s;
}

.modelsSection__catalog__table {
  grid-row: 2 / 3;
  height: 300px;
  transition: all .5s ease-in-out .6s;
}

.modelsSection__catalog__chair {
  grid-row: 2 / 3;
  transition: all .5s ease-in-out .2s;
}

.renovationSection__grid {
  display: grid;
  grid-template-columns: 6fr 1fr 5fr;
  column-gap: 64px;
  row-gap: 64px;
}

.renovationSection__grid h3 {
  grid-column: 1 / 3;
  grid-row: 1 / 4;
  margin: 0;
}

.renovationSection__grid__sofa {
  grid-column: 3 / 4;
  grid-row: 1 / 7; 
  min-height: 75vh;
}

.renovationSection__grid__bed {
  grid-column: 1 / 2;
  grid-row: 4 / 11;
  background-position: bottom center !important;
}

.renovationSection__grid p {
  grid-column: 2 / 4;
  grid-row: 7 / 11;
  margin: 0;
}

.formSection {
  padding-top: calc(100vw / 14);
  padding-bottom: calc(100vw / 14);
}

.formContainer {
  display: grid;
  grid-template-columns: 6fr 6fr;
  column-gap: 80px;
  align-items: flex-start;
}

.formContainer__text p {
  margin-bottom: 0;
}

.formContainer__inputs {
  display: flex;
  font-size: 18px;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}

.formContainer__inputs__buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 22px;
  width: 100%;
}

.formContainer__inputs__buttons &gt; * {
  max-width: calc(50% - 22px / 2);
  width: 100%;
}

.quantitySwitcher {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-evenly;
  background-color: #D9D9D9;
  color: #191919;
  padding: 15px 23px 13px 23px;
}

.quantitySwitcher p {
  margin: 0;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 300;
}

.quantitySwitcher p span {
  font-weight: 500;
}

.quantitySwitcher button {
  width: 24px;
  height: 24px;
  background-color: rgba(0,0,0,0);
  border: none;
  outline: none;
  padding: 0;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  transition: all .2s ease-in-out;
}

.quantitySwitcher button:hover {
  opacity: .8;
}

.quantitySwitcher button.minus {
  background-image: url(/assets/img/icons/circle_arrow_down.svg);
}

.quantitySwitcher button.plus {
  background-image: url(/assets/img/icons/circle_arrow_up.svg);
}

.aboutSection {
  padding-top: calc(100vw/14*2);
  padding-bottom: calc(100vw/14*2);
  height: 100vh;
  justify-content: center;
  display: flex;
  flex-direction: column;
}

.aboutSection {
  color: #fff;
}

.aboutSection .linkBlock {
  text-align: left;
}



/* Catalog */
.catalogMainSection {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  gap: 16px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #E5E5E5;
}

.catalogMainSection.sofas {
  background-image: url(/assets/img/sofas_bg.png);
}

.catalogMainSection.armchairs {
  background-image: url(/assets/img/armchairs_bg.png);
}

.catalogMainSection.chairs {
  background-image: url(/assets/img/chairs_bg.png);
}

.catalogMainSection.tables {
  background-image: url(/assets/img/tables_bg.png);
}

.catalogMainSection.beds {
  background-image: url(/assets/img/beds_bg.png);
}

.catalogMainSection p {
  margin-bottom: 0;
}

.catalogListSection {
  background-color: #E5E5E5;
}

.catalogListSection input[type="text"] {
  position: relative;
  max-width: 400px;
  padding-right: 3em;
}

.catalogListSection__search {
  display: block;
  position: relative;
  max-width: 400px;
  margin-bottom: calc(100vw/14/2);
}

.catalogListSection__search::after {
  display: inline-block;
  position: absolute;
  content: "\f002";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 20px;
  right: 1em;
  top: calc(50% - 10px - 1px);
}

.catalogListSection input[type="text"] {
  padding-right: 3em;
}

.catalogListSection__grid {
  display: grid;
  column-gap: 32px;
  row-gap: 32px;
  grid-template-columns: repeat(5, 1fr);
}

.catalogListSection__grid__row {
  display: grid;
  column-gap: 32px;
  row-gap: 32px;
}

.catalogListSection__grid__a {
  display: flex;
  position: relative;
  background-color: #fff;
  height: 200px;
  grid-column: span 2;
  background-size: contain !important;
  cursor: pointer;
  overflow: hidden;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  gap: 8px;
}

.catalogListSection__grid__a.big {
  grid-row: span 2;
  grid-column: span 3;
  height: calc(200px*2 + 32px);
}

.catalogListSection__grid__a.hidden {
  display: none;
}

.catalogListSection__grid__a::before {
  display: block;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: blur(5px);
  -webkit-filter: blur(5px);
  background-image: inherit;
  background-size: inherit;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  z-index: 1;
  transition: all .3s ease-in-out;
}

.catalogListSection__grid__a::after {
  display: block;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,.2);
  opacity: 0;
  z-index: 2;
  transition: all .3s ease-in-out .0s;
}

.catalogListSection__grid__a:hover::before,
.catalogListSection__grid__a:hover::after {
  opacity: 1;
}

.catalogListSection__grid__a p {
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 0;
}

.catalogListSection__grid__a div {
  font-size: 16px;
  font-weight: 200;
}

.catalogListSection__grid__a p,
.catalogListSection__grid__a div {
  opacity: 0;
  transform: translateY(-10px);
  transition: all .2s ease-in-out .1s;
  z-index: 3;
}

.catalogListSection__grid__a:hover p,
.catalogListSection__grid__a:hover div {
  transform: translateY(0px);
  opacity: 1;
}

.catalogListSection__grid__a div span {
  position: relative;
  display: inline-block;
  padding-bottom: 2px;
}

.catalogListSection__grid__a div span::after {
  display: block;
  position: absolute;
  content: "";
  right: 0;
  bottom: 0px;
  height: 2px;
  width: 100%;
  background: #fff;
  transition: all .3s ease-in-out;
}

.catalogListSection__grid__a div:hover span::after {
  width: 0%;
}

.catalogListSection__grid__a div::after {
  display: inline-block;
  position: relative;
  content: '';
  background-image: url(/assets/img/icons/pass_through_white.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 11px;
  height: 11px;
  margin-left: 0.3em;
  transition: all .2s ease-in-out ;
}

.catalogListSection__grid__a div:hover::after {
  transform: rotate(45deg);
}

.catalogBackSection {
  background-color: #E5E5E5;
  padding-top: calc(100vw/14*1.5);
  padding-bottom: calc(100vw/14/3);
}

.catalogItemSection {
  background-color: #E5E5E5;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0 0 calc(100vw/14) 0;
}

.catalogItemSection__images {
  background-color: #fff;
  padding: calc(100%/14/4);
  border-top: 1px solid #191919;
  border-bottom: 1px solid #191919;
  border-right: 1px solid #191919;
}

.catalogItemSection__info {
  padding: calc(100%/14);
  border-top: 1px solid #191919;
  border-bottom: 1px solid #191919;
}

.catalogItemSection__images,
.catalogItemSection__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-wrap: wrap;
}

.catalogItemSection__info h1 {
  margin-bottom: 1em;
}

.catalogItemSection__info__size p:not(:last-child) {
  margin-bottom: 0;
}

.catalogItemSection__info__size p:not(:first-child) {
  display: flex;
  position: relative;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

.catalogItemSection__info__size p:not(:first-child)::after {
  display: block;
  position: absolute;
  height: 1px;
  width: 100%;
  background: #191919;
  left: 0;
  top: calc(50% - .5px);
  content: "";
}

.catalogItemSection__info__size p:not(:first-child) span {
  display: inline-block;
  background-color: #E5E5E5;
  z-index: 2;
}

.catalogItemSection__info__size p:not(:first-child) span:first-child {
  padding-right: .2em;
}

.catalogItemSection__info__size p:not(:first-child) span:last-child {
  padding-left: .2em;
}

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

.catalogItemSection__info__price p span {
  font-weight: 400;
  font-size: 1.5em;
  display: block;
  line-height: 1.2em;
}

.catalogItemSection__info__price p span::after {
  display: inline;
  position: relative;
  content: "â‚½";
}

.catalogItemSection__info__price .linkBlock {
  text-align: left;
}

figure.zoom {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  position: relative; 
  width: 100%; 
  overflow: hidden; 
  cursor: zoom-in;
}
figure.zoom:not(.activeZoom) {
  background-image: none !important;
}
figure.zoom.activeZoom img {
  opacity: 0;
}
figure.zoom img {
  transition: opacity 0.5s;
  display: block;
  /* height: 100%; */
}

.carousel {
  margin-bottom: 16px !important;
}

.carousel-main {
  width: 100%;
}

.carousel-nav {
  margin-bottom: 0 !important;
}

.carousel-cell figure {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0px auto;
  width: auto;
  height: 100%;
  max-width: 100%;
}

.carousel {
  margin: 0;
}

.carousel .carousel-cell {
  width: 100%;
  margin-right: 0;
}

.flickity-prev-next-button.previous,
.flickity-prev-next-button.next {
  outline: none;
  border: none;
  background: none;
}

.flickity-prev-next-button.previous {
  left: 0 !important;
}

.flickity-prev-next-button.next {
  right: 0 !important;
}

.catalogInterriorSection {
  border-top: 1px solid #191919;
  padding-top: calc(100vw/14);
  padding-bottom: calc(100vw/14);
}

.catalogInterriorSection .linkBlock {
  text-align: left;
}

.catalogInterriorSection .linkBlock a {
  font-weight: 400;
  font-size: inherit;
}

.catalogInterriorSection .linkBlock a::after {
  width: 23px;
  height: 23px;
}

.catalogInterriorSection__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  column-gap: 40px;
}

.catalogInterriorSection__grid__item {
  height: 400px;
}



/* Portfolio */
.portfolioMainSection {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  gap: 16px;
  color: #fff;
  background-image: url(/assets/img/portfolio_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #2d2c2a;
}

.portfolioMainSection.item {
  background-image: unset;
  position: relative;
}

.portfolioMainSection.item &gt; * {
  z-index: 2;
}

.portfolioMainSection.item::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .3);
  z-index: 1;
}

.portfolioMainSection .linkBlock-back {
  margin-bottom: calc(100vw / 14);
}

.portfolioMainSection p {
  margin-bottom: 0;
  max-width: 700px;
}

.portfolioMainGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 32px;
  row-gap: 56px;
  align-items: start;
}

.portfolioMainGrid__item {
  text-align: left;
  text-decoration: none;
  color: #191919;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.portfolioMainGrid__item:hover {
  opacity: .8;
}

.portfolioMainGrid__item__image {
  height: 280px;
  background-position: center;
  background-size: 100% !important;
  background-repeat: no-repeat;
  margin-bottom: 16px;
  transition: all .2s ease-in-out;
}

.portfolioMainGrid__item:hover .portfolioMainGrid__item__image {
  background-size: 105% !important;
}

.portfolioMainGrid__item span {
  display: inline-block;
  text-transform: uppercase;
  width: 100%;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.2em;
}

.portfolioMainGrid__item span.title {
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 8px;
}

.portfolioGalleryGrid {
  display: grid;
  grid-gap: 32px;
  grid-template-columns: repeat(3, 1fr);
}

.portfolioGalleryGrid__item {
  height: 35vh;
  grid-row: span 2;
  cursor: pointer;
  transition: all .2s ease-in-out;
}

.portfolioGalleryGrid__item:hover {
  opacity: .8;
}

.portfolioGalleryGrid__item.vertical {
  height: 60vh;
  grid-row: span 4;
}


.galleryFullScreen {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, .8);
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease-in-out;
}

.galleryFullScreen.opened {
  opacity: 1;
  visibility: visible;
}

.galleryFullScreen__container {
  height: 100%;
  position: absolute;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: left;
  min-width: 100%;
  left: 0;
  top: 0;

  transition: all .3s ease-in-out;
}

.galleryFullScreen__container {
  transform: translateX(calc(-100vw * (var(--data-visible) - 1)));
}

.galleryFullScreen__container__box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100vw;
  padding: calc(100vw/14/2);
  height: 100%;
  order: 2;
  text-align: center;
  transition: all .3s ease-in-out;
}

.galleryFullScreen__container__box.visible {
  order: 1;
  transform: translateX(0);
  transition: all .3s ease-in-out;
}

.galleryFullScreen__container__box::before {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f110";
  animation: fa-spin 2s linear infinite;
  position: absolute;
  font-size: 24px;
  top: calc(50% - 12px);
  left: calc(50% - 12px);
  color: #fff;
  opacity: .6;
  z-index: 1;
  transition: all .6s ease;
}

.galleryFullScreen__container__box img {
  max-width: 100%;
  max-height: 100%;
  z-index: 3;
}

.galleryFullScreen button.close {
  position: absolute;
  border: none !important;
  padding: 0;
  width: 30px;
  height: 30px;
  background: none !important;
  top: calc(100vw/14/4);
  right: calc(100vw/14/4);
  z-index: 3;
}

.galleryFullScreen button.close::before,
.galleryFullScreen button.close::after {
  display: inline-block;
  position: absolute;
  left: 0;
  top: calc(50% - 1px);
  content: "";
  width: 100%;
  height: 2px;
  background-color: #fff;
  transition: inherit;
  opacity: 1;
  animation: none;
  right: unset;
}

.galleryFullScreen button.close::before {
  transform: rotate(45deg);
}

.galleryFullScreen button.close::after {
  transform: rotate(-45deg);
}

.galleryFullScreen button.close:hover::before,
.galleryFullScreen button.close:hover::after {
  transform: rotate(0deg);
}

.galleryFullScreen button.prev,
.galleryFullScreen button.next {
  position: absolute;
  border: none !important;
  padding: 0;
  width: 30px;
  height: 30px;
  background: none !important;
  top: calc(50% - 30px/2);
  z-index: 3;
}

.galleryFullScreen button.prev {
  left: calc(100vw/14/4);
}

.galleryFullScreen button.next {
  right: calc(100vw/14/4);
}

.galleryFullScreen button.prev::before,
.galleryFullScreen button.prev::after,
.galleryFullScreen button.next::before,
.galleryFullScreen button.next::after {
  display: inline-block;
  position: absolute;
  top: calc(50% - 1px);
  content: "";
  width: 100%;
  height: 2px;
  transition: inherit;
  opacity: 1;
  animation: none;
  font: unset;
}

.galleryFullScreen button.prev::before,
.galleryFullScreen button.prev::after {
  left: -50%;
  right: unset;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0) 50%, #fff 50%);
}

.galleryFullScreen button.next::before,
.galleryFullScreen button.next::after {
  left: unset;
  right: -50%;
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0) 50%, #fff 50%);
}

.galleryFullScreen button.prev::before,
.galleryFullScreen button.next::before {
  transform: rotate(45deg);
}

.galleryFullScreen button.prev::after,
.galleryFullScreen button.next::after {
  transform: rotate(-45deg);
}

.galleryFullScreen button.prev:hover::before,
.galleryFullScreen button.next:hover::before {
  transform: rotate(35deg);
}

.galleryFullScreen button.prev:hover::after,
.galleryFullScreen button.next:hover::after {
  transform: rotate(-35deg);
}


/* About */
.aboutMainSection {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  gap: 16px;
  color: #fff;
  background-image: url(/assets/img/about_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.aboutMainSection p {
  max-width: 800px;
  margin: 0;
}

.aboutFlex {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  --gap: 120px;
  gap: var(--gap);
}

.aboutFlex.reverse {
  flex-direction: row-reverse;
}

.aboutFlex.map {
  --gap: 64px;
  gap: var(--gap);
}

.aboutFlex &gt; div {
  width: calc(50% - var(--gap)/2);
}

.aboutFlex__stat {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-evenly;
}

.aboutFlex__stat__elem {
  display: inline-block;
  text-align: center;
  max-width: calc(30%);
}

.aboutFlex__stat__elem:last-child {
  max-width: 80%;
}

.aboutFlex__stat__elem span {
  font-size: 150px;
  display: block;
}

.aboutFlex__images {
  display: inline-block;
  position: relative;
}

.aboutFlex__images img {
  max-width: 25vw;
}

.aboutFlex__images img:first-child {
  margin-bottom: 50%;
  margin-right: 50%;
}

.aboutFlex__images img:last-child {
  position: absolute;
  z-index: 2;
  right: -50%;
  bottom: 0;
}

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

.aboutFlex ul li {
  font-size: 24px;
  font-weight: 300;
}

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

.aboutPrinciples {
  padding: calc(100vw/14*2) calc(100vw/14);
  color: #fff;
}

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

.aboutFlex iframe {
  width: 100%;
  height: 100% !important;
  border: none;
}


/* Blog */
.blogSection {
  background-color: #E5E5E5;
  color: #191919;
  padding-top: calc(100vw/14*1.5);
  position: relative;
}

.blogSection h1 {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

.blogSection p:first-of-type {
  margin-bottom: 0;
}

.blogSection__list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  column-gap: 32px;
  row-gap: 64px;
  align-items: start;
  margin-top: 64px;
}

.blogSection__list__link {
  grid-column: span 3;
  display: flex;
  font-size: 24px;
  flex-direction: row;
  align-items: flex-start;
  gap: 1em;
  cursor: pointer;
}

.blogSection__list__link:hover img {
  opacity: 0.7;
}

.blogSection__list__link.vertical {
  grid-column: span 2;
  height: 70vh;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 48px;
  color: #fff;
  background-color: rgba(0,0,0,.6);
  background-size: 100% !important;
  transition: all .3s ease-in-out;
}

.blogSection__list__link:not(.vertical) {
  color: #191919;
}

.blogSection__list__link.vertical:hover {
  background-size: 105% !important;
}

.blogSection__list__link img {
  width: calc(50% - 1em);
  transition: all .3s ease-in-out;
}

.blogSection__list__link__text {
  text-decoration: underline;
  position: relative;
  cursor: pointer;
  transition: all .2s ease-in-out;
}

.blogSection__list__link:hover .blogSection__list__link__text {
  text-decoration-color: rgba(0,0,0,0);
}

.blogSection__list__link__text::after {
  display: inline-block;
  position: relative;
  content: "";
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: .7em;
  height: .7em;
  margin-left: .3em;
  transition: all .2s ease-in-out;
}

.blogSection__list__link__text::after {
  background-image: url(/assets/img/icons/pass_through.svg);
}

.blogSection__list__link.vertical .blogSection__list__link__text::after {
  background-image: url(/assets/img/icons/pass_through_white.svg);
}

.blogSection__list__link:hover .blogSection__list__link__text::after {
  transform: rotate(45deg);
}


article {
  background-color: #E5E5E5;
  color: #191919;
  position: relative;
}

.blogSection__mainFlex {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  gap: 64px;
}

.blogSection__mainFlex__info {
  width: calc(55% - 64px/2);
}

.blogSection__mainFlex__info img {
  display: none;
}

.blogSection__mainFlex__image {
  width: calc(45% - 64px/2);
  text-align: right;
}

.blogSection__mainFlex__image__cover {
  position: absolute;
  width: calc(45% - 64px/2);
  top: 0;
  right: 0;
  height: 75%;
  opacity: .3;
  z-index: 1;
}

.blogSection__mainFlex__image img {
  z-index: 2;
  position: relative;
  max-width: 70%;
}

.arcticle__flex {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 100px;
}

.arcticle__flex.reverse {
  flex-direction: row-reverse;
}

.arcticle__flex__text,
.arcticle__flex__image {
  width: calc(50% - 100px/2);
}

.interriorAnalysis {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-gap: 190px 150px;
  position: relative;
  max-width: 500px;
  grid-template-rows: 1fr 1fr;
  align-items: end;
}

.interriorAnalysis.wide {
  max-width: 100%;
  width: 100%;
  grid-auto-rows: 190px;
  row-gap: 100px;
}

.interriorAnalysis &gt; .colorPalette {
  min-width: calc(50% - 150px);
}

.interriorAnalysis.wide .interriorAnalysis__elem {
  min-width: 50%;
}

.interriorAnalysis__link {
  display: inline-block;
  width: auto;
  grid-row: var(--row);
  grid-column: var(--col);
}

.interriorAnalysis__link a {
  color: #BEBEBE;
  text-decoration: none;
  cursor: pointer;
  transition: all .2s ease-in-out;
}

.interriorAnalysis__link a:hover {
  opacity: .7;
}

.colorPalette {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  width: calc(var(--size) * 2 + 32px);
  height: calc(var(--size) * 2 + 32px);
}

.colorPalette div {
  display: block;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  background-color: var(--bg);
}

.interriorAnalysis__image {
  position: absolute;
  order: 1;
}

.interriorAnalysis__image.vertical {
  height: 80%;
  width: 55%;
}

.interriorAnalysis__image.horizontal {
  height: 55%;
  width: 70%;
}

.interriorAnalysis.wide .interriorAnalysis__image {
  height: 59% !important;
  width: 70% !important;
}

.interriorAnalysis.wide .interriorAnalysis__link {
  margin-top: 3.5em;
}

.interriorAnalysis__image.top {
  top: 0;
}

.interriorAnalysis__image.bottom {
  bottom: 0;
}

.interriorAnalysis__image.left {
  left: 0;
}

.interriorAnalysis__image.right {
  right: 0;
}


.contactSection {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 64px;
  padding-top: 0;
  margin-top: calc(100vw/14 * 1.5);
  padding-left: 0;
  padding-bottom: 0;
  border-top: 1px solid #191919;
  border-bottom: 1px solid #191919;
  min-height: calc(100vh - 116px - 100vw/14*1.5);
}

.contactSection h2 {
  margin-top: 0;
}

.contactSection__form {
  width: calc(45% - 64px/2);
}

.contactSection__map {
  border-right: 1px solid #191919;
  width: calc(55% - 64px/2);
}

.contactSection__map iframe {
  width: 100%;
  height: 100% !important;
  border: none;
}

.contactSection__form {
  padding-top: calc(100vw/14/2);
  padding-bottom: calc(100vw/14/2);
}


@keyframes opacity {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.25;
  }
  75% {
    opacity: 0.5;
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Ipad Pro Horizontal */
@media screen and (max-width: 1366px) and (max-height: 1024px) and (orientation: landscape) {
  .blogSection__list__link.vertical {
    height: 45vh;
  }
}

/* Ipad Pro Portrait */
@media screen and (max-width: 1024px) and (max-height: 1366px) and (orientation: portrait) {
  .mainSection {
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }

  .mainSection h1 {
    text-align: center;
  }

  .mainSection__bigText span {
    font-size: 25vw;
  }

  .mainSection__bigText span:first-child,
  .mainSection__bigText span:last-child {
    text-align: center;
  }

  .mainSection__bigText span:first-child {
    top: 20%;
  }

  .mainSection__bigText span:last-child {
    bottom: 25%;
  }

  .projectsSection .linksGrid {
    height: 40vh;
  }

  .renovationSection__grid__sofa {
    min-height: 40vh;
  }

  .aboutSection {
    height: auto;
  }

  .blogSection__list__link.vertical {
    height: 25vh;
    font-size: 24px;
    padding: 24px;
  }

  .blogSection__list__link {
    font-size: 16px;
  }

  .blogSection {
    padding-top: calc(100vw/14*4);
  }

  .blogSection__mainFlex {
    gap: 32px;
  }

  .blogSection__mainFlex__info {
    width: calc(55% - 32px/2);
  }

  .blogSection__mainFlex__image {
    width: calc(45% - 32px/2);
    text-align: right;
  }

  .blogSection__mainFlex__image__cover {
    height: 65%;
  }

  .blogSection__mainFlex__image img {
    max-width: 77%;
    transform: translateY(35%);
  }

  .arcticle__flex {
    gap: 64px;
  }

  .arcticle__flex__text,
  .arcticle__flex__image {
    width: calc(50% - 64px/2);
  }

  .interriorAnalysis {
    grid-gap: 100px 150px;
  }

  .interriorAnalysis__image.vertical {
    height: 80%;
  }

  .interriorAnalysis__image.horizontal {
    height: 50%;
  }
}

/* iPad Air horizontal */
@media screen and (max-width: 1180px) and (max-height: 820px) and (orientation: landscape) {
  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 24px;
  }

  p,
  .linkBlock a {
    font-size: 20px;
  }
  
  .blogSection h1 {
    font-size: 48px;
  }

  .blogSection__list__link {
    font-size: 16px;
  }

  .blogSection__list__link.vertical {
    padding: 32px;
    font-size: 24px;
  }

  .blogSection__mainFlex__info {
    width: calc(65% - 64px/2);
  }

  .blogSection__mainFlex__image {
    width: calc(35% - 64px/2);
  }

  .blogSection__mainFlex__image__cover {
    height: 75%;
    width: calc(40% - 64px/2);
  }

  .blogSection__mainFlex__image img {
    max-width: 85%;
    transform: translateY(30%);
  }

  .arcticle__flex {
    gap: 64px;
  }

  .arcticle__flex__text,
  .arcticle__flex__image {
    width: calc(50% - 64px/2);
  }

  .interriorAnalysis {
    grid-gap: 100px 140px;
  }

  .interriorAnalysis__image.vertical {
    height: 80%;
    width: 50%;
  }

  .interriorAnalysis__image.horizontal {
    height: 50%;
  }
}


/* iPad Air portrait */
@media screen and (max-width: 820px) and (max-height: 1180px) and (orientation: portrait) {
  header {
    padding-top: calc(100vw / 14);
    padding-bottom: calc(100vw / 14);
  }
  
  nav.navDesktop {
    display: none;
  }

  nav.navMobile {
    display: block;
  }

  .nav__phone,
  .nav__email {
    top: calc(100vw/14 + ((30px - 24px)/2));
  }
  
  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 24px;
  }

  p,
  .linkBlock a {
    font-size: 16px;
  }

  button {
    font-size: 16px;
  }

  .renovationSection__grid {
    grid-template-columns: 6fr 4fr;
  }

  .renovationSection__grid h3 {
    grid-column: 1 / 2;
    grid-row: unset;
  }

  .renovationSection__grid p {
    grid-column: 1 / 2;
    grid-row: 2 / 4;
  }

  .renovationSection__grid__sofa {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    min-height: unset;
  }

  .renovationSection__grid__bed {
    grid-column: 2 / 3;
    grid-row: 2 / 4;
    min-height: unset;
  }

  .catalogMainSection {
    min-height: 50vh;
  }

  .catalogItemSection__info h1 {
    font-size: 48px;
  }

  .catalogBackSection {
    padding-top: calc(100vw/14*3);
  }

  .carousel-cell img {
    max-height: 300px;
  }

  .carousel-cell {
    height: 300px !important;
  }

  .carousel-nav .carousel-cell {
    height: 80px !important;
  }

  .formContainer__inputs {
    font-size: 16px;
  }

  .formContainer__inputs__buttons {
    flex-direction: column;
  }

  .formContainer__inputs__buttons &gt; * {
    max-width: 100%;
  }

  .aboutFlex__stat__elem span {
    font-size: 100px;
  }

  .aboutFlex ul li {
    font-size: 20px;
  }

  .blogSection {
    padding-top: calc(100vw/14*3);
  }

  .blogSection__list__link {
    font-size: 12px;
  }

  .blogSection__list__link.vertical {
    font-size: 16px;
    padding: 16px;
  }

  .blogSection__mainFlex {
    flex-direction: column-reverse;
  }

  .blogSection__mainFlex__info {
    width: 100%;
    z-index: 2;
  }

  .blogSection__mainFlex__info img {
    display: block;
    width: 45%;
    margin: 20px auto 48px auto;
  }

  .blogSection__mainFlex__image img {
    display: none;
  }

  .blogSection__mainFlex__image__cover {
    height: 65%;
    width: 100%;
  }

  .arcticle__flex {
    gap: 48px;
  }

  .arcticle__flex__text,
  .arcticle__flex__image {
    width: calc(50% - 48px/2);
  }

  .colorPalette {
    gap: 16px;
    width: calc(var(--size) * 2 / 1.5 + 16px);
    height: calc(var(--size) * 2 / 1.5 + 16px);
  }

  .colorPalette div {
    width: calc(var(--size) / 1.5);
    height: calc(var(--size) / 1.5);
  }

  .interriorAnalysis {
    grid-gap: 50px 90px;
    grid-template-columns: 3fr 1fr;
  }

  .interriorAnalysis__image.horizontal {
    height: 50%;
    width: 67%;
  }

  .interriorAnalysis__image.vertical {
    height: 75%;
    width: 55%;
  }

  .interriorAnalysis__link a {
    font-size: 12px;
  }

  .interriorAnalysis.wide {
    row-gap: 75px;
  }

  .interriorAnalysis.wide .interriorAnalysis__image {
    height: 55% !important;
    width: 75% !important;
  }

  .contactSection {
    margin-top: calc(100vw/14*3);
    min-height: calc(100vh - 75px - 100vw/14*3);
  }
}

@media screen and (orientation: portrait) {
  .portfolioGalleryGrid__item {
    height: 15vh;
  }

  .portfolioGalleryGrid__item.vertical {
    height: 25vh;
  }
}

@media screen and (max-width: 767px) {
  section, article, header {
    padding-left: calc(100vw / 14);
    padding-right: calc(100vw / 14);
    padding-top: calc(100vw / 14 * 2);
    padding-bottom: calc(100vw / 14 * 2);
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 24px;
  }

  h4 {
    font-size: 20px;
  }

  p {
    font-size: 16px;
  }

  input[type="text"],
  textarea {
    padding: 12px 16px 12px 16px;
  }

  input[type="file"] + label {
    padding: 14px 16px 14px 16px;
  }

  button {
    font-size: 12px;
    padding: 12px 16px 12px 16px;
  }

  button img {
    width: 8px;
  }

  header {
    padding-top: calc(100vw / 14 * 2);
    padding-bottom: calc(100vw / 14);
  }

  nav.navDesktop {
    display: none;
  }

  nav.navMobile {
    display: block;
  }

  .nav__phone,
  .nav__email {
    top: calc(100vw/14 * 2 + ((30px - 24px)/2));
  }

  footer {
    padding-top: calc(100vw / 14);
    padding-bottom: calc(100vw / 14);
    flex-direction: column;
    font-size: 12px;
    gap: 12px;
  }


  .mainSection {
    align-items: center;
    flex-direction: column;
    justify-content: center;
    background-position: 27% center !important;
  }

  .mainSection h1 {
    text-align: center;
  }

  .mainSection__bigText span {
    font-size: 25vw;
  }

  .mainSection__bigText span:first-child,
  .mainSection__bigText span:last-child {
    text-align: center;
  }

  .mainSection__bigText span:first-child {
    top: 33%;
  }

  .mainSection__bigText span:last-child {
    bottom: 33%;
  }

  .projectsSection .textBlock {
    padding-right: 0;
  }

  .projectsSection .linksGrid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 1fr);
    margin-bottom: calc(100vw / 14);
    height: 75vh !important;
  }

  .linkBlock a {
    font-size: 16px;
  }

  .linkBlock a::after {
    width: 11px;
    height: 11px;
  }

  .brandsSection {
    padding: calc(100vw/14 * 2) 0;
  }

  .brandsSection .brands {
    gap: calc(100vw / 5 - 60px);
    padding-right: calc(100vw / 5 - 60px);
  }

  .brandsSection .brands div {
    width: 60px;
    height: 60px;
  }

  .modelsSection {
    gap: 48px;
  }

  .modelsSection__grid {
    grid-template-columns: 8fr 4fr;
    row-gap: 20px;
    column-gap: 20px;
  }

  .modelsSection__grid h3,
  .modelsSection__grid__img,
  .modelsSection__grid__chairsBlock,
  .modelsSection__grid__textBlock {
    order: unset;
    grid-row: unset;
    grid-column: 1 / 3;
  }

  .modelsSection__grid h3 {
    width: 100%;
  }

  .modelsSection__grid__img {
    grid-column: 1 / 2;
  }

  .modelsSection__grid__chairsBlock {
    grid-column: 2 / 3;
    flex-direction: column;
  }

  .modelsSection__grid__chairsBlock img {
    max-width: 100%;
  }

  .modelsSection__grid__textBlock button .bottomLine {
    left: calc(42px - 1px);
  }

  .modelsSection__block {
    max-width: 100%;
    padding-left: calc(42px + 36px);
  }

  .modelsSection__catalog {
    grid-template-columns: 8fr 4fr;
    column-gap: 16px;
    row-gap: 16px;
  }

  .modelsSection__catalog__armchair {
    grid-row: 1 / 3;
    grid-column: 1 / 2;
    transition: all .5s ease-in-out 0s;
  }

  .modelsSection__catalog__chair {
    grid-row: 1 / 2;
    grid-column: 2 / 3;
    height: 120px;
    transition: all .5s ease-in-out .2s;
  }

  .modelsSection__catalog__table {
    grid-row: 2 / 3;
    grid-column: 2 / 3;
    height: 120px;
    transition: all .5s ease-in-out .4s;
  }

  .modelsSection__catalog__sofa {
    grid-column: 1 / 3;
    grid-row: 3 / 4;
    height: 200px;
    transition: all .5s ease-in-out .6s;
  }

  .renovationSection__grid {
    grid-template-columns: 8fr 4fr;
    column-gap: 16px;
    row-gap: 16px;
  }

  .renovationSection__grid h3 {
    grid-column: 1 / 3;
    grid-row: unset;
  }

  .renovationSection__grid p {
    grid-column: 1 / 2;
    grid-row: 2 / 4;
  }

  .renovationSection__grid__sofa {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    min-height: unset;
    background-size: auto 100% !important;
  }

  .renovationSection__grid__bed {
    grid-column: 2 / 3;
    grid-row: 3 / 4;
    min-height: unset;
    background-size: auto 100% !important;
  }

  .formSection {
    padding-bottom: calc(100vw / 14 * 2);
  }

  .formContainer {
    grid-template-columns: 1fr;
    row-gap: 32px;
  }

  .formContainer__inputs {
    gap: 16px;
    font-size: 12px;
  }

  .formContainer__inputs__file {
    padding: 12px 16px 12px 16px;
    padding-top: 31px;
  }

  .formContainer__inputs__file span.icon {
    top: 10px;
    right: 24px;
    width: 24px;
    height: 24px;
    font-size: 20px;
  }

  .formContainer__inputs__buttons {
    flex-direction: row;
  }

  .formContainer__inputs__buttons &gt; * {
    max-width: calc(50% - 22px/2);
  }

  .quantitySwitcher p {
    font-size: 12px;
  }

  .catalogInterriorSection {
    padding-top: calc(100vw/14 * 2);
    padding-bottom: calc(100vw/14 * 2);
  }

  .aboutSection {
    padding-top: calc(100vw/14*2);
    padding-bottom: calc(100vw/14*2);
  }


  /* Catalog */
  .catalogMainSection {
    min-height: 60vh;
  }


  .catalogMainSection.sofas {
    background-image: url(/assets/img/sofas_mobile_bg.png);
  }

  .catalogListSection__search {
    margin-bottom: calc(100vw/14*2);
  }

  .catalogListSection__grid {
    grid-template-columns: 1fr;
  }

  .catalogListSection__grid__a {
    grid-column: unset;
  }

  .catalogListSection__grid__a.big {
    grid-row: unset;
    grid-column: unset;
    height: 200px;
  }

  .catalogListSection__grid__a::before,
  .catalogListSection__grid__a::after,
  .catalogListSection__grid__a p,
  .catalogListSection__grid__a div {
    display: none;
  }

  .catalogBackSection {
    padding-top: calc(100vw/14* 5);
    padding-bottom: calc(100vw/14);
  }

  .catalogItemSection {
    grid-template-columns: 1fr;
  }

  .catalogItemSection__info {
    border-top: none;
    border-bottom: none;
    padding: calc(100%/14 * 2) calc(100%/14);
  }

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

  .carousel .carousel-cell {
    height: 60vw;
  }

  .catalogInterriorSection .linkBlock a::after {
    width: 15px;
    height: 15px;
  }

  .catalogInterriorSection__grid {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }

  .catalogInterriorSection__grid__item {
    height: 300px;
  }

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

  .portfolioMainSection {
    background-image: url(/assets/img/portfolio_mobile_bg.png);
  }

  .portfolioMainSection.item {
    background-image: unset;
  }

  .portfolioMainGrid {
    grid-template-columns: 1fr;
    row-gap: 32px;
  }

  .portfolioMainGrid__item span {
    font-size: 16px;
  }

  .portfolioMainGrid__item span.title {
    font-size: 24px;
  }

  .portfolioGalleryGrid {
    grid-template-columns: 1fr;
  }

  .portfolioGalleryGrid__item {
    height: 25vh;
  }

  .portfolioGalleryGrid__item.vertical {
    height: 50vh;
  }


  /* About */
  .aboutMainSection {
    background-image: url(/assets/img/about_mobile_bg.png);
  }

  .aboutFlex {
    flex-direction: column;
    --gap: 48px;
    align-items: flex-start;
  }

  .aboutFlex.reverse {
    flex-direction: column;
  }

  .aboutFlex&gt;div {
    width: 100%;
  }

  .aboutFlex__stat__elem {
    max-width: 35%;
  }

  .aboutFlex__stat__elem span {
    font-size: 100px;
  }

  .aboutFlex ul li {
    font-size: 16px;
  }

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

  .aboutFlex__images img {
    max-width: 50vw;
  }


  /* Blog */
  .blogSection {
    padding-top: calc(100vw / 14 * 5);
  }

  .blogSection__list {
    grid-template-columns: 1fr 1fr;
    column-gap: 24px;
    row-gap: 32px;
  }
  
  .blogSection__list__link {
    grid-column: unset;
    flex-direction: column;
    font-size: 12px;
  }

  .blogSection__list__link img {
    width: 100%;
  }

  .blogSection__list__link.vertical {
    grid-column: span 2;
    height: 25vh;
    padding: 24px;
    font-size: 16px;
  }

  .blogSection__mainFlex__info img {
    width: 65%;
  }

  .arcticle__flex.reverse {
    flex-direction: column;
  }

  .arcticle__flex__text,
  .arcticle__flex__image {
    width: 100%;
  }

  .colorPalette {
    width: calc(var(--size) * 2 + 16px);
    height: calc(var(--size) * 2 + 16px);
  }

  .colorPalette div {
    width: calc(var(--size));
    height: calc(var(--size));
  }

  .interriorAnalysis {
    grid-gap: 20px 50px;
    grid-template-columns: 2fr 1fr;
  }

  .interriorAnalysis__image.vertical {
    width: 50%;
    height: 78%;
  }

  .interriorAnalysis__image.horizontal {
    height: 45%;
  }

  .interriorAnalysis.wide {
    position: absolute;
    bottom: calc(100vw/14);
    left: 0;
    right: 0;
    grid-template-columns: 3fr 1fr;
    row-gap: 50px;
    column-gap: 0;
  }

  .arcticle__flex.padding_bottom {
    padding-bottom: 212px;
  }

  .interriorAnalysis.wide .interriorAnalysis__image {
    height: 55% !important;
    width: 70% !important;
  }

  .interriorAnalysis.wide  .interriorAnalysis__link {
    margin-top: 1.5em;
  }

  .contactSection {
    flex-direction: column-reverse;
    padding: 0;
    border: none;
    margin-top: calc(100vw/14*5);
    gap: 32px;
  }

  .contactSection__form,
  .contactSection__map {
    width: 100%;
  }

  .contactSection__form {
    padding: calc(100vw/14);
    padding-top: 0;
  }

  .contactSection__map {
    border-top: 1px solid #191919;
    border-right: none;
    min-height: 50vh;
    position: relative;
  }

  .contactSection__map &gt; div {
    height: 50vh !important;
  }
}</pre></body></html>