:root {
	--white: #fff;
	--dark: #232323;
	--accent: #275ec7;
	--hover-main: #1a4087;
	--gray: #737373;
	--gray-light: #a4a4a4;
	--gray-extra-light: #e3e3e3;
	--background: #000521;
	--error: #ff5151;
	--disable: #698bcc;
	--blue: #5c8eec;
	--brand-colors-pantone-282: #0d2451;
	--brand-colors-pantone-2126: #275ec7;
	--brand-colors-pantone-2370: #4a39b4;
	--brand-colors-pantone-278: #98c1ff;
	--brand-colors-pantone-656: #e3eeff;
}

:root {
  --font-family: "Open Sans", sans-serif;
  --second-family: "Manrope", sans-serif;
  --third-family: "Montserrat", sans-serif;
  --font3: "SF Pro Display", sans-serif;
  --font4: "SF Pro Text", sans-serif;
}

* {
  padding: 0;
  margin: 0;
  list-style: none;
  outline: none;
  font-family: "Open Sans", sans-serif;
  box-sizing: border-box;
  font-size: 18px;
  font-weight: 400;
  line-height: 140%;
  color: var(--dark);
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}
a {
  text-decoration: none;
  cursor: pointer;
}
p.web {
  display: block;
}
p.mob {
  display: none;
}

ul li {
  list-style: none;
}

button {
  border: none;
}


img {
  -webkit-backface-visibility: hidden; 
  -ms-transform: translateZ(0); /* IE 9 */
  -webkit-transform: translateZ(0); /* Chrome, Safari, Opera */
  transform: translateZ(0);
	object-fit: contain;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}
html.scroll-hidden {
  overflow: hidden;
}
html.scroll-hidden body {
  overflow-y: hidden !important;
  touch-action: none;
  -ms-touch-action: none;
  -webkit-overflow-scrolling: none;
  overscroll-behavior: none;
}
::-webkit-scrollbar {
  height: 5px;
  width: 6px;
}
::-webkit-scrollbar-thumb {
  background: var(--brand-colors-pantone-2126);
  border-radius: 10px;
}
::-webkit-scrollbar-track {
  background: var(--white);
}
body {
  width: 100%;
  color: var(--black-main);
  background-color: #FDFDFD;
}
main {
  overflow-y: visible;
}
.container {
  width: 1440px;
  margin: 0 auto;
}

.c-hover {
  position: relative;
  overflow: hidden;
}
.c-hover-bg {
  transition: all .35s ease;
  position: absolute;
  bottom: 0;
  right: 0;
}
.c-hover:hover .c-hover-bg {
  transform: scale(1.05);
  z-index: .5;
}
.mob-br {
  display: none;
}
/* buttons */
button {
  background: transparent;
  cursor: pointer;
}
.button {
  display: block;
  width: fit-content;
  padding: 20px 40px;
  font-weight: 600;
  font-size: 24px;
  line-height: 120%;
  border-radius: 8px;
  transition: .2s all ease;
  cursor: pointer;
}
.button.icon {
  display: flex;
  align-items: center;
  gap: 8px;
}
.button.accent {
  padding: 15px 40px;
  background: var(--accent);
  color: var(--white);
}
.button.accent:hover {
  background: var(--hover-main);
}
.button.white {
  background-color: var(--white);
  color: var(--accent);
}
.button.white:hover{
  background-color: var(--brand-colors-pantone-656);
}
.button.secondary {
  border: 2px solid var(--accent);
  color: var(--accent);
}
.button.secondary:hover {
  background: var(--accent);
  border: 2px solid var(--accent);
  color: var(--white);
}
.button.secondary-white {
  border: 2px solid var(--white);
  color: var(--white);
}
.button.secondary-white:hover {
  border: 2px solid var(--accent);
  background: var(--accent);
  color: var(--white);
}
/* inputs */
form {
  position: relative;
}
.form-item {
  position: relative;
}
input {
  position: relative;
  width: 100%;
  padding: 22px 22px 5px;
  border: 2px solid var(--white);
  border-radius: 10px;
  transition: all .2s ease;
  z-index: 1;
}
input:focus {
  border-color: var(--brand-colors-pantone-2126);
}
label {
  position: absolute;
  left: 24px;
  top: 16px;
  color: var(--gray);
  transition: all .2s ease;
  z-index: 1;
}
label:not(.label_attachment) {
  pointer-events: none;
}
input:focus ~ label {
  font-size: 13px !important;
  top: 7px;
}
input:not(:placeholder-shown) + label {
  font-size: 13px !important;
  top: 7px;
}
input.error, input.error + label {
  border-color: var(--error);
  color: var(--error);
  background: #FDF6F6;
}
.form-item input.error ~ .arrow svg path {
  stroke: var(--error);
}
form .arrow {
  position: absolute;
  width: 24px;
  height: 24px;
  top: 14px;
  right: 16px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  z-index: 1;
}
.form-item .error-msg {
  position: relative;
  margin-top: 4px;
  font-size: 13px;
  color: #FA6767;
  margin-top: -16px;
  opacity: 0;
  transition: all .2s ease;
}
.form-item input.error ~ .error-msg {
  margin-top: 4px;
  opacity: 1;
}
/* font */
h1 {
  font-weight: 600;
  font-size: 85px;
  line-height: 100%;
  color: var(--white);
}
h2 {
  font-weight: 600;
  font-size: 64px;
  line-height: 100%;
  color: var(--dark);
  text-align: center;
}
h3 {
  font-weight: 600;
  font-size: 36px;
  line-height: 120%;
}
.fz-t1 {
  font-weight: 400;
  font-size: 28px;
  line-height: 120%;
}
.fz-t2 {
  font-weight: 400;
  font-size: 24px;
  line-height: 120%;
}
.fz-t3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 140%;
}
.fz-t5 {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
}
.fz-menu {
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
}

/* margin */
.mt-6 {
  margin-top: 6px;
}
.mt-8 {
  margin-top: 8px;
}
.mt-12 {
  margin-top: 12px;
}
.mt-16 {
  margin-top: 16px;
}
.mt-24 {
  margin-top: 24px;
}
.mt-32 {
  margin-top: 32px;
}
.mt-36 {
  margin-top: 36px;
}
.mt-40 {
  margin-top: 40px;
}
.mt-48 {
  margin-top: 48px;
}
.mt-50 {
  margin-top: 50px;
}
.mt-90 {
  margin-top: 90px;
}
.mt-150 {
  margin-top: 150px;
}

/* swiper */
.swiper-slide {
	-webkit-transform: translateZ(0);
	-webkit-backface-visibility: hidden;
}
.swiper-pagination-bullets.blue .swiper-pagination-bullet {
  background: var(--brand-colors-pantone-2126);
}
.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: var(--white);
}
.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, .8) !important;
}
.swiper-buttons {
  width: 100%;
}
.swiper-button-next {
  right: var(--swiper-navigation-sides-offset, 0);
}
.swiper-button-prev {
  left: var(--swiper-navigation-sides-offset, 0);
}
.swiper-pagination {
  bottom: var(--swiper-pagination-bottom, 32px) !important;
}
.custom-swiper-next, .custom-swiper-prev {
  width: 172px;
  height: 100%;
  display: flex;
  align-items: center;
  top: var(--swiper-navigation-top-offset, 0);
}
.custom-swiper-next::after, .custom-swiper-prev::after {
  content: '';
  display: block;
  width: 80px;
  min-width: 80px;
  height: 80px;
  min-height: 80px;
  background-image: url('/local/assets/img/doma-new/swiper-arrow.svg');
  background-repeat: no-repeat;
  background-color: #ffffff33 ;
  border-radius: 50%;
  transition: all .2s ease;
}
.custom-swiper-next:hover::after, .custom-swiper-prev:hover::after {
  background-color: #ffffff66;
}
.custom-swiper-next::after {
  transform: rotate(180deg);
}

/* animate */
.animate {
  opacity: 0;
  transform: translate(0, 100px);
  -webkit-transform: translate(0, 100px);
  transition: all .3s ease-in-out;
}
.animate.animate-started {
  opacity: 1;
  transform: none;
  -webkit-transform: none;
}

/* HEADER */
.mob {
  display: none;
}

/* BANNER */
.banner {
  width: 100%;
  height: 930px;
  background: var(--brand-colors-pantone-282);
  border-radius: 0 0 32px 32px;
  overflow: hidden;
}
.banner__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 273px 0;
}
.banner__title {
  position: relative;
  z-index: 2;
}
.banner__subtitle {
  position: relative;
  color: var(--white);
  font-weight: 400;
  font-size: 32px;
  line-height: 120%;
  z-index: 1;
}
.banner__illustration {
  position: relative;
  display: none;
}
.banner__illustration img {
  position: relative;
  z-index: 1;
}
.banner__illustration .blur-round {
  position: absolute;
  width: 120%;
  height: 70%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--brand-colors-pantone-2126);
  border-radius: 50%;
  filter: blur(80px);
  opacity: .7;
}
.main-banner-swiper .banner__video {
	max-width: 636px;
}
.main-banner-swiper .banner__video video {
	width: 100%;
}

/*

.banner__video {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 102px;
    right: 0;
    bottom: 0;
}
.banner__video video {
    height: 100%;
    position: absolute;
    bottom: 0;
    right: 0;
}*/

/* SMART HOME */
main .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-descr {
  text-align: center;
  max-width: 976px;
}
.section-descr.tab {
  display: none;
}
.smart-home__cards {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(3, 1fr);
}
.smart-home__cards-item {
  position: relative;
  padding: 32px;
  height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
}
#sensors {
  grid-column-start: 1;
  grid-column-end: 8;
}
#sensors .illustration.mob {
  display: none;
}
#relay {
  grid-column-start: 8;
  grid-column-end: 13;
}
#IR-remote {
  grid-column-start: 1;
  grid-column-end: 5;
}
#hub {
  grid-column-start: 5;
  grid-column-end: 9;
}
#local-center {
  grid-column-start: 9;
  grid-column-end: 13;
}
#camera {
  grid-column-start: 1;
  grid-column-end: 7;
}
#rosette {
  grid-column-start: 7;
  grid-column-end: 13;
}
#relay img, #hub img, #rosette img {
  bottom: -10px;
  right: -10px;
}
.smart-home__cards-item h3, .smart-home__cards-item p, .smart-home__cards-item .about-link{
  color: var(--white);
  position: relative;
  z-index: 2;
}
.smart-home__cards-item .subtitle.short {
  max-width: 420px;
}
.smart-home__cards-item .illustration {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 100%;
}

/* SCENARIOS */
.scenarios__slider-item {
  width: auto;
  position: relative;
}
.scenarios__slider-item .content {
  max-width: 712px;
  height: 167px;
  position: absolute;
  left: 240px;
  bottom: 100px;
  z-index: 2;
}
.scenarios__slider-item .content > * {
  color: var(--white);
}
.scenarios__slider-item img.tab {
  display: none;
}

/* CONTROL */
.control__grid {
  width: 100%;
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 1fr;
  z-index: 2;
}
.control__grid-item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
  height: 566px;
  background-color: var(--brand-colors-pantone-282);
  border-radius: 24px;
  overflow: hidden;
}
.control__grid-item h3, .control__grid-item p {
  color: var(--white);
  position: relative;
  z-index: 1;
}
.download__shadow {
  position: absolute;
  right: -50px;
  bottom: -70px;
  width: 470px;
  height: 515px;
  background-color: var(--accent);
  border-radius: 50%;
  filter: blur(70px);
  opacity: .4;
}
.download__img {
  position: absolute;
  bottom: 0;
  right: 0;
  max-width: 433px;
}
.ecosystem__shadow {
  position: absolute;
  width: 600px;
  height: 600px;
  background-color: var(--accent);
  border-radius: 50%;
  filter: blur(70px);
  opacity: .4;
}
.ecosystem__img {
  position: absolute;
  width: 92%;
  right: 50%;
  transform: translateX(50%);
  bottom: -30px;
}
.download.tab {
  display: none;
}

/* WIRELESS */
.dark {
  background: var(--background);
} 
.dark * {
  color: var(--white);
}
.wireless {
  padding-top: 150px;
  border-radius: 32px 32px 0 0;
}
.wireless__grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(3, 1fr);
  gap: 24px;
}
.wireless__grid-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
  background-color: var(--brand-colors-pantone-282);
  border-radius: 24px;
}
.wireless__grid-item h3 span {
  font-weight: 400;
  font-size: 36px;
  line-height: 120%;
  text-shadow: 0px 0px 13.1px #0085FF, 0px 0px 6.3px #0085FF;
}
.wireless__grid-item *:not(.c-hover-bg) {
  z-index: 1;
}
.wireless__grid-item > div:last-of-type {
  font-weight: 400;
  font-size: 24px;
  line-height: 120%;
}
#wireless-item-1 {
  grid-row-start: 1;
  grid-row-end: 3;
  min-height: 708px;
}
#wireless-item-1 .content {
  max-width: 350px;
}
#wireless-item-2 {
  min-height: 340px;  
}
#wireless-item-2 .content {
  max-width: 480px;
}
#wireless-item-2 > img.web {
  right: -10%;
}
#wireless-item-3 {
  min-height: 340px;
}
#wireless-item-3 .content {
  max-width: 430px;
}
#wireless-item-4 {
  grid-row-start: 2;
  grid-row-end: 4;
  min-height: 708px;
}
#wireless-item-4 .content {
  max-width: 450px;
}

/* INTERNET */
.internet {
  padding-top: 150px;
}
.internet-tab {
  display: none;
}
.internet__slider-buttons {
  position: relative;
  top: 300px;
}
.internet__slider-item {
  background: radial-gradient(circle at 100% 100%, #000521 0, #000521 22px, transparent 22px) 0% 0%/24px 24px no-repeat,
  radial-gradient(circle at 0 100%, #000521 0, #000521 22px, transparent 22px) 100% 0%/24px 24px no-repeat,
  radial-gradient(circle at 100% 0, #000521 0, #000521 22px, transparent 22px) 0% 100%/24px 24px no-repeat,
  radial-gradient(circle at 0 0, #000521 0, #000521 22px, transparent 22px) 100% 100%/24px 24px no-repeat,
  linear-gradient(#000521, #000521) 50% 50%/calc(100% - 4px) calc(100% - 48px) no-repeat,
  linear-gradient(#000521, #000521) 50% 50%/calc(100% - 48px) calc(100% - 4px) no-repeat,
  linear-gradient(transparent 0%, #275EC7 100%);
  border-radius: 24px;
  overflow: hidden;
  box-sizing: border-box;
  height: auto;
}
.internet__slider-item img {
  position: relative;
  width: calc(100% - 4px);
  left: 2px;
  top: 2px;  
  border-radius: 24px 24px 0 0;
}
.internet__slider-item .content {
  padding: 24px 32px 32px;
  text-align: center;
}

/* DESTINATION */
.destination {
  position: relative;
  padding-top: 150px;
  height: 941px;
}
.destination__head {
  position: absolute;
  margin-top: 48px;
  width: 100%;
  z-index: 2;
}
.destination-pagination {
  bottom: 0 !important;
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 48px;
  justify-content: center;
}
.destination-pagination-mob {
  display: none;
}
.destination-pagination > div {
  font-size: 24px; 
  font-weight: 400;
  line-height: 120%;
  cursor: pointer;
  text-align: center;
  transition: all .15s ease;
}
.destination-pagination > div:hover, .destination-pagination > div.active {
  font-weight: 600;
}
.destination-pagination > div::after {
  content: '';
  position: relative;
  top: 2px;
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px 2px 0 0;
  background-color: var(--white);
  transform: scale(0);
	transform-origin: center;
  transition: all .2s ease;
}
.destination-pagination > div.active::after {
  transform: scale(1);
}
.destination__slider-item {
  background-position: bottom;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 48px;
}
.destination__slider-item h3, .destination__slider-item p {
  position: relative;
  text-align: center;
  max-width: 700px;
  z-index: 4;
}
.destination__slider-item p.web {
  display: block;
}
.destination__slider-item p.mob {
  display: none;
}
.destination__filter {
  position: absolute;
  top: 0;
  left: 0;
  width: 300%;
  height: 100%;
  background: #00000042;
}

/* CHOICE */
.choice__blocks {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.choice__blocks-item {
  position: relative;
  width: 100%;
  padding-bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--brand-colors-pantone-282);
  border-radius: 24px;
}
.choice__blocks-item:nth-child(1) > img {
  width: 102.7%;
  margin-top: -90px;
}
.choice__blocks-item:nth-child(2) {
}
.choice__blocks-item:nth-child(2) > img {
  width: 100%;
}
.choice__blocks-item:nth-child(2) .content {
  position: relative;
  margin-top: -90px;
  z-index: 2;
}
.choice__blocks-item .content * {
  color: var(--white);
  text-align: center;
}
.choice__blocks-item .content p {
  height: 48px;
  max-width: 400px;
}
.button-wrapper {
  position: relative;
}
.button-wrapper__root {
    position: absolute;
    width: 100%;
    height: calc(100% + 25px);
	bottom: 50%;
	transform: translateY(50%);
}
.button-wrapper .button-wrapper__root {
  display: none;
}
.button-wrapper.active .button-wrapper__root {
  display: block;
}
.choice__blocks-item .button.markets {
  position: relative;
  z-index: 2;
  user-select: none;
} 
.choice__blocks-item .button.markets p {
  font-size: 24px;
  font-weight: 600;
  line-height: 120%;
  color: var(--white);
  pointer-events: none;
}
.choice__blocks-item .button.markets p.web {
  display: block;
}
.choice__blocks-item .button.markets p.mob {
  display: none;
}
.choice__blocks-item .button.markets img {
  pointer-events: none;
}
.choice__blocks-item .button.markets .chevron {
  top: 2px;
}
.choice__blocks-item .button.markets .chevron span {
  background-color: var(--white);
}
.choice__blocks-item .button.markets.active .chevron {
  top: -4px;
}
.choice__blocks-item .button.markets.active .chevron span:first-of-type {
  transform: rotate(225deg);
}
.choice__blocks-item .button.markets.active .chevron span:last-of-type {
  transform: rotate(-45deg);
}
.choice__markets {
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: var(--white);
  width: 314px;
  border-radius: 8px;
  overflow: hidden;
  transform: scale(.5);
  opacity: 0;
  pointer-events: none;
  cursor: default;
  transform-origin: 50% 150%;
  transition: all 0.2s cubic-bezier(0.390, 0.575, 0.565, 1.000);
  box-shadow: 1px 2px 8px 0 rgba(34, 34, 34, 0.04), -1px -2px 8px 0 rgba(0, 0, 0, 0.04);
  will-change: transform;
}
.choice__markets.show {
  z-index: 11;
  transform: scaleY(1);
  opacity: 1;
  pointer-events: all;
  cursor: pointer;
}
.choice__markets.show.top {
  bottom: 70px;
}
.choice__markets.show.bottom {
  bottom: -120px;
}
.choice__markets a {
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all .2s ease;
}
.choice__markets a:hover {
  background-color: var(--brand-colors-pantone-656);
}
.choice__markets a img {
	width: 30px;
	height: 30px;
}
.choice__markets ul > img, .choice__markets ul > p {
  display: none;
}
.choice__blocks-item > img.web {
  display: block;
  border-radius: 0 24px 0 0;
}
.choice__blocks-item > img.mob {
  display: none;
}

/* FOOTER */
footer {
  padding-top: 40px;
  background: var(--brand-colors-pantone-282);
}
.footer__wrapper {
  display: flex;
  justify-content: space-between;
}
.footer__subscribe {
  max-width: 325px;
}
.footer__subscribe p {
  color: #fff;
}
.footer__subscribe-descr {
  font-size: 13px;
  color: var(--gray-light);
}
.footer__subscribe-descr a {
  font-size: 13px;
  color: var(--brand-colors-pantone-278);
  transition: all .2s ease;
}
.footer__subscribe-descr a:hover {
  font-weight: 500;
}
.footer__menu ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__menu.products {
  width: 168px;
}
.footer__menu.help {
  width: 174px;
}
.footer__menu a {
  font-size: 16px;
  color: #ffffff99;
  transition: all .2s ease;
}
.footer__menu a:hover {
  color: #FFFFFFCC;
  font-weight: 600;
}
.footer__menu-title {
  color: #fff;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.footer__links * {
  color: var(--white);
}
.footer__links-block {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer__links-block a {
  width: 50px;
  height: 50px;
}
.footer__links-block a img {
  width: 50px;
  height: 50px;
}
.footer__store {
  padding: 24px;
  height: fit-content;
  border: 1px solid var(--brand-colors-pantone-278);
  border-radius: 32px;
}
.footer__store .qr {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer__store .mob-download {
  display: none;
}
.footer__store .qr img {
  width: 91px;
  height: 91px;
}
.footer__store .qr p {
  color: var(--white);
  font-size: 13px;
}
.footer__store .links {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__bottom {
  padding: 24px 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.footer__bottom * {
  color: #FFFFFF80;
}
.footer__bottom a {
  text-align: center;
  transition: all .2s ease;
  width: 258px;
}
.footer__bottom a:hover {
  font-weight: 500;
}

.modal {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transition: all .2s ease;
}
.modal.active {
  opacity: 1;
  pointer-events: all;
}
.modal__wrapper {
  position: relative;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--white);
  border-radius: 16px;
  z-index: 2;
  transform: scale(.5);
  transition: all .2s ease;
}
.modal.active .modal__wrapper {
  transform: scale(1);
}
.modal__wrapper .message {
  font-weight: 600;
  font-size: 24px;
  line-height: 120%;
  color: var(--dark);
}
.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  cursor: pointer;
}
.modal__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: rgba(0, 5, 33, 0.4);
}

/* SIMPLE BUY */
.simple-buy .image-block {
  margin-top: 77px;
  position: relative;
}
.simple-buy .image-block > img {
  display: block;
  width: 100%;
}
.simple-buy .image-block > img.mob {
  display: none;
}
.simple-buy .button-wrapper {
  position: absolute;
  width: fit-content;
  display: flex;
  justify-content: center;
  bottom: 110px;
  right: 50%;
  transform: translateX(50%);
}
.simple-buy .button {
  position: realtive;
  padding: 20px 92px;
  width: fit-content;
  z-index: 2;
}
.simple-buy .button > p {
  color: var(--accent);
  font-weight: 600;
  font-size: 24px;
  line-height: 120%;
  user-select: none;
  pointer-events: none;
}
.simple-buy .button > svg {
  pointer-events: none;
}
.simple-buy .choice__markets {
  left: initial;
}
.simple-buy .button.markets .chevron {
  top: 2px;
  left: -12px;
}
.simple-buy .button.markets .chevron span {
  background-color: var(--accent);
}
.simple-buy .button.markets.active .chevron {
  top: -4px;
}
.simple-buy .button.markets.active .chevron span:first-of-type {
  transform: rotate(225deg);
}
.simple-buy .button.markets.active .chevron span:last-of-type {
  transform: rotate(-45deg);
}


/* MEDIA */
@media screen and (max-width: 1600px) {
  .scenarios__slider-item img {
    width: 100%;
  }
  .scenarios__slider-item .content {
    left: 150px;
    bottom: 60px;
  }
}
@media screen and (max-width: 1440px) {
  .xxl-display {
    display: none;
  }
  .fz-t2 {
    font-size: 20px;
  }
  .fz-menu {
    font-size: 16px;
  }
  .container {
    width: 1200px;
  }
  .header__navbar-elem.smart-home .chevron {
    top: 12px;
  }
  #local-center > img {
    right: -10%;
    bottom: -10%;
  }
  #hub > img {
    right: -20px;
    bottom: -20px;
  }
  .smart-home__cards-item {
    height: 300px;
  }
  .smart-home__cards-item .subtitle.short {
    max-width: 280px;
  }
  .smart-home__cards-item .about-link {
    font-size: 20px;
  }
  .smart-home__cards-item .about-link img {
    margin-bottom: -1px;
  }
  .choice__blocks-item {
    justify-content: flex-end;
  }
  footer {
    padding-bottom: 40px;
  }
  .footer__wrapper {
    display: grid;
    gap: 32px;
    grid-template-columns: repeat(4, auto);
    grid-template-rows: repeat(2, auto);
  }
  .footer__subscribe {
    display: flex;
    flex-direction: column;
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 2;
    grid-row-end: 2;
    max-width: 435px;
  }
  .footer__store {
    max-width: 335px;
  }
}

@media screen and (max-width: 1200px) {
  h1 {
    font-size: 72px;
  }
  .fz-t1 {
    font-size: 24px;
  }
  .container {
    width: 100%;
    padding: 0 40px;
  }
  .header__logo, .header__logo svg {
    width: 140px;
    height: 40px;
  }
  .header__navbar {
    gap: 24px;
  }
  .header__buy {
    width: fit-content;
    padding: 12px 24px;
  }
  .banner {
    height: 920px;
  }
  .banner__wrapper {
    flex-direction: column;
    padding-top: 150px;
  }
  .banner__illustration img {
    margin-top: 72px;
  }
  /* .smart-home {
    position: relative;
  } */
  #local-center > img,#hub > img, #rosette > img {
    right: 0;
    bottom: 0;
  }
  .smart-home__cards {
    overflow: auto;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  #sensors {
    grid-row-start: 1;
    grid-row-end: 1;
    grid-column-start: 1;
    grid-column-end: 3;
  }
  #relay {
    grid-column-start: auto;
    grid-column-end: auto;
  }
  #IR-remote {
    grid-column-start: auto;
    grid-column-end: auto;
  }
  #hub {
    grid-column-start: auto;
    grid-column-end: auto;
  }
  #local-center {
    grid-column-start: auto;
    grid-column-end: auto;
  }
  #camera {
    grid-column-start: auto;
    grid-column-end: auto;
  }
  #rosette {
    grid-column-start: auto;
    grid-column-end: auto;
  }
  #sensors .subtitle {
    max-width: 400px;
  }
  .scenarios__slider-item img.web {
    display: block;
  }
  .download.web {
    z-index: 2;
  }
  .download__img {
    width: 70%;
  }
  .footer__store {
    max-width: 330px;
  }
}

@media screen and (max-width: 992px) {
  h2 {
    font-size: 52px;
  }
  h3 {
    font-size: 28px;
    font-weight: 600;
    line-height: 110%;
  }
  .fz-t1 {
    font-size: 18px;
  }
  .mob {
    display: block;
  }
  .button {
    font-size: 20px;
  }
  header {
    padding: 0;
    top: 0;
    position: fixed;
  }
  nav {
    display: none;
  }
  .header__logo, .header__logo svg {
    width: 110px;
    height: 32px;
  }
  .header__buy {
    display: none;
  }
  .mobile-burger {
    padding: 9px 6px;
    width: 32px;
    height: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  header.fixed .mobile-burger span, header.fixed .mobile-burger span::before, header.fixed .mobile-burger span::after {
    background: var(--accent);
  }
  .mobile-burger span {
    width: 100%;
    height: 1px;
    background: var(--white);
  }
  .mobile-burger span::before, .mobile-burger span::after {
    content: '';
    display: block;
    position: relative;
    width: 100%;
    height: 1px;
    background-color: var(--white);
    transition: transform .2s ease;
  }
  .mobile-burger span::before {
    top: 7px;
  }
  .mobile-burger span::after {
    top: 13px;
  }
  .mobile-burger.active span { 
    height: 0;
  }
  .mobile-burger.active span::before {
    transform: rotate(45deg);
  }
  .mobile-burger.active span::after {
    transform: rotate(-45deg);
    top: 6px;
  }
  .mobile-menu {
    padding: 30px 40px;
    position: fixed;
    top: 52px;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--brand-colors-pantone-282);
    transform: translateY(-120%);
    transition: transform .2s ease;
    z-index: 9;
  }
  .mobile-menu.active {
    transform: translateY(0);
  }
  .mobile-menu__list {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .mobile-menu__list-item * {
    color: var(--white);
  }
  .mobile-menu__list-item.accordion {
    display: flex;
    flex-direction: column;
  }
  .mobile-menu__list-item.accordion .menu-accordion {
    display: flex;
  }
  .mobile-menu__list-item.accordion .menu-accordion .chevron {
    top: 11px;
  }
  .mobile-menu__list-item.accordion .menu-accordion .chevron span {
    background: var(--white);
  }
  .mobile-menu__list-item.accordion .menu-accordion.active .chevron {
    top: 6px;
  }
  .mobile-menu__list-item.accordion .menu-accordion.active .chevron span:first-of-type {
    transform: rotate(225deg);
    /* top: -2px; */
  }
  .mobile-menu__list-item.accordion .menu-accordion.active .chevron span:last-of-type {
    transform: rotate(-45deg);
    /* top: -5px; */
  }
  /* .mobile-menu__list-item .menu-accordion img {
    transform: rotate(180deg);
    transition: all .2s ease;
  }
  .mobile-menu__list-item .menu-accordion.active img {
    transform: rotate(0);
  } */
  .mobile-menu__list-item.accordion .menu-accordion-content {
    display: flex;
    padding-left: 24px;
    flex-direction: column;
    gap: 24px;
    max-height: 0;
    overflow: hidden;
    margin-top: 0;
    transition: all .4s ease;
  }
  .mobile-menu__list-item.accordion .menu-accordion-content.active {
    max-height: 120px;
    margin-top: 24px;
  }
  .mobile-menu__buy p {
    font-size: 20px;
    font-weight: 600;
    line-height: 110%;
    color: var(--white);
  }
  .mobile-menu__buy-list {
    display: flex;
    gap: 12px;
  }
  .mobile-menu__buy-list a, .mobile-menu__buy-list a img{
    width: 50px;
    height: 50px;
  }
	.banner__wrapper {
		justify-content: flex-start;
	}
	.banner__illustration {
		display: block;
	}
	.banner__video {
		display: none;
	}
  .smart-home__cards {
    width: 100%;
  }
/*
  #sensors .illustration.web {
    display: none;
  }
  #sensors .illustration.mob {
    display: block;
  }
*/
  #sensors {
    grid-row-start: 1;
    grid-row-end: 1;
    grid-column-start: 1;
    grid-column-end: 3;
  }
  #relay {
    grid-column-start: auto;
    grid-column-end: auto;
  }
  #IR-remote {
    grid-column-start: auto;
    grid-column-end: auto;
  }
  #hub {
    grid-column-start: auto;
    grid-column-end: auto;
  }
	#hub .illustration.mob {
		right: 50%;
		bottom: 50%;
	}
  #local-center {
    grid-row-start: 3;
    grid-row-end: 3;
    grid-column-start: 1;
    grid-column-end: 3;
  }
  #camera {
    grid-row-start: 5;
    grid-row-end: 5;
    grid-column-start: 1;
    grid-column-end: 3;
  }
  #rosette {
    grid-column-start: auto;
    grid-column-end: auto;
  }
  .smart-home__cards-item .subtitle {
    display: none;
  }
  #sensors .subtitle, #local-center .subtitle, #camera .subtitle {
    display: block;
    max-width: 330px;
  }
  .smart-home__cards-item .illustration.mob {
    height: auto;
    width: calc(100% - 144px) !important;
    right: 50% !important;
    bottom: 50% !important;
    transform: translate(50%, 55%);
  }
  #relay .illustration.web, #IR-remote .illustration.web, #rosette .illustration.web, #hub .illustration.web {
    display: none;
  }
  #IR-remote .illustration.mob, #rosette .illustration.mob, #hub .illustration.mob {
    width: calc(100% - 160px);
  }
  .smart-home__cards-item .about-link {
    font-size: 16px;
  }
  .smart-home__cards-item .about-link img {
    margin-bottom: -2px;
  }
  .c-hover:hover .c-hover-bg {
    transform: scale(1);
  }

  .scenarios__slider .tab-hide {
    display: none;
  }
  .scenarios__slider .swiper-wrapper {
    flex-direction: column;
  }
  .scenarios__slider .custom-swiper-next, .scenarios__slider .custom-swiper-prev, .scenarios__slider .swiper-pagination {
    display: none;
  }  
  .scenarios__slider-item .content {
    left: 40px;
    right: 40px;
    bottom: 40px;
  }
  .scenarios__slider-item img.web {
    display: none;
  }
  .scenarios__slider-item img.tab {
    display: block;
    height: 100%;
    width: 100%;
  }
  .section-descr.web {
    display: none;
  }
  .section-descr.tab {
    display: block;
  }
  .control__grid {
    grid-template-columns: auto;
    grid-template-rows: repeat(2, 1fr);
    gap: 16px;
  }
  .download__img {
    height: auto;
    width: auto;
  }
  .download.web {
    display: none;
  }
  .download.tab {
    display: block;
    z-index: 2;
  }
  .download__icons-grid {
    width: fit-content;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  .download__icons-grid a {
    width: fit-content;
  }
  .download__icons-grid a img {
    display: block;
  }
  .download__shadow {
    width: 100%;
    height: 100%;
  }
  .wireless__grid-item img.mob {
    display: none;
  }
  .internet.web {
    display: none;
  }
  .internet-tab {
    display: block;
    padding-top: 150px;
  }
  .internet-tab__cards {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .internet-tab__cards-item {
    position: relative;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
  }
  .internet-tab__cards-item img {
    display: block;
    width: 100%;
  }
  .internet-tab__cards-item .content {
    position: absolute;
    top: 40px;
    left: 40px;
    right: 40px;
  }
  .destination {
    padding-left: 40px;
    padding-right: 40px;
    height: 980px;
  }
  .destination__head {
    position: relative;
    margin-top: 0;
  }
  .destination__slider {
    margin-top: 24px;
  }
  .destination__slider-item {
    height: 660px;
    border-radius: 12px;
  }
  .destination-pagination {
    display: none;
  }
  .destination-pagination-mob {
    display: block;
  }
  .destination .swiper-pagination {
    bottom: var(--swiper-pagination-bottom, 48px) !important;
  }
  .choice__blocks {
    grid-template-columns: 1fr
  }
  .footer__wrapper {
    grid-template-columns: repeat(3, auto);
  }
  .footer__store {
    grid-column-start: 3;
    grid-column-end: 4;
    grid-row-start: 2;
    grid-row-end: 2;
  }
}
@media screen and (max-width: 768px) {
  h1 {
    font-size: 48px;
  }
  .fz-t1 {
    font-size: 20px;
    font-weight: 400;
    line-height: 130%;
  }
  .container {
    width: 100%;
    padding: 0 20px;
  }
  .banner {
    height: 768px;
  }
  .banner__wrapper {
    flex-direction: column;
    position: relative;
    padding-top: 114px;
  }
  .banner__wrapper > div:first-of-type {
    align-self: flex-start;
  }
  .banner__illustration img {
    width: 100%;
    margin-top: 77px;
  }
  .mobile-menu {
    padding: 30px 20px;
  }
  #IR-remote .illustration.mob, #rosette .illustration.mob, #hub .illustration.mob {
    width: calc(100% - 72px);
  }
  .control__grid-item {
    height: 456px;
  }
  .download__img {
    width: 60%;
  }

  .wireless__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  #wireless-item-1 {
    grid-column-start: auto;
    grid-column-end: auto;
    grid-row-start: auto;
    grid-row-end: auto;
    min-height: 480px;
  }
  #wireless-item-2 {
    grid-column-start: auto;
    grid-column-end: auto;
    grid-row-start: auto;
    grid-row-end: auto;
    min-height: 480px;
  }
  #wireless-item-3 {
    grid-column-start: auto;
    grid-column-end: auto;
    grid-row-start: auto;
    grid-row-end: auto;
    min-height: 480px;
  }
  #wireless-item-4 {
    grid-column-start: auto;
    grid-column-end: auto;
    grid-row-start: auto;
    grid-row-end: auto;
    min-height: 480px;
  }
  .wireless__grid-item > img {
    width: 100%;
  }
  .wireless__grid-item:nth-child(2) > img, .wireless__grid-item:nth-child(3) > img {
    height: 100%;
  }
  .destination {
    height: 926px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .destination__slider-item {
    height: 535px;
  }
  footer {
    padding-bottom: 0;
  }
  .footer__wrapper {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, auto);
    gap: 48px;
  }
  .footer__store .qr {
    display: none;
  }
  .footer__store .mob-download {
    display: block;
    font-weight: 600;
    font-size: 18px;
    line-height: 140%;
    color: var(--white);
  }
  .footer__menu.products {
    grid-column-start: auto;
    grid-column-end: auto;
    grid-row-start: 1;
    grid-row-end: 1;
    width: 100%;
  }
  .footer__menu.help {
    grid-column-start: auto;
    grid-column-end: auto;
    grid-row-start: 2;
    grid-row-end: 2;
    width: 100%;
  }
  .footer__menu.products ul, .footer__menu.help ul {
    display: grid;
    grid-template-columns: repeat(2, 200px);
  }
  .footer__subscribe {
    grid-column-start: auto;
    grid-column-end: auto;
    grid-row-start: 4;
    grid-row-end: 4;
  }
  .footer__subscribe > p:first-of-type {
    font-weight: 600;
    font-size: 18px;
    line-height: 140%;
  }
  .footer__store {
    grid-column-start: auto;
    grid-column-end: auto;
    grid-row-start: 5;
    grid-row-end: 5;
    border: none;
    border-radius: 0;
    padding: 0;
  }
  .footer__store .links {
    margin-top: 16px;
    gap: 12px;
    justify-content: flex-start;
  }
  .footer__links {
    grid-column-start: auto;
    grid-column-end: auto;
    grid-row-start: 3;
    grid-row-end: 3;
    display: flex;
    flex-direction: row;
    gap: 100px;
  }
  .footer__bottom {
    padding-bottom: 20px;
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 12px;
  }
}
@media screen and (max-width: 480px) {
  /* animate horizontal */
  .animate-horizontal {
    transition: all .3s ease-in-out;
  }
  .animate-horizontal.animate-horizontal-started {
    animation: horizontalEntries 1s ease;
    animation-delay: .5s;
  }
  @keyframes horizontalEntries {
    0% {
      padding: 0 20px;
    }
    50% {
      padding: 0 10px;
    }
    100% {
      padding: 0 20px;
    }
  }


  .mob-br {
    display: block;
  }
  p.web {
    display: none;
  }
  p.mob {
    display: block;
  }
  h1 {
    font-size: 36px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: -0.04em;
  } 
  h2 {
    font-weight: 400;
    font-size: 26px;
    line-height: 110%;
  }
  h3 {
    font-weight: 600;
    font-size: 15px;
    line-height: 110%;
  }
  .fz-t1 {
    font-size: 16px;
    font-weight: 400;
    line-height: 130%;
  }
  .fz-t4, .fz-t4-mob {
    font-weight: 400;
    font-size: 12px;
    line-height: 117%;
  }
  .fz-t3-mob {
    font-size: 14px;
    line-height: 130%;
    letter-spacing: -0.015em;
  }
  .sm-mt-4 {
    margin-top: 4px;
  }
  .sm-mt-6 {
    margin-top: 6px;
  }
  .sm-mt-8 {
    margin-top: 8px;
  }
  .sm-mt-16 {
    margin-top: 16px;
  }
  .sm-mt-24 {
    margin-top: 24px;
  }
  .sm-mt-32 {
    margin-top: 32px;
  }
  .sm-mt-60 {
    margin-top: 60px;
  }
  .button {
    font-weight: 600;
    font-size: 14px;
    line-height: 130%;
    padding: 11px;
    text-align: center;
  }
  .sm-display-none {
    display: none;
  }
  .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
  .swiper-pagination {
    bottom: var(--swiper-pagination-bottom, 0) !important;
  }

  .banner {
    height: 594px;
    border-radius: 0 0 24px 24px;
  }
  .banner .swiper-pagination {
    bottom: var(--swiper-pagination-bottom, 20px) !important;
  }
  .mobile-menu__buy p {
    font-size: 15px;
  }
  .smart-home__cards-item .about-link {
    font-weight: 600;
    font-size: 12px;
    line-height: 130%;
  }
  .about-link p {
    font-weight: 600;
    font-size: 12px;
    line-height: 130%;
    width: auto;
  }
  .smart-home__cards-item .about-link img {
    margin-top: -4px;
  }
  .smart-home .button {
    width: 100%;
  }

  .smart-home__cards {
    width: 100vw;
    padding: 0 20px;
    overflow: auto;
    grid-template-columns: 228px 156px 156px 156px 228px;
    grid-template-rows: repeat(2, 1fr);
    gap: 8px;
	scrollbar-width: none;
	-ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .smart-home__cards::-webkit-scrollbar {
	display: none;
    height: 0;
    width: 0;
  }
  .smart-home__cards-item {
    height: auto;
    min-height: 160px;
    padding: 16px;
    border-radius: 12px;
  }
  .smart-home__cards-item .illustration {
    height: auto;
  }
	.smart-home__cards-item .illustration.mob {
		width: auto;
	}
  #sensors .illustration.web {
    display: none;
  }
  #sensors .illustration.mob {
	width: 100% !important;
    display: block;
  }
  #sensors {
    grid-row-start: 1;
    grid-row-end: 3;
    grid-column-start: auto;
    grid-column-end: auto;
  }
  #relay {
    grid-row-start: 2;
    grid-row-end: 2;
    grid-column-start: auto;
    grid-column-end: auto;
  }
  #IR-remote {
    grid-column-start: 4;
    grid-column-end: 4;
  }
  #hub {
    grid-row-start: 1;
    grid-row-end: 1;
    grid-column-start: 3;
    grid-column-end: 3;
  }
  #local-center {
    grid-row-start: 2;
    grid-row-end: 2;
    grid-column-start: 3;
    grid-column-end: 5;
  }
  #camera {
    grid-column-start: 5;
    grid-column-end: 5;
    grid-row-start: 1;
    grid-row-end: 3;
  }
  #rosette {
    grid-row-start: 1;
    grid-row-end: 1;
    grid-column-start: 2;
    grid-column-end: 2;
  }

  
  #relay .illustration.mob, #IR-remote .illustration.mob, #hub .illustration.mob {
    width: 80% !important;
    right: 50% !important;
    bottom: 50% !important;
    transform: translate(50%, 55%);
  }
  #rosette .illustration.mob {
    width: 70% !important;
    right: 50% !important;
    bottom: 49% !important;
    transform: translate(50%, 55%);
  }

  #local-center .illustration {
    height: 100%;
  }
  #camera .illustration {
    width: 100%;
  }
  .smart-home__cards-item .illustration.mob {
    transform: translate(50%, 52%);
  }

  .scenarios__slider-item .content {
    height: auto;
    left: 20px;
    right: 20px;
    bottom: 16px;
  }
  .control__grid {
    grid-template-rows: auto;
    gap: 8px;
  }
  .control__grid-item {
    padding: 16px !important;
    height: 253px;
    min-height: 230px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 12px;
  }
  .download.tab {
    margin-top: 40px;
  }
  .download__icons-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 12px;
  }
  .download__img {
    width: 55%;
  }
  .ecosystem__img {
    width: 85%;
    height: 85%;
    bottom: 0;
  }
  .wireless {
    padding-top: 60px;
    border-radius: 24px 24px 0 0;
  }
  .wireless__grid {
    grid-template-columns: 228px 156px 156px;
    grid-template-rows: repeat(2, 1fr);
    width: 100vw;
    padding: 0 20px;
    overflow: auto;
    gap: 8px;
	scrollbar-width: none;
	-ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .wireless__grid::-webkit-scrollbar {
	display: none;
    width: 0;
    height: 0;
  }
  #wireless-item-1 {
    grid-column-start: 2;
    grid-column-end: 4;
    grid-row-start: 1;
    grid-row-end: 1;
    min-height: 160px;
  }
  #wireless-item-2 {
    grid-column-start: 3;
    grid-column-end: 4;
    grid-row-start: 2;
    grid-row-end: 2;
    min-height: 160px;
  }
  #wireless-item-3 {
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 2;
    grid-row-end: 2;
    min-height: 160px;
  }
  #wireless-item-4 {
    grid-column-start: 1;
    grid-column-end: 1;
    grid-row-start: 1;
    grid-row-end: 3;
    min-height: 160px;
    padding-right: 5px;
  }
  .wireless__grid-item  {
    padding: 16px;
    border-radius: 12px;
  }
  .wireless__grid-item h3 span {
    font-weight: 600;
    font-size: 15px;
    line-height: 110%;
    text-shadow: none;
  }
  .wireless__grid-item .descr.web {
    display: none;
  }
  .wireless__grid-item img.web {
    display: none;
  }
  .wireless__grid-item img.mob {
    display: block;
  }
  .wireless__grid-item > div:nth-child(2) {
    font-size: 12px;
    font-weight: 600;
  }
  .wireless__grid-item > div:nth-child(2) img {
    margin-top: -3px;
  }
  .wireless .button {
    width: 100%;
  }
  .internet-tab {
    padding-top: 60px;
  }
  .internet-tab__cards-item {
    border-radius: 12px;
  }
  .internet-tab__cards-item .content {
    top: 16px;
    left: 16px;
    right: 16px;
  }
  .destination {
    height: auto;
    padding-top: 60px;
    padding-bottom: 80px;
    border-radius: 0 0 24px 24px;
  }
  .destination__slider-item {
    height: 434px;
    padding: 16px;
    align-items: start;
  }
  .destination__slider-item:not(:nth-child(2)) {
    background-position-y: bottom;
    background-position-x: 40%;
    background-size: 300%;
  }
  .destination__slider-item p {
    text-align: left;
    height: 54px;
  }
  .destination__slider-item p.web {
    display: none;
  }
  .destination__slider-item p.mob {
    display: block;
  }
  .choice__blocks {
    gap: 8px;
  }
  .choice__blocks-item {
    align-items: flex-start;
    padding: 16px;
    border-radius: 12px;
    overflow: hidden;
  }
  .choice__blocks-item:nth-child(2) .content {
    margin-top: initial;
  }
  .choice__blocks-item > img {
    position: absolute;
    bottom: 0;
    right: 0;
    top: auto;
    width: auto !important;
  }
  .choice__blocks-item:nth-child(1) > img.mob {
    height: 95%;
  }
  .choice__blocks-item:nth-child(2) > img.mob {
    height: 100%;
  }
  .choice__blocks-item .button.markets .chevron {
    left: auto;
    margin-left: initial;
  }
  .choice__blocks-item > img.web {
    display: none;
  }
  .choice__blocks-item > img.mob {
    display: block;
  }
  .choice__blocks-item .content * {
    text-align: left;
  }
  .choice__blocks-item .content p {
    height: auto;
  }
  .choice__blocks-item .button.markets {
    padding: 11px 32px 11px 30px;
    z-index: 0;
  }
  .choice__blocks-item .button.markets p {
    font-size: 14px;
    font-weight: 600;
    line-height: 130%;
    color: var(--white);
  }
  .choice__blocks-item .button.markets p.web {
    display: none;
  }
  .choice__blocks-item .button.markets p.mob {
    display: block;
  }
  .choice__markets {
    position: fixed;
    display: block;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: #00052166;
    z-index: 20;
    border-radius: 0;
    transform: scale(1);
  }
  .choice__markets ul {
    padding: 16px 20px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    border-radius: 12px 12px 0 0;
    transform: translateY(150%);
    transition: transform .2s ease;
  }
  .choice__markets {
    width: 100% !important;
  }
  .choice__markets.show {
    bottom: 0 !important;
  }
  .choice__markets.show ul {
    transform: translateY(0);
  }
  .choice__markets ul a {
    padding: 0;
    font-size: 16px;
  }
  .choice__markets ul > img {
    position: absolute;
    top: 16px;
    right: 16px;
  }
  .choice__markets ul > p {
    font-size: 20px;
  }
  .choice__markets ul > img, .choice__markets ul > p {
    display: block;
  }

  .footer__wrapper {
    grid-template-columns: repeat(2, auto);
    grid-template-rows: repeat(4, auto);
    gap: 32px;
  }
  .footer__menu.products {
    grid-column-start: 1;
    grid-column-end: 1;
    grid-row-start: 1;
    grid-row-end: 1;
  }
  .footer__menu.help {
    grid-column-start: 2;
    grid-column-end: 2;
    grid-row-start: 1;
    grid-row-end: 1;
  }
  .footer__menu.products ul, .footer__menu.help ul {
    display: flex;
  }
  .footer__menu.products ul li, .footer__menu.help ul li {
    height: 19px;
  }
  .footer__menu.products ul li a, .footer__menu.help ul li a {
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    letter-spacing: -0.01em;
    color: var(--white);
  }
  .footer__links {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 2;
    grid-row-end: 2;
    gap: 65px;
  }
  .footer__subscribe {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 3;
    grid-row-end: 3;
  }
  .footer__subscribe-descr {
    font-weight: 400;
    font-size: 12px;
    line-height: 117%;
    color: var(--gray-light) !important;
  }
  .footer__store {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 4;
    grid-row-end: 4;
  }
  .footer .fz-t3, .footer__subscribe > p:first-of-type, .footer__store .mob-download {
    font-weight: 600;
    font-size: 15px;
    line-height: 110%;
  }
  .footer__bottom {
    padding-bottom: 50px;
  }
  .footer__bottom a {
    width: auto;
  }

  .modal.active {
    padding: 0 20px;
  }
  .modal__wrapper .message {
    text-align: center;
  }

  .simple-buy .image-block {
    width: 100vw;
    margin-top: 24px;
    overflow: hidden;
    display: flex;
    justify-content: center;
  }
  .simple-buy .image-block > img.web {
    display: none;
  }
  .simple-buy .image-block > img.mob {
    display: block;
 	width: 100%;
  }
  .simple-buy .button-wrapper {
    bottom: 48px;
    width: calc(100% - 40px);
    right: initial;
    transform: initial;
  }
  .simple-buy .button {
    padding: 11px;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .simple-buy .button p {
    font-weight: 600;
    font-size: 14px;
    line-height: 130%;
  }
	#modal-problem-descr {
		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: var(--font-family);
    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: var(--font-family);
    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: 100% !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: var(--font-family);
	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;
}
