/* common */


html {
  scroll-behavior: smooth;
}

html.html__unscrolled{
	overflow: hidden !important; 
	position: relative;
    height: 100%;
}

* {
  margin: 0;
  padding: 0;
  font-family: "Open Sans", sans-serif !important;
}

a {
  text-decoration: none;
}

body {
  font-family: "Open Sans", sans-serif;
  color: #222222;
  background: linear-gradient(
    180deg,
    rgba(56, 147, 255, 0.09) 0%,
    rgba(56, 147, 255, 0.06) 10%,
    rgba(56, 147, 255, 0) 100%
  );
}

button{
	font-family: "Open Sans", sans-serif;
    font-weight: 600;
}

.body__unscrolled{
	overflow: hidden !important;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.main {
  flex-grow: 1;
}

.hidden{
	display:none;
}
.header {
	width: 100%;
	position: absolute;
	height: 92px;
	padding: 20px 0;
	display: flex;
	align-items: center;
	flex-direction: row;
	justify-content: center; 
	padding-left: 120px;
	padding-right: 120px;
	box-sizing: border-box;
	transition: .5s;
	user-select: none;
}

.header._blue {
	background-color: #EDF5FF !important;
}

.header.scrolled {
	position: fixed;
	box-shadow: 0px 4px 8px -4px rgba(34, 60, 80, 0.2);
	max-height: 55px;
	z-index: 10001;
} 

.header.scrolled::before {
	content: "";
	background-color: rgba(255,255,255,.85);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px); 
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: -1;
}

.header.scrolled._blue::before {
	background-color: #EDF5FF !important;
	backdrop-filter: none !important;
	-webkit-backdrop-filter: none !important; 
}


.header .header-wrapper>a {
	transition: .5s;
}

.header.scrolled .header-wrapper>a:first-of-type {
	transform: scale(.75) translateX(-30px);
}

.header.scrolled .header-wrapper>a:last-of-type {
	padding-top: 7px;
	padding-bottom: 7px;
	height: fit-content;
	margin: auto 0;
}

.header.scrolled .top_menu_wrapper {
	background-color: transparent;
}

.header_eltex-logo{
	width: 193px;
	height: 42px;  
}

.header-wrapper {
  display: flex;
  max-width: 1920px;
  width: 100%;
  justify-content: space-between;
  height: 48px;
}

.navbar .top_menu {
  display: flex;
}

.navbar .top_menu div.main_item {
  padding: 12px 20px;
  background-color: transparent;
  /*cursor: pointer;*/
}

.navbar .top_menu div.main_item.parent{
	padding-right: 30px; 

}

.section-nav{
	margin-top: 157px; 
}
.section-nav .breadcrumbs {
	/*margin-bottom:42px; */ 
}

.section-nav .breadcrumbs a,
.section-nav .breadcrumbs span{
	color: #A4A4A4;
	text-decoration:none;
	margin-right: 31px;
	transition: color .2s ease;
}

.section-nav .breadcrumbs a:hover {
	color: gray;
}

.section-nav .breadcrumbs a:after{
	content:"\A";
	width:6px;
	height:6px;
	border-radius:50%;
	background: #A4A4A4;
	display:inline-block;
	position:relative;
	left:15px;
	bottom:2px;
}


.section-nav .breadcrumbs .last-crumb{
	color:#275EC7;
}

.main_item.parent .chevron {
  height: 0px;
  width: 9px;
  display: block;
  cursor: pointer;
  float: right;
  top: 15px;
  left: -8px;
  position: relative;
  margin-left: 8px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  transition-timing-function: ease-in-out;
}

.main_item.parent a>div:hover>.chevron {
  transform: translateY(-7px);
}

.main_item.parent .chevron span {
  width: 100%;
  height: 1.5px;
  background-color: #000;
  display: block;
  -webkit-transition: all 0.2s;
  transition: transform 0.2s;
  transition-timing-function: ease-in-out;
  position: relative;
}

.main_item.parent .chevron span:first-of-type {
  transform-origin: 100% 0;
  transform: rotate(135deg);
  top: 3px;
  right: 1px;
}

.main_item.parent .chevron span:last-of-type {
  transform-origin: 100% 0;
  transform: rotate(45deg);
}

.main_item.parent a>div:hover .chevron span:first-of-type {
  transform: rotate(225deg);
  background-color: #275EC7;
}

.main_item.parent a>div:hover .chevron span:last-of-type {
  transform: rotate(-45deg);
  background-color: #275EC7;
}

.navbar .top_menu .main_item a {
	color: #222222;
	text-decoration: none;
	margin-bottom: 16px;
	font-weight:500;
	font-size:18px;
}
.navbar .top_menu .main_item a img{
	width: 32px;
	height: 32px; 
	margin-right: 8px;
}

.navbar .top_menu .main_item a > div {
	width: 117px;
}

.navbar .top_menu .main_item .main_item_root-section a{
	display: flex;
	align-items: center; 
}

.navbar .top_menu .main_item.active > a {
  color: #275EC7;
}

.navbar .top_menu .main_item.active .chevron span {
  background-color: #275EC7;
}

.navbar .top_menu .main_item a:active {
  color: #ffe599;
}

.navbar .top_menu .main_item a:hover {
  color: #275EC7;
}

.navbar .top_menu .main_item a>div:hover {
  color: #275EC7;
}

.navbar .top_menu .main_item:first-child {
  border-radius: 22px 0 0 22px;
}

.navbar .top_menu .main_item:last-child {
  border-radius: 0 22px 22px 0;
}

.navbar .top_menu .main_item:nth-last-child(-n + 1) {
  border-radius: 0 22px 22px 0;

}

.navbar .top_menu .main_item .main_item_root {
  height: 100%;
  display: flex;
  justify-content: center;
}

.navbar .top_menu div.main_item:first-child{
	 padding: 12px 20px 12px 40px;
}

.navbar .top_menu div.main_item:last-child{

}

.navbar .top_menu .main_item .main_item_root-section {
  display: none;
  position: absolute;
  margin-top: 16px;
  border-radius: 15px;
  padding: 32.5px  32px;
  box-shadow: 1px 2px 8px 0px #0000002f;
  z-index: 10001;  
  margin-left: 120px; 
	background-color: #fff;
}

.header.scrolled .navbar .top_menu .main_item .main_item_root-section {
	background-color: rgba(255,255,255,.85);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px); 
}

.navbar .top_menu .main_item .main_item_root-section a.active {
  color: #275EC7;
}

/*
.main_item.parent:hover .main_item_root-section {
  display: flex;
}
*/


.navbar .top_menu .main_item .main_item_root-section a:hover {
  color: #275EC7;
}

.navbar .top_menu .main_item .main_item_root-section {
  flex-direction: column;
}

.navbar .top_menu .main_item a:last-child{
	margin-bottom: 0; 
}

.main_item.parent {
}

 {
  border-radius: 0 22px 22px 0;
}

.top_menu_wrapper {
  display: flex;
  width: 100%;
  flex-direction: row;
  background: #ffffff;
  border-radius: 22px;
}

.display-none {
  display: none !important;
}

/*
 .navbar .top_menu .main_item:nth-last-child(n-1){
	border-radius: 0 22px 22px 0;
} 

.navbar .top_menu .main_item:first-child{
	border-radius:22px 0 0 22px; 
} */

.back-support_link {
  display: flex;
  align-items: center;
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 120%;

  /* identical to box height, or 22px */

  /* Gray Light */
  color: #a4a4a4;
}

.back-support_link>span {
	transition: color .2s ease;
}

.back-support_link>span:hover {
	color: #ffffff;
}

/*объединить с back-support_link?*/
.back_link {
  display: flex;
  align-items: center;
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 120%;
  color: #a4a4a4;
}

.accordion-shevron_wrapper {
}

.accordion_shevron__down {
  background: url(/local/templates/doma-main/icons/shevron-down.png);
}

.accordion_shevron__up {
  background: url(/local/templates/doma-main/icons/shevron-up.png);
}

.support-button {
  font-family: "Open Sans", sans-serif;
  /* width: 181px; */
  background: transparent;
  padding: 12px 40px 12px 40px;
  color: #275EC7;
  border: 2px solid #275EC7;
  border-radius: 30px;
  text-align: center;
  cursor: pointer;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 120%;
  justify-content: center; 
  align-items: center;
}

.support-search_button{
	top: 15px; 
}

.support-button:hover {
  background: #275EC7;
  color: #ffffff;
}

.support_section-title {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 40px;
  line-height: 130%;
  color: #222222;
}

.support-search-block {
  	background:url(/local/templates/doma-main/images/support-search-bg.png); 
	/*background: url(/local/templates/doma-main/images/eltex-doma-support_section-search__bg.png); */
	background-repeat: no-repeat;
	background-size: cover;
	display: flex;
	flex-direction: column;
	padding: 153px 259px 153px;
	width: 100%;
	height: auto;
	box-sizing: border-box;
	background-position: center;
	padding-top: 153px;
	padding-bottom: 153px;
	padding-left: 0;
	padding-right: 0;
}

.support-search-block .content {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.support-search-block .title {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: 200;
  font-size: 70px;
  line-height: 120%;
  text-align: center;
  /* identical to box height, or 84px */

  /* White */
  color: #ffffff;
}

.support-search-block .subtext {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 22px;
  line-height: 140%;
  text-align: center;
  color: #ffffff;
}

.support-doma_section-name {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 40px;
  line-height: 130%;
}

.support-doma_section-name a {
  color: #222222;
}



.mt-76 {
  margin-top: 76px;
}

.mt-145 {
	margin-top: 145px !important;
}

.button__follow {
  border: 2px solid #ffffff;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  background: transparent;
  border-radius: 53px;
  color: #ffffff;
  padding: 12px 40px;
}

.button__follow:hover {
  background-clip: text;
  -webkit-background-clip: text;
  background: #ffffff;
  color: #000000;
}

.button__learn-more {
	padding: 10px 40px 12px 40px;
	font-size: 18px;
	line-height: 120%;
	color: #ffffff;
	border-radius: 53px;
	border: 2px solid #ffffff;
	cursor: pointer;
	background: transparent;
	white-space: nowrap; 
}

.button__learn-more:hover {
  background-clip: text;
  -webkit-background-clip: text;
  background: #ffffff;
  color: #275EC7;
}

.button__blue {
  border-radius: 100px;
  background: #275EC7;
  padding: 16px 40px;
  color: #ffffff;
  font-family: "Manrope";
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 120%;
  border: 2px solid #275EC7;
  cursor: pointer;
}

.button__blue:hover {
  background:  #1A4087;
  border-color:#1A4087;
  color: #fff;
}

.section-header {
  height: auto;

  padding: 0 120px 0 120px;
}

.section-header .img-bg {
  margin: 192px 60px 0 0;
  width: 100%;
  max-width: 964px;
	user-select: none;
}

.image-block_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 500px;
  z-index: -1;
  transition: 0.4s all;
  background-size: cover;
}

.col-50_image-block,
.col-33_image-block {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  box-sizing: border-box;
}

.col-50_image-block:hover .image-block_bg,
.col-33_image-block:hover .image-block_bg {
  transform: scale(1.2);
  box-sizing: border-box;
}

.col-50-image-block_text,
.col-33-image-block_text {
  width: 100%;
  height: 100%;
  display: flex;
}

.col-50_image-block-wrapper {
  width: 100%;
  height: 500px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

.col-33_image-block-wrapper {
  width: 100%;
  height: 367px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

.col-33_image-block-wrapper .image-block_bg {
  height: 367px;
}

.color-ffffff {
  color: #ffffff;
}

.bold-text {
  font-weight: bold;
}

.posa {
	position: absolute;
}
.align-self-center {
	align-self: center;
}

.mb-8 {
	margin-bottom: 8px;
}

.mt-4 {
  margin-top: 4px;
}

.mt-8 {
  margin-top: 8px;
}

.mt-12 {
  margin-top: 12px;
}

.mt-16 {
  margin-top: 16px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-24 {
  margin-top: 24px;
}

.mt-28 {
  margin-top: 28px;
}

.mt-32 {
  margin-top: 32px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-48 {
  margin-top: 48px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-64 {
  margin-top: 64px;
}

.mt-76 {
  margin-top: 76px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-120 {
  margin-top: 120px;
}

.mt-200 {
  margin-top: 200px;
}


.mt-by-header {
  margin-top: 149px;
}

.ml-8 {
  margin-left: 8px;
}

.ml-12 {
	margin-left: 12px;
}

.ml-16 {
  margin-left: 16px;
}

.ml-40 {
  margin-left: 40px;
}

.mr-8 {
  margin-right: 8px;
}

.mr-16 {
  margin-right: 16px;
}

.mb-16{
	margin-bottom:16px;
}

.mb-120 {
  margin-bottom: 120px;
}
.mb-200 {
  margin-bottom: 200px;
}

.margin-auto {
  margin: auto;
}

.ml-auto {
  margin-left: auto;
}

.mr-auto {
  margin-right: auto;
}

.br-16 {
  border-radius: 16px;
}

.pb-200{
	padding-bottom: 200px; 
}

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

.align-items-center {
  align-items: center;
}

/* блоки с текстом и картинкой */

.col-33_image-block .info {
 /* padding: 0 48px 48px 48px;
  margin-top: auto; */
	padding: 32px 32px; 
}

.col-33_image-block .subtext {
  color: #ffffff;
}

.col-50_image-block .info {
  padding: 48px 48px 0 48px;
  margin-bottom: auto;
}

.col-50_image-block .title,
.col-33_image-block .title {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
  color: #ffffff;
}

.col-50_image-block .title {
  font-size: 40px;
}

.col-33_image-block .title {
  font-size: 26px;
  height: 60px;
  width: 380px;
}

.col-50_image-block .subtext {
	color: #ffffff;
	font-size:22px;
	font-weight: 300;
}

.col-33_image-block .subtext {
  color: #ffffff;
}

.col-100_image-block {
  height: 650px;
  padding: 0 120px;
}

.col-100_image-block .info {
  padding: 0 48px 48px 48px;
  margin-top: auto;
}

.col-100_image-block .title {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 600;
  font-size: 40px;
  line-height: 130%;
  color: #ffffff;
}

.col-100_image-block .subtext {
  max-width: 399px;
  font-family: "Manrope";
  font-style: normal;
  font-weight: 300;
  font-size: 22px;
  line-height: 140%;
  color: #ffffff;
}

/* end блоки с текстом и картинкой */

section {
  padding: 0 120px;
  max-width: 1920px;
  margin: auto;
}

.section-404 {
  margin-top: 109px; 
  padding: 202px 120px 201px;
  box-sizing: border-box; 
}

.section-404 .subtext{
	font-size:22px; 
	color: #737373; 
}

.section-404 .row a{
	margin: 0 auto;
}

.title-404 {

  font-size: 40px;
  font-weight: 400;
  line-height: 130%;
  font-style: normal;
 /* letter-spacing: -0.02em; */ 
  color: #222222;
}

h2 {
  width: 100%;
  font-family: "Manrope";
  font-style: normal;
  font-weight: 200;
  font-size: 60px;
  line-height: 120%;
  /* identical to box height, or 84px */
  letter-spacing: -0.02em;
  /* Dark */
  color: #222222;
}

.section_title {
  width: 100%;
  font-family: "Manrope";
  font-style: normal;
  font-weight: 200;
  font-size: 60px;
  line-height: 120%;
  /* identical to box height, or 84px */
  text-align: center;
  letter-spacing: -0.02em;
  /* Dark */
  color: #222222;
}

.section_subtext {
  margin: 20px auto 40px;

  font-size: 22px;
  font-weight: 300;
}

/** mainpage **/

.ecosystem-smarthome-block {
  background: url(/local/templates/doma-main/images/mainpage-ecosystem-smarthome.png);
  background-repeat: no-repeat;
  background-size: cover;
  height: 500px;
  display: flex;
  flex-direction: column;
  transition: all 1s ease;
  cursor: pointer;
}

.ecosystem-smarthome-block:hover {
  background-size: 110%;
}

.ecosystem-homewifi-block {
  background: url(/local/templates/doma-main/images/mainpage-ecosystem-homewifi.png);
  background-repeat: no-repeat;
  background-size: cover;
  height: 500px;
  display: flex;
  flex-direction: column;
  transition: all 1s ease;
  cursor: pointer;
}

.smarthome-buttons {
	display: flex;
	gap: 16px;
	align-items: flex-end;
}

.smarthome-buttons__download-app {
	height: fit-content;
	font-size: 18px;
	font-weight: 600;
	line-height: 120%;
	color: #fff;
	padding: 15px 40px 17px;
	border: 2px #fff solid;
	border-radius: 53px;
	cursor: pointer;
}

.smarthome-buttons__download-app:hover {
	background-color: #fff;
	color: #275EC7;
}

.ecosystem-subblock {
  margin-top: 254px;
  margin-left: 48px;
  font-style: normal;
  line-height: 140%;
  color: #ffffff;
  font-family: "Manrope";
}

.ecosystem-subblock .title {
  font-size: 40px;
  font-weight: 400;
}

.ecosystem-subblock .subtext {
  font-size: 22px;
  line-height: 140%;
}

.offset-right {
  margin: 0 16px 0 0;
}

.offset-left {
  margin: 0 0 0 16px;
}

.row {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.col-12-5 {
  width: 12.5%;
}

.col-16-5 {
  width: 16.5%;
}

.col-10 {
  width: 10%;
}

.col-20 {
  width: 20%;
}

.col-25 {
  width: 25%;
}

.col-30 {
  width: 30%;


}

.col-33 {
  width: 33.33333%;
}

.col-33-calc-22 {
  width: calc(33.33333% - 22px);
}

.col-40 {
  width: 40%;
}

.col-50 {
  width: 50%;
}

.col-60 {
  width: 60%;
}

.col-70 {
  width: 70%;
}

.col-80 {
  width: 80%;
}

.col-90 {
  width: 90%;
}

.col-100 {
  width: 100%;
}

.col-margin {
  margin: 0 10px;
}

.voice-assistant {
  background: #000521;
  padding: 0;
  position: relative;
}

.voice-assistant .title {
  color: white;
  margin: 18% auto 0;
  font-family: "Manrope";
  font-style: normal;
  font-weight: 200;
  font-size: 70px;
  line-height: 120%;
  position: absolute;
  text-align: center;
  width: 100%;
}

.voice-assistant .eltex {
  font-weight: 700;
  color: #275EC7;
}

.voice-assistant_wrapper{
	z-index: 99999999;
	position: absolute;
	vertical-align: middle;
	display: flex;
	justify-content: center;
	flex-direction: row;
	align-self: center;
	flex-grow: 20px;
	width: 100%;
	max-width: 1680px;
	margin: auto;
}

.voice-assistant_badges{
	max-width: 700px;
	display: flex;
	margin: auto;
	justify-content: space-between;
	width: 100%;
	left: 0; 
	right: 0; 
	margin-left: auto; 
	margin-right: auto;
	position: absolute; 
	margin-top: 29%; 
	user-select: none;
}

#voice-assistant-video{
	width:100%; 
	max-width: 1368px;
}



.voice-assistant_wrapper img{
	padding: 0 10px;
}

.buy {
	height: auto;
	box-sizing: border-box;
	/*padding: 30px 120px 256px 120px;*/
	background: #000521;
}

.news {
  height: 1071px;
  background: linear-gradient(
    180deg,
    rgba(56, 147, 255, 0.09) 0%,
    rgba(56, 147, 255, 0.06) 46.35%,
    rgba(56, 147, 255, 0) 100%
  );
  padding: 0 120px 136px 120px;
}


.section-header .title {
  margin-top: 311px;
  font-family: "Manrope";
  font-style: normal;
  font-weight: 200;
  font-size: 90px;
  line-height: 100%;

  /* or 90px */
  letter-spacing: -0.02em;
}

.section-header .subtitle {
  font-weight: 700;
  color: #275EC7;
}

.section-header .subtext {
  color: #737373;
  font-size: 26px;
  line-height: 140%;
}

.ecosystem {
  padding-bottom: 200px;
}

.main-title {
  padding-top: 194px;
  font-size: 60px;
  font-weight: 200;
  line-height: 110%;
  font-style: normal;
  letter-spacing: -0.02em;
  font-color: #222222;
}

.ecosystem-title {
  margin-top: 84px;
  font-size: 60px;
  font-weight: 200;
  line-height: 110%;
  font-style: normal;
  letter-spacing: -0.02em;
  font-color: #222222;
}

.ecosystem img {
  width: 100%;
}

.ecosystem-homewifi-bg {
	background-image: linear-gradient(#0000006e, #fff0), url('/local/templates/doma-main/images/mainpage-ecosystem-homewifi.webp');
}

.ecosystem-smarthome-bg {
  background-image: linear-gradient(#0000006e, #fff0), url('/local/templates/doma-main/images/mainpage-ecosystem-smarthome.webp');
}

.ecosystem-title > .eltex {
  font-weight: 600;
}

.ecosystem-subtext {
  margin: 20px auto 40px;
  font-size: 22px;
  font-weight: 400;
  font-style: "normal";
  font-color: #222222;
}

/*
.ecosystem .col-50{
	height: 500px; 
	border-radius: 16px; 
}*/

.application {
  background: linear-gradient(239.53deg, #46b8f8 6.36%, #1f79e5 88.22%);
  padding: 0;
}

.sticky_wrapper {
  position: absolute;
  height: 1200px;
  margin-top: -560px;
  width: 50%;
  text-align: center;
  max-width: 952px;
}

.application_iphone {
  transition: all 1s ease;
  z-index: 10000;
  position: sticky;
  position: -webkit-sticky;
  top: 100;
	width: 400px;
	user-select: none;
}

.icon-googleplay, .icon-appstore, .icon-rustore{
	width: 172px; 
}

.icon-rustore {
	height: 56px;
}

.application-subblock {
  margin-top: 200px;
  margin-bottom: 200px;
  margin-right: 50px;
  font-family: "Manrope";
  color: #ffffff;
}

.application-subblock .title {
  font-size: 60px;
  line-height: 150%;
  font-weight:200;
	color: #fff !important;
}

.application .subtitle {
  font-weight: 700;
}

.application-subblock .subtext {
	font-size: 22px;
	max-width: 565px;
	font-weight: 300;
}
.application .button__learn-more{
	padding: 15px 40px 17px 40px;
}
.automation {
  background: url(/local/templates/doma-main/images/mainpage-automation-background.png)
    no-repeat;
  background-size: cover;
  width: 100%;
  position: relative;
  height: 1573px;
  z-index: 300;
  left: 0;
}

.automation-qrcodeblock {
  margin-top: 180px;
  display: flex;
  align-items: center;
	user-select: none;
}

.automation-qrcodeblock .subtext {
  font-size: 32px;
  font-weight: 400;
  font-style: normal;
  font-family: "Manrope";
  color: #ffffff;
  line-height: 130%;
}

.automation-subblock {
  margin-top: 760px;
  /*margin-left: 143px;*/
  color: #ffffff;
  position: relative;
  z-index: 400;
  left: calc(50% - 200px);
}

.automation-subblock .title {
  font-size: 60px;
  line-height: 110%;
  font-weight: 200;
	color: #fff !important;
}

.automation-subblock .subtitle {
  color: #ffffb4;
  font-weight: 700;
}

.automation-subblock .subtext {
  font-size: 22px;
  line-height: 140%;
  font-weight: 300;
  max-width: 666px;
}

.automation-bg {
  background: url(/local/templates/doma-main/images/mainpage-automation-background.webp)
    no-repeat;
  background-size: cover;
  width: 100%;
  position: absolute;
  height: 1573px;
  z-index: 300;
  left: 0;
}

.automation-bg__light {
  background: url(/local/templates/doma-main/images/mainpage-automation-background-light.webp)
    no-repeat;
  background-size: cover;
  width: 100%;
  position: absolute;
  height: 1573px;
  z-index: 300;
  left: 0;
  transition: 2s opacity;
  opacity: 0;
}

.automation-qrcodeblock {
  z-index: 600;
  position: relative;
}



.slider-subtitle_line{
	height: 3px;
	width: 27px; 
	background: #222222;
	margin-top: 25px;
}

.scenarios{
	padding-bottom:200px; 
}

.voice-control{
	padding-bottom:200px; 
	padding-right: 0; 
	padding-left: 0; 
}



h2.section_title{
	text-align: left; 
}
.scenario-block{
	/* background:url(/local/templates/doma-main/images/automatization-light-stub.png); */
	background-repeat:no-repeat;
	background-size:cover; 
	background-position: 50%; 
}

.scenario-block__dark{
	/* background:url(/local/templates/doma-main/images/automatization-dark-stub.png); */ 
	background-repeat:no-repeat;
	background-size:cover; 
}

.voice-control-block{
	background:url(/local/templates/doma-main/images/automation-voice-controi-bg.png);
	background-repeat:no-repeat;
	background-size:cover; 
	display:flex;
	flex-direction:column; 
	height: 700px; 
}

.voice-control-block_command-wrapper{
	margin-top:auto; 
	padding: 0 0 26em 70em; 
}

.voice-control-block_command{
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 600;
	font-size: 60px;
	line-height: 130%;

	/* identical to box height, or 78px */
	
	/* White */
	color: #FFFFFF;
}

.buy-block {
  margin: 0 auto;
}

.buy-block .title {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 200;
  font-size: 60px;
  line-height: 110%;

  /* or 66px */

  /* White */
  color: #ffffff;
}

.marketplaces {
  /*max-width: 254px;
		float:right; */
  display: flex;
  flex-direction: row;
  max-width: 1064px; 
  justify-content: center;
	user-select: none;
	column-gap: 16px;
}

.marketplaces_button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 6px 52px;
  background: #ffffff;
  border-radius: 50px;
}

.marketplaces_button:hover{
	transition: 0.3s all;
	transform:scale(0.98);
}

.news .title {
  margin: 120px auto 0;
  font-family: "Manrope";
  font-style: normal;
  font-weight: 200;
  font-size: 70px;
  line-height: 120%;
}

.eltex {
  color: #275EC7;
  font-weight: 800;
}

/* umniy dom page */

.video-wrapper {
  margin: 0 auto;
  width: 100%;
  text-align: center;
}

.animation_text{
	padding-right: 36px; 
	box-sizing: border-box; 
}

.animation_title{
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 200;
	font-size: 60px;
	line-height: 120%;
	/* identical to box height, or 72px */

	letter-spacing: -0.02em;
	
	/* Dark */
	
	color: #222222;
}

.animation p, .animation  ul{
	font-family: 'Open Sans', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 22px;
	line-height: 140%;
	color: #222222;
}

.animation li{
	list-style: none;
	margin-left: 28px;
	position :relative; 
}

.animation li::before{
	content: "•";
	color: #275EC7;
	position: absolute;
	/* left: 20px; */ 
	left: -30px;
	top:-3px;
	font-size: 44px;
}

.smarthome_video .section_title {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 200;
  font-size: 60px;
  line-height: 120%;

  /* identical to box height, or 84px */
  text-align: center;
  letter-spacing: -0.02em;

  /* Dark */
  color: #222222;
}

.management_wrapper{
	padding: 0;
	max-width: 100%;
	background: #272727;
	box-sizing: border-box;

}

.management {
  height: auto;
  padding: 0 120px; /* 60px 120px */

  max-width: 1920px; 
  background: url("/local/templates/doma-main/images/smarthome-management-bg.png");
  margin: auto; 
}

.management-subblock {
  margin-top: 120px;
  /* display: flex;
	flex-direction:column; */
}

.management .tabs-title::-webkit-scrollbar  {
		display: none;
		height: 0;
		width: 0;
}

.management-subblock .info {
  /* padding: 0 48px 48px 48px;
	margin-top: auto; */
}

.management-subblock .title {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 200;
  font-size: 60px;
  line-height: 110%;
  letter-spacing: -0.02em;
  color: #ffffff;
}


.management-subblock_item-wrapper {
  padding: 24px;
  cursor: pointer;
  border: 2px solid transparent;
  list-style: none; 
}

.management-subblock_item-wrapper__active {
  border-radius: 16px;
  border: 2px solid #275EC7;
}

.management-subblock_item-title {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 600;
  font-size: 26px;
  line-height: 130%;

  /* identical to box height, or 34px */

  /* White */
   color: #fff;
}

.management-subblock_item-subtext {
  margin-top: 20px;
  color: #ffffff;
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;

  /* or 25px */

  /* White */
  color: #ffffff;
}

.consist {
  padding: 0 120px 200px 120px;  
}

.consist-subtext {
	max-width: 564px;
}

.smarthome-center-block {
  background: url("/local/templates/doma-main/images/smarthome-center.webp")
    no-repeat;
  background-repeat: no-repeat;
  background-size: cover;
  height: 500px;
  display: flex;
  flex-direction: column;
}

.smartdevices-block {
  background: url("/local/templates/doma-main/images/smarthome-smartdevices.webp")
    no-repeat;
  background-repeat: no-repeat;
  background-size: cover;
  height: 500px;
  display: flex;
  flex-direction: column;
}

.smarthome-management_image-wrapper {
  position: relative;
  margin-top: 120px;
 /* margin-bottom: 234px; */ 
  margin-left: 220px;
  margin-top: 160px;
  margin-bottom: 0;
}

.smarthome-management_image-bg {
  background-color: #275EC7;
  transform: translate3d(0, 0, 0);
  filter: blur(300px);
  -webkit-filter: blur(300px);
  border-radius: 100px;
  position: absolute;
  width: 360px;
  height: 800px;
}

.smarthome-management_image {
  position: absolute;
}

/* секция возможности */

.opportunities {
  padding: 200px 0;
}

.opportunities .section_subtext {
  text-align: center;
}

.opportunities-block {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.opportunities-block__lighting {
  background: url("/local/templates/doma-main/images/smarthome-opportunities-lighting.webp")
    no-repeat;
  background-repeat: no-repeat;
  background-size: cover;
}

.opportunities-block__security {
  background: url("/local/templates/doma-main/images/smarthome-opportunities-security-new.webp")
    no-repeat;
  background-repeat: no-repeat;
  background-size: cover;
}

.opportunities-block__appliances {
  background: url("/local/templates/doma-main/images/smarthome-opportunities-appliances.webp")
    no-repeat;
  background-repeat: no-repeat;
  background-size: cover;
}

.opportunities-block__monitoring {
  background: url("/local/templates/doma-main/images/smarthome-opportunities-monitoring.webp")
    no-repeat;
  background-repeat: no-repeat;
  background-size: cover;
}



/* end секция возможности */

/* end umniy dom page */

.homewifi-repeater-block {
  background: url("/local/templates/doma-main/images/homewifi-repeater.png");
  background-repeat: no-repeat;
  background-size: cover;
  height: 500px;
  display: flex;
  width: 100%;
  flex-direction: column;
}

.homewifi-router-block {
  background: url("/local/templates/doma-main/images/homewifi-router.png");
  background-repeat: no-repeat;
  background-size: cover;
  height: 500px;
  display: flex;
  width: 100%;
px !important;
}

/* footer */

.footer {
  flex-shrink: 0;
  width: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  background: #222222;
  margin: auto;
}

.footer-columns {
  margin-left: 120px;
  margin-right: 120px; 
  margin-top: 64px;
  font-size: 18px;
  display: flex;
  align-items: flex-start;
  flex-direction: row;
  justify-content: space-between;
}

.footer-columns>div {
	width: fit-content;
}

.footer-subsection_subscribe {
	margin-left: 0 !important;
}

.footerinfo {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  padding: 20px auto;
  color: #737373;
}

.footer-column_title {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 800;
  font-size: 18px;
  line-height: 140%;
}

.footer_wrapper {
  width: 100%;
  max-width: 1920px;
  margin: auto;
}

.footer-column {
  padding: 0;
}

.footer-column_title {
  color: #ffffff;
}

.footer-column li {
  list-style: none;
  margin-top: 16px;
  color: #a4a4a4;
}

.footer-column li:first-of-type {
  margin-top: 24px !important;
}

.footer-column_buy li {
  display: flex;
  align-items: center;
}

.footer-column_buy .market-name {
	color: #a4a4a4 !important;
}

.footer-column .marketplace-icon{
	width: 24px;
	height: 24px; 
	user-select: none;
}

.footer-links {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #737373;
}

.footer-links_wrapper {
  padding: 20px 0;
  width: 100%;
  display: inline-block;
  margin: 0 120px;
}

.footer-links_item {
  float: left;
  color: #737373;
}

.footer-links_item__right {
  float: right;
}

.float-left {
  float: left;
}

.float-right {
  float: right;
}

.footer-content {
  padding-bottom: 30px;
}

.footer-divider {
  height: 1px;
  width: 100%;
  background: #737373;
  opacity: 30%;
}

.footer-columns__right {
  margin-top: 64px;
  font-size: 18px;
}

.footer-qrcode {
  display: flex;
  align-items: center;
	user-select: none;
}

.footer-qrcode_subtext {
  color: #a4a4a4;
  font-family: "Manrope";
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
}

.footer-request-form_email {
  background: #ffffff;
}

.footer-request-form_email:focus {
  outline: none;
}

.footer-request-form_subtext {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 500;
  font-size: 13px;
  line-height: 130%;
  color: #737373;
	max-width: 478px;
}

.footer-request-form_email {
  padding: 15px 24px;
  width: 100%;
  /* width: 420px; */
  /*397px?*/
  border-radius: 50px;
  box-sizing: border-box;
  border: 2px #ffffff solid;
  font-family: "Manrope";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #737373;
}

.footer-request-form_subtext-link {
  text-decoration: none;
  color: #275EC7;
}

.footer-request-form {
  position: relative;
  max-width: 478px;
  padding-right: 20px;
}

.footer-request-form_button {
  position: absolute;
  background: url(/local/templates/doma-main/icons/footer-arrow.svg);
  z-index: 200;
  top: 16px;
  right: 15px;
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  cursor: pointer;
  border: none;
}

.footer-request-form_error-message {
  font-size: 14px;
  font-weight: 500;
  line-height: 140%;
  color: #F93232;
  margin-top: 4px;
  display: none;
}

.social-icons_wrapper {
	user-select: none;
}


/*	Обработчик ошибки валидации e-mai  */
/*	Срабатывает при добавлении класса .error к .footer-request-form  */

.footer-request-form.error > .footer-request-form_email {
  border: 2px #F93232 solid;
}

.footer-request-form.error > .footer-request-form_button {
  background: url(/local/templates/doma-main/icons/footer-arrow-error.svg);
  background-repeat: no-repeat;
  cursor: not-allowed;
}

.footer-request-form.error > .footer-request-form_error-message {
  display: block;
}

/*	Конец обработчика ошибки  */


.footer .company-column{
	display: none; 
}

.footer-icon-googleplay {
  height: 52px;
	user-select: none;
}
.footer-icon-appstore__mobile {
  height: 51px;
	user-select: none;
}



/* end footer */

/** automatization-slider-badges **/ 

.voice-control .section_title{
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 200;
	font-size: 60px;
	line-height: 120%;
	letter-spacing: -0.02em;			
	color: #222222;
	text-align: center; 
}

.voice-helpers_slide{
	background-repeat: no-repeat; 
	width: 100%;
	height: 100%;
	max-height: 720px;
	max-width: 1110px;
	border-radius: 16px; 
}

.voice-helpers_slide .slider_content .title{
	display: flex;
	flex-direction: row;
	align-items: center; 
}

.voice-helpers_slide .slider_content .subtitle{
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 300;
	font-size: 40px;
	line-height: 120%;
	color: #222222
}


.badges{
	display: flex;
	flex-direction: row;
	align-items: center;
	width: 100%;
	max-width: calc(100% - 330px);
	justify-content: space-around;
	margin-left: 80px;
	margin-top: auto;
	margin-bottom: 80px;
	height: calc(100% + 160px);
}

.badges_helpers-icons{
	display: flex;
	flex-direction: row; 
	width: 100%;
	justify-content: space-around;
}

.badge{
	display: flex;
	flex-direction: row;
	background: #ffffff;
	width: 100%;
	box-sizing: border-box;
	padding: 8px;
	border-radius: 32px;
	align-items: center;
	max-height: 64px; 
}

.badge.device{
	width: 173px;
}

.badge.device img{
	width: 48px; 
	height: 48px; 
}

.badge.device span{
	font-family: 'Manrope'; 
	margin-left: 8px;
	font-size: 14px;
	font-weight: 600;
}

.helper__alisa{
	position: relative;
	max-width: 134px;
	max-height: 65px; 
}

.helper__alisa span{
	margin-right: 8px; 
}

.helper__alisa img{
	position: absolute; 
	right: -10%; 
}

.helper__salute{
	max-width: 174px;
}

.helper__marusya{
	max-width: 181px; 
	border-radius: 16px; 
}

.voice-helpers .slider_content{
	height: 720px; 
}

.voice-helpers .swiper-slide{
	max-width: 1120px; 
}

.voice-helpers .title_wrapper{
	margin-top: 80px; 
	margin-left: 80px; 
	display: flex; 
}

.voice-helpers_slide .slider_content .subtitle.color-ffffff{
	color: #ffffff; 
}

/** end automatization-slider-badges **/

.section-404 .subtext{
	font-size:18px; 
}

.form_item {
	width: 100% !important;
}

/* DEV */

.dev-support {
	position: absolute;
	right: 0;
	top: 0;
	width: 10px;
	height: 10px;
	cursor: pointer;
}

.support-modal {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 550;
	display: none;
}

.support-modal.active {
	display: flex;
	justify-content: center;
}

.support-modal__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.50);
}

.support-modal__content {
	padding: 40px 48px 48px;
	margin-top: auto;
	margin-bottom: auto;
	border-radius: 16px;
	background: #000521;
	z-index: 102;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	position: relative;
	overflow-y: scroll;
}

.support-modal__content::-webkit-scrollbar {
  display: none;
}

.support-modal__content-gradient {
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
	width: 320px;
	height: 500px;
	border-radius: 100px;
	opacity: 0.5;
	background: #3893FF;
	filter: blur(300px);
}

.support-modal__content .title {
	font-size: 40px;
	font-weight: 600;
	line-height: 130%;
	color: #A4A4A4;
}

.support-modal__content .subtitle {
	font-size: 18px;
	font-weight: 600;
	line-height: 120%;
	color: #A4A4A4;
}

.support-modal__content .subtitle a {
	color: #fff;
	transition: color .15s ease;
	margin-left: 4px;
}

.support-modal__content .subtitle a svg {
	position: relative;
	top: 1px;
	left: 4px;
}

.support-modal__content .subtitle a svg path {
	transition: all .2s ease;
}

.support-modal__content .subtitle a:hover {
	color: #275EC7;
}

.support-modal__content .subtitle a:hover svg path {
	stroke: #275EC7;
}

.support-modal__content form {
	display: flex;
	flex-direction: column;
}

.support__form_item {
    position: relative;
	width: 600px;
}

.support__form_item textarea {
	padding: 20px 16px 14px 24px;

}

.support__request_input-label {
    position: absolute;
    top: 15px;
    left: 26px;
    transition: all 0.5s ease;
    color: #737373;
    font-size: 16px;
    font-weight: 500;
	text-align: left;
	cursor: text;
	pointer-events: none;
}

.support__request_input-label__active {
    top: 5px;
    font-size: 12px;
}

.support__request_input {
    padding: 20px 16px 6px 24px;
    background: #FFFFFF;
    border-radius: 10px;
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    color: #222222;
    width: 100%;
	max-height: 52px;
    outline: none;
    border: 2px solid transparent;
}

.support__form_item-msg {
    font-size: 14px;
    font-weight: 500;
    line-height: 140%;
    color: #F93232;
    display: none;
}

.support__problem-type_shevron {
    background-image: url(/local/templates/doma-main/icons/support-request-form_shevron-up.png);
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    width: 24px;
    height: 25px;
    top: 16px;
    right: 23.5px;
    cursor: pointer;
    pointer-events: none;
}

.support__problem-type_shevron__down {
    background-image: url(/local/templates/doma-main/icons/support-request-form_shevron-down.png);
}

.support__problem-type_select {
    display: none;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: -1px -2px 8px rgba(0, 0, 0, 0.04), 1px 2px 8px rgba(34, 34, 34, 0.04);
    position: absolute;
    width: 100%;
    z-index: 20;
    box-sizing: border-box;
    top: 60px;
}

.support__problem-type_select__active {
    display: block;
}

.support__problem-type_option {
    list-style: none;
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    display: flex;
    align-items: center;
    color: #222222;
    padding: 12px 16px;
	text-align: start;
}

.support__problem-type_option:first-child {
    border-radius: 10px 10px 0 0;
}

.support__problem-type_option:last-child {
    border-radius: 0 0 10px 10px;
}

.support__problem-type_option:hover, .support__problem-type_option:active, .support__problem-type_option:focus {
    cursor: pointer;
    color: #275EC7;
    background: #e3e3e3;
}

#modal-label_modal-problem-type {
	cursor: pointer;
}

#modal-problem-type {
	cursor: pointer;
	caret-color: transparent;
}

#modal-problem-descr {
	width: 600px !important;
	height: 156px !important;
	min-height: 156px;
	resize: none;
}

.support__label_required-fields {
	text-align: start;
	color: #737373;
}

.support__form-error-msg {
    font-size: 16px;
    font-weight: 500;
    line-height: 140%;
    color: #F93232;
    display: none;
}

.modal-uploader-wrapper_subtitle{
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.modal-uploader-wrapper_subtitle-item {
	font-size: 18px;
	font-weight: 500;
	color: #737373;
	display: flex;
	align-items: start;
	text-align: left;
}

.modal-uploader-wrapper_subtitle-item::before {
	content: "";
	width: 8px;
	height: 8px;
	min-width:8px;
	min-height: 8px;
	margin-right: 8px;
	background-color: #275EC7;
	border-radius: 50%;
	position:relative;
	top: 9px;
}

.support__button_wrapper {
	display: flex;
}

.support__label_agreement {
	text-align: start;
	font-size: 16px;
	font-weight: 500;
	line-height: 140%;
	color: #A4A4A4;
}

.support__form_item .label_attachment {
	color: #fff;
	font-size: 18px;
	font-weight: 400;
	line-height: 140%;
	display: flex;
	align-items: center;
}

.support__label_agreement a{
	color: #275EC7;
}

.support__label_agreement a:hover{
	color: #1A4087;
}

.support-modal__content-close {
	position: absolute;
	top: 16px;
	right: 16px;
	cursor: pointer;
}

.modal-background {
	z-index: 10002 !important;
}

.attach-file_error__modal{
	color:#F93232; 
	text-align: left; 
}

.attach-file_error{
	color: #F93232; 
}

.attach-file_reqs{
	text-align:left;
	display: flex;
	flex-direction: column; 
	justify-content: left;
	margin-left:20px;  
}

.attach-file_req__item{
	color: #A4A4A4;
	font-family: Manrope;
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: 140%; 
	list-style:none;
}

.attach-file_req__item::before{
	content: ""; 
	background: #275EC7;
	font-weight: bold; 
	display: inline-block; 
	width: 8px;
	height: 8px;  
	position: absolute;
	left: 26px; 
	margin-top: 7px;
  	border-radius: 50px;
}

#support-dev{
	cursor: pointer; 
	width: fit-content;
}
#support-dev:hover {
	color: #FFF;
}

.display-block{
	display: block; 
}