@font-face {
	font-family: Roboto;
	src: url('../fonts/Roboto-Regular.ttf');
	font-weight: normal;
}
@font-face {
	font-family: Roboto;
	src: url('../fonts/Roboto-Medium.ttf');
	font-weight: 600;
}
@font-face {
	font-family: Roboto;
	src: url('../fonts/Roboto-Bold.ttf');
	font-weight: 700;
}
@font-face {
	font-family: Roboto;
	src: url('../fonts/Roboto-Black.ttf');
	font-weight: 900;
}
@font-face {
	font-family: Roboto;
	src: url('../fonts/Roboto-Light.ttf');
	font-weight: 300;
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  }
  @-webkit-keyframes fadeIn {
  0% {opacity: 0;}
  100% {opacity: 1;}
  }
  @keyframes fadeIn {
  0% {opacity: 0;}
  100% {opacity: 1;}
  } 



* {
	font-family: Roboto, Arial, sans-serif;
	color: #292828;
} 
body {
	padding: 0;
	margin: 0;
}
h1,h2,h3,h4 {
	padding: 0;
	margin: 0;
}
h1 {
	font-size: 42px;
	text-align: center;
	padding-top: 50px;
	margin-bottom: 20px;
}
h2 {
	font-size: 26px;
}
h3 {
	font-size: 22px;
}
h4 {
	font-size: 18px;
	font-weight: 400;
}
p {
	font-size: 22px;
}
a {
	text-decoration: none;
}
section {
	width: 100%;
	display: flex;
	justify-content: center;
}

[data-tooltip] {
  position: relative;
  z-index: 10;
}
[data-tooltip]:before,
[data-tooltip]:after {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  left: 50%;
  bottom: calc(100% + 5px);
  pointer-events: none;
  transition: 0.2s;
  will-change: transform;
}
[data-tooltip]:before {
  content: attr(data-tooltip);
  padding: 10px 18px;
  min-width: 50px;
  max-width: 300px;
  width: max-content;
  width: -moz-max-content;
  border-radius: 6px;
  font-weight: 400;
  font-size: 16px;
  background-color: rgba(59, 72, 80, 0.9);
  background-image: linear-gradient(30deg,
    rgba(59, 72, 80, 0.44),
    rgba(59, 68, 75, 0.44),
    rgba(60, 82, 88, 0.44));
  box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.2);
  color: #fff;
  text-align: center;
  white-space: pre-wrap;
  transform: translate(-50%, -5px) scale(0.5);
}
[data-tooltip]:after {
  content: " ";
  border-style: solid;
  border-width: 5px 5px 0px 5px;
  border-color: rgba(55, 64, 70, 0.9) transparent transparent transparent;
  transition-duration: 0s; /* If the mouse leaves the element, 
                              the transition effects for the 
                              tooltip arrow are "turned off" */
  transform-origin: top;   /* Orientation setting for the
                              slide-down effect */
  transform: translateX(-50%) scaleY(0);
}

/* Tooltip becomes visible at hover */
[data-tooltip]:hover:before,
[data-tooltip]:hover:after {
  visibility: visible;
  opacity: 1;
}
/* Scales from 0.5 to 1 -> grow effect */
[data-tooltip]:hover:before {
  transition-delay: 0.3s;
  transform: translate(-50%, -5px) scale(1);
}
/* Slide down effect only on mouseenter (NOT on mouseleave) */
[data-tooltip]:hover:after {
  transition-delay: 0.5s; /* Starting after the grow effect */
  transition-duration: 0.2s;
  transform: translateX(-50%) scaleY(1);
}
.lock {
	display: flex;
	width: 70px;
	height: 100%;
	background: url(../img/lock.png);
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
}
.tool_cam:hover {
	cursor: pointer;
}
.tel {
	pointer-events: none;
	font-weight: 600;
}
.tel:hover {
	cursor: inherit;
}
.hidden {
	display: none!important;
}
.vanish {
	visibility: hidden;
}
.show {
	display: flex;
}
.seporator {
	display: flex;
	width: 100%;
	justify-content: center;
	padding: 100px 0;
}
.seporator i {
	display: block;
	height: 5px;
	width: 125px;
	background: #e4e4e4;
	border-radius: 5px;
}
.container {
	display: flex;
	max-width: 1200px;
	width: 100%;
}
section.header {
	box-shadow: 0 0 60px 0 rgba(0,0,0,.2);
	padding: 10px 0;
	position: fixed;
	background: rgba(255,255,255,.9);
	z-index: 4;
}
section.header .container {
	justify-content: space-between;
	align-items: center;
	padding: 0 10px;
}
section.header .logo {
	width: 220px;
	height: 49px;
	background: url(../img/logo.png);
	background-position: center;
	background-repeat: repeat;
	background-size: cover;
}
section.header nav {
	display: flex;
	justify-content: flex-end;
}
section.header nav a {
	padding: 0 15px;
	font-size: 18px;
	font-weight: 400;
	transition: color .3s;
}
section.header nav a:hover {
	color: #315fc1;
}
section.header .header__btn a {
	font-size: 16px;
	color: #fff;
	border: none;
	border-radius: 50px;
	padding: 12px 15px;
	background: rgb(185,0,31);
    background: -moz-linear-gradient(0deg, rgba(185,0,31,1) 0%, rgba(234,0,26,1) 100%);
    background: -webkit-linear-gradient(0deg, rgba(185,0,31,1) 0%, rgba(234,0,26,1) 100%);
    background: linear-gradient(0deg, rgba(185,0,31,1) 0%, rgba(234,0,26,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#b9001f",endColorstr="#ea001a",GradientType=1); 
}
section.header .header__btn a:hover {
	cursor: pointer;
	background: rgb(101,0,17);
    background: -moz-linear-gradient(0deg, rgba(101,0,17,1) 0%, rgba(234,0,26,1) 100%);
    background: -webkit-linear-gradient(0deg, rgba(101,0,17,1) 0%, rgba(234,0,26,1) 100%);
    background: linear-gradient(0deg, rgba(101,0,17,1) 0%, rgba(234,0,26,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#650011",endColorstr="#ea001a",GradientType=1);
}

section.hero {
	padding-top: 69px;
}

section.hero .hero-container {
	max-width: unset;
	background: url("../img/hero-bg.png") top center no-repeat;
	background-size: cover;

}

section.hero .hero__content {
	background: #2C66BE;
	margin: 10% auto;
	padding: 9px 16px;
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: space-between;
}

section.hero .hero__content-title, .hero__content-subtitle {
	color: #fff;
	margin: 0;
	padding: 0;
}

section.hero .hero__content-title {
	margin-bottom: 2%;
}


section.offer .container {
	flex-direction: column;
	align-items: center;
}

section.offer .offer__title {
	margin-top: 44px;
	margin-bottom: 64px;
	text-align: center;
	font-size: 26px;
	line-height: 140%;
	color: #4d4d4d;
}

section.offer h2 {
	font-weight: 400;
}
section.offer p {
	text-align: center;
	margin-bottom: 60px;
	line-height: 40px;
}
section.offer .service {
	display: flex;
	width: 100%;
	justify-content: space-evenly;
}
section.offer .service .service__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}
section.offer .service .service__item a {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
section.offer .service .service__item .service__item__img {
	width: 140px;
	height: 140px;
	transition: transform .3s;
	border-radius: 20px;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	background: rgb(41,75,158);
    background: -moz-linear-gradient(0deg, rgba(41,75,158,1) 0%, rgba(51,102,204,1) 100%);
    background: -webkit-linear-gradient(0deg, rgba(41,75,158,1) 0%, rgba(51,102,204,1) 100%);
    background: linear-gradient(0deg, rgba(41,75,158,1) 0%, rgba(51,102,204,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#294b9e",endColorstr="#3366cc",GradientType=1);
}

section.offer .service .service__item .service__item__img__intercom img{
	background: #fff;
	min-width: 70px;
	min-height: 70px;
}


section.offer .service .service__item h3 {
	font-weight: 600;
}
section.offer .service .service__item .service__item__img:hover {
	cursor: pointer;
	transform: scale(.9);
	background: rgb(32,65,145);
    background: -moz-linear-gradient(0deg, rgba(32,65,145,1) 0%, rgba(51,102,204,1) 100%);
    background: -webkit-linear-gradient(0deg, rgba(32,65,145,1) 0%, rgba(51,102,204,1) 100%);
    background: linear-gradient(0deg, rgba(32,65,145,1) 0%, rgba(51,102,204,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#204191",endColorstr="#3366cc",GradientType=1); 
}
section.offer .service .service__item .service__item__img:active {
	transform: scale(.8);
}
section.smart {
	margin-bottom: 70px;
	background: url(../img/bg_right.png) right center no-repeat;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}
section.smart h2 {
	margin-bottom: 60px;
}
section.smart .container {
	justify-content: space-evenly;
}
section.smart .smart__img {
	width: 45%;
	display: flex;
	justify-content: center;
}
section.smart .smart__img img {
	box-shadow: 0 0 130px 0 rgba(0,0,0,.13);
}
section.smart .smart__descr {
	width: 45%;
	font-size: 24px;
	font-weight: 400;
	display: flex;
	justify-content: center;
	align-items: center;
	line-height: 45px;
}
section.smart_points {
	background: url(../img/bg_left.png) left center no-repeat;
}
section.smart_points .container {
	flex-direction: column;
	align-items: center;
}
section.smart_points .smart_points__filter {
 	display: flex;
	flex-wrap: wrap;
	width: 100%;
	justify-content: space-evenly;
}
.smart_points__filter__item {
 	width: 25%;
 	padding: 20px;
 	margin-bottom: 30px;
 	border-radius: 10px;
 	display: flex;
 	align-items: center;
 	justify-content: space-between;
 	transition: box-shadow .3s;
}
.smart_points__filter__item:hover {
	box-shadow: 0 0 100px 0 rgba(0,0,0,.1);
	cursor: pointer;
}
.smart_points__filter__item .icon {
	width: 60px;
	height: 60px;
	background-repeat: no-repeat;
	background-position: center;
}
.smart_points__filter__item .icon1 {
	background-image: url(../img/ic1.png);
	background-size: 37px;
}
.smart_points__filter__item .icon2 {
	background-image: url(../img/ic2.png);
	background-size: 47px;
}
.smart_points__filter__item .icon3 {
	background-image: url(../img/ic3.png);
	background-size: 57px;
}
.smart_points__filter__item .icon4 {
	background-image: url(../img/ic4.png);
	background-size: 47px;
}
.smart_points__filter__item .icon5 {
	background-image: url(../img/ic5.png);
	background-size: 28px;
}
.smart_points__filter__item .icon6 {
	background-image: url(../img/ic6.png);
	background-size: 50px;
}
.smart_points__filter__item .icon7 {
	background-image: url(../img/ic7.png);
	background-size: 52px;
}
.smart_points__filter__item .icon8 {
	background-image: url(../img/ic8.png);
	background-size: 52px;
}
.smart_points__filter__item .icon9 {
	background-image: url(../img/ic9.png);
	background-size: 52px;
}
.smart_points__filter__item h4 {
	display: flex;
	flex-grow: 1;
	text-align: center;
	justify-content: center;
}
.smart_active {
	box-shadow: 0 0 200px 0 rgba(0,0,0,.25);
}
.smart_content {
	border-radius: 10px;
	display: flex;
	width: 100%;
	box-shadow: 0 0 120px 0 rgba(0,0,0,.1);
}
.smart_content .left_side {
	display: flex;
	flex-direction: column;
	width: 70%;
	justify-content: space-between;
	padding: 70px;
}
.headers {
	flex-grow: 1;
    line-height: 40px;
}
.headers_item {
	display: none;
	flex-direction: column;
}
.headers_item h2 {
	font-size: 24px;
	font-weight: 600;
}
.headers_item p {
	font-size: 22px;
}
.headers_item .headers__a {
	color: #315fc0;
	font-size: 18px;
	position: relative;
}
.headers .headers_active {
	display: flex;
}
.steps {
	padding-bottom: 30px;
	line-height: 40px;
}
.steps__item p.no-bef:before {
	content: none;
}
.steps__item {
	display: none;
}
.steps .steps_active {
	display: flex;
}
.right_side__img .onestep_active, .steps .steps__item .onestep_active {
	display: flex;
}
.steps__item .step {
	display: none;
	font-size: 20px;
	position: relative;
}
.steps__item .step:before {
	content: '';
	color: #fff;
	font-weight: 600;
	font-size: 18px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	width: 30px;
	height: 30px;
	top: 5px;
	left: -50px;
	border-radius: 50%;
	background: rgb(41,75,158);
    background: -moz-linear-gradient(0deg, rgba(41,75,158,1) 0%, rgba(51,102,204,1) 100%);
    background: -webkit-linear-gradient(0deg, rgba(41,75,158,1) 0%, rgba(51,102,204,1) 100%);
    background: linear-gradient(0deg, rgba(41,75,158,1) 0%, rgba(51,102,204,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#294b9e",endColorstr="#3366cc",GradientType=1);
}
.steps__item .step1:before {
	content: '1';
}
.steps__item .step2:before {
	content: '2';
}
.steps__item .step3:before {
	content: '3';
}
.steps__item .step4:before {
	content: '4';
}
.steps__item .step5:before {
	content: '5';
}
.steps__item .step6:before {
	content: '6';
}
.smart_content__btns {
	display: flex;
}
.smart_content__btns div {
	display: flex;
	width: 126px;
	height: 44px;
	justify-content: center;
	align-items: center;
	font-size: 16px;
	border-radius: 50px;
}
.smart_content__btns .next {
	color: #fff;
	transition: transform .1s;
	background: rgb(185,0,31);
    background: -moz-linear-gradient(0deg, rgba(185,0,31,1) 0%, rgba(234,0,26,1) 100%);
    background: -webkit-linear-gradient(0deg, rgba(185,0,31,1) 0%, rgba(234,0,26,1) 100%);
    background: linear-gradient(0deg, rgba(185,0,31,1) 0%, rgba(234,0,26,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#b9001f",endColorstr="#ea001a",GradientType=1); 
}
.smart_content__btns .next:hover {
	cursor: pointer;
	box-shadow: 0 0 30px 0 rgba(0,0,0,.1);
	background: rgb(101,0,17);
    background: -moz-linear-gradient(0deg, rgba(101,0,17,1) 0%, rgba(234,0,26,1) 100%);
    background: -webkit-linear-gradient(0deg, rgba(101,0,17,1) 0%, rgba(234,0,26,1) 100%);
    background: linear-gradient(0deg, rgba(101,0,17,1) 0%, rgba(234,0,26,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#650011",endColorstr="#ea001a",GradientType=1);
}
.smart_content__btns .next:active {
	transform: scale(0.9);
}
.smart_content__btns .prev {
	border: 1px solid #c0c0c0;
	margin-right: 10px;
	transition: transform .1s;
}
.smart_content__btns .prev:hover {
	cursor: pointer;
	box-shadow: 0 0 30px 0 rgba(0,0,0,.1);
}
.smart_content__btns .prev:active {
	transform: scale(0.9);
}
.smart_content .right_side {
	display: flex;
	justify-content: center;
	width: 30%;
	padding: 70px;
	padding-bottom: 0;
}
.right_side__img {
	display: none;
}
.right_side .img_active {
	display: block;
}
.right_side .right_side_item7.img_active {
	display: flex!important;
	flex-direction: column;
	justify-content: flex-end;
}
.right_side__img img {
	display: none;
	max-width: 94%;
}
.stores {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-top: 50px;
}
.stores h2 {
	max-width: 70%;
	text-align: center;
	margin-bottom: 30px;
}
.stores .stores__btn {
	display: flex;
	width: 70%;
	justify-content: space-evenly;
}
.stores .stores__btn img {
	width: 240px;
	box-shadow: 0 0 30px 0 rgba(0,0,0,.1);
}
.parking {
	line-height: 35px;
	background: url(../img/bg_park.png);
	background-repeat: no-repeat;
	background-position: right center;
}
.parking .container {
	flex-direction: column;
	align-items: center;
}
.parking h2 {
	margin-bottom: 50px;
}
.parking h3 {
	font-size: 24px;
	font-weight: 400;
	margin-bottom: 50px;
}
.parking .parking_content {
	display: flex;
	width: 100%;
}
.park_img {
	display: none;
}
.parking__filter__item.park_filter_active {
	background: rgba(255,255,255,.6);
}
.park_img_active {
	display: flex;
}
.parking .parking_left {
	max-width: 60%;
}
.parking .parking_right {
	display: flex;
	flex-grow: 1;
	justify-content: center;
}
.parking__filter__item {
	font-size: 20px;
	padding: 20px;
	margin-bottom: 10px;
	border-radius: 10px;
	position: relative;
	padding-left: 70px;
	transition: box-shadow .3s;
}
.parking__filter__item:hover {
	cursor: pointer;
	box-shadow: 0 0 200px 0 rgba(0,0,0,.2);
}
.parking__filter__item:before {
	content: '';
	color: #fff;
	font-weight: 600;
	font-size: 18px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	width: 30px;
	height: 30px;
	top: 23px;
	left: 20px;
	border-radius: 50%;
	background: rgb(41,75,158);
    background: -moz-linear-gradient(0deg, rgba(41,75,158,1) 0%, rgba(51,102,204,1) 100%);
    background: -webkit-linear-gradient(0deg, rgba(41,75,158,1) 0%, rgba(51,102,204,1) 100%);
    background: linear-gradient(0deg, rgba(41,75,158,1) 0%, rgba(51,102,204,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#294b9e",endColorstr="#3366cc",GradientType=1);
}
.filter__item1:before {
	content: '1'; 
}
.filter__item2:before {
	content: '2'; 
}
.filter__item3:before {
	content: '3'; 
}
.filter__item4:before {
	content: '4'; 
}
.filter__item5:before {
	content: '5'; 
}
.park_filter_active {
	box-shadow: 0 0 200px 0 rgba(0,0,0,.2);
}
.qr {
	display: flex;
	margin-top: 50px;
	align-items: center;
}
h2.qr-h {
	margin-bottom: 5px;
	margin-right: 20px;
	text-align: center;
	font-weight: 400;
}
.control {
	background:  -webkit-linear-gradient(271deg, rgba(255,255,255,0) 7%, rgba(255,255,255,0) 7%, rgba(32,65,145,1) 7.2%, rgba(51,102,204,1) 11%, rgba(255,255,255,0) 11.2%), url(../img/man.png) 85% 89%;
	background:  -o-linear-gradient(271deg, rgba(255,255,255,0) 7%, rgba(255,255,255,0) 7%, rgba(32,65,145,1) 7.2%, rgba(51,102,204,1) 11%, rgba(255,255,255,0) 11.2%), url(../img/man.png) 85% 89%;
	background:  linear-gradient(1deg, rgba(255,255,255,0) 7%, rgba(255,255,255,0) 7%, rgba(32,65,145,1) 7.2%, rgba(51,102,204,1) 11%, rgba(255,255,255,0) 11.2%), url(../img/man.png) 85% 89%;
	background-repeat: no-repeat;
	padding-bottom: 150px;
}

.control .container {
	flex-direction: column;
}
.control h2, .control h3 {
	text-align: center;
	width: 100%;
	margin-bottom: 70px;
}
.control h3 {
	font-weight: 400;
}
.control h3 span {
	font-weight: 700;
}
.control .control__descr {
	max-width: 43%;
}
.control .control__descr p {
	font-size: 22px;
	line-height: 40px;
}
.frag {
	padding: 150px 0;
	background: url(../img/map.jpg) left center;
	background-repeat: no-repeat;
}
.frag .container {
	justify-content: flex-end;
}
.frag .frag__descr {
	max-width: 43%;
}
.frag .frag__descr p {
	font-size: 22px;
	line-height: 40px;
}
.form {
	padding-bottom: 30px;
}
.form .container {
	flex-direction: column;
	align-items: center;
}
.form h2, .form p  {
	text-align: center;
}
p.tech {
	font-size: 14px;
}
form {
	display: flex;
	width: 40%;
	justify-content: space-evenly;
}
form button {
	border: none;
	outline: none;
	font-size: 16px;
	width: 220px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50px;
	color: #fff;
	background: rgb(185,0,31);
    background: -moz-linear-gradient(0deg, rgba(185,0,31,1) 0%, rgba(234,0,26,1) 100%);
    background: -webkit-linear-gradient(0deg, rgba(185,0,31,1) 0%, rgba(234,0,26,1) 100%);
    background: linear-gradient(0deg, rgba(185,0,31,1) 0%, rgba(234,0,26,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#b9001f",endColorstr="#ea001a",GradientType=1); 
}
form button:hover {
	cursor: pointer;
	background: rgb(101,0,17);
    background: -moz-linear-gradient(0deg, rgba(101,0,17,1) 0%, rgba(234,0,26,1) 100%);
    background: -webkit-linear-gradient(0deg, rgba(101,0,17,1) 0%, rgba(234,0,26,1) 100%);
    background: linear-gradient(0deg, rgba(101,0,17,1) 0%, rgba(234,0,26,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#650011",endColorstr="#ea001a",GradientType=1);
}
form input {
	border: 1px solid #8f8f8f;
	outline: none;
	font-size: 16px;
	width: 220px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50px;
	text-align: center;
}


@media (max-width: 1640px) {
	.control {
		background: -webkit-linear-gradient(271deg, rgba(255,255,255,0) 7%, rgba(255,255,255,0) 7%, rgba(32,65,145,1) 7.2%, rgba(51,102,204,1) 11%, rgba(255,255,255,0) 11.2%), url(../img/man.png) 100% 80%;
		background: -o-linear-gradient(271deg, rgba(255,255,255,0) 7%, rgba(255,255,255,0) 7%, rgba(32,65,145,1) 7.2%, rgba(51,102,204,1) 11%, rgba(255,255,255,0) 11.2%), url(../img/man.png) 100% 80%;
		background: linear-gradient(1deg, rgba(255,255,255,0) 7%, rgba(255,255,255,0) 7%, rgba(32,65,145,1) 7.2%, rgba(51,102,204,1) 11%, rgba(255,255,255,0) 11.2%), url(../img/man.png) 100% 80%;
		background-repeat: no-repeat;
	}
	.frag {
		background-size: 100%;
	}
}
@media (max-width: 1515px) {
	
	.frag {
		padding: 40px 0;
	}
	section.smart_points {
		background-size: 30px;
	}
	.container {
		padding: 0 20px;
	}
}

@media (max-width: 1400px) {

	section.smart {
		background: url(../img/bg_right.png) right top no-repeat;
	}
	.control {
		background: -webkit-linear-gradient(271deg, rgba(255,255,255,0) 7%, rgba(255,255,255,0) 7%, rgba(32,65,145,1) 7.2%, rgba(51,102,204,1) 11%, rgba(255,255,255,0) 11.2%), url(../img/man.png) 130% 85% / 60%;
		background: -o-linear-gradient(271deg, rgba(255,255,255,0) 7%, rgba(255,255,255,0) 7%, rgba(32,65,145,1) 7.2%, rgba(51,102,204,1) 11%, rgba(255,255,255,0) 11.2%), url(../img/man.png) 130% 85% / 60%;
		background: linear-gradient(1deg, rgba(255,255,255,0) 7%, rgba(255,255,255,0) 7%, rgba(32,65,145,1) 7.2%, rgba(51,102,204,1) 11%, rgba(255,255,255,0) 11.2%), url(../img/man.png) 130% 85% / 60%;
		background-repeat: no-repeat;
	}
}
@media (max-width: 1240px) {
	.container {
		max-width: 960px;
	}
	.parking_left {
		padding-left: 15px;
	}
}
@media (max-width: 1024px) {
	section.header nav {
		display: none;
	}
	.container {
		max-width: 768px
	}
	.parking_img {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	.headers_item p {
		font-size: 18px;
	}
	.steps__item .step {
		font-size: 16px;
	}
	.stores h2 {
		font-weight: 600;
	}
	section.smart .smart__descr {
		font-size: 18px;
	}
	.headers_item h2 {
		font-size: 22px;
	}
	h1 {
		font-size: 30px;
	}
	h2 {
		font-size: 22px;
		text-align: center;
	}
	h3 {
		font-size: 18px;
	}
	h4 {
		font-size: 16px;
	}
	p {
		font-size: 18px;
	}
	form {
		width: 60%;
	}
	.parking h3 {
		font-size: 18px;
	}
	.parking__filter__item {
		font-size: 16px;
	}
	.control .control__descr, .frag .frag__descr {
		max-width: 50%;
	}
	.frag .frag__descr p, .control .control__descr p {
		font-size: 16px;
	}
	.seporator {
		padding: 70px 0;
	}
}
@media (max-width: 840px) {
	.tel {
		pointer-events: all;
	}
	.qr {
		display: none;
	}
	.smart_content .right_side {
		padding: 20px;
	}
	.right_side .img_active {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}
	section.smart_points {
		background: none;
	}
	.park_img_active {
		max-width: 85%;
	}
	section.smart {
		background-size: 120px;
	}
	.parking__filter__item br {
		display: none;
	}
}
@media (max-width: 800px) {
	section.smart .smart__descr {
		font-size: 16px;
		padding-left: 15px;
	}
	.container {
		max-width: 500px;
	}
	section.offer .service .service__item .service__item__img {
		width: 70px;
		height: 70px;
	}
	section.offer .service .service__item .service__item__img img {
		max-width: 50px;
	}
	.smart_points__filter__item {
		flex-direction: column;
	}
	section.smart .smart__descr {
		line-height: 35px;
	}
	.smart_content .left_side {
		padding: 60px;
		padding-right: 10px;
	}
	.control {
		padding-bottom: 300px;
		background: -webkit-linear-gradient(271deg, rgba(255,255,255,0) 7%, rgba(255,255,255,0) 7%, rgba(32,65,145,1) 7.2%, rgba(51,102,204,1) 11%, rgba(255,255,255,0) 11.2%), url(../img/man.png) 50% 88% / 60%;
		background: -o-linear-gradient(271deg, rgba(255,255,255,0) 7%, rgba(255,255,255,0) 7%, rgba(32,65,145,1) 7.2%, rgba(51,102,204,1) 11%, rgba(255,255,255,0) 11.2%), url(../img/man.png) 50% 88% / 60%;
		background: linear-gradient(1deg, rgba(255,255,255,0) 7%, rgba(255,255,255,0) 7%, rgba(32,65,145,1) 7.2%, rgba(51,102,204,1) 11%, rgba(255,255,255,0) 11.2%), url(../img/man.png) 50% 88% / 60%;
		background-repeat: no-repeat;
	}
	.control .control__descr {
		margin-bottom: 25px;
		max-width: 100%;
	}
	.control .control__descr p, .frag .frag__descr p {
		line-height: 26px;
	}
	.control h3 {
		margin-bottom: 20px;
	}
	.frag {
		padding-top: 0px;
		padding-bottom: 0px;
		background: none;
		background-size: 100%;
	}
	.frag .frag__descr {
		max-width: 100%;
	}
	form {
		flex-direction: column;
		align-items: center;
	}
	input {
		margin-bottom: 10px;
	}
	form input, form button {
		width: 220px;
	}
	.parking__filter__item {
		padding-left: 40px;
		line-height: 20px;
		padding-right: 10px;
	}
	.parking__filter__item::before {
		font-size: 12px;
		width: 20px;
		height: 20px;
		top: 20px;
		left: 10px;
	}
	.parking h3 {
		font-size: 16px;
		line-height: 25px;
	}
}
@media (max-width: 550px) {
	.container {
		max-width: 300px;
	}
	.stores .stores__btn {
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	.stores .stores__btn a {
		margin-bottom: 10px;
	}
	.headers_item h2 {
		font-size: 18px;
	}
	.headers_item p {
		font-size: 16px;
		line-height: 28px;
	}
	.headers_item .headers__a {
		font-size: 16px;
	}
	.steps__item .step {
		line-height: 28px;
	}
	.steps__item .step::before {
		font-size: 12px;
		height: 20px;
		width: 20px;
		left: -30px;
	}
	.smart_content .left_side {
		padding-left: 40px;
		width: 50%;
	}
	h2 {
		font-size: 18px;
	}
	section.offer .service {
		flex-wrap: wrap;
	}
	section.offer .service .service__item {
		margin-bottom: 20px
	}
	section.offer h2 {
		text-align: center;
	}
	section.offer p {
		line-height: 30px;
	}
	section.smart .container {
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	section.smart .smart__img {
		width: 50%;
		margin-bottom: 20px;
	}
	section.smart .smart__img img {
		display: flex;
	}
	section.smart .smart__descr {
		width: 100%;
		text-align: center;
		line-height: 28px;
	}
	.smart_content {
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	.smart_content .left_side {
		order: 2;
		width: 72%;
		padding-top: 10px;
	}
	.smart_content .right_side {
		order: 1;
		width: 40%;
	}
	section.header .container {
		max-width: 100%;
	}
	section.header .logo {
		width: 48%;
	}
	.header__btn {
		width: 48%;
	}
	section.header .header__btn a {
		padding: 12px 7px;
	}
	section.header .logo {
		background-size: 80%;
		background-repeat: no-repeat;
	}
	.parking .parking_content {
		flex-direction: column;
	}
	.park_img_active {
		max-width: 36%;
	}
	.parking .parking_left {
		max-width: 100%;
		order: 2;
	}
}
@media (max-width: 375px) {
	.container {
		padding: 0 10px;
	}
	.control {
		padding-bottom: 200px;
	}
}
/*Popup*/
.white-popup-block h2 {
    margin-bottom:  10px;
    font-size: 24px;
    color: #303030;
    text-align: center;
}
.white-popup-block .forma form input {
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
    margin-left: auto;
    margin-right: auto;
    width: 220px;
    text-align: center;
    border-radius: 52px;
    border: none;
    box-shadow: 4px 6px 12px 1px rgba(0,0,0,.5);
    -webkit-box-shadow: 4px 6px 12px 1px rgba(0,0,0,.5);
    -webkit-appearance: none;
}
.white-popup-block .forma form button {
    margin-left: auto;
    margin-right: auto;
    display: block;
    background: #2d59cb;
    text-align: center;
    width: 220px;
    color: #fff;
    font-weight: bold;
    border-radius: 52px;
    border: none;
    box-shadow: 4px 6px 12px 1px rgba(0,0,0,.5);
    -webkit-box-shadow: 4px 6px 12px 1px rgba(0,0,0,.5);
    -webkit-appearance: none;
    font-size: 17px;
}
.white-popup-block .forma form button:hover {
    cursor: pointer;
    background: #2047ab;
}
.white-popup-block .forma form {
    padding:  30px 0;
    box-shadow:  none;
}
.white-popup-block {
    position: relative;
    background: #FFF;
    padding: 20px;
    width: auto;
    max-width: 380px;
    margin: 20px auto;
    border-radius: 18px;
}
/*end Popup*/


@media (min-width: 2340px) {
    section.offer .container .main_offer {
        margin-bottom: 500px;
    }
}
@media (max-width: 1440px) {
    section.offer .container .main_offer {
        margin-bottom: 100px;
    }
    section.offer::before {
        bottom: 20%;
    }
    section.questions::before {
        left: 1%;
    }
    section.offer .container .main_offer h1 {
        font-size: 50px;
        line-height: 75px;
    }
    section.offer .container .main_offer h1 .rub {
        font-size: 70px;
    }
}
@media (max-width: 1024px) {
    section.offer::before {
        bottom: 20%;
        left: -360px;
    }
    section.questions::before {
        left: -3%;
    }
    section.questions::after {
        bottom: 0;
        right: -230px;
    }
}
@media (max-width: 900px) {
    section.offer .container .main_offer h1 {
        max-width: 60%;
    }
    section.offer {
        background-size: 110%;
    }
}
@media (max-width: 768px) {
    .desc_hide {
        display: flex;
    }
    .mobile_hide {
        display: none;
    }
    section.offer .container .forma .steps .mobile_hide {
        display: none;
    }
    section.offer {
        background: url(img/bg_mob.jpg);
        background-repeat: no-repeat;
        background-size: 100%;
    }
    section.offer .container .main_offer {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    section.offer .container .main_offer h1 {
        max-width: 100%;
        text-align: center;
    }
    section.offer::before {
        width: 100px;
        height: 100px;
        bottom: 24%;
        left: -50px;
    }
    section.offer .container .forma {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    section.offer .container .forma .steps {
        flex-direction: column;
        max-width: 90%;
    }
    section.offer .container .forma .steps .step p {
        max-width: 70%;
    }
    section.offer .container .forma form.data {
        margin-bottom: 30px;
    }
    section.offer .container .get .icons .icon p {
        max-width: 90%;
    }
    section.questions .container .paper {
        flex-direction: column;
        padding: 80px 0 50px 100px;
        max-width: 80%;
    }
    section.questions .container .paper .question {
        width: auto;
    }
    section.questions::after {
        width: 200px;
        height: 200px;
        right: -150px;
    }
    section.questions .container .last_question {
        text-align: center;
    }
}
@media (max-width: 650px) {
    section.header .container p {
        display: none;
    }
    section.footer .container {
        flex-direction: column;
    }
    section.footer .container .call {
        display: none;
    }
    section.footer .container p {
        order: 2;
    }
    section.questions .container .last_question h4 {
        max-width: 72%;
    }
}
@media (max-width: 425px) {
    h2 {
		font-size: 20px;
    }
    section.header .container p {
        display: none;
    }
    section.offer .container .main_offer {
        margin-bottom: 60px;
    }
    section.offer .container .main_offer h1 {
        font-size: 30px;
        line-height: 45px;
    }
    section.offer .container .main_offer h1 .rub {
        font-size: 40px;
    }
    section.offer .container .forma form.data .your .form,
    section.offer .container .forma form.data .friend .form {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    section.offer .container .forma .steps .step p {
        max-width: 100%;
    }
    section.offer::before {
        display: none;
    }
    section.offer .container .get .icons .icon p {
        max-width: 100%;
    }
    section.offer .container .get .icons {
        flex-wrap: wrap;
        margin-bottom: 0px;
    }
    section.offer .container .get .icons .icon {
        width: 49%;
        margin-bottom: 60px;
    }
    section.questions .container .paper {
        padding: 80px 0 50px 50px;
    }
    section.offer .container .get h3 {
        font-size: 25px;
    }
    section.offer .container .get h4 {
        font-size: 20px;
    }
    section.questions .container .last_question h3 {
        font-size: 25px;
    }
    section.questions .container .last_question h4 {
        font-size: 20px;
        max-width: 100%;
    }
    section.questions::after {
        display: none;
    }
}
@media (max-width: 375px) {
    section.header .container .logo img {
        max-width: 90%;
    }
    section.questions .container .paper .question .descr {
        padding-left: 35px;
    }
    section.questions .container .paper .question .descr::before {
        left: 15px;
    }
}
@media (max-width: 320px) {
    section.offer .container .forma .steps {
        max-width: 100%;
        margin-bottom: 20px;
    }
    section.questions .container .last_question form {
        flex-direction: column;
        align-items: center;
    }
    .last_question-form__inner {
        flex-direction: column;
    }
    section.questions .container .last_question form input {
        margin-bottom: 10px;
    }
    section.offer .container .main_offer h1 {
        margin-bottom: 15px;
    }
    .white-popup-block h2 {
        margin: 0 auto;
    }
}

.politika_descr {
    margin: 0 auto;
    max-width: 350px;
    text-align: center;
    margin-top: 10px;
}

.sa-icon {
    width: 80px;
    height: 80px;
    border: 4px solid gray;
    -webkit-border-radius: 40px;
    border-radius: 40px;
    border-radius: 50%;
    margin: 20px auto;
    padding: 0;
    position: relative;
    box-sizing: content-box;
}

.sa-icon.sa-success {
    border-color: #323f6c;
}

.sa-icon.sa-success::before, .sa-icon.sa-success::after {
    content: '';
    -webkit-border-radius: 40px;
    border-radius: 40px;
    border-radius: 50%;
    position: absolute;
    width: 60px;
    height: 120px;
    background: white;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.sa-icon.sa-success::before {
    -webkit-border-radius: 120px 0 0 120px;
    border-radius: 120px 0 0 120px;
    top: -7px;
    left: -33px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: 60px 60px;
    transform-origin: 60px 60px;
}

.sa-icon.sa-success::after {
    -webkit-border-radius: 0 120px 120px 0;
    border-radius: 0 120px 120px 0;
    top: -11px;
    left: 30px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: 0px 60px;
    transform-origin: 0px 60px;
}

.sa-icon.sa-success .sa-placeholder {
    width: 80px;
    height: 80px;
    border: 4px solid rgba(50, 63, 108, 0.6);
    -webkit-border-radius: 40px;
    border-radius: 40px;
    border-radius: 50%;
    box-sizing: content-box;
    position: absolute;
    left: -4px;
    top: -4px;
    z-index: 2;
}

.sa-icon.sa-success .sa-fix {
    width: 5px;
    height: 90px;
    background-color: white;
    position: absolute;
    left: 28px;
    top: 8px;
    z-index: 1;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.sa-icon.sa-success.animate::after {
    -webkit-animation: rotatePlaceholder 4.25s ease-in;
    animation: rotatePlaceholder 4.25s ease-in;
}

.sa-icon.sa-success {
    border-color: transparent\9;
}
.sa-icon.sa-success .sa-line.sa-tip {
    -ms-transform: rotate(45deg) \9;
}
.sa-icon.sa-success .sa-line.sa-long {
    -ms-transform: rotate(-45deg) \9;
}

.animateSuccessTip {
    -webkit-animation: animateSuccessTip 0.75s;
    animation: animateSuccessTip 0.75s;
}

.animateSuccessLong {
    -webkit-animation: animateSuccessLong 0.75s;
    animation: animateSuccessLong 0.75s;
}

@-webkit-keyframes animateSuccessLong {
    0% {
        width: 0;
        right: 46px;
        top: 54px;
    }
    65% {
        width: 0;
        right: 46px;
        top: 54px;
    }
    84% {
        width: 55px;
        right: 0px;
        top: 35px;
    }
    100% {
        width: 47px;
        right: 8px;
        top: 38px;
    }
}
@-webkit-keyframes animateSuccessTip {
    0% {
        width: 0;
        left: 1px;
        top: 19px;
    }
    54% {
        width: 0;
        left: 1px;
        top: 19px;
    }
    70% {
        width: 50px;
        left: -8px;
        top: 37px;
    }
    84% {
        width: 17px;
        left: 21px;
        top: 48px;
    }
    100% {
        width: 25px;
        left: 14px;
        top: 45px;
    }
}
@keyframes animateSuccessTip {
    0% {
        width: 0;
        left: 1px;
        top: 19px;
    }
    54% {
        width: 0;
        left: 1px;
        top: 19px;
    }
    70% {
        width: 50px;
        left: -8px;
        top: 37px;
    }
    84% {
        width: 17px;
        left: 21px;
        top: 48px;
    }
    100% {
        width: 25px;
        left: 14px;
        top: 45px;
    }
}

@keyframes animateSuccessLong {
    0% {
        width: 0;
        right: 46px;
        top: 54px;
    }
    65% {
        width: 0;
        right: 46px;
        top: 54px;
    }
    84% {
        width: 55px;
        right: 0px;
        top: 35px;
    }
    100% {
        width: 47px;
        right: 8px;
        top: 38px;
    }
}

.sa-icon.sa-success .sa-line {
    height: 5px;
    background-color: #323f6c;
    display: block;
    border-radius: 2px;
    position: absolute;
    z-index: 2;
}

.sa-icon.sa-success .sa-line.sa-tip {
    width: 25px;
    left: 14px;
    top: 46px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.sa-icon.sa-success .sa-line.sa-long {
    width: 47px;
    right: 8px;
    top: 38px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

@-webkit-keyframes rotatePlaceholder {
    0% {
        transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
    }
    5% {
        transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
    }
    12% {
        transform: rotate(-405deg);
        -webkit-transform: rotate(-405deg);
    }
    100% {
        transform: rotate(-405deg);
        -webkit-transform: rotate(-405deg);
    }
}
@keyframes rotatePlaceholder {
    0% {
        transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
    }
    5% {
        transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
    }
    12% {
        transform: rotate(-405deg);
        -webkit-transform: rotate(-405deg);
    }
    100% {
        transform: rotate(-405deg);
        -webkit-transform: rotate(-405deg);
    }
}

.check_mark {
    width: 80px;
    height: 130px;
    margin: 0 auto;
}

.pol-slide span {
    display: block;
}

.mfp-content form {
    display: block;
    margin-top: 0em;
}
