@charset "UTF-8";

@font-face {
  font-family: 'acrom-Bold';
  src: url("../fonts/Acrom-Bold.eot?v=4.7.0");
  src: url("../fonts/Acrom-Bold.ttf?v=4.7.0") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'acrom-ExtraBold';
  src: url("../fonts/Acrom-ExtraBold.eot?v=4.7.0");
  src: url("../fonts/Acrom-ExtraBold.ttf?v=4.7.0") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'acrom-Light';
  src: url("../fonts/Acrom-Light.eot?v=4.7.0");
  src: url("../fonts/Acrom-Light.ttf?v=4.7.0") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'acrom-Medium';
  src: url("../fonts/Acrom-Medium.eot?v=4.7.0");
  src: url("../fonts/Acrom-Medium.ttf?v=4.7.0") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'acrom-Regular';
  src: url("../fonts/Acrom-Regular.eot?v=4.7.0");
  src: url("../fonts/Acrom-Regular.ttf?v=4.7.0") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'acrom-Thin';
  src: url("../fonts/Acrom-Bold.eot?v=4.7.0");
  src: url("../fonts/Acrom-Bold.ttf?v=4.7.0") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Times-Roman';
  src: url("../fonts/Times-Roman.eot?v=4.7.0");
  src: url("../fonts/Times-Roman.ttf?v=4.7.0") format("truetype");
  font-weight: normal;
  font-style: normal;
}

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

html {
  height: 100%;
}

body {
  height: 100%;
  font-family: "acrom-Regular";
}

.logo img {
  width: 100%;
}

ul:not(.list) {
  list-style: none;
}

.list {
  margin-left: 1em;
}

.count ol {
  counter-reset: count;
  list-style: none;
  padding-top: .5em;
  /*margin-bottom: 4em;*/
  text-shadow: 0 1px 0 rgba(255, 255, 255, .5);
}

.count h3 {
  /*left: -1.3em;*/
}

.count ol ol {
  margin: 0 0 0 2em;
  /* Отступ для вложенных списков */
}

.count li {
  position: relative;
  display: block;
  padding: 0em .4em 0em 2em;
  margin: .8em 0;
  /*background: #ddd;*/
  /*color: #444;*/
  text-decoration: none;
  border-radius: .3em;
  /*transition: all .3s ease-out;*/
}

.count li:hover {
  background: #4FD4FF;
}

.count li:hover:before {
  transform: rotate(360deg);
}

.count li:before {
  content: counter(count);
  counter-increment: count;
  position: absolute;
  left: -1.3em;
  top: 50%;
  margin-top: -1.3em;
  background: #4FD4FF;
  color: whitesmoke;
  height: 2em;
  width: 2em;
  line-height: 2em;
  border: .3em solid #d3f4ff;
  text-align: center;
  font-weight: bold;
  border-radius: .3em;
  transition: all 1s ease-out;
  box-shadow: 0px 1px 4px 0px rgb(0 0 0 / 30%);
}

a {
  text-decoration: none;
  outline: none;
}

a:hover {
  text-decoration: none;
}

a:focus {
  text-decoration: none;
}

input,
button,
button:focus {
  outline: 0;
}

/*
синяя кнопка на главном экране главной стр.
на 768 становится прозрачной с белой обводкой
*/

.button {
  font-size: 1.6vw;
  color: #FFF;
  padding: 0.7vw 1.2vw;
  background: #4FD4FF;
  border: 1px solid #4FD4FF;
  -webkit-border-radius: 2vw;
  border-radius: 0.5vw;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.button:hover {
  background: transparent;
  border: 1px solid #4FD4FF;
}

/*
прозрачная кнопка с черной обводкой - О нас
форма на стр. Дилерам
*/

.button_black {
  font-size: 1vw;
  color: #000;
  padding: 0.8vw 1.2vw;
  background: transparent;
  border: 2px solid #000;
  -webkit-border-radius: 2vw;
  border-radius: 2vw;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  cursor: pointer;
}

.button_black:hover {
  color: #FFF;
  border: 2px solid #4FD4FF;
  background: #4FD4FF;
}

.button_black__submit {
  padding: 0.8vw 3.2vw;
}

.preloader {
  width: 100px;
}

.preloader-wrapper {
  /*  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;*/
  display: none;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: #FFF;
  z-index: 10000;
}

.copyr {
  display: block;
  position: fixed;
  font-size: 0.7vw;
  color: #000;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  z-index: 1;
}

.rotate_copyright {
  display: block;
  position: absolute;
  right: -90px;
  bottom: 75vh;
  font-size: 15px;
  color: #000;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.rotate_copyright-1 {
  right: -5vw;
  bottom: 10vw;
  width: 12vw;
  color: #FFF;
}

.rotate_copyright-2 {
  left: -9vw;
  bottom: 5.5vw;
  width: 12vw;
}

.rotate_copyright-3 {
  left: -9vw;
  bottom: 8.5vw;
  width: 12vw;
}

.rotate_copyright-4 {
  left: 0;
  bottom: 13.8vw;
  width: 12vw;
}

.rotate_copyright-5 {
  left: 1vw;
  bottom: 19.8vw;
  width: 12vw;
}

.rotate_copyright-6 {
  left: 1vw;
  top: 14vw;
  width: 12vw;
}

.rotate_copyright-7 {
  left: 1vw;
  top: 14vw;
  width: 12vw;
}

/*  мобильное меню
=============================================*/

.mobile-navigation {
  position: fixed;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 30px;
  background: #FFF;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  z-index: 100000;
}

.mobile-navigation-active {
  left: 0;
}

.hamburger {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: absolute;
  top: 15px;
  right: 15px;
  width: 50px;
  height: 30px;
  cursor: pointer;
  overflow: hidden;
}

.hamburger span {
  width: 50px;
  height: 2px;
  background: #FFF;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.mobile-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  /*margin: 0 0 70px 0;*/
}

.mobile_logo {
  width: 40px;
  margin: 0 10px 0 0;
}

.mobile_phone {
  width: 30px;
}

.close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 30px;
}

.mobile-menu_item {
  margin: 0 0 1.2vh 0;
}

.mobile-menu_link {
  font-size: 2vh;
  color: #000;
  text-transform: uppercase;
}

.mobile-menu_link__active {
  color: #4FD4FF;
  border-bottom: 3px solid #4FD4FF;
}

.mobile-menu_link__buy {
  padding: 10px;
  border-radius: 30px;
  background: #4FD4FF;
  color: #FFF;
}

.logo-wrapper {
  position: absolute;
  bottom: 5vh;
  left: 50vw;
}

.logo-wrapper img:first-child {
  width: 127px;
  margin: 0 30px 0 0;
}

.logo-wrapper img:last-child {
  width: 120px;
}

/*
  главная=============================
*/

.home {
  position: relative;
}

.img-slider-wrapper {
  position: relative;
  width: 100%;
  height: 57.8vw;
}

.img-slider-item {
  width: 100%;
  height: 57.8vw;
}

.img-slider-item img {
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
}

.header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  width: 100%;
  padding: 1vw 1vw;
  /*background: rgba(0,0,0,.5);*/
  z-index: 100;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.logo {
  width: 7vw;
}

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

.menu_item img {
  width: 1.1vw;
}

.menu_item__contact {
  /*  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;*/
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: auto;
}

.menu_link {
  margin: 0 0 0 1vw;
  font-size: 0.8vw;
  color: #FFF;
  text-transform: uppercase;
  -webkit-transition: all 0.1s;
  -o-transition: all 0.1s;
  transition: all 0.1s;
  text-shadow: 1px 1px 3px black;
  font-weight: 600;
}

.menu_link:hover {
  color: #4FD4FF;
  /*border-bottom: 2px solid #4FD4FF;*/
  text-shadow: 1px 1px 2px black;
}

.menu_link__phone {
  font-family: "acrom-Light";
  margin: 0 1vw 0 0;
  text-transform: inherit;
}

.menu_link__phone:hover {
  /*color: #FFF;
  border: none;
  border-bottom: 2px solid #4FD4FF;*/
}

.menu_link__active {
  color: #4FD4FF !important;
  border-bottom: 2px solid #4FD4FF;
  text-shadow: 1px 1px 2px #4FD4FF;
}

.menu_link__buy {
  padding: 0.5vw;
  border-radius: 30px;
  background: #4FD4FF;
  color: #FFF;
}

.menu_link__buy:hover {
  color: #FFF;
  border: none;
}

.town {
  font-family: "acrom-Regular" !important;
}

.phone_grey {
  display: none;
}

.header-fixed {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: fixed;
  top: -200px;
  left: 0;
  width: 100%;
  padding: 0.3vw 1vw;
  /*padding-left: 4vw;*/
  z-index: 100;
  background: #FFF;
  -webkit-box-shadow: 0 2px 0.5vw -0.2vw rgba(0, 0, 0, 0.5);
  box-shadow: 0 2px 0.5vw -0.2vw rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.header-fixed .logo {
  width: 4.1vw;
  margin-right: 2.3vw;
  margin-left: 0.7vw;
}

.header-fixed .logo_white,
.header-fixed .phone_white {
  display: none;
}

.header-fixed .logo_grey {
  display: block;
}

.header-fixed .phone_grey {
  display: block;
}

.header-fixed .menu_link {
  color: #000;
  text-shadow: none;
}

.header-fixed .menu_link:hover {
  color: #4FD4FF;
  text-shadow: none;
}

/*
.header-fixed .town {
  display: none;
}*/

.header-fixed .hamburger span {
  background: #000;
}

.header-fixed .menu_link__buy {
  color: #000 !important;
}

.header-fixed-page {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0.3vw 1vw;
  /* padding-left: 4vw;*/
  z-index: 10000;
  background: #FFF;
  -webkit-box-shadow: 0 2px 0.5vw -0.2vw rgba(0, 0, 0, 0.5);
  box-shadow: 0 2px 0.5vw -0.2vw rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.header-fixed-page .logo {
  width: 4.1vw;
  margin-right: 2.3vw;
  margin-left: 0.7vw;
}

.header-fixed-page .logo_white,
.header-fixed-page .phone_white {
  display: none;
}

.header-fixed-page .logo_grey {
  display: block;
}

.header-fixed-page .phone_grey {
  display: block;
}

.header-fixed-page .menu_link {
  color: #000;
  text-shadow: none;
}

.header-fixed-page .menu_link:hover {
  color: #4FD4FF;
  text-shadow: none;
}

/*
.header-fixed-page .town {
  display: none;
}
*/

.header-fixed-page .hamburger span {
  background: #000;
}

.header-fixed-page .menu_link__buy:hover {
  color: #000;
}

.slider-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  padding: 11vw 1vw 11vw 15.5vw;
  background: rgba(0, 0, 0, 0.5);
  /*background: linear-gradient(transparent, rgba(0, 0, 0, 0.5));*/
  /*margin-top: 8.9vw;*/

}

/*.slick-slide {*/

/*    width: 100% !important;*/

/*    margin: 0 0 0 -1px;*/

/*}*/

.home-slider-wrapper {
  position: relative;
}

.home-slider-item_title {
  margin: 0 0 3vw 0;
  font-family: 'acrom-Medium';
  font-size: 4.1vw;
  color: #FFF;
}

.home-slider-item_tagtitle {
  margin: 0 0 2vw 0;
  font-family: "acrom-Regular";
  font-size: 1.6vw;
  color: #FFF;
}

.home-slider-item_text {
  margin: 0 0 3vw 0;
  font-family: "acrom-Regular";
  font-size: 0.9vw;
  color: #FFF;
}

.home-slider-item_text a {
  color: inherit;
  font-weight: bold;
}

.home-slider-item_text a:hover {
  color: #4FD4FF;
}

.home-slider-item img {
  height: 100vh;
  /*height: calc(var(--vh, 1vh) * 100);*/
  min-width: 100vw;
  object-fit: cover;
}

.home-slider-navigation {
  position: absolute;
  top: 11vw;
  left: 10vw;
  width: 4.8vw;
  z-index: 1;
}

.dots {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

/*
.dots_item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0.4vw 0;
  font-family: "acrom-Bold";
  font-size: 1.3vw;
  color: #FFF;
  cursor: pointer;
}

.dots_item__active {
  font-size: 3.8vw;
  color: #4FD4FF;
}
*/

.dots_item {
  width: 0.5vw;
  height: 0.5vw;
  margin: 0.5vw 0;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background: #FFF;
  opacity: 0.2;
  cursor: pointer;
}

.dots_item:hover {
  opacity: 1;
}

.dots_item__active {
  width: 0.7vw;
  height: 0.65vw;
  opacity: 1;
}

.dots_item__active:after {
  content: none;
}

.arrows {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  left: -2vw;
  top: 1vw;
}

.arrows i {
  display: block;
  margin: 0 0 1vw 0;
  font-size: 1vw;
  color: #FFF;
  cursor: pointer;
}

.arrows i:hover {
  color: #4FD4FF;
}

/*
  main ===========================================
*/

.index-main {
  position: relative;
  padding: 0 6.5vw;
}

/*
.index-main .decor1 {
  position: fixed;
  top: 0;
  right: 0;
  width: 46vw;
  z-index: -1;
}

.index-main .decor2 {
  position: fixed;
  top: 43vw;
  left: 0;
  width: 24vw;
  z-index: -1;
}
*/

main {
  /*padding: 0 9.9vw;*/
  min-height: 85vh;
}

.section {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  /*padding: 5vw 0;*/
}

.section-img {
  width: 13.5vw;
  height: 32vw;
  overflow: hidden;
}

.section-img img {
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  -o-transition: transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}

.section-img img:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.section-img-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  width: 41.6vw;
}

.section-content {
  width: 41.5vw;
}

.section-content_title {
  position: relative;
  font-family: 'acrom-Medium';
  font-weight: 200;
  margin: 0 0 3vw 0;
  font-size: 4.2vw;
  color: #000;
  /*line-height: 3vw;*/
}

.section-content_title:after {
  content: "";
  display: block;
  position: absolute;
  /*bottom: -3vw;*/
  width: 5vw;
  height: 2px;
  background: #4FD4FF;
  margin-top: 1vw;
}

.section-content_text {
  margin: 0 0 3vw 0;
  font-family: "acrom-Regular";
  font-size: 1.3vw;
  font-weight: 200;
  color: #000;
}

.section_title {
  font-family: 'acrom-Medium';
  font-weight: 200;
  position: relative;
  margin: 0 0 2vw 0;
  font-size: 4.2vw;
  color: #000;
}

.section_link__all {
  position: absolute;
  right: 0;
  bottom: -1vw;
  font-family: "acrom-Bold";
  font-size: 1.3vw !important;
  text-transform: uppercase;
}

.section_link__all i {
  margin: 2px 0 0 0.5vw;
  font-size: 1.1vw;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  -o-transition: transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}

.section_link__all:hover {
  color: #4FD4FF;
}

.section_link__all:hover.section_link__all i {
  -webkit-transform: translateX(10px);
  -ms-transform: translateX(10px);
  transform: translateX(10px);
}

.section-mobile {
  display: none;
}

.section-slider-wrapper {
  position: relative;
  width: 41.6vw;
}

.section-slider-item {
  position: relative;
  height: 26vw;
}

.section-slider-item img {
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
}

.section-slider-item_text {
  position: absolute;
  bottom: 3vw;
  left: 9vw;
  font-family: "acrom-Bold";
  font-size: 1.1vw;
  color: #FFF;
}

.section-slider-arrows {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  bottom: 2vw;
  left: -2vw;
}

.section-slider-arrow {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 4vw;
  height: 4vw;
  background: #FFF;
  -webkit-box-shadow: 2px 2px 0.5vw rgba(0, 0, 0, 0.5);
  box-shadow: 2px 2px 0.5vw rgba(0, 0, 0, 0.5);
  cursor: pointer;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.section-slider-arrow i {
  font-size: 1vw;
}

.section-slider-prev {
  margin: 0 2vw 0 0;
}

.button-video {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1vw;
  color: #000;
}

.button-video img {
  width: 2.5vw;
  margin: 0 1vw 0 0;
}

.section-news-and-stock {
  display: block;
  padding: 3vw 0;
}

.section-news-and-stock .button_black {
  display: none;
}

.section-news {
  /*display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;*/
  display: inline-block;
  /*-webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;*/
}

.section-new {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  float: left;
  margin-right: 1.5vw;
  margin-left: 1.5vw;
  margin-bottom: 3vw;
}

.section-new:hover .section-new-img img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.section-new-date {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 0 1vw 0;
}

.section-new-date_day {
  margin: 0 1vw 0 0;
  font-family: "acrom-Bold";
  font-size: 4.2vw;
  color: #4FD4FF;
  border-bottom: 2px solid #4FD4FF;
}

.section-new-date_month {
  font-family: "acrom-Bold";
  font-size: 1.3vw;
  color: #4FD4FF;
}

.section-new-date_year {
  font-size: 1vw;
  color: #E2E2E2;
}

.section-new_title,
.section_link__all {
  margin: 0 0 1vw 0;
  font-size: 1.3vw;
  color: #000;
  height: 7.5vw;
  overflow: hidden;
}

.section-new_hashtag {
  display: block;
  font-size: 1.3vw;
  color: #acacac;
}

.section-new_hashtag:hover {
  color: #4FD4FF;
}

.section-new_link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 1vw 0 0 0;
  /*font-family: "acrom-Bold";*/
  font-size: 1.3vw;
  color: #000;
  text-transform: uppercase;
  /* height: 3vw;*/
  cursor: pointer;
}

.section-new_link i {
  margin: 2px 0 0 0.5vw;
  font-size: 1.1vw;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  -o-transition: transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}

.section-new_link:hover {
  color: #4FD4FF;
}

.section-new_link:hover.section-new_link i {
  -webkit-transform: translateX(0.5vw);
  -ms-transform: translateX(0.5vw);
  transform: translateX(0.5vw);
}

.section-new-info {
  width: 19.2vw;
  height: 19.4vw;
}

.section-new-info p {
  height: 8.5vw;
  overflow: hidden;
  font-size: 1.3vw;
  color: #acacac;
}

.section-new-img {
  position: relative;
  width: 19.2vw;
  height: 19.4vw;
  overflow: hidden;
  cursor: pointer;
}

.section-new-img img {
  -o-object-fit: cover;
  object-fit: cover;
  object-position: top;
  height: 100%;
  width: 100%;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  -o-transition: transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}

.mobile-new-date {
  display: none;
}

.map {
  width: 100%;
  height: 37.5vw;
}

.map-wrapper {
  position: relative;
}

.map-contact {
  position: absolute;
  top: 0;
  left: 6.5vw;
  width: 41.5vw;
  height: 37.5vw;
  padding: 5vw;
  background: #FFF;
  -webkit-box-shadow: 0 0 0.5vw -0.2vw rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 0.5vw -0.2vw rgba(0, 0, 0, 0.5);
  font-family: "acrom-Light";
}

.map-contact_title {
  font-family: "acrom-Regular";
  margin: 0 0 1vw 0;
  font-size: 1.5vw;
  color: #4FD4FF;
}

.map-contact_item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 0 1vw 0;
}

.map-contact_item img {
  width: 1.4vw;
  margin: 0 2vw 0 0;
}

.map-contact_item__text {
  font-size: 1vw;
  color: #000;
}

.map-contact_item__email {
  color: #20639A;
  border-bottom: 2px solid #20639A;
}

.map-contact_item__email:hover {
  color: #20639A;
}

.map-contact_item a:hover {
  color: #4FD4FF;
}

.map-contact-text {
  margin: 0 0 2vw 0;
  font-size: 1vw;
  color: #000;
}

/*
.mobile-town_name {
  display: none;
}
*/

#map-mobile {
  display: none;
}

footer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  padding: 1.7vw 6.5vw;
  background: #181b22;
  background-image: url("/img/footer.webp");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  color: #FFF;
}

footer .menu_link__phone {
  margin: 0 1vw 0.5vw 0;
}

.footer-right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.dev_link {
  margin: 0 0 0.5vw 0;
  font-family: "acrom-Regular" !important;
  font-size: 1vw;
  font-weight: 200;
  /*text-transform: uppercase; */
}

.dev_link a {
  color: #FFF;
  text-shadow: 1px 1px 2px black;
}

.dev_link a:hover {
  color: #4FD4FF;
  /*  border-bottom: 2px solid #4FD4FF;*/
  text-shadow: 1px 1px 2px black;
}

.dev_link img {
  width: 4.4vw;
}

.copyright {
  font-size: 1vw;
}

/*  страница О нас
===============================================*/

.decor-wrapper {
  position: relative;
}

.decor1 {
  position: fixed;
  top: 0;
  right: 0;
  /*width: 46vw;*/
  height: 100%;
  z-index: -1;
  opacity: 30%;
}

.decor2 {
  position: fixed;
  /*bottom: 9vw;*/
  bottom: 0;
  left: 0;
  /*width: 34vw;*/
  height: 100%;
  z-index: -1;
  opacity: 30%;
}

.section-main {
  position: relative;
  padding: 5vw 9.9vw 0 9.9vw;
}

.inner-section {
  position: relative;
  padding: 0 9.9vw 5vw 9.9vw;
}

.inner-section_title {
  margin: 0 0 2vw 0;
  font-family: "acrom-Bold";
  font-size: 1.5vw;
  text-align: center;
}

.inner-section-content_title {
  margin: 0 0 2vw 0;
  font-size: 1.5vw;
}

.inner-section-content_text {
  font-size: 1.3vw;
}

.inner-section-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 0 9.9vw 5vw 9.9vw;
}

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

.models-item {
  width: 25%;
  margin: 0 0 1vw 0;
  padding: 0 4vw 0 0;
}

.models-item_title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  height: 4.2vw;
  margin: 0 0 0.5vw 0;
  padding: 0 0 0.5vw 0;
  font-size: 1.3vw;
}

.models-item_title:after {
  content: "";
  display: block;
  position: absolute;
  width: 5vw;
  height: 2px;
  margin: 0.5vw 0 0 0;
  background: #4FD4FF;
}

.models-item_text {
  font-size: 1vw;
}

.models-arrows {
  display: none;
}

.section-half-slider {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  padding: 5vw 0 5vw 9.9vw;
  overflow: hidden;
}

.section-half-slider-content {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 30.2vw;
  margin: 0 7.5vw 0 0;
  padding: 3.3vw 0 0 0;
}

.section-half-slider_title {
  position: relative;
  margin: 0 0 3vw 0;
  font-family: "acrom-Bold";
  font-size: 1.5vw;
}

.section-half-slider_title:after {
  content: "";
  display: block;
  position: absolute;
  bottom: -1.5vw;
  width: 5vw;
  height: 2px;
  background: #4FD4FF;
}

.section-half-slider_text {
  font-size: 1.3vw;
}

.half-slider-wrapper {
  position: relative;
}

.half-slider {
  width: 65vw;
}

.half-slider-item {
  position: relative;
  height: 39vw;
  margin: 0 2vw 0 0;
  overflow: hidden;
}

.half-slider-item img {
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
}

.half-slider-info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: -80%;
  width: 80%;
  height: 100%;
  padding: 2vw;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.half-slider-info_open {
  position: absolute;
  top: 1vw;
  left: 1vw;
  width: 2.9vw;
  height: 2.6vw !important;
  cursor: pointer;
}

.half-slider-info_text {
  color: #FFF;
  font-size: 0.7vw;
}

.half-slider-info_close {
  position: absolute;
  top: 1vw;
  right: 1vw;
  width: 1vw;
  height: 1vw !important;
  color: #FFF;
  cursor: pointer;
}

.trademarks-logo {
  margin: 0 0 2vw 0;
}

.trademarks-logo img {
  width: 12vw;
  margin: 0 1.5vw 0 0;
}

/*
iframe {
  width: 46.8vw;
  height: 29vw;
  margin: 0 5vw 0 0; }
  */

/*  страница Новости и акции
===============================================*/

.page-main,
.part-main {
  position: relative;
  padding: 6vw 6.5vw 1vw 6.5vw;
}

.news {
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.section-title-wrapper {
  position: relative;
}

.new {
  position: relative;
  width: 41.7vw;
  height: 24vw;
  margin: 0 0 10vw 0;
}

.new-img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.new-img img {
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  -o-transition: transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}

.new:hover .new-img img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.new-info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  bottom: -8vw;
  left: -webkit-calc(50% - 15.9vw);
  left: calc(50% - 15.9vw);
  width: 31.8vw;
  height: 14.6vw;
  padding: 2vw 3vw;
  background: #FFF;
  -webkit-border-radius: 0.3vw;
  border-radius: 0.3vw;
  -webkit-box-shadow: 0px 2px 15px -5px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 2px 15px -5px rgba(0, 0, 0, 0.5);
}

.new-info_title {
  margin: 0;
}

.new-info-left {
  margin: 0 2vw 0 0;
}

.new-info-date:after {
  content: "";
  display: block;
  width: 5vw;
  height: 2px;
  background: #4FD4FF;
}

.new-info-date_number {
  font-family: "acrom-Bold";
  font-size: 1.3vw;
  color: #4FD4FF;
}

.new-info-date_year {
  font-family: "acrom-Regular";
  font-size: 1vw;
  color: #E2E2E2;
}

.new_link {
  position: absolute;
  bottom: 2vw;
}

.page-navigation,
.article-navigation {
  width: 6.5vw;
  margin: 0 1vw;
  height: 4.5vw;
}

.page-navigation-wrapper,
.article-navigation-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.page-navigation li,
.article-navigation li {
  cursor: pointer;
}

.page-navigation_link,
.article-navigation_link {
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 33% !important;
  margin: 0 0.5vw;
  font-family: "acrom-Bold";
  font-size: 1.3vw;
  color: #000;
  outline: 0;
  -webkit-transition: -webkit-transform 0.3s linear;
  transition: -webkit-transform 0.3s linear;
  -o-transition: transform 0.3s linear;
  transition: transform 0.3s linear;
  transition: transform 0.3s linear, -webkit-transform 0.3s linear;
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
}

.page-navigation_link:hover,
.article-navigation_link:hover {
  color: #4FD4FF;
}

.page-navigation_link__dots:hover,
.article-navigation_link__dots:hover {
  color: #000;
}

.page-navigation_top,
.article-navigation_top {
  position: absolute;
  right: 0;
  bottom: 0;
}

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

.page-navigation .slick-current,
.article-navigation .slick-current {
  font-size: 3.8vw;
  color: #4FD4FF;
  -webkit-transition: all 0.1s;
  -o-transition: all 0.1s;
  transition: all 0.1s;
  -webkit-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.news-arrow {
  font-size: 1.3vw;
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
  cursor: pointer;
}

.news-arrow:hover {
  color: #4FD4FF;
}

/*  страница Серии мебели
===============================================*/

.series {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.series h1 {
  text-align: center;
  width: 100%;
  padding-bottom: 1em;
}

.series-slider {
  width: 27vw;
  height: 22vw;
}

.series-slider-wrapper {
  position: relative;
  margin: 0 0 3vw 0;
  overflow: hidden;
  border-radius: 0.3vw;
}

.series-slider-link {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.series-slider-wrapper:hover .series-slider-content .button {
  background: #4FD4FF !important;
}

.series-slider-wrapper i {
  position: absolute;
  top: 50%;
  font-size: 1vw;
  color: #FFF;
  z-index: 1;
  cursor: pointer;
}

.series-slider-item {
  width: 100%;
  height: 100%;
  background-blend-mode: darken;
  background-color: rgba(0, 0, 0, 0.4);
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  /*-webkit-border-radius: 0.3vw;
  border-radius: 0.3vw;*/
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  -o-transition: transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}

.series-slider-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #FFF;
}

.series-slider-content_title {
  margin: 0 0 1vw 0;
  font-family: "acrom-Bold";
  font-size: 3.1vw;
  text-transform: uppercase;
  text-align: center;
}

.series-slider-content_text {
  margin: 0 0 1vw 0;
  padding: 0 5vw;
  font-size: 1.3vw;
  text-align: center;
}

.series-slider-dots {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 2vw;
  right: 2vw;
  z-index: 1;
}

.series-slider-dots_item {
  display: block;
  width: 0.8vw;
  height: 0.8vw;
  margin: 0 0.2vw;
  border: 2px solid #FFF;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  cursor: pointer;
}

.series-slider-dots_item__active {
  border-color: #4FD4FF;
}

.slick-track {
  height: 100%;
}

.slick-list {
  height: 100%;
}

.button_white {
  background: transparent;
  border-color: #FFF;
}

.button_white:hover {
  background: #4FD4FF;
}

.series-slider-prev {
  left: 3vw;
}

.series-slider-next {
  right: 3vw;
}

.to-all_series {
  position: absolute;
  top: 6vw;
  left: 8vw;
  font-family: "acrom-Bold";
  font-size: 1.2vw;
  color: #FFF;
  text-transform: uppercase;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 1;
}

.to-all_series:hover {
  color: #4FD4FF;
}

.to-all_series i {
  margin: 0 1vw 0 0;
}

.mouse-icon {
  display: flex;
  /*justify-content: center;*/
  left: 50vw;
  position: absolute;
  /*width: 100%;*/
  margin: -8vw 0 0 -6vw;
  cursor: pointer;
}

.mouse-icon img {
  width: 6vw;
}

/*  страница контакты
===============================================*/

.contacts-map-wrapper {
  padding: 4.8vw 0 0 0;
}

.contacts-map-contact {
  top: 4.8vw;
  left: 0;
  background: #FFF url(../img/circle1-rotate.png) left top no-repeat;
  -webkit-background-size: 69% 69%;
  background-size: 69%;
  background-position: 0vw -39vw;
  width: 56.5vw;
  padding: 2vw 5vw 5vw 9.9vw;
  -webkit-box-shadow: 0 9px 0px 0px white, 0 -9px 0px 0px white, 3px 0 10px -4px rgba(0, 0, 0, 0.8), -3px 0 10px -4px rgba(0, 0, 0, 0.8);
  box-shadow: 0 9px 0px 0px white, 0 -9px 0px 0px white, 3px 0 10px -4px rgba(0, 0, 0, 0.8), -3px 0 10px -4px rgba(0, 0, 0, 0.8);
}

.contacts-section_title {
  margin: 0 0 1vw 0;
}

.adress {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 3vw 6.5vw;
}

.adress-item {
  width: 25%;
}

.adress-item_title {
  position: relative;
  margin: 0 0 1vw 0;
  padding: 0 0.9vw;
  font-family: "acrom-Regular";
  font-size: 1.55vw;
  color: #4FD4FF;
}

.adress-item_title:after {
  content: "";
  display: block;
  position: absolute;
  bottom: -0.3vw;
  width: 4.9vw;
  height: 2px;
  background: #4FD4FF;
}

.adress-item .map-contact_item__text {
  font-size: 0.9vw;
}

.adress-item .map-contact_item {
  padding: 0 0.9vw;
}

.contacts-section_title__mobile {
  display: none;
}

.map-contact-text_mobile {
  display: none;
}

.buy {
  padding: 7vw 0 0 9.9vw;
}

/*
.tabs {
  margin: 3vw 0 0 0;
}
*/

.tabs-head {
  display: flex;
}

.tabs-head_button {
  position: relative;
  margin: 0 5vw 1vw 0;
  background: transparent;
  border: none;
  font-family: "acrom-Regular";
  font-size: 1.55vw;

  cursor: pointer;
}

.tabs-head_button__active {
  color: #4FD4FF;
}

.tabs-head_button__active:after {
  content: "";
  display: block;
  position: absolute;
  bottom: -0.5vw;
  width: 100%;
  height: 4px;
  background: #4FD4FF;
}

.tabs-body {
  margin: 1vw 0 0 0;
}

.tabs-item {
  display: flex;
  margin: 0 0 2vw 0;
  /*width: 85vw;*/
}

.news-slider .slick-slide {}

.tabs-sidebar {
  /*width: 40vw;*/
  margin: 0 0vw 0 0;
  padding: 0 0 0 0;
  min-width: 30vw;
  padding-right: 1vw;
}

.tabs-sidebar-item {
  margin: 0 0 1vw 0;
}

.tabs-sidebar a,
.tabs-sidebar span {
  display: block;
  margin: 0 0 0.5vw 0;
  font-family: "acrom-Regular";
  font-size: 1.05vw;
  color: #000;
}

.tabs-img {
  /*width: 41.7vw;
  height: 15.6vw;*/
  margin-left: auto;
  text-align: right;
  width: 100%;
  min-width: 50vw;
  /*max-width: max-content;*/
}

.tabs-img video {
  width: 100%;
  /*height: 100%;*/
  max-width: max-content;
  /* width: auto; 
  height: auto; */
}

.tabs-img img {
  /* height: 100%;
  object-fit: cover;*/
  margin-left: 1vw;
  margin-bottom: 1vw;
  width: 100%;
  max-width: max-content;
  /*-webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  -o-transition: transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;*/
}

/*
.tabs-img ymaps {
  width: 500px;
}*/

/*.tabs-img img:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}*/

/*  страница Статья
===============================================*/

.to_back {
  font-family: "acrom-Bold";
  font-size: 1.5vw;
  color: #000;
  text-transform: uppercase;
  -webkit-transition: color 0.5s;
  -o-transition: color 0.5s;
  transition: color 0.5s;
}

.to_back i {
  font-size: 1.1vw;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  -o-transition: transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}

.to_back:hover {
  color: #4FD4FF;
}

.to_back:hover.to_back i {
  -webkit-transform: translateX(-10px);
  -ms-transform: translateX(-10px);
  transform: translateX(-10px);
}

.section-article {
  position: relative;
}

.section-article .decor2 {
  position: absolute;
  top: 5vw;
  left: 0;
  width: 52vw;
  height: 89vw;
  z-index: -1;
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.article {
  display: block !important;
  padding: 0 0 3vw 0;
}

.article-section {
  padding: 5vw 0 3vw 0;
}

.article_title {
  font-family: 'acrom-Medium';
  font-size: 3.6vw;
  line-height: 4vw;
}

.article-section-content {
  width: 38.3vw;
}

.article_hashtag {
  display: block;
  margin: 1vw 0;
}

.article-content {
  margin: 1vw 0;
}

.article-content_text {
  margin: 0 0 1vw 0;
  font-family: "acrom-Regular";
  font-size: 1.3vw;
}

.article-slider-arrows {
  bottom: -2vw;
}

/*  страница внутр. Серии мебели
===============================================*/

.part-main {}

.part-slider-wrapper {
  padding: 4vw 0 0 0;
}

.part-slider-overlay {
  width: 32vw;
  padding: 5vw 1vw 11vw 8vw;
}

.part-slider-item img {
  /* -o-object-fit: cover;
  object-fit: cover;*/
  /*height: 50vw;*/
}

.part-slider-item_title {
  margin: 0 0 1.5vw 0;
  font-family: "acrom-Bold";
  font-size: 2.5vw;
  text-transform: uppercase;
}

.part-slider-item_tagtitle {
  position: relative;
  margin: 0 0 3vw 0;
}

.part-slider-item_tagtitle:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1.5vw;
  width: 5vw;
  height: 0.15vw;
  background: #FFF;
}

.part-slider-navigation {
  position: absolute;
  top: 50vh;
  /*transform: translateY(-50%);
  left: 0.5vw;*/
  z-index: 1;
}

.part-slider-dots {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  flex-wrap: wrap;
  height: 50vh;
}

.part-slider-dots_item {
  width: 0.5vw;
  height: 0.5vw;
  margin: 0.25vw;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background: #FFF;
  opacity: 0.2;
  cursor: pointer;
}

.part-slider-dots_item:hover {
  opacity: 1;
}

.part-slider-dots_item__active {
  width: 0.7vw;
  height: 0.65vw;
  opacity: 1;
}

.part-slider-dots_item__active:after {
  content: none;
}

.part-slider-arrows {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 48.5%;
  left: 3vw;
  transform: rotate(90deg);
}

.part-slider-arrows i {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 1vw;
  color: #FFF;
  cursor: pointer;
  font-size: 2vw;
}

.part-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 100%;
}

.part-content:after {
  content: "";
  flex: auto;
}

.icon_white {
  display: none;
}

.part-item {
  width: 25%;
  /*margin: 0 0 3vw 0;*/
  padding: 0 2vw 1.4vw 2vw;
  -webkit-transform: none !important;
  -ms-transform: none !important;
  transform: none !important;
}

.part-item-img {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  height: 16.9vw;
  margin: 0 0 1vw 0;
  -webkit-box-shadow: 0 0 0.5vw -2px rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 0.5vw -2px rgba(0, 0, 0, 0.5);
}

.part-item-img img {
  -o-object-fit: contain;
  object-fit: contain;
  width: 8.6vw;
  height: 7.3vw;
  margin: 1vw 0 1vw 0;
}

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

.part-item-icon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 2.6vw;
  height: 2.6vw;
  margin: 0 1vw;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  -webkit-box-shadow: 1.5px 2px 3px rgba(0, 0, 0, 0.5);
  box-shadow: 1.5px 2px 3px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.part-item-icon img {
  width: 1.4vw;
  height: 1.4vw;
}

.part-item-icon:hover {
  background: #4FD4FF;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.part-item-icon:hover .icon_color {
  display: none;
}

.part-item-icon:hover .icon_white {
  display: block;
}

.part-item_num {
  position: absolute;
  right: 0.5vw;
  bottom: 0.5vw;
  font-family: "acrom-Regular";
  font-size: 0.7vw;
  color: #4a4a4a;
  text-transform: uppercase;
}

.part-item_title {
  margin: 0 0 0.5vw 0;
  font-family: "acrom-Regular";
  font-size: 1.1vw;
  color: #4a4a4a;
}

.part-item_proportions {
  margin: 0 0 0 2vw;
  font-family: "acrom-Light";
  font-size: 0.7vw;
  color: #4a4a4a;
}

.part-item_price {
  font-family: "acrom-Regular";
  font-size: 1.3vw;
  font-weight: 800;
  color: #4FD4FF;
}

.part-sidebar {
  position: fixed;
  z-index: 100;
  left: 0;
  bottom: -100%;
  display: flex;
  width: 100%;
  transition: bottom 0.5s;
}

.part-sidebar--active {
  bottom: 0;
}

.part-sidebar-block {
  display: flex;
  align-items: center;
  width: 60%;
  margin: 0 0 0 0;
  background: #FFF;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
}

#cats {
  width: 40%;
}

@media (max-width: 768px) {
  #cats {
    width: 100%;
  }
}

.part-sidebar-title-wrapper {
  padding: 1.5vw 1vw;
  background: #4FD4FF;
  height: 100%;
}

.part-sidebar_title {
  font-family: "acrom-Bold";
  font-size: 1.3vw;
  color: #FFF;
  text-transform: uppercase;
}

.part-sidebar-content {
  padding: 0 0 0 0;
  text-align: center;
}

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

.colors_item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  width: 4vw;
  height: 4vw;
  margin: 0 0 0 0.4vw;
  border: 1px solid #FFF;
  cursor: pointer;
}

.colors_item img {
  width: 3.65vw;
  height: 3.65vw;
  -webkit-box-shadow: 0px 0px 5px -1px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 0px 5px -1px rgba(0, 0, 0, 0.5);
}

.colors_item:hover {
  border: 3px solid #4FD4FF;
}

.colors_item__active {
  border: 3px solid #4FD4FF;
}

.colors_item:hover:after {
  content: attr(data-title);
  text-align: center;
  position: absolute;
  top: -2.4vw;
  width: 10vw;
  padding: 0.5vw;
  -webkit-border-radius: 0.2vw;
  border: 1px solid #4FD4FF;
  border-radius: 0.2vw;
  background: #FFF;
  z-index: 10;
}

.filters {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.filters_link {
  /*display: block;*/
  width: auto;
  margin: 0 0.5vw;
  white-space: nowrap;
  /*padding: 0.1vw 0vw;*/
  font-family: "acrom-Regular";
  font-size: 0.7vw;
  font-weight: bold;
  color: #4a4a4a;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

/*
.filters_link__active {
  color: #4FD4FF;
  border-bottom: 2px solid #4FD4FF;
}
*/

.filters_link:hover {
  color: #4FD4FF;
  border-bottom: 2px solid #4FD4FF;
}

/*  страница Дилерам
====================================================*/

.dilers {}

.dilers-main {
  padding: 6vw 6.5vw 0 10.5vw;
}

.dilers_title {
  position: relative;
  margin: 0 0 2.4vw 0;
  font-size: 1.6vw;
}

.cloud {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: 0 0 3vw 0;
}

.cloud-sidebar {
  width: 19vw;
  padding: 2vw 0 0 0;
}

.aside_title {
  position: relative;
  margin: 0 0 4vw 0;
  font-family: 'acrom-Bold';
  font-size: 1.56vw;
}

.aside_title:after {
  content: "";
  display: block;
  position: absolute;
  bottom: -2.5vw;
  width: 5vw;
  height: 2px;
  background: #4FD4FF;
}

.aside_tagtitle {
  font-size: 1.3vw;
}

.cloud-items {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 59.636vw;
}

.cloud-item {
  width: 31.5%;
  margin: 0 0 1vw 0;
}

.cloud-item-big {
  width: 100%;
}

.cloud-item-img {
  height: 18.75vw;
  margin: 0 0 1vw 0;
  box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.16);
}

.cloud-item-img img {
  height: 100%;
  object-fit: cover;
}

.cloud-item_title {
  /*font-size: 0.7812vw;*/
  font-size: 0.73vw;
  text-align: center;
}

.cloud-item_title__big {
  text-align: left;
}

/*  .dilers-partners {*/

/*    width: 49vw; }*/

/*  .dilers-form-item {*/

/*    display: -webkit-box;*/

/*    display: -webkit-flex;*/

/*    display: -ms-flexbox;*/

/*    display: flex;*/

/*    -webkit-box-pack: justify;*/

/*    -webkit-justify-content: space-between;*/

/*        -ms-flex-pack: justify;*/

/*            justify-content: space-between;*/

/*    margin: 0 0 1vw 0; }*/

/*    .dilers-form-item-submit {*/

/*      display: -webkit-box;*/

/*      display: -webkit-flex;*/

/*      display: -ms-flexbox;*/

/*      display: flex;*/

/*      -webkit-box-pack: justify;*/

/*      -webkit-justify-content: space-between;*/

/*          -ms-flex-pack: justify;*/

/*              justify-content: space-between;*/

/*      -webkit-box-align: center;*/

/*      -webkit-align-items: center;*/

/*          -ms-flex-align: center;*/

/*              align-items: center;*/

/*      margin: 2vw 0; }*/

/*    .dilers-form-item-center {*/

/*      text-align: center; }*/

/*  .dilers-form_input {*/

/*    width: 100%;*/

/*    padding: 1.7vw;*/

/*    font-family: "acrom-Regular";*/

/*    font-size: 1vw;*/

/*    color: #000;*/

/*    border: none;*/

/*    -webkit-border-radius: 0.4vw;*/

/*            border-radius: 0.4vw;*/

/*    -webkit-box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);*/

/*            box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1); }*/

/*    .dilers-form_input__checkbox {*/

/*      display: none; }*/

/*    .dilers-form_input__small {*/

/*      padding: 0.8vw 1.7vw; }*/

/*  .dilers-form_half__input {*/

/*    width: 49%; }*/

/*  .dilers-form-links {*/

/*    display: -webkit-box;*/

/*    display: -webkit-flex;*/

/*    display: -ms-flexbox;*/

/*    display: flex;*/

/*    -webkit-box-orient: vertical;*/

/*    -webkit-box-direction: normal;*/

/*    -webkit-flex-direction: column;*/

/*        -ms-flex-direction: column;*/

/*            flex-direction: column;*/

/*    -webkit-box-align: center;*/

/*    -webkit-align-items: center;*/

/*        -ms-flex-align: center;*/

/*            align-items: center; }*/

/*  .dilers-form_link {*/

/*    margin: 0 0 0.5vw 0;*/

/*    font-size: 0.8vw;*/

/*    color: #000;*/

/*    border-bottom: 2px solid #000; }*/

/*  .dilers-agree {*/

/*    position: relative; }*/

/*    .dilers-agree_text {*/

/*      display: -webkit-box;*/

/*      display: -webkit-flex;*/

/*      display: -ms-flexbox;*/

/*      display: flex;*/

/*      -webkit-box-align: center;*/

/*      -webkit-align-items: center;*/

/*          -ms-flex-align: center;*/

/*              align-items: center;*/

/*      font-size: 0.8vw;*/

/*      cursor: pointer; }*/

/*      .dilers-agree_text:before {*/

/*        content: "";*/

/*        display: -webkit-box;*/

/*        display: -webkit-flex;*/

/*        display: -ms-flexbox;*/

/*        display: flex;*/

/*        -webkit-box-pack: center;*/

/*        -webkit-justify-content: center;*/

/*            -ms-flex-pack: center;*/

/*                justify-content: center;*/

/*        -webkit-box-align: center;*/

/*        -webkit-align-items: center;*/

/*            -ms-flex-align: center;*/

/*                align-items: center;*/

/*        width: 1.5vw;*/

/*        height: 1.5vw;*/

/*        margin: 0 1vw 0 0;*/

/*        -webkit-border-radius: 0.3vw;*/

/*                border-radius: 0.3vw;*/

/*        -webkit-box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.32);*/

/*                box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.32);*/

/*        cursor: pointer; }*/

/*    .dilers-agree-center {*/

/*      display: -webkit-box;*/

/*      display: -webkit-flex;*/

/*      display: -ms-flexbox;*/

/*      display: flex;*/

/*      -webkit-box-pack: center;*/

/*      -webkit-justify-content: center;*/

/*          -ms-flex-pack: center;*/

/*              justify-content: center; }*/

/*  .dilers-enter {*/

/*    width: 20vw;*/

/*    margin: 0 0 0 6vw; }*/

/*.dilers-form_input__checkbox:checked + .dilers-agree_text:before {*/

/*  content: url(../img/arrow-check.png); }*/

/*.button_black__enter {*/

/*  margin: 1vw 0;*/

/*  padding: 0.8vw 4.2vw; }*/

/*.required_inputs {*/

/*  position: absolute;*/

/*  right: 0;*/

/*  top: 50%;*/

/*  font-size: 0.8vw; }*/

/* модалка */

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  z-index: 10000;
}

.modal-thanks {
  /*display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;*/
  align-items: center;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: overlay;
  width: 50vw;
  max-height: 95vh;

  /*padding-right: .9vw;*/
  /*-webkit-border-radius: 0.5vw;
  border-radius: 0.5vw;*/
  background: #FFF;
  z-index: 1001;
  -webkit-box-shadow: 0px 0px 20px 20px rgba(0, 0, 0, 0.32);
  box-shadow: 0px 0px 20px 20px rgba(0, 0, 0, 0.32);
}

.modal-thanks_title {
  position: relative;
  /* margin: 0 0 1.1vh 0;*/
  font-size: 1.4vw;
  font-weight: 800;
  text-align: center;
}

/*
.modal-thanks_title:after {
  content: "";
  position: absolute;
  top: 1vw;
  left: 50%;
  width: 100px;
  height: 3px;
  margin: 3vw 0 0 0;
  background: #4FD4FF;
  transform: translateX(-50%);
}
*/

.modal__logo {
  position: absolute;
  top: 1vw;
  left: 1vw;
  width: 80px;
  height: 85px;
}

.modal-thanks_text {
  /*overflow: auto;*/
  margin: 1vw 1vw 1vw 1vw;
  /*padding: 0 1vw 0 1vw;*/
  /*font-size: 2vh;*/
  /*font-weight: 400;*/
  /*text-align: justify;*/
  /*width: 100%;*/
}

.modal-thanks_text a {
  font-weight: bold;
}

.close-overlay {
  position: absolute;
  top: 3vh;
  right: 3vw;
  width: 55px;
  cursor: pointer;
}

.close-overlay:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.modal__button:hover {
  background: #4FD4FF;
}

.modal__button {
  margin: 0.5vh 0 0.5vh 0;
}

.modal__button a {
  color: #FFF;
  font-weight: 800;
  font-size: 2vh;
}

.singleUrl {
  text-align: center;
  margin-top: 2vh;
  margin-bottom: 2vh;
}

/*
modal__button a:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  color: #000;
}
*/

.ytPlayer iframe {
  width: 69vw;
  height: 26vw;
}

.viPlayer iframe {
  width: 69vw;
  height: 26vw;
}

.modal-images {
  /*overflow: overlay;
  max-height: 60vh;
  width: 100%;*/
}

.modal-images-multi {
  margin-right: 0.2vw;
  /*width: 10vw;
  height: 10vw;*/
  object-fit: cover;
}

.modal-images-single {
  /* width: 100%;*/
  margin-left: auto;
  margin-right: auto;
  display: block;
  /*max-height: 70vh;*/
  max-width: 100%;
}

/*  стрелка наверх (появл. на 768)
====================================================*/

.to-top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: fixed;
  z-index: 101;
  bottom: 140px;
  right: 0px;
  width: 50px;
  height: 50px;
  margin: 10px;
  background: #FFF;
  -webkit-box-shadow: 2px 2px 0.5vw rgba(0, 0, 0, 0.5);
  box-shadow: 2px 2px 0.5vw rgba(0, 0, 0, 0.5);
  cursor: pointer;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

@media (max-width: 768px) {
  .to-top {
    bottom: 75px;
  }
}

.to-top i {
  font-size: 25px;
  color: #000;
}

/*
.to-top:hover {
  transform: scale(1.1);
}
*/

/*  media
===================================================*/

@media (max-width: 768px) {
  .hamburger {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }

  /*
  .decor1, .decor2, .copyr {
    display: none;
  }
  */
  .decor1 {
    display: none;
  }

  .modal-thanks {
    /*left: calc(50% - 160px);*/
    width: 100vw;
    max-width: 100vw;
    /*height: 100vh;*/
    /*max-height: calc(100vh - 200px);*/
    /*padding: 65px 0;*/
    max-height: 100vh;
    /* margin-top: 65px;*/
    padding-bottom: 65px;
    padding-top: 65px;
  }

  .viPlayer iframe {
    width: 99vw;
    height: 55.687vw;
  }

  .modal-thanks_text {
    margin: 0;
  }

  .modal__logo {
    width: 40px;
    height: auto;
  }

  .modal-thanks_title {
    font-size: 15px;
  }

  .modal-thanks_text {
    font-size: 10px;
  }

  .modal__button {
    background: #4FD4FF !important;
  }

  .close-overlay {
    width: 45px;
    top: 13px;
    right: 9px;
    z-index: 100000;
  }

  .modal-thanks_title:after {
    top: 63px;
  }

  /* главная страница 768 */
  .index-main:after {
    content: none;
  }

  .index-main:before {
    content: none;
  }

  .menu,
  .dots,
  .menu_link__phone {
    display: none;
  }

  .header {
    padding: 25px 30px 0 30px;
  }

  .logo {
    width: 80px;
    margin: 0 10px 0 0;
  }

  .slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0 29px;
    background: rgba(0, 0, 0, 0.2);
  }

  .home-slider-item img {
    -o-object-fit: cover;
    object-fit: cover;
  }

  .home-slider-content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    height: 100%;
  }

  .menu_item img {
    width: 27px;
  }

  .menu_item__contact {
    margin: 0;
  }

  .home-slider-item_title {
    position: relative;
    margin: -65px 0 50px 0;
    font-size: 70px;
    line-height: 65px;
  }

  .home-slider-item_title:after {
    content: "";
    display: block;
    position: absolute;
    bottom: -30px;
    width: 100px;
    height: 3px;
    background: white;
  }

  .home-slider-item_text {
    display: none;
  }

  .home-slider-item_tagtitle {
    font-size: 16px;
  }

  .button {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    /*
    width: 220px;
    height: 50px; */
    padding: 10px;
    font-size: 20px;
    background: transparent;
    border: 2px solid #FFF;
    -webkit-border-radius: 30px;
    border-radius: 30px;
  }

  .button:hover {
    border: 2px solid #FFF;
  }

  .modal-images img {
    /*width: 100%;
    max-width: 100%;*/
  }

  .modal-images-multi {
    margin-right: 0.2vw;
    width: 49vw;
    height: 49vw;
    object-fit: cover;
  }

  .home-slider-content .button {
    /*  position: absolute;
    bottom: 30px;
    left: -webkit-calc(50% - 100px);
    left: calc(50% - 100px);*/
    margin-bottom: 1vh;
  }

  .arrows {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
  }

  .arrows i {
    margin: 0 0px 20px 0;
    font-size: 20px;
  }

  .home-slider-navigation {
    position: absolute;
    top: 430px;
    left: 45px;
    z-index: 1;
  }

  main {
    /*padding: 0 30px;*/
  }

  .section {
    display: block;
  }

  .section-desctop {
    display: none;
  }

  .section-mobile {
    display: block;
  }

  .section-content {
    width: 100%;
  }

  .section-content_title {
    position: relative;
    /*margin: -17px 0 40px 0;*/
    font-size: 50px;
    line-height: 60px;
  }

  .section-content_title:after {
    content: "";
    display: block;
    position: absolute;
    /*bottom: -20px;*/
    width: 100px;
    height: 3px;
    background: #4FD4FF;
  }

  .section-content_text {
    margin: 15px 0;
    font-size: 20px;
  }

  .section-img-wrapper {
    width: 100%;
  }

  .section-img {
    width: 32%;
    height: 53vw;
  }

  .header-fixed {
    padding: 17px 30px;
  }

  .header-fixed .logo {
    width: 40px;
  }

  .section {
    /*padding: 30px 0 0 0;*/
  }

  .button_black {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 220px;
    height: 50px;
    margin: 30px auto 0 auto;
    padding: 0;
    font-size: 20px;
    color: #000;
    background: transparent;
    border: 2px solid #000;
    -webkit-border-radius: 30px;
    border-radius: 30px;
  }

  .button_black:hover {
    border: 2px solid #FFF;
  }

  .section-slider-wrapper {
    width: 100%;
    margin: 30px 0;
  }

  .section-slider-item {
    height: 515px;
  }

  .section-slider-item_text {
    top: 30px;
    left: 30px;
    font-size: 14px;
  }

  .section-slider-arrows {
    right: 0;
    left: inherit;
    bottom: -15px;
  }

  .section-slider-arrow {
    width: 60px;
    height: 50px;
  }

  .section-slider-arrow i {
    font-size: 20px;
  }

  .button-video img {
    width: 50px;
    margin: 0 10px 0 0;
  }

  .button-video {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    bottom: -87px;
    width: 100%;
    font-size: 20px;
  }

  .section_title {
    position: relative;
    margin: 0 0 20px 0;
    font-size: 50px;
  }

  .section_title span {
    display: none;
  }

  .section_title:after {
    content: "";
    display: block;
    position: absolute;
    bottom: -9px;
    width: 100px;
    height: 3px;
    background: #4FD4FF;
  }

  .section-news-and-stock .section_link__all {
    display: none;
  }

  .section-news-and-stock-mobile {
    /*padding: 70px 0 0 0;*/
  }

  .section-news {
    display: block;
  }

  .section-new {
    display: block;
    width: 100%;
    margin-right: 0;
    float: none;
  }

  .section-new-info {
    width: 100%;
    height: 100%;
  }

  .section-new_title,
  .section_link__all {
    margin: 0 0 5px 0;
    font-size: 20px;
    overflow: unset;
    height: auto;
  }

  .section-new-info p {
    max-height: 50px;
    overflow: hidden;
    font-size: 10px;
    color: #acacac;
  }

  .section-new_link {
    display: block;
    font-size: 15px;
  }

  /*
  .section-new:last-child {
    display: none;
  }
*/
  .section-new-date {
    display: none;
  }

  .section-new_hashtag {
    font-size: 25px;
  }

  .section-news-and-stock .button_black {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }

  .section-new-img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 325px;
    margin: 20px 0 0 0;
  }

  .mobile-new-date {
    display: block;
    position: absolute;
    bottom: 10px;
    left: 10px;
    font-family: "acrom-Bold";
    font-size: 25px;
    color: #FFF;
  }

  .map {
    height: 390px;
  }

  .map-wrapper {
    margin: 110px 0 0 0;
  }

  .map-contact {
    position: absolute;
    top: -85px;
    left: -webkit-calc(50% - 160px);
    left: calc(50% - 160px);
    width: 320px;
    height: auto;
    padding: 5px 20px;
    -webkit-box-shadow: 0px 2px 15px -5px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 2px 15px -5px rgba(0, 0, 0, 0.5);
  }

  .map-contact-text,
  .map-contact_title {
    display: none;
  }

  .map-contact_item img {
    width: 27px;
    margin: 0 20px 0 0;
  }

  .map-contact_item__text {
    font-size: 16px;
  }

  .map-contact_item {
    margin: 0 0 20px 0;
  }

  .mobile-town_name {
    display: block;
    font-size: 30px;
    color: #4FD4FF;
  }

  #map {
    display: none;
  }

  #map-mobile {
    display: block;
  }

  footer {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    /*padding: 10px 0;*/
  }

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

  .footer-right {
    display: none;
  }

  .dev_link {
    font-size: 16px;
  }

  .dev_link img {
    width: 65px;
  }

  .copyright {
    font-size: 16px;
  }

  /* О нас 768 */
  .header-fixed-page {
    padding: 11px 30px;
  }

  .header-fixed-page .logo {
    width: 55px;
  }

  .section-main {
    padding: 90px 30px 30px 30px;
  }

  .inner-section_title {
    margin: 0 0 45px 0;
    font-family: "acrom-Bold";
    font-size: 25px;
    text-align: left;
  }

  .inner-section {
    margin: 0 0 80px 0;
    padding: 0 28px;
  }

  .models-item {
    width: 100%;
    margin: 0 0 0 0;
    text-align: center;
  }

  .models-item_title {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: auto;
    margin: 0 0 30px 0;
    padding: 0 0 0 0;
    font-size: 25px;
  }

  .models-item_title:after {
    width: 95px;
    height: 2px;
    margin: 17px 0 0 0;
  }

  .models-item_text {
    padding: 0 10px;
    font-size: 15px;
  }

  .models-arrows {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    bottom: 15%;
    left: 0;
    width: 100%;
  }

  .models-arrows .fa-chevron-left {
    position: absolute;
    left: 25px;
  }

  .models-arrows .fa-chevron-right {
    position: absolute;
    right: 25px;
  }

  .section-half-slider {
    display: block;
    margin: 0 0 80px 0;
    padding: 0 30px;
    overflow: inherit;
  }

  .section-half-slider_title {
    margin: 0 0 40px 0;
    font-size: 25px;
  }

  .section-half-slider_title:after {
    content: "";
    display: block;
    position: absolute;
    bottom: -20px;
    width: 100px;
    height: 3px;
    background: #4FD4FF;
  }

  .section-half-slider_text {
    margin: 0 0 20px 0;
    font-size: 20px;
  }

  .section-half-slider-content {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .half-slider {
    width: 100%;
  }

  .half-slider-item {
    height: 515px;
    margin: 0 0 0 0;
  }

  .inner-section-flex {
    display: block;
  }

  .inner-section-content_title {
    margin: 0 0 15px 0;
    font-size: 25px;
  }

  /*iframe {
    width: 100%;
    height: 200px;
    margin: 0 0 30px 0; }*/
  .trademarks-logo img {
    width: 90px;
    margin: 0 15px 20px 0;
  }

  .inner-section-content_text {
    font-size: 20px;
  }

  .half-slider-info_open {
    top: 10px;
    left: 10px;
    width: 56px;
    height: 50px !important;
  }

  .half-slider-info_text {
    font-size: 15px;
  }

  .half-slider-info_close {
    top: 10px;
    right: 10px;
    width: 25px;
    height: 25px !important;
  }

  /* Новости 768 */
  .page-navigation_top {
    display: none;
  }

  .news {
    display: block;
  }

  .new {
    position: relative;
    width: 100%;
    height: 320px;
    margin: 0 0 220px 0;
  }

  .new-info {
    display: block;
    bottom: -155px;
    left: -webkit-calc(50% - 150px);
    left: calc(50% - 150px);
    width: 300px;
    height: 230px;
    padding: 20px;
    background: #FFF;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    -webkit-box-shadow: 0px 2px 10px -5px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 2px 10px -5px rgba(0, 0, 0, 0.5);
  }

  .new-info_title {
    font-size: 20px;
  }

  .new-info_hashtag {
    font-size: 20px;
  }

  .new-info-date_number {
    font-size: 25px;
  }

  .new-info-date_year {
    font-size: 20px;
  }

  .new-info-date:after {
    width: 95px;
    height: 2px;
  }

  .new-info-left {
    margin: 0 0 15px 0;
  }

  .page-navigation_link {
    margin: 0 10px;
    font-size: 20px;
  }

  .page-navigation_link__active {
    font-size: 50px;
  }

  .page-navigation_link__active:after {
    width: 50px;
    height: 2px;
    margin: 0 0 0 10px;
  }

  .news-arrow {
    font-size: 20px;
  }

  .page-navigation,
  .article-navigation {
    width: 125px;
    height: 45px;
    margin: 0 20px;
  }

  .page-navigation .slick-current,
  .article-navigation .slick-current {
    font-size: 50px;
  }

  /* Статья 768 */
  .section-article {
    padding: 100px 30px 0 30px;
  }

  .to_back {
    font-size: 14px;
  }

  .to_back i {
    font-size: 14px;
  }

  .article-section {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .article_title {
    font-size: 40px;
  }

  .article-content_text {
    margin: 0 0 0 0;
    font-size: 20px;
  }

  .article_title {
    font-family: 'acrom-Medium';
    font-size: 40px;
    line-height: 50px;
  }

  .article_hashtag {
    margin: 10px 0;
  }

  /* Серии мебели 768 */
  .series {
    display: block;
  }

  .series-slider {
    width: 100%;
    height: 325px;
  }

  .series-slider-dots {
    top: 20px;
    right: 15px;
  }

  .series-slider-dots_item {
    width: 11px;
    height: 11px;
    margin: 0 3px;
    border: 2px solid #FFF;
  }

  .series-slider-content_title {
    margin: 0 0 20px 0;
    font-size: 40px;
    text-align: center;
  }

  .series-slider-content_text {
    margin: 0 0 10px 0;
    padding: 0 10px;
    font-size: 18px;
    text-align: center;
  }

  .series-slider-wrapper {
    margin: 0 0 25px 0;
  }

  .series-slider-wrapper i {
    display: none;
  }

  .mouse-icon {
    display: flex;
    justify-content: center;
    position: absolute;
    width: 100%;
    margin: -50px 0 0 0;
  }

  .mouse-icon img {
    width: 30px;
  }

  /* Контакты 768 */
  .contacts-section_title {
    display: none;
  }

  .contacts-map-wrapper {
    padding: 290px 0 0 0;
  }

  .mobile-section {
    position: absolute;
    top: 77px;
    left: 30px;
  }

  .contacts-section_title__mobile {
    display: block;
  }

  .contacts-map-contact {
    top: 210px;
    background: #FFF;
  }

  .adress {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .adress-item {
    width: 100%;
    margin: 0 0 30px 0;
  }

  .adress-item_title {
    margin: 0 0 30px 0;
    font-size: 30px;
  }

  .adress-item .map-contact_item__text {
    font-size: 20px;
  }

  .adress-item_title:after {
    bottom: -11px;
    width: 95px;
    height: 2px;
  }

  .map-contact-text_mobile {
    display: block;
  }

  .map-contact-text_mobile p {
    display: block;
  }

  .map-contact-text {
    margin: 30px 0 20px 0;
    padding: 0 25px;
    font-size: 20px;
    color: #000;
  }

  .map-contact-text br {
    display: none;
  }

  .buy {
    padding: 100px 30px 0 30px;
  }

  .buy_title {
    display: block;
    font-size: 45px;
  }

  .tabs-head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .tabs-head_button {
    margin: 0 0 15px 0;
    font-size: 30px;
    text-align: left;
  }

  .tabs-head_button__active:after {
    width: 100px;
    height: 2px;
  }

  .tabs-sidebar a,
  .tabs-sidebar span {
    margin: 0 0 10px 0;
    font-size: 20px;
  }

  .tabs-sidebar {
    width: 100%;
    margin: 0 0 0 0;
    padding: 0 0 0 0;
  }

  .tabs-item {
    display: flex;
    flex-direction: column;
    margin: 0 0 20px 0;
  }

  .tabs-img {
    /*width: 100%;
    height: 500px;*/
    /*width: 300px;*/
  }

  /* серия мебели внутр */
  .part-slider-dots {
    display: none;
  }

  .to-all_series {
    top: 100px;
    left: 30px;
    font-size: 14px;
  }

  .to-all_series i {
    margin: 0 10px 0 0;
  }

  .part-slider-item_title {
    margin: 0;
    font-size: 40px;
  }

  .part-slider-item_title:after {
    display: none;
  }

  .part-slider-item_tagtitle {
    margin: 0 0 25px 0;
  }

  .part-slider-item_tagtitle:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -15px;
    width: 95px;
    height: 2px;
    background: #FFF;
  }

  .part-slider-overlay .home-slider-item_text {
    display: block;
    font-size: 12px;
  }

  .part-slider-arrows {
    /*bottom: 95px;*/
    /*top: 90%;*/
    left: unset;
    right: 0;
    top: 70px;
    /*    left: 30px;*/
    -webkit-box-shadow: none;
    box-shadow: none;
    transform: none;
  }

  .part-slider-arrows i {
    width: auto;
    height: auto;
    margin: 0 30px 0 0;
    background: transparent;
    font-size: 14px;
    color: #FFF;
  }

  .part-main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    /*padding: 30px 30px 250px 30px;*/
    padding: 1px 1px 1px 1px;
  }

  .part-sidebar {
    width: 100%;
  }

  .part-sidebar_title {
    font-size: 20px;
  }

  .part-sidebar-title-wrapper {
    padding: 2px;
  }

  .colors_item {
    width: 15.5vw;
    height: 15.5vw;
    margin: 1px;
  }

  .colors_item img {
    width: 13vw;
    height: 13vw;
  }

  .part-sidebar-content {
    padding: 0 0 0 0;
  }

  .filters {
    padding: 10px;
  }

  .filters_link {
    width: auto;
    margin: 0 10px;
    padding: 2px 0;
    font-size: 12px;
  }

  .part-content {
    width: 100%;
  }

  .colors_item:hover:after {
    left: 0;
    top: -20px;
    padding: 3px;
    font-size: 12px;
  }

  .part-item {
    width: 100%;
    margin: 0 0 3vw 0;
  }

  .part-item-img {
    height: 300px;
    box-shadow: 0px 0px 10px -4px rgba(0, 0, 0, 0.5);
  }

  .part-item-img img {
    width: 170px;
    height: 170px;
  }

  .part-item-icon {
    width: 48px;
    height: 48px;
  }

  .part-item-icon img {
    width: 20px;
    height: 20px;
  }

  .part-item_num {
    right: 10px;
    bottom: 10px;
    font-size: 14px;
  }

  .part-item_title {
    margin: 0 0 0 0;
    font-size: 20px;
  }

  .part-item_proportions {
    margin: 0 0 0 40px;
    font-size: 14px;
  }

  .part-item_price {
    display: block;
    margin: 10px 0 0 0;
    font-family: "acrom-Regular";
    font-size: 20px;
    font-weight: 800;
    color: #4FD4FF;
  }

  /* дилерам */
  .cloud {
    flex-direction: column;
  }

  .cloud-sidebar {
    width: 100%;
    margin: 0 0 30px 0;
    padding: 0 0 0 0;
  }

  .cloud-items {
    display: block;
    width: 100%;
  }

  .aside_title {
    margin: 0 0 35px 0;
    font-size: 30px;
  }

  .aside_tagtitle {
    font-size: 20px;
  }

  .aside_title:after {
    bottom: -18px;
    width: 100px;
    height: 3px;
  }

  .cloud-item {
    width: 255px;
    margin: 0 auto 25px auto;
  }

  .cloud-item-img {
    height: 255px;
    margin: 0 0 25px 0;
  }

  .cloud-item_title {
    font-size: 15px;
  }

  .part-sidebar {
    flex-direction: column;
  }

  .part-sidebar-block {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .part-sidebar-title-wrapper {
    width: 100%;
  }

  /* cookie */
  .cookie {
    flex-direction: column;
    align-items: center;
    padding: 15px;
  }

  .cookie__button {
    background: #4FD4FF !important;
  }

  .cookie__button:hover {
    background: #4FD4FF !important;
  }

  .cookie__text {
    font-size: 15px;
    text-align: center;
  }

  /*.dilers {*/
  /*  -webkit-box-orient: vertical;*/
  /*  -webkit-box-direction: normal;*/
  /*  -webkit-flex-direction: column;*/
  /*      -ms-flex-direction: column;*/
  /*          flex-direction: column; }*/
  /*.dilers-form {*/
  /*  margin: 0 0 43px 0; }*/
  /*.dilers_title {*/
  /*  position: relative;*/
  /*  margin: 0 0 20px 0;*/
  /*  font-size: 25px; }*/
  /*.dilers-partners {*/
  /*  width: 100%; }*/
  /*.dilers-enter {*/
  /*  width: 100%;*/
  /*  margin: 0 0 0 0; }*/
  /*.required_inputs {*/
  /*  display: block;*/
  /*  position: static;*/
  /*  right: 0;*/
  /*  margin: 20px 0 0 0;*/
  /*  font-size: 10px; }*/
  /*.dilers-form_input {*/
  /*  width: 100%;*/
  /*  margin: 0 0 12px 0;*/
  /*  padding: 20px;*/
  /*  font-family: "acrom-Regular";*/
  /*  font-size: 12px;*/
  /*  -webkit-border-radius: 5px;*/
  /*          border-radius: 5px; }*/
  /*.dilers-form-item {*/
  /*  display: block; }*/
  /*.dilers-agree_text {*/
  /*  font-size: 10px; }*/
  /*.dilers-agree_text:before {*/
  /*        -ms-flex-negative: 0;*/
  /*      flex-shrink: 0;*/
  /*  width: 25px;*/
  /*  height: 25px;*/
  /*  margin: 0 20px 0 0;*/
  /*  -webkit-border-radius: 5px;*/
  /*          border-radius: 5px; }*/
  /*.dilers-form_input__checkbox:checked + .dilers-agree_text:before {*/
  /*  -webkit-flex-shrink: 0;*/
  /*      -ms-flex-negative: 0;*/
  /*          flex-shrink: 0; }*/
  /*.dilers-form-item-submit {*/
  /*  -webkit-box-orient: vertical;*/
  /*  -webkit-box-direction: normal;*/
  /*  -webkit-flex-direction: column;*/
  /*      -ms-flex-direction: column;*/
  /*          flex-direction: column;*/
  /*  margin: 0; }*/
  /*.dilers-form-links {*/
  /*  margin: 30px 0 0 0; }*/
  /*.dilers-form_link {*/
  /*  margin: 0 0 10px 0;*/
  /*  font-size: 15px;*/
  /*  color: #000;*/
  /*  border-bottom: 2px solid #000; } */
}

@media(max-width: 414px) {
  .section-content_title {
    font-size: 30px;
  }

  .home-slider-item_title {
    font-size: 45px;
    line-height: 45px;
  }

  .filters {
    padding: 10px 10px 0 10px;
  }

  .filters_item {
    margin: 0 0 10px 0;
  }

  .new-info {
    left: 0;
    width: 100%;
    padding: 5px;
    -webkit-box-shadow: none;
    box-shadow: none;
  }

  .article_title {
    font-size: 30px;
    line-height: 40px;
  }

  /*.mobile-menu_link {
    font-size: 13px;
  }*/
  .mobile-header {
    /*margin: 0 0 30px 0;*/
  }

  .logo-wrapper img {
    /* width: 60px !important;*/
  }
}

/* the end @media(max-width: 414px)*/

/* Muuri */

.muuri {
  position: relative;
  margin-bottom: 0.3vw;
}

.item {
  display: block;
  position: absolute;
  width: 12vw;
  height: 23vw;
  margin-left: 0.3vw;
  margin-top: 0.3vw;
  padding: 0.3vw;
  z-index: 1;
  background: transparent;
  color: black;
  border-radius: 0px;
  border: 3px solid #f7f7f7;
  text-align: center;
  font-family: "acrom-Regular";
  font-size: 0.8vw;
}

@media (max-width: 768px) {
  .item {
    display: block;
    position: absolute;
    width: 48vw;
    height: 80vw;
    margin-left: 0.5vw;
    margin-top: 0.5vw;
    padding: 0.3vw;
    z-index: 1;
    background: transparent;
    color: black;
    border-radius: 0px;
    border: 3px solid #f7f7f7;
    text-align: center;
    font-family: "acrom-Regular";
    font-size: 3vw;
  }
}

.item u {
  cursor: pointer;
}

.item:hover {
  border: 3px solid #64bfe0;
}

.item.muuri-item-dragging {
  z-index: 3;
}

.item.muuri-item-releasing {
  z-index: 2;
}

.item.muuri-item-hidden {
  z-index: 0;
}

.item-content {
  position: relative;
  width: 100%;
  height: 100%;
}

.thumb {
  width: 100%;
}

.loading {
  width: 50%;
}

.fancybox-caption {
  text-align: left;
}

/* about */

.color {
  color: #4FD4FF;
}

.longread {
  /*font-size: 1.05vw;*/
  font-family: "acrom-Regular";
}

.longread p {
  padding-bottom: 1em;
  text-align: justify;
}

.tabs-content {
  height: 0px;
  overflow-y: hidden;
}

.tabs-content-active {
  height: auto;
}

.link {
  cursor: pointer;
  /*text-shadow: black 1px 1px 2px;*/
  text-decoration: underline;
}

.link:hover {
  color: #4FD4FF;
  text-decoration: underline;
}

.phone_white {
  display: none;
}

.nav {
  display: flex;
  /*justify-content: space-between;*/
}

.nav img {
  margin-right: 1vw;
}

.temp {
  padding-top: 6vw;
  font-size: 1.4vw;
  font-weight: 800;
  text-align: center;
}

.anchor {
  display: block;
  position: relative;
  top: -5vw;
  visibility: hidden;
}

@media (max-width: 768px) {
  .anchor {
    display: block;
    position: relative;
    top: -70px;
    visibility: hidden;
  }
}

/* костыли для фреймов */

html.framed .header-fixed-page,
html.framed .mobile-navigation,
html.framed .to-all_series,
html.framed .decor1,
html.framed .decor2,
html.framed .to-top,
html.framed .order,
html.framed .b24-widget-button-wrapper,
html.framed #cats,
html.framed footer {
  display: none;
}

html.framed .home-slider-item img {
  height: auto;
  width: 100%;
}

html.framed .part-sidebar {
  position: static;
}

html.framed .part-sidebar-block {
  width: auto;
}

html.framed .item {
  width: 24.5vw;
  height: 34vw;
  font-size: 1.2vw;
}

html.framed .home-slider-item_text {
  font-size: 1.4vw;
}

html.framed .home-slider-item_tagtitle {
  font-size: 1.8vw;
}


html.framed .delimiter {
  width: 98.85vw;
  height: auto;
  background: #4FD4FF;
  color: white;
  font-family: "acrom-Bold";
  font-size: 1.3vw;
  border: 0;
}

.order {
  text-align: center;
  /*width: fit-content;
  margin-left: auto;
  margin-right: auto;*/
}

.bx-imopenlines-form-wrapper {
  width: 100% !important;
}

.b24-form-header {
  text-align: left !important;
}

.b24-widget-button-position-bottom-right {
  bottom: 90px !important;
  right: 55px !important;
}

@media (max-width: 768px) {
  .b24-widget-button-position-bottom-right {
    bottom: 5px !important;
    right: 5px !important;
  }
}

.delimiter {
  width: 98.1vw;
  height: auto;
  background: #4FD4FF;
  color: white;
  font-family: "acrom-Bold";
  font-size: 1.3vw;
  border: 0;
}

@media (max-width: 768px) {
  .delimiter {
    font-size: 20px;
  }
}

.delimiter:hover {
  border: 0;
}

.tg {
  width: auto !important;
  height: 3.4vw;
  padding-top: .5vw;
}

@media (max-width: 768px) {
  .tg {
    width: 50vw !important;
    height: auto;
    padding-top: 20px;
  }
}

#vk {
  width: auto !important;
  height: 3.4vw;
  padding-top: .5vw;
  position: absolute;
}

#anus {
  position: fixed;
  bottom: 0;
  width: 100%;
}

@media (max-width: 768px) {
  #anus {
    position: fixed;
    bottom: 0;
    width: 400%;
  }
}

.slick-list.draggable {
  user-select: text;
}

.reviews {
  display: inline-block;
}

.review {
  margin-bottom: 2vw;
}

.review-image {
  height: 10vw;
  width: 10vw;
  object-fit: cover;
  margin-left: 0.3vw;
  margin-top: 0.3vw;
  border: 3px solid #f7f7f7;
}

.review-image:hover {
  border: 3px solid #64bfe0;
}

@media (max-width: 768px) {
  .review-image {
    height: 40vw;
    width: 40vw;
  }
}

.yandex-form {
  background-color: white;
  border-radius: 5px;
}


.cookies {
  position: fixed;
  bottom: 0;
  background: gray;
  width: 100%;
  opacity: 0.8;
  padding: 1vh;
}

.cookies p {
  color: white;
  display: inline;
}

.cookies a {
  color: #4FD4FF;
}

.cookies span {
  color: #4FD4FF;
  left: 1vw;
  font-weight: bold;
  cursor: pointer;
}


.fancyColors {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.fancyColorsItem {
  display: flex;
  position: relative;
  margin-right: 1vw;
  cursor: pointer;
}

.fancyColorsItem img {
  width: 6vw;
  height: 6vw;
}

.fancyColorsItem:hover img {
  opacity: .5;
}

.fancyColorsItem:hover:after {
  content: attr(data-title);
  align-content: center;
  text-align: center;
  vertical-align: middle;
  position: absolute;
  width: 100%;
  height: 100%;
  color: #eee;
  font-weight: bold;
  font-size: 1vw;
}

.fancyName {
  font-weight: bold;
  text-align: center;
  font-size: 1.6vw;
}

@media (max-width: 768px) {
  .fancyColorsItem img {
    width: 20vw;
    height: 20vw;
  }
  .fancyName {
    font-size: 5vw;
  }
  .fancyColorsItem:hover:after {
    font-size: 5vw;
  }
  .fancybox-content {
    transform: none !important;
  }
}

.fancybox-bg {
  background: gray;
}