@font-face {
  font-family: 'MullerRegular';
  font-style: normal;
  font-weight: 200;
  src: url("../fonts/MullerRegular.otf");
}

@font-face {
  font-family: 'MullerMedium';
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/MullerMedium.otf");
}

@font-face {
  font-family: 'MullerHeavy';
  font-style: normal;
  font-weight: 1100;
  src: url("../fonts/MullerHeavy.otf");
}

html {
  scroll-behavior: smooth;
}

html:root {
  --bg-color: #fafafa;
  --base-color: #e06a20;
  --text-color: #474a51;
  --grey-color: rgba(158, 164, 177, 0.5);
  --lightbase-color: #fff5ea;
  --title-font: RoadRadio;
  --animate-duration: 900ms;
  --animate-delay: 9s;
  --before-shadow: 0 3px 5px 5px rgba(0,0,0,.02);
}

* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

a.active.focus,
a.active:focus,
a.focus,
a:active.focus,
a:active:focus,
a:focus,
button.active.focus,
button.active:focus,
button.focus,
button:active.focus,
button:active:focus,
button:focus,
input:focus,
.btn.active.focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn:active:focus,
.btn:focus,
div:focus {
  outline: 0 !important;
  outline-color: transparent !important;
  outline-width: 0 !important;
  outline-style: none !important;
  -webkit-box-shadow: 0 0 0 0 rgba(0, 123, 255, 0) !important;
          box-shadow: 0 0 0 0 rgba(0, 123, 255, 0) !important;
}

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 14px;
  min-height: 100vh;
  background: var(--bg-color);
  color: var(--text-color);
  font-family: var(--title-font);
  overflow-x: hidden;
  line-height: 1;
}

p {
  line-height: 1.5;
  margin-bottom: 0;
}

ul {
  margin-bottom: 0;
  list-style-position: inside;
}

figure {
  margin: 0 0 0;
}

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

.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  margin: 0;
  padding: 0;
  font-weight: 600;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: .5em;
}

.h1 {
  font-size: 4em;
  font-weight: bold;
}

.h2 {
  font-size: 3em;
  font-weight: bold;
}

.h3 {
  font-size: 2.25em;
  font-weight: bold;
}

.h4 {
  font-size: 1.85em;
}

.h5 {
  font-size: 1.25em;
}

#upbutton {
  height: 40px;
  width: 40px;
  bottom: 30px;
  right: 30px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  background: #fff;
  box-shadow: ;
  border-radius: 50%;
  text-align: center;
  position: fixed;
  z-index: 999;
  transform: rotate(-90deg);
  -webkit-box-shadow: 0 0 3px 3px rgba(224, 106, 32, 0.3);
  box-shadow: 0 0 3px 3px rgba(224, 106, 32, 0.3);;
}

#upbutton path {
  fill: var(--base-color);
}

.uppercase {
  text-transform: uppercase;
}

label {
  margin-bottom: 0;
}

a {
  color: var(--base-color);
  text-decoration: none;
  -webkit-transition: 300ms ease-in-out;
  transition: 300ms ease-in-out;
}

a:hover, a:focus, a:active {
  color: var(--text-color);
  text-decoration: none;
}

.base-text {
  color: var(--base-color);
}

.link {
  color: var(--text-color);
}

.link:active, .link:focus, .link:hover {
  color: var(--base-color);
}

.btn__common {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  border: 0;
  background: inherit;
  border-radius: 30px;
  padding: 1em;
  -webkit-transition: 300ms;
  transition: 300ms;
  text-align: center;
  font-weight: 600;
  font-size: 1.2em;
  font-family: var(--title-font);
  letter-spacing: 1px;
  overflow: hidden;
  color: inherit;
  text-transform: uppercase;
  width: fit-content;
  -webkit-appearance: button;
  appearance: button;
}

.btn__common.btn__base {
  background: var(--base-color);
  border: 1px solid var(--base-color);
  color: #fff;
}

.btn__common.btn__base:hover {
  background: var(--bg-color);
  color: var(--base-color);
  border: 1px solid var(--base-color);
}

.btn__common.btn__second {
  background: var(--bg-color);
  border: 1px solid var(--bg-color);
  color: var(--base-color);
}

.btn__common.btn__second:hover {
  background: var(--base-color);
  color: var(--bg-color);
  border: 1px solid var(--bg-color);
}

.sidebar {
  position: fixed;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 30px;
  height: 100%;
  z-index: 1100;
}

.sidebar__list {
  list-style-type: none;
}

.sidebar__item {
  margin-bottom: 1em;
}

.sidebar__link {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: var(--before-shadow);
  background: var(--grey-color);
  -webkit-transition: 300ms;
  transition: 300ms;
}

.sidebar__link.active {
  background: var(--base-color);
}

.unicode {
  font-family: var(--base-reg);
  font-size: 1em;
}

.grid {
  display: -ms-grid;
  display: grid;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.animate__animated {
  --animation-delay: 800ms;
  --animate-duration: 800ms;
}

.parallax__item {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  opacity: .7;
}

.parallax__item img {
  height: auto;
}

.parallax__item:nth-child(1) img {
  top: 15%;
  left: 5%;
  position: absolute;
  width: 94px;
}

.parallax__item:nth-child(2) img {
  position: absolute;
  bottom: 20%;
  right: 20%;
  width: 112px;
}

.parallax__item:nth-child(3) .item__elem {
  position: absolute;
  bottom: 10%;
  left: 10%;
  width: 50px;
  height: 50px;
  border: 10px solid var(--base-color);
  border-radius: 50%;
}

.parallax__item:nth-child(4) .item__elem {
  top: -1%;
  right: 10%;
  position: absolute;
  background: var(--base-color);
  border-radius: 50%;
  width: 50px;
  height: 50px;
}

.pagination__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 2em 0;
  width: 100%;
}

.page__item:not(:last-child) {
  margin-right: 1em;
}

.page__item .page__link {
  font-size: 1.2em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 2.5em;
  height: 2.5em;
  border-radius: 50%;
}

.page__item .page__link:hover {
  background: var(--base-color);
  color: var(--bg-color);
}

.page__item.active .page__link {
  background: var(--base-color);
  color: var(--bg-color);
}

.section__content {
  background: var(--lightbase-color);
  padding: 3em 0;
}
.content__inner {
  padding: 0 3em;
  width: 100% !important;
  word-break: break-word;
}

.content__inner a {
  color: var(--base-color);
}

.content__inner a:visited {
  color: var(--text-color);
}

.content__inner a:hover, .content__inner a:focus, .content__inner a:active {
  text-decoration: underline;
}

.content__inner li {
  margin-bottom: 1em;
}

.content__inner img {
  margin: 1em 0;
  max-width: 100%;
  height: auto;
}

.content__inner video {
  max-width: 100%;
  height: auto;
}

.content__inner iframe {
  width: 100% !important;
}

.content__inner p {
  line-height: 1.5;
  font-family: var(--text-font);
  color: var(--text-color);
  margin-bottom: 1em;
}

.content__inner h1,
.content__inner h2,
.content__inner h3,
.content__inner h4,
.content__inner h5 {
  margin: 1em 0;
  margin-top: 0;
  color: var(--text-color);
}
.content__inner h1 {
  font-size: 4em;
  font-weight: bold;
}

.content__inner h2 {
  font-size: 3em;
  font-weight: bold;
}

.content__inner h3 {
  font-size: 2.25em;
  font-weight: bold;
}

.content__inner h4 {
  font-size: 1.85em;
}

.content__inner h5 {
  font-size: 1.25em;
}
.content__inner table {
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  table-layout: fixed;
  margin-bottom: 1.25em;
  width: 100% !important;
  max-width: 100% !important;
  border-spacing: 0;
  border: 1px;
}

.content__inner table p {
  margin-bottom: 0 !important;
}

.content__inner table caption {
  font-size: 1.5em;
  margin: .5em 0 .75em;
}

.content__inner tbody {
  width: 100%;
}

.content__inner tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100% !important;
  height: auto !important;
}

.content__inner tr .th,
.content__inner tr .td {
  -webkit-box-flex: 1;
      -ms-flex: 1 1;
          flex: 1 1;
  padding: .5em;
  vertical-align: baseline;
  height: auto !important;
  border: 1px;
}

.content__inner tr th {
  font-size: .85em;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.header__banner,
.section__item {
  padding: 2em 0;
}

.section__title {
  padding: 1.5em 0;
  line-height: 1.5;
  text-align: center;
  word-break: keep-all;
}
.section__desc {
  text-align: center;
  line-height: 1.5;
  margin-bottom: 1.5em;
}
.section__block {
  padding: 2em 0;
}

#header,
#about,
#couches {
  position: relative;
}

.header__block {
  padding: 1em 0;
  -ms-grid-columns: minmax(200px, 255px) 1fr 200px;
      grid-template-columns:  minmax(200px, 255px) 1fr 200px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 1em;
}

.logo__img {
  width: 100%;
  height: auto;
}

.logo__img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.nav__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.nav__list {
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.nav__item .nav__link {
  display: block;
  padding: 1em .5em;
}

.header__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.social__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 1.5em;
}

.social__item:not(:last-child) {
  margin-right: .5em;
}

.social__item .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 40px;
  height: 40px;
  background: var(--base-color);
  border-radius: 50%;
  overflow: hidden;
}

.social__item .icon img {
  width: 20px;
  height: 20px;
}
.social__item .title {
  display: none;
}
.social__item .icon:hover {
  background: var(--grey-color);
}

.contact__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contact__item p {
  font-size: 1.2em;
}

.header__banner {
  height: 480px;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  grid-gap: 2em;
}

.banner__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.banner__img img {
  -o-object-fit: contain;
     object-fit: contain;
  height: auto;
}

.banner__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.banner__text .text__item:not(:last-child) {
  margin-bottom: 2.5em;
}

.banner__text .text__desc {
  display: flex;
  width: 80%;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  position: relative;
  padding-left: 2em;
}

.banner__text .text__desc::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 4px;
  height: 100%;
  background: var(--base-color);
}

.services__block {
  -ms-grid-columns: (minmax(300px, 1fr))[auto-fill];
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-column-gap: 30px;
  grid-row-gap: 45px;
}

.services__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  align-items: center;
  position: relative;
  /* height: 300px; */
}

.services__item .stretched-link::after {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: auto;
    content: "";
    background-color: none;
}

.services__item .item__img {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 300px;
  flex: 0 0 300px;
  z-index: 2;
}

.services__item .item__img img {
  width: 225px;
  height: auto;
  object-fit: contain;
}
.services__item .item__img .img__bg {
  position: absolute;
  display: block;
  height: 300px;
  width: 300px;
  background: var(--grey-color);
  border-radius: 50%;
  z-index: -1;
}

.services__item .item__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center; 
}

.services__item .item__link {
  margin-left: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: var(--base-color);
  color: var(--bg-color);
  line-height: 1;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.services__item .item__link img {
  width: .5em;
  height: auto;
}

.section__about {
  background: var(--lightbase-color);
}
.section__about .section__desc ul {
  column-count: 2;
}

.about__block {
  padding: 2em 0;
}

.about__block .swiper-container {
  width: 100%;
  height: 100%;
  padding-bottom: 4em;
}

.about__block .swiper-pagination-bullet-active {
  background: var(--base-color);
}

.about__block .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.about__block .swiper-slide:not(.swiper-slide-active) {
  -webkit-filter: blur(3px);
          filter: blur(3px);
}

.about__block .gallery__item {
  width: 100%;
}

.about__block .gallery__item img {
  width: 100%;
  height: auto;
}

.about__block .swiper-pagination-block {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -ms-grid-columns: 1fr 120px 50% 120px 1fr;
      grid-template-columns: 1fr 120px 50% 120px 1fr;
  justify-items: center;
  grid-gap: 0;
}

.about__block .swiper-pagination-block .swiper-button:after {
  content: "";
}

.about__block .swiper-pagination-block .swiper-button {
  position: static;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  cursor: auto;
}

.about__block .swiper-pagination-block .swiper-button .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 40px;
  height: 40px;
  background: var(--grey-color);
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: 300ms all;
  transition: 300ms all;
}

.about__block .swiper-pagination-block .swiper-button .icon:hover {
  background: var(--base-color);
}

.about__block .swiper-pagination-block .swiper-button .icon img {
  width: 20px;
  height: auto;
}

.about__block .swiper-pagination-block .swiper-button .icon img[alt="prev"] {
  -webkit-transform: scale(-1);
          transform: scale(-1);
}

.edges__block {
  -ms-grid-columns: (minmax(300px, 1fr))[auto-fill];
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-auto-rows: auto;
  grid-gap: 30px;
}

.edges__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 3em 0;
}

.edges__item .item__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 120px;
  height: 120px;
  margin-bottom: 1.5em;
}

.edges__item .item__icon img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: auto;
}

.edges__item .item__title {
  text-align: center;
}

.section__couches {
  background: var(--lightbase-color);
}
.couches__block .container {
  height: 100%;
}
.couches__block .swiper-wrapper {
  height: 100%;
}
.couches__block .swiper-button {
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.couches__block .swiper-button:after {
  content: "";
}

.couches__block .swiper-button .icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40px;
          flex: 0 0 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 40px;
  height: 40px;
  background: var(--grey-color);
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: 300ms all;
  transition: 300ms all;
}

.couches__block .swiper-button .icon:hover {
  background: var(--base-color);
}

.couches__block .swiper-button .icon img {
  width: 20px;
  height: auto;
}

.couches__block .swiper-button .icon img[alt="prev"] {
  -webkit-transform: scale(-1);
          transform: scale(-1);
}

.couches__item {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  justify-items: center;
  grid-gap: 30px;
}

.couches__item .couches__title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: right;
}
.couches__item .couches__img {
  display: flex;
  align-items: center;
  justify-content: center;
}
.couches__item .couches__img figure {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
}
.couches__item .couches__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.couches__item .couches__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.couches__more {
  margin: .5em 0;
}
.couches__more .item__link {
  display: flex;
  align-items: center;
}
.couches__more span {
  margin-left: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: var(--base-color);
  color: var(--bg-color);
  line-height: 1;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}
.couches__more img {
  width: .5em;
}
.couches__item .couches__text li {
  margin-bottom: .5em;
  line-height: 1.5;
  font-size: 1.1em;
}

.boss__item {
  display: flex;
  flex-direction: column;
  max-width: 320px;
  margin: 0 auto;
  background: #fff;
  border-radius: 5px;
}
.boss__content {
  flex: 1 1;
  padding: 1.5em;
}
.boss__img {
  flex: 0 0 400px;
  height: 400px;
  width: 100%;
}
.boss__img figure {
  width: 100%;
  height: 100%;
}
.boss__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section__order {
  background: var(--base-color);
  color: var(--bg-color);
}

.order__block {
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  grid-gap: 30px;
  grid-auto-rows: auto;
}

.order__block .block__item {
  padding: 2em;
}

.order__block .block__title .h2 {
  margin-bottom: 30px;
}

.order__form .form__group:not(:last-child) {
  margin-bottom: 40px;
}

.order__form input {
  padding: 1em;
  border: none;
  border-bottom: 1px solid #fff;
  background: inherit;
  width: 100%;
}

.order__form input::-webkit-input-placeholder {
  color: var(--bg-color);
}

.order__form input:-ms-input-placeholder {
  color: var(--bg-color);
}

.order__form input::-ms-input-placeholder {
  color: var(--bg-color);
}

.order__form input::placeholder {
  color: var(--bg-color);
}

.order__form input:focus {
  background: inherit;
  color: var(--bg-color);
}

.section__map {
  position: relative;
  background: var(--bg-color);
}

.map__block {
  -ms-grid-columns: 2fr 3fr;
      grid-template-columns: 2fr 3fr;
  grid-auto-rows: auto;
  grid-gap: 0;
}
.map iframe {
  width: 100%;
  height: 100%;
}
.contacts__block {
  width: calc(1300px/5*2);
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 53px;
}

.contacts__block .block__title {
  margin-bottom: 30px;
}

.contacts__block .block__text {
  margin-bottom: 30px;
}

.contacts__block .block__text p {
  margin-bottom: .5em;
}

.contacts__block .social__block {
  -ms-flex-item-align: end;
      align-self: flex-end;
}
.map__block .social__block {
  display: flex;
  flex-direction: column;
}
.map__block .social__item {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
}
.map__block .social__item .title {
  display: block;
  margin-right: 1em;
}
.footer {
  margin-top: auto;
  background: var(--text-color);
}

.footer__block {
  padding: 1.5em 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
              flex-direction: column;
}

.bw__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.bw__block .bw__img {
  margin-right: .5em;
}

.bw__block p {
  font-size: .9em;
}

.bw__block .link {
  color: var(--bg-color);
}

@media (min-width: 1330px) {
  .container {
    max-width: 1300px;
  }
}

@media (max-width: 1330px) {
  .header__block {
    padding: 1em 0;
    /* -ms-grid-columns: 255px 1fr 200px;
        grid-template-columns: 255px 1fr 200px; */
  }
}

@media (max-width: 1199px) {
  .container {
    max-width: 100%;
    padding-right: 30px;
    padding-left: 30px;
  }
  .header__block {
    padding: 1em 0;
    -ms-grid-columns: 300px 1fr;
        grid-template-columns: 300px 1fr;
  }
  .header__nav {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    grid-column: 2 span;
  }
  .services__block {
    grid-gap: 1em;
  }
  .couches__item {
    grid-template-columns: repeat(auto-fill, minmax(265px, 1fr));
  }

  .couches__item .couches__img figure {
    width: 265px;
    height: 265px;
  }
}

@media (max-width: 992px) {
  body {
    font-size: 12px;
  }
  .container {
    max-width: 100%;
  }
  .h1, .content__inner h1 {
    font-size: 3.2em;
    font-weight: bold;
  }
  .h2, .content__inner h2 {
    font-size: 2.5em;
    font-weight: bold;
  }
  .h3 .content__inner h3 {
    font-size: 2em;
    font-weight: bold;
  }
  .h4 .content__inner h4 {
    font-size: 1.55em;
  }
  .h5 .content__inner h5 {
    font-size: 1.25em;
  }
  
  .header__banner,
  .section__item {
    padding: 1.5em 0;
  }
  .nav__item .nav__link {
    /* font-size: 1.5em; */
    word-break: keep-all;
  }
  .parallax__item {
    display: none;
  }
  .about__block {
    padding: 2em 0;
  }
  .about__block .swiper-container {
    padding-bottom: 3em;
  }
  .about__block .swiper-slide {
    width: 75%;
  }
  .about__block .swiper-pagination-block {
    -ms-grid-columns: 1fr 30px 75% 30px 1fr;
        grid-template-columns: 1fr 30px 75% 30px 1fr;
  }
  .about__block .swiper-pagination-block .swiper-button .icon {
    width: 20px;
    height: 20px;
  }
  .about__block .swiper-pagination-block .swiper-button .icon img {
    width: 12px;
  }
  .services__block {
    grid-row-gap: 3em;
  }

  .edges__block {
    -ms-grid-columns: (minmax(200px, 1fr))[auto-fill];
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    grid-row-gap: 0;
  }
  .edges__item {
    padding: 1.5em 0;
  }
  .map__block {
    -ms-grid-columns: 1fr 2fr;
        grid-template-columns: 1fr 2fr;
  }
  .contacts__block {
    width: auto;
  }
  .couches__item {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }

  .couches__item .couches__img figure {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 12px;
  }
  .container {
    max-width: 100%;
  }
  .content__inner tr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: 100% !important;
    height: auto !important;
  }
  .content__inner tr th,
  .content__inner tr td {
    -webkit-box-flex: 1;
        -ms-flex: 1 1;
            flex: 1 1;
    width: 100% !important;
    padding: .5em;
    vertical-align: baseline;
  }
  .header__block {
    grid-template-columns:  1fr;
    grid-gap: 1.5em;
  }
  .header__logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    grid-column: span 2;
  }
  .header__logo .logo__img {
    max-width: 250px;
  }
  .header__info {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    grid-column: span 2;
  }
  .social__block {
    margin-right: 0;
  }
  .nav__list {
    white-space: nowrap;
    overflow-x: auto;
    -ms-scroll-snap-type: x mandatory;
        scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-padding: 48px;
  }
  .nav__list::-webkit-scrollbar {
    width: .5em;
    height: 4px;
  }
  .nav__list::-webkit-scrollbar-track {
    -webkit-box-shadow: var(--before-shadow);
            box-shadow: var(--before-shadow);
  }
  .nav__list::-webkit-scrollbar-thumb {
    background-color: var(--grey-color);
    outline: 1px solid var(--grey-color);
  }
  .header__banner {
    -ms-grid-columns: 1fr 2fr;
        grid-template-columns: 1fr 2fr;
    grid-gap: 1em;
  }
  .services__block {
    -ms-grid-columns: minmax(200px, 1fr) [auto-fill];
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
  
  .services__item .item__img .img__bg {
    height: 200px;
    width: 200px;
  }
  .couches__item {
    grid-template-columns: 1fr;
  }
  .couches__item .couches__title {
    order: 2;
    text-align: center;
  }
  .couches__item .couches__text {
    order: 3;
  }
  .couches__item .couches__img {
    order: 1; 
  }
  .couches__item .couches__img figure {
    width: 265px;
    height: 265px;
  }
}

@media (max-width: 576px) {
  .container {
    max-width: 100%;
    padding-left: 1em;
    padding-right: 1em;
  }
  .h1 {
    font-size: 2em;
  }
  .h2 {
    font-size: 1.8em;
  }
  .h3 {
    font-size: 1.6em;
  }
  .h4 {
    font-size: 1.4em;
  }
  .h5 {
    font-size: 1.2em;
  }
  .header__banner {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .banner__img img {
    max-width: 300px;
  }
  .banner__text {
    padding: 0 1.5em;
  }
  .map__block {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .contacts__block {
    margin-left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 53px;
  }
  .contacts__block .social__block {
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
  .map {
    height: 350px;
  }
  .order__block {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    grid-gap: 1em;
  }
  .section__about .section__desc ul {
    column-count: 1;
  }
}
/*# sourceMappingURL=main.css.map */