@font-face {
  font-family: "Segoe UI";
  src: url("../fonts/SegoeUI.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "Druk Text Wide Cy TT Heavy";
  src: url("../fonts/DrukWideCyTTHeavy.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

html {
  width: 100%;
  height: 100%;
}

body {
  position: relative;
  background-color: #15161c;
}

a:hover {
  color: #fff;
  text-decoration: none;
}

p {
  margin: 0;
}
/*
.header {
  width: 100%;
  max-width: 1136px;
  padding-top: 4.25vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  position: fixed;
  top: 0;
  left: calc(50% - 1136px / 2);
  z-index: 10;
  border: 1px solid red ;
}
*/
.header {
  width: 100%;
  padding-top: 4.25vh;
  display: flex;
  color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}

.header__container {
  width: 100%;
  max-width: 1136px;
  margin-left: calc(50% - 1136px / 2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header_filled {
  padding: 2vh 0;
  background-color: #15161c;
  z-index: 14;
}

.header__logo-container {
  margin-left: 16px;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #fff;
  z-index: 10;
}

.header__logo {
  width: 55px;
  height: 55px;
  background-image: url("../images/logo.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
}

.header__logo-glow {
  width: 486px;
  height: 486px;
  position: absolute;
  top: -162px;
  left: -204px;
  background-image: url("../images/logo-glow.svg");
  background-size: contain;
  background-position: center;
  z-index: 2;
}

.header__name-container {
  margin-left: 11px;
  display: flex;
  flex-direction: column;
  font-family: "Segoe UI";
  font-style: normal;
  font-weight: 400;
}

.header__name {
  font-size: 30px;
  line-height: 35px;
}

.header__motto {
  margin: 0;
  font-size: 12px;
  line-height: 15px;
}

.header__nav-bar {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 18px;
}

.header__nav-list {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  list-style-type: none;
}

.header__nav-item_active {
  padding: 0 11px;
  height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  background: rgba(121, 0, 255, 0.2);
  border: 1px solid #7900ff;
  border-radius: 8px;
}

.header__nav-link {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 18px;
  color: #fff;
  text-decoration: none;
}

.header__menu-button {
  width: 74px;
  height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  background: rgba(121, 0, 255, 0.2);
  border: 1px solid #7900ff;
  border-radius: 8px;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  color: #fff;
  cursor: pointer;
}

.header__menu-icon {
  width: 10px;
  height: 10px;
  margin-left: 5px;
  background-image: url("../images/icon_menu.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

.header__tel-container {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #fff;
}

.header__tel-icon {
  width: 26px;
  height: 26px;
  background-image: url("../images/icon_tel.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.header__tel {
  margin-left: 10px;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: bold;
  font-size: 20px;
  line-height: 22px;
}

.burger-menu {
  display: none;
}

.burger-menu__icon {
  width: 24px;
  height: 24px;
  background-image: url("../images/icon_burger-menu.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer;
}

.burger-menu__nav-bar {
  position: absolute;
  top: 0;
  right: 0;
  width: 69.6vw;
  height: 100vh;
  background-image: url("../images/bg-mobile-burger-menu.svg");
  background-size: cover;
  z-index: 20;
  transform: translateX(0);
  transition: transform 0.3s ease-in-out;
}

.burger-menu__nav-bar_hidden {
  transform: translateX(100%);
}

.burger-menu__layover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: black;
  opacity: 0.5;
  z-index: 15;
  transform: translateX(0);
  transition: transform 0.3s ease-in-out;
}

.burger-menu__layover_hidden {
  transform: translateX(100%);
}

.burger-menu__title {
  margin: 8.7vh auto 0 15px;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 800;
  font-size: 25px;
  line-height: 31px;
}

.burger-menu__nav-list {
  margin: 40px 0 0 15px;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 25px;
  list-style-type: none;
}

.burger-menu__nav-link {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #fff;
  text-decoration: none;
}

.burger-menu__close-button {
  position: absolute;
  top: 7.5vh;
  right: 15px;
  width: 20px;
  height: 20px;
  background-image: url("../images/icon_close.svg");
  cursor: pointer;
}

.sidebar {
  position: fixed;
  left: calc((100vw - 1136px) / 2);
  top: 26vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 15;
}

.sidebar_type_short {
  top: 35vh;
}

.sidebar__pagination {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sidebar__pagination-counter {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  color: #ffffff;
  text-shadow: 0px 4px 84px rgba(0, 0, 0, 0.65);
}

.sidebar__pagination-container {
  margin-top: 21px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sidebar__pagination-circle {
  margin-top: 1.9vh;
  width: 20px;
  height: 20px;
  background-image: url("../images/icon_pagination.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sidebar__pagination-circle:hover {
  transform: scale(1.1);
}

.sidebar__pagination-circle_active {
  background-image: url("../images/icon_pagination_active.svg");
}

.sidebar__pagination-circle:first-of-type {
  margin-top: 0;
}

.sidebar__pagination-arrow {
  margin-top: 1.9vh;
  width: 8px;
  height: 28.5px;
  background-image: url("../images/icon_arrow-down.svg");
  cursor: pointer;
  transition: all 0.3s ease;
}

.sidebar__pagination-arrow:hover {
  transform: scale(1.1);
}

.sidebar__social-links {
  margin-top: 9vh;
  display: flex;
  flex-direction: column;
}

.sidebar__social-links_padding_small {
  margin-top: 4vh;
}

.sidebar__social-links_place_burger-menu {
  margin: 7vh auto 0;
  width: calc(100% - 15px * 2);
  flex-direction: row;
  gap: 15%;
}

.sidebar__social-link {
  margin-top: 2.4vh;
  width: 30px;
  height: 18px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer;
}

.sidebar__social-link_type_telegram {
  background-image: url("../images/icon_telegram.svg");
}

.sidebar__social-link_type_vkontakte {
  background-image: url("../images/icon_vk.svg");
}

.sidebar__social-link_type_youtube {
  background-image: url("../images/icon_youtube.svg");
}

.sidebar__social-link_type_phone {
  background-image: url("../images/icon_tel.svg");
}

.sidebar__social-link:first-of-type {
  margin-top: 0;
}

.section {
  width: 100%;
  min-height: 100vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  font-family: "Montserrat";
  font-style: normal;
  color: #fff;
  position: relative;
}

.section_type_main {
  background-image: url("../images/bg_main.png");
}

.section_type_smart-kitchen {
  background-image: url("../images/bg_smart-kitchen.png");
}

.section_type_smart-furniture {
  background-image: url("../images/bg_smart-furniture.png");
}

.section_type_smart-home {
  background-image: url("../images/bg_smart-home.png");
}

.section_type_smart-services {
  background-image: url("../images/bg_smart-services.png");
}

.section_type_video {
  background-image: url("../images/bg_video.png");
  background-position: right;
}

.section_type_photo-gallery {
  background-image: url("../images/bg_photo-gallery.png");
}

.section_type_form {
  background-image: url("../images/bg_form.svg");
}

.section_type_form-wgirl {
  background-image: url("../images/bg_form-wgirl.png");
}

.section_type_points {
  background-image: url("../images/bg_points.png");
}

.section_type_video-gallery {
  background-image: url("../images/bg_video-gallery.png");
}

.section_type_advantages {
  background-image: url("../images/bg_video-gallery.png");
}

.section_type_services {
  background-image: url("../images/bg_photo-gallery.png");
}

.section_type_design {
  background-image: url("../images/bg_design.png");
}

.section_type_rennovation {
  background-image: url("../images/bg_rennovation.png");
}

.section_type_automatization {
  background-image: url("../images/bg_automatization.png");
}

.section_type_about-us {
  background-image: url("../images/bg_about-us.png");
}

.section_type_collumns {
  background-image: url("../images/bg_photo-gallery.png");
}

.section_type_basic {
  background-image: url("../images/bg_basic.svg");
}

.section_type_blog {
  background-image: url("../images/bg-ideas.jpg");
}

.section_type_blog-post {
  background-image: url("../images/blog-post-img.jpg");
}

.section_type_not-found {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section__banner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.section__banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.5;
  z-index: 1;
}

.section__title {
  padding-top: 33vh;
  font-family: "Druk Text Wide Cy TT Heavy";
  font-style: normal;
  font-weight: 800;
  font-size: 59px;
  line-height: 120%;
  text-align: center;
  background: linear-gradient(
    103.22deg,
    #ffffff 22.36%,
    #c8c8c8 35.48%,
    #ffffff 52.4%,
    #bdbdbd 78.35%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  text-shadow: 0px 0px 40px rgba(255, 255, 255, 0.35);
  z-index: 3;
  position: relative;
}

.section__title_type_main {
  margin: 0;
  margin-left: calc(((100vw - 1136px + 32px) / 2) + 32px);
  max-width: 1060px;
}

.section__title_type_secondary {
  margin: 0 auto 0 0;
  margin-left: calc((100vw - 1136px) / 2 + 6.1vw);
  max-width: 635px;
  text-align: left;
}

.section__title_type_furniture {
  padding-top: 26vh;
  margin: 0 auto 49px 0;
  margin-left: calc((100vw - 1136px) / 2 + 6.1vw);
  max-width: 635px;
  text-align: left;
}

.section__title_type_services {
  padding-top: 20vh;
  margin: 0 auto 49px 0;
  margin-left: calc((100vw - 1136px) / 2 + 6.1vw);
  max-width: 635px;
  text-align: left;
}

.section__title_type_blog-post {
  margin: 0;
  margin-left: calc(((100vw - 1136px + 32px) / 2) + 32px);
  max-width: 1060px;
  padding-top: 35vh;
  font-size: 50px;
}

.section__subtitle {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 30px;
  color: #ffffff;
  text-shadow: 0px 4px 84px rgba(0, 0, 0, 0.65);
}

.section__subtitle_type_main {
  margin: 80px 0 0;
  max-width: 1060px;
  margin-left: calc((100vw - 1060px) / 2);
  line-height: 24px;
  text-align: center;
}

.section__subtitle_type_centered {
  max-width: 800px;
  margin-left: calc((100vw - 800px) / 2);
  line-height: 120%;
}

.section__subtitle_type_secondary {
  margin: 17px auto 0 0;
  margin-left: calc((100vw - 1136px) / 2 + 6.1vw);
  max-width: 431px;
  line-height: 35px;
  text-align: left;
}

.section__more-link {
  margin: 9.2vh auto 0 0;
  margin-left: calc((100vw - 1136px) / 2 + 6.1vw);
  padding: 25px 50px;
  max-width: max-content;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(121, 0, 255, 0.2);
  border: 1px solid #7900ff;
  border-radius: 20px;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 91.6%;
  text-transform: uppercase;
  color: #ffffff;
  position: relative;
  z-index: 9;
  text-decoration: none;
  transition: all 0.3s ease;
}

.section__more-link:hover {
  transform: scale(1.05);
}

.section__more-link:focus {
  outline: none;
  transform: scale(1.05);
}

.section__heading {
  margin: 0 0 0 0;
  margin-left: calc((100vw - 1136px) / 2 + 82px);
  padding-top: 18.8vh;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: bold;
  font-size: 24px;
  line-height: 30px;
  color: #ffffff;
  text-transform: uppercase;
  text-shadow: 0px 4px 84px rgba(0, 0, 0, 0.65);
  position: relative;
  z-index: 1;
}

.section__heading_type_short-quote {
  margin-left: calc((100vw - 1136px) / 2 + 82px);
  max-width: 617px;
}

.section__heading_type_short-quote::before {
  content: "";
  position: absolute;
  top: 17vh;
  left: -31px;
  width: 53px;
  height: 45px;
  background-image: url("../images/icon_quote-black.svg");
  z-index: -1;
}

.section__heading_type_short {
  max-width: 617px;
}

.section__heading_type_video {
  margin: 0;
  margin-left: calc((100% - 98vh) / 2);
  max-width: 90vh;
}

.section__heading_type_quote {
  font-weight: 400;
  max-width: 728px;
  text-transform: none;
}

.section__heading_type_quote::before {
  content: "";
  position: absolute;
  top: 17vh;
  left: -31px;
  width: 53px;
  height: 45px;
  background-image: url("../images/icon_quote.svg");
  z-index: -1;
}

.section__heading_type_mobile-only {
  display: none;
}

.section__heading_type_not-found {
  margin: 0 auto;
  padding-top: 30vh;
}

.section__heading_quote-size_big {
  max-width: unset;
}

.section__heading-span {
  color: #9c43ff;
}

.section__video-player {
  margin: 23px auto 0;
  /*margin-left: calc((100vw - 1136px) / 2 + 82px);*/
  width: 98.21vh;
  height: 55vh;
  border-radius: 24px;
  background-size: cover;
}

.section__video-frame {
  width: 100%;
  height: 100%;
  padding: 10px 16px 15px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(7px);
  border-radius: 10px;
  border: 1px solid #595959;
}

.section__points-container {
  width: 898px;
  margin: 70px 0 0 0;
  margin-left: calc((100vw - 1136px) / 2 + 101px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, min-content);
  column-gap: 60px;
  row-gap: 70px;
  color: #fff;
}

.section__points-tip {
  width: 898px;
  margin-top: 20px;
  margin-left: calc((100vw - 1136px) / 2 + 101px);
  font-style: italic;
}

.section__point-item {
  padding: 0;
  display: flex;
  align-items: center;
  background: none;
  border: none;
  color: #fff;
}

.section__point-item:focus {
  outline: none;
}

.section__point-icon {
  min-width: 48px;
  min-height: 48px;
  margin-right: 22px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.section__point-icon_type_voice {
  background-image: url("../images/icon_point-voice.svg");
}

.section__point-icon_type_socket {
  background-image: url("../images/icon_point-socket.svg");
}

.section__point-icon_type_audio {
  background-image: url("../images/icon_point-audio.svg");
}

.section__point-icon_type_backlight {
  background-image: url("../images/icon_point-backlight.svg");
}

.section__point-icon_type_charger {
  background-image: url("../images/icon_point-charger.svg");
}

.section__point-icon_type_microcontroller {
  background-image: url("../images/icon_point-microcontroller.svg");
}

.section__point-icon_type_opening {
  background-image: url("../images/icon_point-opening.svg");
}

.section__point-icon_type_appliances {
  background-image: url("../images/icon_point-appliances.svg");
}

.section__point-icon_type_apron {
  background-image: url("../images/icon_point-apron.svg");
}

.section__point-heading {
  margin: 0;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 15px;
  text-shadow: 0px 4px 84px rgba(0, 0, 0, 0.65);
  text-align: left;
}

.section__small-text {
  margin: 12vh 0 0 0;
  margin-left: calc((100vw - 1136px) / 2 + 84px);
  width: calc(1136px - 84px);
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  text-align: justify;
  color: #563ba7;
}

.section__small-text_type_advantages {
  margin: 16px 0 0 0;
  margin-left: calc((100vw - 1136px) / 2 + 98px);
  width: calc(1136px - 98px);
}

.section__small-text_type_services {
  margin-top: 4vh;
}

.section__button-container {

}

.section__seo {
  margin: 8vh 0 0 0;
  margin-left: calc((100vw - 1136px) / 2 + 84px);
  width: calc(1136px - 84px);
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  color: #563ba7;
}

.section__seo-text {
  max-height: unset;
  overflow-y: hidden;
}

.section__seo-text_short {
  max-height: 95px;
}

.section__seo-more {
  display: block;
  padding-bottom: 5vh;
  margin: 2vh auto 0;
  width: fit-content;
  cursor: pointer;
}

.section__seo-more_hidden {
  display: none;
}

.section__seo-hide {
  display: block;
  padding-bottom: 5vh;
  margin: 2vh auto 0;
  width: fit-content;
  cursor: pointer;
}

.section__seo-hide_hidden {
  display: none;
}

.section__form-container {
  width: 775px;
  margin: 8.2vh 0 0 0;
  margin-left: calc((100vw - 1136px) / 2 + 84px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-items: flex-start;
}

.section__form-title {
  max-width: 500px;
  margin: 0;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: bold;
  font-size: 24px;
  line-height: 29px;
  text-transform: uppercase;
  color: #ffffff;
}

.section__form-text {
  max-width: 350px;
  margin: 22px 0 0;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  color: #ffffff;
}

.section__form-label {
  margin: 0;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  color: #ffffff;
  grid-column-end: span 2;
}

.section__form-checkbox {
  margin-right: 10px;
}

.section__form {
  width: 775px;
  margin-top: 6vh;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, min-content);
  column-gap: 24px;
  row-gap: 17px;
}

.section__input-container {
  width: 100%;
  height: 63px;
  position: relative;
  backdrop-filter: blur(15px);
}

.section__input-container:focus {
  backdrop-filter: none;
}

.section__input-icon {
  width: 24px;
  height: 24px;
  position: absolute;
  top: calc(50% - 24px / 2);
  left: 19px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.section__input-icon_type_name {
  background-image: url("../images/icon_input-name.svg");
}

.section__input-icon_type_phone {
  background-image: url("../images/icon_input-phone.svg");
}

.section__input-icon_type_email {
  background-image: url("../images/icon_input-email.svg");
}

.section__form-input {
  width: 100%;
  height: 100%;
  padding-left: 65px;
  border: none;
  background: rgba(34, 12, 61, 0.1);
  border: 1px solid #7900ff;
  border-radius: 10px;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 25px;
  color: #acacac;
  box-sizing: border-box;
}

.section__form-input:focus {
  outline: none;
  backdrop-filter: none;
}

.section__form-submit {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #4c0498;
  border: 1px solid #7900ff;
  box-shadow: 0px 14px 60px rgba(80, 0, 168, 0.8);
  border-radius: 10px;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 91.6%;
  text-transform: uppercase;
  color: #ffffff;
  transition: all 0.3s ease;
}

.section__form-submit:hover {
  transform: scale(1.05);
}

.section__form-submit:focus {
  outline: none;
  transform: scale(1.05);
}

.section__form-submit:disabled {
  cursor: auto;
  background: grey;
  border: 1px solid grey;
}

.section__form-submit:disabled:hover {
  transform: none;
}

.section__form-submit:disabled:focus {
  outline: none;
  transform: none;
}

.section__form-alert {
  margin-top: 2vh;
  grid-column-start: 1;
  grid-column-end: 3;
  grid-row-start: 4;
  width: 100%;
  background-color: #4c0498;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 30px;
  border-radius: 7px;
  text-align: center;
  color: #fff;
  box-shadow: 0px 14px 60px rgba(80, 0, 168, 0.8);
}

.section__form-captcha {
  grid-column-start: 1;
  grid-row-start: 2;
  width: 100%;
  display: flex;
  align-items: center;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  color: #ffffff;
}

.section__popup-button {
  margin-top: 15vh;
  width: 390px;
  height: 65px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #4c0498;
  border: 1px solid #7900ff;
  box-shadow: 0px 14px 60px rgba(80, 0, 168, 0.8);
  border-radius: 10px;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 91.6%;
  text-transform: uppercase;
  color: #ffffff;
  transition: all 0.3s ease;
  cursor: pointer;
}

.section__popup-button:hover {
  transform: scale(1.05);
}

.section__popup-button:focus {
  outline: none;
  transform: scale(1.05);
}

.section__popup-button_mobile {
  display: none;
}

.section__popup-button_centered {
  margin: 3vh auto 0;
}

.section__popup-button_transparent {
  margin: 9.2vh auto 0 0;
  margin-left: calc((100vw - 1136px) / 2 + 6.1vw);
  max-width: max-content;
  padding: 25px 50px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(121, 0, 255, 0.2);
  border: 1px solid #7900ff;
  box-shadow: none;
  border-radius: 20px;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 91.6%;
  text-transform: uppercase;
  color: #ffffff;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  z-index: 9;
  text-decoration: none;
  transition: all 0.3s ease;
}

.section__video-counter {
  display: none;
}

.section__counter-icon {
  width: 24px;
  height: 17.5px;
  background-image: url("../images/icon_video-counter.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.section__counter {
  width: min-content;
  margin: 0 auto 0 10px;
  font-size: 12px;
  line-height: 90%;
}

.section__counter_span {
  font-size: 14px;
  line-height: 24px;
  text-shadow: 0px 4px 84px rgba(0, 0, 0, 0.65);
}

.section__video-arrow {
  width: 20px;
  height: 10px;
  background-image: url("../images/icon_arrow-forward.svg");
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
}

.section__video-gallery {
  width: calc(1136px - 94px);
  margin: 73px 0 0 0;
  margin-left: calc((100vw - 1136px) / 2 + 94px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  font-family: "Montserrat";
  font-style: normal;
  color: #ffffff;
}

.section__video-item {
  width: 100%;
}

.section__video-preview {
  width: 100%;
  height: 185px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  object-fit: cover;
}

.section__video-preview_main {
  height: 100%;
  width: 100%;
}

.section__video-preview_page_about-us {
  width: 430px;
  height: 240px;
}

.section__video-title {
  margin: 9px 0 0;
  font-weight: 700;
  font-size: 14px;
  line-height: 35px;
  text-transform: uppercase;
  text-shadow: 0px 4px 84px rgba(0, 0, 0, 0.65);
}

.section__video-description {
  margin: 9px 0 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
}

.section__advantages-container {
  margin: 7.5vh 0 0 0;
  margin-left: calc((100vw - 1136px) / 2 + 125px);
  width: 1000px;
  display: flex;
}

.section__advantages-list {
  max-width: 260px;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 52px;
}

.section__advantages-list_mobile {
  display: none;
}

.section__advantages-item {
  padding-left: 32px;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  color: #ffffff;
  text-shadow: 0px 4px 84px rgba(0, 0, 0, 0.65);
  list-style-type: none;
  list-style-image: url("../images/list-style-image-round.svg");
}

.section__advantages-table {
  display: none;
}

.section__advantages-grid {
  margin: 0 0 0 auto;
  display: grid;
  grid-template-columns: minmax(min-content, 236px) minmax(min-content, 236px);
  grid-template-rows: repeat(6, min-content);
  column-gap: 76px;
  row-gap: 15px;
}

.section__grid-item {
  display: flex;
  align-items: center;
}

.section__grid-icon {
  min-width: 48px;
  min-height: 48px;
  max-width: 48px;
  max-height: 48px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.section__grid-icon_type_camera {
  background-image: url("../images/icon_camera.svg");
}

.section__grid-icon_type_sauna {
  background-image: url("../images/icon_sauna.svg");
}

.section__grid-icon_type_curtain {
  background-image: url("../images/icon_curtain.svg");
}

.section__grid-icon_type_opening {
  background-image: url("../images/icon_opening.svg");
}

.section__grid-icon_type_lock {
  background-image: url("../images/icon_lock.svg");
}

.section__grid-icon_type_climate {
  background-image: url("../images/icon_climate.svg");
}

.section__grid-icon_type_domofon {
  background-image: url("../images/icon_domofon.svg");
}

.section__grid-icon_type_sensors {
  background-image: url("../images/icon_sensors.svg");
}

.section__grid-icon_type_gates {
  background-image: url("../images/icon_gates.svg");
}

.section__grid-icon_type_movement {
  background-image: url("../images/icon_movement.svg");
}

.section__grid-icon_type_watering {
  background-image: url("../images/icon_watering.svg");
}

.section__grid-icon_type_plan {
  background-image: url("../images/icon_plan.svg");
}

.section__grid-icon_type_electronics {
  background-image: url("../images/icon_electronics.svg");
}

.section__grid-icon_type_ceiling {
  background-image: url("../images/icon_ceiling.svg");
}

.section__grid-icon_type_kitchen {
  background-image: url("../images/icon_kitchen.svg");
}

.section__grid-icon_type_furniture {
  background-image: url("../images/icon_furniture.svg");
}

.section__grid-icon_type_estimate {
  background-image: url("../images/icon_estimate.svg");
}

.section__grid-icon_type_visualization {
  background-image: url("../images/icon_visualization.svg");
}

.section__grid-icon_type_engineering {
  background-image: url("../images/icon_engineering.svg");
}

.section__grid-icon_type_scenarios {
  background-image: url("../images/icon_scenarios.svg");
}

.section__grid-icon_type_rough {
  background-image: url("../images/icon_rough.svg");
}

.section__grid-icon_type_floors {
  background-image: url("../images/icon_floors.svg");
}

.section__grid-icon_type_installation-smart {
  background-image: url("../images/icon_installation-smart.svg");
}

.section__grid-icon_type_electric {
  background-image: url("../images/icon_electric.svg");
}

.section__grid-icon_type_ceiling-solutions {
  background-image: url("../images/icon_ceiling-solutions.svg");
}

.section__grid-icon_type_installation-com {
  background-image: url("../images/icon_installation-com.svg");
}

.section__grid-icon_type_installation-engineering {
  background-image: url("../images/icon_installation-engineering.svg");
}

.section__grid-icon_type_clean {
  background-image: url("../images/icon_clean.svg");
}

.section__grid-icon_type_launch-devices {
  background-image: url("../images/icon_launch-devices.svg");
}

.section__grid-icon_type_insurance {
  background-image: url("../images/icon_insurance.svg");
}

.section__grid-icon_type_support {
  background-image: url("../images/icon_support.svg");
}

.section__grid-icon_type_launch-scenarios {
  background-image: url("../images/icon_launch-scenarios.svg");
}

.section__grid-icon_type_subscription {
  background-image: url("../images/icon_subscription.svg");
}

.section__grid-icon_type_check {
  background-image: url("../images/icon_check.svg");
}

.section__grid-icon_type_service {
  background-image: url("../images/icon_service.svg");
}

.section__grid-icon_type_production {
  background-image: url("../images/icon_production.svg");
}

.section__grid-icon_type_innovations {
  background-image: url("../images/icon_innovations.svg");
}

.section__grid-icon_type_app-control {
  background-image: url("../images/icon_app-control.svg");
}

.section__grid-icon_type_age {
  background-image: url("../images/icon_age.svg");
}

.section__grid-icon_type_tech-support {
  background-image: url("../images/icon_tech-support.svg");
}

.section__grid-icon_type_materials {
  background-image: url("../images/icon_materials.svg");
}

.section__grid-icon_type_pioneers {
  background-image: url("../images/icon_pioneers.svg");
}

.section__grid-icon_type_warranty {
  background-image: url("../images/icon_warranty.svg");
}

.section__services-container {
  margin-top: 5vh;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  width: 100%;
  max-width: calc(1136px - 82px);
  margin-left: calc((100vw - 1136px) / 2 + 82px);
}

.section__services-item {
  width: 100%;
  height: 43.5vh;
  padding: 0 25px 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  box-sizing: border-box;
  border: 5px solid #460094;
  border-radius: 24px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.section__services-item:hover {
  transform: scale(1.02);
}

.section__services-item_type_design {
  background-image: url("../images/bg_service-design.png");
  background-image: url("../images/bg_service-design_no-people.png");
  background-image: url("../images/bg_service-design_new.jpg");
}

.section__services-item_type_rennovation {
  background-image: url("../images/bg_service-rennovation.png");
  background-image: url("../images/bg_service-rennovation_no-people.png");
  background-image: url("../images/bg_service-rennovation_new.jpg");
}

.section__services-item_type_electric {
  background-image: url("../images/bg_service-electric_new.jpg");
}

.section__services-item_type_automatization {
  background-image: url("../images/bg_service-automatization.png");
  background-image: url("../images/bg_service-automatization_no-people.png");
  background-image: url("../images/bg_service-automatization_new.jpg");
}

.section__services-item_type_furniture {
  background-image: url("../images/bg_service-furniture_new.jpg");
}

.section__services-item_type_maintenance {
  background-image: url("../images/bg_service-maintenance_new.jpg");
}

.section__services-title {
  margin: 0 0 27px 0;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 17px;
  text-transform: uppercase;
}

.section__services-description {
  margin: 0;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  text-shadow: 0px 4px 84px rgba(0, 0, 0, 0.65);
}

.section__services-swiper {
  display: none;
}

.section__grid-text {
  margin: 0 0 0 20px;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #ffffff;
  text-shadow: 0px 4px 84px rgba(0, 0, 0, 0.65);
}

.section__table-grid {
  max-width: 1075px;
  margin: 5vh 0 0 0;
  margin-left: calc((100vw - 1136px) / 2 + 59px);
  display: grid;
  grid-template-columns: repeat(3, minmax(min-content, 1fr));
  row-gap: 10vh;
  column-gap: 1.5vw;
  color: #fff;
  font-family: "Montserrat";
  font-style: normal;
}

.section__table-grid_type_short {
  grid-template-columns: minmax(auto, 300px) minmax(auto, 300px) minmax(
      auto,
      300px
    );
}

.section__table-item {
  display: flex;
}

.section__table-item_type_quote {
  grid-row-start: 3;
  grid-column-start: 3;
}

.section__table-item_row-start_three {
  grid-row-start: 3;
}

.section__table-item_type_flex {
  display: flex;
  flex-direction: column;
}

.section__table-item_type_centered {
  align-self: center;
}

.section__table-text {
  margin-left: 19px;
}

.section__item-name {
  margin: 0;
  font-weight: bold;
  font-size: 14px;
  line-height: 17px;
  text-transform: uppercase;
  text-shadow: 0px 4px 84px rgba(0, 0, 0, 0.65);
}

.section__item-description {
  margin: 13px 0 0 0;
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
}

.section__grid-quote {
  margin: 0;
  padding-left: 67px;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  text-shadow: 0px 4px 84px rgba(0, 0, 0, 0.65);
}

.section__grid-quote_spaced {
  line-height: 35px;
  padding: 0;
}

.section__grid-signature {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.section__grid-initials {
  display: flex;
  flex-direction: column;
}

.section__grid-position {
  margin: 0;
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
}

.section__grid-name {
  margin: 5px 0 0;
  font-weight: 700;
  font-size: 12px;
  line-height: 15px;
  text-transform: uppercase;
}

.section__collumns-container {
  margin: 6vh 0 0 0;
  width: 1060px;
  margin-left: calc((100vw - 1136px) / 2 + 70px);
  display: flex;
  justify-content: space-between;
  gap: 70px;
  font-family: "Montserrat";
  font-style: normal;
  color: #fff;
  box-sizing: border-box;
}

.section__collumns-container_type_contacts {
  gap: 20vw;
  justify-content: flex-start;
}

.section__collumns-container_type_awards {
  margin-top: 9vh;
}

.section__collumns-container_type_salon {
  margin-top: 4vh;
  margin-left: calc((100vw - 1136px) / 2 + 116px);
  width: calc(1136px - 128px);
  justify-content: space-between;
}

.section__collumn {
  width: 50%;
}

.section__collumn_type_contacts {
  width: max-content;
}

.section__collumn_type_min-content {
  width: min-content;
}

.section__collumn_type_max-content {
  width: max-content;
}

.section__collumn_type_full {
  width: 100%;
}

.section__grid-gallery {
  display: grid;
  grid-template-columns: repeat(3, min-content);
  gap: 10px;
}

.section__grid-gallery_type_4cols {
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.section__grid-gallery-item {
  width: 18.8vh;
  height: 18.8vh;
  border-radius: 20px;
  background-size: cover;
  background-repeat: no-repeat;
  object-fit: cover;
}

.section__grid-gallery-item_type_full {
  width: 100%;
  background-size: contain;
  height: auto;
}

.section__info {
  width: 430px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.section__text-label {
  margin: 0;
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
}

.section__text-label_page_about-us {
  margin-top: 5vh;
}

.section__text-bold {
  margin: 5px 0 0;
  font-weight: 700;
  font-size: 14px;
  line-height: 17px;
  text-transform: uppercase;
  text-shadow: 0px 4px 84px rgba(0, 0, 0, 0.65);
}

.section__info-container {
  margin: auto 0 0;
  column-gap: 47px;
  row-gap: 17px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
}

.section__info-text {
  margin-top: auto;
  margin-bottom: 0;
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
}

.section__info-text_type_photo-preview {
  margin: 68px auto 0;
  width: calc(100% - (21px * 2));
}

.section__info-text_type_about-us {
  margin: auto 0 0;
}

.section__photo-preview {
  max-width: 546px;
  display: flex;
  flex-direction: column;
}

.section__photo {
  width: 28.4vw;
  height: 36.9vh;
  border-radius: 20px;
  background-image: url("../images/icon_photo-gallery.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.section__awards {
  margin-left: 2.2vw;
  max-width: 580px;
  display: flex;
  flex-direction: column;
  gap: 8.3vh;
}

.section__awards-item {
  display: flex;
}

.section__awards-icon {
  min-width: 48px;
  min-height: 48px;
  max-width: 48px;
  max-height: 48px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px;
}

.section__awards-icon_type_advantages {
  background-image: url("../images/icon_awards-advantages.svg");
}

.section__awards-icon_type_aspiration {
  background-image: url("../images/icon_awards-aspiration.svg");
}

.section__awards-container {
  margin-left: 19px;
}

.section__awards-title {
  margin: 0;
  font-weight: bold;
  font-size: 14px;
  line-height: 17px;
  text-transform: uppercase;
  text-shadow: 0px 4px 84px rgba(0, 0, 0, 0.65);
}

.section__awards-text {
  margin: 13px 0 0;
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
}

.section__certificates {
  width: fit-content;
}

.section__certificates-title {
  margin: 0;
  font-weight: bold;
  font-size: 14px;
  line-height: 17px;
  text-transform: uppercase;
  text-shadow: 0px 4px 84px rgba(0, 0, 0, 0.65);
}

.section__certificates-text {
  margin: 13px 0 0;
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
}

.section__certificates-container {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.section__certificate {
  width: 128.5px;
  height: 180px;
  border-radius: 4px;
}

.section__contacts-left {
  margin-left: 3.5vw;
}

.section__contacts-text {
  margin: 0 0 5px 0;
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
}

.section__contacts-text_type_tel {
  margin-left: 53px;
}

.section__tel {
  display: flex;
  flex-direction: column;
}

.section__tel-container {
  display: flex;
  align-items: center;
}

.section__tel-icon {
  width: 26px;
  height: 26px;
  background-image: url("../images/icon_tel.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.section__telephone {
  margin: 0;
  margin-left: 27px;
  font-weight: 700;
  font-size: 35px;
  line-height: 43px;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  text-decoration: none;
}

.section__adress-container {
  margin-top: 7.5vh;
}

.section__adress {
  margin: 0;
  font-weight: 700;
  font-size: 12px;
  line-height: 15px;
  text-transform: uppercase;
}

.section__contacts-heading {
  margin: 0;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
}

.section__contacts-right {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.section__email {
  margin: 10px 0 auto 0;
}

.section__social-container {
  margin-top: 11px;
  display: flex;
  gap: 24px;
}

.section__social-link {
  width: 30px;
  height: 18px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: all 0.3s ease;
}

.section__social-link:hover {
  transform: scale(1.1);
}

.section__social-link:focus {
  outline: none;
  transform: scale(1.1);
}

.section__social-link_type_telegram {
  background-image: url("../images/icon_telegram.svg");
}

.section__social-link_type_vkontakte {
  background-image: url("../images/icon_vk.svg");
}

.section__social-link_type_youtube {
  background-image: url("../images/icon_youtube.svg");
}

.section__requisites {
  margin: 15vh 0 0 0;
  margin-left: calc((100vw - 1136px) / 2 + 63px);
  padding: 29px 51px 25px 42px;
  width: 1073px;
  box-sizing: border-box;
  background: rgba(121, 0, 255, 0.2);
  border: 1px solid #7900ff;
  border-radius: 10px;
}

.section__requisites-heading {
  margin: 0;
  font-weight: 700;
  font-size: 14px;
  line-height: 17px;
  text-transform: uppercase;
}

.section__requisites-container {
  margin-top: 15px;
  display: flex;
  gap: 28px;
}

.section__requisites-text {
  margin: 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #7900ff;
}

.section__requisites-download {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease;
}

.section__requisites-download:hover {
  transform: scale(1.05);
}

.section__requisites-download:focus {
  outline: none;
  transform: scale(1.05);
}

.section__requisites-icon {
  width: 24px;
  height: 32px;
  background-image: url("../images/icon_requisites.svg");
  background-position: center;
  background-repeat: no-repeat;
}

.section__requisites-download-text {
  margin: 10px 0 0 0;
  font-weight: 700;
  font-size: 12px;
  line-height: 15px;
  text-align: center;
  text-transform: uppercase;
}

.section__salon {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.section__salon-container {
  display: flex;
  gap: 22px;
}

.section__salon-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  background-image: url("../images/icon_location.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.section__salon-info {
  max-width: 262px;
}

.section__salon-name {
  margin: 0;
  font-weight: 700;
  font-size: 14px;
  line-height: 17px;
  text-transform: uppercase;
  text-shadow: 0px 4px 84px rgba(0, 0, 0, 0.65);
}

.section__salon-adress {
  margin: 0;
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
}

.section__salon-adress:first-of-type {
  margin-top: 15px;
}

.section__salon-adress_bold {
  font-weight: 700;
}

.section__salon-map {
  margin-top: 4vh;
  width: 100%;
  height: 280px;
  border-radius: 10px;
  overflow: hidden;
}

.section__salon-gallery {
  margin-top: 1vh;
  width: 100%;
}

.section__salon-text {
  margin: 3.2vh 0 0 0;
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
}

.section__all-salons {
  display: block;
  margin: 44px 0 0 26.4vw;
}

.section__mobile-container {
  display: none;
}

.section__quote {
  display: none;
}

.section__mobile-divider {
  display: none;
  padding-bottom: 45px;
}

.section__not-found-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 90%;
  margin: 3vh auto 0;
}

/* SWIPER - ABOUT US */

.swiper {
  width: 100%;
  height: 140px;
}

.swiper_type_grid {
  height: 480px;
}

.swiper_mobile-only {
  display: none;
}

.swiper-wrapper {
  height: calc(100% - 20px);
}

.swiper-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  text-decoration: none;
}

.swiper-slide_titled {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.swiper-slide_titled img {
  width: 100%;
  height: 90%;
  border-radius: 10px;
  object-fit: cover;
  overflow: hidden;
}

.swiper__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.swiper__photo {
  width: 100%;
  height: 90%;
  object-fit: cover;
  border-radius: 10px;
}

.swiper__text {
  min-height: 30px;
  margin: 5px 0 0;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  color: #fff;
  text-decoration: none;
}

.swiper-pagination {
  position: static;
}

/* /SWIPER - ABOUT US */

.photo-slider {
  display: none;
}

.photo-gallery {
  margin-top: 40px;
  margin-left: calc((100vw - 1136px) / 2 + 82px);
  display: flex;
  position: relative;
  z-index: 10;
}

.photo-gallery__slider {
  box-sizing: border-box;
  padding: 15px 24px 15px 11px;
  width: 124px;
  height: 40vh;
  display: flex;
  flex-direction: column;
  gap: 9px;
  background: rgba(104, 49, 221, 0.1);
  border-radius: 16px;
  overflow: scroll;
}

.photo-gallery__slider::-webkit-scrollbar {
  width: 4px; /* Ширина полосы прокрутки */
  margin-right: 10px;
}

.photo-gallery__slider::-webkit-scrollbar-track {
  background: rgba(
    0,
    0,
    0,
    0.12
  ); /* Цвет фона трека (области, по которой можно прокручивать) */
}

.photo-gallery__slider::-webkit-scrollbar-thumb {
  background: #7a01ff; /* Цвет полосы прокрутки */
  border-radius: 10px; /* Скругление углов полосы прокрутки */
}

.photo-gallery__slider-item {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.photo-gallery__slider-preview {
  width: 89px;
  height: 61px;
  border: 1px solid #7900ff;
  border-radius: 5px;
}

.photo-gallery__slider-category {
  margin-top: 9px;
  font-weight: 400;
  font-size: 10px;
  line-height: 120%;
  text-shadow: 0px 0px 40px rgba(255, 255, 255, 0.35);
}

.photo-gallery__slider-name {
  margin-top: 9px;
  font-weight: 800;
  font-size: 10px;
  line-height: 120%;
  text-shadow: 0px 0px 40px rgba(255, 255, 255, 0.35);
}

.photo-gallery__slider-info {
  display: none;
}

.photo-gallery__slider-decsription {
  font-weight: 400;
  font-size: 10px;
  line-height: 120%;
}

.photo-gallery__slider-price-prefix {
  font-weight: 400;
  font-size: 10px;
  line-height: 120%;
}

.photo-gallery__slider-price {
  font-weight: 800;
  font-size: 10px;
  line-height: 120%;
}

.photo-gallery__slider-gallery {
  display: flex;
  flex-wrap: wrap;
}

.photo-gallery__slider-gallery-item {
  width: 30px;
  height: 20px;
  border: 1px solid red;
}

.photo-gallery__frame {
  margin-left: 47px;
  padding: 6px;
  width: 58.36vh;
  height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #121515;
  border: 1px solid #3a4245;
  border-radius: 20px;
  position: relative;
  box-sizing: border-box;
  box-shadow: 50.5838px 111.052px 34.3039px rgba(0, 0, 0, 0.02),
    32.5597px 70.9336px 31.3968px rgba(0, 0, 0, 0.15),
    18.0241px 40.1182px 26.164px rgba(0, 0, 0, 0.5),
    8.13992px 18.0241px 19.7684px rgba(0, 0, 0, 0.85),
    1.74427px 4.65138px 10.4656px rgba(0, 0, 0, 0.98);
}

.photo-gallery__frame_type_video {
  width: 100%;
  height: 100%;
  margin: 0;
}

.photo-gallery__frame_type_small-video {
  width: 100%;
  height: unset;
  margin: 0;
}

.photo-gallery__frame-container {
  width: 100%;
  height: 100%;
  /*display: flex;*/
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
}

.photo-gallery__fslightbox {
  width: 100%;
}

.photo-gallery__image {
  display: none;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.photo-gallery__image_active {
  display: block;
}

.photo-gallery__arrow {
  position: absolute;
  top: calc(50% - 43px / 2);
  width: 43px;
  height: 43px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  cursor: pointer;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding: 15px;
  box-sizing: border-box;
  z-index: 2;
}

.photo-gallery__arrow_direction_back {
  left: -20px;
  background-image: url("../images/icon_arrow-back.svg");
}

.photo-gallery__arrow_direction_forward {
  right: -20px;
  background-image: url("../images/icon_arrow-forward.svg");
}

.photo-gallery__info {
  margin-left: 57px;
  /*max-width: 338px;*/
  max-width: calc(1052px - 124px - 58.36vh - 47px - 57px);
  height: 40vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.photo-gallery__info_mobile {
  display: none;
}

.photo-gallery__title {
  margin: 0;
  font-family: "Druk Text Wide Cy TT Heavy";
  font-style: normal;
  font-weight: 800;
  font-size: 30px;
  line-height: 120%;
  text-shadow: 0px 0px 20px rgba(255, 255, 255, 0.35);
}

.photo-gallery__description {
  margin: 28px 0 auto;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  text-shadow: 0px 4px 84px rgba(0, 0, 0, 0.65);
}

.photo-gallery__price {
  margin: auto 0 0;
  font-weight: 700;
  font-size: 20px;
  line-height: 35px;
  color: #ffffff;
  text-shadow: 0px 4px 84px rgba(0, 0, 0, 0.65);
}

.photo-gallery__price-span {
  font-size: 30px;
}

.main {
  position: relative;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 15;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateX(0);
  transition: transform 0.3s ease-in-out;
}

.popup_hidden {
  width: 0;
  transform: translateX(100%);
}

.popup__container {
  width: 90%;
  height: 90%;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.popup__close-button {
  position: absolute;
  top: 3.5vh;
  right: 4.8vw;
  width: 20px;
  height: 20px;
  background-image: url("../images/icon_close.svg");
  cursor: pointer;
  z-index: 20;
}

.footer {
  width: 100%;
  max-width: 1136px;
  padding-bottom: 4.07vh;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  color: #fff;
  position: absolute;
  bottom: 0;
  left: calc(50% - 1136px / 2);
  z-index: 0;
}

.footer_local {
  display: none;
}

.footer__pagination {
  display: none;
}

.footer__advantage {
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  font-family: "Montserrat";
  font-style: normal;
}

.footer__advantage-heading {
  width: max-content;
  max-width: 140px;
  margin: 0;
  font-weight: bold;
  font-size: 12px;
  line-height: 15px;
  text-transform: uppercase;
}

.footer__advantage-text {
  width: max-content;
  max-width: 140px;
  margin: 0;
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
}

.footer__criteria-list {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer__criteria-item {
  width: 47px;
  height: 118px;
  padding: 10px 16px 15px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(7px);
  border-radius: 10px;
  border: 1px solid #595959;
  text-decoration: none;
  cursor: pointer;
  color: #fff;
}

.footer__criteria-text {
  margin: 0;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  text-transform: uppercase;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
}

.footer__criteria-icon {
  width: 16px;
  height: 16px;
  background-image: url("../images/icon_criteria.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.footer__trademark {
  width: 181px;
  height: 71px;
  margin-bottom: 9px;
  background-image: url("../images/trademark.svg");
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.footer__trademark-glow {
  position: absolute;
  top: -73px;
  left: -53px;
  width: 190px;
  height: 190px;
  background-image: url("../images/trademark-glow.svg");
}

.footer__more-link {
  margin: 0 0 9px 0;
}

/* TIPPY */

.tippy-box[data-theme~="uk"] {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #fff;
}

/* BLOG */

.blog {
  max-width: calc(1136px - 82px);
  margin-top: 5vh;
  margin-left: calc((100vw - 1136px) / 2 + 82px);
  padding-bottom: 25vh;
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}

.blog__post {
  box-sizing: border-box;
  border-radius: 10px;
  border: 1px solid #7900ff;
  width: 100%;
  height: 400px;
  display: flex;
  overflow: hidden;
  background: rgba(121, 0, 255, 0.2);
  box-shadow: 0px 14px 60px rgba(80, 0, 168, 0.8);
  color: #fff;
  font-style: normal;
  cursor: pointer;
  text-decoration: none;
}

.blog__post-info {
  box-sizing: border-box;
  border-right: 1px solid #7900ff;
  width: 40%;
  padding: 30px 10px 10px;
  display: flex;
  flex-direction: column;
}

.blog__post-tag {
  width: fit-content;
  padding: 5px;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(7px);
  border-radius: 10px;
  border: 1px solid #595959;
  font-size: 12px;
  line-height: 15px;
}

.blog__post-title {
  margin-top: 30px;
  font-family: "Druk Text Wide Cy TT Heavy";
  font-weight: 800;
  font-size: 20px;
  line-height: 120%;
  text-shadow: 0px 0px 20px rgba(255, 255, 255, 0.35);
}

.blog__post-announcement {
  margin-top: 40px;
  font-size: 12px;
  line-height: 15px;
}

.blog__post-image {
  box-sizing: border-box;
  width: 60%;
  object-fit: cover;
  object-position: center;
}

.blog__body {
  max-width: calc(1136px - 82px);
  margin-top: 2vh;
  margin-left: calc((100vw - 1136px) / 2 + 82px);
  padding-bottom: 25vh;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  line-height: 150%;
}

.blog__body img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}

.blog__body li {
  margin-top: 2vh;
}

.blog__framed-text {
  margin: 3vh 0;
  width: 100%;
  padding: 10px;
  background: rgba(121, 0, 255, 0.2);
  border: 1px solid #7900ff;
  border-radius: 20px;
  text-transform: uppercase;
  text-align: center;
  line-height: 150%;
  box-sizing: border-box;
}

.blog__swiper-gallery {
  width: 100%;
  height: fit-content;
}

.blog__swiper-gallery .swiper {
  height: auto;
}

.blog__swiper-gallery .swiper-wrapper {
  height: fit-content;
}

.blog__swiper-gallery .swiper__text {
  margin: 1vh 0 0;
  text-align: center;
  min-height: unset;
  font-size: 15px;
  line-height: 100%;
}

@media screen and (max-width: 768px) {
  .blog {
    max-width: unset;
    width: calc(100% - (15px * 2));
    margin: 5vh auto 0;
    padding-bottom: 18vh;
  }

  .blog__body {
    max-width: unset;
    width: calc(100% - (15px * 2));
    margin: 0 auto 0;
    padding-bottom: 18vh;
  }

  .blog__post {
    width: 100%;
    height: unset;
    flex-direction: column-reverse;
  }

  .blog__post-info {
    border-right: none;
    border-top: 1px solid #7900ff;
    width: 100%;
    padding: 20px 10px 10px;
  }

  .blog__post-title {
    height: unset;
    margin-top: 20px;
    font-size: 16px;
    text-align: justify;
  }

  .blog__post-announcement {
    margin-top: 20px;
    font-size: 12px;
    text-align: justify;
  }

  .blog__post-image {
    width: 100%;
    height: 35vh;
  }

  .blog__framed-text {
    font-size: 15px;
    line-height: 180%;
  }
}

@media screen and (max-width: 768px) {
  .header {
    box-sizing: border-box;
    padding: 2lvh 7.4vw 0 5.8vw;
  }

  .header_filled {
    padding: 2lvh 7.4vw 2lvh 5.8vw;
  }

  .header__container {
    max-width: 100%;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .header__logo-container {
    margin-left: 0;
  }

  .header__logo {
    width: 41.28px;
    height: 41.28px;
  }

  .header__name {
    font-size: 20px;
    line-height: 26px;
  }

  .header__motto {
    margin: 0;
    font-size: 10px;
    line-height: 13px;
  }

  .header__logo-glow {
    width: 427px;
    height: 427px;
    top: -171px;
    left: -167px;
  }

  .header__nav-bar {
    display: none;
  }

  .header__tel-container {
    margin: 0 17px 0 auto;
  }

  .header__tel-container_place_burger-menu {
    width: calc(100% - 15px * 2);
    margin: 4lvh auto;
  }

  .header__tel {
    display: none;
  }

  .header__tel_place_burger-menu {
    display: block;
    margin: 0 0 0 10px;
  }

  .burger-menu {
    display: flex;
  }

  .sidebar {
    position: absolute;
    left: 6.9vw;
    top: unset;
    bottom: 18.1lvh;
    z-index: 2;
  }

  .sidebar_mobile {
    bottom: 31.77lvh;
  }

  .sidebar__pagination {
    display: none;
  }

  .sidebar__social-link {
    margin-top: 20px;
    width: 20px;
    height: 14px;
  }

  .sidebar__social-link_place_burger-menu {
    margin-top: 0;
  }

  .section {
    position: relative;
    height: unset;
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 115);
  }

  .section_type_main {
    background-image: url("../images/bg_mobile_main.png");
  }

  .section_type_smart-kitchen {
    background-image: url("../images/bg_mobile_smart-kitchen.png");
  }

  .section_type_smart-furniture {
    background-image: url("../images/bg_mobile_smart-furniture.png");
  }

  .section_type_smart-home {
    background-image: url("../images/bg_mobile_smart-home.png");
  }

  .section_type_smart-services {
    background-image: url("../images/bg_mobile_smart-services.png");
  }

  .section_type_video {
    background-image: url("../images/bg_mobile_video.png");
    z-index: 3;
  }

  .section_type_photo-gallery {
    background-image: url("../images/bg_mobile_basic.svg");
    z-index: 3;
  }

  .section_type_points {
    background-image: url("../images/bg_mobile_points.png");
    z-index: 3;
  }

  .section_type_video-gallery {
    background-image: url("../images/bg_mobile_basic.svg");
    z-index: 3;
  }

  .section_type_form-wgirl {
    background-image: url("../images/bg_mobile_form-wgirl.png");
    z-index: 3;
  }

  .section_type_advantages {
    background-image: url("../images/bg_mobile_basic.svg");
    z-index: 3;
  }

  .section_type_basic {
    background-image: url("../images/bg_mobile_basic-glow.svg");
    z-index: 3;
  }

  .section_type_about-us {
    background-image: url("../images/bg_about-us.png");
    z-index: 7;
  }

  .section_type_form {
    background-image: url("../images/bg_mobile_form.svg");
    z-index: 5;
  }

  .section_type_rennovation {
    z-index: 5;
  }

  .section_type_automatization {
    z-index: 5;
  }

  .section_type_padding-bottom {
    padding-bottom: 50px;
  }

  .section_type_design {
    background-image: url("../images/bg_design_mobile.png");
    background-position: top;
    z-index: 5;
  }

  .section_type_rennovation {
    background-image: url("../images/bg_rennovation_mobile.png");
    background-position: top;
    z-index: 5;
  }

  .section_type_automatization {
    background-image: url("../images/bg_automatization_mobile.png");
    background-position: top;
    z-index: 5;
  }

  .section_type_popup {
    min-height: unset;
  }

  .section__title {
    padding-top: 39vh;
    padding-top: calc(var(--vh, 1vh) * 39);
    font-size: 25.5px;
    line-height: 40px;
    text-align: unset;
  }

  .section__title_type_main {
    margin: 0 4vw 0 5.8vw;
    max-width: unset;
  }

  .section__title_type_secondary {
    font-size: 32px;
    padding-top: 14vh;
    padding-top: calc(var(--vh, 1vh) * 14);
    margin: 0 4vw 0 5.8vw;
  }

  .section__title_type_furniture {
    font-size: 29px;
    padding-top: 13.79lvh;
    margin: 0 4vw 0 5.8vw;
  }

  .section__title_type_services {
    font-size: 29px;
    padding-top: 13.79lvh;
    margin: 0 4vw 0 5.8vw;
  }

  .section__title_type_centered {
    font-size: 35px;
    line-height: 120%;
    text-align: center;
  }

  .section__title_type_blog-post {
    width: calc(100% - (25px * 2));
    max-width: unset;
    margin: 0 auto;
    padding-top: 35lvh;
    font-size: 24px;
    line-height: 110%;
    text-align: center;
  }

  .section__subtitle {
    font-size: 20px;
  }

  .section__subtitle_type_main {
    margin: 5px 42.6vw 0 5.8vw;
    text-align: unset;
  }

  .section__subtitle_type_secondary {
    margin: 5px 0 0 5.8vw;
    line-height: 24px;
  }

  .section__subtitle_type_centered {
    width: calc(100% - (25px * 2));
    margin: 5lvh auto 0;
    text-align: center;
  }

  .section__more-link {
    margin: 0;
    position: absolute;
    bottom: 17.36lvh;
    bottom: calc(var(--vh, 1vh) * 17.36);
    right: 8vw;
    padding: 21px 24.5px;
    font-size: 12px;
  }

  .section__heading {
    margin: 0;
    /*padding: 12lvh 0 0 4.8vw;*/
    padding: 100px 0 0 4.8vw;
    font-size: 17px;
    line-height: 21px;
  }

  .section__heading_type_form {
    padding-top: 16.2lvh;
    font-weight: 400;
    font-size: 20px;
    line-height: 20px;
    text-transform: none;
  }

  .section__heading_type_mobile-short {
    max-width: 66.4vw;
  }

  .section__heading_type_quote {
    padding-top: 11.69lvh;
    font-weight: 400;
    font-size: 18px;
    /*line-height: 20px;*/
    text-transform: none;
  }

  .section__heading_type_quote::before {
    content: "";
    position: absolute;
    top: 17lvh;
    left: -31px;
    width: 53px;
    height: 45px;
    background-image: unset;
    z-index: -1;
  }

  .section__heading_type_small-padding {
    padding-top: 30px;
  }

  .section__heading_type_mobile-only {
    display: inline;
  }

  .section__heading_type_popup {
    padding-top: 6lvh;
    width: fit-content;
  }

  .section__heading_type_not-found {
    margin: 0 auto;
    padding: 20lvh 0 0;
  }

  .section__video-player {
    margin: 6.2lvh auto 0;
    width: 88.2vw;
    height: fit-content;
  }

  .section__mobile-container {
    margin: 8lvh auto 0;
    padding-bottom: 3lvh;
    width: 88.2vw;
    display: flex;
    flex-direction: column;
    z-index: 10;
    position: relative;
  }

  .section__mobile-social-links {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
  }

  .section__mobile-advantages {
    margin: 0 0 0 auto;
    display: grid;
    grid-template-columns: repeat(2, min-content);
    grid-template-rows: repeat(2, 47px);
    row-gap: 8px;
    column-gap: 10px;
  }

  .section__criteria-item {
    width: 130px;
    padding: 16px 10px 16px 10px;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(7px);
    border-radius: 10px;
    border: 1px solid #595959;
    text-decoration: none;
    color: #fff;
  }

  .section__criteria-item:focus {
    background: rgba(255, 255, 255, 0.5);
  }

  .section__criteria-text {
    margin: 0;
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    text-transform: uppercase;
  }

  .section__criteria-icon {
    width: 16px;
    height: 16px;
    background-image: url("../images/icon_criteria.svg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
  }

  .section__mobile-button {
    margin: 59px auto 0;
    width: 100%;
    height: 63px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #4c0498;
    border: 1px solid #7900ff;
    box-shadow: 0px 14px 60px rgba(80, 0, 168, 0.8);
    border-radius: 10px;
    font-weight: 400;
    font-size: 14px;
    line-height: 91.6%;
    text-transform: uppercase;
    color: #ffffff;
    text-decoration: none;
    box-sizing: border-box;
  }

  .section__small-text {
    display: none;
  }

  .section__small-text_mobile {
    display: block;
    margin: 5lvh auto 0;
    width: calc(100% - (25px * 2));
    /*max-height: 60px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 4;*/
  }

  .section__button-container {
    width: calc(100% - 21px * 2);
    margin: 3lvh auto 0;
    padding-bottom: 6lvh;
  }
  

  .section__seo {
    width: calc(100% - (25px * 2));
    margin: 5lvh auto 0;
  }

  .section__points-container {
    width: calc(100% - (21px * 2));
    margin: 6lvh auto 0;
    margin-top: calc(var(--vh, 1vh) * 6);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, min-content);
    column-gap: 5px;
    row-gap: 27px;
    box-sizing: border-box;
  }

  .section__points-tip {
    width: calc(100% - (21px * 2));
    margin: 20px auto 0;
  }

  .section__point-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .section__point-icon {
    margin: 0 auto;
  }

  .section__point-heading {
    margin: 12px 0 0;
    font-size: 10px;
    line-height: 12px;
    word-break: break-word;
    text-align: center;
  }

  .section__form-container {
    width: calc(100% - (21px * 2));
    margin: 4lvh auto 0;
  }

  .section__form-title {
    max-width: 82.5%;
    font-size: 18px;
    line-height: 22px;
  }

  .section__form-text {
    max-width: 82.5%;
    margin: 16px 0 0;
  }

  .section__form {
    width: 100%;
    margin-top: 3lvh;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, min-content);
    row-gap: 11px;
  }

  .section__input-container {
    height: 46px;
  }

  .section__input-icon {
    width: 17.5px;
    height: 17.5px;
    top: calc(50% - 17.5px / 2);
    left: 14px;
  }

  .section__form-input {
    padding-left: 47px;
    font-size: 9px;
    line-height: 19px;
  }

  .section__form-input:focus {
    font-size: 16px;
  }

  .section__form-submit {
    height: 63px;
    margin-top: 1lvh;
  }

  .section__form-label {
    grid-column-end: span 1;
  }

  .section__form-alert {
    margin-top: 0;
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 6;
    font-size: 13px;
    line-height: 15px;
  }

  .section__form-captcha {
    grid-row-start: 4;
  }

  .section__popup-button {
    width: 100%;
  }

  .section__popup-button_mobile {
    display: flex;
    margin-top: 60px;
  }

  .section__video-counter {
    width: calc(100% - (21px * 2));
    margin: 6lvh auto 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .section__video-gallery {
    width: calc(100% - (21px * 2));
    margin: 25px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    overflow: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .section__video-gallery::-webkit-scrollbar {
    display: none;
  }

  .section__video-preview {
    width: 95%;
    min-width: 320px;
    height: 185px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    overflow: hidden;
  }

  .section__video-preview {
    width: 100%;
  }

  .section__video-preview_main {
    height: 100%;
  }

  .section__advantages-container {
    margin: 5lvh auto 0;
    width: calc(100% - (21px * 2));
    flex-direction: column;
  }

  .section__advantages-spline {
    display: none;
  }

  .section__advantages-list {
    display: none;
  }

  .section__advantages-table {
    display: table;
    width: calc(100% - (13px * 2));
    margin: 0 auto;
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 400;
    font-size: 10px;
    line-height: 12px;
    color: #ffffff;
    text-shadow: 0px 4px 84px rgba(0, 0, 0, 0.65);
    border-spacing: 0;
    border-color: #fff;
    border-collapse: unset;
  }

  .section__advantages-table-cell {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .section__advantages-table-cell_type_text {
    padding-left: 17px;
  }

  .section__advantages-table-cell_type_marker {
    padding-left: 25px;
    font-weight: 700;
    font-size: 12px;
    line-height: 15px;
    position: relative;
  }

  .section__advantages-table-cell_type_marker::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #fff;
    position: absolute;
    top: -6px;
    left: 25px;
  }

  .section__advantages-table-cell_position_top-left {
    border-top: 1px solid;
  }

  .section__advantages-table-cell_position_top {
    border-top: 1px solid;
    border-bottom: 1px solid;
  }

  .section__advantages-table-cell_position_top-right {
    border-top: 1px solid;
    border-right: 1px solid;
    border-bottom: 1px solid;
    border-top-right-radius: 60px;
    border-bottom-right-radius: 60px;
  }

  .section__advantages-table-cell_position_bottom-right {
    border-bottom: 1px solid;
    padding-right: 10px;
  }

  .section__advantages-table-cell_position_bottom {
    border-bottom: 1px solid;
  }

  .section__advantages-table-cell_position_bottom-left {
    border-left: 1px solid;
    border-top: 1px solid;
    border-bottom: 1px solid;
    border-top-left-radius: 60px;
    border-bottom-left-radius: 60px;
  }

  .section__advantages-grid {
    margin: 7lvh auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, min-content);
    column-gap: 10px;
    row-gap: 4lvh;
  }

  .section__grid-item {
    flex-direction: column;
    align-items: center;
  }

  .section__grid-text {
    margin: 12px 0 0 0;
    font-size: 10px;
    line-height: 12px;
    text-align: center;
  }

  .section__table-grid {
    max-width: unset;
    width: calc(100% - (21px * 2));
    margin: 30px auto 0;
    display: grid;
    row-gap: 30px;
    column-gap: 25px;
  }

  .section__table-grid_type_short {
    grid-template-columns: repeat(2, 1fr);
    padding-bottom: 80px;
  }

  .section__table-item {
    flex-direction: column;
  }

  .section__table-item_type_flex {
    display: none;
  }

  .section__table-item_type_quote {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: unset;
  }

  .section__grid-quote {
    padding-left: 0;
  }

  .section__table-text {
    margin: 10px 0 0 0;
  }

  .section__item-name {
    font-size: 10px;
    line-height: 12px;
  }

  .section__item-description {
    margin: 5px 0 0 0;
    font-size: 10px;
    line-height: 12px;
  }

  .section__collumns-container {
    width: 100%;
    margin: 30px auto 0;
    flex-direction: column;
    gap: 50px;
  }

  .section__collumns-container_padding_bottom {
    padding-bottom: 80px;
  }

  .section__collumns-container_type_contacts {
    gap: 30px;
  }

  .section__collumns-container_type_salon {
    width: calc(100% - (21px * 2));
  }

  .section__collumn {
    width: 100%;
  }

  .section__collumn_padding_bottom {
    padding-bottom: 50px;
  }

  .section__quote {
    width: 100%;
    height: 575px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    background-image: url("../images/photo_owner.png");
    background-repeat: no-repeat;
    background-position: top right;
    position: relative;
    background-size: contain;
  }

  .section__quote-container {
    margin: 267px auto 0;
    width: calc(100% - (10px * 2));
  }

  .section__grid-quote_spaced {
    font-size: 18px;
    line-height: 28px;
    padding: 0;
  }

  .section__grid-gallery {
    display: flex;
    gap: 10px;
    overflow-x: scroll;
    overflow-y: hidden;
    margin: 0 auto;
    width: 94.6vw;
    height: 73.6vw;
  }

  .section__grid-gallery-item {
    width: initial;
    height: 100%;
    width: 85vw;
  }

  .section__info {
    max-width: unset;
    width: calc(100% - (21px * 2));
    height: unset;
    margin: 0 auto;
  }

  .section__video-preview_page_about-us {
    width: 100%;
    height: 49.6vw;
    margin: 0;
  }

  .section__info-text {
    margin-top: 20px;
    margin-bottom: 0;
    padding-bottom: 0;
    font-weight: 400;
    font-size: 10px;
    line-height: 12px;
  }

  .section__info-text_type_photo-preview {
    padding-bottom: 0;
  }

  .section__photo-preview {
    max-width: unset;
    width: calc(100% - (10px * 2));
    margin: 0 auto;
  }

  .section__photo {
    width: 100%;
    height: 73.6vw;
  }

  .section__awards {
    margin: 0 auto;
    max-width: unset;
    width: calc(100% - (21px * 2));
    flex-direction: row;
    gap: 5.6vw;
  }

  .section__awards-item {
    flex-direction: column;
    max-width: 27vw;
  }

  .section__awards-container {
    margin: 10px 0 0;
  }

  .section__awards-title {
    font-size: 10px;
    line-height: 12px;
  }

  .section__awards-text {
    margin: 4px 0 0;
    font-size: 10px;
    line-height: 12px;
    overflow-wrap: break-word;
  }

  .section__certificates {
    max-width: unset;
    width: calc(100% - (21px * 2));
    margin: 0 auto;
  }

  .section__certificates-container {
    grid-template-columns: repeat(3, max-content);
  }

  .section__certificate {
    width: 25vw;
    height: 35vw;
  }

  .section__contacts-left {
    width: calc(100% - (21px * 2));
    margin: 0 auto;
  }

  .section__contacts-text_type_tel {
    margin-left: 46px;
  }

  .section__telephone {
    margin: 0;
    margin-left: 20px;
    font-weight: 700;
    font-size: 30px;
    line-height: 37px;
  }

  .section__adress-container {
    margin: 30px 0 0 46px;
  }

  .section__contacts-right {
    width: calc(100% - (21px * 2));
    margin: 0 auto;
  }

  .section__hours {
    margin-left: 46px;
  }

  .section__email {
    margin-left: 46px;
  }

  .section__social {
    margin: 30px 0 0 46px;
  }

  .section__all-salons {
    width: calc(100% - (10px * 2));
    margin: 30px auto;
  }

  .section__mobile-divider {
    display: block;
  }

  .photo-slider {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .section__requisites {
    width: calc(100% - (29px * 2));
    margin: 6.1lvh auto 0;
    padding: 30px 16px 42px 20px;
  }

  .section__requisites-container {
    flex-direction: column;
    gap: 30px;
  }

  .section__requisites-download-text {
    width: min-content;
  }

  .section__services-container {
    display: none;
    width: calc(100% - 21px * 2);
    margin: 5lvh auto 0;
    overflow: scroll;
  }

  .section__services-swiper {
    display: block;
    width: calc(100% - 21px * 2);
    margin: 5lvh auto 0;
    position: relative;
  }

  .swiper_type_mobile-grid {
    width: calc(100% - 21px * 2);
    height: 50lvh;
  }

  .swiper_type_mobile-grid-long {
    height: calc(var(--vh, 1vh) * 85);
  }

  .swiper_desktop-only {
    display: none;
  }

  .swiper_mobile-only {
    display: block;
  }

  .swiper-slide {
    text-decoration: none;
  }

  .section__services-item {
    height: 436px;
    width: 98%;
    padding: 0 34px 30px;
  }

  .section__services-title {
    font-size: 13px;
    line-height: 15.8px;
  }

  .section__services-description {
    font-size: 13px;
    line-height: 15.8px;
  }

  .swiper_type_grid {
    width: calc(100% - 21px * 2);
    height: 360px;
  }

  .photo-slider__image {
    margin: 0 auto;
    width: 94.6vw;
    height: 73.6vw;
    object-fit: cover;
    border-radius: 27px;
    overflow: hidden;
  }

  .photo-slider__counter {
    margin: 0 auto;
    display: flex;
    gap: 2vw;
  }

  .photo-slider__counter-item {
    width: 5.3vw;
    height: 2px;
    background-color: #272727;
    border-radius: 2px;
  }

  .photo-slider__counter-item_active {
    background-color: #fff;
  }

  .photo-gallery {
    width: calc(100% - (18px * 2));
    margin: 13px auto 0;
    display: flex;
    flex-direction: column;
  }

  .photo-gallery__slider {
    width: unset;
    padding: 8px 15px 17px 15px;
    height: unset;
    flex-direction: row;
    gap: 10px;
  }

  .photo-gallery__frame {
    margin: 14px 0 0;
    padding: 6px;
    width: 100%;
    min-width: unset;
    height: 28.3lvh;
    height: calc(var(--vh, 1vh) * 35);
  }

  .photo-gallery__frame_type_small-video {
    height: unset;
  }

  .photo-gallery__frame-container {
    border-radius: 12px;
  }

  .photo-gallery__info {
    margin: 25px 0 0;
    width: 100%;
    max-width: unset;
    display: none;
    justify-content: flex-start;
  }

  .photo-gallery__info_mobile {
    height: unset;
    display: flex;
    padding-bottom: 2lvh;
    padding-bottom: calc(var(--vh, 1vh) * 2);
  }

  .photo-gallery__container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }

  .photo-gallery__title {
    width: min-content;
    font-size: 18px;
    line-height: 22px;
  }

  .photo-gallery__description {
    margin: 28px 0 0;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    text-shadow: 0px 4px 84px rgba(0, 0, 0, 0.65);
  }

  .photo-gallery__price {
    margin: 0;
    width: max-content;
    font-size: 12px;
    line-height: 21px;
  }

  .photo-gallery__price-span {
    font-size: 18px;
  }

  .footer {
    padding: 0 8vw 6.9lvh 6.9vw;
    left: 0;
    box-sizing: border-box;
    z-index: 5;
  }

  .footer_local {
    margin-top: 90px;
    display: flex;
    position: static;
  }

  .footer__pagination {
    display: flex;
    align-items: flex-end;
    cursor: pointer;
  }

  .footer__pagination-arrow {
    margin-right: 16px;
    width: 12px;
    height: 100%;
    min-height: 42px;
    background-image: url("../images/icon_arrow-down.svg");
    background-size: cover;
    transform: rotate(180deg);
  }

  .footer__pagination-container {
    display: flex;
    width: min-content;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer__pagination-counter {
    margin: 0;
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    text-align: center;
    text-shadow: 0px 4px 84px rgba(0, 0, 0, 0.65);
  }

  .footer__pagination-scroll {
    margin: 0;
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 90%;
    color: #ffffff;
  }

  .footer__advantage {
    display: none;
    margin: 0;
  }

  .footer__advantage_visible {
    display: flex;
    margin: 0 5.5vw 0 auto;
  }

  .footer__advantage_type_mobile {
    display: flex;
  }

  .footer__advantage-heading {
    max-width: 94px;
    font-size: 8px;
    line-height: 10px;
  }

  .footer__advantage-text {
    max-width: 94px;
    font-size: 8px;
    line-height: 10px;
  }

  .footer__criteria-list {
    display: none;
  }

  .footer__trademark {
    width: 110px;
    height: 43px;
    margin: 0;
    background-size: contain;
  }

  .footer__trademark-glow {
    top: -46px;
    left: -34px;
    width: 119px;
    height: 119px;
    background-size: contain;
  }

  .footer__more-link {
    display: none;
  }
}

.modal {
  max-width: 100%;
}

.modal-dialog {
  max-width: 100%;
}

@media screen and (min-width: 768px) {
  .modal-dialog_type_points {
    width: 40%;
  }
}

.modal-dialog_type_lead-form {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 768px) {
  .modal-dialog_type_lead-form {
    width: 90%;
  }
}

.modal-content {
  background-color: unset;
  background-size: cover;
  background-position: top center;
  font-family: "Montserrat";
  font-style: normal;
  color: #fff;
  border: none;
  border-radius: 10px;
}

.modal-content_type_points {
  background-image: url("../images/bg_mobile_basic-glow.svg");
}

.modal-content_type_form {
  width: fit-content;
  background-position: center;
  background-image: url("../images/bg_mobile_form.svg");
}

.modal-header {
  border: none;
}

.modal-body {
  border: none;
}

.modal__crousel-container{
 width: 100%;
 margin-top: 30px;
 border-radius: 10px;
 overflow: hidden;
 border: 1px solid #3a4245;
 box-shadow: 50.5838px 111.052px 34.3039px rgba(0, 0, 0, 0.02),
    32.5597px 70.9336px 31.3968px rgba(0, 0, 0, 0.15),
    18.0241px 40.1182px 26.164px rgba(0, 0, 0, 0.5),
    8.13992px 18.0241px 19.7684px rgba(0, 0, 0, 0.85),
    1.74427px 4.65138px 10.4656px rgba(0, 0, 0, 0.98);
}

@media screen and (min-width: 768px) {
  .modal-body_type_form {
    padding-top: 7vh;
    padding-bottom: 10vh;
  }
}

.modal-footer {
  border: none;
}

.modal__text {
  font-size: small;
  margin-bottom: 10px;
}

.modal__text_cursive {
  font-style: italic;
}

.btn-close {
  color: #FFF;
}

.btn_custom_close {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(7px);
  border-radius: 10px;
  border: 1px solid #595959;
  text-decoration: none;
  color: #fff;
}

/* YANDEX SMART CAPTCHA */

.smart-captcha {
  height: 100px;
}

@media screen and (max-width: 768px) {
  .smart-captcha {
    grid-row-start: 4;
  }
}
