/* Fonts */

@font-face {
	font-family: 'Ermilov';
	src: url('../fonts/Ermilov-bold.eot');
	src: url('../fonts/Ermilov-bold.woff') format('woff'),
		url('../fonts/Ermilov-bold.ttf') format('truetype'),
		url('../fonts/Ermilov-bold.svg') format('svg');
	font-weight: normal;
	font-style: normal;
}

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

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

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



/* Reset */

* {padding: 0;	margin: 0;}
*, *:before, *:after {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
:focus, :active, a:focus, a:active {outline: none;}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
html, body {
	height: 100%;
	width: 100%;
	font-size: 100%;
	line-height: 1;
	-webkit-text-size-adjust: none
}
body.lock {
	overflow: hidden;
}

input, button, textarea, select {
	font-family: inherit;
	-webkit-appearance: none;
	-moz-appearance: none;
}
input:invalid {box-shadow: none;}
input::-ms-clear {display: none;}
button::-moz-focus-inner {padding: 0; border: 0;}
button, .button, input[type="button"], input[type=submit] {cursor: pointer;}
button[disabled], input[disabled] {cursor: default;}

a, a:hover, a:visited {text-decoration: none;}
img {vertical-align: top;}

h1,h2,h3,h4,h5,h6 {font-size: inherit; font-weight: normal;}

ol, ul {list-style: none;}
ol {counter-reset: myCounter;}
ol li:before {
	counter-increment: myCounter;
	content:counter(myCounter);
	margin-right: 5px;
}

table {border-collapse: collapse; border-spacing: 0;}
th {font-weight: inherit;}

/* position:fixed блокирует скролл в iOS, чтобы бургер не уезжал, но если меню будет прилипшее к верху, то fixed нужно убрать */
.scroll_disable {overflow: hidden; position: fixed;}



/* Global */
html {
	font: 16px/26px 'Gilroy', sans-serif;
}
body {
	font: 16px/26px 'Gilroy', sans-serif;
	letter-spacing: 0.01em;
	color: #333333;
	/* background: #f7f8fa; */
	background: #f0f3f5;
	overflow-x: hidden;
}

.page {
	overflow: hidden;
	position: relative;
}

.container {
	max-width: 1258px;
	margin: 0 auto;
	padding: 0 30px;
}

.logo {
	display: flex;
	align-items: center;
}
.logo__name {
	font-family: 'Ermilov';
	font-size: 24px;
	line-height: 26px;
	text-transform: uppercase;
	color: #0E1D3F;
	width: 130px;
}
.logo__name::first-line {
	color: #3A95AA;
}
.logo__slogan {
	font-family: 'Gilroy';
	font-size: 12px;
	line-height: 20px;
	letter-spacing: 0.01em;
	color: #929292;
	width: 170px;
}

.button {
	/* background: linear-gradient(119.28deg, rgba(255, 255, 255, 0) 17.75%, rgba(255, 255, 255, 0.33) 27.82%, rgba(255, 255, 255, 0) 41.67%), #4DB768; */
	background: #4DB768;
	border: none;
	border-radius: 10px;
	font-family: 'Ermilov';
	font-size: 14px;
	letter-spacing: 0.01em;
	text-transform: uppercase;
	color: #FFFFFF;
	width: 300px;
	height: 80px;
	position: relative;
	transition: 0.3s;
	overflow: hidden;
	display: block;
	text-align: center;
	line-height: 80px;
}
.button:after {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(119.28deg, rgba(255, 255, 255, 0) 17.75%, rgba(255, 255, 255, 0.33) 27.82%, rgba(255, 255, 255, 0) 41.67%);
	animation: button-blink 4s infinite;
 }
@keyframes button-blink {
	0% {left: -100%;}
	25% {left: 100%;}
	100% {left: 100%;}
}

.button_small {
	width: 184px;
	height: 50px;
	font-size: 11px;
	line-height: 50px;
}
.button_blue {
	background: #3A95AA;
}
.button_blue:before {
	color: #dfeaed;
}
.button_blue:hover {
	background: #1e849a;
}

.title {
	font-family: 'Ermilov';
	font-size: 36px;
	line-height: 50px;
	text-transform: uppercase;
	letter-spacing: 0.01px;
}
.title span {
	color: #3A95AA;
}
.title_small {
	font-size: 24px;
	line-height: 26px;
}

.list__item {
	padding: 0 0 20px 0;
	position: relative;
	padding-left: 32px;
}
.list__item:before {
	content:'';
	display: block;
	width: 22px;
	height: 22px;
	border-radius: 100%;
	background: #3A95AA;
	position: absolute;
	top: 2px;
	left: 0;
}
.list__item:after {
	content:'';
	display: block;
	width: 22px;
	height: 22px;
	background: url(../img/check-icon.svg) top right no-repeat;
	position: absolute;
	top: 4px;
	left: 0;
}

p {
	padding-bottom: 25px;
}

.slider {
	width: 100%;
	position: relative;
}
.slick-list {
	overflow: hidden;
}
.slick-track {
	display: flex;
}
.slick-slide {
	height: 100%;
}
.slider__item img.slick-loading {
	opacity: 0;
}
.slider__item img {
	opacity: 1;
	transition: 0.3s;
}
.slick-loading ~ .loader {
	border: 3px solid rgba(0, 0, 0, 0.2);
	border-top-color: rgba(0, 0, 0, 0.7);
	border-radius: 50%;
	width: 25px;
	height: 25px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	animation: loader 1s linear infinite;
}
@keyframes loader {
	0% {transform: translate(-50%,-50%) rotate(0deg);}
	100% {transform: translate(-50%,-50%) rotate(360deg);}
}


/* .mobile-menu {
	display: none;
	position: relative;
	z-index: 1004;
} */




/* Header */

.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	/* background: #f7f8fa; */
	background: #f0f3f5;
	z-index: 1006;
	transition: background 0.6s;
}
.header_fixed {
	/* box-shadow: 0 0 15px rgba(0, 0, 0, 0.1) */
	background: #ffffff;
}
.header__container {
	max-width: 1258px;
	margin: 0 auto;
	padding: 0 30px;
	padding-top: 6px;
	height: 88px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header__contacts {
	display: flex;
	align-items: center;
}
.header__phone {
	text-align: right;
}
.phone {
	font-family: 'Ermilov';
	font-size: 22px;
	line-height: 20px;
}
.phone__number {
	padding-bottom: 7px;
}
.phone__number a {
	color: #0E1D3F;
	transition: 0.3s;
}
.phone__number a:hover {
	color: #3A95AA;
}
.phone__code {
	color: #3A95AA;
}
.phone__text {
	font-family: 'Gilroy';
	font-size: 16px;
	line-height: 19px;
	letter-spacing: 0.01em;
	color: #333333;
}

.social {
	display: flex;
	align-items: center;
	padding-left: 10px;
}
.social__icon {
	display: block;
	border-radius: 100px;
	width: 50px;
	height: 50px;
	font-size: 0;
	line-height: 0;
	margin-left: 11px;
	transition: 0.3s;
}
.social__icon_whatsapp {
	background: #27AF1A url(../img/whatsapp-icon.svg) center no-repeat;
}
.social__icon_viber {
	background: #7D509F url(../img/viber-icon.svg) center no-repeat;
}
.social__icon_telegram {
	background: #2EA4DA url(../img/telegram-icon.svg) center no-repeat;
}
.social__icon:hover {
	filter: brightness(120%);
	-webkit-filter: brightness(120%);
}

.header__button {
	margin-left: 21px;
}

.menu {
	background: #3A95AA;
	position: absolute;
    width: 100%;
    top: 89px;
    left: 0px;
    z-index: 1000;
}
.menu ul {
	display: flex;
	align-content: space-between;
	align-items: center;
	justify-content: space-between;
}
.menu ul li a {
	display: block;
	font-weight: 500;
	font-size: 16px;
	line-height: 16px;
	padding: 23px 20px;
	letter-spacing: 0.01em;
	color: #fff;
	opacity: .75;
	transition: all .3s;
}
/*.menu ul li:first-child a {
	padding-left: 0;
}
.menu ul li:last-child a {
	padding-right: 0;
}*/
.menu ul li a:hover {
	background: #32889C;
}
.menu ul ul {
	display: block;
	height: 0;
	opacity: 0;
	position: absolute;
	width: 262px;
	background: #3A95AA;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
	overflow: hidden;
	transition: all .3s;
	flex-direction: column;
}
.menu ul ul li a {
	padding: 12px 22px;
}
.menu ul li:hover > ul {
	height: auto;
	opacity: 1;
}

.menu__container {
	max-width: 1235px;
    margin: 0 auto;
}

.header__open, .menu__bottom {
	display: none;
}

/* Main */

.main {
	padding-top: 160px;
}
.main__container {
	position: relative;
	min-height: 600px;
}
.main__image {
	position: absolute;
	top: 18px;
	right: -5px;
	z-index: 1;
	max-width:942px;
}
.main__image img {
	max-width:100%;
	max-height: 640px;
}
.main__content {
	padding-top: 90px;
	position: relative;
	z-index: 2;
}
.main__text {
	position: relative;
	padding-left: 32px;
}
.main__text:before {
	content:'';
	display: block;
	width: 22px;
	height: 22px;
	border-radius: 100%;
	background: #3A95AA;
	position: absolute;
	top: 2px;
	left: 0;
}
.main__text:after {
	content:'';
	display: block;
	width: 22px;
	height: 22px;
	background: url(../img/check-icon.svg) top right no-repeat;
	position: absolute;
	top: 4px;
	left: 0;
}
.main__title {
	font-family: 'Ermilov';
	font-weight: bold;
	font-size: 40px;
	line-height: 50px;
	letter-spacing: -0.01em;
	text-transform: uppercase;
	color: #08385c;
	max-width: 450px;
	padding: 31px 0 23px;
}
.main__title_red {
	color: #DF1C24;
	display: inline;
}

.main__desc {
	max-width: 415px;
	font-size: 16px;
	line-height: 26px;
	letter-spacing: 0.01em;
	color: #333333;
	margin-top: 14px;
}

.main__advantages {
	display: flex;
	align-items: start;
	margin-top: 0px;
	padding-top: 100px;
}
.main__advantages-item {
	width: 16%;
}
.main__advantages-icon {
	height: 90px;
}

.main__advantages-item:nth-child(1) {width: 150px;	margin-right: 29px;}
.main__advantages-item:nth-child(2) {width: 165px;	margin-right: 36px;}
.main__advantages-item:nth-child(3) {width: 150px;	margin-right: 40px;}
.main__advantages-item:nth-child(4) {width: 150px;	margin-right: 40px;}
.main__advantages-item:nth-child(5) {width: 180px;	margin-right: 40px;}
.main__advantages-item:nth-child(6) {width: 185px;}
.main__advantages-text span {display: block;}




/* Messengers */

.messengers {
	padding-top: 22px;
	padding-bottom: 0px;
}
.messengers__container {
	padding-top: 112px;
	display: flex;
}
.messengers__photo {
	padding-right: 100px;
}
.messengers__iphone {
	width: 400px;
	height: 684px;
	border: 27px solid #fff;
	border-radius: 62px 62px 0 0;
	border-bottom: none;
	position: relative;
	overflow: hidden;
}
.messengers__iphone:before {
	content:'';
	display: block;
	position: absolute;
	top: 0;
	left: 50%;
	width: 200px;
	height: 30px;
	transform: translateX(-50%);
	border-radius: 0 0 25px 25px;
	background: #fff url(../img/iphone-camera.svg) top 5px left 75px no-repeat;
	z-index: 1005;
}
.messengers__iphone img {
	border-radius: 35px 35px 0 0;
}
.messengers__title {
	padding-bottom: 26px;
}
.messengers__social {
	display: inline-flex;
	vertical-align: text-top;
	height: 10px;
	position: relative;
	top: 13px;
   left: -11px;
}
.messengers__text {
	padding-bottom: 10px;
}
.messengers__text p {
	padding-bottom: 0;
}
.social_buttons {
	display: block;
	height: auto;
}
.social_buttons .social__icon {
	font-family: 'Ermilov';
	font-size: 14px;
	line-height: 26px;
	letter-spacing: 0.01em;
	text-transform: uppercase;
	color: #FFFFFF;
	width: 280px;
	height: 60px;
	margin: 0 0 10px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	background-position: left 28px center;
	padding-left: 61px;
}
.social_buttons .social__icon_viber {
	padding-left: 80px;
   background-position: left 45px center;
}
.messengers__nav {
	padding-top: 42px;
	display: flex;
	align-items: center;
}
.messengers__nav-text {
	padding-left: 30px;
	width: 300px;
}
.messengers__arrows {
	display: flex;
}
.messengers__arrow, .slick-arrow {
	display: block;
	width: 80px;
	height: 80px;
	font-size: 0;
	box-shadow: 10px 0px 40px #EAEEF1;
	border-radius: 10px;
	border: none;
	transition: 0.3s;
}
.messengers__arrow_prev, .slick-prev {
	margin-right: 20px;
	background: #ffffff url(../img/arrow-prev.svg) center no-repeat;
}
.messengers__arrow_prev:hover, .slick-prev:hover {
	background: #3A95AA url(../img/arrow-prev_white.svg) center no-repeat;
}
.messengers__arrow_next, .slick-next {
	background: #ffffff url(../img/arrow-next.svg) center no-repeat;
}
.messengers__arrow_next:hover, .slick-next:hover {
	background: #3A95AA url(../img/arrow-next_white.svg) center no-repeat;
}





/* Why */

.why {
	background: #ffffff;
}
.why__container {
	padding-top: 90px;
	padding-bottom: 75px;
	display: flex;
	flex-wrap: wrap;
}
.why__title {
	padding-bottom: 30px;
}
.why__quickly .why__title {
	color: #DF1C24;
}
.why__notquickly .why__title {
	color: #3A95AA;
}
.why__quickly {
	width: 50.4%;
}
.why__quickly .list__item:before {
	background: #DF1C24;
}
.why__subtitle {
	width: 100%;
	text-align: center;
	color: #06385E;
	opacity: 0.25;
	padding: 52px 60px 0;
	line-height: 30px;
}




/* Calculator */

.calculator__container {
	padding-top: 50px;
	display: flex;
	flex-wrap: wrap;
}
.calculator__content {
	padding-right: 40px;
	width: 43.4%;
}
.calculator__title {
	padding-bottom: 39px;
}
.calculator__text b {
	color: #3A95AA;
}
.calculator__car {
	width: 56.6%;
	flex-shrink: 0;
	background: url(../img/car.svg) left bottom no-repeat;
	height: 422px;
	display: flex;
}
.calculator__car-section {
	height: 100%;
	position: relative;
}
.calculator__car-section_1 {width: 13%;}
.calculator__car-section_2 {width: 25%;}
.calculator__car-section_3 {width: 2%}
.calculator__car-section_4 {width: 17%;}
.calculator__car-section_5 {width: 7%}
.calculator__car-section_6 {width: 9%;}
.calculator__car-section_7 {width: 15%;}

.calculator__car-point {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 30px; /* размер кнопки с крестиком */
	height: 30px; /* размер кнопки с крестиком */
	background: #fff; /* фон кнопки с крестиком */
	padding: 0px; /* отступ крестика от края кнопки */
	border-radius: 10px;
	cursor: pointer;
	box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.4);
}
.calculator__car-section_1 .calculator__car-point {bottom: 19.7%; right: 3px; z-index: 2;}
.calculator__car-section_2 .calculator__car-point {bottom: 16.5%; right: 2px; z-index: 2;}
.calculator__car-section_3 .calculator__car-point {bottom: 39.5%; z-index: 1;}
.calculator__car-section_4 .calculator__car-point {bottom: 21%; right: 5px; z-index: 2;}
.calculator__car-section_5 .calculator__car-point {bottom: 39.5%; right: 3px; z-index: 1;}
.calculator__car-section_6 .calculator__car-point {bottom: 10.4%; right: 2px; z-index: 3;}
.calculator__car-section_7 .calculator__car-point {bottom: 26.2%; right: 5px; z-index: 2;}

.calculator__car-btn {
	transition: all 0.3s;
	position: relative;
	height: 100%;
}
.calculator__car-btn:after, .calculator__car-btn:before {
	content: '';
	display: block;
	width: 50%;
	left: 50%;
	position: absolute;
	top: 50%;
	height: 1px; /* толщина крестика */
	background: #000; /* цвет крестика */
	border-radius: 5px;
}
.calculator__car-btn:after {
	transform: translate(-50%, -50%) rotate(0deg);
}
.calculator__car-btn:before {
	transform: translate(-50%, -50%) rotate(90deg);
}

.calculator__car-point_active {
	background: #3A95AA;
}
.calculator__car-point_active .calculator__car-btn {
	transform: rotate(45deg); /* вращение крестика при клике */
}
.calculator__car-point_active .calculator__car-btn:after,
.calculator__car-point_active .calculator__car-btn:before {
	background: #ffffff;
}

.calculator__car-tooltip {
	position: absolute;
	top: -70px;
	left: 50%;
	white-space: nowrap;
	background: #ffffff;
	padding: 15px 30px;
	border-radius: 10px;
	transform: translateX(-50%);
	box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.05);
	display: none;
}
.calculator__car-tooltip:after {
	content:'';
	display: block;
	position: absolute;
	bottom: -5px;
	left: 50%;
	transform: translateX(-50%) rotate(45deg);
	width: 20px;
	height: 20px;
	background: #ffffff;
}
.calculator__form {
	width: 100%;
	padding-top: 13px;
}
.calculator__list {
	display: flex;
	flex-wrap: wrap;
}
.form__chekbox {
	display: none;
}
.form__chekbox_label {
	display: block;
   padding: 0 0 0px 32px;
	position: relative;
	margin: 13px 0;
}
.form__chekbox_label:before {
	content:'';
	display: block;
	width: 22px;
	height: 22px;
	border-radius: 100%;
	position: absolute;
	top: 2px;
	left: 0;
	border: 1px solid #D9D9D9;
	transition: 0.3s;
	background: #DF1C24;
	border: 1px solid #DF1C24;
}
.form__chekbox_label:after {
	content:'';
	display: block;
	width: 22px;
	height: 22px;
	background: url(../img/check-icon.svg) top right no-repeat;
	position: absolute;
	top: 4px;
	left: 0;
}
.form__chekbox_label1,
.form__chekbox_label6 {width: 18%;}
.form__chekbox_label2,
.form__chekbox_label7 {width: 15%;}
.form__chekbox_label3,
.form__chekbox_label8,
.form__chekbox_label4,
.form__chekbox_label9 {width: 23%;}

.calculator__select {
	padding-top: 45px;
	display: flex;
	justify-content: space-between;

	display: none;
}
.form__select {
	width: 31.72%;
	height: 80px;
	background: #FFFFFF;
	border: 1px solid rgba(0, 0, 0, 0.05);
	border-radius: 10px;
	position: relative;
	display: flex;
	align-items: center;
	padding-left: 30px;
	cursor: pointer;
	transition: 0.3s;
}
.form__select:after {
	content:'';
	display: block;
	position: absolute;
	width: 80px;
	height: 78px;
	top: 0;
	right: 0;
	background: #3A95AA url(../img/arrow-select.svg) center no-repeat;
	border-radius: 0 10px 10px 0;
	transition: 0.3s;
	z-index: 1;
}
.form__select_active {
	border-radius: 10px 10px 0 0;
}
.form__select_active:after {
	border-radius: 0 10px 0 0;
}
.form__select-selected {
	overflow: hidden;
	max-width: calc(100% - 80px);
}
.form__select-options {
	position: absolute;
	left: -1px;
	right: -1px;
	top: 78px;
	background: #FFFFFF;
	border: 1px solid rgba(0, 0, 0, 0.05);
	border-radius: 0 0 10px 10px;
	height: 245px;
	overflow: hidden;
	z-index: 2;
	display: none;
}
.form__select-scrollbar {
	min-height: 245px;
	width: 100%;
	height: 100%;
	overflow-y: auto;
	overflow-x: hidden;
}
.form__select-item {
	padding: 5px 30px;
	color: #000;
}
.form__select-item:hover {
	color: #ffffff;
	background: #3A95AA;
}

.calculator__price {
	padding-top: 52px;
	display: none;
}
.calculator__price span {
	font-size: 14px;
	padding-right: 20px;
}
.calculator__price img {
	position: relative;
	top: 3px;
}




/* Rquest */

.request__container {
	display: flex;
	align-items: start;
	justify-content: space-between;
	padding-top: 100px;
	padding-bottom: 100px;
	max-width: 1100px;
}
.request_1 .request__container {
	padding-bottom: 50px;
	padding-top: 84px;
    position: relative;
    left: -16px;
}
.request__content {
	padding-right: 10%;
}
.request__title {
	padding-bottom: 20px;
}
.request__title span {
	color: #DF1C24;
}
.request__title img {
	position: relative;
   top: 18px;
}
.request__text {
	max-width: 385px;
}
.request__form {
	padding-right: 40px;
}
.request__form .form {
	max-width: 300px
}
.form__input {
	font-size: 16px;
	color: #000;
	width: 100%;
	height: 80px;
	background: #FFFFFF;
	border: 1px solid rgba(0, 0, 0, 0.05);
	border-radius: 10px;
	position: relative;
	display: flex;
	align-items: center;
	padding: 0 30px;
	transition: 0.3s;
	margin-bottom: 10px;
}
.form__input_textarea {
	padding: 30px;
	height: 230px;
	resize: none;
	font-size: 16px;
	line-height: 26px;
	letter-spacing: 0.01em;
}
.form__text {
	font-size: 12px;
	line-height: 20px;
	text-align: center;
	color: #868686;
	padding-top: 12px;
}

.request_fullwidth .request__container {
	max-width: 1258px;
	padding-bottom: 110px;
}
.request_fullwidth .request__form {
	padding-right: 0;
}
.request_fullwidth .request__title span {
	display: block;
}
.request_fullwidth .request__text {
	max-width: 400px;
}

.request_footer {
	background: #ffffff;
}
.request_footer .request__form {
    padding-right: 19px;
}
.request_footer .request__container {
	padding-top: 90px;
	padding-bottom: 80px;
}
.request_footer .request__title {
	max-width: 90%;
	padding-bottom: 33px;
}
.request_fullwidth .request__title span {
	display: inline;
}
.request_2 .request__title span {
	display: block;
}
.request_footer .request__text {
	max-width: 425px;
}
.request_footer .social__icon_viber {
	padding-left: 80px;
   background-position: left 45px center;
}


/* main-info */
.main-info {
	padding-top: 64px;
	padding-bottom: 64px;
	background-color: #FFF;
}
.main-info__container {
	display: flex;
	align-items: start;
	justify-content: space-between;
	width: 100%;
}
.main-info__content {
	width: 100%;
}
.main-info__title {
	padding-bottom: 30px;
}
.main-info__text {
	max-width: 1075px;
	font-size: 16px;
	line-height: 26px;
	letter-spacing: 0.01em;
	color: #333333;
	margin-bottom: 31px;
}
.main-info__btn {
	display: inline-flex;
	align-items: center;
	font-family: 'Ermilov';
	font-weight: 600;
	font-size: 12px;
	line-height: 18px;
	text-transform: uppercase;
	color: #3A95AA;
	cursor: pointer;
}
.main-info__btn svg {
	margin-left: 6px;
}


/* main-reviews */
.main-reviews {
	padding-top: 98px;
	padding-bottom: 49px;
}
.main-reviews__container {
	padding-right: 48px;
}
.main-reviews__top {
	margin-bottom: 65px;
}
.main-reviews__top, .main-reviews__arrows {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.main-reviews__arrows {
	justify-content: flex-end;
}
.main-reviews__arrow {
    display: block;
    width: 80px;
    height: 80px;
    font-size: 0;
    box-shadow: 10px 0px 40px #EAEEF1;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}
.main-reviews__arrow_prev {
    margin-right: 20px;
    background: #ffffff url(../img/arrow-prev.svg) center no-repeat;
}
.main-reviews__arrow_next {
    background: #ffffff url(../img/arrow-next.svg) center no-repeat;
}
.main-reviews__arrow_prev:hover {
    background: #3A95AA url(../img/arrow-prev_white.svg) center no-repeat;
}
.main-reviews__arrow_next:hover {
    background: #3A95AA url(../img/arrow-next_white.svg) center no-repeat;
}
.main-reviews__slick {
	margin: 0px -20px;
}
.main-reviews__slide {
	opacity: 0.25;
	transition: all .3s;
}
.main-reviews__slide.slick-active {
	opacity: 1;
	transition: all .3s;
}
.main-reviews__slick .reviews__item {
	margin: 0px 20px;
	padding: 70px 50px 35px;
}
.main-reviews__slick .slick-list {
    overflow: visible;
}
.main-reviews__slick .reviews__item p {
    padding-bottom: 34px;
    min-height: 190px;
}


/* Buying */

.buying {
	padding-top: 50px;
	padding-bottom: 100px;
}
.buying__container {
	background: #ffffff;
	box-shadow: 10px 0px 40px #EAEEF1;
	max-width: 1200px;
	padding: 80px;
}
.buying__title {
	padding-bottom: 18px;
	text-align: center;
}
.buying__text {
	text-align: center;
	padding-bottom: 50px;
}
.buying__text b {
	color: #3A95AA;
	font-weight: 600;
}
.buying__list {
	display: flex;
	justify-content: space-between;
}
.buying__item {
	border-radius: 10px;
	font-family: 'Ermilov';
	font-size: 12px;
	line-height: 18px;
	text-transform: uppercase;
	width: 23%;
	flex-shrink: 0;
	padding: 23px 7px 23px 100px;
}
.buying__item span {
	color: #3A95AA;
	display: block;
}
.buying__item_1 {background: #F7F8FA url(../img/buying-icon1.svg) left 23px center no-repeat;}
.buying__item_2 {background: #F7F8FA url(../img/buying-icon2.svg) left 23px center no-repeat;}
.buying__item_3 {background: #F7F8FA url(../img/buying-icon3.svg) left 23px center no-repeat;}
.buying__item_4 {background: #F7F8FA url(../img/buying-icon4.svg) left 23px center no-repeat;}




/* Compare */

.compare {
}
.compare__container {
    padding-top: 40px;
    padding-bottom: 40px;
}
.compare__title {
	padding-bottom: 50px;
	max-width: 970px;
}

.accordion-wrapper {
	background: #ffffff;
	display: flex;
	align-items: stretch;
	border-radius: 10px;
	overflow: hidden;
}
.accordion {
	display: flex;
	overflow: hidden;
	flex: 1;
}
.accordion__main-text {
	background: #3A95AA;
	width: 490px;
	flex-shrink: 0;
}
.compare__we {

}
.accordion__item .compare__we {display: none;}

.accordion__item {
	display: flex;
	min-height: 935px;
	width: 100px;
	overflow: hidden;
	transition: 0.7s;
	flex-shrink: 0;
	position: relative;
}
.accordion__item_active {
	flex: 1;
	min-width: 100px;
}
.accordion__tab {
	background: #ffffff;
	border: 1px solid #f7f8fa;
	border-top: none;
	border-bottom: none;
	width: 100px;
	min-height: 935px;
	overflow: hidden;
	position: relative;
	flex-shrink: 0;
	transition: 0.7s;
	cursor: pointer;
	/* margin-right: -100px; */
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	z-index: 2;
}
.accordion__item_active .accordion__tab {
	left: -100px;
}
.accordion__tab:hover {
	background: #DF1C24;
	color: #ffffff;
}
@media (pointer:coarse) {
	.accordion__tab:hover {
		background: #fff;
		color: #000;
	}
}
.accordion__title {
	transform: rotate(-90deg);
	width: 300px;
	height: 55px;
	position: absolute;
	top: 150px;
	left: -100px;
	display: flex;
	align-items: center;
}
.accordion__info {
	display: block;
	transform: rotate(-90deg);
	width: 300px;
	position: absolute;
	bottom: 200px;
	left: -100px;
}
.accordion__content {
	background: #ffffff;
	padding: 0;
	display: block;
	width: 430px;
	display: flex;
}
.compare__other {
	padding: 60px 40px;
	flex-shrink: 0;
   width: 430px;
}
.compare__other .title {
	color: #DF1C24;
	text-align: center;
	padding-bottom: 50px;
}
.compare__other .list__item:before {
	background: #DF1C24;
}
.compare__we {
	padding: 60px 40px 25px;
	background: #3A95AA;
	color: #fff;
}
.compare__we .title {
	color: #fff;
	text-align: center;
	padding-bottom: 50px;
}
.compare .list__item {
	padding-bottom: 32px;
}
.compare__we .list__item:before {
	background: #fff;
}
.compare__we .list__item:after {
	background: url(../img/check-icon_blue.svg) top right no-repeat;
}
.download {
	padding-top: 25px;
}
.download__link {
	color: #ffffff;
	font-size: 14px;
	font-weight: bold;
	text-decoration: underline;
}
.download__link:hover {
	text-decoration: none;
}
.download__filetype {
	text-transform: uppercase;
	color: #ffffff;
	font-size: 14px;
	font-weight: bold;
	opacity: 0.4;
	padding-left: 10px;
}




/* Steps */

.steps {
	background: #ffffff;
}
.steps__container {
	padding-top: 70px;
	padding-bottom: 100px;
}
.steps__title {
	padding-bottom: 70px;
	max-width: 970px;
}
.steps__content {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	height: 438px;
}
.steps__item {
	width: 16%;
	padding-right: 1%;
}
.steps__item_5 {
	padding-right: 0;
}
.steps__item_bottom {
	padding-top: 110px;
}
.steps__icon {
	height: 185px;
	position: relative;
}
.steps__subtitle {
	font-family: 'Ermilov';
	text-transform: uppercase;
	padding-bottom: 12px;
}
.steps__text a {
	display: inline-block;
	text-decoration: none;
	color: #3A95AA;
	font-weight: bold;
	position: relative;
}
.steps__text a:after {
	content: '';
	display: block;
	position: absolute;
	bottom: 5px;
	right: 0;
	left: 0;
	width: 100%;
	border-bottom: 1px solid #3A95AA;
	transition: 0.3s;
}
.steps__text a:hover:after {
	border-bottom: 1px solid transparent;
}
.steps__text img {
	padding-top: 15px;
}
.steps__arrow {position: absolute; z-index: 1;}
.steps__image {position: relative; z-index: 2;}
.steps__item_1 .steps__arrow {top: 18px; left: 175px;}
.steps__item_2 .steps__arrow {top: -90px; left: 155px;}
.steps__item_3 .steps__arrow {top: 70px; left: 168px;}
.steps__item_4 .steps__arrow {top: -72px; left: 162px;}
.steps__item_2 .steps__image {top: 10px;}
.steps__item_4 .steps__image {top: 12px;}
.steps__item_5 .steps__image {top: 40px;}




/* Lastcar */

.lastcar {
	background: #fff;
	padding-bottom: 43px;
	padding-top: 31px;
}
.lastcar__container {
	padding-top: 50px;
	padding-right: 48px;
	padding-bottom: 50px;
}
.lastcar__title {
	max-width: 700px;
	padding-bottom: 60px;
}
.lastcar__cars {
	margin-bottom: 25px;
}
.lastcar__item {
	display: flex;
}
.lastcar__photo {
	height: 370px;
	width: 42.571%;
	border-radius: 10px;
	overflow: hidden;
	flex-shrink: 0;
	margin-right: 90px;
	position: relative;
}
.photo {
	object-fit: cover;
   object-position: center;
   width: 100%;
   height: 100%;
}
.lastcar__description {
	padding-right: 90px;
}
.lastcar__subtitle {
	padding-bottom: 15px;
}
.lastcar__characteristic {
	display: flex;
}
.lastcar__characteristic-item {
	padding: 2px 10px;
	color: #ffffff;
	background: #3A95AA;
	font-weight: 600;
	border-radius: 5px;
	margin: 0 20px 10px 0;
}
.lastcar__text {
	padding-top: 20px;
}
.lastcar__price {
	width: 200px;
	flex-shrink: 0;
}
.lastcar__price-item {
	width: 200px;
	height: 100px;
	border-radius: 10px;
	background: #f0f3f5;
	padding: 20px 15px 20px 20px;
	margin-bottom: 35px;
	font-family: 'Ermilov';
	font-size: 12px;
	line-height: 18px;
	text-transform: uppercase;
}
.lastcar__price-item_our {
	background: #3A95AA;
	color: #ffffff;
}
.lastcar__price-info {
	padding-bottom: 14px;
}
.lastcar__price-value img {
	height: 12px;
	position: relative;
	top: 10px;
}
.lastcar__list {
	position: relative;
	padding-left: 100px;
	padding-right: 100px;
}
.lastcar__list .slick-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
.lastcar__list .slick-next {right: 0;}
.lastcar__list .slick-prev {left: 0;}

.lastcar__list-item {
	display: flex;
	align-items: center;
	cursor: pointer;
	width: 400px;
}
.lastcar__list-photo {
	width: 136px;
	height: 98px;
	flex-shrink: 0;
	border-radius: 10px;
	overflow: hidden;
	margin-right: 25px;
	position: relative;
}
.lastcar__list-title {
	font-family: 'Ermilov';
	letter-spacing: -0.01em;
	text-transform: uppercase;
}




/* Estimate */

.estimate__container {
	padding-top: 98px;
	padding-bottom: 78px;
	padding-right: 53px;
}
.estimate__title {
	padding-bottom: 25px;
}
.estimate__form {
	display: flex;
	flex-wrap: wrap;
}
.estimate__form .form__input {
	margin-bottom: 20px;
}
.estimate__form-right {
	width: 275px;
}
.estimate__form-right .button {
    width: 100%;
}
.estimate__form-right  .form__text {
    text-align: left;
    padding-top: 8px;
}
.estimate__textarea {
	width: calc(100% - 295px);
	margin-right: 20px;
}
.estimate__imageupload {
	width: 100%;
}
.estimate__imageupload .button {
	width: 100%;
	margin-bottom: 10px;
}
.estimate__form .button_pc {display: block;}
.estimate__form .button_mobile {display: none;}

.estimate__imageupload .imageuploadify-images-list {
	border-radius: 10px;
	position: relative;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}
.estimate__imageupload .imageuploadify-overlay {
	z-index: 10;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 80px;
	display: none;
	background-color: rgba(242, 242, 242, .7);
	pointer-events: none
}
.estimate__imageupload .imageuploadify-message {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	transition: 0.3s;
	display: none;
}
.estimate__imageupload .imageuploadify-details {
	display: none;
}
@media (pointer:coarse) {
	.estimate__imageupload .imageuploadify-images-list {border: none;	padding: 0;	min-height: 0;}
	.estimate__imageupload .imageuploadify-message {display: none;}
}
.estimate__imageupload .imageuploadify-container {
	border-radius: 5px;
	width: 100px;
	height: 100px;
	margin: 8.6px!important;
	position: relative;
	overflow: hidden;
}
.estimate__imageupload .imageuploadify-container img {
	border-radius: 5px;
	object-fit: cover;
	object-position: center;
	width: 100%;
	height: auto;
	min-height: 100%;
}
.estimate__imageupload .button-delete {
	position: absolute;
	top: 0;
	right: 0;
	display: block;
	border: none;
	border-radius: 5px;
	width: 20px;
	height: 20px;
	background: #DF1C24 url(../img/close-icon.svg) center no-repeat;
	background-size: 50%;
	cursor: pointer;
}
.estimate__row.fileresult {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-top: 20px;
}
.estimate__coll {
	width: calc(50% - 10px);
	margin-bottom: 20px;
}

/* Purchases */
.purchases {
	padding-bottom: 78px;
}
.purchases__container {
	padding-right: 49px;
}
.purchases__title  {
	margin-bottom: 50px;
}
.purchases__content {
	display: flex;
	flex-wrap: wrap;
	margin-left: -10px;
	margin-right: -10px;
}
.purchases__col {
	display: block;
	width: 12.5%;
	padding-left: 11px;
	padding-right: 11px;
	transition: all .3s;
}
.purchases__item {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 128px;
	position: relative;
	background: #fff;
	border-radius: 10px;
	border: 1px solid rgba(0, 0, 0, 0.05);
	margin-bottom: 23px;
	padding: 20px;
	overflow: hidden;
	transition: all .3s;
}
.purchases__item-hover {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	padding: 20px;
	transform: translateY(-120%);
	transition: all .3s;
}
.purchases__item-img {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	transform: translateY(0%);
	transition: all .3s;
}
.purchases__item img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	display: block;
}
.purchases__item:hover {
	box-shadow: 0px 0px 40px rgba(0, 0, 0, .15);
	transition: all .3s;
}
.purchases__item:hover .purchases__item-hover {
	transform: translateY(0%);
	transition: all .3s;
}
.purchases__item:hover .purchases__item-img {
	transform: translateY(160%);
	transition: all .3s;
}

/* Statistic */

.statistic {
	background: #3A95AA url(../img/statistic-bg.svg) bottom -15px center no-repeat;
	color: #fff;
	margin-bottom: 50px;
}
.statistic__container {
	padding-top: 80px;
	padding-bottom: 80px;
}
.statistic__title {
	max-width: 700px;
}
.statistic__content {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	padding-top: 77px;
}
.statistic__item {
	width: 20%;
	padding-right: 5%;
}
.statistic__value {
	font-family: 'Ermilov';
	font-size: 24px;
	line-height: 22px;
	text-transform: uppercase;
	padding-bottom: 35px;
	white-space: nowrap;
}
.statistic__value b {
	font-size: 60px;
	line-height: 30px;
}
.statistic__item:nth-child(1) .statistic__text {padding-right: 10%;}
.statistic__item:nth-child(2) .statistic__text {padding-right: 25%;}
.statistic__item:nth-child(3) .statistic__text {padding-right: 20%;}




/* Questions */

.questions__container {
	padding-top: 0px;
	padding-bottom: 97px;
}
.questions__title {
	padding-bottom: 32px;
}
.questions__content {
	background: #ffffff;
	border-radius: 10px;
	overflow: hidden;
	display: flex;
}
.questions__column {
	width: 50%;
}
.questions__subtitle {
	background: #42a3b8;
	color: #ffffff;
	padding: 36px 50px;
	font-family: 'Ermilov';
	font-size: 16px;
	line-height: 26px;
	text-transform: uppercase;
}
.questions__column_left .questions__subtitle {
	background: #3d95a8;
}
.questions__text {
	padding: 50px;
}
.questions__column_right .questions__text {
	border-left: 1px solid #f2f2f2;
}




/* Contacts */

.contacts__container {
	padding-top: 69px;
	text-align: center;
}
.contacts__title {
	padding-bottom: 35px;
}
.contacts__title span {
	display: block;
}
.contacts__text {
	padding-bottom: 40px;
}
.contacts__text p {
	padding-bottom: 0;
}
.contacts__phone {
	font-size: 36px;
	padding-bottom: 55px;
}
.contacts__social {
	display: flex;
	justify-content: center;
}
.contacts__social .social__icon {
	margin: 0 5px;
}
.contacts__social .social__icon_viber {
	padding-left: 80px;
	background-position: left 45px center;
}




/* Footer */

.footer__container {
	padding-top: 60px;
	display: flex;
	justify-content: space-between;
}
.footer__logo {
	max-width: 205px;
}
.footer__logo .logo {
	display: block;
}
.footer__logo .logo__name {
	padding-bottom: 20px;
}
.footer__logo .logo__slogan {
	padding-bottom: 45px;
}
.footer__privacy {
	color: #3A95AA;
	font-size: 14px;
	font-weight: bold;
	text-decoration: underline;
	white-space: nowrap;
	display: block;
	margin-top: 16px;
}
.footer__privacy:hover {
	text-decoration: none;
}
.footer__menu {
    max-width: 565px;
    display: flex;
    justify-content: space-between;
    position: relative;
    top: 5px;
    left: 10px;
}
.footer__page .footer__contacts {padding-top: 13px;}
.footer__page .footer__menu {padding-top: 8px;}
.footer__page .footer__logo .logo__slogan {padding-bottom: 61px;} 
.footer__menu-link {
	color: #000;
	text-decoration: none;
	display: inline-block;
	margin-right: 5%;
	white-space: nowrap;
	margin-bottom: 12px;
	position: relative;
	transition: 0.5s;
}
.footer__menu-link:hover {
	color: #3A95AA;
}
.footer__menu-link:before {
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 100%;
	border-bottom: 1px solid #3A95AA;
	transition: 0.5s;
}
.footer__menu-link:hover:before {
	right: 0;
}
.footer__contacts {
	margin-right: 18px;
}
@media (pointer:coarse) {
	.footer__menu-link:before {
		display: none;
	}
}
.footer__phone {
	padding-bottom: 35px;
	position: relative;
    top: 11px;
    right: -7px;
}
.footer__social {
	padding-bottom: 52px;
	position: relative;
    right: -6px;
}
.design {
	display: flex;
	font-size: 14px;
}
.design__text {
	white-space: nowrap;
	display: block;
	padding: 10px 25px 0 0;
	color: #333333;
	transition: 0.3s;
}
.design__logo {
	background: #CC3B3B;
	color: #ffffff;
	font-weight: 600;
	width: 31px;
	height: 90px;
	padding-top: 10px;
	text-align: center;
	transition: 0.3s;
}
.design:hover .design__text {
	color: #CC3B3B;
}
.design:hover .design__logo {
	background: #be3636;
}



/* Popup */

.popup__overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: calc(100vh + 140px);
	transform: translateY(-70px);
	background: rgba(247, 248, 250, 0.85);
	z-index: 2000;
}
.popup {
	position:fixed;
	top:0;
	left: 0;
	width: 100%;
	height: calc(100vh + 70px);
	padding: 15px;
	padding-bottom: calc(15px + 70px);
	overflow-y: auto;
	-webkit-overflow-scrolling: touch; /* плавный скролл попапа на мобилках */
	display: flex;
	opacity: 0;
	z-index: 2001;
}
.popup__box {
	position: relative;
	margin: auto;
	max-width: 750px; /* максимальная ширина попапа*/
	background: #fff url(../img/popup-bg.svg) bottom center no-repeat;
	background-size: contain;
	padding: 55px 65px 265px;
	border-radius: 10px 0 10px 10px;
	z-index: 2001;
}
.popup__close {
	position: absolute;
	top: 0;
	right: -80px;
	border-radius: 0 10px 10px 0;
	width: 80px; /* размер кнопки с крестиком */
	height: 80px; /* размер кнопки с крестиком */
	background: #DF1C24; /* фон кнопки с крестиком */
	margin: 0; /* отступ кнопки с крестиком от края попапа */
	padding: 28px; /* отступ крестика от края кнопки */
	cursor: pointer;
}
.popup__close-icon {
	transition: all 0.3s;
	position: relative;
	height: 100%;
	padding: 10px;
}
.popup__close-icon:after, .popup__close-icon:before {
	content: '';
	display: block;
	width: 140%;
	left: -20%;
	position: absolute;
	top: 50%;
	height: 2.55px; /* толщина крестика */
	background: #fff; /* цвет крестика */
}
.popup__close-icon:after {
	transform: translateY(-50%) rotate(45deg);
}
.popup__close-icon:before {
	transform: translateY(-50%) rotate(-45deg);
}
.popup__close:hover .popup__close-icon {
	transform: rotate(180deg); /* вращение крестика при наведении */
}
.popup-disable-scroll {
	overflow: hidden;
}
/* убираем дергание при исчезании полосы прокрутки */
@media screen and (min-width:1025px) {
/* .page, .header, .up {margin-right: calc(-1 * (100vw - 100%));} */
.page_disable-scroll-fix {margin-right: initial;}
}


/* Popup form */

.popup__title {
	text-align: center;
	padding-bottom: 20px;
}
.popup__text {
	text-align: center;
	padding-bottom: 40px;
}
.popup__form {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.popup .form__input {
	width: 48%;
	margin-bottom: 20px;
}
.popup .form__footer {
	width: 100%;
}
.popup .form__text {
	text-align: center;
}
.popup .form__button {
	width: 100%;
}
.popup__result {
	display: none;
}
.popup__result .popup__title span {
	display: block;
}
.popup__result .popup__text {
	padding-bottom: 10px;
}

#callback-popup-form .form__input {
	width: 100%;
}
#callback-popup-form {
	max-width: 450px;
	margin: 0 auto;
}




/* Fixed Callback on mobile */

.fixed-callback {
	position: fixed;
	width: 100%;
	left: 0;
	bottom: -100px;
	height: 80px;
	padding: 10px;
	border-radius: 0;
	background: #4DB768;
	color: #fff;
	font-family: 'Ermilov';
	font-size: 18px;
	line-height: 18px;
	text-transform: uppercase;
	z-index: 1006;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
	display: flex;
	justify-content: center;
	align-items: center;
	transition: 0.5s;
}
.fixed-callback_active {
	bottom: 0;
}
.fixed-callback__button {
	width: 30px;
	height: 30px;
	margin: 0 17px 0 0;
	font-size: 0;
	background: #4DB768 url(../img/phone-icon.svg) center no-repeat;
	background-size: 100%;
	flex-shrink: 0;
}
.fixed-callback__button:before,
.fixed-callback__button:after {
	display: none;
}




/* Up button */

.up {
	position: fixed;
	bottom: 20px;
	right: 40px;
	background: #333;
	width: 40px;
	height: 40px;
	border-radius: 7px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.3s;
	z-index: 150;
}
.up:after {
	content: '';
	display: block;
	width: 30%;
	height: 30%;
	border-left: 2px solid #fff;
	border-top: 2px solid #fff;
	transform: rotate(45deg);
	margin-top: 15%;
	transition: 0.3s;
}
.up:hover {background: #3A95AA;}
.up:hover:after {margin-top: 0;}

/* fix для touch устройств, поскольку hover там сам не возвращается обратно */
@media (pointer:coarse) {
	.up:hover {background: #000;}
	.up:hover:after {margin-top: 15%;}
}

/* Breadcrubms */
.breadcrumb {
	margin-bottom: 70px;
}
.breadcrumb ul {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	margin-bottom: -10px;
}
.breadcrumb ul li {
	display: flex;
	align-items: center;
	font-size: 14px;
	line-height: 14px;
	color: #3A95AA;
	position: relative;
	margin-bottom: 10px;
}
.breadcrumb ul li:after {
	content: '';
	position: relative;
	display: block;
	width: 14px;
	height: 14px;
	background: #3A95AA url('../img/check-icon.svg') no-repeat;
	background-size: 12px 10px;
	background-position: 100% 50%;
	border-radius: 50%;
    margin: 0px 15px;
}
.breadcrumb ul li:last-child:after {
	display: none;
}
.breadcrumb ul li a {
	color: #999;
	letter-spacing: 0.01em;
	transition: all .3s;
}
.breadcrumb ul li a:hover {
	color: #3A95AA;
}
/* Serivces */
.services {
	padding-top: 216px;
}
.services__title {
	margin-bottom: 41px;
}
.serivces__row {
	display: flex;
	flex-wrap: wrap;
}

.services__sidebar {
	width: 24.12%;
}
.services__content {
	/*width: calc(100% - 25.5%);*/
	width:100%;
	/*padding-right: 92px;*/
}

/* Sidebar */

.sidebar__block {
	border-radius: 10px;
	padding: 30px 35px;
	margin-bottom: 30px;
	background: #F7F8FA;
	overflow: hidden;
}

.sidebar__menu {
	background: #32889C;
	padding: 15px 0;
}
.sidebar__menu li {
	display: block;
}
.sidebar__menu li a {
	display: block;
	font-family: 'Ermilov', sans-serif;
	font-weight: bold;
	font-size: 16px;
	text-transform: uppercase;
	color: #CCE1E6;
	padding: 11px 10px 11px 35px;
	letter-spacing: -0.01em;
	transition: all .3s;
}
.sidebar__menu li a:hover {
	color: #fff;
    background: #3A95AA;
}

.sidebar__socials {
	padding: 30px 45px 30px 35px;
}
.sidebar__socials-text {
	line-height: 26px;
	margin-bottom: 20px;
}
.sidebar__socials-row {
	display: flex;
	align-items: center;
	margin-bottom: 25px;
}
.sidebar__socials-item {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	margin-right: 11px;
	position: relative;
	transition: all .3s;
}
.sidebar__socials-item:last-child {
	margin-right: 0;
}
.sidebar__socials-item.whatsapp {
	background: #27AF1A url(../img/whatsapp-icon.svg) center no-repeat;
}
.sidebar__socials-item.viber {
	background: #7D509F url(../img/viber-icon.svg) center no-repeat
}
.sidebar__socials-item.telegram {
	background: #2EA4DA url(../img/telegram-icon.svg) center no-repeat
}
.sidebar__socials-item:hover {
    filter: brightness(120%);
    -webkit-filter: brightness(120%);
}
.sidebar__socials-phone {
	font-family: 'Ermilov', sans-serif;
	font-weight: bold;
	font-size: 22px;
	line-height: 20px;
	color: #0E1D3F;
	transition: all .3s;
}
.sidebar__socials-phone span {
	color: #3A95AA;
}
.sidebar__socials-phone:hover {
    color: #3A95AA;
}
.sidebar__block.button {
	background: #4DB768;
	padding: 0 66px;
}

.services__menu {
	background: #32889C;
	padding: 0 0 18px;
}
.sidebar__title {
	font-family: 'Ermilov', sans-serif;
	font-weight: bold;
	font-size: 16px;
	line-height: 26px;
	margin-bottom: 27px;
	color: #fff;
	letter-spacing: -0.01em;
	text-transform: uppercase;
}
.services__menu .sidebar__title {
	padding: 28px 35px 0;
	margin-bottom: 16px;
}
.services__menu li {
	display: block;
}
.services__menu li a {
	display: block;
	font-size: 16px;
	line-height: 26px;
	color: #CCE1E6;
	padding: 10px 0 10px 35px;
	transition: all .3s;
}
.services__menu li a:hover {
	color: #fff;
	background: #3A95AA;
}

.sidebar__why {
	background: none;
	border: 1px solid rgba(0, 0, 0, 0.05);
	padding: 30px 25px 30px 35px;
}
.sidebar__why-title {
	color: #333;
}
.why__item {
	display: flex;
	margin-bottom: 20px;
}
.why__item:last-child {
	margin-bottom: 0;
}
.why__item-image {
	width: 70px;
	padding-top: 8px;
}
.why__item-text {
	width: calc(100% - 70px);
}

.sidebar__review-title {
	color: #333;
}
.sidebar__review-image {
	width: 100%;
	height: 155px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 10px;
	margin-bottom: 20px;
}
.sidebar__review-name {
	margin-bottom: 6px;
}
.sidebar__review-info {
	font-size: 14px;
	line-height: 20px;
	margin-bottom: 6px;
	letter-spacing: 0.01em;
}
.sidebar__review-info span {
	color: #868686;
}
.sidebar__review-info span.price {
	color: #DF1C24;
}
.sidebar__review-more {
	display: block;
	margin: 22px 0 20px;
	font-family: 'Ermilov', sans-serif;
	font-weight: bold;
	color: #3A95AA;
	text-transform: uppercase;
	font-size: 12px;
	line-height: 18px;
}
.sidebar__review-all {
	max-width: 100%;
}

.sidebar__block.button {max-width: 100%;}

/* Services */
.services__list {
	display: flex;
	flex-wrap: wrap;
	margin-left: -12.5px;
	margin-right: -12.5px;
}
.services__list-col {
	/*width: 33.3333%;*/
	width: 25%;
	padding-left: 12.5px;
	padding-right: 12.5px;
}
.services__item {
	display: block;
	background: #fff;
	height: 399px;
	border-radius: 10px;
	margin-bottom: 24px;
	position: relative;
	overflow: hidden;
	transition: all .3s;
}
.services__item-image {
	width: 100%;
	height: 165px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	margin-bottom: 25px;
	overflow: hidden;
}
.services__item-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all .3s;
}
.services__item:hover .services__item-image img {
	transform: scale(1.05);
	transition: all .3s;
}
.services__item-title {
	font-family: 'Ermilov', sans-serif;
	font-weight: bold;
	font-size: 16px;
	line-height: 26px;
	letter-spacing: -0.01em;
	color: #333;
	text-transform: uppercase;
	padding: 0 33px 0 30px;
	transition: all .3s;
}
.services__item-more {
	display: block;
	text-align: center;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	font-size: 12px;
	line-height: 18px;
	font-weight: bold;
	font-family: 'Ermilov', sans-serif;
	padding: 20px 0;
	text-transform: uppercase;
	color: #3A95AA;
	transition: all .3s;
}
.services__item:hover .services__item-more {
	background: #3A95AA;
	color: #fff;
}
.services__item:hover .services__item-title {
	color: #3A95AA;
}

.buy__banner {
	background: #FFF url(../img/main-banner.svg) center center no-repeat;
    background-size: contain;
    background-position: 50% 100%;
    height: 624px;
    padding: 60px 107px;
    text-align: center;
    border-radius: 10px;
    margin: 76px 0 100px;
    max-width: 1180px;
    width: 100%;
}
.buy__banner-title {
	font-family: 'Ermilov', sans-serif;
	font-size: 36px;
	line-height: 48px;
	text-transform: uppercase;
	margin-bottom: 25px;
}
.buy__banner-title span {
	color: #DF1C24;
}
.buy__banner-button {
	margin: 0 auto;
	width: 280px;
}

.services-page .lastcar {
	background: none;
    padding-bottom: 5px;
    padding-top: 50px;
}
.services-page .lastcar__price-item {
    background: #FFF;
}
.services-page .lastcar__price-item_our {
    background: #3A95AA;
    color: #ffffff;
}

.services__title_second {
	margin-bottom: 40px;
}

.services__content-list {
	display: flex;
	margin-bottom: 42px;
	margin-top: -2px;
}
.services__content-list ul:not(:last-child) {
	margin-right: 51px;
}
.list__districts ul:not(:last-child), .list__city ul:not(:last-child) {
    margin-right: 48px;
}
.list__area ul:not(:last-child) {
    margin-right: 56px;
}
.services__content-list ul li {
	display: block;
	margin-bottom: 24px;
	color: #3A95AA;
	letter-spacing: 0.01em;
	font-size: 16px;
	line-height: 16px;
	position: relative;
}

.services__content-list ul li a {
	display: block;
	padding-left: 33px;
	position: relative;
	color: #3A95AA; 
	transition: all .3s;
}
.services__content-list ul li a:before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translate(0, -50%);
	width: 23px;
	height: 16px;
}
.services__content-list ul li a:hover {color: #999;}

.list__highway ul li a:before {
	background: url('../img/services-list-li.svg');
}
.list__districts ul li a:before {
	background: url('../img/services-list_district.svg');
	width: 19px;
	height: 22px;
}
.list__metro ul li a:before {
	background: url('../img/services-list_metro.svg');
	width: 23px;
	height: 18px;
}
.list__city ul li a:before {
	background: url('../img/services-list_city.svg');
	width: 21px;
	height: 21px;
}
.list__area ul li a:before {
	background: url('../img/services-list_area.svg');
	width: 20px;
	height: 21px;
}
.list__bmw ul li a:before {
	width: 22px;
	height: 22px;
	background: #3A95AA;
	border-radius: 50%;
}
.list__bmw ul li a:after {
	content: '';
	position: absolute;
	left: 4px;
	top: 0;
	width: 19px;
	height: 14px;
	background: url('../img/check-icon.svg');
}

.services__content-text {}
.content__page p {
	padding-bottom: 28px;
}
.content__page h3,
.content__page h4,
.content__page h5 {
	padding: 30px 0;
	font-family: 'Ermilov', sans-serif;
	letter-spacing: -0.01em;
	text-transform: uppercase;
}
.content__page h3 {
	font-size: 24px;
	padding: 30px 0 40px;
	line-height: 26px;
}
.content__page ul,
.content__page ol {
	padding: 0 0 35px;
	margin: 0;
	list-style: none;
}
.content__page ul li,
.content__page ol li {
	position: relative;
	padding-left: 35px;
	font-size: 1rem;
	line-height: 1.5;
	margin-bottom: 16px;
}
.content__page ul li:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 22px;
	height: 22px;
	background: #3A95AA;
	border-radius: 50%;
}
.content__page ul li:after {
	content: '';
	position: absolute;
	left: 5px;
	top: 2px;
	width: 19px;
	height: 15px;
	background: url('../img/check-icon.svg');
}
.content__page ul li:last-child {
	margin-bottom: 0;
}




.content__more {
	display: block;
	text-align: center;
	letter-spacing: 0.02em;
	color: #32889C;
	font-family: 'Ermilov', sans-serif;
	font-size: 14px;
	line-height: 14px;
	text-transform: uppercase;
	padding: 27px 0;
	background: #F7F8FA;
	box-shadow: 10px 0px 40px #EAEEF1;
	border-radius: 10px;
	margin-top: 42px;
	transition: all .3s;
}
.content__more:hover {
	background: #f9fbff;
}

.content__page img {
	border-radius: 10px;
	overflow: hidden;
}

.content__page .alignright {
	float: right;
	margin: 0 0 15px 32px;
}

.clearfix {
	clear: both;
	padding-bottom: 28px;
}

.services-city .services__content-list {
	margin-bottom: 33px;
}

.services-mark .content__page ul {padding: 0 0 33px;}
.services-mark .services__title_second {margin-bottom: 44px;}

.services__before_list {
	font-weight: bold;
	font-family: 'Ermilov', sans-serif;
	font-size: 24px;
	line-height: 26px;
	margin-bottom: 42px;
	text-transform: uppercase;
	letter-spacing: -0.01em;
}

.services-bmw .services__title_second {
	margin-bottom: 60px;
}
.list__bmw {
	margin-bottom: 71px;
	padding-top: 5px;
}
.about__banner {
	padding: 82px 107px;
}
.about__banner .buy__banner-title {
	margin-bottom: 32px;
}

.services-districts .services__title_second {margin-bottom: 75px;}
.list__metro ul:not(:last-child) {
	margin-right: 45px;
}
.services-metro .services__content {
	/*padding-right: 79px;*/
}
.services-bmw .content__page h4 {
	padding: 30px 0 40px;
}
.services-bmw .content__page ul {
	padding: 0 0 50px;
}
.services-bmw .content__page h3 {
	padding: 14px 0 40px;
}
.services-bmw .services__content-list ul:not(:last-child) {
	margin-right: 57px;
}

.services-metro .services__content-list {margin-bottom: 32px;}


/* Buy by brand */
.services__content-brand {
	margin-bottom: 10px;
}
.brand__content {
	display: flex;
	flex-wrap: wrap;
	margin-left: -11px;
	margin-right: -11px;
	/*max-width: 751px;*/
}
.brand__col {
	padding-left: 11px;
	padding-right: 11px;
    width: calc(100%/8);
}
.brand__item {
	display: flex;
    align-items: center;
    justify-content: center;
	height: 128px;
	background: #fff;
	border-radius: 10px;
	position: relative;
	border: 1px solid rgba(0, 0, 0, 0.05);
	margin-bottom: 21.5px;
	padding: 20px;
	overflow: hidden;
    transition: all .3s;
}
.brand__item-hover {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	padding: 20px;
	transform: translateY(-120%);
	transition: all .3s;
}
.brand__item-img {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	transform: translateY(0%);
	transition: all .3s;
}
.brand__item img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	display: block;
}
.brand__item:hover {
	box-shadow: 0px 0px 40px rgba(0, 0, 0, .15);
	transition: all .3s;
}
.brand__item:hover .brand__item-hover {
	transform: translateY(0%);
	transition: all .3s;
}
.brand__item:hover .brand__item-img {
	transform: translateY(160%);
	transition: all .3s;
}


/* Faq */

.faq {
	margin-bottom: 40px;
}
.faq__content {
	border-radius: 10px;
	overflow: hidden;
}
.faq__head {
	background: #32889C;
	padding: 26px 30px;
	font-family: 'Ermilov', sans-serif;
	font-weight: bold;
	text-transform: uppercase;
	color: #fff;
	letter-spacing: -0.01em;
}
.faq__body {
	background: #fff;
	padding: 25px 37px 0 30px;
}
.faq__body p {
	padding-bottom: 30px;
}
.faq__body p + ul {
	margin: -5px 0 0;
}

.faq-page .faq__item {
	margin-bottom: 40px;
	border-radius: 10px;
	overflow: hidden;
}
.faq-page .faq__item:last-child {
	margin-bottom: 0;
}
.content__page-faq h3 {
	padding: 35px 0 48px;
}

/* Reviews */
.reviews h3 {
	padding: 30px 0 70px;
}
.reviews__item {
	padding: 70px 52px 35px;
	background: #fff;
	border-radius: 10px;
	margin-bottom: 56px;
	position: relative;
}
.reviews__item:last-child {
	margin-bottom: 0;
}
.reviews__item:before {
	content: '';
	position: absolute;
	left: 52px;
	top: -21px;
	width: 42px;
	height: 39px;
	background: url('../img/reviews/reviews-q.svg');
}
.reviews__item p {
	padding-bottom: 35px;
}
.reviews__item-author {
	border-top: 1px solid rgba(0, 0, 0, 0.05);
	padding-top: 35px;
	display: flex;
}
.reviews__item-author__image {
	width: 70px;
	height: 70px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 50%;
	border: 2px solid rgba(58, 149, 170, 0.25);
	margin-right: 25px;
}
.reviews__item-author__name {
	font-family: 'Ermilov', sans-serif;
	font-size: 16px;
	line-height: 16px;
	letter-spacing: -0.01em;
	text-transform: uppercase;
}
.reviews__item-author__desc {
	font-family: 'Gilroy', sans-serif;
	font-size: 16px;
	line-height: 16px;
	margin-top: 10px;
	margin-bottom: 6px;
}
.reviews__item-author__price, .reviews__item-author__years {
	font-size: 14px;
    line-height: 20px;
    margin-bottom: 6px;
    letter-spacing: 0.01em;
    color: #868686;
	margin-bottom: 6px;
}
.reviews__item-author__price span {
	color: #DF1C24;
}
.reviews__item-author__years span {
	color: #333333;
}

.reviews-page .services__title {
	margin-bottom: 60px;
}

.reviews-page .reviews__item {margin-bottom: 63px;}

.reviews-page .buy__banner {margin: 40px 0 100px;}

.about-page .reviews__item-author {padding-top: 33px;}
/* Video */
.video {
	height: 360px;
	width: 100%;
	position: relative;
	margin-bottom: 35px;
	overflow: hidden;
	border-radius: 10px;
}
.video__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.video__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all .3s;
}
.video__bg:after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(51, 51, 51, .5);
}

.case-lastcar {
    margin-bottom: 50px;
}

.content__page .marka__h2 {
    margin-bottom: 50px;    
}

.reviews__item-video:hover .video__bg img {
	transform: scale(1.05);
	transition: all .3s;
}
.video__play {
	background: rgba(50, 136, 156, .9);
	border-radius: 50%;
	width: 120px;
	height: 120px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 10;
	cursor: pointer;
    transition: 0.3s;
    overflow: hidden;
}
.video__play:after {
	content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 230%;
    height: 100%;
    background: linear-gradient(119.28deg, rgba(255, 255, 255, 0) 17.75%, rgba(255, 255, 255, 0.33) 27.82%, rgba(255, 255, 255, 0) 41.67%);
    animation: button-blink 4s infinite;
}
.video__play svg {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);	
}
.video__frame {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	overflow: hidden;
}
.video__frame iframe {
	width: 100%;
	height: 360px;
}

/* Articles */

.articles__item {
	display: flex;
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	color: #333;
	position: relative;
	margin-bottom: 40px;
	
    margin-left: 14.5px;
    margin-right: 14.5px;
}
.articles__image {
	width: 38.75%;
	overflow: hidden;
	height: 319px;
}
.articles__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all .3s;
}
.articles__item:hover .articles__image img {
	transform: scale(1.05);
	transition: all .3s;
}
.articles__c {
	padding: 35px 40px;
	width: calc(100% - 38.75%);
	height: 100%;
}
.articles__date {
	font-size: 14px;
	line-height: 16px;
	margin-bottom: 35px;
	color: #999;
}
.articles__title {
	font-family: 'Ermilov', sans-serif;
	font-weight: bold;
	font-size: 16px;
	line-height: 26px;
	margin-bottom: 20px;
	letter-spacing: -0.01em;
	text-transform: uppercase;
	transition: all .3s;
}
.articles__item p {
	padding: 0;
	margin: 0;
	letter-spacing: 0.01em;
}
.articles__item:hover .articles__title {
	color: #3A95AA;
}
.articles__more {
	padding: 21px 0;
	width: calc(100% - 38.75%);
	position: absolute;
	right: 0;
	bottom: 0;
	border-top: 1px solid rgba(0, 0, 0, 0.05);
	font-family: 'Ermilov', sans-serif;
	font-weight: bold;
	font-size: 12px;
	line-height: 12px;
	text-transform: uppercase;
	color: #3A95AA;
	text-align: center;
	transition: all .3s;
}
.articles__item:hover .articles__more {
	color: #fff;
	border-color: #3A95AA;
	background: #3A95AA;
}

.articles__pag ul {
	display: flex;
	align-items: center;
	justify-content: center;
}
.articles__pag ul li:not(:last-child) {
	margin-right: 14px;
}
.articles__pag ul li a,
.articles__pag ul li span {
	display: block;
	width: 80px;
	height: 80px;
	background: #fff;
	letter-spacing: -0.01em;
	line-height: 80px;
	text-align: center;
	border-radius: 10px;
	color: #333;
	transition: all .3s;
}	
.articles__pag ul li span.current,
.articles__pag ul li a:hover {
	background: #32889C;
	color: #fff;
}

.articles-page .sidebar__menu {
	padding: 25px 0;
}

.articles-page .content__page img {
    margin-bottom: 15px;
    margin: 0 auto;
    display: block;
}
.articles-page .content__page p {
	padding-bottom: 27px;
}
.articles__single_image {
	margin: 10px 0 8px;
}

.articles-page .purchase__banner {margin: 100px 0;}

.articles-single .lastcar,
.articles-page .lastcar,
.order-page .lastcar,
.lastcar__page {padding-top: 48px; padding-bottom: 27px;}

.lastcar_item {
	background-color: transparent;
	padding-bottom: 8px;
}
.lastcar_item .lastcar__price-item {
    background: #FFF;
}
.lastcar_item .lastcar__price-item_our {
    background: #3A95AA;
    color: #ffffff;
}


.articles-single .contacts__container,
.articles-page .contacts__container,
.order-page .contacts__container,
.contacts__page .contacts__container {padding-bottom: 0;}


.articles-single .request__pages .request__container {padding-top: 87px;}

.faq-page .buy__banner {margin: 66px 0 100px;}

.about__banner {
	padding: 60px 107px;
	margin: 109px 0 100px;
}

/* Articles related */
.articles__related {
	padding-bottom: 100px;
}
.articles__related-title {
	margin-bottom: 40px;
}
.articles__related-list {
	display: flex;
	margin-left: -14.5px;
	margin-right: -14.5px;
}
.articles__related-col {
	width: 33.3333%;
	padding-left: 14.5px;
	padding-right: 14.5px;
}
.articles__related .articles__item {
	display: block;
	margin-bottom: 0;
}
.articles__related .articles__image,
.articles__related .articles__c {
	width: 100%;
	padding: 0;
}
.articles__related .articles__image {
	height: 319px;
	margin-bottom: 35px;
}
.articles__related .articles__date,
.articles__related .articles__title,
.articles__related .articles__item p {
	padding: 0 31px;
}
.articles__related .articles__more {
	position: relative;
	width: 100%;
	margin-top: 24px;

}
/* Purchase Banner */
.purchase__banner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 57px 85px;
	background: #fff;
	border-radius: 10px;
	margin:  100px 0;
}
.purchase__banner-title {
	font-size: 36px;
	line-height: 50px;
	text-transform: uppercase;
	font-family: 'Ermilov', sans-serif;
	font-weight: bold;
	margin-bottom: 0;
}
.purchase__banner-title span {
	color: #DF1C24;
}


/* Online order */

.order__row {
	display: flex;
	margin-bottom: 30px;
}
.order__row-input:not(:last-child) {
	margin-right: 30px;
}
.order__row-input input {
	width: 386px;
	max-width: 100%;
	height: 80px;
	border: 1px solid rgba(0, 0, 0, 0.05);
	border-radius: 10px;
	padding: 0 26px;
	font-size: 16px;
}
.order__row-input input::-webkit-input-placeholder {color: #333;}
.order__row-input input::-moz-placeholder {color: #333;}
.order__row-input input:-ms-input-placeholder color: #333;}
.order__row-input input:-moz-placeholder {color: #333;}

.order__button {
	width: 100%;
}
.order__policy {
	font-size: 12px;
	line-height: 20px;
	color: #868686;
	margin-top: 14px;
}

.order__file {
	display: block;
	margin-top: 40px;
	margin-bottom: 40px;
}
.order__file-input {
	position: relative;
}
.order__file-input input {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	z-index: 10;
	opacity: 0;
	cursor: pointer;
}
.order__file-input label {
	display: block;
	font-family: 'Ermilov', sans-serif;
	font-size: 14px;
	padding: 27px 0;
	width: 100%;
	text-align: center;
	margin: 0;
	background: #3A95AA;
	border-radius: 10px;
	text-transform: uppercase;
	color: #fff;
}

.fileresult {
	margin-top: 20px;
}
.fileresult__item {
	display: flex;
	margin-bottom: 22px;
}
.fileresult__item:last-child {margin-bottom: 0;}
.fileresult__image {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.fileresult__body {
	padding-left: 10px;
	width: calc(100% - 50px);
}
.fileresult__info {
	display: flex;
	align-items: center;
	position: relative;
}
.fileresult__name {
	font-size: 14px;
	line-height: 26px;
}
.fileresult__size {
	color: #3A95AA;
	font-weight: bold;
	font-family: 'Ermilov', sans-serif;
	letter-spacing: 0.01em;
	text-transform: uppercase;
	margin-left: 16px;
}
.fileresult__close {
	width: 21px;
	height: 21px;
	background: #DF1C24;
	border-radius: 5px;
	position: absolute;
	right: 0;
	top: 0;
	cursor: pointer;
	transition: all .3s;
}
.fileresult__close:hover {
	background: #f81b24;
}
.fileresult__close img {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}
.fileresult__progress {
	background: #ECECEC;
	width: 100%;
	height: 15px;
	margin-top: 6px;
	font-size: 14px;
	line-height: 16px;
	font-weight: bold;
	text-align: right;
	color: #B9B9B9;
}
/* Contacts */
.contacts {
	padding-bottom: 100px;
}
.contacts__address h3 {
	padding: 20px 0 35px;
}
.contacts__address p {
	padding-bottom: 40px;
}
.contacts__address p em {
	font-style: normal;
	color: #999999;
}
.contacts__message h3 {
	padding: 30px 0 29px;
}
.contacts__message-content {
	display: flex;
	align-items: center;
}
.contacts__message-content .phone {
	margin-right: 1px;
	padding-bottom: 0;
}
.contacts__message-email {
	margin-top: 35px;
}
.contacts__message-email a {
	color: #3A95AA;
}
.contacts__map {
	min-height: 420px;
	margin-bottom: 36px;
}
.contacts__message p {
	padding-bottom: 33px;
}

/* 404 page */
.error__image {
	margin-bottom: 55px;
	background-color: #FFF;
}
.error__page {
	padding-bottom: 100px;
}
.error__page p {
	padding-bottom: 25px;
}
.error__page p + ul {
	margin: 14px 0 0;
}
.error__page .content__more {
    margin-top: 25px;
    padding: 33px 0px;
}

.error-page .services {padding-top: 210px;}
.error-page .services__title {line-height: 46px;}

.request__pages .request__title {padding-bottom: 31px;}
.error-page .request__container {padding-top: 93px;}
.request__pages  .request__form {padding-right: 11px; margin-top: -8px;}
.request__pages .form__input {margin-bottom: 17px;}
.request__pages .request__container {padding-top: 86px;}

/* Geo page */
.geo__head {
	padding: 215px 0 88px;
	display: flex;
}
.geo__head-title {
	font-family: 'Ermilov', sans-serif;
	font-weight: bold;
	color: #06385E;
	letter-spacing: -0.01em;
	font-size: 36px;
	line-height: 48px;
	margin: 0 0 34px;
	text-transform: uppercase;
}
.geo__head-title span {color: #DF1C24;}
.geo__head-left {max-width: 515px;}
.geo__head-right {
    max-width: calc(100% - 515px);
    padding-left: 25px;
    margin-top: -5px;
}
.geo__head .form input,
.geo__head .form button {
	width: 300px;
	max-width: 100%;
}
.geo__head .form input {
	border: 1px solid #C1C1C1;
	height: 65px;
	margin-bottom: 15px;
	border-radius: 5px;
}
.geo__head .form__text {
	text-align: left;
	font-size: 16px;
	line-height: 26px;
	padding-top: 14px;
	color: #333;
}


.geo__social {
	padding-bottom: 82px;
}
.geo__social-list {
	display: flex;
	padding-left: 0;
	padding-right: 11px;
}
.geo__social-list .social__icon:not(:last-child) {margin-right: 20px;}
.geo__social p {padding-bottom: 22px;}
.geo__social-title {padding-bottom: 22px;}
.geo__social .sidebar__socials-row {margin-bottom: 0;}

.geo__social-title__inline {
	display: inline-block;
	vertical-align: middle;
	margin-left: 11px;
}
.geo__social-list .social__icon {
	padding-left: 44px;
	background-position: left 18px center;
}
.geo__social-list .social__icon_viber {
    background-position: left 30px center;
    padding-left: 62px;
}

.geo__text {
	padding-bottom: 100px;
}
.geo__text-title {
	margin-bottom: 27px;
}
.geo__text-title span {
	color: #DF1C24;
}
.geo__text-more {
	display: flex;
	align-items: center;
	color: #3A95AA;
	font-weight: bold;
	font-family: 'Ermilov', sans-serif;
	font-size: 12px;
	line-height: 12px;
	text-transform: uppercase;
	margin-top: 2px;
}
.geo__text-more svg:not(:last-child) {
	margin-right: 10px;
}
.geo__text-more svg:not(:first-child) {
	margin-left: 10px; 
}

.geo__lastcar {
	padding: 0 0 100px;
	background: none;
	position: relative;
}
.geo__lastcart-title {
	margin-bottom: 30px;
}
.geo__lastcar .lastcar__photo {
	width: 60.14%;
	margin-right: 50px;
}
.geo__lastcar .lastcar__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.geo__lastcar .lastcar__description {
	padding-right: 0;
}
.geo__lastcar_arrow {
	display: flex;
	margin-top: 20px;
	position: absolute;
	bottom: 16%;
    left: 67%;
}
.geo__lastcar_arrow .slick-arrow {
	position: relative !important;
	bottom: 0 !important;
	left: 0 !important;
	box-shadow: 10px 0px 40px #EAEEF1;
	background: #fff;
	margin-right: 20px;
	cursor: pointer;
	transition: all .3s;
}
.geo__lastcar_arrow .slick-arrow.prev {
	background: #ffffff url(../img/arrow-prev.svg) center no-repeat;
}
.geo__lastcar_arrow .slick-arrow.next {
	background: #ffffff url(../img/arrow-next.svg) center no-repeat;
}
.geo__lastcar_arrow .slick-arrow:hover.prev {
	background: #3A95AA url(../img/arrow-prev_white.svg) center no-repeat;
}
.geo__lastcar_arrow .slick-arrow:hover.next {
	background: #3A95AA url(../img/arrow-next_white.svg) center no-repeat;
}

.content__page .service__dop--info .dop__list ul li {
    background: #fff;
}

.content__page .service__dop--info .dop__list ul li:hover {
    background: #fff;
}

.content__page .service__dop--info .dop__list ul li span{
    color: #000;
    padding: 15px;
    display: block;
    width: 100%;  
}


.geo__mark-title {
	margin-bottom: 40px;
}
.geo__mark-list {

}
.geo__request .request__container {
    padding-top: 0px;
    margin-top: -4px;
    left: 0px;
    padding-bottom: 0px;
}
.geo__calculator {
	margin-bottom: 0;
	padding-bottom: 100px;
}

.geo__contacts .contacts__container {
	padding-top: 92px;
	padding-bottom: 0;
}
.geo-pages .request__pages .request__container {padding-top: 92px;}

.geo__lastcar .slick-arrow {
	position: absolute;
	bottom: 19.5%;
}
.geo__lastcar .slick-prev {
	left: 66.5%;
}
.geo__lastcar .slick-next {
	left: 79.5%;
}

.geo-mark .geo__head {padding: 217px 0 85px; position: relative; z-index: 10;}
.geo-mark .geo__head-title {
    margin-bottom: 36px;
}
.geo-mark__right {
	max-width: 100%;
    padding-left: 0px;
    margin-top: 0px;
    position: absolute;
    right: -41px;
    top: 223px;
    width: 701px;
    z-index: -1;
}
.geo-mark__img {
	width: 100%;
	height: 370px;
	position: relative;
	z-index: 10;
}
.geo-mark__img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}
.geo-mark__img_2 {
	margin-top: -107px;
	z-index: 5;
}

.geo-result .geo__head {padding: 210px 0 80px;}
.geo-model .geo__head-right {
    max-width: calc(100% - 515px);
    padding-left: 29px;
    margin-top: 7px;
}
.geo-mark .services__before_list {
	padding-top: 30px;
}
.geo-mark .services__content-list ul:not(:last-child) {
	margin-right: 58px;
}
.geo-mark .list__bmw {
	margin-bottom: 15px;
}

.geo__list {
	padding-bottom: 50px;
}
.geo__list .list__highway ul li:nth-child(5) ~ li {display: none;}
.geo__list h3 {
	font-family: 'Ermilov', sans-serif;
	font-weight: bold;
	font-size: 24px;
	line-height: 26px;
	padding: 10px 0 45px;
	text-transform: uppercase;
}
.geo__list .services__content-list {
	margin-bottom: 0;
}
.geo__list-more {
	margin-top: 25px;
}
.geo__list .list__districts {margin-bottom: 23px;}

.geo__list .list__district ul li:nth-child(6) ~ li,
.geo__list .list__metro ul li:nth-child(6) ~ li,
.geo__list .list__city ul li:nth-child(5) ~ li,
.geo__list .list__area ul li:nth-child(5) ~ li {display: none;}

.geo__list .list__metro ul:first-child {margin-right: 92px;}
.geo__list .list__metro ul:nth-child(2) {margin-right: 60px;}

.geo__list .list__city ul:first-child {margin-right: 117px;}
.geo__list .list__city ul:nth-child(2) {margin-right: 50px;}

.geo__list .list__area ul:first-child {margin-right: 130px;}
.geo__list .list__area ul:nth-child(2) {margin-right: 84px;}
.geo__list:last-child {padding-bottom: 25px;}


.geo-result .geo__social {padding-bottom: 90px;}
.geo-result .geo__text {padding-bottom: 113px;}

.geo-pages .geo__head-title {
	margin: 0 0 24px 3px;
}

.geo-page .request_fullwidth .request__form {padding-right: 18px;}
.geo-page .request_fullwidth .form__input {margin-bottom: 15px;}
.geo-page .calculator__container {padding-top: 0;}
.geo__calculator {padding-bottom: 85px;}

.geo-mark .buy__banner {margin: 66px 0 100px;}

.geo__lastcar .lastcar__text {
	height: 158px;
	overflow: hidden;
}

/* Responsive */

/* iPad Pro, Laptops */

@media screen and (max-width:1279px) {
	.container {max-width: 1024px;}

	.main__image {right: -245px;}
	.main__advantages {justify-content: space-between;}
	.main__advantages-item:nth-child(1),
	.main__advantages-item:nth-child(2),
	.main__advantages-item:nth-child(3),
	.main__advantages-item:nth-child(4),
	.main__advantages-item:nth-child(5),
	.main__advantages-item:nth-child(6) {width: 16.6%;}
	.main__advantages-item:nth-child(6) {margin-right: 0;}

	.messengers__photo {padding-right: 50px;}
	.messengers__title .messengers__social {display: none;}

	.why__quickly, .why__notquickly {width: 50%;}
	.why__quickly {padding-right: 50px;}

	.calculator__content {width: 40%;}
	.calculator__title {position: absolute;}
	.calculator__text {padding-top: 90px;}
	.calculator__car {background-size: contain; align-items: flex-end;}
	.calculator__car-section {height: 85%;}
	.form__chekbox_label1,
	.form__chekbox_label6 {width: 17%;}
	.form__chekbox_label2,
	.form__chekbox_label7 {width: 13%;}
	#car-year .form__select-selected {max-width: 170px}

	.request__form {padding-right: 0;}
	.request_1 .request__container,
	.request_2 .request__container,
	.estimate__container {padding-bottom: 100px;}
	.request_2 .request__title span {display: inline;}

	.buying {padding-top: 0;}
	.buying__container {padding-left: 30px; padding-right: 30px;}
	.buying__text {max-width: 890px; margin: 0 auto;}

	.accordion__content {min-width: 685px;}
	.compare__other .title, .compare__we .title {padding-bottom: 30px;}
	.compare__other {padding: 40px 30px; width: 305px;}
	.accordion__main-text {width: 360px;}
	.compare__we {padding: 40px 30px 20px 25px;}
	.compare .list__item {padding-bottom: 25px; line-height: 22px;}
	.accordion__item:nth-child(1) .compare__other .title {margin: 0 -13px;}

	.steps__container {padding-bottom: 150px;}
	.steps__item {padding-right: 0;}
	.steps__item_1 .steps__arrow {top: 30px; width: 70px;}
	.steps__item_2 .steps__arrow {top: -75px; left: 145px; width: 90px;}
	.steps__item_3 .steps__arrow {top: 70px; left: 145px; width: 45px;}
	.steps__item_4 .steps__arrow {left: 135px; width: 85px;}
	.steps__item_4 .steps__image {left: -25px;}
	.steps__item_5 .steps__image {left: -15px;}

	.lastcar__photo {margin-right: 30px;}
	.lastcar__description {padding-right: 30px;}

	.statistic__item {padding-right: 4%;}

	.footer__menu {padding-right: 30px;}

	.purchases__item, .purchases__item-hover {
		height: 100px;
		padding: 10px;
	}
	.purchases__item img {
		max-width: 80%;
	}

	.services__content {
		/*padding-right: 30px;*/
	}
	.services__item-title br {
		display: none;
	}
	.sidebar__socials-phone {
		font-size: 18px;
	}
	.sidebar__block.button {
		padding: 0;
		text-align: center;
	}

	.why__item-text br {
		display: none;
	}

	.services__content img {max-width: 100%; height: auto;}
	.services__item-image img {
		height: 100%;
	}
	.video__bg img {
	    height: 100%;
	}


	.articles__related {padding: 0 0 50px;}
	.articles__related-list {flex-direction: column;}
	.articles__related-col {width: 100%;}
	.articles__related .articles__item {display: flex; margin-bottom: 30px;}
	.articles__related .articles__image {margin-bottom: 0;width: 38.75%;}
	.articles__related .articles__c {width: calc(100% - 38.75%); padding: 35px 40px;}
	.articles__related .articles__date, .articles__related .articles__title, .articles__related .articles__item p {padding: 0;}
	.articles__related .articles__more {
		margin-top: 0;
		position: absolute;
		width: calc(100% - 38.75%);
	}

	.geo__social-list .social__icon {font-size: 11px;}
	.geo-mark .services__content-list ul:not(:last-child) {margin-right: 45px;}
	.geo-mark__right {
	    right: -270px;
	}

	.services__item-title {
		padding: 0 20px;
		font-size: 14px;
    	line-height: 24px;
	}
	.menu__container {padding: 0 30px;}

	.menu ul li a {
	    font-size: 14px;
	    padding: 20px 10px;
	}
	.sidebar__socials {
	    padding: 30px 30px 30px 30px;
	}
	.contacts__container {
	    padding-top: 30px;
	}
	.lastcar__container, .estimate__container, .purchases__container, .main-reviews__container {
	    padding-right: 30px;
	}
	.estimate__textarea {
	    width: calc(100% - 320px);
	}
	.estimate__form-right {
	    width: 300px;
	}

	.main-reviews__slick .reviews__item {
	    padding: 50px 35px 35px;
	}
	.main-reviews__slick .reviews__item p {
	    padding-bottom: 30px;
	    min-height: 240px;
	    font-size: 16px;
	}
	.request_1 .request__container {
	    left: 0;
	}
	.request_footer .request__form {
	    padding-right: 0;
	}
	.footer__contacts {
	    margin-right: 0;
	}
	.footer__menu {
	    max-width: 550px;
	    top: 0px;
    	left: 0px;
	}

}


/* iPad */

@media screen and (max-width:1023px) {
	.container {max-width: 768px;}

	.header__social {display: none;}
	.header__logo .logo__slogan {width: 110px; line-height: 16px;}

	.main__content {padding-top: 40px;}
	.main__image {right: -295px;}
	.main__advantages-text span {display: inline;}
	.main__advantages-item:nth-child(1),
	.main__advantages-item:nth-child(2),
	.main__advantages-item:nth-child(3),
	.main__advantages-item:nth-child(4),
	.main__advantages-item:nth-child(5),
	.main__advantages-item:nth-child(6) {width: 16.6%; margin-right: 3%;}
	.main__advantages-item:nth-child(6) {margin-right: 0;}

	.messengers__container {flex-direction: column-reverse;}
	.messengers__nav {flex-direction: column-reverse; align-items: start;}
	.messengers__nav-text {padding: 0 0 30px 0; width: auto;}
	.messengers__text,
	.messengers__nav {padding-left: 60.6%;}
	.messengers__social {padding-left: 62%;}
	.messengers__text {padding-top: 30px; padding-bottom: 20px;}
	.messengers__text p {display: inline;}
	.messengers__photo {margin-top: -550px;}

	.why__quickly {width: 49%; padding-right: 1%;}
	.why__notquickly {width: 49%; padding-left: 1%;}

	.calculator__container {padding-bottom: 20px;}
	.calculator__title {position: static;}
	.calculator__text {padding-top: 0;}
	.calculator__content {width: 100%; padding-right: 0;}
	.calculator__car {width: 95%; margin-top: -50px;}
	.calculator__car-section {height: 100%;}
	.form__chekbox_label1,
	.form__chekbox_label2,
	.form__chekbox_label3,
	.form__chekbox_label4,
	.form__chekbox_label5,
	.form__chekbox_label6,
	.form__chekbox_label7,
	.form__chekbox_label8,
	.form__chekbox_label9,
	.form__chekbox_label10 {width: 50%;}
	.form__select-selected {line-height: 18px;}
	#car-year .form__select-selected {max-width: 90px;}

	.request__container {display: block; text-align: center;}
	.request__content {padding-right: 0;}
	.request_footer .request__title {max-width: 100%;}
	.request_2 .request__title span {display: block;}
	.request__text, .request_fullwidth .request__text {max-width: 550px; margin: 0 auto; padding-bottom: 30px;}
	.request_1 .request__text {max-width: 520px;}
	.request__form .form {max-width: 100%; display: flex; flex-wrap: wrap; justify-content: center;}
	.request__form .form__input {width: 300px; margin-right: 10px;}
	.request__form .form__button {margin-left: 10px;}
	.request__form .form__text {width: 100%;}

	.buying__container {padding-bottom: 55px;}
	.buying__list {flex-wrap: wrap;}
	.buying__item {width: 48%; margin-bottom: 25px;}

	.accordion-wrapper, .accordion {display: block;}
	.accordion__main-text {width: 100%;}
	.compare__we {width: 100%; min-width: auto; padding: 40px 30px;}
	.accordion__item {display: block; width: 100%; height: 100px; min-height: auto;}
	.accordion__tab {width: 100%; height: 100px; min-height: auto; border-bottom: 1px solid #f7f8fa; display: flex; align-items: center;}
	.accordion__item_active {height: auto; min-height: auto; border-bottom: 1px solid #f7f8fa;}
	.accordion__item_active .accordion__tab {left: 0; top: -100px;}
	.accordion__title, .accordion__info {position: static; transform: none; padding: 0 30px; width: 100%;}
	.accordion__info {width: 300px;}
	.compare__other {width: 100%;}

	.steps__container {padding-bottom: 50px;}
	.steps__content {height: auto; flex-wrap: wrap; justify-content: space-evenly;}
	.steps__item {width: 100%; max-width: 570px; display: flex; align-items: center;}
	.steps__icon {width: 168px; margin-right: 30px; flex-shrink: 0;}
	.steps__item_1 .steps__info {margin-top: -15px;}
	.steps__item_bottom {padding-top: 0;}
	.steps__arrow {display: none;}

	.lastcar__item {flex-wrap: wrap; justify-content: space-between;}
	.lastcar__photo {width: 50%;}
	.lastcar__description {width: 45%; padding-right: 0;}
	.lastcar__price {width: 100%; padding-top: 30px; display: flex; justify-content: space-between;}
	.lastcar__list {padding-right: 100px;}
	.lastcar__list-item {width: 185px; display: flex; justify-content: center;}
	.lastcar__list-photo {margin: 0 12px;}
	.lastcar__list-title {display: none;}

	.statistic__value {font-size: 18px;}
	.statistic__value b {font-size: 44px;}

	.contacts__social {display: block; margin: 0 auto; width: 280px; padding: 0;}
	.contacts__social .social__icon {margin: 0 0 15px;}

	.footer__container {flex-wrap: wrap;}
	.footer__menu {order: 1; padding-bottom: 50px; width: 100%; max-width: 100%; padding-right: 0;}
	.footer__logo {order: 2;}
	.footer__contacts {order: 3;}
	.footer__menu-column {width: 200px;}
	.footer__menu-column:nth-child(2) {padding-left: 30px;}
	.footer__menu-column:nth-child(3) {padding-right: 85px;}

	.popup__close {right: 0; border-radius: 0 10px 0 10px; width: 60px; height: 60px; padding: 18px;}

	.up {right: -100%;}

	.menu {
        display: block;
        position: fixed !important;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        left: -100%;
        padding: 120px 0px 0px;
        text-align: left;
        overflow-x: auto;
        z-index: 40;
        transition: all 0.3s ease;
	}
    .menu.active {
        left: 0;
    }
    .menu__container {
	    padding: 0 30px;
	    height: calc(100vh - 274px);
	}
	.menu ul li.menu-item-has-children ul {
	    display: none;
	    height: auto;
	    opacity: 1;
	    position: relative;
	    width: 100%;
	    transition: all 0s;
	}
	.menu .header__social {
	    display: flex;
	    width: 100%;
	    padding: 0px;
	    justify-content: center;
	}
	.menu .header__social .social__icon_whatsapp {
	    margin-left: 0;
	}
	.menu .header__button {
		display: block;
	}
    .menu ul {
	    flex-wrap: wrap;
	}
	.menu ul li {
	    width: 100%;
	}
	.menu ul li a {
	    display: block;
		font-size: 16px;
		padding: 9px 0px;
		text-align: center;
	}
	.header__first {
		display: flex;
		align-items: center;
	}
	.header__open {
		display: block;
		margin-left: 0px;
		margin-right: 20px;
	}
	.header__open span {
		display: block;
		width: 36px;
		height: 4px;
		background: #333333;
		margin-bottom: 6px;
	}
	.header__open span:last-child {
		margin-bottom: 0;
	}
	.header__menu ul {
		flex-direction: column;
	}
	.header__menu ul li a {
		padding: 15px 18.5px;
	}
	.menu__bottom {
	    display: flex;
	    justify-content: center;
	    flex-wrap: wrap;
	    background-color: #FFF;
	    padding-top: 13px;
	    padding-bottom: 24px;
	}
	.menu__button {
		margin-top: 17px;
	}
	.purchases__col {
		width: 16.6667%;
	}

	.main {
	    padding-top: 118px;
	}

	.services {
		padding-top: 125px;
	}
	.breadcrumb {
		margin-bottom: 40px;
	}
	.services__content {
		width: 100%;
		padding-right: 0;
	}
	.services__sidebar {
		display: none;
	}
	.buy__banner {
		padding: 60px;
	}
	.buy__banner-title br {
		display: none;
	}
	.about__banner {
	    margin: 30px 0 80px;
	}

	.main-reviews__slick .reviews__item p {
	    min-height: auto;
	}

	.fileresult__name {
	    line-height: 16px;
	}
	.fileresult__info {
	    padding-right: 25px;
	}
	.fileresult__close {
	    top: 5px;
	}
	.estimate__container {
	    padding-bottom: 60px;
	}

	.articles__pag {margin-bottom: 40px;}

	.purchase__banner {flex-direction: column; text-align: center; padding: 60px; margin: 50px 0;}
	.purchase__banner-title {margin-bottom: 20px;}
	.purchase__banner-title br {display: none;}
	.articles-page .purchase__banner {
	    margin: 50px 0 90px;
	}

	.reviews__content {margin-bottom: 50px;}

	.order__row-input input {width: 100%;}
	.order__row-input {width: 100%;}
	.order__row-input:not(:last-child) {margin-right: 15px;}

	.services-metro .services__content {padding-right: 0;}

	.brand__col {width: 16.6667%;}
	.brand__item, .brand__item-hover {
	    height: 100px;
	    padding: 10px;
	}

	.content__page-reviews {padding-bottom: 50px;}

	.geo__head, .geo-mark .geo__head {padding-top: 158px; padding-bottom: 80px;}
	.geo__social, .geo__text {padding-bottom: 80px;}

	.geo__lastcar .lastcar__photo {width: 100%; margin-right: 0; margin-bottom: 20px;}
	.geo__lastcar .lastcar__description {width: 100%;}

	.geo__social-list .social__icon_viber {padding-left: 44px; background-position: left 16px center;}

	.footer__page .footer__contacts {padding-top: 0;}
	.footer__page .footer__menu {padding-top: 0;}
	.footer__page .footer__logo .logo__slogan {padding-bottom: 0;} 

	.geo__head-right {
	    padding-left: 0px;
	    margin-top: 0px;
	    position: absolute;
	    top: 165px;
	    right: -295px;
	    z-index: -1;
	    max-width: 942px;
	}
	.geo-pages .compare__container {
		padding-top: 0;
	}
	.geo__lastcar_arrow {
		margin-top: 0;
	    bottom: 25px;
	    left: 0;
	}
	.geo__mark {
		padding-top: 60px;
	}
	.geo__mark-title {
	    margin-bottom: 20px;
	}
	.error-page .services {
	    padding-top: 148px;
	}
	.reviews__content {
	    margin-bottom: 0px;
	}
	.reviews-page .reviews__item:last-child {
	    margin-bottom: 0px;
	}

}

/* Phones */

/* @media screen and (max-width:850px) and (max-height:850px) - если нужно, чтобы выглядело одинаково на всех телефонах (в том числе в горизонтальной ориентации), включая длинные телефоны вроде iPhone X и Redmi 8 Pro - он еще больше */
/* @media screen and (max-width:767px) - если нужно, чтобы в горизонтальной ориентации на больших телефонах выглядело как на планшете */

@media screen and (max-width:767px) {


	.messengers {
	    padding-top: 0;
		padding-bottom: 0;
	}
	.container {max-width: 414px; padding-left: 20px; padding-right: 20px;}
	.request_fullwidth .request__container {max-width: 414px;}
	.header__container {padding-left: 20px; padding-right: 20px; height: 73px;}

	.header, .header_fixed {position: absolute; background: none;}


	.header__logo .logo__name {font-size: 18px; line-height: 20px; width: 90px;}
	.header__logo .logo__slogan {display: none;}
	.header__phone .phone__number {font-size: 14px; line-height: 16px; padding-bottom: 0;}
	.header__phone .phone__text {font-size: 12px; margin-top: 2px;}
	.header__button {width: 40px; height: 40px; margin-left: 15px; font-size: 0; background: #4DB768 url(../img/phone-icon.svg) center no-repeat; background-size: 50%; flex-shrink: 0;}
	.header__button:after {width: 100px;}
    .header_mobile {
    	background-color: #FFF ;
    }

    .menu {
        padding: 90px 0px 0px;
	}
	.menu__container {
	    height: calc(100vh - 244px);
	}

	.main {padding-top: 70px;}
	.main__title {font-size: 32px; line-height: 44px; padding-bottom: 27px;}
	.main__title br, .main__desc br {display: none;}
	.main__image {position: relative; left: 0; right: 0; top: -35px; margin-left: -150px; margin-right: -50px;}
	.main__title span { display: block;}
	.main__image img {width: 100%;}

	.main__advantages {flex-wrap: wrap; margin-top: 0;}
	.main__advantages-item:nth-child(1),
	.main__advantages-item:nth-child(2),
	.main__advantages-item:nth-child(3),
	.main__advantages-item:nth-child(4),
	.main__advantages-item:nth-child(5),
	.main__advantages-item:nth-child(6) {
		width: 45%;
		margin-right: 0;
		padding-bottom: 30px;
	}

	.title {font-size: 25px; line-height: 35px;}
	.title_small {font-size: 20px; line-height: 26px;}

	.messengers__container {padding-top: 30px;}
	.messengers__photo {margin-top: 30px;}
	.messengers__content {text-align: center;}
	.messengers__text,
	.messengers__social,
	.messengers__nav {padding-left: 0;}
	.messengers__social {left: 0;}
	.messengers__text {padding-top: 0;}
	.messengers__social .social__icon {margin: 0 0 10px; display: inline-flex;}
	.messengers__photo {padding: 0;}
	.messengers__iphone {width: 100%; max-width: 374px; height: auto; border: 20px solid #fff; border-bottom: none;}
	.messengers__iphone img {width: 100%; border-radius: 41px 41px 0 0;}
	.messengers__nav {display: block;}
	.messengers__arrows {justify-content: space-between;}
	.messengers__nav-text {padding: 0 70px; height: 88px; margin-top: -73px; display: flex; align-items: center;}
	.messengers__arrow, .slick-arrow {width: 60px; height: 60px;}

	.why {margin-bottom: 0;}
	.why__container {display: block; padding-top: 50px; padding-bottom: 50px;}
	.why__quickly, .why__notquickly {width: 100%;}
	.why__quickly {padding-bottom: 30px;}
	.why__subtitle {padding: 30px 0 0;}

	.calculator__title {padding-bottom: 25px;}
	.calculator__car {height: 240px;}
	.calculator__car-section {display: none;}
	.form__chekbox_label1,
	.form__chekbox_label2,
	.form__chekbox_label3,
	.form__chekbox_label4,
	.form__chekbox_label5,
	.form__chekbox_label6,
	.form__chekbox_label7,
	.form__chekbox_label8,
	.form__chekbox_label9,
	.form__chekbox_label10 {height: 25px;}
	.calculator__select {/*display: block;*/ display: none;}
	.form__select {width: 100%; margin-bottom: 20px;}
	#car-year .form__select-selected {max-width: 100%;}
	.calculator__price {padding-top: 10px;}
	.calculator__price span {display: block;}
	.calculator__price img {top: 6px; width: 10px;}

	.request__form .form__input {margin-right: 0;}
	.request__form .form__button {margin-left: 0;}
	.request__title img {top: 10px; width: 12px;}
	.request_1 .request__container,
	.request_2 .request__container,
	.estimate__container {padding-bottom: 70px;}

	.buying {padding-bottom: 0px;}
	.buying__container {padding-top: 70px; padding-bottom: 10px;}
	.buying__list {display: block;}
	.buying__item {width: 100%; padding-top: 30px; padding-bottom: 30px; font-size: 16px; line-height: 24px; margin-bottom: 10px;}
	.buying__item span {display: inline-block; padding-right: 40px;}

	.accordion__title {padding-right: 70px;}
	.accordion__info {
		font-size: 0;
		width: 18px;
		height: 18px;
		padding: 0;
		border: 2px solid #c7c7c7;
		border-top: none;
		border-left: none;
		position: absolute;
		top: 35%;
		right: 30px;
		bottom: unset;
		left: unset;
		transform: rotate(45deg);
	}
	.accordion__item_active .accordion__info {border: 2px solid #fff; border-top: none; border-left: none;}
	.accordion__content {display: block; min-width: 100%; width: 100%;}
	.compare__other, .compare__we {width: 100%;}
	.compare__other {padding: 40px 30px 20px;}
	.accordion__item:last-child .accordion__content .compare__we {border-radius: 0 0 10px 10px;}

	.steps {margin-bottom: 25px;}
	.steps__container {padding-top: 70px;}
	.steps__item {margin-bottom: 20px; min-height: 165px;}
	.steps__icon {width: 135px; height: 150px;}
	.steps__image {width: 100%;}
	.steps__item_4 .steps__image {left: 0;}
	.steps__item_5 .steps__image {left: 0; top: 27px;}

	.lastcar__title {padding-bottom: 40px;}
	.lastcar__item {display: block; margin-right: 3px;}
	.lastcar__photo {width: 100%; height: 240px; margin-bottom: 20px;}
	.lastcar__description {width: 100%;}
	.lastcar__price {display: block;}
	.lastcar__price-item {width: 100%; margin-bottom: 10px; height: auto; text-align: center;}
	.lastcar__price-info {padding-bottom: 0px;}
	.lastcar__list-item {width: 155px;}
	.lastcar__list {padding-right: 80px; padding-left: 80px;}

	.estimate__form-right {padding-top: 10px;}
	.estimate__textarea {order: 1;}
	.estimate__form-right {order: 3;}
	.estimate__imageupload {order: 2;}
	.estimate__form-right,
	.estimate__form .form__input,
	.estimate__form .form__button {width: 100%;}
	.estimate__form .form__text {padding-bottom: 20px;}
	.estimate__textarea {height: 300px; margin-right: 0;}
	.estimate__form .button_pc {display: none;}
	.estimate__form .button_mobile {display: block;}
	.estimate__imageupload .imageuploadify-container {margin: 8px!important;}
	.estimate__container { padding-top: 50px; }
	.estimate__coll { width: 100%; margin-bottom: 15px; }

	.statistic__content {flex-wrap: wrap;}
	.statistic__item {width: 50%; margin-bottom: 50px;}
	.statistic__item:last-child {margin-bottom: 0;}
	.statistic__content {padding-top: 50px;}
	.statistic__value {padding-bottom: 15px;}

	.questions__content {display: block;}
	.questions__column {width: 100%;}
	.questions__subtitle {padding: 25px 35px;}
	.questions__text {padding: 35px;}

	.purchases { padding-bottom: 55px; }
	.compare__container { padding-top: 65px; padding-bottom: 40px; }

	.footer__menu {display: block; width: 100%; padding-bottom: 185px;}
	.footer__menu-column {width: 100%;}
	.footer__menu-column:nth-child(2) {padding-left: 0;}
	.footer__menu-column:nth-child(3) {padding-right: 0;}
	.footer__menu-link {display: block; text-align: center; margin-right: 0;}
	.footer__logo {width: 40%; }
	.footer__logo .logo__name {font-size: 18px; line-height: 20px;}
	.footer__logo .logo__slogan {width: 140px;}
	.footer__contacts {width: 60%;}
	.footer__phone {font-size: 22px; text-align: right; padding-bottom: 20px;}
	.footer__social {justify-content: flex-end;}
	.footer__social .social__icon {flex-shrink: 0; display: inline-block;}
	.footer__logo {order: 1}
	.footer__contacts {order: 2}
	.footer__menu {order: 3}
	.footer__design {position: absolute; bottom: 0; right: 50%; transform: translateX(50%);}
	.footer__privacy {position: absolute; bottom: 5px; left: 0; width: 100%; text-align: center; padding-bottom: 130px;}

	.popup__form {display: block;}
	.popup .form__input {width: 100%;}
	.popup__box {padding: 50px 30px 150px; max-width: 450px;}
	.popup__text {padding-bottom: 30px;}
	.popup__close {width: 50px; height: 50px; padding: 15px;}
	
	.purchases__col {
		width: 33.3333%;
	}
	.purchases__title {
		margin-bottom: 35px;
	}

	.main-reviews {
	    padding-top: 65px;
	    padding-bottom: 40px;
	}
	.main-reviews__top {
	    justify-content: center;
	    flex-wrap: wrap;
	    margin-bottom: 45px;
	}
	.main-reviews__title {
		width: 100%;
		margin-bottom: 25px;
	}
	.main-reviews__slick .reviews__item {
	    padding: 50px 20px 35px;
	}

	.services {padding-top: 80px;}
	.breadcrumb { margin-bottom: 30px;}
	.breadcrumb ul li:after {
	    width: 12px;
	    height: 12px;
	    background-size: 10px 8px;
	    margin: 0px 8px;
	}

	.services__list-col {width: 100%;}

	.buy__banner {
		background-size: 1180px;
		padding: 30px;
		margin: 30px 0 30px !important;
	}
	.buy__banner-title {
		font-size: 20px;
		line-height: 25px;
	}
	.buy__banner .button {
		width: 100%;
	}
	.reviews-page .buy__banner {
	    margin: 40px 0 80px;
	}

	.services__content-list {flex-wrap: wrap; margin-bottom: 40px; flex-direction: column;}
	.services__content-list ul:not(:last-child) {margin-right: 20px; margin-bottom: 20px;}

	.reviews__item {padding: 40px 30px 20px;}
	.reviews__item-author__image { margin-right: 15px;}
	.reviews__item-author__name { line-height: 20px; font-size: 14px;}
	.reviews__item-author__box { width: calc(100% - 85px); }
	.video__bg img { width: 100%; height: 100%;}
	.reviews__item-author {padding-top: 20px;}

	.content__page h3 {
		font-size: 20px;
		line-height: 26px;
	}
	.services__title {margin-bottom: 30px;}

	.articles__item {flex-direction: column;}
	.articles__image {width: 100%; height: 250px;}
	.articles__c {width: 100%; padding: 25px 20px 0;}
	.articles__date {margin-bottom: 15px;}
	.articles__title {line-height: 24px; margin-bottom: 15px;}
	.articles__more {width: 100%; padding: 16px 0; position: relative; margin-top: 15px;}

	.purchase__banner {padding: 30px;}
	.purchase__banner-title {
		font-size: 20px;
		line-height: 25px;
	}
	.purchase__banner-button {max-width: 100%;}
	.articles-page .purchase__banner {
	    margin: 25px 0 90px;
	}
	.articles-single .lastcar, .articles-page .lastcar, .order-page .lastcar, .lastcar__page {
	    padding-top: 0;
	}
	.faq-page .buy__banner {
	    margin: 50px 0 80px;
	}

	.articles__related .articles__item {flex-direction: column;}
	.articles__related .articles__image {width: 100%;height: 250px;}
	.articles__related .articles__c {
	    width: 100%;
	    padding: 25px 20px 0;
	}
	.articles__related .articles__more {
	    width: 100%;
	    padding: 16px 0;
	    position: relative;
	    margin-top: 15px;
	}

	.contacts__message-content {
		flex-direction: column;
		align-items: flex-start;
	}
	.contacts__message-content .phone {
		margin-right: 0;
		margin-bottom: 10px;
	}
	.contacts__message-content .social__icon:first-child {margin-left: 0;}
	.contacts__message-content .social {padding-left: 0}
	.contacts {padding-bottom: 50px;}

	.reviews__item {padding: 52px 20px 30px;}
	.video {height: 220px;}
	.video__play {width: 80px; height: 80px;}
	.video__play svg {width: 15px;}

	.order__row {flex-direction: column; margin-bottom: 15px;}
	.order__row-input:not(:last-child) {margin-right: 0; margin-bottom: 15px;}
	.order__file-input label {width: 100%; padding: 23px 10px;}

	.services__item {height: auto;}
	.services__item-more {
		position: relative;
		margin-top: 25px;
	}

	.services__title_second {margin-bottom: 40px !important;}
	.services__content-list {margin-bottom: 30px;}

	.content__page h3 {
		padding: 20px 0 30px;
	}

	.brand__col {width: 33.3333%;}

	.services__before_list {
		font-size: 18px;
		line-height: 22px;
	}

	.content__page p br {display: none;}

	.services__title {font-size: 22px !important;}

	.articles__pag ul {
		flex-wrap: wrap;
	}
	.articles__pag ul li {
		margin-bottom: 10px;
	}
	.articles__pag ul li a, .articles__pag ul li span {
		width: 35px;
		height: 35px;
		line-height: 35px;
	}
	.articles__pag ul li:not(:last-child) {margin-right: 10px;}

	.error-page .services {padding-top: 100px;}
	.error__page .services__title br {display: none;}
	.error__image {margin-bottom: 30px;}
	.error__page {padding-bottom: 60px;}
	.error-page .services__title {
	    line-height: 28px;
	}

	.geo__head {padding-top: 80px !important; padding-bottom: 60px !important;}
	.geo__head-title {
		font-size: 28px;
		line-height: 36px;
		margin-bottom: 20px !important;
	}
	.geo__head .form input, .geo__head .form button {
		width: 100%;
	}
	.geo__social {
		text-align: center;
	}
	.geo__social-title__inline {
		display: none;
	}
	.geo__social-title br {display: none;}
	.geo__social-list {
		display: block;
		padding-right: 0px;
	}
	.geo__social-title {
	    padding-bottom: 26px;
	}
	.geo__social p {
	    padding-bottom: 27px;
	}
	.geo__social-list .social__icon {
	    font-size: 14px;
	    margin: 0px auto 10px;
	    padding-left: 61px;
	}
	.geo__social-list .social__icon_viber {
	    padding-left: 80px;
	    background-position: left 45px center;
	}
	.geo__social-list .social__icon:not(:last-child) {
	    margin-right: auto;
	}
	.geo__social, .geo__text {padding-bottom: 60px;}
	.geo__lastcar .lastcar__photo {width: 100%; margin-right: 0;}
	.geo__head-title br {display: none;}

	.request_footer .request__container {padding-top: 60px; padding-bottom: 60px;}

	.fileresult__size {margin-top: 20px;}
	.geo__lastcar {padding-bottom: 50px;}

	.request_2 .request__container {padding-top: 50px; padding-bottom: 50px;}
	.geo__calculator {padding-bottom: 50px;}
	.geo__contacts .contacts__container {padding-top: 50px;}

	.breadcrumb {
		margin: 15px 0 45px;
	}
	.breadcrumb__sep {
		margin: 0 10px;
		width: 10px;
		height: 10px;
	}
	.breadcrumb__sep:after {
		width: 9px;
		height: 7px;
	}
	.header__button {
		display: none;
	}
	.header__phone .phone__number {
	    font-size: 15px;
	}
	.geo__head {
	    flex-wrap: wrap;
	}
	.geo__head-right {
	    position: relative;
	    left: 0;
	    right: 0;
	    top: -35px;
	    margin-left: -50px;
	    margin-right: -50px;
	}
	.geo__head-right img {
	    width: 100%;
	    max-height: 640px;
	}
	.geo-mark__img {
	    height: 275px;
	}

	#geo__lastcar {
		padding-bottom: 30px;
	}
	.geo__lastcar_arrow {
	    bottom: 0;
	}
	.purchases__item, .brand__item, .brand__item-hover, .purchases__item-hover {
	    height: 95px;
	    padding: 10px;
	}


}
@media screen and (max-width:375px) {
	.estimate__imageupload .imageuploadify-container {margin: 5px!important;}
}


/* iPhone 5 */
@media screen and (max-width:360px) {
	.header__phone .phone__number {font-size: 15px;}
	.title {font-size: 24px;}
	.title_small {font-size: 20px;}
	.main__title {font-size: 28px; line-height: 38px;}
	.main__button {width: 280px;}
	.messengers__iphone:before {width: 135px; height: 20px; background: #fff url(../img/iphone-camera.svg) top 0px left 50px no-repeat; background-size: 40%;}
	.messengers__iphone {border: 15px solid #fff; border-bottom: none; border-radius: 50px 50px 0 0;}
	.accordion__title {font-size: 16px;}
	.steps__icon {width: 100px;}
	.lastcar__list {padding-right: 70px; padding-left: 70px;}
	.lastcar__photo {height: 200px;}
	.contacts__phone {font-size: 30px;}
	.footer__phone {font-size: 18px; padding-bottom: 5px;}
	.footer__social .social__icon {width: 40px; height: 40px;}
	.reviews__item-author__price, .reviews__item-author__years {
	    font-size: 13px;
	}
	.purchases__col, .brand__col {
	    width: 50%;
	}
	.purchases__item, .brand__item, .brand__item-hover, .purchases__item-hover {
	    height: 100px;
	    padding: 20px;
	}
}


/* Phones Landscape */

@media screen and (max-height:414px) {
	/* .container {max-width: 768px;} */

}

@media screen and (max-width: 320px) {
	.header__button  {display: none;}
}

/************    notice     *************/
.notice {
	position: fixed;
	right: 0;
	left: 0;
	bottom: 0;
	text-align: center;
	z-index: 9999999;
	padding: 27px 0;
	font-size: 22px;
	-webkit-transform: translateY(80px);
	-ms-transform: translateY(80px);
	transform: translateY(80px);
	-webkit-transition: -webkit-transform 0.3s;
	transition: -webkit-transform 0.3s;
	-o-transition: transform 0.3s;
	transition: transform 0.3s;
	transition: transform 0.3s, -webkit-transform 0.3s;
	opacity: 0;
	margin-top: -60px;
}

.notice.active {
	-webkit-transform: translateY(0px);
	-ms-transform: translateY(0px);
	transform: translateY(0px);
	transition: -webkit-transform 0.3s;
	-webkit-transition: -webkit-transform 0.3s;
	-o-transition: transform 0.3s;
	transition: transform 0.3s;
	transition: transform 0.3s, -webkit-transform 0.3s;
	opacity: 1;
}

.notice a {
	color: white;
}

.notice_warning {
	background: #DF1C24;
	color: white;
}

.notice_success {
	background-color: #28a745;
	color: white;
}

.notice_top {
	top: 0;
	bottom: auto;
}

#estimatecar-popup-form .intl-tel-input.allow-dropdown
{
    width: 48%;
}

#estimatecar-popup-form .intl-tel-input.allow-dropdown .form__input
{
    width: 100%;    
}

@media (max-width: 760px) {
	.notice {
		padding: 20px 0;
		font-size: 18px;
	}
}

.intl-tel-input {
    width: 100%;
    margin-bottom: 20px;
}

.intl-tel-input.separate-dial-code .selected-flag {
    background-color: rgb(255  255 255 / 40%) !important;
    border-radius: 10px 0px 0px 10px;
}


/*==========================================site-maps=======================================*/
.site-maps {
    padding-bottom: 90px;
}
.reviews-page .services__title.site-maps__title {
	margin-bottom: 50px;
}
.site-maps__row {
	display: flex;
}
.site-maps__coll {
	width: 32%;
}
.site-maps__coll:nth-child(2) {
	width: 58%;
}
.site-maps__coll:last-child {
	width: 10%;
}
.site-maps__list li + li {
	margin-top: 19.9px;
}
.site-maps__list a {
	display: inline-block;
	font-size: 16px;
	line-height: 26px;
	letter-spacing: 0.01em;
	color: #3A95AA;
	position: relative;
	padding-left: 28px;
	transition: all .3s;
}
.site-maps__list a:hover {
    color: #999;
	transition: all .3s;
}
.site-maps__list a:before {
	content: "";
	position: absolute;
	width: 17px;
	height: 13px;
	background-image: url(../img/site-maps.svg);
	background-repeat: no-repeat;
	background-size: contain;
    top: 7px;
    left: 2px;
	z-index: 10;
}

.text-dop {
    margin-bottom: 50px;    
}

.iti.iti--allow-dropdown {
    margin-bottom: 20px; 
    width: 100%;    
}


.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 .selected-flag {
    width: 100px;
    padding-left: 30px;       
}

.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 .selected-flag {
    width: 110px;
    padding-left: 30px;      
}


.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 .selected-flag {
    width: 115px;
    padding-left: 30px;      
}


.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 .selected-flag {
    width: 95px;
    padding-left: 30px;    
}

.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=tel] {
    padding-left: 105px;
    
}

.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=tel] {
    padding-left: 105px;
 
}

.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=tel] {
    padding-left: 115px;
}

 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=tel] {
    padding-left: 120px;
}


.lastcar__cars  {
    display: none;
}
.lastcar__list  {
    display: none;
}


.slick-initialized.lastcar__cars {
    display: block;    
}

.slick-initialized.lastcar__list {
    display: block;    
}

.ruble-icon {
    display: none;
}


@media (max-width: 1010px) {
    .site-maps__coll:nth-child(2) {
	    width: 53%;
	}
}
@media (max-width: 767px) {
	.site-maps {
	    padding-bottom: 60px;
	}
	.reviews-page .services__title.site-maps__title {
	    margin-bottom: 30px;
	}
    .site-maps__row {
	    flex-wrap: wrap;
	}
	.site-maps__list li + li, .site-maps__coll + .site-maps__coll {
	    margin-top: 15px;
	}
	.site-maps__coll {
		width: 100%;
	}
	.site-maps__coll:nth-child(2) {
		width: 100%;
	}
	.site-maps__coll:last-child {
		width: 100%;
	}
}