@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@300;400;600;700;900&display=swap");
/*Обнуление*/
* {
  padding: 0;
  margin: 0;
  border: 0;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:focus, :active {
  outline: none;
}

a, path {
  transition: 0.3s all;
}

a:focus, a:active {
  outline: none;
}

nav, footer, header, aside {
  display: block;
}

html, body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input, button, textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}

.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

html, body {
  scrollbar-color: #458245 #714826; /* «цвет ползунка» | «цвет полосы скроллбара» */
  scrollbar-width: auto; /* толщина: auto | thin | none */
}

/*  Для Google Chrome, Яндекс.Браузер, Safari и Opera используйте следующие CSS свойства. */
/* полоса прокрутки (скроллбар) */
body::-webkit-scrollbar {
  width: 7px; /* ширина для вертикального скролла */
  height: 18px; /* высота для горизонтального скролла */
  background-color: #1E1E1E;
}

/* ползунок скроллбара */
body::-webkit-scrollbar-thumb {
  background-color: #927265;
}

/*--------------------*/
/* ---------------- */
body {
  color: #1E1E1E;
  background: #fff;
  font-family: "Nunito Sans", sans-serif;
  overflow-x: hidden;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

h1 {
  font-size: 34px;
  line-height: 44px;
}

h2 {
  font-size: 36px;
  line-height: 48px;
}

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

.arrow-up {
  width: 42px;
  height: 42px;
  background: #fff;
  border-radius: 50%;
  border: 1px solid #927265;
  background: #927265;
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  right: 25px;
  bottom: 25px;
  opacity: 0;
  z-index: -1;
}
.arrow-up-fixed {
  z-index: 1;
  opacity: 1;
}
.arrow-up img {
  transform: rotate(90deg);
  filter: brightness(11);
}

.header {
  position: absolute;
  width: 100%;
  transition: 0.3s all;
}
.header__top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
}
.header__top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.header__social {
  display: flex;
  gap: 9px;
  align-items: center;
}
.header__social p {
	color: #fff;
}
.header__social a {
	color: #fff;
	font-size: 16px;
	text-decoration: none;
}
.header-fixed .header__social a {
	color: #1E1E1E;
}
.header__contact {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}
.header__contact a {
  color: #fff;
  font-size: 16px;
  font-weight: normal;
  display: flex;
  align-items: center;
  gap: 6px;
}
.header__btn {
	background: #927265;
	border: 1px solid #927265;
	display: inline-block;
	padding: 10px 15px;
	color: #fff !important;
	transition: .3s all;
	margin-right: 10px;
}
.header__btn:hover {
	background: transparent;
	color: #927265!important;
}
.header__contact-map {
	position: relative;
	display: flex;
	justify-content: center;
	gap: 10px;
}
.header__contact-map p {
	color: #fff;
}
.header__contact-map:hover > .header__contact-wrap {
	display: block;
}
.header__contact .header__contact-phone {
	font-size: 20px;
}
.header__contact-wrap {
	transition: .3s all;
	display: none;
	position: absolute;
	background: #fff;
	padding: 10px;
	z-index: 4;
	left: 0;
	top: 25px;
	border-radius: 5px;
	width: 100%;
}
.header__contact-wrap li {
	margin-bottom: 10px;
}
.header__contact-wrap li:last-child {
	margin-bottom: 0;
}
.header__contact-wrap:before {
	position: absolute;
	content: '';
	width: 100%;
	height: 25px;
	top: -25px;
}
.header__contact-wrap a {
	color:#1E1E1E;
}
.header__contact-map:hover path, .header__contact-phone:hover path {
  fill: #927265;
}
.header__bottom {
  padding-top: 25px;
}
.header__bottom .logo {
	display: flex;
	align-items: center;
	gap: 15px;
}
.header__bottom .logo span {
	color: #fff;
	font-size: 16px;
	line-height: 128%;
	max-width: 120px;
}
.header__bottom .container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
}
.header__menu {
  display: flex;
  gap: 15px;
	flex-shrink: 0;
}
.header__menu a {
  font-size: 20px;
  color: #fff;
  font-weight: normal;
  font-weight: 300;
}
.header__menu a:hover {
  color: #927265;
}
.header__menu .has-children {
  position: relative;
}
.header__menu .has-children > ul {
  display: none;
  position: absolute;
  opacity: 0;
  transition: 0.3s all;
  background: #fff;
  padding: 15px;
  border-radius: 15px;
  flex-direction: column;
  gap: 10px;
  top: 30px;
  width: 150px;
}
.header__menu .has-children > ul::before {
  content: "";
  width: 100%;
  height: 11px;
  top: -11px;
  position: absolute;
  left: 0;
}
.header__menu .has-children > ul a {
  font-size: 16px;
  color: #1E1E1E;
}
.header__menu .has-children > ul a:hover {
  color: #927265;
}
.header__menu .has-children:hover > ul {
  display: flex;
  opacity: 1;
}

.header-fixed {
  transition: 0.3s all;
  position: fixed;
  background: #fff;
  color: #1e1e1e !important;
  padding-bottom: 10px;
  z-index: 3;
}
.header-fixed .logo img {
  max-width: 100px;
}
.header-fixed .logo span {
	color: #1e1e1e;
}
.header-fixed .logo img {
  filter: brightness(0);
}
.header-fixed .burger-menu_lines::before, .header-fixed .burger-menu_lines::after, .header-fixed .burger-menu_lines {
  background-color: #927265;
}
.header-fixed .header__contact a {
  color: #1E1E1E;
}
.header-fixed .header__contact-map path, .header-fixed .header__contact-phone path {
  fill: #927265;
}
.header-fixed .header__menu a {
  color: #1E1E1E;
  font-size: 16px;
}
.header-fixed .header__top {
  padding: 10px 0;
  border-color: #eee;
}
.header-fixed .header__bottom {
  padding-top: 10px;
}

.header-fixed p {
  color: #1E1E1E;
}

.burger-menu {
  display: none;
  z-index: 99;
}

.burger-menu_button {
  position: absolute;
  top: 10px;
  right: 15px;
  z-index: 30;
  width: 40px;
  height: 30px;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.burger-menu_lines::before,
.burger-menu_lines::after,
.burger-menu_lines {
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #fff;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.burger-menu_lines {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.burger-menu_lines::before {
  content: "";
  top: -9px;
}

.burger-menu_lines::after {
  content: "";
  top: 9px;
}

.burger-menu_active .burger-menu_button {
  position: fixed;
}

.burger-menu_active .burger-menu_lines {
  background-color: transparent;
}

.burger-menu_active .burger-menu_lines::before {
  top: 0;
  transform: rotate(45deg);
  background-color: #1E1E1E;
}

.burger-menu_active .burger-menu_lines::after {
  top: 0;
  transform: rotate(-45deg);
  background-color: #1E1E1E;
}

.burger-menu_nav {
  padding-top: 60px;
  width: 250px;
  position: fixed;
  top: 0;
  z-index: 20;
  display: flex;
  flex-flow: column;
  height: 100%;
  background-color: #fff;
  overflow-y: auto;
  right: -100%;
  -webkit-transition: 0.8s;
  -moz-transition: 0.8s;
  -o-transition: 0.8s;
  transition: 0.8s;
}
.burger-menu_nav .header__btn {
	display: none;
}

.burger-menu_active .burger-menu_nav {
  right: 0;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.burger-menu_nav li a {
  padding: 12px 25px;
  font-size: 18px;
  text-decoration: none;
  font-weight: 400;
  color: #1e1e1e;
  width: 100%;
  display: block;
}
.burger-menu_nav li a:hover {
  color: #927265;
}

.burger-dropdown {
  height: 0;
  overflow: hidden;
  transition: 0.3s all;
}
.burger-dropdown.active {
  overflow: visible;
  padding-left: 12px;
  height: auto;
}
.burger-dropdown li {
  border-bottom: none;
}
.burger-dropdown li:last-child {
  padding-bottom: 0;
}

.burger-link {
  position: relative;
}
.burger-link:after {
  content: "";
  width: 12px;
  height: 12px;
  position: absolute;
  right: 10px;
  top: 15px;
  background: url("../img/menu-arrow.svg") center no-repeat;
  transition: 0.3s all;
}
.burger-link.active:after {
  transform: rotate(180deg);
}

.burger-menu_overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10;
}

.burger-menu_active .burger-menu_overlay {
  display: block;
  background-color: rgba(0, 0, 0, 0.5);
}

.main {
  background: url("../img/bg-main.jpg") center no-repeat;
  background-size: cover;
  padding-bottom: 175px;
  height: 100vh;
}
.main__txt {
  text-align: center;
  padding-top: 35vh;
}
.main__txt h1 {
  color: #FFF;
  text-align: center;
  font-size: 48px;
  font-weight: 900;
  max-width: 870px;
  line-height: 120%;
  margin: 0 auto;
  margin-bottom: 15px;
}
.main__txt-sup {
  color: #FFF;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 1.52px;
  text-transform: uppercase;
	max-width: 670px;
	line-height: 165%;
	margin: 0 auto;
  margin-bottom: 25px;
}
.main__list {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.main__item {
  flex-basis: 350px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 9px;
  background: rgba(14, 14, 14, 0.9);
  padding: 19px;
  transition: 0.3s all;
}
.main__item svg {
  flex-shrink: 0;
}
.main__item p {
  color: #fff;
  font-size: 19px;
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 400;
  line-height: 153.4%;
  text-align: left;
}

.main-services .main__txt {
  text-align: left;
}
.main-services .main__txt h1 {
  text-align: left;
  max-width: 100%;
  margin-bottom: 20px;
}
.main-services .main__txt-sup {
	margin: 0;
	margin-bottom: 15px;
}

.main-divan {
  background: url("../img/bg-main-divan.jpg") center no-repeat;
  background-size: cover;
}

.main-creslo {
  background: url("../img/bg-main-creslo.jpg") center no-repeat;
  background-size: cover;
}

.main-beds {
  background: url("../img/bg-main-beds.jpg") center no-repeat;
  background-size: cover;
}

.main-chair {
  background: url("../img/bg-main-chair.jpg") center no-repeat;
  background-size: cover;
}

.main-org {
  background: url("../img/bg-main-org.jpg") center no-repeat;
  background-size: cover;
}

.logo {
  
  width: 100%;
}
.logo img {
	max-width: 150px;
  width: 100%;
}

.head {
  text-align: center;
  line-height: 100%;
}
.head span {
  color: #1E1E1E;
  text-align: center;
  font-size: 28px;
  font-family: "Nunito Sans";
  font-weight: 700;
  line-height: normal;
  position: relative;
}
.head span:before {
  content: "";
  width: 54px;
  height: 54px;
  background: #927265;
  z-index: -1;
  display: inline-block;
  position: absolute;
  top: -9px;
  left: -18px;
}

.btn {
  background: #927265;
  border: 1px solid #927265;
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding: 16px 15px;
  width: 241px;
  display: inline-block;
}
.btn:hover {
  background: #fff;
  color: #927265;
}

.category {
  padding-top: 90px;
}
.category .head {
  margin-bottom: 45px;
}
.category__list {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.category__item {
  text-align: center;
  max-width: 350px;
}
.category__item img {
  display: inline-block;
}

.about {
  padding-top: 90px;
}
.about__block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
}
.about__block:last-child {
  margin-bottom: 0;
}
.about__block-text {
  max-width: 570px;
}
.about__block-text .head {
  margin-bottom: 15px;
  text-align: left;
}
.about__block-text p {
  color: #808080;
  font-size: 16px;
  font-family: Nunito Sans;
  font-style: normal;
  font-weight: 400;
  line-height: 175%;
  margin-bottom: 10px;
  text-align: justify;
}
.about__block-text p:last-child {
  margin-bottom: 0;
}
.about__imgs {
  display: flex;
  justify-content: center;
  gap: 2.7027027027%;
  margin-bottom: 30px;
}
.about__imgs img {
  width: 31.5315315315%;
}

.works {
  padding-top: 90px;
}
.works .head {
  margin-bottom: 45px;
}
.works__content {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.works__content img {
  width: 100%;
  max-width: 350px;
}

.price {
  padding-top: 90px;
}
.price .head {
  margin-bottom: 120px;
}
.price__content {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 135px 30px;
}
.price__item {
  width: 350px;
  position: relative;
  padding: 93px 16px 32px;
  text-align: center;
  border-radius: 15px;
  border: 1px solid #927265;
  background: #FFF;
  position: relative;
  transition: 0.3s all;
}
.price__item .btn {
  width: 197px;
}
.price__item::before {
  content: "";
  position: absolute;
  background: #927265;
  bottom: -10px;
  left: 4%;
  border-radius: 15px;
  display: block;
  z-index: -1;
  height: 100%;
  width: 92%;
  transition: 0.3s all;
}
.price__item h3 {
  color: #1E1E1E;
  font-size: 22px;
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 20px;
}
.price__item ul {
  margin-bottom: 24px;
}
.price__item li {
  text-align: left;
  margin-bottom: 11px;
  color: #1E1E1E;
  font-size: 16px;
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.price__item li:last-child {
  margin-bottom: 0;
}
.price__item li img {
  margin-right: 7px;
  vertical-align: middle;
  display: inline-block;
}
.price__item:hover {
  background: #927265;
}
.price__item:hover::before {
  background: #D7C2AD;
}
.price__item:hover .btn {
  border-color: #fff;
}
.price__item:hover h3 {
  color: #fff;
}
.price__item:hover li {
  color: #fff;
}
.price__item:hover li img {
  filter: brightness(10);
}
.price__item-img {
  height: 160px;
  text-align: center;
  position: absolute;
  left: 0;
  top: -80px;
  text-align: center;
  width: 100%;
}
.price__item-img img {
  display: inline-block;
}

.reviews {
  padding-top: 90px;
}
.reviews .head {
  margin-bottom: 45px;
}
.reviews .slick-list {
  padding-bottom: 15px;
}
.reviews__slide {
  text-align: center;
  margin: 0 15px;
  border-radius: 15px;
  background: #FFF;
  box-shadow: 0px 7px 30px 0px rgba(0, 0, 0, 0.11);
  padding: 28px 33px 40px;
}
.reviews__slide img {
  display: inline-block;
  width: 147px;
  height: 147px;
  border-radius: 50%;
  margin-bottom: 20px;
  object-fit: cover;
  object-position: center;
}
.reviews__slide h3 {
  color: #1E1E1E;
  font-size: 20px;
  font-family: "Nunito Sans";
  font-weight: 600;
  line-height: normal;
  margin-bottom: 20px;
}
.reviews__slide p {
  color: #808080;
  font-size: 16px;
  line-height: 165%;
  height: 250px;
  overflow-y: auto;
  /*  Для Google Chrome, Яндекс.Браузер, Safari и Opera используйте следующие CSS свойства. */
  /* полоса прокрутки (скроллбар) */
  /* ползунок скроллбара */
}
.reviews__slide p::-webkit-scrollbar {
  width: 3px; /* ширина для вертикального скролла */
  background-color: #1E1E1E;
}
.reviews__slide p::-webkit-scrollbar-thumb {
  background-color: #927265;
}

.arrow {
  position: absolute;
  top: calc(50% - 20px);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  background: #FFF;
  box-shadow: 0px 7px 30px 0px rgba(0, 0, 0, 0.11);
  cursor: pointer;
  width: 40px;
  height: 40px;
  z-index: 1;
}
.arrow-left {
  left: -20px;
}
.arrow-right {
  right: -20px;
}
.arrow-right img {
  transform: rotate(180deg);
}

.team {
  padding-top: 90px;
}
.team__header {
  max-width: 598px;
  margin: 0 auto;
  margin-bottom: 45px;
}
.team__header .head {
  margin-bottom: 28px;
}
.team__header p {
  color: #808080;
  text-align: center;
  font-size: 16px;
  font-family: Nunito Sans;
  font-style: normal;
  font-weight: 400;
  line-height: 165%;
}
.team__content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 2.6315789474%;
}
.team__item {
  text-align: center;
  width: 30.701754386%;
	margin: 0 15px;
}
.team__item img {
  width: 100%;
  margin-bottom: 15px;
  display: inline-block;
}
.team__item h3 {
  margin-bottom: 10px;
  color: #1E1E1E;
  font-size: 20px;
  line-height: normal;
}
.team__item p {
  color: #FF4242;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.92px;
  text-transform: uppercase;
}

.process {
  padding-top: 90px;
}
.process .head {
  margin-bottom: 45px;
}
.process__content {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}
.process__item {
  width: 22.3684210526%;
  border-radius: 15px;
  border: 1px solid #927265;
  background: #fff;
  box-shadow: 0px 7px 30px 0px rgba(0, 0, 0, 0.11);
  text-align: center;
  padding: 22px 19px;
}
.process__item:nth-child(even) {
  background: #927265;
}
.process__item:nth-child(even) .process__item-img {
  background: #fff;
}
.process__item:nth-child(even) h3 {
  color: #fff;
}
.process__item:nth-child(even) p {
  color: #fff;
}
.process__item h3 {
  color: #1e1e1e;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 11px;
}
.process__item p {
  color: #808080;
  text-align: center;
  font-size: 16px;
  line-height: 165%;
}
.process__item .btn {
  width: 197px;
  margin-top: 15px;
}
.process__item-img {
  width: 114px;
  height: 114px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: #927265;
  margin-bottom: 15px;
}

.promo {
  background: url("../img/bg-promo.jpg") center no-repeat;
  background-size: cover;
  padding: 44px 0;
  margin-top: 170px;
}
.promo .container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
  position: relative;
}
.promo__text {
  max-width: 350px;
}
.promo__text h2 {
  color: #FFF;
  font-size: 28px;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 8px;
}
.promo__text p {
  color: #FFF;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}
.promo__form {
  max-width: 285px;
}
.promo__form form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.promo__img {
  position: absolute;
  bottom: -44px;
  right: 33px;
}

input[type=text] {
  color: #1E1E1E;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  padding: 17px;
  border-radius: 0;
}

input[type=text]::-moz-placeholder {
  color: #808080;
}

input[type=text]::-webkit-input-placeholder {
  color: #808080;
}

input[type=text]:-ms-input-placeholder {
  color: #808080;
}

input[type=text]::-ms-input-placeholder {
  color: #808080;
}

input[type=text]::placeholder {
  color: #808080;
}

.btn-white {
  padding: 17px;
  color: #1E1E1E;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  border: 1px solid #DDA26A;
  cursor: pointer;
  transition: 0.3s all;
  background: #DDA26A;
}
.btn-white:hover {
  background: transparent;
  border-color: #fff;
  color: #fff;
}

input[type=text].input-user {
  padding-left: 55px;
  background-image: url("../img/icon-user.svg");
  background-repeat: no-repeat;
  background-position: 15px center;
}

input[type=text].input-phone {
  padding-left: 55px;
  background-image: url("../img/icon-phone-2.svg");
  background-repeat: no-repeat;
  background-position: 15px center;
}

.faq {
  padding-top: 90px;
}
.faq .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}
.faq__right {
  flex-basis: 570px;
}
.faq__right .head {
  text-align: left;
  margin-bottom: 45px;
}

.accordion {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.accordion__item {
  background: #fff;
  border: 1px solid #D9D9D9;
  border-radius: 7px;
  width: 100%;
}

.accordion__item .accordion__title {
  width: 100%;
  position: relative;
  display: block;
  padding: 13px 60px 13px 19px;
  color: #1e1e1e;
  font-size: 16px;
  line-height: 175%;
  text-decoration: none;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
  cursor: pointer;
  border-radius: 7px;
}

.accordion__item .accordion__title:hover {
  background-color: #927265;
  color: #fff;
  transition: all 0.5s ease-out;
}
.accordion__item .accordion__title:hover .accordion__arrow {
  filter: brightness(11);
}

.accordion__item .accordion-active {
  color: #fff;
  background-color: #927265;
}

.accordion__item .accordion__title .accordion__arrow {
  position: absolute;
  top: 13px;
  right: 10px;
  display: inline-block;
  vertical-align: middle;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  background: url("../img/plus.svg");
}

.accordion__item .accordion__rotate {
  transform: rotate(225deg);
  filter: brightness(11);
}

.accordion__item .accordion__content {
  padding: 15px;
  font-size: 14px;
  text-align: justify;
  display: none;
  color: #808080;
}

.article {
  padding-top: 60px;
}
.article .head {
  margin-bottom: 35px;
}
.article__content p {
  color: #808080;
  margin-bottom: 10px;
  text-align: justify;
}
.article__content p:last-child {
  margin-bottom: 0;
}

.footer {
  padding-top: 90px;
  padding-bottom: 30px;
}
.footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.footer__contact {
  max-width: 236px;
}
.footer__contact .head {
  text-align: left;
  margin-bottom: 35px;
}
.footer__contact .btn {
  margin-top: 24px;
}
.footer__social {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  gap: 10px;
}
.footer__social a {
  font-size: 16px;
  line-height: 1;
  color: #1E1E1E;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 6px;
}
.footer__social a img {
  vertical-align: middle;
}
.footer__social a:hover {
  color: #927265;
}
.footer__map {
  width: 100%;
  max-width: 730px;
}
.footer__map iframe {
  width: 100%;
  height: 475px;
}

.footer-mini {
	border-top: 1px solid #eee;
	padding-top: 25px;
	padding-bottom: 25px;
}

.footer-mini .container {
	display: flex;
	justify-content: space-between;
	gap: 10px;
	align-items: center;
}
.footer-mini .logo img {
	max-width: 110px;
	filter: brightness(0);
}

.footer-mini__center {
	text-align: center;
}

.footer-mini p, .footer-mini a {
	font-size: 16px;
	color: #1E1E1E;
}
.footer-mini__right {
	display: flex;
	justify-content: flex-end;
	gap: 8px;
	align-items: start;
}
.footer-mini__right a {
	display: block;
	width: 28px;
	height: 28px;
}
.footer-mini__right svg,
.footer-mini__right img {
	display: block;
	width: 28px;
	height: 28px;
}
.footer-mini__right img {
	object-fit: contain;
}

.yclients-floating-btn {
	position: fixed;
	right: 25px;
	bottom: 85px;
	background: #927265;
	color: #FFF !important;
	padding: 15px 25px;
	border-radius: 30px;
	font-size: 16px;
	font-weight: 700;
	text-decoration: none;
	box-shadow: 0 4px 15px rgba(146, 114, 101, 0.4);
	z-index: 999;
	transition: all 0.3s ease;
}
.yclients-floating-btn:hover {
	background: #7a5e53;
	transform: translateY(-3px);
	box-shadow: 0 6px 20px rgba(146, 114, 101, 0.5);
}
@media (max-width: 768px) {
	.yclients-floating-btn {
		right: 15px;
		bottom: 70px;
		padding: 12px 18px;
		font-size: 14px;
	}
}


.modals-hide {
  display: none;
}

/* ZOOM */
.mfp-zoom-in .mfp-with-anim {
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
}

.mfp-zoom-in.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.mfp-zoom-in.mfp-ready .mfp-with-anim {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.mfp-zoom-in.mfp-ready.mfp-bg {
  opacity: 0.8;
}

.mfp-zoom-in.mfp-removing .mfp-with-anim {
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
  opacity: 0;
}

.mfp-zoom-in.mfp-removing.mfp-bg {
  opacity: 0;
}

.modals {
  position: relative;
  background: #fff;
  border-radius: 15px;
  margin: 0 auto;
  max-width: 450px;
  padding: 30px;
	padding-bottom: 0;
  text-align: center;
}
.modals h2 {
  font-size: 23px;
  font-weight: bold;
  line-height: 150%;
}
.modals .amoforms_iframe {
	height: 195px !important;
}
#modal-call.modals .amoforms_iframe {
	height: 330px !important;
}
.modals p {
  color: #808080;
  margin-bottom: 20px;
}
.modals .note {
	margin-top: 15px;
	font-size: 14px;
	line-height: 136%;
	padding-bottom: 24px;
	color: #1E1E1E;
}
.modals .note a {
	text-decoration: underline;
	color: #1E1E1E;
}
.modals form {
  display: flex;
  gap: 10px;
  text-align: center;
  flex-direction: column;
}
.modals form input {
  border: 1px solid #fff;
  transition: 0.3s all;
}
.modals form input:hover, .modals form input:focus {
  border-color: #927265;
}
.modals form .btn-white {
  border-color: #927265;
  background: #fff;
}
.modals form .btn-white:hover {
  color: #fff;
  background: #927265;
}
.modals__img_taimer {
	width: 100%;
	border-top-right-radius: 15px;
	border-top-left-radius: 15px;
	height: 230px;
	object-fit: cover;
	object-position: center;
}
#modal-taimer {
	padding: 0;
}
.modals__content {
	padding: 15px 30px 0;
}
#modal-policy {
	max-width: 980px;
	text-align: left;
}
#modal-policy h2 {
	margin-bottom: 20px;
	text-align: center;
}
#modal-policy h3 {
	font-size: 22px;
	line-height: 150%;
	margin-bottom: 15px;
	font-weight: bold;
	margin-top: 15px;
}
#modal-policy {
	padding-bottom: 30px;
}
#modal-policy p {
	margin-bottom: 10px;
}
.policy {
	margin-top: 100px;
}
.policy h2 {
	font-size: 23px;
	font-weight: bold;
	line-height: 150%;
	margin-bottom: 20px;
}
.policy h3 {
	font-size: 22px;
    line-height: 150%;
    margin-bottom: 15px;
    font-weight: bold;
    margin-top: 15px;
}
.policy p {
	margin-bottom: 10px;
}
@media screen and (max-width: 1024px) {
	.header__btn {
		margin-right: 0;
	}
	.header__contact-map p {
		display: none;
	}
} 
@media screen and (max-width: 991px) {
	.header .header__btn {
		display: none;
	}
	.burger-menu_nav .header__btn {
		display: inline-block;
    margin: 10px 10px;
    text-align: center;
	}
  .main {
    height: auto;
  }
  .main__txt {
    padding-top: 250px;
  }
  .main__txt-sup {
    font-size: 14px;
    line-height: 155%;
  }
  .main__txt h1 {
    font-size: 36px;
    line-height: 130%;
  }
  .main__list {
    flex-wrap: wrap;
    justify-content: center;
  }
  .main__item p {
    font-size: 14px;
  }
  .header__menu {
    display: none;
  }
  .header__bottom {
    position: relative;
    padding-top: 20px;
  }
  .burger-menu {
    display: block;
  }
  .about__block img {
    width: 40.0900900901%;
  }
  .process__content {
    flex-wrap: wrap;
  }
  .process__item {
    width: 255px;
  }
  .promo__img {
    right: -10px;
  }
  .promo .container {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .promo__form {
    z-index: 2;
    max-width: 100%;
    width: 54%;
  }
  .faq img {
    width: 350px;
  }
}
@media screen and (max-width: 767px) {
	.header__social p {
		display: none;
	}
	.header__contact-wrap {
		width: 150px;
	}
	.header__contact-map p {
		display: none;
	}
	.header__contact .header__contact-phone {
		font-size: 17px;
	}
  .main__item {
    width: 100%;
    max-width: 100%;
    flex-basis: 100%;
    height: auto;
  }
  .main {
    padding-bottom: 60px;
  }
  .main__txt {
    padding-top: 200px;
  }
  .head span {
    font-size: 24px;
  }
  .header__contact-map span {
    display: none;
  }
  .category__item {
    max-width: 320px;
  }
  .category__item img {
    width: 100%;
  }
  .category__item .btn {
    width: 100%;
  }
  .about__block {
    flex-direction: column-reverse;
  }
  .about__block img {
    width: auto;
  }
  .about__block:last-child {
    flex-direction: column;
  }
  .about__block-text {
    max-width: 100%;
  }
  .works__content {
    gap: 10px 2%;
  }
  .works__content img {
    width: 49%;
  }
  .promo__text h2 {
    font-size: 24px;
  }
  .faq .container {
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    gap: 30px;
  }
  .faq__right {
    flex-basis: auto;
    width: 100%;
  }
  .faq__right .head {
    text-align: center;
  }
  .main-services {
    padding-bottom: 150px;
  }
	.wrap-btn .head span {
		font-size: 20px;
	}
}
@media screen and (max-width: 620px) {
  .header__contact {
    gap: 10px;
  }
  .main__txt h1 {
    font-size: 26px;
  }
  .main__txt-sup {
    font-size: 12px;
  }
  .category, .about, .works, .team, .price, .reviews, .faq {
    padding-top: 60px;
  }
  .promo {
    margin-top: 60px;
  }
  .about__block img {
    width: 100%;
  }
  .price__content {
    gap: 115px 30px;
  }
  .price__item {
    width: 100%;
  }
  .team__content {
    gap: 20px 4%;
  }
  .team__item {
    width: 48%;
  }
  .team__item img {
    margin-bottom: 7px;
  }
  .team__item h3 {
    font-size: 17px;
    margin-bottom: 3px;
  }
  .team__item p {
    font-size: 13px;
  }
  .promo .container {
    align-items: center;
  }
  .promo__text {
    max-width: 100%;
    width: 100%;
    text-align: center;
  }
  .promo__form {
    width: 100%;
  }
  .promo__img {
    display: none;
  }
  .footer .container {
    flex-direction: column;
  }
  .footer__contact {
    max-width: 100%;
    width: 100%;
  }
  .footer__map {
    width: 100%;
  }
  .footer__map iframe {
    height: 300px;
  }
	.footer-mini .container {
		flex-direction: column;
		align-items: center;
		gap: 20px;
	}
  .arrow-right {
    right: 0;
  }
  .arrow-left {
    left: 0;
  }
  .modals h2 {
    font-size: 22px;
  }
  .main-services .main__txt {
    text-align: center;
  }
  .main-services .main__txt h1 {
    text-align: center;
  }
	.policy {
		margin-top: 50px;
	}
	.policy h3 {
		font-size: 20px;
	}
	#modal-policy h3 {
		font-size: 20px;
	}
	#modal-policy {
		padding: 15px;
		padding-top: 30px;
	}
}
@media screen and (max-width: 380px) {
  .faq img {
    width: 100%;
  }
}
.amoforms-footer-copyright {
  display: none !important;
}

.amoforms-form {
  padding: 0 !important;
}

.amoforms_iframe {
  height: 225px !important;
  margin: 0 !important;
}

.promo__form .amoforms_iframe {
  height: 202px !important;
}

@media screen and (max-width: 380px) {
  #amofroms_main_wrapper {
    max-width: 100% !important;
    width: 100% !important;
  }
}/*# sourceMappingURL=style.css.map */


.wrap-btn {
	margin-top: 60px;
	background: #927265;
	text-align: center;
	padding: 30px 0;
}
.wrap-btn .head {
	color:#fff;
	max-width: 810px;
	margin: 0 auto;
	margin-bottom: 20px;
}
.wrap-btn .head span {
	color:#fff;
}
.wrap-btn .btn {
	background: #fff;

	color: #1e1e1e;
}
.wrap-btn p {
	margin-bottom: 20px;
	color:#fff;
}


.quiz {
  background: #fff;
  padding-top: 100px;
}
.quiz .container {
  max-width: 1140px;
}

.quiz__step {
  display: none;
}
.quiz__step.active {
  display: block;
}
.quiz__step h2 {
  color: #1E1E1E;
  font-size: 28px;
  line-height: 150%;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  max-width: 460px;
  margin: 0 auto;
  margin-bottom: 30px;
}
.quiz__step-5 {
  opacity: 0;
  position: absolute;
  top: 0;
  z-index: -1;
}
.quiz__step-5.op {
  opacity: 1;
  position: static;
}

.quiz__up p {
  color: #0c0c0c;
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
}

.quiz__imgs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.quiz__imgs-item {
  max-width: 255px;
}
.quiz__imgs-item input {
  display: none;
}
.quiz__imgs-item input:checked + label:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  background-image: url("../img/quiz/check.svg");
  background-repeat: no-repeat;
  background-size: 42px;
  background-position: center center;
}
.quiz__imgs-item input:checked + label span {
	color: #fff;
	position: relative;
	z-index: 2;
}
.quiz__imgs-item label {
  position: relative;
	cursor: pointer;
}
.quiz__imgs-item label::after {
  transition: 0.3s all;
}
.quiz__imgs-item label span {
  color: #0C0C0C;
  font-size: 16px;
  text-align: center;
  display: block;
	padding-bottom: 10px;
}
.quiz__imgs-item img {
  width: 100%;
}

.quiz__btns {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
  align-items: center;
}
.quiz__btns .btn-next {
  background: #927265;
  border: 1px solid #927265;
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding: 16px 15px;
  display: inline-block;
  transition: 0.3s all;
}
.quiz__btns .btn-next:hover {
  background: transparent;
  color: #927265;
}
.quiz__btns .btn-prev {
  padding: 16px 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #cecece;
  height: 53.24px;
}
.quiz__btns .btn-prev img {
  width: 24px;
}
.quiz__btns .btn-prev:hover {
  opacity: 0.9;
}

.quiz__works {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-direction: column;
  max-width: 340px;
  margin: 0 auto;
}

.quiz__step-3 .quiz__works {
  max-width: 440px;
}

.quiz__checkbox input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.quiz__checkbox input + label {
  display: inline-flex;
  align-items: center;
  user-select: none;
  color: #0C0C0C;
  font-size: 22px;
	cursor: pointer;
}
.quiz__checkbox input + label::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  flex-shrink: 0;
  flex-grow: 0;
  border: 1px solid #adb5bd;
  border-radius: 0.25em;
  margin-right: 0.5em;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
}
.quiz__checkbox input:checked + label::before {
  border-color: #927265;
  background-color: #927265;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}

.quiz__radio input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.quiz__radio input + label {
  display: inline-flex;
  align-items: center;
  user-select: none;
  color: #0C0C0C;
  font-size: 22px;
	cursor: pointer;
}
.quiz__radio input + label::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  flex-shrink: 0;
  flex-grow: 0;
  border: 1px solid #adb5bd;
  border-radius: 50%;
  margin-right: 0.5em;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
}
.quiz__radio input:checked + label::before {
  border-color: #927265;
  background-color: #927265;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="8" height="8" viewBox="0 0 8 8" fill="none"><circle cx="4" cy="4" r="4" fill="white"/></svg>');
}

@media (max-width: 767px) {
  .quiz__imgs {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
  }
  .quiz__imgs-item {
    width: 255px;
    flex-shrink: 0;
  }
}
@media (max-width: 620px) {
  .quiz__step h2 {
    font-size: 20px;
  }
  .quiz__radio input + label {
    font-size: 18px;
  }
  .quiz__checkbox input + label {
    font-size: 18px;
  }
}
