@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  padding: 0;
  margin: 0;
  list-style-type: none;
  text-decoration: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  background-color: #F9F6F0;
}

body.lock {
  overflow: hidden;
}

.container {
  width: calc(100% - 78px);
  margin: 0 auto;
}

.container-inner {
  width: 75%;
  margin: 0 auto;
  max-width: 1200px;
}

.container-inner-two {
  width: 72%;
  margin: 0 auto;
  max-width: 1200px;
}

.header {
  margin-top: 16px;
}
.header_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.header_wrapper * {
  font-family: "Lato", sans-serif;
}
.header_wrapper-center {
  font-size: 40px;
}
.header_wrapper-center img {
  height: 90px;
}
.header_wrapper-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header_wrapper-left a {
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  color: #6E4B3A;
}
.header_wrapper-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  position: relative;
}
.header_wrapper-right .new-button {
  border: 1px solid #6E4B3A;
  border-radius: 100px;
	background-color:#6E4B3A;
  padding: 12px 20px;
  font-weight: 400;
  font-size: 12px;
  line-height: 120%;
  text-transform: uppercase;
  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;
  color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header_wrapper-right .new-button:hover {
  background-color: #6E4B3A;
  color: #fff;
}
.header_wrapper-right .order-button {
  border: 1px solid #6E4B3A;
  border-radius: 100px;
  padding: 12px 60px;
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  text-transform: uppercase;
  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;
  color: #6E4B3A;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header_wrapper-right .order-button:hover {
  background-color: #6E4B3A;
  color: #fff;
}
.header_wrapper-right .lang-switch {
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.header_wrapper-right .lang-switch__current {
  padding: 4px 8px;
  border: 1px solid rgba(110, 75, 58, 0.5019607843);
  border-radius: 100px;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 150%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
}
.header_wrapper-right .lang-switch__dropdown {
  position: absolute;
  top: 44px;
  left: 0;
  background: white;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 100%;
  z-index: 100;
  border: 1px solid rgba(110, 75, 58, 0.5019607843);
  border-radius: 16px;
}
.header_wrapper-right .lang-switch__dropdown a {
  background-color: transparent;
  padding: 5px 10px;
  text-decoration: none;
  border-radius: 16px;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #2B2B2B;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
}
.header_wrapper-right .lang-switch__dropdown a svg {
  -webkit-transform: rotate(180deg) translateY(2px);
  -ms-transform: rotate(180deg) translateY(2px);
  transform: rotate(180deg) translateY(2px);
}
.header_wrapper-right .lang-switch__dropdown a:hover {
  background: #f5f5f5;
}
.header_wrapper-right .lang-switch.active .lang-switch__dropdown {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header_wrapper .header-burger-bg {
  width: 40px;
  height: 40px;
  padding: 8px;
  background-color: rgba(110, 75, 58, 0.5019607843);
  border-radius: 100px;
  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;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  cursor: pointer;
}
.header_wrapper .header-burger-bg:hover {
  background-color: #4E3629;
}
.header_wrapper .header-burger-bg.active {
  background-color: #4E3629;
}
.header_wrapper .header_burger {
  height: 14px;
  width: 20px;
  position: relative;
  cursor: pointer;
}
.header_wrapper .header_burger:before, .header_wrapper .header_burger:after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #fff;
  display: block;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.header_wrapper .header_burger:before {
  position: absolute;
  top: 0;
}
.header_wrapper .header_burger:after {
  position: absolute;
  bottom: 0;
}
.header_wrapper .header_burger span {
  width: 100%;
  height: 2px;
  background-color: #fff;
  display: block;
  position: absolute;
  top: 6px;
  -webkit-transition: all 0.8s ease 0s;
  transition: all 0.8s ease 0s;
}
.header_wrapper .header_burger.active span {
  -webkit-transform: scale(3) scale(0);
  -ms-transform: scale(3) scale(0);
  transform: scale(3) scale(0);
}
.header_wrapper .header_burger.active:before {
  -webkit-transform: rotate(-225deg);
  -ms-transform: rotate(-225deg);
  transform: rotate(-225deg);
  top: 6px;
}
.header_wrapper .header_burger.active:after {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  bottom: 6px;
}

.header-menu {
  position: fixed;
  width: 100%;
  top: 130px;
  z-index: -1;
  opacity: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header-menu.active {
  z-index: 9999999999;
  opacity: 1;
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
  user-select: auto;
  pointer-events: auto;
}
.header-menu * {
  font-family: "Lato", sans-serif;
}
.header-menu_wrapper {
  background-color: #fff;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 20px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.header-menu_wrapper .itemhead {
  margin-bottom: 24px;
}
.header-menu_wrapper .itemhead a {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #6E4B3A;
}
.header-menu_wrapper ul li {
  margin-bottom: 16px;
}
.header-menu_wrapper ul li a {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #2B2B2B;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
  border-bottom: 0px solid #2B2B2B;
  padding-bottom: 2px;
}
.header-menu_wrapper ul li a:hover {
  border-bottom: 1px solid #2B2B2B;
}
.header-menu_wrapper-tel-adaptive {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: Bold;
  font-size: 16px;
  line-height: 150%;
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  color: #6E4B3A;
  position: relative;
  right: 6px;
}

.mainsection {
  margin-top: 16px;
  margin-left: 40px;
  margin-right: 40px;
  border-radius: 20px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.mainsection::after {
  content: "";
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.4)), to(rgba(0, 0, 0, 0.4)));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.mainsection_wrapper {
  height: 779px;
  padding-top: 100px;
  position: relative;
  z-index: 1;
}
.mainsection_wrapper h1 {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 72px;
  line-height: 108px;
  text-transform: uppercase;
  color: #FFFFFF;
}
.mainsection_wrapper p {
  font-family: "Lato", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 29px;
  color: #FFFFFF;
}

.about {
  margin-top: 120px;
}
.about_wrapper {
  position: relative;
}
.about_wrapper h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 120%;
  text-transform: uppercase;
}
.about_wrapper-info {
  margin-top: 40px;
}
.about_wrapper-info .info-top {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 373px 1fr;
  grid-template-columns: 373px 1fr;
  gap: 40px;
}
.about_wrapper-info .info-top-right h3 {
  font-family: Poppins, sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 100%;
  margin-bottom: 24px;
}
.about_wrapper-info .info-top-right p {
  font-family: Lato, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
}
.about_wrapper-info .info-top-img {
  width: 300px;
}
.about_wrapper-info .info-top-img img {
  width: 80%;
}
.about_wrapper-info .info-bottom {
  margin-top: 40px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 373px 1fr;
  grid-template-columns: 373px 1fr;
  -ms-grid-rows: 390px;
  grid-template-rows: 390px;
  gap: 40px;
}
.about_wrapper-info .info-bottom-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 40px;
}
.about_wrapper-info .info-bottom-left .left-item {
  background-color: #FFF;
  padding: 20px;
  border-radius: 20px;
}
.about_wrapper-info .info-bottom-left .left-item h3 {
  font-family: Poppins, sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 100%;
  margin-bottom: 20px;
}
.about_wrapper-info .info-bottom-left .left-item p {
  font-family: Lato, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
}
.about_wrapper-info .info-bottom-right {
  width: 100%;
}
.about_wrapper-info .info-bottom-right img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  -o-object-fit: cover;
  object-fit: cover;
}

.comfort {
  margin-top: 120px;
  /* Адаптивность */
}
.comfort_wrapper {
  /* Grid Layout (по умолчанию) */
  /* Общие стили для элементов (работают и в grid, и в slider) */
  /* Slider Layout (скрыт по умолчанию) */
}
.comfort_wrapper-heading h2 {
  font-family: Poppins, sans-serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 120%;
  margin-bottom: 40px;
  text-transform: uppercase;
}
.comfort_wrapper-heading p {
  font-family: Lato, sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
}
.comfort_wrapper-plates--grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr 40px 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: 500px 40px 500px 40px 500px;
  grid-template-rows: repeat(3, 500px);
  gap: 40px;
  margin-top: 40px;
  grid-template-areas: "a a b" "c d d" "e e f";
}
.comfort_wrapper-plates--grid .a {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-area: a;
}
.comfort_wrapper-plates--grid .b {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
  grid-area: b;
}
.comfort_wrapper-plates--grid .c {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  grid-area: c;
}
.comfort_wrapper-plates--grid .d {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
  -ms-grid-column-span: 3;
  grid-area: d;
}
.comfort_wrapper-plates--grid .e {
  -ms-grid-row: 5;
  -ms-grid-column: 1;
  grid-area: e;
}
.comfort_wrapper-plates--grid .f {
  -ms-grid-row: 5;
  -ms-grid-column: 3;
  grid-area: f;
}
.comfort_wrapper-plates--grid .g {
  -ms-grid-row: 5;
  -ms-grid-column: 5;
  grid-area: g;
}
.comfort_wrapper-plates-item {
  background-color: #fff;
  border-radius: 20px;
  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;
  overflow: hidden;
}
.comfort_wrapper-plates-item::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(110, 75, 58, 0.1019607843);
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0;
}
.comfort_wrapper-plates-item:hover::after {
  opacity: 1;
}
.comfort_wrapper-plates-item:hover .plates-item-info {
  max-height: 300px;
}
.comfort_wrapper-plates-item:hover .plates-item-info .info-desc,
.comfort_wrapper-plates-item:hover .plates-item-info a {
  opacity: 1;
}
.comfort_wrapper-plates-item .plates-item-info {
  border-radius: 20px;
  background-color: #fff;
  width: 95%;
  max-height: 70px;
  position: absolute;
  bottom: 20px;
  z-index: 1;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  overflow: hidden;
}
.comfort_wrapper-plates-item .plates-item-info h3 {
  font-family: Poppins, sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
}
.comfort_wrapper-plates-item .plates-item-info .info-desc {
  font-family: Lato, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  min-height: 55px;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease 0.1s;
  transition: opacity 0.3s ease 0.1s;
}
.comfort_wrapper-plates-item .plates-item-info a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border-bottom: 1px solid #6E4B3A;
  font-family: Lato, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-transform: uppercase;
  color: #6E4B3A;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease 0.2s;
  transition: opacity 0.3s ease 0.2s;
}
.comfort_wrapper-plates-item .thin {
  bottom: -25%;
}
.comfort_wrapper-plates--slider {
  display: none;
  margin-top: 24px;
}
.comfort_wrapper-plates--slider .comfort_wrapper-plates-item {
  height: 100%;
}
.comfort_wrapper-plates--slider .comfort_wrapper-plates-item .plates-item-info {
  position: relative;
  bottom: auto;
  width: 100%;
}
.comfort_wrapper-plates--slider .swiper-pagination {
  position: relative;
  margin-top: 20px;
}
@media (max-width: 1023px) {
  .comfort_wrapper-plates--grid {
    display: none !important;
  }
  .comfort_wrapper-plates--slider {
    display: flex !important;
  }
}

.slide-chill {
  width: 100%;
  margin-top: 120px;
}
.slide-chill_wrapper {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.slide-chill_wrapper .slider-nav {
  margin-bottom: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.slide-chill_wrapper .slider-nav h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 120%;
  text-transform: uppercase;
}
.slide-chill_wrapper .slider-nav-button {
  position: relative;
  width: 96px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.slide-chill_wrapper .slider-nav-button .swiper-button-next:after {
  content: url(../img/Arrow.svg);
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.slide-chill_wrapper .slider-nav-button .swiper-button-prev:after {
  content: url(../img/Arrow-left.svg);
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.slide-chill .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.slide-chill .swiper-slide-image {
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}
.slide-chill .swiper-slide-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.slide-chill .swiper-slide-text {
  background-color: #fff;
  padding: 24px 20px 20px 20px;
  border-radius: 0 0 20px 20px;
  position: relative;
  bottom: 6px;
  width: 100%;
}
.slide-chill .swiper-slide-text .slide-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  min-height: 60px;
}
.slide-chill .swiper-slide-text .slide-heading h3 {
  font-family: Lato, sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
}
.slide-chill .swiper-slide-text .slide-heading p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  white-space: nowrap;
}
.slide-chill .swiper-slide-text .order-button {
  padding: 12px;
  width: 100%;
  background-color: #6E4B3A;
  color: #fff;
  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;
  border: 1px solid #6E4B3A;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  text-transform: uppercase;
  border-radius: 100px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-top: 27px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.slide-chill .swiper-slide-text .order-button:hover {
  background-color: transparent;
  color: #6E4B3A;
}
.slide-chill .swiper-slide-text .more-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  text-transform: uppercase;
  text-decoration: underline;
  margin-top: 16px;
  -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;
  width: 100%;
  color: #6E4B3A;
  text-align: center;
}

.faq-section {
  margin-top: 120px;
}
.faq-section_wrapper h2 {
  font-family: Poppins, sans-serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 120%;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.faq-section .faq {
  margin: 0 auto;
}
.faq-section .faq-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  padding: 15px 0;
  position: relative;
  z-index: 2;
  background: transparent;
  background-color: #fff;
  border-radius: 19px;
  padding: 20px;
  min-height: 80px;
  margin-bottom: 24px;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
}
.faq-section .faq-title {
  font-size: 18px;
  margin: 0;
  font-weight: 400;
}
.faq-section .plus-icon {
  width: 40px;
  height: 40px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  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;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background-color: rgba(110, 75, 58, 0.5019607843);
  border-radius: 20px;
}
.faq-section .plus-icon::before,
.faq-section .plus-icon::after {
  content: "";
  position: absolute;
  background: #fff;
  width: 1px;
  height: 16px;
}
.faq-section .plus-icon::before {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.faq-section .faq-header:hover .plus-icon {
  background-color: #6E4B3A;
}
.faq-section .faq-item.open .plus-icon {
  background-color: #6E4B3A;
}
.faq-section .faq-body {
  opacity: 0;
  height: 0;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  top: -10px;
  z-index: 1;
}
.faq-section .faq-body p {
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 25px;
  font-family: Lato, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
}
.faq-section .faq-body.open {
  opacity: 1;
  height: auto;
  padding: 10px 0 20px;
  top: 0;
}
.faq-section .faq-item.open .plus-icon {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.footer {
  margin-top: 120px;
  margin-bottom: 24px;
}
.footer_wrapper {
  background-color: #fff;
  border-radius: 20px;
  padding: 23px;
}
.footer_wrapper-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.footer_wrapper-head a {
  border: 1px solid #6E4B3A;
  padding: 12px 48px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #fff;
  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;
  color: #6E4B3A;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  text-transform: uppercase;
  border-radius: 100px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.footer_wrapper-head a:hover {
  background-color: #6E4B3A;
  color: #fff;
}
.footer_wrapper-body {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  margin-top: 64px;
}
.footer_wrapper-body-item h4 {
  font-family: Lato, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  margin-bottom: 16px;
  color: #6E4B3A;
}
.footer_wrapper-body-item p, .footer_wrapper-body-item a {
  font-family: Lato, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  margin-bottom: 16px;
  color: #000000;
}
.footer_wrapper-info {
  margin-top: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px;
}
.footer_wrapper-info a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}
.footer_wrapper-info .tel {
  font-family: Lato, sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  color: #6E4B3A;
}
.footer_wrapper-info .mailto {
  font-family: Lato, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #2B2B2B;
}
.footer_wrapper-info .address {
  font-family: Lato, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #2B2B2B;
}

.footer-bottom_wrapper {
  background-color: #6E4B3A;
  border-radius: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.footer-bottom .cprt {
  font-family: Lato, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #FFFFFF;
}
.footer-bottom .links {
  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: end;
  -ms-flex-pack: end;
  justify-content: end;
  text-align: end;
}
.footer-bottom .links a {
  font-family: Lato, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-decoration: underline;
  color: #fff;
}
.breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
}
.breadcrumbs img {
  position: relative;
  top: 1px;
}
.breadcrumbs a {
  font-family: "Lato", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #A5A5A5;
}

.contacts_wrapper-head {
  margin-top: 20px;
}
.contacts_wrapper-head h1 {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 28px;
  line-height: 120%;
  text-transform: uppercase;
  color: #000000;
}
.contacts_wrapper-body {
  margin-top: 40px;
}
.contacts_wrapper-body h2 {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 36px;
  color: #000000;
}
.contacts_wrapper-body-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 40px;
}
.contacts_wrapper-body-main .contacts_wrapper-body-map {
  width: 100%;
  height: 492px;
  border-radius: 10px;
  overflow: hidden;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.contacts_wrapper-body-main .contacts_wrapper-body-map iframe {
  border-radius: 10px;
  width: 100%;
  height: 100%;
  min-height: 400px;
}
.contacts_wrapper-body-items {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 1;
  flex: 0 0 1;
}
.contacts_wrapper-body-items h3 {
  font-family: "Lato", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #A5A5A5;
  margin-top: 24px;
}
.contacts_wrapper-body-items a {
  gap: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: "Lato", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  color: #2B2B2B;
}
.contacts_wrapper-body-items a:hover {
  text-decoration: underline;
}
.contacts_wrapper-body-items .item-main {
  margin-top: 18px;
}
.contacts_wrapper-body-items .item-tels {
  margin-top: 16px;
}
.contacts_wrapper-body-items .other-tel {
  margin-left: 38px;
  margin-bottom: 6px;
}
.contacts_wrapper .contacts_wrapper-table {
  margin-top: 40px;
  padding: 20px;
  border-radius: 20px;
  background: #fff;
}
.contacts_wrapper .contacts_wrapper-table h2 {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 36px;
  color: #000000;
  margin-bottom: 20px;
}
.contacts_wrapper .contacts_wrapper-table .company-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 20px;
  overflow: hidden;
  gap: 40px;
}
.contacts_wrapper .contacts_wrapper-table .company-card .card-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(228, 209, 185, 0.5);
}
.contacts_wrapper .contacts_wrapper-table .company-card .card-row:last-child {
  border-bottom: none;
}
.contacts_wrapper .contacts_wrapper-table .company-card .card-row .card-label {
  padding: 16px 16px 16px 20px;
  font-weight: 500;
  font-size: 18px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 200px;
  flex: 0 0 200px;
  font-family: "Lato", sans-serif;
  color: #2B2B2B;
}
.contacts_wrapper .contacts_wrapper-table .company-card .card-row .card-value {
  padding: 16px 20px 16px 16px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-size: 16px;
  min-width: 0;
  font-family: "Lato", sans-serif;
  color: #2B2B2B;
}
@media (max-width: 486px) {
  .contacts_wrapper .contacts_wrapper-table .company-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
  .contacts_wrapper .contacts_wrapper-table .company-card .card-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .contacts_wrapper .contacts_wrapper-table .company-card .card-row .card-label,
  .contacts_wrapper .contacts_wrapper-table .company-card .card-row .card-value {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    padding: 16px 20px;
  }
  .contacts_wrapper .contacts_wrapper-table .company-card .card-row .card-label {
    padding-bottom: 8px;
  }
  .contacts_wrapper .contacts_wrapper-table .company-card .card-row .card-value {
    padding-top: 8px;
  }
}

.loyalty_wrapper-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 40px;
  margin-top: 20px;
}
.loyalty_wrapper-head h1 {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 28px;
  line-height: 120%;
  text-transform: uppercase;
  color: #000000;
  width: 30%;
  margin-top: 0;
}
.loyalty_wrapper-head p {
  font-family: "Lato", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #2B2B2B;
  width: 40%;
}
.loyalty_wrapper-percent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
.loyalty_wrapper-percent .percent-plate {
  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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 40px;
  width: 270px;
  height: 174px;
  background: #FFFFFF;
  border-radius: 19px;
}
.loyalty_wrapper-percent .percent-plate p:nth-child(1) {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 64px;
  line-height: 120%;
  color: #6E4B3A;
}
.loyalty_wrapper-percent .percent-plate p:nth-child(2) {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 120%;
  color: #6E4B3A;
}
.loyalty_wrapper-percent .percent-body {
  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: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.loyalty_wrapper-percent .percent-body p {
  font-family: "Lato", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #2B2B2B;
  width: 65%;
}
.loyalty_wrapper-percent .percent-body p span {
  font-weight: 600;
}
.loyalty_wrapper-percent .percent-body a {
  border: 1px solid #6E4B3A;
  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;
  gap: 10px;
  border-radius: 50px;
  padding: 12px 80px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Lato", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 120%;
  text-transform: uppercase;
  color: #000000;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.loyalty_wrapper-percent .percent-body a img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.loyalty_wrapper-percent .percent-body a:hover {
  background-color: #6E4B3A;
  color: #fff;
}
.loyalty_wrapper-percent .percent-body a:hover img {
  -webkit-filter: invert(1);
  filter: invert(1);
}

.docs_wrapper-head {
  margin-top: 20px;
}
.docs_wrapper-head h1 {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 22px;
  line-height: 120%;
  text-transform: uppercase;
  color: #000000;
}
.docs_wrapper-body {
  margin-top: 40px;
}
.docs_wrapper-body .body-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
  border-radius: 20px;
  width: 100%;
  padding: 15px 30px;
  margin-bottom: 20px;
}
.docs_wrapper-body .body-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.docs_wrapper-body .body-item svg {
  width: 40px;
  height: 40px;
}
.docs_wrapper-body .body-item:hover svg {
  -webkit-transition: all 0.3;
  transition: all 0.3;
}
.docs_wrapper-body .body-item:hover svg rect {
  fill: #4E3629;
  fill-opacity: 1;
}
.docs_wrapper-body .body-item-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
}
.docs_wrapper-body .body-item p {
  font-family: "Lato", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  text-decoration: underline;
  color: #000000;
}
.docs_wrapper-body .body-item span {
  font-family: "Lato", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  text-decoration: none;
  color: #000000;
}

.location_wrapper-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 40px;
  margin-top: 20px;
}
.location_wrapper-head h1 {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 28px;
  line-height: 120%;
  text-transform: uppercase;
  color: #000000;
}
.location_wrapper-head-address {
  margin-top: 40px;
}
.location_wrapper-head-address a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  font-family: "Lato", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #2B2B2B;
}
.location_wrapper-head-text {
  margin-top: 24px;
  font-family: "Lato", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #2B2B2B;
}

.errorpage_wrapper {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 120px;
}
.errorpage_wrapper p {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 36px;
  text-align: center;
  color: #000000;
  margin-top: 64px;
}
.errorpage_wrapper a {
  background: #6E4B3A;
  border: 1px solid #6E4B3A;
  border-radius: 100px;
  padding: 12px 150px;
  font-family: "Lato", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-top: 24px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.errorpage_wrapper a:hover {
  background-color: #fff;
  border: 1px solid #6E4B3A;
  color: #6E4B3A;
}

.aboutsection_wrapper-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 40px;
}
.aboutsection_wrapper-body-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 40px;
}
.aboutsection_wrapper-body-item .item-p {
  font-family: "Lato", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #2B2B2B;
}
.aboutsection_wrapper-body-item .item-img {
  border-radius: 20px;
  -o-object-fit: cover;
  object-fit: cover;
}
.aboutsection_wrapper-body-item .aboutsection_wrapper-head {
  width: 300px;
  margin-top: 20px;
}
.aboutsection_wrapper-body-item .aboutsection_wrapper-head h1 {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 28px;
  line-height: 120%;
  text-transform: uppercase;
  color: #000000;
}
.aboutsection_wrapper-body-item .aboutsection_wrapper-body-p {
  font-family: "Lato", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 29px;
  color: #2B2B2B;
}
.aboutsection_wrapper-body-item:nth-child(3) {
  width: 360px;
}

.structure_body-item p {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  margin-top: 40px;
}

.structure_body-item .slide-content .slide-btn {
  border: 1px solid #6E4B3A;
  color: #6E4B3A;
  background-color: transparent;
  border-radius: 100px;
  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;
  padding: 12px 0;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 16px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  margin-top: 0;
}

.living_wrapper-head {
  margin-top: 20px;
}
.living_wrapper-head h1 {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 120%;
  text-transform: uppercase;
}
.living_wrapper-head p {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  margin-top: 40px;
}
.living_wrapper-body {
  margin-top: 40px;
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.living_wrapper-body-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.living_wrapper-body-item:last-child:nth-child(odd) {
  grid-column: 1/-1;
}
.living_wrapper-body-item:last-child:nth-child(odd) .buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
}
.living_wrapper-body-item:last-child:nth-child(odd) .buttons .item-plate-link, .living_wrapper-body-item:last-child:nth-child(odd) .buttons .item-plate-more {
  width: 50%;
}
.living_wrapper-body-item:last-child:nth-child(odd) .buttons .item-plate-link a, .living_wrapper-body-item:last-child:nth-child(odd) .buttons .item-plate-more a {
  width: 100%;
}
.living_wrapper-body-item img {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  -webkit-transition: -webkit-transform 0.8s ease;
  transition: -webkit-transform 0.8s ease;
  transition: transform 0.8s ease;
  transition: transform 0.8s ease, -webkit-transform 0.8s ease;
}
.living_wrapper-body-item .item-plate {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  margin: 0 auto;
  width: 95%;
  background-color: #fff;
  border-radius: 20px;
  padding: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
  max-height: 70px;
  overflow: hidden;
}
.living_wrapper-body-item .item-plate-head p {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 500;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.living_wrapper-body-item .item-plate-square {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
  margin-top: 24px;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
.living_wrapper-body-item .item-plate-square img {
  width: 24px;
  height: 24px;
}
.living_wrapper-body-item .item-plate-square p {
  margin: 0;
  font-family: "Lato", sans-serif;
  font-size: 14px;
}
.living_wrapper-body-item .item-plate-desc {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  margin-top: 16px;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
.living_wrapper-body-item .item-plate-link {
  background-color: #6E4B3A;
  border: 1px solid #6E4B3A;
  color: #fff;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: 0%;
  text-transform: uppercase;
  border-radius: 100px;
  width: 100%;
  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;
  padding: 12px;
  text-align: center;
  margin-top: 16px;
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.living_wrapper-body-item .item-plate-link:hover {
  background-color: #fff;
  color: #6E4B3A;
}
.living_wrapper-body-item .item-plate-more a {
  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;
  width: 100%;
  margin-top: 16px;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: 0%;
  text-transform: uppercase;
  text-decoration: underline;
  color: #6E4B3A;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
.living_wrapper-body-item:hover img {
  -webkit-transform: scale(1.03);
  -ms-transform: scale(1.03);
  transform: scale(1.03);
}
.living_wrapper-body-item:hover .item-plate {
  max-height: 400px;
  padding: 20px;
}
.living_wrapper-body-item:hover .item-plate-square, .living_wrapper-body-item:hover .item-plate-desc, .living_wrapper-body-item:hover .item-plate-link, .living_wrapper-body-item:hover .item-plate-more a {
  opacity: 1;
}

.living-item_wrapper-suit-slider .swiper-pagination {
  display: none;
}

.living-item_wrapper {
  width: 100%;
}
.living-item_wrapper-suit {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 40px;
}
.living-item_wrapper-suit-slider {
  border-radius: 20px;
  width: 56%;
  height: 460px;
}
.living-item_wrapper-suit-slider .mySwiper {
  border-radius: 20px;
  height: 100%;
}
.living-item_wrapper-suit-slider img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  -o-object-fit: cover;
  object-fit: cover;
}
.living-item_wrapper-suit-slider .swiper-button-next {
  right: 20px;
}
.living-item_wrapper-suit-slider .swiper-button-prev {
  left: 20px;
}
.living-item_wrapper-suit-slider .swiper-button-next:after {
  content: url(../img/icons/Arrow-next.svg);
}
.living-item_wrapper-suit-slider .swiper-button-prev:after {
  content: url(../img/icons/Arrow-prev.png);
}
.living-item_wrapper-suit-info {
  position: relative;
  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-sizing: border-box;
  box-sizing: border-box;
}
.living-item_wrapper-suit-info h1 {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 120%;
  letter-spacing: 0%;
  text-transform: uppercase;
}
.living-item_wrapper-suit-info .suitsquare {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
}
.living-item_wrapper-suit-info .suitsquare p {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0%;
}
.living-item_wrapper-suit-info .suitdesc {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0%;
  margin-top: 40px;
}
.living-item_wrapper-suit-info .suitdesc p {
  margin-bottom: 24px;
}
.living-item_wrapper-suit-info .orderbutton {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding-top: 12px;
  padding-bottom: 12px;
  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;
  border-radius: 100px;
  color: #fff;
  background-color: #6E4B3A;
  border: 1px solid #6E4B3A;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  letter-spacing: 0%;
  text-transform: uppercase;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.living-item_wrapper-suit-info .orderbutton:hover {
  color: #6E4B3A;
  background-color: transparent;
}
.living-item_wrapper-photos {
  margin-top: 40px;
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.living-item_wrapper-photos .swiper-slide-thumb-active {
  border: 1px solid #6E4B3A;
  border-radius: 19px;
  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;
}
.living-item_wrapper-photos img {
  width: 100%;
  height: 170px;
  border-radius: 19px;
  -o-object-fit: cover;
  object-fit: cover;
  padding: 8px;
}
.living-item_wrapper-advantages {
  margin-top: 40px;
}
.living-item_wrapper-advantages h1 {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 100%;
  margin-bottom: 24px;
}
.living-item_wrapper-advantages .advantages-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
}
.living-item_wrapper-advantages .advantages-block .advantages-item {
  background-color: #fff;
  border-radius: 20px;
  padding: 20px;
}
.living-item_wrapper-advantages .advantages-block .advantages-item-head h2 {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
}
.living-item_wrapper-advantages .advantages-block .advantages-item-list ul {
  margin-top: 24px;
}
.living-item_wrapper-advantages .advantages-block .advantages-item-list ul li {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0%;
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 5px;
}
.living-item_wrapper-advantages .advantages-block .advantages-item:nth-child(1) {
  width: 70%;
}
.living-item_wrapper-advantages .advantages-block .advantages-item:nth-child(1) .advantages-item-list ul {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
}
.living-item_wrapper-advantages .advantages-block .advantages-item:nth-child(2) {
  width: 30%;
}
.living-item_wrapper-advantages .advantages-block .advantages-item:nth-child(2) .advantages-item-list ul {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
}

.treatment_wrapper-head {
  margin-top: 20px;
}
.treatment_wrapper-head h1 {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 120%;
  text-transform: uppercase;
}
.treatment_wrapper-plate {
  background-color: #fff;
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 40px;
  margin-top: 40px;
}
.treatment_wrapper-plate .plate-head {
  margin-bottom: 24px;
}
.treatment_wrapper-plate .plate-head h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 100%;
}
.treatment_wrapper-plate .plate-body ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}
.treatment_wrapper-plate .plate-body ul li {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0%;
  margin-bottom: 12px;
  position: relative;
  width: 100%;
}
.treatment_wrapper-plate .plate-body ul li::before {
  content: "•";
  color: #000;
  margin-right: 8px;
}
.treatment_wrapper-plate .plate-body ul:has(> li:nth-child(5)) li {
  width: 50%;
}
.treatment_wrapper-plate a {
  padding: 12px 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid #6E4B3A;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  text-transform: uppercase;
  border-radius: 100px;
  color: #6E4B3A;
  margin-top: 24px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.treatment_wrapper-plate a:hover {
  background-color: #6E4B3A;
  color: #fff;
}

.treatment-item_wrapper-body {
  margin-top: 20px;
  display: -ms-grid;
  display: grid;
  gap: 40px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
}
.treatment-item_wrapper-body .body-left h1 {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 120%;
  text-transform: uppercase;
}
.treatment-item_wrapper-body .body-left p {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  margin-top: 24px;
}
.treatment-item_wrapper-body .body-left-ages {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
}
.treatment-item_wrapper-body .body-left-ages p {
  margin: 0;
}
.treatment-item_wrapper-body .body-left-ages-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
}
.treatment-item_wrapper-body .body-left-ages-item p:nth-child(1) {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
}
.treatment-item_wrapper-body .body-left-ages-item p:nth-child(2) {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 100%;
}
.treatment-item_wrapper-body .body-right img {
  width: 100%;
}
.treatment-item_wrapper .download-link {
  margin-top: 40px;
}
.treatment-item_wrapper .download-link a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #000;
  margin-right: 21px;
}
.treatment-item_wrapper .download-link a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .living_wrapper-body {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .living_wrapper-body-item:last-child:nth-child(odd) {
    grid-column: auto;
  }
}
@media screen and (max-width: 1280px) {
  .container {
    width: calc(100% - 40px);
    margin: 0 auto;
  }
  .container-inner {
    width: 85%;
    margin: 0 auto;
  }
  .container-inner-two {
    width: 88%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 1024px) {
  .container {
    width: calc(100% - 40px);
    margin: 0 auto;
  }
  .container-inner {
    width: 88%;
    margin: 0 auto;
  }
  .container-inner-two {
    width: 90%;
    margin: 0 auto;
  }
  .header_wrapper-center img {
    width: 196px;
  }
  .mainsection {
    margin-top: 0;
  }
  .header {
    margin-top: 0;
  }
  .mainsection_wrapper {
    padding-top: 90px;
  }
  .mainsection_wrapper p {
    width: 46%;
  }
  .about_wrapper-info .info-top {
    -ms-grid-columns: 243px 1fr;
    grid-template-columns: 243px 1fr;
  }
  .about_wrapper-info .info-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .about_wrapper-info .info-bottom-right {
    width: 100%;
    height: 320px;
  }
  .about_wrapper-info .info-bottom-left {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .footer_wrapper-head img {
    width: 160px;
  }
  .aboutsection_wrapper-body {
    display: -ms-grid;
    display: grid;
    grid-auto-columns: 1fr;
    -ms-grid-columns: 1fr 40px 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: 150px 40px 1fr;
    grid-template-rows: 150px 1fr;
    gap: 40px;
    grid-template-areas: "a c" "b c";
  }
  .a {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
    grid-area: a;
  }
  .b {
    -ms-grid-row: 1;
    -ms-grid-column: 5;
    grid-area: b;
  }
  .c {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    grid-area: c;
  }
  .aboutsection_wrapper-body-item .item-img {
    height: 100%;
    width: 100%;
  }
  .living_wrapper-body-item img {
    height: 300px;
  }
  .living_wrapper-body-item .item-plate {
    position: static;
    width: 100%;
    border-radius: 0 0 20px 20px;
    max-height: -webkit-fit-content;
    max-height: -moz-fit-content;
    max-height: fit-content;
  }
  .living_wrapper-body-item .item-plate-square,
  .living_wrapper-body-item .item-plate-desc,
  .living_wrapper-body-item .item-plate-link,
  .living_wrapper-body-item .item-plate-more a {
    opacity: 1;
  }
  .living_wrapper-body-item .item-plate-square,
  .living_wrapper-body-item .item-plate-desc {
    margin-top: 16px;
  }
  .living_wrapper-body-item .item-plate-link {
    margin-top: 44px;
  }
  .living_wrapper-body-item .item-plate-more a {
    margin-top: 24px;
  }
  .living_wrapper-body-item:last-child:nth-child(odd) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-height: 300px;
    max-height: -webkit-fit-content;
    max-height: -moz-fit-content;
    max-height: fit-content;
  }
  .living_wrapper-body-item:last-child:nth-child(odd) .item-plate-square img {
    width: 24px;
  }
  .living_wrapper-body-item:last-child:nth-child(odd) img {
    height: 100%;
    width: 50%;
  }
  .living_wrapper-body-item:last-child:nth-child(odd) * {
    margin: 0;
    margin-bottom: 10px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
  .living_wrapper-body-item:last-child:nth-child(odd) .item-plate {
    min-height: 300px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    border-radius: 0 20px 20px 0;
    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: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 0;
  }
  .comfort_wrapper-plates-item .plates-item-info {
    min-height: 210px;
  }
  .living_wrapper-body-item:last-child:nth-child(odd) .buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .living_wrapper-body-item:last-child:nth-child(odd) .buttons .item-plate-link, .living_wrapper-body-item:last-child:nth-child(odd) .buttons .item-plate-more {
    width: 100%;
  }
  .aboutsection_wrapper-body > .a {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }
  .aboutsection_wrapper-body > .b {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .aboutsection_wrapper-body > .c {
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    -ms-grid-column: 3;
  }
}
@media screen and (max-width: 768px) {
  .container {
    width: 98%;
    margin: 0 auto;
  }
  .container-inner {
    width: 88%;
    margin: 0 auto;
  }
  .container-inner-two {
    width: 90%;
    margin: 0 auto;
  }
  .mainsection_wrapper h1 {
    font-family: Poppins, sans-serif;
    font-weight: 400;
    font-size: 32px;
    line-height: 100%;
    text-transform: uppercase;
  }
  .mainsection_wrapper p {
    font-family: Lato, sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    margin-top: 24px;
  }
  .header_wrapper-right a {
    padding-left: 25px;
    padding-right: 25px;
  }
  .mainsection_wrapper {
    height: 634px;
  }
  .about {
    margin-top: 64px;
  }
  .about_wrapper h2 {
    font-size: 22px;
  }
  .about_wrapper-info .info-top-right h3 {
    font-size: 21px;
  }
  .about_wrapper-info .info-top-right p {
    font-size: 14px;
  }
  .about_wrapper-info .info-top-img {
    width: 100%;
  }
  .about_wrapper-info .info-top-img img {
    width: 193px;
  }
  .about_wrapper-info .info-top {
    gap: 0;
  }
  .about_wrapper-info .info-bottom-left .left-item h3 {
    font-size: 20px;
  }
  .about_wrapper-info .info-bottom-left .left-item p {
    font-size: 14px;
  }
  .comfort {
    margin-top: 72px;
  }
  .comfort_wrapper-heading h2 {
    margin-bottom: 32px;
  }
  .footer_wrapper-body {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
  .footer_wrapper-info .tel,
  .footer_wrapper-info .mailto,
  .footer_wrapper-info .address,
  .footer_wrapper-head a {
    font-size: 14px;
  }
  .footer-bottom .cprt,
  .footer-bottom .links a {
    font-size: 12px;
  }
  .footer_wrapper-body-item h4 {
    font-size: 14px;
  }
  .footer_wrapper-body-item p {
    font-size: 12px;
  }
  .slide-chill_wrapper .slider-nav h2 {
    font-size: 22px;
  }
  .comfort_wrapper-heading h2 {
    font-size: 22px;
  }
  .comfort_wrapper-heading p,
  .faq-section .faq-title {
    font-size: 16px;
  }
  .contacts_wrapper-body-main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .contacts_wrapper .contacts_wrapper-table .company-card .card-row .card-label {
    font-size: 16px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 60%;
    flex: 0 0 60%;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 16px;
    padding-top: 16px;
  }
  .contacts_wrapper .contacts_wrapper-table .company-card .card-row .card-value {
    font-size: 12px;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 16px;
    padding-top: 16px;
  }
  .footer {
    margin-top: 72px;
  }
  .contacts_wrapper-body-main .contacts_wrapper-body-map {
    height: 268px;
  }
  .contacts_wrapper-head h1 {
    font-size: 22px;
  }
  .contacts_wrapper-body h2 {
    font-size: 21px;
  }
  .contacts_wrapper-body-items h3 {
    font-size: 14px;
  }
  .contacts_wrapper-body-items a {
    font-size: 16px;
  }
  .contacts_wrapper-body {
    margin-top: 32px;
  }
  .aboutsection_wrapper-body {
    display: -ms-grid;
    display: grid;
    grid-auto-columns: 1fr;
    -ms-grid-columns: 1fr 0px 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: 340px 0px 400px;
    grid-template-rows: 340px 400px;
    gap: 0px 0px;
    grid-template-areas: "a b" "c c";
  }
  .a {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
    grid-area: a;
  }
  .b {
    -ms-grid-row: 1;
    -ms-grid-column: 5;
    grid-area: b;
  }
  .c {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    grid-area: c;
  }
  @media screen and (max-width: 1024px){
  .aboutsection_wrapper-body > .a {
      -ms-grid-row: 1;
      -ms-grid-column: 1;
      -ms-grid-column-span: 1;
  }
  .aboutsection_wrapper-body > .b {
      -ms-grid-row: 3;
      -ms-grid-column: 1;
  }
  .aboutsection_wrapper-body > .c {
      -ms-grid-row: 1;
      -ms-grid-row-span: 3;
      -ms-grid-column: 3;
  }
  .aboutsection_wrapper-body > .a {
      -ms-grid-row: 1;
      -ms-grid-column: 1;
      -ms-grid-column-span: 1;
  }
  .aboutsection_wrapper-body > .b {
      -ms-grid-row: 3;
      -ms-grid-column: 1;
  }
  .aboutsection_wrapper-body > .c {
      -ms-grid-row: 1;
      -ms-grid-row-span: 3;
      -ms-grid-column: 3;
  }
  }
  @media screen and (max-width: 768px){
  .aboutsection_wrapper-body > .a {
      -ms-grid-row: 1;
      -ms-grid-column: 1;
      -ms-grid-column-span: 1;
  }
  .aboutsection_wrapper-body > .b {
      -ms-grid-row: 1;
      -ms-grid-column: 3;
  }
  .aboutsection_wrapper-body > .c {
      -ms-grid-row: 3;
      -ms-grid-row-span: 1;
      -ms-grid-column: 1;
      -ms-grid-column-span: 3;
  }
  }
  .aboutsection_wrapper-body-item .item-img {
    height: 100%;
    width: 100%;
  }
  .structure_body-item .item-links {
    gap: 16px;
  }
  .living_wrapper-body-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-height: 300px;
    max-height: -webkit-fit-content;
    max-height: -moz-fit-content;
    max-height: fit-content;
  }
  .living_wrapper-body-item .item-plate-square img {
    width: 24px;
  }
  .living_wrapper-body-item img {
    height: 100%;
    width: 50%;
  }
  .living_wrapper-body-item * {
    margin: 0;
    margin-bottom: 10px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
  .living_wrapper-body-item .item-plate {
    min-height: 300px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    border-radius: 0 20px 20px 0;
    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: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 0;
  }
  .living_wrapper-body-item .item-plate-square, .living_wrapper-body-item .item-plate-desc,
  .living_wrapper-body-item .item-plate-link {
    margin-top: 10px;
  }
  .living-item_wrapper-advantages .advantages-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .living-item_wrapper-advantages .advantages-block .advantages-item {
    width: 100% !important;
  }
  .living-item_wrapper-suit-info .suitdesc p {
    font-size: 14px;
    margin-bottom: 5px;
  }
  .living-item_wrapper-suit-info .suitdesc {
    margin-top: 30px;
  }
  .living-item_wrapper-suit-info .suitsquare {
    margin-top: 16px;
  }
  .living-item_wrapper-suit-info h1 {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 22px;
    line-height: 120%;
    text-transform: uppercase;
  }
  .treatment-item_wrapper-body {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .treatment-item_wrapper-body .body-left h1 {
    font-size: 22px;
  }
  .treatment-item_wrapper-body .body-left p {
    font-size: 14px;
    margin-top: 32px;
  }
  .treatment-item_wrapper .download-link a {
    font-size: 15px;
    text-align: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .treatment-item_wrapper .faq-section {
    margin-top: 16px;
  }
  .aboutsection_wrapper-body > .a {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }
  .aboutsection_wrapper-body > .b {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .aboutsection_wrapper-body > .c {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .aboutsection_wrapper-body > .a {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }
  .aboutsection_wrapper-body > .b {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .aboutsection_wrapper-body > .c {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
}
@media screen and (max-width: 486px) {
  .header_wrapper-right {
    display: none;
  }
  .header_wrapper-left a {
    display: none;
  }
  .header_wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .mainsection {
    padding: 0;
    margin: 0;
    border-radius: 0;
  }
  .mainsection_wrapper {
    height: 760px;
  }
  .about_wrapper-info .info-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .about_wrapper-info .info-top {
    gap: 40px;
  }
  .about_wrapper-info .info-bottom-left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .slide-chill_wrapper .slider-nav-button {
    display: none;
  }
  .slide-chill_wrapper .slider-nav h2 {
    width: 90%;
  }
  .footer_wrapper-body {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .footer_wrapper-head a {
    display: none;
  }
  .footer_wrapper-head img {
    width: 90%;
  }
  .footer_wrapper-body {
    gap: 24px;
  }
  .footer_wrapper-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    gap: 10px;
  }
  .footer_wrapper-info {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    margin-top: 24px;
  }
  .footer-bottom_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
  .footer-bottom .links {
    -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;
  }
  .footer-bottom .links .links-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 8px;
  }
  .faq-section_wrapper h2 {
    font-size: 22px;
  }
  .comfort_wrapper-plates {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(7, 430px);
    grid-template-areas: "a" "b" "c" "d" "e" "f" "g";
  }
  .comfort_wrapper-plates-item .plates-item-info {
    bottom: -25.5%;
  }
  .footer-bottom_wrapper {
    border-radius: 20px 20px 0 0;
  }
  .header-menu {
    bottom: 0px;
    top: 80px;
  }
  .header-menu_wrapper {
    background-color: #F9F6F0;
    border-radius: 0px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: 24px;
  }
  .header-menu .container {
    width: 100%;
  }
  .contacts_wrapper .contacts_wrapper-table .company-card .card-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .contacts_wrapper .contacts_wrapper-table .company-card .card-row .card-label {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 49%;
    flex: 0 0 49%;
  }
  .loyalty_wrapper-head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .loyalty_wrapper-head h1, .loyalty_wrapper-head p {
    width: 100%;
  }
  .loyalty_wrapper-head h1 {
    margin-top: 20px;
  }
  .loyalty_wrapper-head p {
    margin-top: 32px;
  }
  .loyalty_wrapper-percent {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .loyalty_wrapper-percent .percent-plate {
    width: 100%;
  }
  .loyalty_wrapper-percent .percent-body {
    gap: 20px;
  }
  .loyalty_wrapper-percent .percent-body p {
    width: 100%;
  }
  .docs_wrapper-body .body-item span, .docs_wrapper-body .body-item p {
    font-size: 16px;
  }
  .docs_wrapper-body .body-item a {
    gap: 20px;
  }
  .docs_wrapper-body .body-item-text {
    gap: 8px;
  }
  .docs_wrapper-body .body-item {
    padding: 20px;
  }
  .body-item-button {
    width: 40px;
  }
  .location_wrapper-head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .location_wrapper-head .right img {
    width: 100%;
  }
  .errorpage_wrapper {
    margin-top: 74px;
  }
  .errorpage_wrapper p {
    font-size: 21px;
    width: 60%;
    line-height: 120%;
  }
  .errorpage_wrapper img {
    width: 100%;
  }
  .errorpage_wrapper a {
    width: 70%;
    padding: 12px;
    text-align: center;
  }
  .aboutsection_wrapper-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .structure_body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .structure_body-item:nth-child(1) {
    width: 100%;
  }
  .structure_body-item:nth-child(2) {
    width: 100%;
  }
  .structure_body-item .item-links {
    gap: 8px;
  }
  .structure_body-item .item-links a {
    font-size: 14px;
  }
  .structure_body-item p {
    margin-top: 32px;
  }
  .living_wrapper-body-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .living_wrapper-body-item img {
    width: 100%;
  }
  .living_wrapper-body-item .item-plate {
    border-radius: 0 0 20px 20px;
    height: 100%;
  }
  .living_wrapper-body-item img {
    margin-bottom: 0;
  }
  .living_wrapper-body-item .item-plate-more {
    margin-bottom: 0;
  }
  .living_wrapper-head h1 {
    font-size: 22px;
  }
  .living_wrapper-head p {
    font-size: 14px;
    margin-top: 32px;
  }
  .living_wrapper-body {
    margin-top: 24px;
  }
  .living_wrapper-body-item:last-child:nth-child(odd) img {
    width: 100%;
  }
  .living_wrapper-body-item:last-child:nth-child(odd) .item-plate {
    border-radius: 0 0 20px 20px;
  }
  .living_wrapper-body-item:last-child:nth-child(odd) img {
    margin: 0;
  }
  .living_wrapper-body-item img,
  .living_wrapper-body-item:last-child:nth-child(odd) img {
    height: 250px;
  }
  .living-item_wrapper-suit {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .living-item_wrapper-photos {
    display: none !important;
  }
  .living-item_wrapper-suit-slider {
    width: 100%;
    height: 330px;
  }
  .living-item_wrapper-suit-slider .mySwiper {
    padding-bottom: 80px;
  }
  .living-item_wrapper-suit-slider .swiper-button-next, .living-item_wrapper-suit-slider .swiper-button-prev {
    top: 90%;
  }
  .living-item_wrapper-suit-slider .swiper-pagination {
    width: 70% !important;
    height: 4px !important;
    left: 0 !important;
    top: 292px !important;
    right: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
    border-radius: 100px !important;
    display: block;
  }
  .living-item_wrapper-suit-slider .swiper-pagination-progressbar .swiper-pagination-progressbar {
    border-radius: 100px;
  }
  .living-item_wrapper-suit-slider .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    border-radius: 100px;
    background-color: #6E4B3A;
  }
  .living-item_wrapper-suit-slider .swiper-button-next {
    right: 10px;
  }
  .living-item_wrapper-suit-slider .swiper-button-prev {
    left: 10px;
  }
  .living-item_wrapper-advantages .advantages-block .advantages-item:nth-child(1) .advantages-item-list ul,
  .living-item_wrapper-advantages .advantages-block .advantages-item:nth-child(2) .advantages-item-list ul {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .living-item_wrapper-advantages {
    margin-top: 100px;
  }
  .living-item_wrapper-suit-slider .orderbutton {
    position: static;
    margin-top: 24px;
    padding-top: 12px;
    padding-bottom: 12px;
    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;
    border-radius: 100px;
    color: #fff;
    background-color: #6E4B3A;
    border: 1px solid #6E4B3A;
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 120%;
    letter-spacing: 0%;
    text-transform: uppercase;
  }
  .treatment_wrapper-plate .plate-body ul:has(> li:nth-child(5)) li {
    width: 100%;
  }
  .treatment_wrapper-plate {
    min-height: 375px;
    position: relative;
    padding-bottom: 80px;
  }
  .treatment_wrapper-plate a {
    position: absolute;
    bottom: 20px;
  }
  .treatment_wrapper-plate {
    margin-top: 32px;
  }
  .treatment_wrapper-plate .plate-body ul li {
    font-size: 14px;
    line-height: 1.5;
  }
  .breadcrumbs a {
    font-size: 10px;
  }
  .comfort_wrapper-plates--slider .comfort_wrapper-plates-item img {
    width: 100%;
    height: 250px;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .comfort_wrapper-plates-item .plates-item-info h3 {
    min-height: 45px;
  }
  .comfort_wrapper-plates--slider .comfort_wrapper-plates-item .plates-item-info {
    min-height: 240px;
  }
  .faq-section .faq-body p {
    padding-left: 20px;
    padding-right: 20px;
  }
  .living_wrapper-body-item .buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .living_wrapper-body-item:last-child:nth-child(odd) .buttons .item-plate-link, .living_wrapper-body-item:last-child:nth-child(odd) .buttons .item-plate-more {
    width: 100%;
  }
  .item-plate-square img {
    width: 24px !important;
    height: 24px !important;
  }
  .item-plate-square p {
    margin: 0 !important;
  }
  .header.active,
  .header-menu.active .header-menu_wrapper {
    background-color: #fff;
  }
  .treatment-item_wrapper .download-link a {
    padding-left: 20px;
  }
  .treatment-item_wrapper-body .body-left-ages-item p:nth-child(1),
  .treatment-item_wrapper-body .body-left-ages-item p:nth-child(2) {
    margin-top: 0;
  }
  .living_wrapper-body-item .item-plate-head p {
    white-space: wrap;
  }
  .comfort_wrapper-plates-item .plates-item-info .info-desc, .comfort_wrapper-plates-item .plates-item-info a {
    opacity: 1 !important;
  }
  .header-menu_wrapper-tel-adaptive {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header-menu.active {
    max-height: 100vh;
    overflow-y: auto;
    padding-bottom: 15px;
  }
  .comfort_wrapper-plates > .a {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }
  .comfort_wrapper-plates > .b {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
  .comfort_wrapper-plates > .c {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }
  .comfort_wrapper-plates > .d {
    -ms-grid-row: 4;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }
  .comfort_wrapper-plates > .e {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .comfort_wrapper-plates > .f {
    -ms-grid-row: 6;
    -ms-grid-column: 1;
  }
  .comfort_wrapper-plates > .g {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .comfort_wrapper-plates > .a {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }
  .comfort_wrapper-plates > .b {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
  .comfort_wrapper-plates > .c {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }
  .comfort_wrapper-plates > .a {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }
  .comfort_wrapper-plates > .b {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
  .comfort_wrapper-plates > .c {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }
}
.entry-header h1 {
  font-family: "Poppins", sans-serif !important;
  line-height: 1.2;
  text-transform: uppercase;
  font-weight: 400;
}
/*# sourceMappingURL=main.css.map */