/* FONTS LOAD SECTION */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700;800&display=swap');
/* USER VARIABLES SECTION */

:root {
	--accent: #FE0000;
	--text: #333;
	--grey:#eee;
	--regular-text: 16px;
	--radius: 5px;
	--lineheight: 1.5;
	--userfont: 'Montserrat', sans-serif;
	--systemfont: -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}

/* BOOTSTRAP SETTINGS SECTION */

/* gutter 20px (10px + 10px). Comment this code for default gutter start at 1.5rem (24px) wide. */
.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl { --bs-gutter-x: .625rem; }
.row, .row > * { --bs-gutter-x: 1.25rem; }



/* GENERAL CSS SETTINGS */

::placeholder { color: #666; font-weight: 400}
::selection { background-color: var(--accent); color: #fff; }
input, textarea { outline: none; }
input:focus:required:invalid, textarea:focus:required:invalid { border-color: red; }
input:required:valid, textarea:required:valid { border-color: green; }

body {
	font-family: var(--userfont);
	font-size: var(--regular-text);
	line-height: var(--lineheight);
	color: var(--text);
	min-width: 320px;
	position: relative;
	overflow-x: hidden;
	scroll-behavior: smooth;
}
a{
	color: var(--accent);
}
ul{
	list-style: none;
}
ul li{
	position: relative;
    list-style-type: none;
    margin-bottom: 0.5em;
}
ul li:after {
	font-family: 'Font Awesome 6 Free';
    font-weight: 700;
    top: 0;
    text-align: center;
	content: "\f0da";
    position: absolute;
    left: -1.5em;
    width: 1em;
    height: 1.4em;
    line-height: 1.4em;
    color: var(--accent);
}
ul ul{
	margin: 10px 0;
}
.agree{
	display: none;
}
.error {
    border: 1px solid red;
}

/* USER STYLES */
.error-h1{
	font-weight: 700;
    font-size: 4rem;
}
.error-h2{
	margin-bottom: 20px;
	font-weight: 700;

}
.img{
	width: 100%;
}
.accent {
	color: var(--accent);
}
.text-right{
	text-align: right;
}
.h3{
	font-weight: 700;
	font-size: 26px;
}
.h4{
	font-weight: 700;
	font-size: 24px;
}
.btn{
	background:linear-gradient(50deg, var(--accent),#F76D7F,var(--accent));
	outline: none;
	text-decoration: none;
	border: 0;
	border-radius: var(--radius);
	padding: 10px 30px;
	color: #fff;
	font-size: 24px;
	font-weight: 700;
	transition: all .3s linear;
	width: fit-content;
	text-align: center;
}
.btn:hover{
	box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.25);
	color: #fff;
}
.section{
	padding: 50px 0;
	position: relative;
}
.section__bg{
	background-image: url(../images/bg-section-warning-regular-diagnostics.jpg);
    background-position: center bottom;
}
.section-breadcrumbs{
	padding: 30px  0;
	position: relative;
	text-align: center;
}
.anchor{
	position: absolute;
	top: -100px;
}


/* SIDEBAR   */
.sidebar {
	position: fixed;
	right: -150px;
	top: 50%;
	padding: 5px;
	border-radius: 5px 0 0 5px;
	display: grid;
	grid-template-columns: 1fr;
	z-index: 3;
	justify-content: center;
	text-align: center;
	transform: translate(0, -50%);
}
.sidebar__item {
	display: grid;
	right: 0;
	grid-template-columns: 36px 130px;
	gap: 10px;
	align-items: center;
	font-size: 16px;
	color: var(--accent);
	background-color: var(--grey);
	position: relative;
	text-decoration: none;
	padding: 5px;
	transition: all .3s linear;
}
.sidebar__item:first-child{
	border-radius: 5px 0 0 0;
}
.sidebar__item:last-child{
	border-radius:  0 0 0 5px;
}
.sidebar__item i{
	font-size: 30px;
}
.sidebar__name{
	text-align: left;
	line-height: 1.1;
}
.sidebar__item:hover{
	color: var(--accent);
}
.sidebar__item:hover{
	right: 145px;
}


/* HEADER */
.header {
	position: sticky;
	top: 0;
	padding: 5px 0 10px;
	background-color: #fff;
	z-index: 100;
}
.header__logo{
	display: grid;
	grid-template-columns: 75px 1fr;
	align-items: center;
	gap:15px;
}
.header__title{
	font-weight: 700;
	line-height: 1.2;
	font-size: 18px;
}
.header__top {
	display: grid;
	grid-template-columns: 190px max-content;
	justify-content: space-between;
	gap: 30px;
	align-items: center;
	margin-bottom: 0;
}
.header__items {
	display: grid;
	grid-template-columns: repeat(5,max-content);
	gap: 10px;
}
.header__item {
	color: #fff;
	text-decoration: none;
	line-height: 1.3;
	border-radius: var(--radius);
	display: grid;
	grid-template-columns: 36px 1fr;
	align-items: center;
	gap: 7px;
	cursor: pointer;
	padding: 5px 12px;
	position: relative;
	background:linear-gradient(50deg, var(--accent),#F76D7F,var(--accent));
}
.header__item:hover{
	color: #fff;
}
.dropdown{
	opacity: 0;
	visibility: hidden;
	height: 0;
	position: absolute;
	transform-origin: top;
	transform:scaleY(0);
	transition:transform .3s;
	position: absolute;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	top: 50px;
    left: 0;
	border-radius: 0 0 5px 5px;
	transition: opacity  .3s  linear;
	padding: 20px 30px 10px 15px;
	width: fit-content;
	min-width: 500px;
	background-color: #fff;
	color:var(--text);
	z-index: 9;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.dropdown--2col{
	grid-template-columns: 1fr 1fr;
	gap: 30px;
}
.dropdown--1col{
	grid-template-columns: 1fr;
	gap: 20px;
}
.dropdown__item{
	font-size: 16px;
	text-decoration: none;
	color: var(--text);
	font-weight: 500;
	white-space: nowrap;
	display: grid;
	grid-template-columns: 35px  1fr;
	align-items: center;
	gap: 10px;
	min-width: 170px;
}
.dropdown--2col .dropdown__item{
	min-width: auto;
	white-space:revert;
}
.dropdown__item:hover{
	color: var(--accent);
}
.dropdown__img{
	width: 100%;
}
.header__item:hover .dropdown{
	opacity: 1;
	visibility: visible;
	height: unset;
	transform: scaleY(1);
	z-index: 10;
}
.header__item i{
	font-size: 26px;
}
.header__item p{
	margin: 0;
	font-weight: 500;
}
.header__bottom {
	display: grid;
	grid-template-columns: repeat(3,max-content);
	gap: 15px;
	justify-content: space-between;
	align-items: center;
}
.nav {
	display: grid;
	grid-template-columns: repeat(7,auto);
	gap: 40px;
	align-items: center;
}
.nav__item {
	color: var(--text);
	text-decoration: none;
	font-weight: 500;
	transition: color .3s linear;
}
.nav__item:hover{
	color: var(--accent);
}
.header__phone {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
}
.header__phone a{
	color: var(--text);
	font-weight: 700;
	font-size: 26px;
	text-decoration: none;
	line-height: 1;
}
.callback {
	display: grid;
	grid-template-columns: 1fr;
	gap: 5px;
	position: relative;
	z-index: 0;
}
.callback__item {
	display: grid;
	grid-template-columns: 30px 1fr;
	position: relative;
	align-items: center;
	text-decoration: none;
	padding: 0 7px;
}
.callback__item::before{
	content: '';
	position: absolute;
	border-radius: var(--radius);
	width: 90%;
	height: 100%;
	top: 0;
	right: 0;
	background-color: var(--accent);
	z-index: -2;
	transition: opacity .3s linear;
}
.callback__item--green::before{
	background-color: #01bc24;
}
.callback__item:hover::before,
.callback__item--green:hover::before{
	opacity: 1;
}
.callback__icon{
	position: relative;
}
.callback__icon::before {
	content: '';
	position: absolute;
	border-radius: 50%;
	width: 33px;
    height: 32px;
    top: -2px;
	left: 0;
	background-color: #fff;
	z-index:-1;
}
.callback__text {
	font-size: 16px;
	font-weight: 500;
	text-decoration: none;
	color: #fff;
	line-height: 1;
	margin-left: 5px;
}

/* BANNER */
.banner{
	padding: 60px 0;
	position: relative;
	overflow: hidden;
}
.banner__bg{
    width: 100%;
	height: 100%;
    object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
    z-index: -1;
}
.banner__subtitle{
	display: flex;
	align-items: center;
	margin: 25px 0 40px;
}
.banner__line{
	margin-right: 1rem;
    width: 2.3rem;
    height: 1px;
    border: 1px solid #282728;
}
.banner__title{
	font-size: 42px;
    font-weight: 500;
}
.banner__bottom {
	display: grid;
    grid-template-columns: 1fr 165px;
    gap: 40px;
	max-width: 520px;
	position: relative;
}
.banner__bleft-text {
	margin-bottom: 0;
}
.banner__phone-img{
	max-width: none;
    width: 100%;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
.banner__arrow{
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
	position: absolute;
    right: -3rem;
    bottom: 5rem;
    -webkit-transform: translate(-100%, 0);
    transform: translate(-100%, 0);
    width:8rem;
}
.btn--whatsapp {
	position: relative;
	padding: 1.3rem 2.7rem;
    border-radius: 3rem;
    background-color: #01bc24;
    width: auto;
    -webkit-transition: all .3s;
    transition: all .3s;
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
	color: #fff;
	text-decoration: none;
	margin: 35px 0;
}
.btn--whatsapp:hover{
	color: #fff;
	transform: scale(1.06);
}
.btn--whatsapp i{
	font-size: 40px;
	margin-right: 15px;
}
.btn-blick {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 3rem;
    overflow: hidden;
}
@keyframes slideme {
    0% {
        left: -30px;
        margin-left: 0
    }

    30% {
        left: 110%;
        margin-left: 80px
    }

    100% {
        left: 110%;
        margin-left: 80px
    }
}
.btn-blick:after {
    margin-left: -30px;
    content: " ";
    width: 20px;
    height: 400px;
    background: #fff;
    -webkit-animation-delay: 0.05s;
    animation-delay: 0.05s;
    position: absolute;
    left: -40px;
    top: -150px;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-transition: all 0.1s;
    transition: all 0.1s;
    -webkit-animation-name: slideme;
    animation-name: slideme;
    -webkit-animation-duration: 3.5s;
    animation-duration: 3.5s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.banner__bleft-tg {
	display: flex;
	align-items: center;
	
}
.banner__tg {
	display: flex;
	align-items: center;
	line-height: 1.1;
	margin-left: 25px;
	color: var(--text);
	text-decoration: none;
}
.banner__tg i{
	margin-right: 10px;
	font-size: 35px;
	color: #00A2F2;
}
.banner__bright {
	width: 7.5rem;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-left: 3rem;
}

/* SERVICES */
.services{
	padding-bottom:50px;
}
.services__top{
	padding: 40px 0 95px;
	background-color: #f8f8f8;
}
.title__wrap{
	display: flex;
	align-items: center;
	margin-bottom: 40px;
}
.title__left,
.title__right {
	flex: 0 0 50%;
}
.title__left {
	padding-right: 40px;
	padding-top: 5px;
	padding-bottom: 5px;
	border-right:  rgba(51, 51, 51, 0.3) 1px solid;
	text-align: right;
	text-transform: uppercase;
}
.title__left .h2{
	font-weight: 800;
	font-size: 38px;
}
.title__right {
	padding-left: 40px;
}
.title__text{
	font-size: 20px;
	margin-bottom: 0;
}
.services__bottom{
	margin-top: -100px;
}
.services__wrap{
	position: relative;
	height: 300px;
}
.services__item {
	display: grid;
	position: absolute;
	top: 0;
	width: calc(100% - var(--bs-gutter-x));
	height: calc(100% - var(--bs-gutter-x));
	left: calc(var(--bs-gutter-x) * .5);
	grid-template-columns: 1fr;
	text-decoration: none;
	border-bottom: 2px solid var(--accent);
	padding-bottom: 15px;
	background-color: #fff;
	transition: all .3s   linear;
}
.services__img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}
.services__name {
	text-decoration: none;
	font-size: 21px;
	font-weight: 700;
	color: var(--text);
	margin-bottom: 0;
	padding: 10px;
	transition: all .3s   linear;
}
.services__hide{
	display: none;
}
.services__text {
	opacity: 0;
	pointer-events: none;
	color: var(--text);
	padding: 10px;
	transition: all .3s   linear;
}
.services__text p{
	margin-bottom: 4px;
}
.services__text i{
	color: var(--accent);
}
.services__btn {
	opacity: 0;
	pointer-events: none;
	padding:10px;
	border-bottom: 2px solid var(--accent);
	transition: all .3s   linear;
}
.services__item:hover{
	box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.25);
	z-index: 2;
}
.services__item:hover .services__text,
.services__item:hover .services__btn{
	opacity: 1;
	pointer-events: all;
	background-color: #fff;
	
}

/* WORK */
.bg-light-grey {
	background-color: #f8f8f8;
}
.work{
	overflow: hidden;
}
.work__items {
	margin-top: 35px;
	display: grid;
	grid-template-columns: 1fr;
	gap: 30px;
}
.work__item i {
	color: var(--accent);
}
.work__item p{
	margin-bottom: 0;
}
.work__item p strong{
	font-size: 18px;
}
.work__video{
	position: relative;
	z-index: 1;
}
.work__video::after{
	content:'';
	position:absolute;
	top: 50%; 
    left: 50%; 
	width: 50%;
	height: calc(100% + 400px);
    transform: translate(-50%, -50%);
	background:var(--grey);
	z-index: -1;
}
.work__video .h4{
	text-align: center;
}
.work__video .btn{
	display: block;
	margin: 0 auto;
}
.work__slider{
	position: relative;
	margin: 40px 0;
	overflow: hidden;
}
.work__slider .swiper-wrapper{
	width: calc(100% - 250px);
    margin: 0 auto;
}
.work__slider .swiper-slide iframe{
	width: calc(100% - 250px);
	height: 700px;
}
.swiper-button-prev,
.swiper-button-next{
	color: var(--accent);
}

/* EXAMPLES */

.examples__item {
	background:linear-gradient(50deg, var(--accent),#F76D7F,var(--accent));
	border-radius: var(--radius);
	color: #fff;
	height: 100%;
	padding: 15px 10px;
	display: grid;
	grid-template-columns: max-content 1fr;
	gap: 25px;
	align-items: center;
}
.examples__icon {
	font-size: 43px;
	transform: rotate(-32deg);
}
.examples__link {
	color: #fff;
	font-weight: 700;
	font-size: 22px;
	margin-bottom: 10px;
	display: block;
	line-height: 1.2;
}
.examples__link:hover{
	color: #fff;
}
.examples__text {
	margin-bottom: 0;
}
.slider{
	position: relative;
	margin-top: 50px;
}
.swiper-slide img{
	border-radius: var(--radius);
}
.examples__slider{
	overflow: hidden;
	width: calc(100% - 110px);
    margin: 0 auto;
	height: 100%;
}
.swiper-link-more{
	color: var(--accent);
	font-weight: 700;
	background-color: var(--grey);
	border-radius: var(--radius);
	padding: 20px;
	display: grid;
	gap: 10px;
	align-items: center;
	text-align: center;
	font-size: 24px;
	text-decoration: none;
	transition:all .3s  linear;
}
.swiper-link-more i{
	font-size: 40px;
}
.swiper-link-more:hover{
	background-color: var(--accent);
	color: #fff;
}

/* CERTIFICAT  */
.certificat__slider{
	overflow: hidden;
	width: calc(100% - 110px);
    margin: 0 auto;
	height: 100%;
}

/* BLOCK */
.block__title{
	font-size: 32px;
	color: var(--accent);
	margin-bottom: 15px;
	text-align: center;
	font-weight: 700;
	max-width: 1000px;
	margin: 0 auto 15px;
}
.block__title--uppercase{
	text-transform: uppercase;
}
.block__title-icon{
	font-size: 34px;
	line-height: 1;
	color: var(--accent);
	text-align: center;
}
.block__subtitle{
	font-size: 18px;
	margin-bottom: 40px;
	max-width: 740px;
	text-align: center;
	margin: 0 auto 40px;
}

/*   GARANTY */
.garanty__link{
	color: var(--accent);
	font-size: 18px;
	font-weight: 500;
	margin: 15px 0;
	display: block;
}
.garanty__strahovka{
	display: grid;
	grid-template-columns: 60px 470px;
	gap: 20px;
	align-items: center;
}
.garanty__item {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
	margin-top: 45px;
	max-width: 570px;
    margin-left: auto;
    margin-right: auto;
}
.garanty__top {
	display: grid;
	grid-template-columns: 50px 1fr;
	gap: 15px;
	align-items: center;
}
.garanty__top img{
	width: 100%;
}
.garanty__top i{
	font-size: 50px;
	color: var(--accent);
}
.garanty__title {
	font-size: 28px;
	margin: 0;
}
.garanty__top--small{
	grid-template-columns: 39px 1fr;
}
.garanty__top--small i{
	font-size: 39px;
}
.garanty__title--small{
	font-size: 19px;
}
.garanty__bottom{
	font-size: 14px;
}

/* NEW CAR  */
.new-car {
	padding: 20px 0;
}
.new-car__wrap {
	display: grid;
	align-items: center;
	grid-template-columns: 200px 1fr;
	gap: 40px;
	max-width: 90%;
	margin: 0 auto;
}
.new-car__img {
	width: 100%;
	padding: 0 40px;
}
.new-car__text {
	font-size: 22px;
	margin: 0;
}
.new-car__title {
	color: var(--accent);
	font-size: 28px;
	text-transform: uppercase;
	font-weight: 700;
	margin: 5px 0;
}

/* REVIEW */
.review__slider{
	overflow: hidden;
	width: calc(100% - 110px);
    margin: 0 auto;
}
.review__slider iframe{
	height: 175px;
}

/* BEST */
.best__text {
	font-size: 24px;
	text-align: center;
	margin-bottom: 10px;
}
.best__title {
	color: var(--accent);
	font-size: 28px;
	font-weight: 700;
	text-align: center;
	text-transform: uppercase;
	margin-bottom: 30px;
}

/* DIRECTORS */
.directors__title {
	font-size: 32px;
	margin-bottom: 20px;
	text-align: center;
}
.directors__wrap {
	display: grid;
	grid-template-columns: repeat(5,1fr);
	gap: 20px;
}
.directors__item {
	display: grid;
}
.directors__item--one .directors__img{
	height: 100%;
}
.directors__img {
	width: 100%;
	height: 175px;
	object-fit: cover;
}
.directors__name {
	font-size: 22px;
	font-weight: 700;
	text-align: center;
}
.directors__addr {
	font-size: 16px;
	text-align: center;
	margin-bottom: 15px;

}
.directors__btn{
	width: 100%;
	margin-bottom: 10px;
	font-size: 20px;
}
.directors__item iframe{
	margin: 0 auto;
}

/* CONTACTS  */
.contacts{
	padding: 50px 0 0;
}
.contacts__wrap {
	display: grid;
	grid-template-columns: repeat(5,1fr);
	gap: 20px;
	margin: 30px 0;
}
.contacts__item {
	display: grid;
	justify-items: center;
}
.contacts__name {
	font-size: 22px;
	font-weight: 700;
	text-align: center;
}
.contacts__addr {
	font-size: 16px;
	text-align: center;
	margin-bottom: 15px;

}
.contacts__btn{
	width: 100%;
	margin-bottom: 10px;
	font-size: 20px;
}
.contacts__tel{
	font-size: 21px;
	font-weight: 700;
	text-decoration: none;
	color: var(--accent);
	text-align: center;
}

/* RECORD */
.record__wrap {
	display: grid;
	grid-template-columns: 1fr;
	gap: 30px;
}
.record__item {
	display: grid;
	grid-template-columns: 75px 1fr;
	gap: 20px;
	align-items: center;
}
.record__title {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 10px;
}
.record__form{
	background-color: #eee;
	padding: 20px 25px;
	border-radius: var(--radius);
	position: relative;
}
.record__arrow{
	position: absolute;
	width: 79px;
	right: -30px;
	bottom: 30%;
}
.record__form h3{
	font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}
.record__form p{
	text-align: center;
}
.record__policy{
	font-size: 12px;
	margin-top: 10px;
	margin-bottom: 0;
}
.record__btn{
	width: 100%;
}
.record__present {
	display: grid;
	grid-template-columns: repeat(4,1fr);
	gap: 20px;
}
.record__present-item {
	cursor: pointer;
}
.record__present-item--active .record__present-img::after {
	content: '\f058';
	position: absolute;
	color: #28D146;
	bottom: -15px;
	right: -5px;
	font-size: 27px;
	font-family: "Font Awesome 6 Free";
	font-weight: 700;
}
.record__present-img {
	padding: 10px;
	background-color: #fff;
	border-radius: var(--radius);
	margin: 10px 0;
	position: relative;
}
.record__present-img img{
	height: 70px;
	object-fit: contain;
}
.record__present-name{
	font-size: 14px;
	display: block;
	line-height: 1.2;
	margin-bottom: 20px;
}

/* FOOTER */
.footer{
	padding: 40px 0;
	background-color: #202328;
}
.footer__logo{
	max-width: 255px;
	margin-bottom: 35px;
}
.footer__phone {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
	color: #fff;
	margin-bottom: 15px;
}
.footer__phone a{
	color: #fff;
	font-weight: 700;
	font-size: 26px;
	text-decoration: none;
	line-height: 1;
}
.footer__addr {
	display: grid;
	grid-template-columns: max-content max-content;
	align-items: center;
	justify-content: start;
	gap: 5px;
	margin-bottom: 5px;
}
.footer__addr p{
	margin-bottom: 0;
	color: #fff;
	font-weight: 300;
}
.footer__addr i{
	color: var(--accent);
}
.footer__policy{
	font-size: 12px;
	color: #fff;
	display: block;
	margin: 30px 0;
}
.footer__nav{
	display: grid;
	grid-template-columns: 1fr;
	gap: 15px;
	
}
.footer__nav .nav__item{
	color: #fff;
	font-weight: 300;
}
.footer__nav .nav__item:hover{
	color: var(--accent);
}
.footer__title{
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 20px;
	color: #fff;
}
select,
input,
textarea{
	border:none;
	border-radius: var(--radius);
	font-family: var(--userfont);
	font-weight: 700;
	color: var(--text);
	display: block;
	width: 100%;
	margin-bottom: 15px;
	padding: 15px;
	font-size: 18px;
}

.modal__container{
	background-color: var(--grey);
	font-family: var(--userfont);
}
.modal__overlay{
	z-index: 100;
}

/* ======= PRELOADER ========== */
  #page-preloader {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--grey);
	z-index: 100500;
  }
  
  #page-preloader .spinner {
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	width: 100px;
	height: 100px;
	margin-top: -50px;
	margin-left: -50px;
	border: 3px solid transparent;
	border-top-color: #e7e4d7;
	border-radius: 50%;
	z-index: 1001;
	-webkit-animation: spin 2.5s infinite linear;
	animation: spin 2.5s infinite linear;
  }
  
  #page-preloader .spinner:before, #page-preloader .spinner:after {
	position: absolute;
	border-radius: 50%;
	content: '';
  }
  
  #page-preloader .spinner:before {
	top: 5px;
	right: 5px;
	bottom: 5px;
	left: 5px;
	border: 3px solid transparent;
	border-top-color: var(--accent);
	-webkit-animation: spin 2s infinite linear;
	animation: spin 2s infinite linear;
  }
  
  #page-preloader .spinner:after {
	top: 15px;
	right: 15px;
	bottom: 15px;
	left: 15px;
	border: 3px solid transparent;
	border-top-color: var(--accent);
	-webkit-animation: spin 1s infinite linear;
	animation: spin 1s infinite linear;
  }
  
  @-webkit-keyframes spin {
	0% {
	  -webkit-transform: rotate(0);
	  transform: rotate(0);
	}
	100% {
	  -webkit-transform: rotate(360deg);
	  transform: rotate(360deg);
	}
  }
  
  @keyframes spin {
	0% {
	  -webkit-transform: rotate(0);
	  transform: rotate(0);
	}
	100% {
	  -webkit-transform: rotate(360deg);
	  transform: rotate(360deg);
	}
  }

  .hamburger{
	display: none;
  }

/*  BRAND */
.brand__banner{
	position: relative;
	background: var(--grey);
	padding: 30px;
	background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
}
.brand__banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--grey);
    opacity: .8;
    z-index: 0;
}
.brand__banner .container{
	position: relative;
}
.brand__banner-title{
	font-weight: 700;
	font-size: 46px;
	margin-bottom: 20px;
}
.brand__banner-subtitle{
	font-size: 22px;
	margin-bottom: 0;
	font-weight: 500;
}
.mb-0{
	margin-bottom: 0;
}
.mb-20{
	margin-bottom: 20px;
}
.mt-30{
	margin-top: 30px;
}
.brand__clud-item {
	display: grid;
	grid-template-columns: 35px 1fr;
	gap: 25px;
	align-items: center;
	margin-bottom: 30px;
}
.brand__clud-icon{
	font-size: 35px;
	color: var(--accent);
}
.brand__clud-title {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 0;
}
.brand__club-bottom {
    background-color: var(--grey);
    -webkit-border-radius: 5px;
    border-radius: 5px;
    position: relative;
    padding: 20px;
    margin-top: 30px;
}
.brand__club-bottom::before{
	content: '';
    position: absolute;
    top: -30px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    height: 15px;
    width: 1px;
    border: 15px solid transparent;
    border-bottom-color: var(--grey);
    z-index: 3;
}
.brand__club-text{
	font-weight: 600;
	margin: 0;
}
.brand__work {
	color: #fff;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
    margin-bottom: 30px;
}
.brand__work>div{
	position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: block;
	padding: 50px 20px;
    background-color: rgba(0,0,0,.7);
    position: relative;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
	display: grid;
    gap: 20px;
    justify-content: center;
    text-align: center;
	color: #fff;
	text-decoration: none;
	will-change: transform;
	cursor: pointer;
	min-height: 440px;
}
.brand__work>div:hover{
	transform: scale(1.1);
	background-color: rgba(0,0,0,.8);
}
.brand__work-icon{
	font-size: 90px;
}
.brand__work-name {
	font-size: 26px;
    line-height: 1.2;
    font-weight: 700;
}
.brand__work-btn {
	text-transform: uppercase;
    color: #fff;
    border-bottom: 2px solid rgba(255,255,255,.45);
    background-color: rgba(255,255,255,.15);
    display: inline-block;
    max-width: 230px;
    width: 100%;
    line-height: 3;
    transition: all .4s ease;
	margin: 0 auto;
	align-self: end;
}
.brand__work-btn:hover {
    text-decoration: none;
    color: #241F20;
    background-color: #fff;
}
.text-center{
	text-align: center;
}
.fz-20{
	font-size: 20px;
}
.brand__line{
	margin: 0;
	font-size: 23px;
	font-weight: 500;
}
.filter-controls{
	border-bottom: 2px solid var(--accent);
}
.filter-controls  >  *{
	text-align: center;
	padding: 10px;
	background-color: var(--grey);
	transition: all   .3s  linear;
	cursor: pointer;
}
.filter-controls  .active{
	background-color: var(--accent);
	color: #fff;
}
.filter .mix{
	margin-bottom: 15px;
}
.filter-item{
	background-color: var(--grey);
	padding: 10px;
	height: 100%;
	display: flex;
	align-items: center;
	cursor: pointer;
	transition: all .3s  linear;
}
.filter-item:hover{
	background-color: var(--accent);
	color: #fff;
}
.brand__step {
	display: grid;
	grid-template-columns: 1fr;
}
.brand__step-icon {
	font-size: 74px;
	margin-bottom: 15px;
}
.brand__step-title {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 10px;
}
.brand__step-text {
	margin-bottom: 0;
}
.brand__arrow{
	position: relative;
}
.brand__arrow::after{
	content: "";
    position: absolute;
    top: -35px;
    right: -100px;
    width: 90px;
    height: 71px;
    background-image: url(../images/brand/arrow-to-btn-ask.png);
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 10;
}

/*  SERVICE */
.service__banner{
	position: relative;
	background: #f8f8f8;
	padding: 30px;
	background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
}
.service__banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--grey);
    opacity: .8;
    z-index: -1;
}
.service__banner-top{
	font-size: 22px;
	color: var(--accent);
}
.service__banner-title{
	font-weight: 700;
	font-size: 34px;
	margin-bottom: 20px;
}
.service__banner-subtitle{
	font-size: 20px;
	margin-bottom: 0;
	font-weight: 500;
	margin-bottom: 20px;
}
.service__banner-img{
	width: 80%;
	margin: 10px auto;
}
.service__list {
	display: grid;
	grid-template-columns: 30px 1fr;
	gap: 15px;
	align-items: center;
	margin-top: 20px;
}
.service__list-num {
	font-size: 18px;
	font-weight: 700;
	color: #fff;
	position: relative;
	text-align: center;
	z-index: 1;
}
.service__list-num::before{
	content: '';
	position: absolute;
	top: -2px;
	left: 0;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background-color: var(--accent);
	z-index: -1;
}
.service__border-block{
	margin-top: 30px;
	text-align: center;
	padding: 10px;
	font-size: 22px;
	font-weight: 500;
	border: 2px  solid var(--accent);
	border-radius: var(--radius);
}
.service__step {
	position: relative;
	border-top:2px solid var(--accent);
	margin: 15px;
}
.service__step-num {
	position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    width: 2em;
    height: 2.5em;
    line-height: 2.5em;
    background-color: var(--accent);
    text-align: center;
    font-weight: 700;
    color: #fff;
}
.service__step-name {
	margin-bottom: 0.55em;
    font-size: 20px;
    line-height: 1.3em;
    padding-left: 2.6em;
    margin-top: 0.5em;
	font-weight: 700;
}
.service__step-text {
	margin: 25px 0;
}
.service__photo {
	position: relative;
	width: 100%;
	height: 350px;
	overflow: hidden;
	margin-bottom: 20px;
}
.service__photo::before {
	font-family: "Font Awesome 6 Free";
    content: "\f00e";
	font-weight: 700;
    position: absolute;
    top: -10%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: auto;
    width: 2em;
    height: 2em;
    line-height: 2em;
    text-align: center;
    color: #fff;
    font-size: 1.5em;
    z-index: 7;
    -webkit-transition: all .35s ease;
    transition: all .35s ease;
	pointer-events: none;
}
.service__photo:hover::before {
    top: 50%;
}
.service__photo:hover::after{
	opacity: 1;
}
.service__photo:after {
	content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,.5);
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 5;
    -webkit-transition: all .35s ease;
    transition: all .35s ease;
	pointer-events: none;
}
.service__photo a{
	width: 100%;
	height: 100%;
	position: absolute;
}
.service__photo img{
	object-fit: cover;
	height: 100%;
}
.service__photo-title {
    position: absolute;
    z-index: 6;
    bottom: 1em;
    width: 85%;
    margin: auto;
    left: 0;
    right: 0;
    background: rgba(0,0,0,.65);
    color: #fff;
    font-size: 1em;
    font-weight: 300;
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
    padding: 10px;
    line-height: 1.2em;
}
.service__worker {
	position: relative;
	width: 100%;
	height: 340px;
	overflow: hidden;
	margin-bottom: 20px;
}
.sevice__worker-img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
.service__worker-text {
	position: absolute;
	bottom: 0;
	left: 0;
	text-align: center;
	color: #fff;
	background-color: var(--accent);
	width: 100%;
	padding: 5px;
}
.service__worker-name {
	font-weight: 700;
	font-size: 20px;
	margin-bottom: 5px;
}
.service__worker-post {
	margin-bottom: 0;
}

/* ACCORDION */
.accordion {
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
	margin-bottom: 10px;
}
.accordion__title {
	background-color: #ededed;
	font-weight: 700;
	font-size: 20px;
	padding: 15px;
	border-radius: var(--radius);
	cursor: pointer;
	transition: all .3s linear;
}
.accordion__title:hover{
	background-color: var(--text);
	color: #fff;
}
.accordion__title i{
	color: var(--accent);
	margin-right: 10px;
	transition: transform .3s ease;
}
.accordion__content {
	padding: 15px;
	background-color: #fff;
	display: none;
}

/*   BLOG */
.free-wall{width:100%;height:100%}

@keyframes start{from{-webkit-transform:scale(0);transform:scale(0)}
to{-webkit-transform:scale(1);transform:scale(1)}
}
@-webkit-keyframes start{from{-webkit-transform:scale(0)}
to{-webkit-transform:scale(1)}
}
.free-wall .brick[data-state=start]{display:block;opacity:1;animation:start .5s;-webkit-animation:start .5s}
.free-wall .brick[data-state=move]{transition:top .5s,left .5s,width .5s,height .5s;-webkit-transition:top .5s,left .5s,width .5s,height .5s}
.grid-last-news{-webkit-box-shadow:0 7px 14px 0 rgba(151,160,204,.12);box-shadow:0 7px 14px 0 rgba(151,160,204,.12);-webkit-transition:all .3s ease;transition:all .3s ease;height:100%}
.grid-last-news article,.grid-last-news article header{height:100%}
.grid-last-news .hentry{margin:0}
.entry-header__image--grid{-webkit-transition:all .8s;transition:all .8s;width:100%;height:100%}
.entry-header__image--full{width:100%;height:100%}
.entry-header__image--colorbg{background:var(--accent);background:-webkit-gradient(linear,left top,right top,from(var(--accent)),to(#ee3939));background:linear-gradient(to right,var(--accent),#ee3939)}
.grid-entry-content{padding-top:20px}
.entry-description--grid{font-size:.8em;color:#fff;font-weight:400;line-height:1.6em}
.last-news__title--colorbg{color:#fff;text-decoration: none;font-weight: 700;}
.last-news__title--grid{font-size:1.3em;line-height:1.3em;margin-top:0}
.entry-category__name--grid{margin:1em 0 .77em;position:absolute;bottom:0}
.entry-category__name--grid a{display:inline-block;margin:.15em 0;line-height:.15em;font-size:.8em}
.link--grid{position:relative;width:100%;height:100%;}
.link--grid::before{content: '';position:absolute;width:100%;height:100%;top:0;left:0;background-color:rgba(0,0,0,.1)}
.link--grid-bg::before{content: '';background-color:rgba(0,0,0,.5)}
.grid-entry-content--colorbg{position:absolute;top:0;padding:1em;z-index:5;height:100%}
.grid-entry-content--smallpost{padding:.5em 1em;background-color:#e9e9e9}
.grid-entry-content--smallpost .entry-description--grid,.grid-entry-content--smallpost .last-news__title--colorbg{color:#000}
.grid-entry-content--smallpost .last-news__title--grid{margin-top:.5em}
.link-news__title:focus,.link-news__title:hover{text-decoration:none;color:#fff}
.link-news__title--small:focus,.link-news__title--small:hover{text-decoration:none}
.last-news__title--fixedh{max-height:50px;overflow:hidden}
.entry-header__image{
	width: 100%;
	object-fit: cover;
}
.grid-last-news--small .entry-header__image{
	max-height: 160px;
}
.entry-category__name--grid a {
    display: inline-block;
    margin: 0.15em 0;
    line-height: .15em;
    font-size: .8em;
	text-decoration: none;
}
.entry-category__name a {
    background-color: var(--accent);
    padding: 5px;
    color: #fff;
    display: inline-block;
    margin: 0.5em 0;
    line-height: 1.3em;
}
.article__img{
	max-width: 100%;
	height: auto;
	max-height: 400px;
    object-fit: cover;
    margin: 10px 0;
}
.schemaorg-item{
	display: none;
}
#breadcrumbs{
	font-size: 14px;
	margin-bottom: 15px;
}
.post-category__categorylink {
	text-decoration: none;
    margin-right: 2px;
    margin-bottom: 2px;
    padding: 1.2em 1em;
    display: inline-block;
    background-color: var(--accent);
    font-size: .7em;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
}
.post-category__categorylink:hover{
	text-decoration: underline;
	color: #fff;
}
.entry-title{
	font-weight: 700;
	margin-top: 0.3em;
    line-height: 1.15em;
    font-size: 2em;
}
.cat-item a{
	color: var(--text);
}
.recent-posts,.single-blinks{border-bottom:3px solid var(--accent)}
.single-blinks{margin-top:45px;border-top:3px solid var(--accent);padding:1em 0;display: flex;}
.single-blinks__item{width:50%;float:left;padding:1em;font-weight:800}
.single-blinks__item--prev{border-right:1px solid #ccc}
.single-blinks__item--next{text-align:right}
.single-blinks__pre{margin-bottom:.4em;font-size:.9em;color:#a89a9d}
.single-blinks__item a{color:var(--text);text-decoration:none;-webkit-transition:all .35s ease;transition:all .35s ease}
.single-blinks__item a:hover{text-decoration:none;color:var(--accent)}
.single-socwrapper{padding:0 1.5em}
.single-socwrapper__title{margin-bottom:1em;font-size:1.15em}
.recent-post__item{margin-bottom:1.5em;position:relative}
.recent-post__categoryname{position:absolute;z-index:3;top:1em;left:0;font-size:.75em;background-color:var(--accent);color:#fff;display:inline-block;padding:1em .8em;-webkit-transition:all .35s ease;transition:all .35s ease}
.recent-post__categoryname:hover{background-color:#241F20;color:#fff;text-decoration:none}
.recent-post__photolink{display:block;overflow:hidden}
.recent-post__photolink:hover .size-recent-post__thumbnails{-webkit-transform:scale(1.1);-ms-transform:scale(1.1);transform:scale(1.1)}
.size-recent-post__thumbnails{-webkit-transition:all 2s ease;transition:all 2s ease}
.recent-posts{background-color:#f8f8f8}
.recent-post__title{margin-top:.5em;line-height:1.3em}
.recent-post__titlelink{-webkit-transition:all .35s ease;transition:all .35s ease}
.recent-post__titlelink:hover{text-decoration:none;color:var(--accent)}
.recent-post-meta{font-size:.8em;color:#907f82;margin-top:.7em}
.recent-post-meta__item{display:block}
.recent-posts__maintitle{font-size:1.3em;margin-bottom:1em}
.recent-posts__maintitleinner{background-color:#241F20;color:#fff;padding:.5em .8em;display:inline-block;border-bottom:4px solid var(--accent)}
.widget-area{
	top: -430px;
    position: sticky;
}
.widget-area .map,.blog__map.map{
	width: 100%;
	height: 240px;
	border: 2px solid var(--accent);
	border-radius: var(--radius);
	margin: 10px 0;
}
.widget-area .h3{
	font-size: 18px;
}
.widget{
	margin-bottom: 40px;
}
.search-field{
	border: 1px solid #ddd;
}
.search-submit{
	font-size: 16px;
	padding: 8px;
}
.search-title a{
	color: var(--text);
	font-weight: 700;
}
.search-item{
	margin-bottom: 20px;
}
.read-more-link a{
	color: var(--accent);
	font-weight: 700;
}
.entry-category-name a{
	color: var(--accent);
}
.entry-content h2 {
    line-height: 1.1em;
    font-weight: 600;
    position: relative;
    margin-bottom: 1em;
    font-size: 1.7em;
	margin-top: 1em;
    padding: 0;
}
.entry-content h2:after {
    content: "";
    position: absolute;
    bottom: -13px;
    left: 0;
    width: 14%;
    height: 3px;
    background-color: #ED1B2E;
}
.entry-content iframe{
	width: 100%;
}
.entry-meta__item--date{
	font-size: 14px;
}
.numeric-navigation__list{margin:0;padding:0;text-align:center}
.numeric-navigation__list li:after{display: none;}
@media only screen and (max-width:62em){.numeric-navigation__list{padding-bottom:1.5em}
}
.numeric-navigation__item{display:inline-block;margin:0 .1em .35em}
.numeric-navigation__item a{display:inline-block;padding:1em;line-height:1;text-decoration:none;color:var(--text);border:1px solid var(--text);-webkit-transition:all .35s ease;transition:all .35s ease}
.numeric-navigation__item a:hover,.numeric-navigation__item.numeric-navigation__item--active a{text-decoration:none;border-color:var(--accent);color:var(--accent)}
.entry-content blockquote{clear:both;padding:1.25em .9375em .9375em 3em;margin:1.25em 0;font-size:1.2em;border-left:none;position:relative;font-family:Georgia,serif;font-style:italic;color:var(--accent);word-wrap:break-word}
.entry-content blockquote:before,.entry-content ul:not(.answers) li:after{font-family:'Font Awesome 5 Free';font-weight:700;top:0;text-align:center}
.entry-content blockquote:before{content:"\f10d";color:var(--accent);font-size:2em;font-style:normal;position:absolute;left:0}
.entry-content blockquote:after{content:""}
.entry-content blockquote p{margin-bottom:0}

@media only screen and (max-width:62em){.brick{width:100%!important}
}
.table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 1rem;
    background-color: transparent;
}
.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0,0,0,.05);
}
.table td, .table th {
    padding: 0.75rem;
    vertical-align: top;
    border-top: 1px solid #dee2e6;
}
.remember{border:2px solid var(--accent);margin-bottom:1em;-webkit-border-radius:2px;border-radius:2px}
.remember__image{padding:1.5em;width: 100%;}
.remember__text{height:100%;display:table}
.remember__text--description{font-size:1.2em;margin-bottom:0;padding:1em .5em;line-height:1.4em;display:table-cell;vertical-align:middle}
.remember__text--title{font-weight:700}


/* DIAGNOSTIC */
.xray-animation{position:relative}
.xray-animation__front{position:relative;z-index:4;top:0;left:0;width:100%;padding-bottom:52.4644%;background-image:url(../images/car-diagnostics-front.png);background-repeat:no-repeat;background-size:cover}
.xray-animation__glass{position:absolute;z-index:5;top:0;overflow:hidden;width:27%;padding-bottom:28%;-webkit-animation:anim_glass 16s linear infinite;animation:anim_glass 16s linear infinite;-webkit-border-radius:50%;border-radius:50%;background:no-repeat #000;-webkit-box-shadow:0 0 0 5px #fff,0 0 15px 2px rgba(0,0,0,.3);box-shadow:0 0 0 5px #fff,0 0 15px 2px rgba(0,0,0,.3)}
.xray-animation__back{position:absolute;z-index:4;top:0;left:0;width:555px;height:291px;-webkit-transform:translate(0,0);-ms-transform:translate(0,0);transform:translate(0,0);-webkit-animation:anim_car_back 16s linear infinite;animation:anim_car_back 16s linear infinite;background-image:url(../images/car-diagnostics-back.png);background-repeat:no-repeat;background-size:cover}
@media only screen and (max-width:75em){
	.xray-animation{padding-top:.5em}
	.xray-animation__back{top:7px;width:455px;height:230px}
}
.xray-animation__text{font-size:1em;font-weight:800;color:#4b6067;position:absolute;bottom:-1em;width:100%;text-align:center}
.xray-animation__dot--firstdot{-webkit-animation:dot 1.3s infinite;animation:dot 1.3s infinite;-webkit-animation-delay:0s;animation-delay:0s;opacity:0}
.xray-animation__dot--seconddot{-webkit-animation:dot 1.3s infinite;animation:dot 1.3s infinite;-webkit-animation-delay:.2s;animation-delay:.2s;opacity:0}
.xray-animation__dot--thirddot{-webkit-animation:dot 1.3s infinite;animation:dot 1.3s infinite;-webkit-animation-delay:.3s;animation-delay:.3s;opacity:0}
@-webkit-keyframes dot{0%,50%{opacity:0}100%{opacity:1}}
@keyframes dot{0%,50%{opacity:0}100%{opacity:1}}
@-webkit-keyframes anim_glass{0%,100%{-webkit-transform:translate(0,0);transform:translate(0,0)}25%{-webkit-transform:translate(240%,-4%);transform:translate(240%,-4%)}40%{-webkit-transform:translate(260%,101%);transform:translate(260%,101%)}50%{-webkit-transform:translate(260%,0);transform:translate(260%,0)}75%{-webkit-transform:translate(-20%,90%);transform:translate(-20%,90%)}88%{-webkit-transform:translate(20%,0);transform:translate(20%,0)}}
@keyframes anim_glass{0%,100%{-webkit-transform:translate(0,0);transform:translate(0,0)}25%{-webkit-transform:translate(240%,-4%);transform:translate(240%,-4%)}40%{-webkit-transform:translate(260%,101%);transform:translate(260%,101%)}50%{-webkit-transform:translate(260%,0);transform:translate(260%,0)}75%{-webkit-transform:translate(-20%,90%);transform:translate(-20%,90%)}88%{-webkit-transform:translate(20%,0);transform:translate(20%,0)}}
@-webkit-keyframes anim_car_back{0%,100%{-webkit-transform:translate(0,0);transform:translate(0,0)}25%{-webkit-transform:translate(-64.4328%,2.13058%);transform:translate(-64.4328%,2.13058%)}40%{-webkit-transform:translate(-69.8022%,-53.79725%);transform:translate(-69.8022%,-53.79725%)}50%{-webkit-transform:translate(-69.8022%,0);transform:translate(-69.8022%,0)}75%{-webkit-transform:translate(5.3694%,-47.93814%);transform:translate(5.3694%,-47.93814%)}88%{-webkit-transform:translate(-5.3694%,0);transform:translate(-5.3694%,0)}}
@keyframes anim_car_back{0%,100%{-webkit-transform:translate(0,0);transform:translate(0,0)}25%{-webkit-transform:translate(-64.4328%,2.13058%);transform:translate(-64.4328%,2.13058%)}40%{-webkit-transform:translate(-69.8022%,-53.79725%);transform:translate(-69.8022%,-53.79725%)}50%{-webkit-transform:translate(-69.8022%,0);transform:translate(-69.8022%,0)}75%{-webkit-transform:translate(5.3694%,-47.93814%);transform:translate(5.3694%,-47.93814%)}88%{-webkit-transform:translate(-5.3694%,0);transform:translate(-5.3694%,0)}}

.diagnostic__banner-title{
	font-size: 32px;
	font-weight: 700;
}
.mline {
    position: relative;
    width: 37%;
    margin: 1.2em 0 1em;
    border: none;
    border-top: 1px solid var(--accent);
}
.mline::after {
	content: "";
    position: absolute;
    z-index: 2;
    top: 0;
    width: 50px;
    height: 4px;
    margin-top: -4px;
    background-color: var(--accent);
}
.diagnostic__banner-list{
	font-weight: 600;
}
.diagnostic__subtitle{
	color: var(--accent);
	font-size: 18px;
	margin-bottom: 10px;
	font-weight: 700;
}
.diagnostic__title{
	font-weight: 700;
	font-size: 28px;
}
.diagnostic__phone{
	margin: 20px  0;
}
.diagnostic__icon{
	max-width: 96px;
	margin-bottom: 15px;
}
.diagnostic__circle{
	text-align: center;
	height: 80px;
    width: 80px;
    margin: 10px auto;
	font-size: 21px;
    font-weight: 700;
    line-height: 76px;
    border: 4px solid var(--accent);
    -webkit-border-radius: 50%;
    border-radius: 50%;
}
.diagnostic__text-underline{
	border-bottom: 2px solid var(--accent);
}

/* DIESEL */
.diesel__img{
	width: 80%;
	margin: 15px auto;
}
.diesel__item {
	display: grid;
	grid-template-columns: 56px 1fr;
	gap: 15px;
	margin-bottom: 30px;
}
.diesel__item--right{
	text-align: right;
	grid-template-columns: 1fr 56px;
}
.diesel__item--right .diesel__num{
	order:2;
}
.diesel__num {
	font-size: 20px;
	line-height: 52px;
	font-weight: 700;
	color: #fff;
	position: relative;
	text-align: center;
}
.diesel__num::before{
	content: '';
	position: absolute;
	top: -2px;
	left: 0;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background-color: var(--accent);
	z-index: -1;
}
.diesel__title {
	font-size: 20px;
	margin-bottom: 10px;
}
.diesel__bg{
	background-image: url(../images/service/bg-equipment.jpg);
	background-size: cover;
	position: relative;
}

.wsp-container h2{
	position: relative;
	margin-bottom: 30px;
}
.wsp-container h2::after {
    content: "";
    position: absolute;
    bottom: -13px;
    left: 0;
    width: 14%;
    height: 3px;
    background-color: var(--accent);
}

/* AUTOSERVICES */
.clients__slider{
	overflow: hidden;
	width: calc(100% - 110px);
    margin: 0 auto;
	height: 100%;
}
#map-autoservice{
	width: 100%;
	height: 300px;
}

/* WEBASTO */
.webasto__banner{
	background: url(../images/webasto/header_bg.jpg) center center no-repeat #274F8C;
    background-size: cover;
    height: 670px;
    position: relative;
	display: flex;
    align-items: center;
}
.webasto__banner .col-md-7{
	z-index: 13;
}
.webasto-shadow {
    width: 750px;
    height: 530px;
    position: absolute;
    top: 75px;
    right: 0;
    left: 0;
    margin: auto;
    z-index: 12;
}
.webasto-shadow .blck-shadow {
    position: absolute;
    width: 150px;
    background-color: rgba(34,255,255,.5);
    right: 35px;
    top: 59px;
    height: 400px;
    -webkit-border-radius: 80px 80px 50px 50px;
    border-radius: 80px 80px 50px 50px;
    -webkit-box-shadow: 0 0 292px 60px rgb(218 120 28 / 10%);
    box-shadow: 0 0 292px 60px rgb(218 120 28 / 10%);
    -webkit-animation: landrover_anim 2s linear infinite;
    animation: landrover_anim 2s linear infinite;
    z-index: 10;
}
@keyframes landrover_anim{
	0%, 100% {
		-webkit-box-shadow: 0 0 292px 60px rgb(218 120 28 / 10%);
		box-shadow: 0 0 292px 60px rgb(218 120 28 / 10%);
	}
	50% {
		-webkit-box-shadow: 0 0 292px 60px #f69133;
		box-shadow: 0 0 292px 60px #f69133;
	}
}
.webasto-shadow .blck-img {
    position: absolute;
    right: -13px;
    top: 3px;
    z-index: 12;
}
.webasto__banner-title{
	font-weight: 700;
	color: #fff;
	font-size: 45px;
}
.webasto__banner-subtitle{
	background-color:#E76800;
    font-weight: 700;
    color: #fff;
    padding: 0.4em 1em;
    margin-top: 0.7em;
	margin-bottom: 2em;
	width: fit-content;
}
.table-webasto{
	width: 100%;
    background-color: #fff;
    -webkit-box-shadow: 0 0 22px 0 rgb(0 0 0 / 30%);
    box-shadow: 0 0 22px 0 rgb(0 0 0 / 30%);
    overflow-x: scroll;
}
.table-webasto td,.table-webasto th{
	padding: 25px 15px;
	vertical-align: middle;
}
.table-webasto thead th:first-child{
    background-color: #009e57;
	text-align: left;
}
.table-webasto thead th{
	text-align: center;
    background-color: #00C76D;
	color: #fff;
	font-weight: 700;
}
.table-webasto .table-webasto-grey{
    background-color: #919191;
}
.table-webasto tbody th{
	text-align: left;
    background-color: #F7F7F7;
}
.table-webasto tbody td{
	text-align: center;
	-webkit-transition: all .3s ease;
    transition: all .3s ease;
}
.table-webasto tbody tr:hover td{
	background-color: #e2effc;
}
.table-webasto tbody td span,.table-webasto tbody th span{
	font-size: 14px;
	display: block;
	font-weight: 400;
}
.webasto__plus {
	display: grid;
	grid-template-columns: 64px 1fr;
	gap: 15px;
	margin-bottom: 40px;
}
.webasto__plus-icon {
	margin-top: 7px;
    width: 64px;
    height: 64px;
    display: block;
    border: 2px solid var(--accent);
    -webkit-border-radius: 50%;
    border-radius: 50%;
    text-align: center;
    line-height: 62px;
	font-size: 30px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
.webasto__plus:hover .webasto__plus-icon{
	color: #fff;
	background-color: var(--accent);
}
.webasto__plus-name {
	text-transform: uppercase;
	font-size: 26px;
	margin-bottom: 15px;
	font-weight: 700;
	color: var(--accent);
}
.webasto__step {
	display: grid;
	grid-template-columns: 64px 1fr;
	margin-bottom: 10px;
	cursor: pointer;
}
.webasto__step-num {
	color: #fff;
	padding: 10px 5px;
	background-color: #ba0404;
	text-align: center;
	font-weight: 700;
	-webkit-transition: all .3s ease;
    transition: all .3s ease;
}
.webasto__step:hover .webasto__step-num,.webasto__step.active .webasto__step-num{
	background-color: #0f549e;
}
.webasto__step-text {
	background-color: var(--accent);
	padding: 10px  15px;
	color: #fff;
	-webkit-transition: all .3s ease;
    transition: all .3s ease;
}
.webasto__step:hover .webasto__step-text,.webasto__step.active .webasto__step-text{
	background-color: #1579E4;
}
.how-it-work__schema {
    position: relative;
}
.hiw-point {
    width: 2em;
    height: 2em;
    line-height: 1.8em;
    background-color: var(--accent);
    -webkit-border-radius: 50%;
    border-radius: 50%;
    text-align: center;
    position: absolute;
    border: 2px solid #fff;
    z-index: 12;
    transition: all .3s ease;
	cursor: pointer;
}
.hiw-point .number {
    font-weight: 700;
	color: #fff;
}
.hiw-point .description {
    position: absolute;
	font-size: 14px;
    top: 100%;
    left: 0;
    background-color: #fff;
    font-weight: 700;
    line-height: 1.2em;
    padding: 1em;
    -webkit-border-radius: 13px;
    border-radius: 13px;
    width: 13em;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    margin-left: -2px;
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-box-shadow: 0 0 12px 1px rgb(0 0 0 / 10%);
    box-shadow: 0 0 12px 1px rgb(0 0 0 / 10%);
}
.hiw-point.active .description,.hiw-point:hover .description {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-border-top-left-radius: 0;
    border-top-left-radius: 0;
}
.hiw-point.n1 {
    top: 60%;
    left: 23%;
}
.hiw-point.n2 {
    top: 30%;
    left: 71%;
}
.hiw-point.n3 {
    top: 58%;
    left: 63%;
}
.hiw-point.n4 {
    top: 44%;
    left: 15%;
}
.hiw-point.n5 {
    top: 31%;
    left: 32%;
}
.hiw-point.n6 {
    top: 21%;
    left: 45%;
}
.schema-webasto-air .hiw-point.n1 {
    top: 47%;
    left: 15%;
    z-index: 20;
}
.schema-webasto-air .hiw-point.n2 {
    top: 69%;
    left: 32%;
}
.schema-webasto-air .hiw-point.n3 {
    top: 42%;
    left: 25%;
}
.schema-webasto-air .hiw-point.n4 {
    top: 34%;
    left: 50%;
}
.webasto__sistem-img{
	background-color: #fff;
	border-radius: var(--radius);
	margin-bottom: 20px;
	padding: 45px;
}
.webasto-info-price {
    background-color: #fff;
    padding: 1em 3em 1em 5em;
    width: 90%;
    margin: 2em auto 0;
    border-top: 3px solid var(--accent);
    position: relative;
    z-index: 4;
}
.webasto-info-price:after {
    content: "\f071";
    font-family: "Font Awesome 6 Free";
    font-weight: 700;
    position: absolute;
    height: 2em;
    line-height: 2em;
    width: 2em;
    font-size: 4em;
    text-align: center;
    background-color: var(--accent);
    -webkit-border-radius: 50%;
    border-radius: 50%;
    -webkit-transform: rotate(-18deg);
    -ms-transform: rotate(-18deg);
    transform: rotate(-18deg);
    top: 0;
    bottom: 0;
    margin: auto;
    left: -1em;
    color: #fff;
    z-index: 2;
}
.webasto-bg{
	background: url(../images/webasto/bg-winter.jpg) center center no-repeat #333;
    background-size: cover;
	color:#fff;
}
.webasto__price{
	background-color: #fff;
	color: var(--text);
	padding: 20px;
	margin-bottom: 20px;
}
#modal-description .modal__container{
	max-width: 70%;
}
#modal-description input{
	margin-bottom: 0;
}
#modal-description .modal__header{
	justify-content: end;
}
.modal__title{
	font-size: 24px;
	color: var(--text);
	margin-bottom: 20px;
}
.modal__description{
	margin-bottom: 40px;
}
.modal__item1,.modal__item2{
	font-size: 18px;
	font-weight: 700;
}
.mySwiper,.mySwiper3,.mySwiper5{
	margin-top: 10px;
	cursor: pointer;
	margin-bottom: 10px;
}
.swiper-slide-thumb-active{
	border:2px solid var(--accent);
	border-radius: var(--radius);
}
.webasto__slider-title{
	display: grid;
	grid-template-columns: 35px  1fr;
	gap: 10px;
	padding: 15px;
	background-color: #fff;
	font-size: 24px;
	font-weight: 700;
}

/* SIGNALIZATSIYA */
.signal__banner{
	background: url(../images/signalizatsiya/header_img.jpg) center center no-repeat #131625;
    background-size: cover;
    position: relative;
	padding: 60px 0;
}
.signal__banner-title{
	color: #fff;
	font-size: 34px;
	font-weight: 700;
	margin-bottom: 0;
}
.signal__banner-subtitle{
	font-weight: 700;
	margin: 1em 0;
    color: #e6e6e6;
    background-color: transparent;
    padding: 0.6em 1em 1em;
    border: 5px solid var(--accent);
    border-bottom: none;
    position: relative;
}
.signal__banner-subtitle:after, .signal__banner-subtitle:before {
    content: "";
    height: 5px;
    background-color: var(--accent);
    bottom: 0;
}
.signal__banner-subtitle:before {
    position: absolute;
    left: 0;
    width: 70%;
}
.signal__banner-subtitle:after {
    position: absolute;
    right: 0;
    width: 10%;
}
.wa-form__arrow {
    position: absolute;
    top: -2em;
    right: -13em;
    -webkit-transform: rotate(100deg);
    -ms-transform: rotate(100deg);
    transform: rotate(100deg);
    max-width: 13em;
}
.signal__banner .record__form{
	width:63%;
}
.signal__banner .record__form .btn{
	font-size: 20px;
}
.starline-app {
    position: absolute;
    width: 500px;
    right: 9%;
    bottom: 0;
}
.signal__circle{
	border: 3px solid var(--accent);
    color: var(--accent);
    -webkit-border-radius: 50%;
    border-radius: 50%;
    font-size: 30px;
    font-weight: 800;
    line-height: 114px;
    width: 120px;
	height: 120px;
    margin: 0 auto 10px;
}
.signal__circle i{
	font-size: 40px;
}
.signal__item {
	display: grid;
	grid-template-columns: 42px 1fr;
	gap: 20px;
	margin-bottom: 20px;
}
.signal__item-icon {
	font-size: 32px;
	color: var(--accent);
	text-align: center;
	font-weight: 700;
	line-height: 1.2;
}
.signal__item-icon i{
	color: var(--text);
	font-size: 40px;
}
.signal__item-title {
	font-size: 22px;
	font-weight: 700;
}
.signal__name{
	font-weight: 700;
	text-align: center;
	margin: 15px 0 20px;
	line-height: 1.1;
	width: 100%;
}
.filter-item-block{
	flex-wrap: wrap;
}
.filter-item-block:hover{
	background-color: var(--grey);
	color: var(--text);
}
.filter-item-block .btn--sm{
	font-size: 18px;
	width: 100%;
	padding: 10px;
}
.signal__bg{
	background-repeat: no-repeat;
    background-position: 50% 50%;
	background-image: url(../images/signalizatsiya/bg-img-section-howsi.jpg);
    color: #fff;
	text-align: center;
	padding: 50px 0 30px;
}
.signal__bg .header__phone a{
	color: #fff;
}
.signal__img-circle{
	-webkit-border-radius: 50%;
    border-radius: 50%;
    border: 3px solid #D3D6DB;
	max-width: 195px;
	margin-bottom: 15px;
}

/* BG */
.bg__banner{
	background: url(../images/bg/header_img.jpg) center center no-repeat #131625;
    background-size: cover;
    position: relative;
	padding: 60px 0;
	z-index: 1;
}
.bg__banner::after {
    content: "";
    background-color: rgba(0,0,0,.3);
    z-index: -1;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}
.bg__banner-title{
	text-align: center;
	color: #fff;
	font-size: 34px;
	font-weight: 700;
	margin-bottom: 20px;
}
.bg__banner-subtitle{
	font-weight: 700;
	margin:  0 0 15px;
    color: #e6e6e6;
    background-color: transparent;
    padding: 0.6em 1em 1em;
    border: 5px solid var(--accent);
    position: relative;
}
.bg__banner .record__form{
	width:63%;
}
.bg__banner .record__form .btn{
	font-size: 20px;
}
.bg__item{
	display: grid;
	grid-template-columns: 48px 1fr;
	gap: 15px;
	margin-bottom: 30px;
	width: 90%;
	margin-left:auto;
}
.bg__item i{
	font-size: 40px;
	margin-top: 10px;
	color: var(--accent);
}
.bg__item--left{
	grid-template-columns: 1fr 48px;
	text-align: right;
	width: 90%;
	margin-left: 0;
}
.bg__img{
	width: auto;
	margin: 0  auto;
}

/* CALCULATOR   */
.tab_container{width:100%;margin:0 auto 15px;position:relative}
.tab_container .input-tab,.tab_container section{clear:both;padding-top:10px;display:none}
.tab_container .label-tabs{font-weight:700;font-size:18px;display:block;float:left;width:50%;padding:1.5em;color:#757575;cursor:pointer;text-decoration:none;text-align:center;background:#f0f0f0}
.tab_container #tab1:checked~#content1,.tab_container #tab2:checked~#content2{display:block;padding:20px;background:#fff;color:#717171;border-bottom:2px solid #f0f0f0}
.tab_container .tab-content{-webkit-animation:fadeInScale .7s ease-in-out;animation:fadeInScale .7s ease-in-out}
.tab_container [id^=tab]:checked+label{background:#fff;-webkit-box-shadow:inset 0 3px var(--accent);box-shadow:inset 0 3px var(--accent)}
@media only screen and (max-width:900px){.tab_container label{line-height:1}
.tab_container label span{font-size:.7em}
.tab_container .tab_container{width:98%}
}
@-webkit-keyframes fadeInScale{0%{-webkit-transform:scale(.9);transform:scale(.9);opacity:0}
100%{-webkit-transform:scale(1);transform:scale(1);opacity:1}
}
@keyframes fadeInScale{0%{-webkit-transform:scale(.9);transform:scale(.9);opacity:0}
100%{-webkit-transform:scale(1);transform:scale(1);opacity:1}
}
.tab_container .no_wrap{text-align:center;color:#0ce}
.tab_container .link{text-align:center}
.r-input {
    color: #666;
    width: 80%;
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: border linear .2s,-webkit-box-shadow linear .2s;
    transition: border linear .2s,-webkit-box-shadow linear .2s;
    -o-transition: border linear .2s,box-shadow linear .2s;
    transition: border linear .2s,box-shadow linear .2s;
    transition: border linear .2s,box-shadow linear .2s,-webkit-box-shadow linear .2s;
    border: 1px solid #ccc;
    line-height: 1.5em;
    font-size: 1.2em;
    padding: 0.25em 0.5em;
	display: inline-block;
}
.r-input-span {
    display: inline-block;
    font-size: .9em;
    text-transform: none;
    letter-spacing: normal;
}

.tab-content{display:none;background:#ededed;float:left;width:100%;min-height:23.5em}
.tab-content__into{padding:0 1em;min-height:27em}
.tab-content.current{display:inherit}
.tab-content__header{width:100%;min-height:9.7em;display:table}
.tab-content__new{background-color:var(--accent);padding:1em 2em}
.tab-content__old{background-color:#272822;padding:1em 2em}
.tab-content__old--difference{background-color:#337ab7}
.tab-content__metall{color:#333;position:relative}
.tab-content__title{text-align:center;color:#fff;font-size:1.4em;line-height:1.8em;text-shadow:0 2px 2px rgba(0,0,0,.4)}
.tab-content__title--difference{line-height:4.9em}
.tab-content__valitem{margin-bottom:1em}
.tab-content__valresult{margin-top:2em}
.tab-content__valinput{position:relative}
.tab-content__valinput--disabled{display:inline-block;width:50%;vertical-align:top}
.tab-content__valinput--nbalkaname{display:inline-block;margin-right:.5em}
.tab-content__valinput--nbalka{display:inline-block;vertical-align:top;width:70%}
.tab-content__valinput--teor{margin-bottom:.5em}
.tab-content__valinput input{border:2px solid #444;padding:.3em .4em;font-size:1.2em;font-weight:800;width:100%;-webkit-transition:all .35s ease;-o-transition:all .35s ease;transition:all .35s ease}
.tab-content__valinput input:focus{-webkit-box-shadow:0 4px 20px rgba(0,0,0,.45);box-shadow:0 4px 20px rgba(0,0,0,.45);outline:0}
.input-units{position:absolute;top:0;bottom:0;right:.4em;margin:auto;width:1.5em;height:1.5em;line-height:1em;font-size:1.1em;font-weight:800;z-index:3}
.tab-content__valname{font-weight:800;font-size:.8em;line-height:1.5em}
.tab-content__valname--disabled{display:inline-block;width:40%;margin-right:5%}
.result,.result-shirina,.result-teor{background-color:#fff;color:#272822;font-weight:800;border:2px solid #000;padding:.4em 2em .4em .4em;display:inline-block;font-size:1.1em;width:100%;overflow:hidden;-o-text-overflow:ellipsis;text-overflow:ellipsis}
.result--res,.result-shirina--res,.result-teor--res{color:#337ab7}
.result-pl__new,.result-teor__new,.result__new{background-color:#fff;color:#ed1b2e;font-weight:800;border:2px solid #000;padding:.4em 2em .4em .4em;display:inline-block;font-size:1.1em;width:100%;overflow:hidden;-o-text-overflow:ellipsis;text-overflow:ellipsis}
.tab-content__img{margin-top:38px;text-align:center;padding:0}
.tab-content__newimg{margin-top:90px;text-align:center;padding:0}
.tab-content__valuesdifference{width:80%}
.shin__content{margin:1em 0 0}