* {
	box-sizing: border-box;
}

:root {
	--grey: #a5a5a5;
	--white: #ffffff;
	--red: #FF4000;
	--blue: #00B2FF;
	--black: #1D1D1D;
	--hover: #D00C00;
	--futura-m: 'Futura-M', sans-serif;
	--futura-b: 'Futura-B', sans-serif;
}

html {
	font-size: 3vw;
}

body {
	margin: 0;
	padding: 0;
	font-family: 'Open Sans', sans-serif;
	font-weight: 600;
	font-style: normal;
	font-size: 1.4rem;
	color: var(--grey);
	background: var(--black);
}

img {
	max-width: 100%;
	height: auto;
}

p {
	padding: 0;
	margin: 0;
	color: var(--grey);
	margin-bottom: 1rem;
}

h1 {
	font-size: 4rem;
	line-height: 90%;
	font-family: var(--futura-b);
	font-weight: normal;
	font-style: normal;
	text-transform: uppercase;
	margin: 10rem 0 0;
}

h1 span {
	font-size: 6rem;
	color: var(--white);
	font-family: var(--futura-m);
}

h2 {
	font-size: 2.8rem;
	line-height: 120%;
	font-family: var(--futura-b);
	font-weight: normal;
	font-style: normal;
	text-transform: uppercase;
	margin: 5rem 0 0;
	color: var(--white);
	margin-bottom: 1rem;
}

h2 span {
	color: var(--red);
}

h3 {
	font-size: 2.2rem;
	line-height: 100%;
	font-family: var(--futura-b);
	font-weight: normal;
	font-style: normal;
	text-transform: uppercase;
	color: var(--white);
	margin: 2rem 0;
}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}


/* li {
    margin-bottom: 1rem;
} */

button {
	margin: 0;
	padding: 0;
	border: none;
	font: inherit;
	color: inherit;
	background-color: transparent;
	cursor: pointer;
	line-height: normal;
	outline: none !important;
}

.wrapper {
	padding: 0 2rem;
}

.overflowHidden {
	overflow: hidden;
}


/* HEADER */

.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 2;
	background: transparent;
	transition: background .15s;
}

.header.scroll {
	background: rgba(29, 29, 29, .8);
}

.header__container {
	padding: 2rem;
	display: flex;
	align-items: center;
}

.header__burger {
	width: 2rem;
	height: 2rem;
	position: relative;
	margin-right: 1.5rem;
}

.header__burger>div {
	height: 0.2rem;
	width: 2rem;
	background: var(--grey);
	position: absolute;
	top: calc(50% - 0.1rem);
	left: 0;
}

.header__burger>div:first-child {
	top: calc(50% - 0.7rem);
}

.header__burger>div:last-child {
	top: calc(50% + 0.5rem);
}

.header__desc {
	display: none;
}

.header__logo {
	flex-grow: 1;
	display: flex;
}

.header__logo a {
	display: flex;
}

.header__logo__mobile {
	display: flex;
}

.header__logo__mobile svg {
	width: 5.3rem;
	height: 1.6rem;
}

.header__logo__desktop {
	display: none;
}

.header__phone {
	display: none;
}

.header__phone a {
	color: #EEEEEE;
	text-decoration: none;
}

.header__callback-icon {
	display: flex;
	margin-left: 1.5rem;
}

.header__callback-icon svg {
	width: 2.1rem;
	height: 2.1rem;
}

.header__nav {
	display: none;
}

.header__nav li a {
	color: var(--grey);
	text-decoration: none;
}

.header__callback-btn {
	display: none;
}

.header__mobile-menu-popup {
	position: fixed;
	top: 0;
	left: -100%;
	background: #0a0a0a;
	padding: 2.5rem 3rem 2.5rem 2rem;
	transition: 300ms;
	-webkit-transition: 300ms;
	-moz-transition: 300ms;
	-ms-transition: 300ms;
	-o-transition: 300ms;
	width: 100%;
	overflow-y: auto;
	max-height: 100%;
}

.header__mobile-menu-popup.active {
	left: 0;
}

.header__mobile-menu-popup__close {
	margin-bottom: 2rem;
}

.header__mobile-menu-popup__close svg {
	width: 1.8rem;
	height: 1.8rem;
}

.header__mobile-menu-popup>nav li {
	margin-bottom: 1.5rem;
}

.header__mobile-menu-popup a {
	color: var(--white);
	text-decoration: none;
	font-size: 2rem;
}

@media screen and (min-width: 768px) {
	.header__mobile-menu-popup__close {
		margin-bottom: 1rem;
	}

	.header__mobile-menu-popup__close svg {
		width: 1.5rem;
		height: 1.5rem;
	}

	.header__mobile-menu-popup a {
		font-size: 1.5rem;
	}

	.header__mobile-menu-popup>nav li {
		margin-bottom: 1rem;
	}

	.header__mobile-menu-popup>nav li:last-child {
		margin-bottom: 1.5rem;
	}
}


/* HEADER END*/

.main {}


/* FIRST SCREEN */

.first-screen__bg {
	background-image: url(../img/bg-first-screen-mobile.jpg);
	width: 100%;
	height: 40rem;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
}

.first-screen__bg:after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(90deg, #000000 -3.43%, rgba(0, 0, 0, 0) 135.7%);
}

.first-screen__content {
	margin: 0 2rem 10rem;
}

.first-screen__callback {
	display: flex;
	justify-content: center;
}

.first-screen__callback__btn {
	background: var(--red);
	color: var(--white);
	font-style: normal;
	font-weight: 600;
	font-size: 1.6rem;
	line-height: 100%;
	padding: 1.4rem 0;
	margin-top: 9rem;
	width: 25rem;
	text-align: center;
	border-radius: .3rem;
	-webkit-border-radius: .3rem;
	-moz-border-radius: .3rem;
	-ms-border-radius: .3rem;
	-o-border-radius: .3rem;
}

.first-screen__select-language-page,
.first-screen__select-language {
	display: none;
}

.header__selected-language {
	border: 1px solid var(--grey);
	position: relative;
	padding: .5rem;
}

.header__name-language {
	display: flex;
	align-items: center;
	font-weight: 600;
	font-size: 1.8rem;
	line-height: 150%;
	color: #A5A5A5;
}

.header__name-language::before {
	content: "";
	display: inline-block;
	width: 2.1rem;
	height: 2.1rem;
	background-image: url('../img/world.svg');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	margin-right: .8rem;
}

.header__selected-language::after {
	content: "";
	display: inline-block;
	width: 1rem;
	height: .6rem;
	background-image: url('../img/arrow2.svg');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
	top: 50%;
	right: 1rem;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
}

.header__language {
	font-weight: 600;
	font-size: 1.8rem;
	line-height: 150%;
	color: var(--grey);
	padding: 1rem 0 0;
}

.header__language.hide {
	display: none;
}

.header__languages {
	display: none;
	padding: 0 1rem 1rem;
	background: var(--black);
	overflow: hidden;
}


/* FIRST SCREEN END */


/* NAME THOR */

.name-thor {}

.name-thor__container {
	margin: 5rem 2rem;
}

.name-thor__img img {
	width: 100%;
	margin-top: 2rem;
}


/* NAME THOR END */


/* AVAILABLE */

.available-sounds {
	margin-bottom: 6rem;
	overflow: hidden;
}

.available-sounds__content {
	margin: 0 2rem 3rem;
}

.available-sounds__tabs {
	display: flex;
	border: 1px solid var(--grey);
	margin: 0 2rem 3.5rem;
	position: relative;
}

.available-sounds__tabs::after {
	content: '';
	width: 50%;
	height: 2px;
	background: var(--red);
	position: absolute;
	bottom: -1px;
	left: 0;
	transition: left 300ms ease-out;
	-webkit-transition: left 300ms ease-out;
	-moz-transition: left 300ms ease-out;
	-ms-transition: left 300ms ease-out;
	-o-transition: left 300ms ease-out;
}

.available-sounds__tab {
	width: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.2rem 0;
	position: relative;
}

.tab__red {
	border-right: 1px solid var(--grey);
}

.available-sounds__tab__icon {
	height: 2.5rem;
	margin-right: .5rem;
}

.available-sounds__tab__icon svg {
	width: 2.5rem;
	height: 2.5rem;
}

.available-sounds__tab__name {
	font-size: 2.8rem;
	line-height: 100%;
	font-family: var(--futura-b);
	font-weight: normal;
	font-style: normal;
	text-transform: uppercase;
	color: var(--white);
}

.tab__blue {}

.available-sounds__tabs_content {
	max-width: calc(1170px + 4rem);
	margin: 0 auto;
	position: relative;
}

.available-sounds__tab_content p {
	margin: 0 2rem 3rem;
}

.available-sounds__tab_content {
	display: none;
}

.available-sounds__tab_content.active {
	display: block;
}

.available-sounds__list {
	display: flex;
	justify-content: center;
}

.slick_navigation .slick-arrow {
	font-size: 0;
	z-index: 1;
	width: 65px;
	height: 65px;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	background: #000;
	position: absolute;
	top: 50%;
	transform: translateY(-100%);
	-webkit-transform: translateY(-100%);
	-moz-transform: translateY(-100%);
	-ms-transform: translateY(-100%);
	-o-transform: translateY(-100%);
}

.slick_navigation .slick-arrow:after {
	content: '';
	position: absolute;
	left: calc(50% - 4px);
	right: 0;
	top: calc(50% - 6px);
	bottom: 0;
	border-top: 2px solid var(--grey);
	border-left: 2px solid var(--grey);
	width: 12px;
	height: 12px;
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
}

.slick_navigation .slick-prev {
	left: -80px;
}

.slick-arrow:hover:after {
	border-color: var(--white);
}

.slick_navigation .slick-next {
	right: -80px;
}

.slick_navigation .slick-next:after {
	left: calc(50% - 8px);
	transform: rotate(135deg);
	-webkit-transform: rotate(135deg);
	-moz-transform: rotate(135deg);
	-ms-transform: rotate(135deg);
	-o-transform: rotate(135deg);
}

.slick .slick-list {
	overflow: visible;
	padding: 0 !important;
}

.available-sounds__item.slick-slide {
	outline: none;
}

.available-sounds__item.slick-active {
	opacity: 1;
	pointer-events: auto;
}

.available-sounds__item {
	width: 26rem;
	margin: 0 2rem;
	opacity: 0.15;
	transition: opacity .15s;
	pointer-events: none;
}

.available-sounds__item__slide {
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.33);
	background: #242424;
	height: 30rem;
	overflow-y: hidden;
	position: relative;
}

.available-sounds__item__desc:after {
	content: '';
	position: absolute;
	top: 0;
	height: 8rem;
	background: linear-gradient(360deg, #242424 0%, rgba(36, 36, 36, 0) 100%);
	width: 100%;
}

.available-sounds__item__mp3 {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 5rem;
	background: #000;
}

.red_audio .mejs__button button,
.red_audio .mejs__time {
	color: #FF4200;
}

.red_audio .mejs__time-total {
	background: hsl(16deg 100% 50% / 30%);
}

.red_audio .mejs__time-hovered {
	background: hsl(16deg 100% 50% / 50%);
}

.red_audio .mejs__time-loaded {
	background: hsl(16deg 100% 50% / 30%);
}

.red_audio .mejs__time-current {
	background: hsl(16deg 100% 50% / 90%);
}

.blue_audio .mejs__button button,
.blue_audio .mejs__time {
	color: var(--blue);
}

.blue_audio .mejs__time-total {
	background: hsl(198deg 100% 50% / 30%);
}

.blue_audio .mejs__time-hovered {
	background: hsl(198deg 100% 50% / 50%);
}

.blue_audio .mejs__time-loaded {
	background: hsl(198deg 100% 50% / 30%);
}

.blue_audio .mejs__time-current {
	background: hsl(198deg 100% 50% / 90%);
}

.mejs__controls {}

.available-sounds__item__slide__img {
	position: relative;
}

.available-sounds__item__slide__img img {
	width: 100%;
}

.available-sounds__item__slide__sticker {
	position: absolute;
	top: 0;
	left: 0;
	width: 4rem;
	height: 4rem;
}

.available-sounds__item__slide__sticker img {
	width: 100%;
	height: 100%;
}

.available-sounds__item__title {
	margin: 0 1.5rem;
}

.available-sounds__item__title h3 {
	margin: 1rem 0;
}

.available-sounds__item__desc {
	margin: 0 1.5rem;
	position: relative;
}

.available-sounds__item__popup {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--black);
	padding: 0 2rem;
	overflow-y: auto;
	display: none;
}

.available-sounds__item__popup.open {
	display: block;
	z-index: 3;
}

.available-sounds__item__popup__title {}

.available-sounds__item__popup__img {
	margin-bottom: 1.5rem;
}

.available-sounds__item__popup__desc {
	margin: 0 2rem;
}

.available-sounds__item__popup__close {
	position: absolute;
	top: 2rem;
	right: 2rem;
}

.available-sounds__item__popup__close svg {
	width: 1.9rem;
	height: 1.9rem;
}

.available-sounds__item__popup__container {
	background: #242424;
	box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.33);
	padding: 0 0 2rem;
}

.slick .slick-dots {
	display: flex;
	justify-content: center;
	margin-top: 1.5rem;
	font-size: 0;
}

.slick .slick-dots li {
	width: .5rem;
	height: .5rem;
	background: var(--grey);
	border-radius: .4rem;
	-webkit-border-radius: .4rem;
	-moz-border-radius: .4rem;
	-ms-border-radius: .4rem;
	-o-border-radius: .4rem;
	margin-right: .5rem;
}

.slick .slick-dots li.slick-active {
	background: var(--white);
}

.slick .slick-dots li:last-child {
	margin-right: 0;
}

@media screen and (min-width: 1170px) {
	.available-sounds__item__popup {
		padding: 0;
		background: rgb(0 0 0 / 80%);
	}

	.available-sounds__item__popup__wrapper {
		width: 770px;
		margin: 5vw auto 0;
		background: #242424;
		position: relative;
		padding: 0.1px;
	}

	.available-sounds__item__popup__close {
		cursor: pointer;
		top: 1.6rem;
		right: 1.5rem;
	}

	.available-sounds__item__popup__close svg {
		width: 1rem;
		height: 1rem;
	}

	.available-sounds__item__popup__title {
		height: 4rem;
	}

	.available-sounds__item__popup__title h3 {
		margin: 0;
		padding: 1rem 0 0 2rem;
	}

	.available-sounds__item__popup__img {}

	.available-sounds__item__popup__img img {
		margin: 0 auto;
		display: block;
	}

	.available-sounds__item__popup__container {}

	.available-sounds__item__popup__desc {}

	.available-sounds__item__popup__audio {
		margin: 0 2rem;
	}

	.available-sounds__item__slide__img {
		border: 1px solid transparent;
		cursor: pointer;
	}

	.available-sounds__item__slide__img:hover {
		border: 1px solid var(--red);
	}

	.blue_audio .available-sounds__item__slide__img:hover {
		border: 1px solid var(--blue);
	}

	.available-sounds__item__slide__img:hover .work-example__img__youtube-icon .video-play-shape {
		fill: #f00;
		fill-opacity: 1;
	}
}


/* AVAILABLE END */


/* SELECT DEVICE */

.select-device {
	background: #0a0a0a;
}

.select-device__container {
	padding: 0 2rem 6rem;
}

.select-device__content {
	text-align: center;
	padding: 5rem 1.5rem 2.4rem;
}

.select-device__content h2 {
	margin-top: 0
}

.select-device__desc {
	color: var(--white);
	font-size: 1.3rem;
}

.select-device__items {}

.select-device__item {
	border: 2px solid #252525;
	padding: 1.5rem 1.5rem 2.5rem;
	margin-bottom: 1.5rem;
}

.select-device__item__container {
	display: flex;
	flex-direction: row-reverse;
}

.select-device__item__content {
	position: relative;
	width: 15.4rem;
	margin-top: 1rem;
}

.select-device__item__title {
	font-family: var(--futura-b);
	font-size: 2rem;
	line-height: 100%;
	text-transform: uppercase;
	margin-bottom: .8rem;
}

.select-device__item__desc {
	font-size: 1.1rem;
	line-height: 140%;
}

.select-device__item__icon {
	position: absolute;
	top: 0;
	right: 0;
}

.select-device__item__icon svg {
	width: 4.4rem;
	height: 2.2rem;
}

.select-device__item__img {
	margin-left: 2rem;
	width: 13.4rem;
}

.select-device__item__img img {
	width: 100%;
}

.select-device__item__order-btn {
	background: var(--red);
	color: var(--white);
	font-size: 1.2rem;
	line-height: 100%;
	text-align: center;
	padding: 1.2rem 0;
	margin-top: 1.5rem;
	border-radius: .3rem;
	-webkit-border-radius: .3rem;
	-moz-border-radius: .3rem;
	-ms-border-radius: .3rem;
	-o-border-radius: .3rem;
}


/* SELECT DEVICE END */


/* VIDEO SLIDER */

.video-slider {}

.video-slider__container {}

.video-slider__content {
	margin-bottom: 3rem;
}

.video-slider__content ul {}

.video-slider__content ul li {}

.video-slider__item {
	width: 26.4rem;
	margin: 0 auto;
	cursor: pointer;
}

.video-play-icon {
	fill: var(--white);
}

.video-play {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.video img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}

.video {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
	background-color: black;
	display: inline-block;
}

.video:hover .video-play-shape,
.video:focus .video-play-shape {
	fill: #ff0000;
	fill-opacity: 1;
}

.video-play-shape {
	fill: #f00;
	fill-opacity: 1;
}

.video-slider__select {
	display: flex;
	justify-content: center;
	margin-top: 1.5rem;
}

.video-slider__selector {
	width: 0.7rem;
	height: 0.7rem;
	background: var(--grey);
	border-radius: .4rem;
	-webkit-border-radius: .4rem;
	-moz-border-radius: .4rem;
	-ms-border-radius: .4rem;
	-o-border-radius: .4rem;
	margin-right: 1rem;
}

.video-slider__selector.active {
	background: var(--white);
}

.video-slider__selector:last-child {
	margin-right: 0;
}

.slider-arrows {
	display: none;
}

.video-slider__list__items .slick-list {
	overflow: hidden;
}

.video-slider__popup {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--black);
	overflow-y: auto;
	z-index: 3;
	display: none;
	padding: 2rem;
}

.video-slider__popup.open {
	display: block;
}

.video-slider__rezina__close {
	margin-bottom: 2rem;
	text-align: right;
}

.video-slider__rezina {
	width: 100%;
	padding-top: 50%;
	position: relative;
}

.video-slider__rezina iframe,
.video-slider__rezina object,
.video-slider__rezina embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.instagram-media {
	margin: 20px auto 20px !important;
	min-width: unset !important;
}

@media screen and (min-width: 1170px) {
	.video-slider__popup {
		padding: 0;
		background: rgb(0 0 0 / 80%);
	}

	.video-slider__popup__wrapper {
		width: 770px;
		margin: 0 auto;
		background: #242424;
		box-shadow: 0 4px 10px rgba(0, 0, 0, 0.33);
		transform: translateY(25%);
		position: relative;
		padding: 40px 0 0;
	}

	.video-slider__rezina__close {
		position: absolute;
		cursor: pointer;
		top: 8px;
		right: 8px;
	}

	.video-slider__rezina__close svg {
		width: 24px;
		height: 24px;
	}
}


/* VIDEO SLIDER END */


/* SLIDER ANNEX */

.slider-annex {
	max-width: 1170px;
	margin: 0 auto;
}

.slick_4.slick .slick-list {
	overflow: hidden;
}

.slider-annex__items {
	padding: 1rem 1rem 0;
}

.slider-annex__item {}

.slider-annex__item_wrap {
	display: flex;
	flex-direction: column-reverse;
}

.slider-annex__item_img {
	background: #000;
	padding: 3rem 0 0;
	cursor: pointer;
}

.slider-annex__item_img._no-click {
	cursor: default;
}

.slick-dots li {
	cursor: pointer;
}

.slider-annex__item_img img {
	width: 20rem;
}

.slider-annex__item_content {
	position: relative;
}

.slider-annex__item_content h2 {}

.slider-annex__item_content p {}

.slider-annex__item_content p span {}

.slider-annex__links {
	display: flex;
	flex-direction: column;
	position: absolute;
	right: 1.5rem;
	bottom: -13.5rem;
}

.slider-annex__links__apps {
	display: flex;
	flex-direction: column;
}

.slider-annex__links__apps a {}

.slider-annex__links__apps svg {
	border: 1px solid #A5A5A5;
	border-radius: 6px;
	width: 9.7rem;
	height: 3rem;
}

.slider-annex__pdf-link {
	display: flex;
	color: var(--white);
	align-self: flex-end;
}

.slider-annex__pdf-link__icon {}

.slider-annex__pdf-link__icon svg {
	width: 3rem;
	height: 3rem;
}

.slider-annex__pdf-link__text {
	display: none;
	width: 15rem;
	margin: .1rem 0 0 .7rem;
}

.slider-annex_popup {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--black);
	overflow-y: auto;
	z-index: 3;
	display: none;
}

.slider-annex_popup.open {
	display: block;
}

.slider-annex_popup_wrap {
	position: relative;
	margin: 0 1rem;
}

.slider-annex_popup__close {
	position: absolute;
	top: 2rem;
	right: 0;
	cursor: pointer;
}

.slider-annex_popup__close svg {
	width: 1.9rem;
	height: 1.9rem;
}

.slider-annex_popup_headline {
	padding: 0.1px;
}

.slider-annex_popup_video {
	width: 100%;
	padding-top: 50%;
	position: relative;
	margin-bottom: 2rem;
}

.slider-annex_popup_video iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.slider-annex_popup_info {}

.slider-annex_popup_info p {}

.slider-annex__pdf-link svg {
	border: 1px solid var(--grey);
	border-radius: 8px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	-ms-border-radius: 8px;
	-o-border-radius: 8px;
}

@media screen and (min-width: 1170px) {
	.slider-annex {}

	.slider-annex__items {
		padding: 0;
	}

	.slider-annex__items .slick-list {
		padding: 2rem 5rem 0;
		overflow: hidden;
	}

	.slider-annex__item {
		background: #242424;
	}

	.slider-annex__item_wrap {
		flex-direction: row;
		padding: 40px 90px 0 0;
	}

	.slider-annex__item_content h2 {
		margin: 0 0 1rem;
	}

	.slider-annex__item_content p {
		max-width: 560px;
	}

	.slider-annex__links {
		position: initial;
		margin: 3rem 0 0;
	}

	.slider-annex__links__apps svg {
		width: 11rem;
		height: 3.3rem;
	}

	.slider-annex__links__apps a:hover svg {
		border-color: var(--blue);
	}

	.slider-annex__links__apps {
		flex-direction: row;
		margin-bottom: 1rem;
	}

	.slider-annex__links__apps a {
		margin-right: 1rem;
	}

	.slider-annex__links__apps a:last-of-type {
		margin: 0;
	}

	.slider-annex__pdf-link {
		align-self: auto;
	}

	.slider-annex__pdf-link:hover svg {
		border-color: var(--blue);
	}

	.slider-annex__pdf-link:hover {
		color: var(--blue);
	}

	.slider-annex__pdf-link__text {
		display: block;
	}

	.slider-annex__item_img {
		background: transparent;
		padding: 0;
		width: 390px;
		margin-right: 3rem;
	}

	.slider-annex__item_img img {
		width: auto;
	}

	.slider-annex_popup.open {
		padding: 0;
		background: rgb(0 0 0 / 80%);
	}

	.slider-annex_popup_wrap {
		width: 770px;
		margin: 5vh auto;
		background: #242424;
		box-shadow: 0 4px 10px rgb(0 0 0 / 33%);
		padding: 0 30px 30px;
	}

	.slider-annex_popup_video {
		margin-bottom: 30px;
	}

	.slider-annex_popup__close svg {
		width: 24px;
		height: 24px;
	}

	.slider-annex_popup__close {
		top: 30px;
		right: 30px;
	}
}


/* SLIDER ANNEX END */


/* EXAMPLE WORK */

.work-example {
	overflow-x: hidden;
	margin-bottom: 6rem;
}

.work-example__wrap {
	max-width: 1170px;
	margin: 0 auto;
}

.work-example__content {}

.work-example__content h2 {}

.work-example__carousel {}

.work-example__lists {}

.work-example__list {
	width: 26rem;
	margin: 0 2rem;
	opacity: 0.15;
	transition: opacity .15s;
	pointer-events: none;
	background: #242424;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.33);
	overflow: hidden;
	position: relative;
	outline: none;
}

.work-example__list.slick-active {
	opacity: 1;
	pointer-events: auto;
}

.work-example__img_video {
	padding: 0;
	display: block;
	position: relative;
	height: 14.4rem;
	overflow: hidden;
}

.work-example__img_video img {
	position: relative;
	top: inherit;
	left: inherit;
	width: auto;
}

.work-example__img__youtube-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.work-example__info {
	position: relative;
	padding: 0 1.5rem;
}

.work-example__info h3 {
	margin: 1rem 0;
}

.work-example__info p {
	margin: 0;
	height: 12.6rem;
	overflow-y: hidden;
}

.work-example__info:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	height: 8rem;
	background: linear-gradient(360deg, #242424 0%, rgba(36, 36, 36, 0) 100%);
	width: 100%;
}

.work-example__more_info {
	background: #000;
	color: var(--white);
	text-align: center;
	height: 4.4rem;
	line-height: 4.4rem;
	cursor: pointer;
}

.work-example__more_info:hover {
	color: var(--grey);
}

.work-example__popup__lists {}

.work-example__popup__list {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--black);
	padding: 0 2rem;
	overflow-y: auto;
	z-index: 5;
	display: none;
}

.work-example__popup__list.open {
	display: block;
}

.work-example__popup__list_wrap {
	position: relative;
	padding: 2rem 1rem;
}

.work-example__popup__close {
	position: absolute;
	top: 2rem;
	right: 1rem;
	cursor: pointer;
}

.work-example__popup__close svg {
	width: 1.8rem;
	height: 1.8rem;
}

.work-example__popup_video {
	width: 100%;
	padding-top: 50%;
	position: relative;
}

.work-example__popup_video iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.work-example__popup_headline {}

.instagram-post {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: auto;
	grid-column-gap: 1rem;
}

.work-example__popup_headline h3 {
	margin: 0 0 1rem;
}

@media screen and (min-width: 1170px) {
	.instagram-post {
		grid-column-gap: 10px;
	}

	.work-example__list {
		margin: 0 10px;
	}

	.available-sounds__item__slide {
		height: 440px;
	}

	.work-example__popup__list {
		padding: 0;
		background: rgb(0 0 0 / 80%);
	}

	.work-example__popup__list_wrap {
		width: 770px;
		margin: 5vh auto;
		background: #242424;
		position: relative;
		padding: 30px;
	}

	.work-example__popup__close {
		top: 30px;
		right: 30px;
	}

	.work-example__popup__close svg {
		width: 24px;
		height: 24px;
		display: flex;
	}

	.work-example__popup_video {
		margin-bottom: 30px;
	}
}


/* EXAMPLE WORK END */


/* ABOUT system */

.about-system {
	margin-bottom: 7rem;
}

.about-system__container {
	display: flex;
	flex-direction: column;
}

.about-system__container__img {
	display: none;
}

.about-system__img {
	transform: translateX(-1.2rem);
	-webkit-transform: translateX(-1.2rem);
	-moz-transform: translateX(-1.2rem);
	-ms-transform: translateX(-1.2rem);
	-o-transform: translateX(-1.2rem);
	margin-bottom: 2rem;
	display: block;
}

.about-system__img img {
	width: 100%;
}

.about-system__content {}

.order-btn {
	background: var(--red);
	color: var(--white);
	text-align: center;
	padding: 1.2rem 0;
	margin-top: 3rem;
	border-radius: .3rem;
	-webkit-border-radius: .3rem;
	-moz-border-radius: .3rem;
	-ms-border-radius: .3rem;
	-o-border-radius: .3rem;
}


/* ABOUT system END */


/* BENEFITS */

.benefits {
	background: #000;
	padding: 5rem 0 6rem;
}

.benefits h2 {
	margin: 0 0 2rem;
}

.benefits__container {}

.benefits__item {
	display: flex;
	margin-bottom: 2.7rem;
	align-items: center;
}

.benefits__item__icon {
	display: flex;
}

.benefits__item__icon svg {
	width: 3.7rem;
	height: 3.7rem;
}

.benefits__item__text {
	margin-left: 1.5rem;
}


/* BENEFITS END */


/* SYSTEM INSTALL */

.system-instal {}

.system-instal__container {
	margin-bottom: 6rem;
}

.system-instal__video {}

.video-play svg {
	width: 6.8rem;
	height: 4.8rem;
}

.btn-reset {}

.video-play-shape {}

.video-play-icon {}

.system-instal__content {}

.system-instal__content__list {
	margin-top: 2rem;
	border-bottom: 2px solid #242424;
	margin-bottom: 2.7rem;
}

.system-instal__content__list__item {
	display: flex;
	align-items: center;
	margin-bottom: 1.5rem;
}

.system-instal__content__list__item__icon {
	display: flex;
	margin-right: 1.5rem;
}

.system-instal__content__list__item__icon svg {
	width: 3.7rem;
	height: 3.7rem;
}

.system-instal__content__list__item__text {}

.system-instal__content__pdf-link a {
	display: flex;
	color: var(--white);
}

.system-instal__content__pdf-link__icon {
	margin-right: 1rem;
}

.system-instal__content__pdf-link__icon svg {
	border: 1px solid var(--grey);
	border-radius: .8rem;
	-webkit-border-radius: .8rem;
	-moz-border-radius: .8rem;
	-ms-border-radius: .8rem;
	-o-border-radius: .8rem;
}

.system-instal__content__pdf-link__text {
	max-width: 17rem;
}

.system-instal__video__img {
	position: relative;
}

.system-instal__video__img img {
	width: 100%;
}

.system-instal__video__play {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
}

.system-instal__video__img:hover .video-play-shape,
.system-instal__video__img:focus .video-play-shape {
	fill: #ff0000;
	fill-opacity: 1;
}

.system-instal__video__play svg {
	width: 6.8rem;
	height: 4.8rem;
}

.system-instal__popup {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--black);
	padding: 0 2rem;
	overflow-y: auto;
	z-index: 5;
	display: none;
}

.system-instal__popup.open {
	display: block;
}

.system-instal__popup_wrap {
	position: relative;
	padding: 2rem 1rem;
}

.system-instal__popup_close {
	position: absolute;
	top: 2rem;
	right: 1rem;
	cursor: pointer;
}

.system-instal__popup_close svg {
	width: 1.8rem;
	height: 1.8rem;
}

.system-instal__popup_headline {}

.system-instal__popup_headline h3 {
	margin: 0 0 1rem;
}

.system-instal__popup_video {
	width: 100%;
	padding-top: 50%;
	position: relative;
}

.system-instal__popup_video iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.system-instal__popup p {
	margin-top: 2.4rem;
	font-weight: 600;
	font-size: 1.5rem;
	line-height: 150%;
	color: var(--grey);
}

@media screen and (min-width: 1170px) {
	.system-instal__popup {
		padding: 0;
		background: rgb(0 0 0 / 80%);
	}

	.system-instal__popup_wrap {
		width: 770px;
		margin: 5vh auto;
		background: #242424;
		position: relative;
		padding: 30px;
	}


	.system-instal__popup p {
		margin-top: 24px;
		font-size: 15px;
	}
}


/* SYSTEM INSTALL END */


/* CONTACTS */

.contacts {
	background: #000;
	margin-bottom: 5rem;
}

.contacts__container {}

.contacts__container h2 {
	color: var(--red);
	margin-bottom: 1.5rem;
}

.contacts__block {}

.contacts__block__ {
	display: flex;
	flex-direction: column;
}

.contacts__block__ a {
	color: var(--grey);
	text-decoration: none;
}

.contacts__block__.main {}

.contacts__block__title {
	font-size: 1.8rem;
	color: var(--white);
	margin-bottom: 1.5rem;
}

.contacts__block__links {
	display: flex;
	flex-direction: column;
	padding-bottom: 1rem;
	border-bottom: 2px solid #1D1D1D;
	margin-bottom: 2rem;
}

.contacts__block__:last-child .contacts__block__links {
	border-bottom: unset;
}

.contacts__block__link {
	margin-bottom: 1.5rem;
}

.contacts__block__link a {
	display: flex;
	align-items: center;
}

.contacts__block__link__icon {
	margin-right: 1rem;
	display: flex;
}

.contacts__block__link__icon.wapp svg {
	width: 2rem;
	height: 2rem;
}

.contacts__block__link__icon.tel svg {
	width: 1.8rem;
	height: 1.8rem;
}

.contacts__block__link__icon.mail svg {
	width: 1.8rem;
	height: 1.4rem;
}

.contacts__block__link__text {}

.contacts__block__.partners {}

.contacts__block__.support {}


/* CONTACTS END */


/* CITYS */

.contacts-citys {}

.contacts-citys__container {}

.contacts-citys__row {
	padding-bottom: 3.3rem;
	margin-bottom: 3.3rem;
	border-bottom: 1px solid var(--grey);
}

.your-city {
	margin-bottom: 1rem;
}

.your-city h2 {
	margin: 0;
}

.your-city__selected {}

.change-city {
	margin-bottom: 2rem;
}

.change-city__ {
	display: inline-block;
	font-weight: 600;
	font-size: 1.4rem;
	line-height: 100%;
	color: #FFFFFF;
	border: 1px solid var(--red);
	padding: 1.05rem 2.2rem;
	cursor: pointer;
	border-radius: .3rem;
	-webkit-border-radius: .3rem;
	-moz-border-radius: .3rem;
	-ms-border-radius: .3rem;
	-o-border-radius: .3rem;
}

.change-city__:hover {
	background: var(--red);
}

.show-city__on-map {
	align-self: flex-end;
	display: inline-block;
	font-weight: 600;
	font-size: 1.4rem;
	line-height: 150%;
	color: var(--white);
	cursor: pointer;
	border-bottom: 1px solid var(--white);
}



.citys-list {
	display: flex;
	flex-direction: column;
}

/* .citys-list__item_all {
	display: none;
}

.citys-list__item_all.open {
	display: block;
} */



.citys-list__item {
	margin-bottom: 3rem;
	display: none;
}

.citys-list__item._active {
	display: block;
}

.citys-list__item__label {
	font-family: var(--futura-b);
	font-size: 2.2rem;
	line-height: 100%;
	text-transform: uppercase;
	margin-bottom: 1.7rem;
	display: flex;
	align-items: flex-end;
}

.citys-list__item__count {
	font-weight: 600;
	font-size: 1.5rem;
	line-height: 150%;
	margin-left: .3rem;
}

.citys-list__address-list {}

.citys-list__address__item {
	background: #242424;
	padding: 2rem 1rem 2.5rem;
	margin-bottom: 1.5rem;
}

.citys-list__item.sng._active .citys-list__address__item {
	display: none;
}

.citys-list__item.sng._active .citys-list__address__item._active {
	display: block;
}

.citys-list__address__item._active {
	display: block;
}

.citys-list__address__item__name {
	font-size: 1.8rem;
	color: var(--white);
	margin-bottom: 2rem;
}

.citys-list__address__item__address {
	display: flex;
	font-size: 1.4rem;
	line-height: 150%;
	padding-bottom: 1.4rem;
	border-bottom: 2px solid #1D1D1D;
	margin-bottom: 1.4rem;
}

.citys-list__address__item__tel {
	border-bottom: 2px solid #1D1D1D;
	margin-bottom: 1.4rem;
}

.citys-list__address__item__tel__content {
	display: flex;
	padding-bottom: 1.4rem;
}

.citys-list__address__item__tel a {
	display: block;
	font-size: 1.4rem;
	line-height: 150%;
	color: var(--grey);
	text-decoration: none;
}

.citys-list__address__item__link a {
	display: block;
	font-size: 1.2rem;
	line-height: 100%;
	text-decoration-line: underline;
	color: var(--blue);
}

.citys-list__address__item__link a:hover {
	text-decoration: none;
}

.citys-list__address__item__address__icon svg {
	width: 1.2rem;
	height: 1.4rem;
	margin-right: .8rem;
	padding-top: .2rem;
}

.citys-list__address__item__tel__icon svg {
	width: 1.4rem;
	height: 1.4rem;
	margin-right: .6rem;
	padding-top: .2rem;
}

.citys-list__address__item__socials {
	border-bottom: 2px solid #1D1D1D;
	margin-bottom: 1.4rem;
}

.citys-list__address__item__social__content {
	display: flex;
	align-items: center;
	padding-bottom: 1.4rem;
}

.citys-list__address__item__social__icon {
	margin-right: .6rem;
	width: 1.1rem;
	height: 1.1rem;
	flex-basis: 1.1rem;
	flex-shrink: 0;
}

.citys-list__address__item__social__icon svg {
	width: 100%;
	height: 100%;
}

.citys-list__address__item__social__link a {
	display: block;
	font-size: 1.4rem;
	line-height: 150%;
	color: var(--grey);
	text-decoration: none;
}

/* .all-citys-btn {
	border: 1px solid var(--red);
	color: var(--white);
	padding: 1rem 1.5rem;
	display: inline-flex;
	justify-content: center;
	align-self: center;
	border-radius: .3rem;
	-webkit-border-radius: .3rem;
	-moz-border-radius: .3rem;
	-ms-border-radius: .3rem;
	-o-border-radius: .3rem;
} */

.select-city {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	z-index: 111;
	background: rgba(0, 0, 0, 0.9);
}

.select-city.close {
	display: none;
}

.select-city.open {
	display: block;
}


.select-city__container {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 4rem 2rem;
}


.select-city__body {
	position: relative;
	background: #242424;

	width: 100%;
	height: 100%;
	overflow: hidden;
}

.select-city__close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	cursor: pointer;
}

.select-city__close svg {
	width: 1rem;
	height: 1rem;
}


.select-city__label {
	margin: 0;
	font-size: 2.4rem;
	line-height: 120%;
	text-transform: uppercase;
	color: var(--white);
	font-family: var(--futura-b);
	border-bottom: 1px solid #1D1D1D;
	padding: 1rem 1rem 2rem;
	display: flex;
	align-items: center;

}

.select-city__row {}

.select-city__row__mobile {
	height: 100%;
	padding: 1rem 1rem;
	overflow-y: auto;
}

.select-city__row__desktop {
	display: none;
}

.select-city__mobile__categories {}

.select-city__mobile__category {
	margin-bottom: 0.5rem;
}

.select-city__mobile__category._active .select-city__mobile__category__name {
	color: var(--red);
}

.select-city__mobile__category__name {
	font-weight: 600;
	font-size: 1.8rem;
	line-height: 150%;
	color: #FFFFFF;
	margin-bottom: 1rem;
}

.select-city__mobile__list {
	display: none;
	margin-bottom: 1rem;
}

.select-city__mobile__category._active .select-city__mobile__list {
	display: block;
	padding-left: 1rem;
}

.select-city__mobile__list li {
	font-weight: 600;
	font-size: 1.6rem;
	line-height: 150%;
	color: #A5A5A5;
}

.select-city__mobile__item {
	margin-bottom: 2rem;
}

.select-city__mobile__letter {}

.select-city__mobile__item__list {
	padding-left: 1rem;
}


/* CITYS END */


/* FOOTER */

.footer {
	margin-top: 6rem;
	margin-bottom: 10rem;
}

.footer__container {}

.footer__first-block {
	margin-bottom: 10rem;
}

.footer__map {
	margin-bottom: 3rem;
	width: 100%;
	height: 35rem;
}

.ymaps-layers-pane {
	filter: invert(100%) grayscale(100%);
	-ms-filter: invert(100%) grayscale(100%);
	-webkit-filter: invert(100%) grayscale(100%);
	-moz-filter: invert(100%) grayscale(100%);
	-o-filter: invert(100%) grayscale(100%)
}

.footer__map img {
	width: 100%;
}

.footer__first-block__content {}

.footer__first-block__content__icons {
	display: flex;
	margin-bottom: 1rem;
	mix-blend-mode: overlay;
}

.footer__scolcovo-icon {
	margin-right: 1.3rem;
}

.footer__made-in-russia-icon {}

.footer__first-block__text {
	font-size: 1.2rem;
	line-height: 140%;
}

.footer__second-block {
	display: flex;
	justify-content: space-between;
}

.footer__gplay-link {
	margin-bottom: 2rem;
}

.footer__gplay-link img {
	border: 1px solid var(--grey);
	border-radius: .3rem;
	-webkit-border-radius: .3rem;
	-moz-border-radius: .3rem;
	-ms-border-radius: .3rem;
	-o-border-radius: .3rem;
	display: block;
	width: 12rem;
}

.footer__gplay-link a {
	display: block;
}

.footer__appstore-link img {
	border: 1px solid var(--grey);
	border-radius: .3rem;
	-webkit-border-radius: .3rem;
	-moz-border-radius: .3rem;
	-ms-border-radius: .3rem;
	-o-border-radius: .3rem;
	display: block;
	width: 12rem;
}

.footer__appstore-link a {
	display: block;
}

.footer__social-callback {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.footer__social-links {
	display: flex;
	align-items: center;
	justify-content: center;
}

.footer__social-link a {
	display: block;
	margin-right: 1.5rem;
}

.footer__social-link svg {
	display: flex;
}

.footer__social-link:last-child a {
	margin-right: 0;
}

.footer__social-link.fb-link svg {
	width: 3rem;
	height: 3rem;
}

.footer__social-link.inst-link svg {
	width: 3rem;
	height: 3rem;
}

.footer__social-link.youtube-link svg {
	width: 3.2rem;
	height: 2.2rem;
}

.footer__callback {
	padding: .8rem 2.4rem;
	border: 1px solid var(--red);
	border-radius: .3rem;
	-webkit-border-radius: .3rem;
	-moz-border-radius: .3rem;
	-ms-border-radius: .3rem;
	-o-border-radius: .3rem;
	color: var(--white);
	font-size: 1.2rem;
}


/* FOOTER END */


/* FAQ POPUP */

.faq-popup {
	position: fixed;
	top: -100vh;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	background: var(--black);
	height: 100vh;
	overflow-y: auto;
}

.faq-popup.active {
	top: 0;
}

.faq-popup__contaeiner {
	padding: 4rem 2rem;
	position: relative;
	opacity: 0;
}

.faq-popup.active .faq-popup__contaeiner {
	opacity: 1;
}

.faq-popup__content {}

.faq-popup__content__block {
	margin-bottom: 2rem;
}

.faq-popup__content__question {
	margin-bottom: 1rem;
	font-size: 1.5rem;
	line-height: 150%;
	color: var(--white);
}

.faq-popup__content__answer {}

.faq-popup__close {
	position: absolute;
	top: 9rem;
	right: 2rem;
	cursor: pointer;
}

.faq-popup__close svg {
	width: 2rem;
	height: 2rem;
}

.faq-popup__ask-btn {
	padding: 1.2rem 0;
	width: 100%;
	background: var(--red);
	text-align: center;
	color: var(--white);
	border-radius: 0.3rem;
	-webkit-border-radius: 0.3rem;
	-moz-border-radius: 0.3rem;
	-ms-border-radius: 0.3rem;
	-o-border-radius: 0.3rem;
	cursor: pointer;
}


/* FAQ POPUP END */

.mejs__container {
	height: 5rem !important;
}

.mejs__controls {
	bottom: calc(50% - 1.25rem) !important;
}

.available-sounds__tabs.blue:after {
	left: 50%;
	background: var(--blue);
}

@media screen and (min-width: 1170px) {
	html {
		font-size: 16px;
	}

	body {
		font-size: 16px;
	}

	.wrapper {
		padding: 0;
		width: 1170px;
		margin: 0 auto;
		position: relative;
	}

	.header {}

	.header__container {
		width: 1170px;
		margin: 0 auto;
		padding: 25px 0;
	}

	.header__burger {
		display: none;
	}

	.header__desc {
		display: block;
		font-family: var(--futura-b);
		text-transform: uppercase;
		margin-left: 10px;
		padding-left: 10px;
		border-left: 2px solid var(--grey);
		font-size: 20px;
		display: flex;
		align-items: center;
	}

	.header__logo a {
		color: var(--grey);
		text-decoration: none;
	}

	.header__logo {
		flex-grow: 0;
	}

	.header__logo__mobile {
		display: none;
	}

	.header__logo__desktop {
		display: block;
	}

	.header__logo__desktop svg {
		width: 40px;
		height: 37px;
	}

	.header__phone {
		font-size: 18px;
		margin-left: 2rem;
		display: flex;
		flex-direction: column;
	}

	.header__callback-btn {
		display: flex;
		font-size: 14px;
		padding: 10px 15px;
		border: 1px solid var(--red);
		border-radius: 3px;
		color: var(--white);
		background: transparent;
		cursor: pointer;
	}

	.header__callback-btn:hover {
		background: #ED2B00;
	}

	.header__callback-icon {
		display: none;
	}

	.header__nav {
		display: block;
		margin-left: 60px;
		font-size: 16px;
		flex-grow: 1;
	}

	.header__nav ul {
		display: inline-flex;
	}

	.header__nav ul li {
		margin-right: 25px;
	}

	.header__nav ul li:hover a,
	.header__nav ul li:hover {
		color: var(--white);
	}

	.first-screen__content {
		margin: 0 auto 200px;
		width: 1170px;
		height: 500px;
		position: relative;
	}

	.first-screen__bg {
		background-image: url(../img/bg-first-screen.jpg);
		height: 700px;
	}

	.first-screen__callback {
		justify-content: flex-start;
	}

	.first-screen__callback__btn {
		margin-top: 50px;
		font-size: 18px;
		width: unset;
		padding: 15px 50px;
		cursor: pointer;
	}

	.first-screen__callback__btn:hover {
		background: var(--hover);
	}

	.first-screen__select-language {
		display: block;
		position: absolute;
		top: 120px;
		right: 0;
		cursor: pointer;
		z-index: 1;
	}

	.first-screen__select-language-page {
		display: block;
		position: absolute;
		top: -1.8rem;
		right: 0;
		cursor: pointer;
	}

	.first-screen__selected-language {
		border: 1px solid #A5A5A5;
		padding: 5px;
		position: relative;
	}

	.first-screen__label {
		font-weight: 600;
		font-size: 18px;
		line-height: 150%;
		color: var(--grey);
		display: flex;
		align-items: center;
	}

	.first-screen__label::before {
		content: "";
		display: inline-block;
		width: 21px;
		height: 21px;
		background-image: url('../img/world.svg');
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center;
		margin-right: 8px;
	}

	.first-screen__selected-language::after {
		content: "";
		display: inline-block;
		width: 10px;
		height: 6px;
		background-image: url('../img/arrow2.svg');
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center;
		margin-left: 7px;
		position: absolute;
		top: 50%;
		right: 10px;
		transform: translateY(-50%);
		-webkit-transform: translateY(-50%);
		-moz-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		-o-transform: translateY(-50%);
	}

	.first-screen__label {}

	.first-screen__languages {
		opacity: 0;
		visibility: hidden;
		height: 0;
		background: var(--black);
		padding: 0 10px 0px;
		min-width: 142px;
		display: block;
	}

	.first-screen__select-language-page._active .first-screen__languages,
	.first-screen__select-language._active .first-screen__languages {
		opacity: 1;
		visibility: visible;
		height: 100%;
		display: block;
		padding: 0 10px 10px;
	}

	.first-screen__item {
		font-weight: 600;
		font-size: 18px;
		line-height: 150%;
		color: var(--grey);
		padding: 10px 0 0;
	}

	.first-screen__item.hide {
		display: none;
	}

	h1 {
		margin-top: 20px;
		font-size: 70px;
	}

	h1 span {
		font-size: 120px;
	}

	.name-thor__container {
		margin: 0 auto 130px;
		width: 1170px;
		display: flex;
		flex-direction: row-reverse;
	}

	.name-thor__content {
		width: 480px;
		margin-left: 40px;
	}

	.name-thor__img {
		width: 650px;
	}

	.name-thor__img img {
		margin-top: 0;
	}

	.name-thor__content h2 {
		margin-top: 0;
	}

	.name-thor__content p {
		width: 420px;
	}

	.available-sounds__content {
		margin: 0 auto 60px;
		width: 1170px;
	}

	.available-sounds__tab_content p {
		width: 880px;
		margin: 0 2rem 3rem;
	}

	.available-sounds__tabs {
		margin: 0 auto 35px;
		width: 1170px;
		border: unset;
		border-bottom: 1px solid var(--grey);
	}

	.available-sounds__tabs.blue:after {
		left: 180px;
	}

	.available-sounds__tab {
		width: 180px;
		padding: 12px 0;
		border-top: 1px solid var(--grey);
		border-right: 1px solid var(--grey);
		cursor: pointer;
	}

	.available-sounds__tab.tab__red {
		border-left: 1px solid var(--grey);
	}

	.available-sounds__tabs::after {
		width: 180px;
	}

	.available-sounds__select {
		display: none;
	}

	.available-sounds__item {
		width: 370px;
	}

	.available-sounds__item__slide {
		height: 380px;
	}

	.available-sounds__item__mp3 {
		height: 40px;
	}

	.available-sounds__item__title {
		margin: 0 15px;
	}

	.available-sounds__item__desc {
		margin: 0 15px;
	}

	.available-sounds__item__desc p {
		width: 100%;
		margin: 0;
	}

	.select-device {
		width: 1170px;
		margin: 0 auto;
	}

	.select-device__items {
		display: flex;
		padding: 0 100px;
	}

	.select-device__item {
		margin-right: 40px;
		flex-grow: 1;
		display: flex;
		flex-direction: column;
		padding: 25px 25px;
	}

	.select-device__item:last-child {
		margin-right: 0;
	}

	.select-device__item__container {
		display: flex;
		flex-direction: column;
		flex-grow: 1;
	}

	.select-device__item__img {
		width: 248px;
		margin: 0 auto;
	}

	.select-device__item__order-btn {
		width: 223px;
		margin: 20px auto 0;
		font-size: 18px;
		padding: 14px 0;
	}

	.select-device__item__order-btn:hover {
		background: var(--hover);
		cursor: pointer;
	}

	.select-device__item__content {
		width: 100%;
		max-width: 360px;
		text-align: center;
		align-self: center;
	}

	.select-device__item__title {
		color: var(--white);
	}

	.select-device__item__icon {
		position: relative;
		margin-top: 20px;
	}

	.select-device__item__icon svg {
		width: 118px;
		height: auto;
	}

	.video-slider__list {
		width: 1170px;
		margin: 0 auto;
	}

	.video-slider__item {
		width: 100%;
		position: relative;
	}

	.video-slider__container {
		position: relative;
		width: 1170px;
		margin: 170px auto 200px;
	}

	.video-slider__content.wrapper {
		padding: 25px 25px 35px;
		width: 480px;
		margin: 0;
		position: absolute;
		top: 100px;
		left: 0;
		z-index: 1;
		background: var(--black);
		pointer-events: none;
	}

	.video-slider__content h2 {
		margin-top: 0;
	}

	.slider-arrows {
		display: none;
		position: absolute;
		top: 0;
		left: 0;
		bottom: 0;
		right: 0;
	}

	.slider-arrow {
		width: 65px;
		height: 65px;
		border-radius: 50%;
		-webkit-border-radius: 50%;
		-moz-border-radius: 50%;
		-ms-border-radius: 50%;
		-o-border-radius: 50%;
		background: #000;
		position: absolute;
		top: 50%;
		left: -80px;
		transform: translateY(-100%);
		-webkit-transform: translateY(-100%);
		-moz-transform: translateY(-100%);
		-ms-transform: translateY(-100%);
		-o-transform: translateY(-100%);
	}

	.slider-arrow.prew-slide {}

	.slider-arrow.next-slide {
		left: unset;
		right: -80px;
	}

	.slider-arrow svg {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-80%, -50%);
	}

	.slider-arrow.next-slide svg {
		transform: translate(-40%, -50%);
	}

	.about-system__container {
		flex-direction: row;
		margin-bottom: 120px;
	}

	.about-system__container__img {
		display: block;
		width: 640px;
		margin-right: 40px;
	}

	.about-system__img {
		display: none;
	}

	.about-system__content {
		width: 500px;
	}

	.about-system__content h2 {
		margin-top: 0;
	}

	.order-btn {
		width: 300px;
	}

	.order-btn:hover {
		background: var(--hover);
		cursor: pointer;
	}

	.benefits__list {
		column-count: 2;
	}

	.benefits__item {}

	.benefits {
		background: var(--black);
	}

	.system-instal {
		margin-top: 120px;
	}

	.system-instal__container {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}

	.system-instal__container h2 {
		margin-top: 0;
	}

	.system-instal__video {
		grid-row-start: 1;
		grid-row-end: 3;
		margin-right: 40px;
	}

	.system-instal__video:hover {
		cursor: pointer;
	}

	.video-play svg {
		width: 68px;
		height: 48px;
	}

	.system-instal__video__play svg {
		width: 68px;
		height: 48px;
	}

	.system-instal__content__list {
		margin-top: 0;
	}

	.contacts__container h2 {
		color: var(--white);
		margin-bottom: 44px;
	}

	.contacts {
		background: var(--black);
		margin-bottom: 76px;
	}

	.contacts__block {
		background: #242424;
		padding: 45px 100px 40px 30px;
		display: flex;
		justify-content: space-between;
	}

	.contacts__block__title {
		font-size: 22px;
		margin-bottom: 40px;
	}

	.contacts__block__link__icon {
		margin-right: 10px;
	}

	.contacts__block__links {
		border: unset;
		padding-bottom: 0;
		margin-bottom: 0;
	}

	.contacts__block__link {
		margin-bottom: 15px;
	}

	.contacts__block__link__icon.wapp svg {
		width: 20px;
		height: 20px;
	}

	.contacts__block__link__icon.tel svg {
		width: 18px;
		height: 18px;
	}

	.contacts__block__link__icon.mail svg {
		width: 18px;
		height: 14px;
	}

	.citys-list__address-list {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		grid-column-gap: 30px;
		grid-row-gap: 30px;
	}

	.citys-list__item__label {
		font-size: 38px;
		line-height: 100%;
		margin-bottom: 35px;
	}

	.citys-list__item__count {
		font-size: 15px;
		line-height: 150%;
	}

	.citys-list__address__item {
		padding: 20px;
		margin-bottom: 0;
	}

	.contacts-citys__row {
		display: flex;
		align-items: center;
		padding-bottom: 33px;
		margin-bottom: 33px;
	}

	.your-city {
		margin-right: 64px;
		margin-bottom: 0;
	}

	.change-city {
		margin-bottom: 0;
	}

	.change-city__ {
		font-size: 14px;
		line-height: 100%;
		padding: 10.5px 22px;
		border-radius: 3px;
		-webkit-border-radius: 3px;
		-moz-border-radius: 3px;
		-ms-border-radius: 3px;
		-o-border-radius: 3px;
	}

	.show-city__on-map {
		font-size: 14px;
		line-height: 150%;
		margin-left: auto;
	}

	.citys-list__address__item__name {
		font-size: 18px;
	}

	.citys-list__address__item__address {
		font-size: 15px;
	}

	.citys-list__address__item__tel a {
		font-size: 15px;
	}

	.citys-list__address__item__link a {
		font-size: 12px;
	}

	.select-city__container {
		padding: 0;
	}

	.select-city__row__desktop {
		display: block;
	}

	.select-city__body {
		width: 903px;
		height: 683px;
	}

	.select-city__label {
		padding-left: 36px;
		font-size: 38px;
		line-height: 100%;
		padding: 40px 36px 36px;
	}

	.select-city__row__mobile {
		display: none;
	}

	.select-city__desktop__categories {
		width: 311px;
		padding: 28px 37px;
		align-self: flex-start;
		position: sticky;

	}

	.select-city__row__desktop {
		display: flex;
		height: 100%;
	}

	.select-city__desktop__body {
		height: 100%;
		overflow-y: auto;
		width: 100%;
		padding: 29px 46px;
		border-left: 1px solid #1D1D1D;
	}

	.select-city__desktop__category {
		margin-bottom: 14px;
	}

	.select-city__desktop__category__name {
		font-weight: 600;
		font-size: 22px;
		line-height: 150%;
		color: var(--white);
		cursor: pointer;
	}

	.select-city__desktop__item {
		margin-bottom: 30px;
	}

	.select-city__desktop__list {
		display: none;
	}

	.select-city__desktop__list._active {
		display: block;
	}

	.select-city__desktop__item__list li {
		font-weight: 600;
		font-size: 22px;
		line-height: 150%;
		color: var(--grey);
		cursor: pointer;
	}

	.select-city__desktop__item__list li:not(:last-child) {
		margin-bottom: 10px;
	}

	.select-city__desktop__category._active .select-city__desktop__category__name {
		color: var(--red);
	}

	.select-city__desktop__letter {
		font-weight: 600;
		font-size: 22px;
		line-height: 150%;
		color: #FFFFFF;
		margin-bottom: 10px;
	}

	/* .citys-list__address__item__social__icon {
		width: 11px;
		height: 11px;
	} */
	.citys-list__address__item__social__link a {
		font-size: 15px;
	}

	.citys-list__item {
		margin-bottom: 30px;
	}

	.footer__first-block {
		margin: 0 auto 180px;
		display: flex;
		flex-direction: row-reverse;
		width: 1170px;
		justify-content: space-between;
	}

	.footer__first-block__content__icons {
		flex-direction: column;
		max-width: 240px;
		margin-bottom: 30px;
	}

	.footer__first-block__text {
		max-width: 240px;
		font-size: 15px;
		line-height: 150%;
	}

	.footer__first-block__content.wrapper {
		width: unset;
		margin: 0;
	}

	.footer__map {
		width: 900px;
		height: 500px;
		overflow: hidden;
	}

	.footer__scolcovo-icon {
		margin-right: 0;
		margin-bottom: 36px;
	}

	.footer__apps-link {
		display: flex;
	}

	.footer__social-callback {
		flex-direction: row;
		width: 55%;
	}

	.footer__appstore-link img {
		width: 140px;
	}

	.footer__apps-link a:hover img {
		border-color: var(--blue);
	}

	.footer__gplay-link img {
		width: 140px;
		margin-right: 15px;
	}

	.footer__social-link.fb-link svg {
		width: 30px;
		height: 30px;
	}

	.footer__social-link.inst-link svg {
		width: 30px;
		height: 30px;
	}

	.footer__social-link.youtube-link svg {
		width: 32px;
		height: 22px;
	}

	.footer__social-link:hover svg path {
		fill: var(--red);
	}

	.footer__gplay-link {
		margin-bottom: 0;
	}

	.footer__callback {
		font-size: 14px;
		padding: 10px 15px;
		background: transparent;
	}

	.footer__callback:hover {
		background: var(--red);
		cursor: pointer;
	}

	.footer {
		margin-top: 200px;
		margin-bottom: 50px;
	}

	.work-example__img_video {
		cursor: pointer;
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
		width: 100%;
		height: 210px;
	}

	.work-example__info {
		padding: 0 15px;
	}

	.work-example__info p {
		height: 162px;
	}

	.all-citys-btn {
		background: transparent;
		cursor: pointer;
	}

	.all-citys-btn:hover {
		background: var(--red)
	}

	.system-instal__content__pdf-link__text {
		max-width: 170px;
	}

	.system-instal__content__pdf-link__icon svg {
		border-radius: 8px;
		-webkit-border-radius: 8px;
		-moz-border-radius: 8px;
		-ms-border-radius: 8px;
		-o-border-radius: 8px;
	}

	.system-instal__content__pdf-link:hover svg {
		border-color: var(--blue);
	}

	.system-instal__content__pdf-link:hover a {
		color: var(--blue);
	}

	.faq-popup {
		background: rgba(29, 29, 29, .9);
	}

	.faq-popup__contaeiner {
		padding: 1px 60px 60px;
		max-width: 700px;
		margin: 8vw auto;
		background: var(--black);
	}

	.faq-popup__close {
		top: 30px;
		right: 30px;
	}

	.faq-popup__close svg {
		width: 24px;
		height: 24px;
	}

	.faq-popup__ask-btn {
		padding: 12px 0;
		width: 240px;
		margin: 0 auto;
	}

	.mejs__container {
		height: 40px !important;
	}

	.mejs__controls {
		bottom: 0;
	}

	.video-play-shape {
		fill: #212121;
		fill-opacity: 0.8;
	}
}

@font-face {
	font-family: 'Futura-B';
	src: url('../fonts/Futura-Book.eot');
	src: url('../fonts/Futura-Book.eot?#iefix') format('embedded-opentype'), url('../fonts/Futura-Book.woff') format('woff'), url('../fonts/Futura-Book.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Futura-M';
	src: url('../fonts/Futura-Medium.eot');
	src: url('../fonts/Futura-Medium.eot?#iefix') format('embedded-opentype'), url('../fonts/Futura-Medium.woff') format('woff'), url('../fonts/Futura-Medium.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'li-icon';
	src: url('../fonts/li-icon.eot?duj377');
	src: url('../fonts/li-icon.eot?duj377#iefix') format('embedded-opentype'), url('../fonts/li-icon.ttf?duj377') format('truetype'), url('../fonts/li-icon.woff?duj377') format('woff'), url('../fonts/li-icon.svg?duj377#li-icon') format('svg');
	font-weight: normal;
	font-style: normal;
	font-display: block;
}

.icon-checkmark {
	position: relative;
	padding: 0 0 0 1.6rem;
}

.icon-checkmark:before {
	content: "\e900";
	color: var(--grey);
	font-family: 'li-icon' !important;
	speak: never;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	position: absolute;
	top: .3rem;
	left: 0;
}


/* ------------------ PARTNERS ----------------------- */


/* ------------------- our-partners ------------------------- */

.our-partners {
	margin: 7.9rem 0 5rem;
}

.our-partners__container {
	padding: 0;
}

.our-partners__breadcrumbs {
	margin-bottom: 4.5rem;
	padding: 0 2rem;
}

.breadcrumbs-label a {
	color: var(--grey);
	text-decoration: none;
}

.breadcrumbs-label {
	display: inline-flex;
	align-items: center;
	font-weight: 600;
	font-size: 1.2rem;
	line-height: 140%;
	color: var(--grey);
	cursor: pointer;
}

.breadcrumbs-label::before {
	content: "";
	display: block;
	width: 0.7rem;
	height: 1.2rem;
	background-image: url('../img/arrow.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	margin-right: 0.9rem;
}

.our-partners__our-features {
	position: relative;
	padding: 2.8rem 0 3.6rem;
	margin-bottom: 3rem;
}

.our-partners__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url('../img/partners-bg.jpg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	z-index: -1;
}

.our-partners__label {
	font-size: 4.8rem;
	line-height: 100%;
	text-transform: uppercase;
	color: #EEEEEE;
	font-family: var(--futura-b);
	padding: 0 2rem;
	margin-bottom: 0.9rem;
}

.our-partners__list {
	list-style-type: none;
	counter-reset: num;
	padding-left: 2rem;
	margin: 0;
}

.our-partners__item {
	list-style: none;
	font-weight: 600;
	font-size: 1.4rem;
	line-height: 150%;
	color: #CCCCCC;
	position: relative;
	margin: 0 0 1rem;
	padding: 0.8rem 1rem;
	display: flex;
	align-items: center;
	background: linear-gradient(90.02deg, #212121 0.02%, rgba(25, 25, 25, 0) 99.98%);
	max-width: 25rem;
}

.our-partners__item::before {
	content: counter(num);
	counter-increment: num;
	display: inline-block;
	font-family: var(--futura-m);
	font-size: 2.8rem;
	line-height: 100%;
	text-transform: uppercase;
	color: #CCCCCC;
	margin-right: 1.4rem;
}

.our-partners__registration {
	padding: 0 2rem;
}

.our-partners__registration__title {
	font-family: var(--futura-b);
	font-size: 2.4rem;
	line-height: 150%;
	text-transform: uppercase;
	color: var(--white);
	margin-bottom: 0.4rem;
}

.our-partners__registration__subtitle {
	font-weight: 600;
	font-size: 1.4rem;
	line-height: 150%;
	color: var(--grey);
	margin-bottom: 3.4rem;
}


/* ------ partners__form --------- */

.form-partners__row:not(:last-child) {
	margin-bottom: 4rem;
}

.form-partners__row__label {
	font-weight: 600;
	font-size: 1.4rem;
	line-height: 150%;
	color: var(--white);
	margin-bottom: 1.6rem;

}

.form-partners__line:not(:last-child) {
	margin-bottom: 1.3rem;
}

.form-partners__line {
	position: relative;
}

.form-partners__input {
	width: 100%;
	padding: max(10px, 1rem);
	font-weight: 600;
	font-size: max(12px, 1.2rem);
	line-height: 140%;
	color: var(--grey);
	background: transparent;
	border: 1px solid #EEEEEE;
	outline: none;
	border-radius: .3rem;
	-webkit-border-radius: .3rem;
	-moz-border-radius: .3rem;
	-ms-border-radius: .3rem;
	-o-border-radius: .3rem;
}

.js_input:focus+label {
	display: none;
}

.form-partners__label {
	font-weight: 600;
	font-size: 1.2rem;
	line-height: 140%;
	color: var(--grey);
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 1rem;
	pointer-events: none;
}

.form-partners__label span {
	color: var(--red);
}

.form-partners__label.hide {
	display: none;
}

.form-partners__select {
	position: relative;
}

.form-partners__select__ {
	width: 100%;
	font-weight: 600;
	font-size: 1.2rem;
	line-height: 150%;
	color: var(--grey);
	padding: 1rem;
	background: transparent;
	border: 1px solid #EEEEEE;
	outline: none;
}

.form-partners__select::after {
	content: "";
	display: block;
	width: 1.3rem;
	height: 0.8rem;
	background: url('../img/arrowdown.svg');
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	position: absolute;
	top: calc(50% - 0.4rem);
	right: 1.4rem;
}

select.form-partners__select__ {
	-webkit-appearance: none;
	-moz-appearance: none;
}

select.form-partners__select__::-ms-expand {
	display: none;
}

.form-partners__row.third-row {
	display: flex;
	align-items: center;
}

.form-partners__politics {
	width: 15.7rem;
	margin-right: 1.3rem;
}

.form-partners__politics__checkbox {
	display: none;
}

.form-partners__politics__checkbox:checked+.form-partners__politics__checkbox__label::after {
	transform: scale(1);
}

.form-partners__politics__checkbox__label {
	display: flex;
	align-items: center;
	position: relative;
}

.form-partners__politics__checkbox__label a {
	font-size: 1.2rem;
	line-height: 150%;
	color: var(--grey);
}

.form-partners__politics__checkbox__label::before {
	content: "";
	flex-basis: 1.6rem;
	flex-shrink: 0;
	flex-grow: 0;
	display: block;
	width: 1.6rem;
	height: 1.6rem;
	background: transparent;
	border: 1px solid var(--red);
	border-radius: .3rem;
	-webkit-border-radius: .3rem;
	-moz-border-radius: .3rem;
	-ms-border-radius: .3rem;
	-o-border-radius: .3rem;
	margin-right: 0.6rem;
}

.form-partners__politics__checkbox__label::after {
	content: "";
	flex-basis: 1rem;
	flex-shrink: 0;
	flex-grow: 0;
	display: block;
	width: 1rem;
	height: 0.75rem;
	background: url('../img/check.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	position: absolute;
	left: 0.4rem;
	transform: scale(0);
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-ms-transform: scale(0);
	-o-transform: scale(0);
}

.form-partners__btn {
	width: 100%;
	text-align: center;
	font-size: 1.8rem;
	line-height: 150%;
	color: var(--white);
	background: var(--red);
	padding: 1rem 0;
	border-radius: .3rem;
	-webkit-border-radius: .3rem;
	-moz-border-radius: .3rem;
	-ms-border-radius: .3rem;
	-o-border-radius: .3rem;
}


/* ------ partners__form --------- */

@media screen and (min-width: 1170px) {
	.our-partners {
		margin: 129px 0 167px;
	}

	.our-partners__breadcrumbs {
		margin-bottom: 83px;
		padding: 0px;
	}

	.breadcrumbs-label {
		font-weight: 600;
		font-size: 12px;
		line-height: 140%;
	}

	.breadcrumbs-label::before {
		width: 7px;
		height: 12px;
		margin-right: 9px;
	}

	.our-partners__our-features {
		padding: 73px 0 73px;
		margin-bottom: 0;
	}

	.our-partners__box {
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-column-gap: 54px;
	}

	.our-partners__label {
		width: 300px;
		padding: 0 0 0 36px;
		font-size: 48px;
		line-height: 100%;
		margin-bottom: 19px;
	}

	.our-partners__list {
		padding-left: 36px;
	}

	.our-partners__item {
		font-weight: 600;
		font-size: 17px;
		line-height: 150%;
		padding: 8px 10px;
		margin: 0 0 10px;
		max-width: 370px;
	}

	.our-partners__item::before {
		font-size: 48px;
		line-height: 100%;
		margin-right: 10px;
	}

	.our-partners__registration {
		padding: 0 0;
	}

	.our-partners__registration__title {
		font-size: 38px;
		line-height: 100%;
		margin-bottom: 5px;
	}

	.our-partners__registration__subtitle {
		font-size: 18px;
		line-height: 150%;
		width: 368px;
		margin-bottom: 44px;
	}

	.form-partners__row:not(:last-child) {
		margin-bottom: 45px;
	}

	.form-partners__row__label {
		font-size: 18px;
		line-height: 150%;
		margin-bottom: 16px;
	}

	.form-partners__line:not(:last-child) {
		margin-bottom: 13px;
	}

	.form-partners__input {
		font-size: 16px;
		line-height: 150%;
		padding: 10px;
		border-radius: 3px;
		-webkit-border-radius: 3px;
		-moz-border-radius: 3px;
		-ms-border-radius: 3px;
		-o-border-radius: 3px;
	}

	.form-partners__label {
		font-size: 16px;
		line-height: 150%;
		left: 10px;
	}

	.form-partners__select__ {
		font-size: 16px;
		line-height: 150%;
		padding: 10px;
	}

	.form-partners__select::after {
		width: 13px;
		height: 8px;
		top: calc(50% - 4px);
		right: 17.5px;
	}

	.form-partners__row__box {
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-column-gap: 15px;
	}

	.form-partners__row__box .form-partners__line {
		width: 100%;
		margin-bottom: 0;
	}

	.form-partners__row.third-row {
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-column-gap: 15px;
	}

	.form-partners__politics {
		width: inherit;
		margin-right: 0;
	}

	.form-partners__politics__checkbox__label a {
		font-weight: 600;
		font-size: 12px;
		line-height: 150%;
		width: 177px;
	}

	.form-partners__politics__checkbox__label::before {
		flex-basis: 16px;
		width: 16px;
		height: 16px;
		border-radius: 3px;
		-webkit-border-radius: 3px;
		-moz-border-radius: 3px;
		-ms-border-radius: 3px;
		-o-border-radius: 3px;
		margin-right: 8px;
	}

	.form-partners__politics__checkbox__label::after {
		flex-basis: 10px;
		width: 10px;
		height: 7.5px;
		left: 5px;
	}

	.form-partners__btn {
		font-weight: 600;
		font-size: 18px;
		line-height: 150%;
		padding: 10px 0;
		border-radius: 3px;
		-webkit-border-radius: 3px;
		-moz-border-radius: 3px;
		-ms-border-radius: 3px;
		-o-border-radius: 3px;
	}

	.form-partners__btn:hover {
		background: var(--hover);
	}
}


/* ------------------- / our-partners ------------------------- */


/* ------------------- become-partners ----------------- */

.become-partner {
	background: #242424;
}

.become-partner__container {
	padding: 3.9rem 2rem 6rem;
}

.become-partner__title {
	font-size: 2.4rem;
	line-height: 150%;
	text-align: center;
	text-transform: uppercase;
	color: var(--white);
	font-family: var(--futura-b);
	width: 19.2rem;
	margin: 0 auto .5rem;
}

.become-partner__subtitle {
	font-style: normal;
	font-weight: 600;
	font-size: 1.4rem;
	line-height: 150%;
	text-align: center;
	color: var(--white);
	margin-bottom: 3rem;
}

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

.become-partner__phone a {
	font-weight: 600;
	font-size: 2.4rem;
	line-height: 150%;
	color: var(--white);
	text-decoration: none;
}

@media screen and (min-width: 1170px) {
	.become-partner {
		background: transparent;
	}

	.become-partner__container {
		padding: 0;
	}

	.become-partner__title {
		font-size: 48px;
		line-height: 100%;
		width: 100%;
		margin: 0 0 18px;
	}

	.become-partner__subtitle {
		font-size: 22px;
		line-height: 150%;
		width: 630px;
		margin: 0 auto 30px;
	}

	.become-partner__phone a {
		font-size: 24px;
		line-height: 150%;
	}
}


/* ------------------- / become-partners ----------------- */


/* ------------------ / PARTNERS ----------------------- */


/* ------------------ 404 NOT FOUND ------------------------------- */

.not-found {
	margin-top: 7.9rem;
}

.not-found__container {}

.not-found__breadcrumbs {
	margin-bottom: 4.9rem;
}

.not-found__numder {
	margin-bottom: 3.4rem;
	text-align: center;
}

.not-found__numder svg {
	width: 22rem;
	height: 8rem;
}

.not-found__label {
	font-family: var(--futura-b);
	font-weight: 500;
	font-size: 2.8rem;
	line-height: 100%;
	text-transform: uppercase;
	color: var(--grey);
	text-shadow: 0px .4rem .4rem rgba(0, 0, 0, 0.25);
	text-align: center;
	margin-bottom: 1.1rem;
}

.not-found__text {
	font-weight: 600;
	font-size: 1.4rem;
	line-height: 150%;
	/*text-align: center;*/
	color: var(--grey);
}

@media screen and (min-width: 1170px) {
	.not-found {
		margin-top: 129px;
	}

	.not-found__breadcrumbs {
		margin-bottom: 83px;
	}

	.not-found__numder {
		margin-bottom: 77px;
	}

	.not-found__numder svg {
		width: 546px;
		height: 197px;
	}

	.not-found__label {
		font-size: 48px;
		margin-bottom: 8px;
	}

	.not-found__text {
		font-size: 18px;
		line-height: 150%;
	}
}


/* ------------------ / 404 NOT FOUND ------------------------------- */


/* ------------ order-device ---------- */

.order-device {
	background: #000000;
}

.order-device.credit-device {
	margin-bottom: 5rem;
}

.order-device__container {
	padding-top: 7.6rem;
	position: relative;
	padding-bottom: 3rem;
	margin-bottom: 5rem;
}

.order-device.credit-device .order-device__container {
	/* background: #242424; */
	padding-bottom: 7.6rem;
	padding-top: 4rem;
}

.order-device__info_euro {
	text-align: center;
	width: 100%;
	margin-bottom: 1.5rem;
}

.order-device__info_euro span {
	color: var(--white);
}

.order-device__info_euro .hide_vat.active {
	display: none;
}

.order-device__content {
	text-align: center;
	margin-bottom: 3rem;
}

.order-device__content h2 {
	margin: 0;
}

.order-device__desc {
	font-weight: 600;
	font-size: 1.4rem;
	line-height: 150%;
	color: var(--white);
}

.order-device__box {}

.order-device__column {
	margin-bottom: 5rem;
	position: relative;
}

.credit-device__column {
	margin-bottom: 2rem;
}

.order-device__items {
	margin-bottom: 2rem;
}

.order-device__item {
	border: 1px solid var(--grey);
	padding: 1rem;
	display: flex;
	justify-content: space-between;
	transition: border 0.3s ease 0s;
	border: 1px solid transparent;
	-webkit-transition: border 0.3s ease 0s;
	-moz-transition: border 0.3s ease 0s;
	-ms-transition: border 0.3s ease 0s;
	-o-transition: border 0.3s ease 0s;
}


.credit-device__item {
	padding: 1rem;
	display: flex;
	justify-content: space-between;
	transition: border 0.3s ease 0s;
	border: 1px solid transparent;
	-webkit-transition: border 0.3s ease 0s;
	-moz-transition: border 0.3s ease 0s;
	-ms-transition: border 0.3s ease 0s;
	-o-transition: border 0.3s ease 0s;
	border: 1px solid #A5A5A5;
}



.order-device__item._active {
	border: 1px solid var(--red);
}

.order-device.credit-device .order-device__item {}

.credit-device__item._active {
	border: 1px solid var(--red);
}

.order-device__item:not(:last-child) {
	margin-bottom: 1rem;
}

.credit-device__item:not(:last-child) {
	margin-bottom: 1rem;
}


.order-device__item__column {
	padding-top: 2rem;
}

.order-device__item__label {
	font-weight: 500;
	font-size: 2.2rem;
	line-height: 100%;
	text-transform: uppercase;
	color: var(--grey);
	font-family: var(--futura-m);
	margin-bottom: .5rem;
	white-space: nowrap;
}

.order-device__item__price {
	font-family: var(--futura-m);
	font-weight: 600;
	font-size: 1.8rem;
	line-height: 150%;
	color: var(--white);
	position: relative;
}

.order-device__item__image img {
	width: 17.1rem;
	height: 100%;
	mix-blend-mode: screen;
}



.order-device__row {
	display: flex;
	justify-content: space-between;
	margin-top: 2rem;
	position: relative;
}

.vat_include {
	position: absolute;
	top: 50px;
	right: 0;
}

.order-device__question {
	font-weight: 600;
	font-size: 1.4rem;
	line-height: 150%;
	color: var(--white);
	display: flex;
	align-items: center;
	width: 12.5rem;
}

.order-device__question::before {
	content: "";
	width: 4.3rem;
	height: 4.3rem;
	background-image: url('../img/chatbox.svg');
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	margin-right: 1.5rem;
	flex-grow: 0;
	flex-shrink: 0;
	flex-basis: 4.3rem;
}

.order-device__currency__list {
	display: flex;
	align-items: flex-start;
}

.order-device__currency__item {
	border: 1px solid var(--grey);
	font-weight: 600;
	font-size: 1.4rem;
	line-height: 150%;
	color: var(--grey);
	padding: 0 .7rem;
	cursor: pointer;
}

.order-device__currency__item._active {
	background: var(--white);
	color: var(--black);
}

.order-device-form {}

.order-device-form__line {
	position: relative;
}

.order-device-form__line>div {
	width: 100%;
}

.order-device-form__line:not(:last-child) {
	margin-bottom: 1rem;
}

.order-device-form__input {
	width: 100%;
	padding: 1rem;
	border-radius: .3rem;
	-webkit-border-radius: .3rem;
	-moz-border-radius: .3rem;
	-ms-border-radius: .3rem;
	-o-border-radius: .3rem;
	background: transparent;
	outline: none;
	font-weight: 600;
	font-size: 1.5rem;
	line-height: 150%;
	color: var(--grey);
	border: 1px solid var(--grey);
}

.order-device-form__input:focus+.order-device-form__label {
	display: none;
}

.order-device-form__label {
	position: absolute;
	display: inline-block;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	cursor: text;
	font-weight: 600;
	font-size: 1.5rem;
	line-height: 150%;
	color: var(--grey);
	left: 1rem;
	top: 50%;
}

.order-device-form__label.hide {
	display: none;
}

.order-device-form__line.textarea .order-device-form__label {
	top: max(10px, 1rem);
	transform: translateY(0);
}

.order-device-form__textarea:focus+.order-device-form__label {
	display: none;
}

.order-device-form__label span {
	color: var(--red);
}

.order-device-form__row {
	margin-bottom: 1rem;
}

.order-device-form__select {
	position: relative;
}

.order-device-form__select__ {
	font-family: 'Open Sans';
	font-style: normal;
	width: 100%;
	font-weight: 600;
	font-size: 1.5rem;
	line-height: 150%;
	color: var(--grey);
	border: 1px solid var(--grey);
	background: transparent;
	outline: none;
	border-radius: .3rem;
	-webkit-border-radius: .3rem;
	-moz-border-radius: .3rem;
	-ms-border-radius: .3rem;
	-o-border-radius: .3rem;
	padding: 1rem;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

select.order-device-form__select__::-ms-expand {
	display: none;
}

.order-device-form__select::after {
	content: "";
	display: block;
	width: 1.3rem;
	height: 0.8rem;
	background: url('../img/arrowdown.svg');
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	position: absolute;
	top: calc(50% - 0.4rem);
	right: 1.4rem;
}

.order-device-form__textarea {
	font-family: 'Open Sans';
	font-style: normal;
	min-width: 100%;
	height: 8.7rem;
	font-weight: 600;
	font-size: 1.5rem;
	line-height: 150%;
	color: var(--grey);
	border: 1px solid var(--grey);
	background: transparent;
	outline: none;
	border-radius: .3rem;
	-webkit-border-radius: .3rem;
	-moz-border-radius: .3rem;
	-ms-border-radius: .3rem;
	-o-border-radius: .3rem;
	padding: 1rem;
	resize: none;
}

.order-device-form__pay__box {
	display: flex;
	align-items: center;
	margin-bottom: 1rem;
}

.credit-device .order-device-form__pay__box {
	margin-bottom: 0;
}

.order-device-form__payment-methods {
	order: 3;
	display: flex;
	justify-content: space-between;
}

.order-device-form__payment-method {
	/* background: var(--black); */
	border-radius: .3rem;
	-webkit-border-radius: .3rem;
	-moz-border-radius: .3rem;
	-ms-border-radius: .3rem;
	-o-border-radius: .3rem;
	display: flex;
	align-items: center;
	/* padding: 0.5rem; */
	/* width: calc((100% - 10rem) / 6); */
	/* margin-right: 0.7rem; */
	justify-content: center;
}

.order-device-form__payment-method:last-child {
	margin-right: 0;
}

.order-device-form__payment-method img {
	width: 100%;
}

.order-device-form__payment-method.method-5 {
	/* flex-grow: 1; */
	/* flex-basis: 7.7rem; */
	/* flex-shrink: 0; */
	/* width: 7.7rem; */
}

.order-device-form__pay {
	display: flex;
	flex-direction: column;
	margin-bottom: 2rem;
}

.order-device-form__politics {
	margin-right: 1.3rem;
}

.order-device-form__politics__checkbox {
	opacity: 0;
}

.order-device-form__politics__checkbox:checked+.order-device-form__politics__checkbox__label::after {
	transform: scale(1);
}

.order-device-form__politics__checkbox__label {
	display: flex;
	align-items: center;
	position: relative;
	cursor: pointer;
}

.order-device-form__politics__checkbox__label a {
	font-size: 1.2rem;
	line-height: 150%;
	color: var(--grey);
}

.credit-device-form__politics__checkbox__label a {
	font-size: 1rem;
	line-height: 120%;
}

.order-device-form__politics__checkbox__label::before {
	content: "";
	flex-basis: 1.6rem;
	flex-shrink: 0;
	flex-grow: 0;
	display: block;
	width: 1.6rem;
	height: 1.6rem;
	background: transparent;
	border: 1px solid var(--red);
	border-radius: .3rem;
	-webkit-border-radius: .3rem;
	-moz-border-radius: .3rem;
	-ms-border-radius: .3rem;
	-o-border-radius: .3rem;
	margin-right: 0.6rem;
}

.order-device-form__politics__checkbox__label::after {
	content: "";
	flex-basis: 1rem;
	flex-shrink: 0;
	flex-grow: 0;
	display: block;
	width: 1rem;
	height: 0.75rem;
	background: url('../img/check.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	position: absolute;
	left: 0.4rem;
	transform: scale(0);
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-ms-transform: scale(0);
	-o-transform: scale(0);
}

.credit-device-form__pay__box {
	margin-top: 1.5rem;
}

.order-device-form__pay__btn {
	width: 100%;
	text-align: center;
	font-size: 1.4rem;
	line-height: 150%;
	color: var(--white);
	background: var(--red);
	padding: 1.2rem 2.4rem;
	border-radius: .3rem;
	-webkit-border-radius: .3rem;
	-moz-border-radius: .3rem;
	-ms-border-radius: .3rem;
	-o-border-radius: .3rem;
	display: flex;
	justify-content: center;
}

.gif_load {
	display: none;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #000;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    margin: 0 0 0 10px;
    animation: spin 2s linear infinite;
}

.load_info .gif_load {
	display: block;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.order-device__item__price__old {
	position: absolute;
	top: 90%;
	left: 0;
	width: max-content;
	font-family: var(--futura-m);
	font-size: 1.6rem;
	line-height: 100%;
}

.order-device__item__price__old::before {
	content: "";
	display: block;
	width: 100%;
	height: 2px;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	background: #A5A5A5;
}

.order-device__item__price__old .currency-price__old {
	color: #A5A5A5;
}

.order-device__item__price__old .currency-item__old {
	color: #A5A5A5;
}

@media screen and (min-width: 1170px) {
	.order-device.credit-device {
		margin-bottom: 188px;
	}

	.vat_include {
		position: absolute;
		top: -50px;
		right: 0;
	}

	.order-device__info_euro {
		text-align: right;
	}

	.order-device {
		margin-top: 120px;
		background-color: inherit;
	}

	.order-device__container {
		background: #000000;
		padding: 43px 52.5px 39px;
	}

	.credit-device__container {
		padding: 53px 30px 80px;
	}

	.order-device__content {
		margin-bottom: 73px;
	}

	.order-device__content h2 {
		font-size: 48px;
		line-height: 62px;
	}

	.order-device__desc {
		font-size: 18px;
		line-height: 150%;
	}

	.order-device__box {
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-column-gap: 39px;
	}

	.order-device__column {
		margin-bottom: 0;
	}

	.order-device__items {
		margin-bottom: 81px;
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-template-rows: auto;
		grid-column-gap: 20px;
		grid-row-gap: 20px;
	}

	.credit-device__list {
		margin-bottom: 0;
	}

	.order-device__item:not(:last-child) {
		margin-bottom: 0;
	}

	.credit-device__item:not(:last-child) {
		margin-bottom: 0;
	}

	.order-device__item {
		padding: 29px 15px;
		flex-direction: column-reverse;
		cursor: pointer;
	}

	.credit-device__item {
		padding: 15px;
		flex-direction: column-reverse;
		cursor: pointer;
	}

	.order-device__item:hover {
		border: 1px solid var(--red);
	}

	.credit-device__item:hover {
		border: 1px solid var(--red);
	}

	/* .order-device__item__image {
		margin-bottom: 36px;
	} */

	.order-device__item__image img {
		width: 100%;
	}

	.order-device__item__column {
		padding-top: 0;
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}

	.order-device__item__label {
		margin-bottom: 0;
		font-size: 28px;
		line-height: 100%;
		font-weight: 450;
	}

	.order-device__item__price {
		font-size: 28px;
		line-height: 100%;
		font-family: var(--futura-m);
	}

	.order-device__item__price__old {
		position: absolute;
		top: -80%;
		right: 0;
		width: max-content;
		font-family: var(--futura-m);
		font-size: 20px;
		line-height: 100%;
	}

	.order-device__item__price__old::before {
		content: "";
		display: block;
		width: 100%;
		height: 2px;
		position: absolute;
		top: 50%;
		left: 0;
		transform: translateY(-50%);
		-webkit-transform: translateY(-50%);
		-moz-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		-o-transform: translateY(-50%);
		background: #A5A5A5;
	}

	.order-device__item__price__old .currency-price {
		color: #A5A5A5;
	}

	.order-device__item__price__old .currency-item {
		color: #A5A5A5;
	}

	.order-device__question {
		width: 125px;
		font-size: 14px;
		line-height: 150%;
		cursor: pointer;
	}

	.order-device__question::before {
		width: 43px;
		height: 43px;
		margin-right: 15px;
		flex-basis: 43px;
	}

	.order-device__currency__item {
		font-size: 14px;
		line-height: 150%;
		padding: 0 7px;
	}

	.order-device-form__line:not(:last-child) {
		margin-bottom: 13px;
	}

	.order-device.credit-device .order-device-form__line:not(:last-child) {
		margin-bottom: 26px;
	}

	.order-device-form__line.textarea .order-device-form__label {
		top: 10px;
		transform: translateY(0);
	}

	.order-device-form__row {
		margin-bottom: 13px;
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-gap: 13px;
	}

	.order-device-form__row .order-device-form__line {
		margin-bottom: 0;
	}

	.order-device-form__input {
		padding: 10px;
		font-size: 16px;
		line-height: 150%;
		border-radius: 3px;
		-webkit-border-radius: 3px;
		-moz-border-radius: 3px;
		-ms-border-radius: 3px;
		-o-border-radius: 3px;
	}

	.order-device-form__label {
		left: 10px;
		font-size: 16px;
	}

	.order-device-form__select__ {
		font-size: 16px;
		line-height: 150%;
		padding: 10px;
	}

	.order-device-form__select::after {
		width: 13px;
		height: 8px;
		top: calc(50% - 4px);
		right: 17.5px;
	}

	.order-device-form__textarea {
		font-size: 16px;
		line-height: 150%;
		padding: 10px;
	}

	.order-device-form__pay {
		flex-direction: column-reverse;
	}

	.order-device-form__pay__box {
		margin-bottom: 0;
		justify-content: space-between;
	}

	.credit-device-form__pay__box {
		margin-top: 0;
	}

	.order-device-form__payment-methods {
		justify-content: flex-start;
		margin-bottom: 25px;
	}

	.order-device-form__payment-method {
		/* width: 65px; */
		margin-right: 12px;
		/* padding: 8px; */
	}

	.order-device-form__payment-method.method-5 {
		flex-grow: inherit;
		width: 94px;
		flex-basis: 94px;
	}

	.order-device-form__politics__checkbox__label a {
		font-size: 12px;
		line-height: 150%;
	}

	.order-device-form__politics__checkbox__label::before {
		flex-basis: 16px;
		width: 16px;
		height: 16px;
		border-radius: 3px;
		-webkit-border-radius: 3px;
		-moz-border-radius: 3px;
		-ms-border-radius: 3px;
		-o-border-radius: 3px;
		margin-right: 17px;
	}

	.order-device-form__politics__checkbox__label::after {
		flex-basis: 10px;
		width: 10px;
		height: 7.5px;
		left: 4px;
	}

	.order-device-form__politics {
		margin-right: 0;
	}

	.order-device-form__pay__btn {
		width: inherit;
		padding: 10px 70px;
		cursor: pointer;
		border-radius: 3px;
		-webkit-border-radius: 3px;
		-moz-border-radius: 3px;
		-ms-border-radius: 3px;
		-o-border-radius: 3px;
		font-size: 18px;
	}

	.order-device-form__pay__btn:hover {
		background: var(--hover);
	}
}

.form-thanks__methods-pay {
	display: flex;
	flex-direction: column;
}

.form-thanks {
	display: none;
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000;
}

.form-thanks._active {
	display: block;
}

.form-thanks__container {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.form-thanks__title {
	font-family: var(--futura-b);
	font-weight: 500;
	font-size: 2.4rem;
	line-height: 100%;
	text-transform: uppercase;
	color: #eee;
	margin-bottom: .5rem;
}

.form-thanks__title span {
	color: var(--red);
}

.form-thanks__method-pay__block {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border: 1px solid #a5a5a5;
	border-radius: 1rem;
	-webkit-border-radius: 1rem;
	-moz-border-radius: 1rem;
	-ms-border-radius: 1rem;
	-o-border-radius: 1rem;
	padding: 2rem 4rem 3rem;
	margin: 3rem 2rem 0;
	max-width: 100%;
}

.form-thanks__subtitle {
	font-family: var(--futura-b);
	font-weight: 500;
	font-size: 2.4rem;
	line-height: 100%;
	text-transform: uppercase;
	color: var(--grey);
	margin-bottom: 2rem;
}

.form-thanks__text {
	text-align: center;
	font-weight: 600;
	font-size: 1.2rem;
	line-height: 150%;
	text-align: center;
	color: #A5A5A5;
	margin-bottom: 2rem;
}

.form-thanks__method-pay__block .form-thanks__text {
	color: #eee;
}

.form-thanks__method-pay {
	/* height: 100%; */
	transition: 150ms;
	-webkit-transition: 150ms;
	-moz-transition: 150ms;
	-ms-transition: 150ms;
	-o-transition: 150ms;
	border: 1px solid transparent;
	margin-bottom: 1.2rem;
}

.form-thanks__method-pay:hover {
	border: 1px solid #016EAC;
}

.form-thanks__method-pay._disable {
	background: #1D1D1D;
}

.form-thanks__method-pay._active {
	border: 1px solid #016EAC;
}

.form-thanks__method-pay._disable:hover {
	background: #1D1D1D;
	border: 1px solid transparent;
}

.form-thanks__method-pay._disable path {
	fill: #5F6368;
}

.form-thanks__method-pay svg {
	width: 8.9rem;
	height: 4.5rem;
}




@media screen and (min-width: 1170px) {
	.form-thanks__title {
		font-size: 48px;
		line-height: 100%;
		margin-bottom: 5px;
	}

	.form-thanks__subtitle {
		font-size: 48px;
		line-height: 100%;
		margin-bottom: 20px;
	}

	.form-thanks__text {
		font-size: 18px;
		line-height: 150%;
		margin-bottom: 20px;
	}

	.form-thanks__method-pay__block {
		border: 1px solid #a5a5a5;
		border-radius: 10px;
		-webkit-border-radius: 10pxrem;
		-moz-border-radius: 10pxrem;
		-ms-border-radius: 10pxrem;
		-o-border-radius: 10pxrem;
		padding: 30px 60px 50px;
		margin: 50px 0 0;
	}

	.form-thanks__method-pay {
		margin-bottom: 0;
	}

	.form-thanks__method-pay svg {
		width: 89px;
		height: 45px;
	}

	.form-thanks__methods-pay {
		flex-direction: row;
	}
}

/* ------------ order-device ---------- */


/* ------------ PAY ------------------- */

.pay-products {
	padding: 4rem 0 7.9rem;
}

.pay-products__container {}

.pay-products__box {}

.pay-products__column {
	margin-bottom: 4.4rem;
}

.pay-products__logo {
	padding: 0 2rem;
	display: flex;
	align-items: center;
	margin-bottom: 3.1rem;
}

.pay-products__logo__ {
	margin-right: 0.4rem;
}

.pay-products__logo__ img {
	width: 9.2rem;
	height: 100%;
}

.pay-products__logo__label {
	font-weight: 600;
	font-size: 1.4rem;
	line-height: 120%;
	color: var(--grey);
	width: 9.5rem;
}

.pay-products__desc {
	background: #333333;
	padding: 2.3rem 2rem;
	margin-bottom: 2.3rem;
}

.pay-products__desc__row {
	display: flex;
	justify-content: space-between;
}

.pay-products__desc__row:first-child {
	margin-bottom: 1rem;
}

.pay-products__desc__item__name {
	font-weight: 600;
	font-size: 1.8rem;
	line-height: 150%;
	color: var(--grey)
}

.pay-products__desc__item__count-products {
	font-weight: 600;
	font-size: 1.8rem;
	line-height: 100%;
	color: var(--white);
}

.pay-products__desc__item__price {
	font-weight: 600;
	font-size: 1.8rem;
	line-height: 100%;
	color: var(--white);
}

.pay-products__methods {
	padding: 0 2rem;
}

.pay-products__method__label {
	font-weight: 600;
	font-size: 1.8rem;
	line-height: 100%;
	color: var(--white);
	margin-bottom: 0.8rem;
}

.pay-products__method__list {}

.pay-products__method__item {
	margin-bottom: 2rem;
}

.pay-products__method__item__label {
	font-weight: 600;
	font-size: 1.4rem;
	line-height: 150%;
	color: var(--grey);
	margin-bottom: 0.8rem;
	position: relative;
	display: flex;
	align-items: center;
}

.pay-products__method__item__label::before {
	content: "";
	background: transparent;
	border: 1px solid var(--grey);
	width: 1.6rem;
	height: 1.6rem;
	border-radius: 50%;
	margin-right: 0.7rem;
}

.pay-products__method__item__label::after {
	content: "";
	width: 1rem;
	height: 0.75rem;
	background: url('../img/checkblack.svg');
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	position: absolute;
	left: 0.3rem;
	transform: scale(0);
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-ms-transform: scale(0);
	-o-transform: scale(0);
}

.pay-products__method__item._active .pay-products__method__item__label::before {
	content: "";
	background: var(--white);
}

.pay-products__method__item._active .pay-products__method__item__label::after {
	content: "";
	transform: scale(1);
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
}

.pay-products__method__item__img {
	margin-left: 2.3rem;
}

.pay-products__method__item.card img {
	width: 10.8rem;
	height: 100%;
}

.pay-products__method__item.googlepay img {
	width: 2.9rem;
	height: 100%;
}

.pay-products__card {
	padding: 0 2rem;
}

.pay-products__method {
	display: none;
}

.pay-products__method._active {
	display: block;
}

.pay-products__card__data {
	background: #E97035;
	border-radius: 2rem;
	-webkit-border-radius: 2rem;
	-moz-border-radius: 2rem;
	-ms-border-radius: 2rem;
	-o-border-radius: 2rem;
	padding: 6.7rem 2.3rem 3rem;
	margin-bottom: 1.5rem;
}

.pay-products__card__data__row.first-row {
	margin-bottom: 2rem;
}

.pay-products__card__data__row.second-row {
	display: flex;
}

.pay-products__card__label {
	display: block;
	font-weight: 600;
	font-size: 1.6rem;
	line-height: 150%;
	text-transform: uppercase;
	color: var(--white);
}

.pay-products__card__input {
	display: block;
	outline: none;
	background: transparent;
	border: 0;
	color: var(--white);
	font-size: 1rem;
}

.pay-products__card__input::placeholder {
	color: var(--white);
}

.pay-products__card__input.card-numder {
	color: var(--white);
	width: 100%;
}

.pay-products__card__data__year {
	margin-right: 3.5rem;
}

.pay-products__card__data__code {}

.pay-products__email {
	margin-bottom: 1.5rem;
}

.pay-products__card__data__row.second-row input {
	width: 5.4rem;
}

.pay-products__email__input {
	display: block;
	width: 100%;
	background: #333333;
	border: 1px solid var(--grey);
	font-weight: 600;
	font-size: 1.8rem;
	line-height: 150%;
	padding: 1rem 1rem;
	border-radius: 1rem;
	-webkit-border-radius: 1rem;
	-moz-border-radius: 1rem;
	-ms-border-radius: 1rem;
	-o-border-radius: 1rem;
	outline: none;
}

.pay-products__card__btn {
	width: 100%;
	background: #E97035;
	border-radius: 1rem;
	-webkit-border-radius: 1rem;
	-moz-border-radius: 1rem;
	-ms-border-radius: 1rem;
	-o-border-radius: 1rem;
	font-weight: 600;
	font-size: 1.8rem;
	line-height: 150%;
	color: var(--white);
	padding: 1.55rem 0;
	margin-bottom: 3.5rem;
}

.pay-products-currency {
	display: none;
}

.pay-products-currency._active {
	display: inline-block;
}

.pay-products__card__data__security {
	display: flex;
	align-items: center;
	justify-content: center;
}

.pay-products__card__data__security__icon {
	margin-right: 0.8rem;
}

.pay-products__card__data__security__icon svg {
	width: 2.4rem;
	height: 2.4rem;
}

.pay-products__card__data__security span {
	font-weight: 600;
	font-size: 1.2rem;
	line-height: 140%;
	color: var(--grey);
}

@media screen and (min-width: 1170px) {
	.pay-products {
		padding: 0;
		height: 100vh;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}

	.pay-products__container {
		padding: 0;
		width: 1170px;
		margin: 0 auto;
	}

	.pay-products__box {
		background: #242424;
		border-radius: 20px;
		display: grid;
		grid-template-columns: 470px 1fr;
		position: relative;
	}

	.pay-products__column {
		padding: 50px 0;
		margin-bottom: 0;
		border-right: 2px solid var(--black);
	}

	.pay-products__logo {
		padding: 0 40px;
		margin-bottom: 60px;
	}

	.pay-products__logo__ {
		margin-right: 10px;
	}

	.pay-products__logo__ img {
		width: 92px;
	}

	.pay-products__logo__label {
		width: 127px;
		font-size: 14px;
	}

	.pay-products__desc {
		padding: 0 40px 30px;
		background: transparent;
		border-bottom: 2px solid var(--black);
		margin-bottom: 0;
	}

	.pay-products__desc__row:not(:last-child) {
		margin-bottom: 10px;
	}

	.pay-products__desc__item__name {
		font-size: 18px;
		line-height: 150%;
	}

	.pay-products__card__input {
		font-size: 16px;
	}

	.pay-products__desc__item__count-products {
		font-size: 24px;
		line-height: 100%;
	}

	.pay-products__desc__item__price {
		font-size: 24px;
		line-height: 100%;
	}

	.pay-products__methods {
		padding: 30px 40px 0;
	}

	.pay-products__method__label {
		margin-bottom: 30px;
		font-size: 24px;
		line-height: 100%
	}

	.pay-products__method__item {
		margin-bottom: 20px;
	}

	.pay-products__method__item__label {
		font-size: 14px;
		line-height: 150%;
		margin-bottom: 8px;
		cursor: pointer;
	}

	.pay-products__method__item__label::before {
		width: 16px;
		height: 16px;
		margin-right: 7px;
	}

	.pay-products__method__item__label::after {
		width: 10px;
		height: 7.5px;
		left: 4px;
	}

	.pay-products__method__item__img {
		margin-left: 25px;
	}

	.pay-products__method__item.card img {
		width: 108px;
	}

	.pay-products__method__item.googlepay img {
		width: 29px;
	}

	.pay-products__card {
		padding: 169px 0 143px;
		width: 432px;
		margin: 0 auto;
	}

	.pay-products__card__data {
		border-radius: 20px;
		-webkit-border-radius: 20px;
		-moz-border-radius: 20px;
		-ms-border-radius: 20px;
		-o-border-radius: 20px;
		margin-bottom: 50px;
		padding: 98px 30px 40px;
	}

	.pay-products__card__data__row.first-row {
		margin-bottom: 40px;
	}

	.pay-products__card__data__row.second-row input {
		width: 64px;
	}

	.pay-products__card__data__year {
		margin-right: 63px;
	}

	.pay-products__card__label {
		font-size: 16px;
		line-height: 150%;
		margin-bottom: 7px;
	}

	.pay-products__email {
		margin-bottom: 17px;
	}

	.pay-products__email__input {
		border-radius: 10px;
		font-size: 18px;
		line-height: 150%;
		padding: 15.5px 10px;
		-webkit-border-radius: 10px;
		-moz-border-radius: 10px;
		-ms-border-radius: 10px;
		-o-border-radius: 10px;
	}

	.pay-products__card__btn {
		padding: 15.5px 0;
		font-size: 18px;
		line-height: 150%;
	}

	.pay-products__card__btn:hover {
		background: var(--hover);
	}

	.pay-products__card__data__security {
		position: absolute;
		right: 35px;
		bottom: 40px;
	}

	.pay-products__card__data__security__icon {
		margin-right: 8px;
	}

	.pay-products__card__data__security__icon svg {
		width: 24px;
		height: 24px;
	}

	.pay-products__card__data__security span {
		width: 77px;
		font-size: 12px;
		line-height: 140%;
	}

	.pay-products__card__btn {
		margin-bottom: 0px;
		border-radius: 10px;
		-webkit-border-radius: 10px;
		-moz-border-radius: 10px;
		-ms-border-radius: 10px;
		-o-border-radius: 10px;
	}
}


/* ------------ / PAY ------------------- */


/* ------------- POPUPS --------------------------------- */


/* ----------- popup-question ---------- */

.popup {
	opacity: 0;
	visibility: hidden;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	overflow-y: auto;
	transition: opacity 0.3s ease 0s;
	-webkit-transition: opacity 0.3s ease 0s;
	-moz-transition: opacity 0.3s ease 0s;
	-ms-transition: opacity 0.3s ease 0s;
	-o-transition: opacity 0.3s ease 0s;
	z-index: 11111;
}

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

.popup-question.open {
	opacity: 1;
	visibility: visible;
	transition: opacity 0.3s ease 0s;
	-webkit-transition: opacity 0.3s ease 0s;
	-moz-transition: opacity 0.3s ease 0s;
	-ms-transition: opacity 0.3s ease 0s;
	-o-transition: opacity 0.3s ease 0s;
}

.popup-close {
	position: absolute;
	top: 2.7rem;
	right: 2rem;
	cursor: pointer;
}

.popup-close svg {
	width: 1.7rem;
	height: 1.7rem;
}

.popup-body {
	padding: 7.6rem 2rem 6.1rem;
	background: var(--black);
	min-height: 100%;
}

.popup-title {
	font-family: var(--futura-b);
	font-style: normal;
	font-size: 2.4rem;
	line-height: 150%;
	text-transform: uppercase;
	color: var(--grey);
	text-align: center;
	margin-bottom: 0.2rem;
}

.popup-subtitle {
	font-weight: 600;
	font-size: 1.4rem;
	line-height: 150%;
	text-align: center;
	color: var(--grey);
	width: 16.4rem;
	margin: 0 auto 3.1rem;
}

.popup-question__form {
	margin-bottom: 6.1rem;
}

.question-form {}

.form-line {
	position: relative;
}

.js_form_line_partner .intl-tel-input,
.callback-form__line_mask_number .intl-tel-input {
	width: 100%;
}

.form-line:not(:last-child) {
	margin-bottom: 1rem;
}

.question-form__row {
	margin-bottom: 1rem;
}

.form-input {
	font-family: 'Open Sans';
	display: block;
	width: 100%;
	font-weight: 600;
	font-size: max(16px, 1.6rem);
	line-height: 150%;
	color: var(--grey);
	padding: max(10px, 1rem);
	background: transparent;
	outline: none;
	border: 1px solid #EEEEEE;
	border-radius: .3rem;
	-webkit-border-radius: .3rem;
	-moz-border-radius: .3rem;
	-ms-border-radius: .3rem;
	-o-border-radius: .3rem;
	font-weight: 600;
	font-size: max(15px, 1.5rem);
	line-height: 150%;
	color: var(--grey);
}

.form-input:focus+.form-label {
	display: none;
}

.form-label {
	font-family: 'Open Sans';
	display: block;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 1rem;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	font-weight: 600;
	font-size: max(15px, 1.5rem);
	line-height: 150%;
	color: var(--grey);
}

.form-label.hide {
	display: none;
}

.form-label span {
	color: var(--red);
}

.form-line.textarea {
	margin-bottom: 4rem;
}

.form-line.textarea .form-label {
	top: max(10px, 1rem);
	transform: translateY(0);
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
}

.form-line.textarea .form-textarea:focus+.form-label {
	display: none;
}

.form-textarea {
	font-family: 'Open Sans';
	width: 100%;
	outline: none;
	background: transparent;
	resize: none;
	height: max(87px, 8.7rem);
	border: 1px solid #EEEEEE;
	padding: max(10px, 1rem);
	font-weight: 600;
	font-size: max(15px, 1.5rem);
	line-height: 150%;
	color: var(--grey);
	border-radius: .3rem;
	-webkit-border-radius: .3rem;
	-moz-border-radius: .3rem;
	-ms-border-radius: .3rem;
	-o-border-radius: .3rem;
}

.question-form__row {}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-column-gap: 1.3rem;
	align-items: center;
}

.form-politics-checkbox {}

.form-politics-checkbox {
	opacity: 0;
}

.form-politics-checkbox:checked+.form-politics-checkbox-label::after {
	transform: scale(1);
}

.form-politics-checkbox-label {
	display: flex;
	align-items: center;
	position: relative;
	cursor: pointer;
	margin-top: -2rem;
}

.form-politics-checkbox-label a {
	font-size: 1.2rem;
	line-height: 150%;
	color: var(--grey);
}

.form-politics-checkbox-label::before {
	content: "";
	flex-basis: 1.6rem;
	flex-shrink: 0;
	flex-grow: 0;
	display: block;
	width: 1.6rem;
	height: 1.6rem;
	background: transparent;
	border: 1px solid var(--red);
	border-radius: .3rem;
	-webkit-border-radius: .3rem;
	-moz-border-radius: .3rem;
	-ms-border-radius: .3rem;
	-o-border-radius: .3rem;
	margin-right: 0.6rem;
}

.form-politics-checkbox-label::after {
	content: "";
	flex-basis: 1rem;
	flex-shrink: 0;
	flex-grow: 0;
	display: block;
	width: 1rem;
	height: 0.75rem;
	background: url('../img/check.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	position: absolute;
	left: 0.33rem;
	transform: scale(0);
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-ms-transform: scale(0);
	-o-transform: scale(0);
}

.form-btn {
	width: 100%;
	text-align: center;
	font-size: 1.8rem;
	line-height: 150%;
	color: var(--white);
	background: var(--red);
	padding: 1rem 0;
	border-radius: .3rem;
	-webkit-border-radius: .3rem;
	-moz-border-radius: .3rem;
	-ms-border-radius: .3rem;
	-o-border-radius: .3rem;
	font-size: 1.4rem;
}

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

.popup-question__link a {
	color: var(--white);
	display: inline-block;
}

.popup-question__link__icon {
	margin-bottom: 0.6rem;
}

.popup-question__link__icon svg {
	width: 3rem;
	height: 3rem;
}

.popup-question__link__label {
	font-weight: 600;
	font-size: 1.4rem;
	line-height: 150%;
	color: #FFFFFF;
}

@media screen and (min-width: 1170px) {
	.popup-close {
		top: 21px;
		right: 20px;
	}

	.popup-close svg {
		width: 10px;
		height: 10px;
	}

	.popup-question.open {
		width: 100%;
		height: 100%;
		justify-content: center;
		align-items: center;
		background: rgba(0, 0, 0, 0.9);
	}

	.popup-content {
		width: 635px;
		height: auto;
	}

	.popup-body {
		padding: 28px 80px 36px;
	}

	.popup-title {
		font-size: 28px;
		line-height: 100%;
		margin-bottom: 5px;
	}

	.popup-subtitle {
		font-size: 15px;
		line-height: 150%;
		margin: 0 0 39px;
		text-align: center;
		width: 100%;
	}

	.popup-question__form {
		margin-bottom: 59px;
	}

	.question-form__row {
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-column-gap: 13px;
		margin-bottom: 21px;
	}

	.form-line:not(:last-child) {
		margin-bottom: 13px;
	}

	.question-form__row .form-line {
		margin-bottom: 0;
	}

	.form-line.textarea {
		margin-bottom: 34px;
	}

	.form-line.textarea .form-label {
		top: 10px;
	}

	.form-input {
		font-size: 15px;
		line-height: 150%;
		padding: 10px;
		border-radius: 3px;
		-webkit-border-radius: 3px;
		-moz-border-radius: 3px;
		-ms-border-radius: 3px;
		-o-border-radius: 3px;
	}

	.form-label {
		font-size: 15px;
		line-height: 150%;
		left: 10px;
	}

	.form-textarea {
		font-size: 15px;
		line-height: 150%;
		padding: 10px;
		height: 116px;
		border-radius: 3px;
		-webkit-border-radius: 3px;
		-moz-border-radius: 3px;
		-ms-border-radius: 3px;
		-o-border-radius: 3px;
	}

	.form-row {
		display: flex;
	}

	.question-form__politicts {
		margin-right: 32.5px;
	}

	.form-politics-checkbox-label a {
		font-size: 12px;
		line-height: 150%;
	}

	.form-politics-checkbox-label::before {
		width: 16px;
		height: 16px;
		flex-basis: 16px;
		border-radius: 3px;
		-webkit-border-radius: 3px;
		-moz-border-radius: 3px;
		-ms-border-radius: 3px;
		-o-border-radius: 3px;
		margin-right: 8px;
	}

	.form-politics-checkbox-label::after {
		width: 10px;
		height: 7.5px;
		flex-basis: 10px;
		left: 4px;
	}

	.form-btn {
		padding: 10px;
		font-size: 18px;
		line-height: 150%;
	}

	.popup-question__link a {
		display: flex;
		justify-content: center;
	}

	.popup-question__link__icon {
		margin-right: 9px;
	}

	.popup-question__link__icon svg {
		width: 23px;
		height: 23px;
	}

	.popup-question__link__label {
		font-size: 14px;
		line-height: 150%;
	}
}


/* ----------- .popup-question ---------- */


/* ----------- .popup-bonus ---------- */
.popup-bonus {
	display: flex;
	justify-content: center;
	align-items: center;
}

.popup-bonus.open {
	opacity: 1;
	visibility: visible;
	transition: opacity 0.3s ease 0s;
	-webkit-transition: opacity 0.3s ease 0s;
	-moz-transition: opacity 0.3s ease 0s;
	-ms-transition: opacity 0.3s ease 0s;
	-o-transition: opacity 0.3s ease 0s;
}

.popup-bonus__content {
	width: 100%;
}

.popup-close-bonus {
	position: absolute;
	top: 2.7rem;
	right: 2rem;
	cursor: pointer;
}

.popup-close-bonus svg {
	width: 1.7rem;
	height: 1.7rem;
}

.popup-bonus__title {
	margin-bottom: 0.6rem;
}

.popup-bonus__title span {
	color: #FF4000;
}

.popup-bonus__subtitle {
	margin: 0 0 1.8rem;
	width: 100%;
}


.bonus-form__line .intl-tel-input {
	width: 100%;
}

.get_icon_bonus {
	position: fixed;
	z-index: 10;
	bottom: 2rem;
	right: 2rem;
}

.get_icon_bonus svg {
	width: 5rem;
	height: 5rem;
	animation: anim-bonus 2s linear 0s infinite;
	-webkit-animation: anim-bonus 2s linear 0s infinite;
}


@keyframes anim-bonus {
	0% {
		transform: rotate(0deg);
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		-o-transform: rotate(0deg);
	}

	3% {
		transform: rotate(-10deg);
		-webkit-transform: rotate(-10deg);
		-moz-transform: rotate(-10deg);
		-ms-transform: rotate(-10deg);
		-o-transform: rotate(-10deg);
	}

	6% {
		transform: rotate(10deg);
		-webkit-transform: rotate(10deg);
		-moz-transform: rotate(10deg);
		-ms-transform: rotate(10deg);
		-o-transform: rotate(10deg);
	}

	9% {
		transform: rotate(-10deg);
		-webkit-transform: rotate(-10deg);
		-moz-transform: rotate(-10deg);
		-ms-transform: rotate(-10deg);
		-o-transform: rotate(-10deg);
	}

	12% {
		transform: rotate(10deg);
		-webkit-transform: rotate(10deg);
		-moz-transform: rotate(10deg);
		-ms-transform: rotate(10deg);
		-o-transform: rotate(10deg);
	}

	15% {
		transform: rotate(0deg);
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		-o-transform: rotate(0deg);
	}


	100% {
		transform: rotate(0);
		-webkit-transform: rotate(0);
		-moz-transform: rotate(0);
		-ms-transform: rotate(0);
		-o-transform: rotate(0);
	}
}

.popup-bonus__timer {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 4.2rem;
}

.popup-bonus__timer__item {
	display: flex;
}

.popup-bonus__timer__item span {
	width: 2.3rem;
	height: 3.7rem;
	background: #999999;
	border-radius: .5rem;
	color: #fff;
	font-family: 'Open Sans';
	font-weight: 600;
	font-size: 1.5rem;
	line-height: 150%;
	display: flex;
	align-items: center;
	justify-content: center;
	-webkit-border-radius: .5rem;
	-moz-border-radius: .5rem;
	-ms-border-radius: .5rem;
	-o-border-radius: .5rem;
}

.popup-bonus__timer__item span:first-child {
	margin-right: 0.3rem;
}

.popup-subtitle__timer__dots {
	font-family: 'Open Sans';
	font-weight: 600;
	font-size: 1.5rem;
	line-height: 150%;
	color: #FFFFFF;
	margin: 0 .6rem;
}

.popup-bonus__timer__hours {}

.popup-bonus__timer__minutes {}

.popup-bonus__timer__seconds {}

.bonus-form__row {
	margin-top: 4.4rem;
}

@media screen and (min-width: 1170px) {
	.popup-close-bonus {
		top: 21px;
		right: 20px;
	}

	.popup-close-bonus svg {
		width: 10px;
		height: 10px;
	}

	.popup-bonus.open {
		width: 100%;
		height: 100%;
		justify-content: center;
		align-items: center;
		background: rgba(0, 0, 0, 0.9);
	}

	.popup-content {
		width: 635px;
		height: auto;
	}

	.popup-body {
		padding: 28px 80px 36px;
	}

	.popup-bonus__body {
		padding: 67px 80px 86px;
	}

	.popup-title {
		font-size: 28px;
		line-height: 100%;
		margin-bottom: 5px;
	}

	.popup-bonus__title {
		font-size: 38px;
		line-height: 49px;
	}

	.popup-subtitle {
		font-size: 15px;
		line-height: 150%;
		margin: 0 0 39px;
		text-align: center;
		width: 100%;
	}

	.popup-bonus__subtitle {
		margin: 0 0 16px;
	}

	.popup-bonus__timer {
		margin-bottom: 50px;
	}

	.popup-bonus__timer__item span {
		width: 23px;
		height: 37px;
		font-size: 15px;
		line-height: 150%;
		border-radius: 5px;
		-webkit-border-radius: 5px;
		-moz-border-radius: 5px;
		-ms-border-radius: 5px;
		-o-border-radius: 5px;
	}

	.popup-subtitle__timer__dots {
		font-size: 15px;
		line-height: 150%;
		margin: 0 6px;
	}

	.popup-question__form {
		margin-bottom: 59px;
	}

	.bonus-form__row {
		margin-top: 47px;
	}

	.question-form__row {
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-column-gap: 13px;
		margin-bottom: 21px;
	}

	.bonus-form__politics__checkbox__label {
		width: 200px;
	}

	.form-line:not(:last-child) {
		margin-bottom: 13px;
	}

	.question-form__row .form-line {
		margin-bottom: 0;
	}

	.form-line.textarea {
		margin-bottom: 34px;
	}

	.form-line.textarea .form-label {
		top: 10px;
	}

	.form-input {
		font-size: 15px;
		line-height: 150%;
		padding: 10px;
		border-radius: 3px;
		-webkit-border-radius: 3px;
		-moz-border-radius: 3px;
		-ms-border-radius: 3px;
		-o-border-radius: 3px;
	}

	.form-label {
		font-size: 15px;
		line-height: 150%;
		left: 10px;
	}

	.form-textarea {
		font-size: 15px;
		line-height: 150%;
		padding: 10px;
		height: 116px;
		border-radius: 3px;
		-webkit-border-radius: 3px;
		-moz-border-radius: 3px;
		-ms-border-radius: 3px;
		-o-border-radius: 3px;
	}

	.form-row {
		display: flex;
	}

	.question-form__politicts {
		margin-right: 32.5px;
	}

	.form-politics-checkbox-label a {
		font-size: 12px;
		line-height: 150%;
	}

	.form-politics-checkbox-label::before {
		width: 16px;
		height: 16px;
		flex-basis: 16px;
		border-radius: 3px;
		-webkit-border-radius: 3px;
		-moz-border-radius: 3px;
		-ms-border-radius: 3px;
		-o-border-radius: 3px;
		margin-right: 8px;
	}

	.form-politics-checkbox-label::after {
		width: 10px;
		height: 7.5px;
		flex-basis: 10px;
		left: 4px;
	}

	.form-btn {
		padding: 10px;
		font-size: 18px;
		line-height: 150%;
	}

	.popup-question__link a {
		display: flex;
		justify-content: center;
	}

	.popup-question__link__icon {
		margin-right: 9px;
	}

	.popup-question__link__icon svg {
		width: 23px;
		height: 23px;
	}

	.popup-question__link__label {
		font-size: 14px;
		line-height: 150%;
	}

	.get_icon_bonus {
		bottom: 5%;
		right: 5%;
	}

	.get_icon_bonus svg {
		width: 96px;
		height: 99px;
	}

}

/* ----------- .popup-bonus ---------- */


/* ----------- .popup-callback ---------- */

.popup-callback.open {
	opacity: 1;
	visibility: visible;
	transition: opacity 0.3s ease 0s;
	-webkit-transition: opacity 0.3s ease 0s;
	-moz-transition: opacity 0.3s ease 0s;
	-ms-transition: opacity 0.3s ease 0s;
	-o-transition: opacity 0.3s ease 0s;
}

.popup-callback__subtitle {
	margin: 0 0 5.2rem;
	width: 100%;
}

.popup-callback__body {
	padding: 7.6rem 2rem 9.8rem;
}

.popup-callback__subtitle {
	margin-bottom: 2.9rem;
}

@media screen and (min-width: 1170px) {
	.popup-callback.open {
		display: flex;
		align-items: center;
		justify-content: center;
		background: rgba(0, 0, 0, 0.8);
	}

	.popup-callback__body {
		padding: 38px 80px 51px;
	}

	.popup-callback__subtitle {
		margin-bottom: 29px;
	}
}


/* ----------- .popup-callback ---------- */


/* ------------- POPUPS --------------------------------- */





/* ------------- FIRST BANNER -------------------*/


.first-banner {
	background: #141414;
	margin-bottom: 10rem;
}

.first-banner__list {}

.js_first-banner_slick .slick-dots {
	position: absolute;
	width: 100%;
	z-index: 1;
}

.js_first-banner_slick .slick-list {
	overflow: hidden;
}

.first-banner__item {}

.first-slide {}

.first-banner__item.slide-item-order .first-slide__eng-img-bg {
	display: none;
}

.first-slide__container {
	padding: 6rem 0;
	position: relative;
	min-height: 45rem;
}

.first-slide__content-block {
	position: relative;
	z-index: 1;
	background: #1D1D1D;
	padding: 2rem 2rem 2.6rem 2rem;
	margin: 2rem;
	border-radius: 2rem;
	-webkit-border-radius: 2rem;
	-moz-border-radius: 2rem;
	-ms-border-radius: 2rem;
	-o-border-radius: 2rem;
}

.first-banner__item.slide-item-order {
	background: #141414;
}

.first-banner__item.slide-item-order .first-slide__content-block {
	border-radius: 1rem;
	-webkit-border-radius: 1rem;
	-moz-border-radius: 1rem;
	-ms-border-radius: 1rem;
	-o-border-radius: 1rem;
	padding: 2rem 0 1.3rem;
}

.first-slide__title {
	font-family: var(--futura-b);
	font-size: 2rem;
	line-height: 100%;
	text-transform: uppercase;
	color: #FFFFFF;
	margin-bottom: 1rem;
}

.first-slide__text {
	display: none;
}

.first-slide__amount {}

.first-slide__date {}

.first-slide__btn {
	position: absolute;
	bottom: 5rem;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	width: 25rem;
	font-size: 1.6rem;
	line-height: 100%;
	background: #FF4000;
	text-align: center;
	padding: 1.4rem 0;
	color: #fff;
	border-radius: .3rem;
	-webkit-border-radius: .3rem;
	-moz-border-radius: .3rem;
	-ms-border-radius: .3rem;
	-o-border-radius: .3rem;
}

.first-slide__logo {
	display: none;
}

.first-slide__trigger {
	display: none;
}

.first-slide__trigger__img {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
}

.first-slide__img {
	position: absolute;
	left: 2rem;
	right: 2rem;
	top: 10rem;
}

.first-slide__img img {
	width: 100%;
}

.first-screen-lang-block {
	display: none;
}

.first-slide-eng {}

.first-slide-eng .first-slide__container {
	min-height: 45rem;
	padding-bottom: 0;
}

.first-slide__eng-content {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.first-slide__eng-content h1 {
	margin-left: 4rem;
}

.first-slide__eng-img-bg {}

.first-slide__eng-img-bg img {
	width: 100%;
}

.second-slider {}

.second-slide__container {
	padding: 6rem 0;
	position: relative;
	min-height: 45rem;
}

.second-slider__ru .second-slide__container {
	min-height: 45rem;
}

.second-slide__content-block {
	background: #1D1D1D;
	border-radius: 2rem;
	-webkit-border-radius: 2rem;
	-moz-border-radius: 2rem;
	-ms-border-radius: 2rem;
	-o-border-radius: 2rem;
	padding: 3rem 4rem 6rem 2rem;
	margin: 2rem 2rem 0;
}

.second-slide__title {
	font-family: var(--futura-b);
	font-size: 2.8rem;
	line-height: 100%;
	text-transform: uppercase;
	color: #FFFFFF;
}

.second-slide__subtitle {
	font-family: var(--futura-b);
	font-size: 2.8rem;
	line-height: 100%;
	text-transform: uppercase;
	color: #00B2FF;
}

.second-slide__img {
	position: absolute;
	top: 18rem;
	left: 0;
	right: 0;
	z-index: 3;
	display: flex;
	justify-content: center;
}

.second-slide__img img {
	width: 90%;
}

.second-slide__btn {
	position: absolute;
	left: 50%;
	bottom: 5rem;
	background: #00B2FF;
	border-radius: .3rem;
	-webkit-border-radius: .3rem;
	-moz-border-radius: .3rem;
	-ms-border-radius: .3rem;
	-o-border-radius: .3rem;
	color: #fff;
	padding: 1.4rem 0;
	width: 25rem;
	font-size: 1.6rem;
	line-height: 100%;
	text-align: center;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
}

.second-slide__individ {
	display: none;
}

.second-slide__sound__availeble-sound {
	font-weight: 600;
	font-size: 1.2rem;
	line-height: 100%;
	color: #A5A5A5;
	padding: 0.5rem 1rem;
	background: #1D1D1D;
	box-shadow: 0rem .4rem 1.3rem rgba(0, 0, 0, 0.4);
	border-radius: 1rem;
	-webkit-border-radius: 1rem;
	-moz-border-radius: 1rem;
	-ms-border-radius: 1rem;
	-o-border-radius: 1rem;
	position: absolute;
	top: 16.5rem;
	right: 3rem;
	z-index: 1;
}

.second-slide__sound {
	display: none;
}

.second-slide__sound__title {}

.second-slide__sound__subtitle {}

.first-slide__stock {}

.first-slide__stock__text {
	font-family: var(--futura-b);
	font-size: 2.2rem;
	line-height: 120%;
	text-align: center;
	text-transform: uppercase;
	color: var(--white);
}

.first-slide__stock__text span {
	color: var(--red);
}

.first-slide__stock__dur {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 500;
	font-size: 1.4rem;
	line-height: 120%;
	color: #A5A5A5;
	text-align: center;
	margin-bottom: 0.5rem;
}

.first-slide__products {
	padding: 0 2rem;
	margin-bottom: 3rem;
}

.first-slide__product {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 1.8rem;
}

.first-slide__product__column {}

.first-slide__product__count {
	font-family: var(--futura-m);
	font-weight: 500;
	font-size: 1.8rem;
	line-height: 157%;
	color: #A5A5A5;
	margin-bottom: 0.2rem;
}

.first-slide__product__price {
	display: flex;
}

.first-slide__product__price__old {
	font-family: var(--futura-m);
	font-style: normal;
	font-weight: 500;
	font-size: 2.4rem;
	line-height: 138%;
	color: #A5A5A5;
	margin-right: 1.8rem;
	position: relative;
}

.first-slide__product__price__old::before {
	content: "";
	display: block;
	width: 100%;
	height: 2px;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	background: var(--grey);
}

.first-slide__product__price__new {
	font-family: var(--futura-m);
	font-style: normal;
	font-weight: 500;
	font-size: 2.4rem;
	line-height: 138%;
	color: var(--white);
}

.first-slide__product__image {
	mix-blend-mode: lighten;
}

.first-slide__content__btn {
	display: flex;
	justify-content: center;
}

.first-slide__content__btn span {
	width: 25rem;
	text-align: center;
	padding: 0.8rem 0;
	background: var(--red);
	border-radius: 0.3rem;
	-webkit-border-radius: 0.3rem;
	-moz-border-radius: 0.3rem;
	-ms-border-radius: 0.3rem;
	-o-border-radius: 0.3rem;
	font-family: 'Open Sans';
	font-weight: 600;
	font-size: 1.6rem;
	line-height: 150%;
	text-align: center;
	color: var(--white);

}


@media screen and (min-width:1170px) {
	.first-banner {
		margin-bottom: 200px;
		padding-top: 170px;
	}

	.first-banner__container {
		width: 1170px;
		margin: 0 auto;
	}

	.first-banner__item {}

	.first-slide {}

	.first-slide__container {
		padding: 60px 0;
		min-height: unset;
	}

	.first-slide__content-block {
		width: 680px;
		margin: 0;
		padding: 45px 45px 180px 45px;
	}

	.first-slide__title {
		font-size: 48px;
		margin-bottom: 5px;
	}

	.first-slide__text {
		display: block;
		max-width: 480px;
		margin-bottom: 25px;
		font-weight: 500;
		font-size: 22px;
		line-height: 140%;
		color: #A5A5A5;
	}

	.first-slide__amount {
		font-size: 22px;
		color: #fff;
	}

	.first-slide__date {
		font-size: 22px;
		color: #fff;
	}

	.first-slide__logo {
		display: block;
		position: absolute;
		right: 50px;
		bottom: 60px;
	}

	.first-slide__trigger {
		display: block;
		z-index: 2;
		position: absolute;
		top: 180px;
		left: 560px;
		width: 150px;
		height: 150px;
	}

	.first-slide__trigger__img {}

	.first-slide__img {
		left: unset;
		right: 0;
		top: 50%;
		transform: translateY(-50%);
	}

	.first-slide__btn {
		width: 250px;
		font-size: 18px;
		bottom: 120px;
		z-index: 2;
		left: 45px;
		transform: translateX(0);
		-webkit-transform: translateX(0);
		-moz-transform: translateX(0);
		-ms-transform: translateX(0);
		-o-transform: translateX(0);
	}

	.first-screen-lang-block {
		display: block;
		width: 1170px;
		margin: 0 auto;
		position: relative;
	}

	.first-banner__item {}

	.first-slide__eng-content h1 {
		margin-left: 0;
	}

	.first-slide-eng .first-slide__container {
		padding-top: 0;
		height: 575px;
		min-height: 0px;
	}

	.second-slider {}

	.second-slider__ru .second-slide__container {
		min-height: unset;
		height: 575px;
	}

	.second-slide__container {
		padding: 0;
		height: 575px;
		min-height: unset;
	}

	.second-slide__content-block {
		width: 850px;
		float: right;
		height: 510px;
		position: relative;
		margin: 0;
	}

	.second-slide__title {
		position: absolute;
		left: -280px;
		top: 40px;
		font-size: 68px;
	}

	.second-slide__subtitle {
		position: absolute;
		left: -280px;
		top: 120px;
		font-size: 68px;
	}

	.second-slide__img {
		width: 830px;
		top: 230px;
		left: 210px;
	}

	.second-slide__btn {
		z-index: 4;
		left: 31%;
		bottom: unset;
		top: 128px;
		width: 250px;
		font-size: 20px;
		padding: 16px 0;
	}

	.second-slide__individ {
		width: 300px;
		display: block;
		position: absolute;
		bottom: 50px;
		left: 75px;
		font-weight: 600;
		font-size: 18px;
		line-height: 150%;
		color: #A5A5A5;
		padding: 12px 50px 18px 45px;
		background: #1D1D1D;
		box-shadow: 0px 4px 13px rgb(0 0 0 / 39%);
		border-radius: 60px;
		-webkit-border-radius: 60px;
		-moz-border-radius: 60px;
		-ms-border-radius: 60px;
		-o-border-radius: 60px;
	}

	.second-slide__sound__availeble-sound {
		display: none;
	}

	.second-slide__sound {
		display: block;
		position: absolute;
		right: 50px;
		bottom: 220px;
		padding: 30px 100px 55px 35px;
		background: #1D1D1D;
		box-shadow: 0px 4px 13px rgba(0, 0, 0, 0.39);
		border-radius: 15px;
		-webkit-border-radius: 15px;
		-moz-border-radius: 15px;
		-ms-border-radius: 15px;
		-o-border-radius: 15px;
	}

	.second-slide__sound__title {
		font-family: var(--futura-b);
		font-size: 30px;
		line-height: 100%;
		text-transform: uppercase;
		color: #A5A5A5;
		margin-bottom: 12px;
	}

	.second-slide__sound__subtitle {
		font-weight: 600;
		font-size: 18px;
		line-height: 150%;
		color: #A5A5A5;
		width: 220px;
	}

	.first-banner__item.slide-item-order .first-slide__eng-img-bg {
		display: block;
		border-radius: 20px;
		-webkit-border-radius: 20px;
		-moz-border-radius: 20px;
		-ms-border-radius: 20px;
		-o-border-radius: 20px;
		overflow: hidden;
		cursor: pointer;
	}

	.first-slide__content {
		display: none;
	}
}

/* ----------------- PAGE thanks ------------------ */

.thanks-box {
	background: #000000;
}

.thanks-box__container {
	width: 100%;
	padding: 7rem 1rem;
}

.thanks-box__title {
	text-align: center;
	margin-bottom: 2.8rem;
}

.thanks-box__title__ {
	font-family: var(--futura-b);
	font-size: 2.2rem;
	line-height: 100%;
	text-transform: uppercase;
	color: var(--grey);
}

.thanks-box__subtitle {
	font-family: var(--futura-b);
	font-size: 2.2rem;
	line-height: 100%;
	text-transform: uppercase;
	color: var(--grey);
}

.thanks-box__text {
	font-weight: 600;
	color: var(--grey);
	text-align: center;
}

.thanks-box__text span {
	font-size: 1.4rem;
	line-height: 150%;
}

.thanks-box__text a {
	font-size: 1.4rem;
	line-height: 150%;
	color: var(--grey);
	color: #EEEEEE;
	text-decoration: none;
	border-bottom: 1px solid #EEEEEE;
	transition: 150ms;
	-webkit-transition: 150ms;
	-moz-transition: 150ms;
	-ms-transition: 150ms;
	-o-transition: 150ms;
}

.thanks-box__text a:hover {
	border-bottom: 1px solid transparent;
	transition: 150ms;
	-webkit-transition: 150ms;
	-moz-transition: 150ms;
	-ms-transition: 150ms;
	-o-transition: 150ms;
}

@media screen and (min-width: 1170px) {
	.thanks-box__container {
		padding: 249px 10px 314px;
	}

	.thanks-box__title {
		margin-bottom: 38px;
	}

	.thanks-box__title__ {
		font-size: 48px;
		line-height: 100%;
	}

	.thanks-box__subtitle {
		font-size: 48px;
		line-height: 100%;
	}

	.thanks-box__text span {
		font-size: 18px;
		line-height: 100%;
	}

	.thanks-box__text a {
		font-size: 18px;
		line-height: 100%;
	}
}

/* ----------------- PAGE thanks END ------------------ */


/* ----------------- tuningspeed bank info --------------------- */
.tuningspeed__bank-info {
	margin: 0 2rem 2rem;
	display: flex;
	flex-direction: column;
}

@media screen and (min-width: 1170px) {
	.tuningspeed__bank-info {
		width: 1170px;
		margin: 0 auto 3rem;
		flex-direction: row;
	}

	.tuningspeed__bank-info p {
		margin-right: 1rem;
	}
}

/* ----------------- tuningspeed bank info END ------------------ */



.thor-banner {}

.thor-banner__container {
	padding: 6rem 0;
	position: relative;
	min-height: 40rem;
}

.thor-banner__container.slide-rassrochka {
	min-height: 45rem;
}

.thor-banner__content {
	padding: 4rem 2.6rem 0;
}

.thor-banner__title {
	font-family: var(--futura-b);
	font-size: 3.5rem;
	line-height: 86%;
	text-transform: uppercase;
	color: #EEEEEE;
	margin-bottom: 1rem;
}

.thor-banner__title span {
	display: block;
	color: var(--red);
}

.thor-banner__text {
	font-family: 'Open Sans';
	font-weight: 600;
	font-size: 1.4rem;
	line-height: 88%;
	color: #EEEEEE;
	margin-bottom: 2rem;
}

.thor-banner__btn a {
	display: inline-block;
	font-family: 'Open Sans';
	font-weight: 600;
	font-size: 1.4rem;
	line-height: 150%;
	text-align: center;
	color: #FFFFFF;
	text-decoration: none;
	background: var(--red);
	border-radius: .3rem;
	-webkit-border-radius: .3rem;
	-moz-border-radius: .3rem;
	-ms-border-radius: .3rem;
	-o-border-radius: .3rem;
	padding: 1rem 2.4rem;
	cursor: pointer;
}

.thor-banner__img img:last-child {
	display: none;
}

.thor-banner__img {
	position: absolute;
	bottom: 0;
	left: 2.6rem;
	right: 0;
}


.thor-banner__img img {
	width: 100%;
}

@media screen and (min-width: 1170px) {
	.thor-banner__container {
		padding: 0;
		height: 553px;
		min-height: unset;
	}

	.thor-banner__content {
		padding: 0;
	}

	.thor-banner__box {
		position: relative;
		z-index: 2;
		padding: 87px 48px;
	}

	.thor-banner__title {
		font-size: 80px;
		line-height: 93%;
		margin-bottom: 20px;
	}

	.thor-banner__text {
		font-size: 25px;
		line-height: 88%;
		margin-bottom: 66px;
	}

	.thor-banner__btn a {
		font-size: 18px;
		line-height: 150%;
		padding: 12px 48px;
		border-radius: 3px;
		-webkit-border-radius: 3px;
		-moz-border-radius: 3px;
		-ms-border-radius: 3px;
		-o-border-radius: 3px;
	}

	.thor-banner__img {
		top: 0;
		left: 0;
		right: 0;
	}

	.thor-banner__img img:first-child {
		display: none;
	}

	.thor-banner__img img:last-child {
		display: block;
	}
}