html {
	font-family: sans-serif;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

body {
	font-family: 'Open Sans', sans-serif;
	margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
	display: block;
}

audio,
canvas,
progress,
video {
	display: inline-block;
	vertical-align: baseline;
}

audio:not([controls]) {
	display: none;
	height: 0;
}

[hidden],
template {
	display: none;
}

a {
	background-color: transparent;
}

abbr[title] {
	border-bottom: 1px dotted;
}

b,
strong {
	font-weight: bold;
}

dfn {
	font-style: italic;
}

h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

mark {
	background: #ff0;
	color: #000;
}

small {
	font-size: 80%;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

img {
	border: 0;
}

svg:not(:root) {
	overflow: hidden;
	/* background: red; */
}

figure {
	margin: 1em 40px;
}

hr {
	box-sizing: content-box;
	height: 0;
}

pre {
	overflow: auto;
}

code,
kbd,
pre,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
	color: inherit;
	font: inherit;
	margin: 0;
}

button {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}

button[disabled],
html input[disabled] {
	cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

input {
	line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

fieldset {
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
}

legend {
	border: 0;
	padding: 0;
}

textarea {
	overflow: auto;
}

optgroup {
	font-weight: bold;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

td,
th {
	padding: 0;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/

h1, h2, h3, h4, h5, h6 {
	clear: both;
}

p {
	margin-bottom: 1.5em;
}

dfn, cite, em, i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
    font-family: "Poppins";
	font-size: 15px;
	font-size: 0.9375rem;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code, kbd, tt, var {
    font-family: "Poppins";
	font-size: 15px;
	font-size: 0.9375rem;
}

abbr, acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark, ins {
	background: #fff9c0;
	text-decoration: none;
}

big {
	font-size: 125%;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
	box-sizing: border-box;
}

*,
*:before,
*:after {
	/* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
	box-sizing: inherit;
}

body {
	background: #fff;
	/* Fallback for when there is no custom background color defined. */
}

hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul, ol {
	margin: 0 0 1.5em 3em;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: bold;
}

dd {
	margin: 0 1.5em 1.5em;
}

img {
	height: auto;
	/* Make sure images are scaled correctly. */
	max-width: 100%;
	/* Adhere to container width. */
}

figure {
	margin: 1em 0;
	/* Extra wide images within figure tags don't overflow the content area. */
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 1px solid;
	border-color: #ccc #ccc #bbb;
	border-radius: 3px;
	background: #e6e6e6;
	color: rgba(0, 0, 0, 0.8);
	line-height: 1;
	padding: .6em 1em .4em;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: #ccc #bbb #aaa;
}

button:active, button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
	border-color: #aaa #bbb #bbb;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	width: 100%;
	color: #666;
	border: 1px solid #ccc;
	border-radius: 3px;
	padding: 3px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	color: #111;
}

select {
	border: 1px solid #ccc;
}

textarea {
	width: 100%;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
	color: royalblue;
	text-decoration: none;
}

a:visited {
	color: purple;
}

a:hover, a:focus, a:active {
	color: midnightblue;
}

a:focus {
	outline: thin dotted;
}

a:hover, a:active {
	text-decoration: none;
	outline: 0;
}
#wpadminbar{
	display: none;
}



.none{display: none;}
section {
	padding: 40px 0;
	margin-bottom: 20px;
}
.entry-content img {
	margin: 0 0 1.5em 0;
	}
.alignleft, img.alignleft {
	margin-right: 1.5em;
	display: inline;
	float: left;
	}
.alignright, img.alignright {
	margin-left: 1.5em;
	display: inline;
	float: right;
	}
.aligncenter, img.aligncenter {
	margin-right: auto;
	margin-left: auto;
	display: block;
	clear: both;
	}
.alignnone, img.alignnone {
	/* not sure about this one */
	}
.wp-caption {
	margin-bottom: 1.5em;
	text-align: center;
	padding-top: 5px;
	}
.wp-caption img {
	border: 0 none;
	padding: 0;
	margin: 0;
	}
.wp-caption p.wp-caption-text {
	line-height: 1.5;
	font-size: 10px;
	margin: 0;
	}
.wp-smiley {
	margin: 0 !important;
	max-height: 1em;
	}
blockquote.left {
	margin-right: 20px;
	text-align: right;
	margin-left: 0;
	width: 33%;
	float: left;
	}
blockquote.right {
	margin-left: 20px;
	text-align: left;
	margin-right: 0;
	width: 33%;
	float: right;
	}

/*Wordpress editor styles end*/

h2{
	display: block;
	font-size: 40px;
	font-weight: 700;
}
h3{
/*	font-size: 24px;
	font-weight: 500px;
	color: #491ba7;
	margin: 15px 0px 30px 0px;*/
}

ul{
	margin: 0px;
	padding: 0px;
}
li{
	list-style: none;
	color: #626262;
	/*line-height: 36px;*/
}


.bg_black{background: #000;}
.row_bg_gray{background: #f7f7f1;}

.mar-auto{margin: auto;}
.min-h-120 {min-height: 120px;}
.min-h-100 {min-height: 100px;}
.min-h-80{min-height: 80px;}

.border-round{border-radius: 50%;}

.width100 {width:100%;}
.width150 {width:150px;}
.width180 {width:180px;}

.vh100{height: 100vh;}
.vw100{width: 100vw;}

.left{float: left;}
.right{float: right;}
.margin-25px{margin: 25px;}

.pad-left-0{padding-left: 0px !important;}
.pad-right-0{padding-right: 0px !important;}

.text-gray{color: #525963;}
.text-white{color: #fff;}
.text-green{color: #13d8a9;}
.text-upper{text-transform: uppercase;}
.text-center{display: block;}

.text-18{font-size: 18px;}
.text-20{font-size: 20px;}
.text-22{font-size: 22px;}
.text-24{font-size: 24px;}
.text-28{font-size: 28px;}
.text-30{font-size: 30px;}
.text-32{font-size: 32px;}
.text-36{font-size: 36px;}
.text-40{font-size: 40px;}
.text-50{font-size: 50px;}
.text-56{font-size: 56px;}
.text-60{font-size: 60px;}
.text-76{font-size: 76px;}
.text-100{font-size: 100px;}
.text-118{font-size: 118px;}

.text-light{font-weight: 300;}
.text-bold{font-weight: 700;}


.w200{max-width: 200px;}
.w100pr{width: 100%;}

.btn-white-r {
	transition: all 0.2s;
	color: #fff;
	border: 1px solid #fff;
	text-decoration: none;
	text-align: center;
	font-size: 16px;
	line-height: 32px;
    display: inline-block;
    padding: 0px 15px;
}
.btn-white-r:hover{
	background: #fff;
	color: #000;
	transition: all 0.2s;
	text-decoration: none;
}

.btn-gray{
	transition: all 0.2s;
    font-size: 14px;
    padding: 14px 20px;
    color: #fff;
    background-color: #2A2A2A;
}
.btn-gray:hover{
	transition: all 0.2s;
	color: #f7f7f7;
    background-color: #1b1b1b;
}

.bg-black{
	background: #000;
	color: #fff;
}



.btn-center {
	display: block;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}
.mar-0-20{
	margin-left: 20px;
	margin-right: 20px;
}
.mar-20{
	margin-top: 20px;
	margin-bottom: 20px;
}

.pad-left-0{padding-left: 0px;}
.pad-right-0{padding-right: 0px;}

.btn-gray{}
.btn-gray:hover{}


/*START--------------------------------------------------*/

body {
	padding-top: 50px;
}


textarea,
input{
	width: 100% !important;
	border-radius: 0px !important;
	max-width: 100% !important;
    font-weight: normal !important;
    padding: 8px 10px !important;
    font-size: 18px !important;
    font-weight: 300 !important;
}
label{
	padding: 5px !important;
    margin: 0px !important;
}

@media(max-width: 768px){
	
}

/* DOP styles */

.text-green {
	color: #51cc16;
}
.text-blue {
	color: #08ccb8;
}
/* DOP styles */

/* HEADER  */

.header {
	z-index: 10;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: white;
	box-shadow: 0 0 20px 10px #cecece;
}

.header .row {
	overflow: visible;
}


.header__logo {}
.header__logo {
    display: flex;
    align-items: center;
}
.header__logo span span {
	padding-left: 0;
}
.header__logo span {
    line-height: 16px;
    padding-left: 10px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
}
.header__logo img {
	max-height: 50px;
}

.header__phones,
.header__adres {
	text-align: right;
}

.header__phones {}
.header__adres {}

.header .navbar {
	padding: 0;
}

.btn-phone a:hover, 
.btn-adres:hover {
    color: #08ccb8;
}
.header__adres .btn-adres {
	padding-right: 23px;
	background: url(../img/locating.png) no-repeat right center;
	background-size: 21px;
}

.btn-phone, 
.btn-adres {
	/* border: none; */
    /* border-bottom: 1px dashed #08ccb8; */
    background: none;
    color: black;
    font-weight: 300;
    font-size: 14px;
    padding: 5px 16px;
}

@media(max-width: 768px){
	
}
/* HEADER  */

.s-2 {
    padding: 40px 15px;
    background: linear-gradient(to left, #007d6f, #3bb700);
}
.s-2 h3 {
	color: white;

}
.brands {}
.brands [class^="td-icon-"] {
	padding: 20px;
}
.brands [class^="td-icon-"] span {
	display: block;
	color: white;
	padding: 5px 0;
}
.brands [class^="td-icon-"]:before,
.brands [class*=" td-icon-"]:before {
    font-size: 90px;
    color: white;
}



@media (min-width: 992px) {
	.navbar-collapse {
	    justify-content: flex-end;
	}
}



.s-0 {
	padding: 40px 15px;
	background: linear-gradient(to right, #08ccb8, #51cc16);
	margin: 0 0 10px;
}
.s-0 {}
.main-slider {}
.main-slider__block {}
.main-slider__block .row {
	align-items: center;
}
.main-slider__block .row > div {}
.main-slider__block h1.time {
    font-size: 52px;
}

.t-86 {
    font-size: 86px;
}
.main-slider__block h1.time .minuts {
	padding: 0px 30px;
    margin: 10px 0;
    background: #fff;
    font-weight: bold;
    text-shadow: none;
    color: black;
    line-height: 100px;
    display: inline-block;
}
.main-slider__block h1 {
    font-size: 48px;
    font-weight: 900;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);
}

.slick-dots li.slick-active button:before,
.slick-dots li button:before {
    font-size: 18px;
    color: white;
}
.main-slider .slick-dots li.slick-active button:before {}


.navbar-collapse__block {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.header__phones {
	display: flex;
    align-items: center;
}
.header__phones--number {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}
.header__phones--number a {
	color: black;
}
.header__phones--icon {
    width: 50px;
    padding: 5px 5px;
}
.header__phones--icon svg {}
.header__adres svg {
	max-width: 20px;
}
.advantages__icon-block svg {
    fill: white;
    max-height: 70px;
    display: block;
    margin: auto;
}
.advantages__icon-block {
    justify-content: center;
}

section.advantages {
    background:#1fcc84;
    color: white;
    font-size: 24px;
    text-align: center;
}

@media (max-width: 991px) {
	.header .navbar-light .navbar-toggler {
		border: none;
	}
	.header .navbar-collapse .navbar-collapse__block{
        display: flex;
	    flex-direction: column;
	    padding: 15px 0px;
	    justify-content: center;
	    align-items: center;
	    border-top: 1px solid rgb(241, 241, 241);
	}
	.header__phones a {
	    display: inline-block;
		margin-bottom: 10px;
	}
	.header__phones {
		text-align: center;
	    padding-bottom: 10px;
	}
}

.s-3--1 {}
.s-3--1 {
	padding: 40px 0;
	background: url(/wp-content/uploads/slider-3.jpg) no-repeat center center;
	background-size: cover;
}

.btn:focus, .btn:active, button:focus, button:active {
  outline: none !important;
  box-shadow: none !important;
}

#image-gallery .modal-footer{
  display: block;
}

.thumb{
  margin-top: 15px;
  margin-bottom: 15px;
}


.s-5 {
	padding: 40px 0;
	background: url(/wp-content/uploads/slider-4.jpg) no-repeat center center;
	background-size: cover;
}

/* .s-2 h3, */
.s-3--1 h3,
.s-5 {
	margin-bottom: 0;
}
.s-map {
	margin: 0;
	padding: 0;
}
.copiright {
	font-size: 12px;
	padding: 5px 0;
	color: #333;
}
.s-5 h3 {
	padding: 0 0 30px;
	color: white;
	font-size: 36px;
	font-weight: 900;
	text-shadow: 2px 2px 5px rgba(0, 0, 0);
}
.footer {
	background: url(../img/dust_scratches.png);
}

.reviews .slick-slide {
	padding: 20px
}

.review__block {
	display: flex;
	flex-direction: row;
	margin: 0 auto;
	padding: 20px;
	max-width: 600px;
	border-radius: 5px;
	background: white;
	box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.6);
}
.review__img {}
.review__img img {
	max-width: 150px;
	max-height: 150px;
	border-radius: 50%;
	border: 3px solid #51cc16;
}
.review__info {
    padding: 0 20px;
}
.review__info--title {
	font-size: 24px;
	padding: 0 0 10px;
	color: #08ccb8;
}
.review__info--text {
	font-size: 16px;
}






/* https://cardiagram.com.ua/popular-car-brands-in-ukraine-9647.html */
@font-face {
  font-family: 'newspaper';
  src: url('fonts/newspaper.eot?15');
  src: url('fonts/newspaper.eot?15#iefix') format('embedded-opentype'), 
  url('fonts/newspaper.woff?15') format('woff'), 
  url('fonts/newspaper.ttf?15') format('truetype'), 
  url('fonts/newspaper.svg?15#newspaper') format('svg');
  font-weight: normal;
  font-style: normal;
}

/*@font-face {
  font-family: 'newspaper';
  src: url('../img/icons/newspaper.eot?15');
  src: url('../img/icons/newspaper.eot?15#iefix') format('embedded-opentype'),
  url('../img/icons/newspaper.woff?15') format('woff'),
  url('../img/icons/newspaper.ttf?15') format('truetype'),
  url('../img/icons/newspaper.svg?15#newspaper') format('svg');
  font-weight: normal;
  font-style: normal;
}*/
[class^="td-icon-"]:before,
[class*=" td-icon-"]:before {
  font-family: 'newspaper';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  text-align: center;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
[class*="td-icon-"] {
  line-height: 1;
  text-align: center;
  display: inline-block;
}
.td-icon-logout:before {
  content: '\e800';
}
.td-icon-down:before {
  content: '\e801';
}
.td-icon-left:before {
  content: '\e802';
}
.td-icon-right:before {
  content: '\e803';
}
.td-icon-up:before {
  content: '\e804';
}
.td-icon-views:before {
  content: '\e805';
}
.td-icon-menu-down:before {
  content: '\e806';
}
.td-icon-left-arrow:before {
  content: '\e807';
}
.td-icon-right-arrow:before {
  content: '\e808';
}
.td-icon-menu-up:before {
  content: '\e809';
}
.td-icon-search:before {
  content: '\e80a';
}
.td-icon-user:before {
  content: '\e80b';
}
.td-icon-menu-left:before {
  content: '\e80c';
}
.td-icon-menu-right:before {
  content: '\e80d';
}
.td-icon-star:before {
  content: '\e80f';
}
.td-icon-mail:before {
  content: '\e810';
}
.td-icon-behance:before {
  content: '\e811';
}
.td-icon-blogger:before {
  content: '\e812';
}
.td-icon-delicious:before {
  content: '\e813';
}
.td-icon-deviantart:before {
  content: '\e814';
}
.td-icon-digg:before {
  content: '\e815';
}
.td-icon-dribbble:before {
  content: '\e816';
}
.td-icon-evernote:before {
  content: '\e817';
}
.td-icon-facebook:before {
  content: '\e818';
}
.td-icon-flickr:before {
  content: '\e819';
}
.td-icon-forrst:before {
  content: '\e81a';
}
.td-icon-googleplus:before {
  content: '\e81b';
}
.td-icon-instagram:before {
  content: '\e81d';
}
.td-icon-lastfm:before {
  content: '\e81e';
}
.td-icon-linkedin:before {
  content: '\e81f';
}
.td-icon-mail-1:before {
  content: '\e820';
}
.td-icon-myspace:before {
  content: '\e821';
}
.td-icon-path:before {
  content: '\e822';
}
.td-icon-paypal:before {
  content: '\e823';
}
.td-icon-pinterest:before {
  content: '\e825';
}
.td-icon-reddit:before {
  content: '\e827';
}
.td-icon-rss:before {
  content: '\e828';
}
.td-icon-share:before {
  content: '\e829';
}
.td-icon-skype:before {
  content: '\e82a';
}
.td-icon-soundcloud:before {
  content: '\e82b';
}
.td-icon-spotify:before {
  content: '\e82c';
}
.td-icon-stackoverflow:before {
  content: '\e82d';
}
.td-icon-steam:before {
  content: '\e82e';
}
.td-icon-stumbleupon:before {
  content: '\e82f';
}
.td-icon-tumblr:before {
  content: '\e830';
}
.td-icon-twitter:before {
  content: '\e831';
}
.td-icon-vimeo:before {
  content: '\e832';
}
.td-icon-windows:before {
  content: '\e833';
}
.td-icon-wordpress:before {
  content: '\e834';
}
.td-icon-yahoo:before {
  content: '\e835';
}
.td-icon-youtube:before {
  content: '\e836';
}
.td-icon-vk:before {
  content: '\e837';
}
.td-icon-grooveshark:before {
  content: '\e838';
}
.td-icon-star-empty:before {
  content: '\e839';
}
.td-icon-star-half:before {
  content: '\e83a';
}
.td-icon-close:before {
  content: '\e83c';
}
.td-icon-read-down:before {
  content: '\e83d';
}
.td-icon-comments:before {
  content: "\e83b";
}
.td-icon-mobile:before {
  content: '\e83e';
}
.td-icon-whatsapp:before {
  content: '\f232';
}
.td-icon-commenting:before {
  content: '\f27a';
}
.td-icon-close-mobile:before {
  content: '\e900';
}
.td-icon-modal-back:before {
  content: '\e901';
}
.td-icon-modal-close:before {
  content: '\e902';
}
.td-icon-category:before {
  content: '\e903';
}
.td-icon-block-header:before {
  content: '\e904';
}
.td-icon-home:before {
  content: '\e905';
}
.td-icon-print:before {
  content: '\f02f';
}
.td-icon-telegram:before {
  content: '\f2c6';
}
.td-icon-line:before {
  content: '\e906';
}
.td-icon-viber:before {
  content: '\e907';
}
.td-icon-plus:before {
  content: '\ea0a';
}
.td-icon-minus:before {
  content: '\ea0b';
}
.td-icon-dailymotion:before {
  content: '\e908';
}
.td-icon-twitch:before {
  content: '\e909';
}
.td-icon-xing:before {
  content: '\e90a';
}
.td-icon-ebay:before {
  content: '\e90b';
}
.td-icon-acolade:before {
  content: "\e90c";
}
.td-icon-backslash:before {
  content: "\e90d";
}
.td-icon-bracket-square:before {
  content: "\e90e";
}
.td-icon-circle:before {
  content: "\e90f";
}
.td-icon-circle-full:before {
  content: "\e910";
}
.td-icon-circle-line:before {
  content: "\e911";
}
.td-icon-circless:before {
  content: "\e912";
}
.td-icon-comma-round:before {
  content: "\e913";
}
.td-icon-comma-square:before {
  content: "\e914";
}
.td-icon-hash:before {
  content: "\e915";
}
.td-icon-linee:before {
  content: "\e916";
}
.td-icon-pluss:before {
  content: "\e917";
}
.td-icon-point-comma-round:before {
  content: "\e918";
}
.td-icon-point-comma-square:before {
  content: "\e919";
}
.td-icon-point-round:before {
  content: "\e91a";
}
.td-icon-point-square:before {
  content: "\e91b";
}
.td-icon-quote-round:before {
  content: "\e91c";
}
.td-icon-quote-square:before {
  content: "\e91d";
}
.td-icon-romb-full:before {
  content: "\e91e";
}
.td-icon-romb-line:before {
  content: "\e91f";
}
.td-icon-romb-round-full:before {
  content: "\e920";
}
.td-icon-romb-round-line:before {
  content: "\e921";
}
.td-icon-rombs:before {
  content: "\e922";
}
.td-icon-slashh:before {
  content: "\e923";
}
.td-icon-star-full:before {
  content: "\e924";
}
.td-icon-star-line:before {
  content: "\e925";
}
.td-icon-translingual:before {
  content: "\e926";
}
.td-icon-upp:before {
  content: "\e927";
}
.td-icon-vertical-line:before {
  content: "\e928";
}
.td-icon-speedometr2:before {
  content: "\e929";
}
.td-icon-shop_bag:before {
  content: "\e92a";
}
.td-icon-car:before {
  content: "\e92b";
}
.td-icon-car_search:before {
  content: "\e92c";
}
.td-icon-speedometr:before {
  content: "\e92d";
}
.td-icon-car_sale:before {
  content: "\e92e";
}
.td-icon-transmission:before {
  content: "\e92f";
}
.td-icon-fuel:before {
  content: "\e80e";
}
.td-icon-road:before {
  content: "\e930";
}
.td-icon-steering_wheel:before {
  content: "\e931";
}
.td-icon-ncap:before {
  content: "\e932";
}
.td-icon-belt:before {
  content: "\e933";
}
.td-icon-clearance:before {
  content: "\e934";
}
.td-icon-awd:before {
  content: "\e935";
}
.td-icon-crash-testing-dummy-silhouette-svgrepo-com:before {
  content: "\e936";
}
.td-icon-dummy-svgrepo-com:before {
  content: "\e937";
}
.td-icon-gear:before {
  content: "\e938";
}
.td-icon-chassis:before {
  content: "\e939";
}
.td-icon-audi:before {
  content: "\e93a";
}
.td-icon-bentley:before {
  content: "\e93b";
}
.td-icon-bmw:before {
  content: "\e93c";
}
.td-icon-bugatti:before {
  content: "\e93d";
}
.td-icon-buick:before {
  content: "\e93e";
}
.td-icon-cadillac:before {
  content: "\e93f";
}
.td-icon-chevrolet:before {
  content: "\e940";
}
.td-icon-daewoo:before {
  content: "\e941";
}
.td-icon-ferrari:before {
  content: "\e942";
}
.td-icon-fiat:before {
  content: "\e943";
}
.td-icon-ford:before {
  content: "\e944";
}
.td-icon-genesis:before {
  content: "\e945";
}
.td-icon-gmc:before {
  content: "\e946";
}
.td-icon-honda:before {
  content: "\e947";
}
.td-icon-hyundai:before {
  content: "\e948";
}
.td-icon-infiniti:before {
  content: "\e949";
}
.td-icon-jaguar:before {
  content: "\e94a";
}
.td-icon-jeep-alt:before {
  content: "\e94b";
}
.td-icon-kia:before {
  content: "\e94c";
}
.td-icon-lamborghini:before {
  content: "\e94d";
}
.td-icon-land-rover:before {
  content: "\e94e";
}
.td-icon-lexus:before {
  content: "\e94f";
}
.td-icon-maserati:before {
  content: "\e950";
}
.td-icon-key:before {
  content: "\e951";
}
.td-icon-oil:before {
  content: "\e952";
}
.td-icon-diagnostic:before {
  content: "\e953";
}
.td-icon-Tire_Wheel_Service2:before {
  content: "\e954";
}
.td-icon-Tire_Wheel_Service:before {
  content: "\e955";
}
.td-icon-auto_loan:before {
  content: "\e956";
}
.td-icon-engine:before {
  content: "\e957";
}
.td-icon-speedometr3:before {
  content: "\e958";
}
.td-icon-transmission2:before {
  content: "\e959";
}
.td-icon-delete:before {
  content: "\e95a";
}
.td-icon-calculator:before {
  content: "\e95c";
}
.td-icon-added:before {
  content: "\e95d";
}
.td-icon-add:before {
  content: "\e95f";
}
.td-icon-remove:before {
  content: "\e960";
}
.td-icon-add_car:before {
  content: "\e961";
}
.td-icon-air_conditioning:before {
  content: "\e962";
}
.td-icon-auto_electric:before {
  content: "\e963";
}
.td-icon-brake:before {
  content: "\e964";
}
.td-icon-maybach:before {
  content: "\e965";
}
.td-icon-Tire_Wheel:before {
  content: "\e966";
}
.td-icon-mazda-alt:before {
  content: "\e967";
}
.td-icon-mercedes-benz:before {
  content: "\e968";
}
.td-icon-transmission_fill:before {
  content: "\e969";
}
.td-icon-drive_2:before {
  content: "\e96a";
}
.td-icon-engine_fill:before {
  content: "\e96b";
}
.td-icon-mitsubishi:before {
  content: "\e96c";
}
.td-icon-nissan:before {
  content: "\e96d";
}
.td-icon-porsche:before {
  content: "\e96e";
}
.td-icon-ram:before {
  content: "\e96f";
}
.td-icon-rolls-royce:before {
  content: "\e970";
}
.td-icon-saab:before {
  content: "\e971";
}
.td-icon-smart:before {
  content: "\e972";
}
.td-icon-subaru-alt:before {
  content: "\e973";
}
.td-icon-subaru:before {
  content: "\e974";
}
.td-icon-suzuki:before {
  content: "\e975";
}
.td-icon-tesla:before {
  content: "\e976";
}
.td-icon-toyota:before {
  content: "\e977";
  font-size: 40px;
}
.td-icon-volkswagen:before {
  content: "\e978";
}
.td-icon-volvo-alt:before {
  content: "\e979";
}
.td-icon-volvo:before {
  content: "\e97a";
}
.td-icon-peugeot:before {
  content: "\e97b";
}
.td-icon-chery:before {
  content: "\e97c";
}
.td-icon-chevrolet1:before {
  content: "\e97d";
}
.td-icon-citroen:before {
  content: "\e97e";
}
.td-icon-crownline:before {
  content: "\e97f";
}
.td-icon-dacia:before {
  content: "\e980";
}
.td-icon-daewoo1:before {
  content: "\e981";
}
.td-icon-daihatsu:before {
  content: "\e982";
}
.td-icon-dodge:before {
  content: "\e983";
}
.td-icon-ducati:before {
  content: "\e984";
}
.td-icon-geely:before {
  content: "\e98c";
}
.td-icon-gmc1:before {
  content: "\e991";
}
.td-icon-great-wall:before {
  content: "\e993";
}
.td-icon-hyundai1:before {
  content: "\e99b";
}
.td-icon-infiniti1:before {
  content: "\e99c";
}
.td-icon-jac2:before {
  content: "\e9a0";
}
.td-icon-jaguar1:before {
  content: "\e9a1";
}
.td-icon-jeep:before {
  content: "\e9a4";
}
.td-icon-john-deere:before {
  content: "\e9a5";
}
.td-icon-kamaz:before {
  content: "\e9a6";
}
.td-icon-kia1:before {
  content: "\e9a9";
}
.td-icon-kraz:before {
  content: "\e9ac";
}
.td-icon-lancia:before {
  content: "\e9b1";
}
.td-icon-land-rover1:before {
  content: "\e9b2";
}
.td-icon-lexus1:before {
  content: "\e9b3";
}
.td-icon-lifan:before {
  content: "\e9b4";
}
.td-icon-maz:before {
  content: "\e9bc";
}
.td-icon-mazda:before {
  content: "\e9bd";
}
.td-icon-mg:before {
  content: "\e9c2";
}
.td-icon-mini:before {
  content: "\e9c3";
}
.td-icon-opel:before {
  content: "\e9cf";
}
.td-icon-porsche1:before {
  content: "\e9d6";
}
.td-icon-renault:before {
  content: "\e9d8";
}
.td-icon-rolls-royce1:before {
  content: "\e9d9";
}
.td-icon-saipa:before {
  content: "\e9de";
}
.td-icon-seat:before {
  content: "\e9e2";
}
.td-icon-skoda:before {
  content: "\e9e3";
}
.td-icon-smart1:before {
  content: "\e9e4";
}
.td-icon-ssangyong:before {
  content: "\e9e6";
}
.td-icon-uaz:before {
  content: "\e9ee";
}
.td-icon-vaz:before {
  content: "\e9f1";
}
.td-icon-zaz:before {
  content: "\e9f9";
}
.td-icon-ok:before {
  content: "\f00c";
}
.td-icon-remove2:before {
  content: "\f00d";
}
.td-icon-signal:before {
  content: "\f012";
}
.td-icon-camera:before {
  content: "\f030";
}
.td-icon-facetime_video:before {
  content: "\f03d";
}
.td-icon-picture:before {
  content: "\f03e";
}
.td-icon-chevron_left:before {
  content: "\f053";
}
.td-icon-chevron_right:before {
  content: "\f054";
}
.td-icon-arrow_left:before {
  content: "\f060";
}
.td-icon-arrow_right:before {
  content: "\f061";
}
.td-icon-arrow_up:before {
  content: "\f062";
}
.td-icon-arrow_down:before {
  content: "\f063";
}
.td-icon-plus1:before {
  content: "\f067";
}
.td-icon-minus1:before {
  content: "\f068";
}
.td-icon-leaf:before {
  content: "\f06c";
}
.td-icon-eye_open:before {
  content: "\f06e";
}
.td-icon-eye_close:before {
  content: "\f070";
}
.td-icon-shopping_cart:before {
  content: "\f07a";
}
.td-icon-camera_retro:before {
  content: "\f083";
}
.td-icon-twitter1:before {
  content: "\f099";
}
.td-icon-facebook1:before {
  content: "\f09a";
}
.td-icon-rss1:before {
  content: "\f09e";
}
.td-icon-wrench:before {
  content: "\f0ad";
}
.td-icon-briefcase:before {
  content: "\f0b1";
}
.td-icon-dashboard:before {
  content: "\f0e4";
}
.td-icon-bolt:before {
  content: "\f0e7";
}
.td-icon-umbrella:before {
  content: "\f0e9";
}
.td-icon-suitcase:before {
  content: "\f0f2";
}
.td-icon-microphone:before {
  content: "\f130";
}
.td-icon-fire_extinguisher:before {
  content: "\f134";
}
.td-icon-eur:before {
  content: "\f153";
}
.td-icon-gbp:before {
  content: "\f154";
}
.td-icon-usd:before {
  content: "\f155";
}
.td-icon-apple:before {
  content: "\f179";
}
.td-icon-android:before {
  content: "\f17b";
}
.td-icon-sun:before {
  content: "\f185";
}
.td-icon-_366:before {
  content: "\f186";
}
.td-icon-_479:before {
  content: "\f1fe";
}
.td-icon-_480:before {
  content: "\f200";
}
.td-icon-_481:before {
  content: "\f201";
}
.td-icon-_540:before {
  content: "\f240";
}
.td-icon-_541:before {
  content: "\f241";
}
.td-icon-_542:before {
  content: "\f242";
}
.td-icon-_543:before {
  content: "\f243";
}
.td-icon-_544:before {
  content: "\f244";
}

.p-t20 {
	padding-top: 20px;
}
.p-btn-md {
	padding: 5px 15px !important;
}

.p-btn-lg {
	padding: 10px 25px  !important;
}

.btn-car:hover {
	background-position: right center;
	color: white  !important;
}
.btn-car {
	flex: 1 1 auto;
	margin: 2px 5px;
	padding: 2px 10px;
	text-align: center;
	text-transform: uppercase;
	transition: 0.5s;
	background-size: 200% auto;
	color: white !important;
	text-shadow: 0px 0px 10px rgba(0,0,0,0.6);
	box-shadow: 0 0 20px #eee;
	border-radius: 3px;
	font-size: 14px;
	background-image: linear-gradient(to right, #52cc19 0%, #13ccb9 51%, #52cc19 100%);
}

.row {
	overflow: hidden;
}

@media (max-width: 991px) {
	.header__phones {
		display: flex;
		justify-content: center;
		margin-bottom: 20px;
		border-bottom: 1px dashed #e1e1e1;
	}
	.header__adres {
		display: flex;
		flex-direction: column;
	}
	.header__adres .btn-adres {
		padding-right: 23px;
		background: url(../img/locating.png) no-repeat left center;
		background-size: 15px;
		margin-bottom: 10px;
	}
	.header__adres .btn-car {
		padding: 5px 15px;
	}
	.header .navbar-collapse .navbar-collapse__block {
		box-shadow: inset 0px 0px 20px rgba(0, 0, 0, 0.1);
	}
	.main-slider__block h1.time .minuts .t-86 {
		font-size: 2em;
	}
	.main-slider__block h1.time .minuts {
	    padding: 0px 10px;
	    line-height: 2em;
	}
	.advantages__text {
		margin-bottom: 20px;
	}
}
@media (max-width: 560px) {
	.main-slider__block img {
		max-width: 100%;
		max-height: 250px !important;
	}
	.main-slider__block h1,
	.main-slider__block h1.time {
	    font-size: 2em;
	}

	.main-slider__text,
	.main-slider__img {
		display: flex;
		justify-content: center;
		align-items: center;
		text-align: center;
	}

}
@media (min-width: 561px) and (max-width: 991px) {
	.main-slider__block img {
		max-width: 100%;
		max-height: 320px !important;
	}
	.main-slider__block h1,
	.main-slider__block h1.time {
	    font-size: 2.5em;
	}

}