@font-face {
    font-family: 'Roboto-Bold';
    src: url('../font/roboto/bold/Roboto-Bold.eot');
    src: local('☺'), url('../font/roboto/bold/Roboto-Bold.woff') format('woff'), url('../font/roboto/bold/Roboto-Bold.ttf') format('truetype'), url('../font/roboto/bold/Roboto-Bold.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto-Black';
    src: url('../font/roboto/black/Roboto-Black.eot');
    src: local('☺'), url('../font/roboto/black/Roboto-Black.woff') format('woff'), url('../font/roboto/black/Roboto-Black.ttf') format('truetype'), url('../font/roboto/black/Roboto-Black.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto-Medium';
    src: url('../font/roboto/medium/Roboto-Medium.eot');
    src: local('☺'), url('../font/roboto/medium/Roboto-Medium.woff') format('woff'), url('../font/roboto/medium/Roboto-Medium.ttf') format('truetype'), url('../font/roboto/medium/Roboto-Medium.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto-Regular';
    src: url('../font/roboto/regular/Roboto-Regular.eot');
    src: local('☺'), url('../font/roboto/regular/Roboto-Regular.woff') format('woff'), url('../font/roboto/regular/Roboto-Regular.ttf') format('truetype'), url('../font/roboto/regular/Roboto-Regular.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}

@keyframes pulse {
    0% {
        transform: scale(0.9);
        opacity: 0.7;
    }
    50% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(0.9);
        opacity: 0.7;
    }
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(0.95);
        opacity: 0.7;
    }
    50% {
        -webkit-transform: scale(1);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(0.95);
        opacity: 0.7;
    }
}
.header>a {
    position: fixed;
    left: 50px;
    top: 230px;
    z-index: 99999;
    width: 44px;
    height: 44px;
    background: #1c65a8;
    font-size: 0;
    border-radius: 50%;
}
.whatsapp,
.viber {
    width: 40px;
    height: 40px;
    display: inline-block !important;
    margin-right: 10px;
    filter: grayscale(.4);
    transition: all .2s linear;
}
.whatsapp:hover,
.viber:hover {
    filter: grayscale(0);
}
.whatsapp {
    background: url(../img/whatsapp.png);
    background-size: cover;
    background-position: center center;
}
.viber {
    background: url(../img/viber.png);
    background-size: cover;
    background-position: center center;
}
.work-time {
    font-size: 14px;
    box-sizing: border-box;
    padding: 0 15px;
}
.top-navigate {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: nowrap;
    align-items: center;
    padding: 10px 0;
}
.top-navigate ul {
    width: 80%;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    margin: 0;
    padding: 0;
}
.top-navigate li {
    list-style-type: none;
    margin-right: 10px;
    position: relative;
    padding-right: 15px;
}
.top-navigate li:after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    border: 2px solid #1c65a8;
    border-bottom: 0;
    border-left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotateZ(45deg);
    transition: all .2s linear;
}
.top-navigate li:last-of-type:after {content: none;}
.top-navigate li:hover:after {transform: translateY(-50%) rotateZ(-135deg);}
.top-navigate a {
    color: #554d4d;
    transition: all .2s linear;
}
.top-navigate a:hover {
    color: #1c65a8;
}
body.no-scroll {
    height: 100%;
    overflow: hidden;
}
.errorDiv {
    padding: 50px 0;
    text-align: center;
}
.errorText {
    text-align: center;
    font-size: 36px;
}
.errorText a {
    font-size: 18px;
    color: #1c65a8;
    transition: all .2s linear;
}
.errorText a:hover {color: #111;}
/************************SCROLL_BAR************************/
[data-simplebar] {
    position: relative;
    z-index: 0;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
}
[data-simplebar="init"] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.simplebar-scroll-content {
    overflow-x: hidden;
    overflow-y: scroll;
    min-width: 100%;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}
.simplebar-content {
    overflow-x: scroll;
    overflow-y: hidden;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    min-height: 100%;
}
.simplebar-track {
    z-index: 1;
    position: absolute;
    right: 0;
    bottom: 0;
    width: 11px;
}
.simplebar-scrollbar {
    position: absolute;
    right: 2px;
    border-radius: 7px;
    min-height: 10px;
    width: 7px;
    opacity: 0;
    -webkit-transition: opacity 0.2s linear;
    transition: opacity 0.2s linear;
    background: black;
    background-clip: padding-box;
}
.simplebar-track:hover .simplebar-scrollbar {
    /* When hovered, remove all transitions from drag handle */
    opacity: 0.5;
    -webkit-transition: opacity 0 linear;
    transition: opacity 0 linear;
}
.simplebar-track .simplebar-scrollbar.visible {opacity: 0.5;}
.simplebar-track.horizontal {
    left: 0;
    width: auto;
    height: 11px;
}
.simplebar-track.vertical {top: 0;}
.horizontal.simplebar-track .simplebar-scrollbar {
    right: auto;
    top: 2px;
    height: 7px;
    min-height: 0;
    min-width: 10px;
    width: auto;
}
.burger {display: none;}
.drop-caret {display: none;}
.form-thanks {
    display: none;
    position: absolute;
    width: 100%;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: #1c65a8;
}
#up_button {
    position: fixed;
    right: 15px;
    bottom: -50px;
    z-index: 120;
    width: 40px;
    height: 40px;
    background: #1c65a8;
    color: #fff;
    border-radius: 50%;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border: 1px solid #fff;
    transition: all .2s linear;
}

#up_button.visible {bottom: 10px;}
body {
    line-height: 1.4;
    height: 100%;
}
html {
    height: 100%;
    font-size: 16px !important;
}
main {flex: 1 0 auto;}
textarea {resize: none;}
.service-full-text a,
.service-first-text a {
    color: #1c65a8;
    transition: all .15s linear;
    text-decoration: none;
    display: inline-block;
    padding: 0 3px 3px;
    position: relative;
}
.service-full-text a:after,
.service-first-text a:after {
    content: '';
    width: 100%;
    height: 1px;
    background: #1c65a8;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: all .15s linear;
}
.service-full-text a:hover,
.service-first-text a:hover {
    color: #554d4d;
}
.service-full-text a:hover:after,
.service-first-text a:hover:after {
    width: 0;
}
a {
    outline: 0;
    text-decoration: none;
}
input:focus {outline: 0;}
.site {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    position: relative;
    overflow: hidden;
    font-size: 16px !important;
    font-family: 'Roboto-Regular', sans-serif;
    color: #554d4d;
}
.container {
    max-width: 1150px;
    min-width: 320px;
    box-sizing: border-box;
    padding: 0 15px;
    margin: 0 auto;
}
.header {
    padding: 15px 0;
    background: #fff;
    position: relative;
}
.header-inner-wrapper {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}
.logo {
    display: inline-block;
    font-size: 0;
}
a.logo:hover img {
    animation-name: pulse;
    -webkit-animation-name: pulse;
    animation-duration: 1.5s;
    -webkit-animation-duration: 1.5s;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
}
.header-right {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 80%;
}
.menu-item {
    font-size: 18px;
    text-transform: uppercase;
}

.main-nav ul {
    padding: 0;
    margin: 0;
}

.main-nav li {
    list-style-type: none;
    display: inline-block;
    margin: 0 10px;
    position: relative;
}
.main-nav li:last-of-type {margin: 0 10px 0 0;}
.menu-item {
    display: inline-block;
    padding: 10px 5px;
    font-size: 16px;
    color: #fff;
    position: relative;
    color: #554d4d;
    transition: all .15s linear;
    overflow: hidden;
}
.menu-item.active:after {
    content: '';
    width: 35px;
    height: 3px;
    background: #1c65a8;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) skewX(-45deg);
}
.menu-item:hover {color: #1c65a8;}
ul.drop-menu {
    display: none;
    position: absolute;
    z-index: 20;
    background: #fff;
    padding: 20px !important;
    left: 0;
    top: calc(100% - 12px);
    transform: translate3d(-50%, 0, 0) skewX(-30deg);
    -webkit-box-shadow: 16px 5px 31px 0px rgba(28, 100, 168, 0.35);
    -moz-box-shadow: 16px 5px 31px 0px rgba(28, 100, 168, 0.35);
    box-shadow: 16px 5px 31px 0px rgba(28, 100, 168, 0.35);
}
.drop-menu a {
    display: inline-block;
    width: 320px;
    text-align: center;
    padding: 10px 15px;
    margin: 0;
    color: #1c65a8;
    transition: all .15s linear;
}
.drop-menu span {
    transform: skewX(30deg);
    display: inline-block;
}
.drop-menu li {margin: 0 0 10px 0 !important;}
.drop-menu a:hover {
    color: #fff;
    background: #1c65a8;
}
.drop-item:hover>.drop-menu {display: block;}
.skew {
    display: inline-block;
    padding: 10px 20px;
    transform: skewX(-30deg);
    transition: all .15s ease;
}
    .skew:hover {transform: skewX(0deg);}
.skew>* {
    display: inline-block;
    transform: skewX(30deg);
    transition: all .15s linear;
}
.callback_form .input-skew {margin: 0 30px;}
.main-button:hover>* {transform: skewX(0deg);}
    .main-button {
        background: #1c65a8;
        color: #fff;
        border: 2px solid #1c65a8;
        transition: all .15s ease;
        -webkit-box-shadow: 16px 5px 31px 0px rgba(28, 100, 168, 0.35);
        -moz-box-shadow: 16px 5px 31px 0px rgba(28, 100, 168, 0.35);
        box-shadow: 16px 5px 31px 0px rgba(28, 100, 168, 0.35);
        cursor: pointer;
    }
.header_phone a{
    color: #fff;
}
.header_phone_text{
    color: #fff;
    font-family: 'Roboto-Bold', sans-serif;
}
.header_phone span{
    display: inline-block;
    transform: skewX(30deg);
    transition: all .15s linear;
}
.header_phone{
    font-size: 14px;
    width: 20%;
    text-align: center;
    background: #1c65a8;
    border: 2px solid #1c65a8;
    transition: all .15s ease;
    cursor: pointer;
    display: inline-block;
    padding: 10px 20px;
    transform: skewX(-30deg);
    transition: all .15s ease;
}
.header_phone:hover{
    transform: skewX(0deg);
}
.header_phone:hover span{
    transform: skewX(0deg);
}
.callback-wrapper {
    padding: 40px 0;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background: #f2f1f1;
    background: -moz-linear-gradient(-45deg, #f2f1f1 1%, #f2f1f1 49%, #ffffff 49%, #ffffff 49%, #ffffff 100%);
    background: -webkit-linear-gradient(-45deg, #f2f1f1 1%, #f2f1f1 49%, #ffffff 49%, #ffffff 49%, #ffffff 100%);
    background: linear-gradient(135deg, #f2f1f1 1%, #f2f1f1 49%, #ffffff 49%, #ffffff 49%, #ffffff 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#f2f1f1', endColorstr='#ffffff', GradientType=1);
    min-height: 165px;
    position: relative;
}
.callback-text {
    font-size: 18px;
    color: #6d6d6d;
    margin-right: 40px;
    width: 20%;
}
.callback-heading {
    font-size: 24px;
    color: #1c65a8;
    font-family: 'Roboto-Black', sans-serif;
}
.input-skew,
.textarea-skew {
    display: inline-block;
    transform: skewX(-30deg);
    background: #fff;
    padding: 4px 15px;
    /* margin:0 30px; */
    border: 1px solid transparent;
    -webkit-box-shadow: 16px 5px 31px 0px rgba(28, 100, 168, 0.35);
    -moz-box-shadow: 16px 5px 31px 0px rgba(28, 100, 168, 0.35);
    box-shadow: 16px 5px 31px 0px rgba(28, 100, 168, 0.35);
    position: relative;
}
.input-skew input {
    display: inline-block;
    padding: 8px 2px;
    border: 0;
    transform: skewX(30deg);
    background-color: transparent;
    width: 100%;
}
select:active,
select:focus {outline: none;}
.input-skew select {
    display: inline-block;
    padding: 8px 2px;
    border: 0 !important;
    transform: skewX(30deg);
    background-color: transparent;
    width: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.input-skew option {color: #554d4d;}
.callback-form .main-button {margin: 0 30px;}
label.error {
    position: absolute;
    top: 100%;
    left: 0;
    transform: skewX(30deg);
    font-size: 12px;
}
.main-section {padding: 50px 0 30px;}
.section-heading {
    font-size: 30px;
    font-family: 'Roboto-Bold', sans-serif;
    text-transform: uppercase;
    margin: 0 0 30px;
    text-align: center !important;
}
.right {text-align: right;}
.center {text-align: center;}
.services {
    background: url(../img/background/serv_bg.png) no-repeat 100% 50%;
    background-size: contain;
}
.services-list {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
}
.service-item {
    width: 30%;
    margin-bottom: 40px;
}
.service-item>a {
    position: relative;
    display: block;
}
.service-img {font-size: 0;}
.service-img img {
    display: inline-block;
    width: 100%;
    height: auto;
}
.service-inner {
    position: absolute;
    width: calc(100% - 40px);
    height: calc(100% - 80px);
    box-sizing: border-box;
    border: 8px solid #1c65a8;
    top: 20px;
    background: #fff;
    left: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    opacity: 0;
    transition: all .4s cubic-bezier(0, .85, .47, .99);
}
.service-name {
    text-align: center;
    font-size: 18px;
    color: #554d4d;
    width: 80%;
}
.service-item>a:hover .service-inner {
    opacity: 1;
    left: 60px;
}
.prefers {
    background: url(../img/background/prefers-bg.jpg) no-repeat;
    background-size: cover;
    padding-bottom: 0;
}
.prefers-list-wrapper {background: rgba(255, 255, 255, .25);}
.prefers-list {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    justify-content: space-between;
    padding: 70px 0;
    align-content: flex-end;
}
.prefer-item {
    width: 20%;
    text-align: center;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    justify-content: space-between;
}
.prefer-ico {
    padding-bottom: 50px;
    font-size: 0;
}
.prefer-name {position: relative;}
.prefer-name:before {
    content: '';
    width: 35px;
    height: 3px;
    background: #1c65a8;
    position: absolute;
    top: -15px;
    left: 80%;
    transform: translateX(-50%) skewX(-45deg);
}
.descr h2 {
    font-family: 'Roboto-Bold', sans-serif;
    font-size: 24px;
    padding-bottom: 15px;
    display: inline-block;
    margin-bottom: 0;
    position: relative;
}
.descr p {padding-left: 15px;}
.descr h2:after {
    content: '';
    width: 35px;
    height: 3px;
    background: #1c65a8;
    position: absolute;
    bottom: 0;
    left: 100%;
    transform: translateX(-50%) skewX(-45deg);
}
.cars-service {
    -webkit-box-shadow: inset 0px 7px 16px 1px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: inset 0px 7px 16px 1px rgba(0, 0, 0, 0.1);
    box-shadow: inset 0px 7px 16px 1px rgba(0, 0, 0, 0.1);
    min-height: 750px;
    background: url(../img/background/dotted-bg.png) no-repeat 0% 50%, url(../img/background/car-bg-2.png) no-repeat 100% 60%;
}
.brands-list,
.models-btn {
    max-width: 650px;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
}
.models-btn {justify-content: space-around;}
.brand-logo {
    display: inline-block;
    margin: 6px;
    width: 18%;
}
.brand-logo img {
    width: 100%;
    height: auto;
}
.pretty-form {
    padding: 95px 0;
    background: url(../img/background/pretty-form-bg.png)center center no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    position: relative;
}
.pretty-form .main-button {
    width: 29%;
    box-sizing: border-box;
}
.order_form {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    -ms-align-items: flex-start;
    align-items: flex-start;
}
.order_form .input-skew {
    width: 26%;
    margin: 0 0 40px;
}
.order_form .textarea-skew {width: 61%;}
.textarea-skew textarea {
    display: inline-block;
    padding: 8px 2px;
    border: 0;
    transform: skewX(30deg);
    background-color: transparent;
    height: 30px;
    box-sizing: border-box;
    width: 100%;
    outline: none;
}
.pretty-form .main-button {height: 46px;}
.page-image {
    position: relative;
    font-size: 0;
}
.page-image img {
    width: 100%;
    height: auto;
}

.page-image-mask {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #134278;
    background: -moz-linear-gradient(45deg, #134278 0%, #99393b 100%);
    background: -webkit-linear-gradient(45deg, #134278 0%, #99393b 100%);
    background: linear-gradient(45deg, #134278 0%, #99393b 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#134278', endColorstr='#99393b', GradientType=1);
    opacity: .5;
}

.blue-heading {
    margin: 55px 0;
    font-size: 40px;
    color: #1c65a8;
    text-transform: uppercase;
    font-family: 'Roboto-Bold', sans-serif;
}

.cont-text-wrapper {
    background-size: contain;
    margin: 0 0 95px;
}

.cont-text {
    width: 50%;
    padding: 25px 0 0;
    margin-bottom: 80px;
}

.link {
    color: #1c65a8;
    font-family: 'Roboto-Black', sans-serif;
    display: inline-block;
    padding: 2px;
    border-bottom: 1px solid #1c65a8;
    transition: all .2s ease;
}

.cont-text-wrapper a {
    font-size: 18px;
    text-transform: uppercase;
}

.link:hover {
    color: #554d4d;
}

.cont_fb {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
}

.cont_fb .input-skew {
    width: 28%;
    margin: 0 0 30px;
}

.service-first-text {
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    justify-content: flex-end;
    padding: 40px 0;
    align-items: center;
}

.block-content {
    width: 40%;
    margin: 0 40px;
}

.block-content h2 {
    display: inline-block;
    font-size: 20px;
    font-family: 'Roboto-Bold', sans-serif;
    position: relative;
    margin: 20px 0;
    padding: 0 0 10px 0;
}

.block-content h2:after {
    content: '';
    width: 35px;
    height: 3px;
    background: #1c65a8;
    position: absolute;
    bottom: 0;
    left: 100%;
    transform: translateX(-50%) skewX(-45deg);
}

.service-first-text>p {
    font-size: 0;
    width: 40%;
}

.service-first-text img {
    display: inline-block;
    width: 100% !important;
    height: auto !important;
}

.blue-separator {
    height: 60px;
    background: #1c65a8;
}

.service-full-text {
    padding: 20px 0;
}

.service-full-text h2,
.service-full-text h3,
.service-full-text h4 {
    color: #1c65a8;
}

.service-full-text h2 {
    margin: 40px 0 20px;
}

.service-full-text ul {
    width: 80%;
    margin: 20px auto;
    padding: 30px 40px;
    border: 2px solid #1c65a8;
    -webkit-box-shadow: 5px 5px 25px -2px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 5px 5px 25px -2px rgba(0, 0, 0, 0.2);
    box-shadow: 5px 5px 25px -2px rgba(0, 0, 0, 0.2);
}

.service-full-text li {
    margin-bottom: 15px;
}

.price-row {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    justify-content: flex-start;
    -ms-align-items: stretch;
    align-items: stretch;
    border-bottom: 1px solid #eee;
    border-top: 1px solid #eee;
    border-left: 1px solid #eee;
    border-right: 1px solid #eee;
}

.price-row>div {
    padding: 5px 15px;
    box-sizing: border-box;
}


/* .price>.price-row:nth-child(even){background:#1c65a830;} */

.price-name {
    color: #1c65a8;
    margin: 10px 0;
    text-align: center;
    text-align: left;
    font-size: 18px;
}

.mark {
    width: 15%;
}

.pricelist-name {
    font-size: 26px;
    text-align: center;
    color: #1c65a8;
}

.price-value {
    width: 15%;
}

.models {
    width: 85%;
}

.mark,
.models {
    border-right: 1px solid #eee;
}

.news-list {
    display: block;
}

.news-item {
    box-sizing: border-box;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
}
.aside-newslist .news-item{
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}
.news-image {
    width: 30%;
    margin-right: 30px;
}

.news-image a {
    display: block;
    overflow: hidden;
    font-size: 0;
}
.news-image img{
    display: block;
    width: 100%;
    height: auto;
}
.news-item {
    margin-bottom: 40px;
}

.news-item img {
    width: 100%;
    height: auto;
    transition: all .15s linear;
}

.news-image>a:hover img {
    transform: scale3d(1.1, 1.1, 1);
}

.news-title {
    margin-bottom: 25px;
}

.news-title a {
    font-size: 26px;
    color: #1c65a8;
    transition: all .2s linear;
}

.news-preview {
    width: 70%;
    position: relative;
    padding-bottom: 40px;
    box-sizing: border-box;
}

.news-title a:hover {
    color: #554d4d;
}

.more_link {
    color: #1c65a8;
    position: absolute;
    left: 0;
    bottom: 40px;
}

.more_link.unb {
    position: absolute;
    left: 0;
    bottom:0px;
}

.article-wrapper {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding-top: 50px;
}
.full-post {width: 70%;}
.aside-right {width: 25%;}
.full-post .post-text img {
    max-height: 400px;
    width: auto !important;
    display: inline-block;
    padding: .5rem;
}
.post-heading {
    text-align: left;
    font-size: 2.5rem;
}
.aside-newslist {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}
.aside-newslist .news-item {width: 100%;}
.aside-heading {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}
.aside-newslist .post-ext{
    width: 100%;
}

.aside-newslist .news-image {
    width: 100%;
    margin-bottom: .2rem;
}
.aside-newslist li {margin-bottom: 2rem;}
.aside-newslist .news-title a {
    font-size: 14px;
    font-weight: 300;
}
.aside-newslist .news-title {margin: 5px 0;}
.aside-newslist .post-date {
    font-size: 12px;
    margin-bottom: 0;
}
.post-heading {margin: 0 0 20px;}
.post-date {margin-bottom: 30px;}
.header-phone {font-family: 'Roboto-Bold', sans-serif;}
.offices-list {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    justify-content: center;
    flex-wrap: nowrap;
    align-items: stretch;
}
.office-item {
    margin-left: 20px;
    box-sizing: border-box;
    padding: 5px;
    width: 23%;
    -webkit-box-shadow: 16px 5px 31px 0px rgba(28, 100, 168, 0.35);
    -moz-box-shadow: 16px 5px 31px 0px rgba(28, 100, 168, 0.35);
    box-shadow: 16px 5px 31px 0px rgba(28, 100, 168, 0.35);
}

.city-name {
    display: inline-block;
    font-size: 20px;
    font-family: 'Roboto-Bold', sans-serif;
    position: relative;
    margin: 20px 0;
    padding: 0 0 10px 0;
    text-align: center;
}

.city-name:after {
    content: '';
    width: 35px;
    height: 3px;
    background: #1c65a8;
    position: absolute;
    bottom: 0;
    left: 100%;
    transform: translateX(-50%) skewX(-45deg);
}

.office-details a,
.office-details address {
    margin-bottom: 7px;
}

.office-details a {
    display: block;
    color: #1c65a8;
    transition: all .2s linear;
}

.office-details a:hover {
    color: #554d4d;
}

.contacts-block {
    padding-bottom: 50px;
}

.contacts-block .offices-list + .offices-list {
  margin: 30px 0 0;
}

.contacts-block .offices-list {
   align-items: flex-start;
   justify-content: flex-start;
}

.contacts-block .office-item {
   margin-left: 0;
   margin-right: 40px;
   flex: 0 0 auto;
}

.contacts-block .office-map {
  width: 100%;
  -webkit-box-shadow: 16px 5px 31px 0px rgba(28, 100, 168, 0.35);
  -moz-box-shadow: 16px 5px 31px 0px rgba(28, 100, 168, 0.35);
  box-shadow: 16px 5px 31px 0px rgba(28, 100, 168, 0.35);
}

.contacts-block .map-cover {
  width: 100%;
  position: relative;
  height: 0;
  padding-bottom: 51.25%;
}

.contacts-block .map-cover iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.cars-list {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: wrap;
}

.cars-list-item {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: 22%;
    margin-right: 15px;
    margin-bottom: 15px;
}

.cars-list-item-img {
    width: 35%;
    box-sizing: border-box;
    border: 3px solid #eee;
    border-radius: 5px;
    margin-right: 15px;
    transition: all .2s linear;
}

.cars-list-item-img img {
    width: 100%;
    height: auto;
}

.cars-list-item-name {
    font-size: 18px;
    text-transform: uppercase;
    width: 50%;
    font-weight: 700;
    color: #554d4d;
    transition: all .2s linear;
}

.cars-list-item:hover .cars-list-item-name {
    color: #1c65a8;
}

.cars-list-item:hover .cars-list-item-img {
    border-color: rgba(28, 101, 168, .5);
}

.mark-list {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.mark-list-item {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    width: 20%;
    margin-top: 15px;
    margin-bottom: 15px;
}

.mark-list-item-name {
    font-weight: 700;
    color: #554d4d;
    transition: all .2s linear;
    text-transform: uppercase;
}

.mark-list-item:hover .mark-list-item-name {
    color: #1c65a8;
}

.models-list {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
}

.models-list-item {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    width: 20%;
    margin: 0 15px;
}

.model-list-item-name {
    font-weight: 700;
    /* color:#554d4d; */
    color: #1c65a8;
    transition: all .2s linear;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.model-list-item-year {
    margin-bottom: 20px;
    color: #111;
}

.model-list-item-price {
    color: #1c65a8;
}

.units-price-table {
    width: 60%;
    min-width: 300px;
    margin: 10px auto 20px;
    border: 1px solid #eee;
}

.price-heading {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: nowrap;
    align-items: baseline;
    border-bottom: 1px solid #eee;
    color: #1c65a8;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 700;
}

.price-body {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
}

.unit-row {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: nowrap;
    -ms-align-items: baseline;
    align-items: baseline;
    border-bottom: 1px solid #eee;
}

.unit-name {
    width: 70%;
    padding: 10px 20px;
    border-right: 1px solid #eee;
}

.unit-price {
    width: 30%;
    padding: 10px 15px;
}
.fors-service-main{
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
    background: #f8f8f8;
    position: relative;
    background-image: url(../images/fors/top-right-linear-bg.png);
    background-position: 100% 0;
    background-repeat: no-repeat;
}
.engine{
    position: absolute;
    top: 33%;
    left: 0%;
    width: 30%;
}
.main-fors{
    position: absolute;
    right: 0;
    top: 50%;
}
.fors-main-heading{
    max-width: 610px;
    text-transform: uppercase;
    font-size: 46px;
    font-weight: 400;
    color:#4b4b4b;
    position: relative;
}
.fors-main-heading div{
    font-size: 36px;
    font-family: 'Roboto-Black', sans-serif;
    color:#1c65a8;
}
.fors-main-heading:before{
    content:'';
    position: absolute;
    top: 60px;
    right: 0;
    width: 140px;
    height: 2px;
    background: #4b4b4b;
    transform: translateX(40%);
}
.fors-main-heading:after{
    content:'';
    position: absolute;
    top:calc(100% + 20px);
    left: 0;
    width: 140px;
    height: 2px;
    background: #4b4b4b;
    transform: translateX(-40%);
}
.fors-section{
    padding: 80px 0 100px;
    background: rgba(245,245,245,.2);
}
.raindow-heading{color:#fff;}
.raindow-heading>span{
    background: -moz-linear-gradient(left, rgba(59,105,162,1) 0%, rgba(197,121,135,1) 100%);
    background: -webkit-linear-gradient(left, rgba(59,105,162,1) 0%,rgba(197,121,135,1) 100%);
    background: linear-gradient(to right, rgba(59,105,162,1) 0%,rgba(197,121,135,1) 100%);
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
}
.fors-section-heading{
    text-align: center;
    text-transform: uppercase;
    font-size: 45px;
    font-family: 'Roboto-Bold', sans-serif;
    margin-top: 0;
    margin-bottom: 75px;
}
.fors-section-heading.first{margin-bottom: 30px;}
.fors-section-subheading{
    text-align: center;
    font-size: 20px;
}
.fors-section-subheading img{margin-left: 5px;}
.fors-services-list{
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding-bottom: 60px;
}
.fors-service-list-item{
    width: calc(33.333% - 40px);
    margin-right: 40px;
    margin-bottom: 150px;
    margin-top: 50px;
    -webkit-box-shadow: 0px 0px 16px 5px rgba(0,0,0,0.1);
    -moz-box-shadow: 0px 0px 16px 5px rgba(0,0,0,0.1);
    box-shadow: 0px 0px 16px 5px rgba(0,0,0,0.1);
    position: relative;
}
.fors-service-list-item-name{
    font-size: 18px;
    color: #404040;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 20px;
    position: absolute;
    left: 0;
    width: 100%;
    text-align: center;
    top:-35px;
}
.fors-service-list-item-bottom{
    position: absolute;
    top:calc(100% + 10px);
    left: 0;
    width: 100%;
    text-align: center;
}
.fors-service-list-item-price{
    font-family: 'Roboto-Bold', sans-serif;
    color:#1c65a8;
    font-size: 20px;
    margin-bottom: 10px;
}
.fors-service-list-item-image{
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.for-service-buy-btn{
    display: inline-flex;
    border: 2px solid #1c65a8;
    color:#1c65a8;
    width: 200px;
    height: 50px;
    justify-content: center;
    align-items: center;
    transition: all .2s linear;
    background: #fff;
}
.for-service-buy-btn:hover{
    color:#fff;
    background: #1c65a8;
}
.fors-service-list-item-descr ul{
    list-style-type: none;
    padding: 0 20px;
}
.fors-service-list-item-descr li{
    text-align: center;
    padding-bottom: 5px;
    margin-bottom: 5px;
    border-bottom: 1px solid #e6e6e6;
}
 .fors-service{
    background: url(../images/fors/keyman.png) no-repeat 100% 0;
    min-height: 600px;
    box-shadow: none;
}
.fors-service .brand-logo{
    width: 20%;
    margin-right: 20px;
    margin-bottom: 20px;
}
.fors-service .brands-list{max-width: 750px;}
.advantages{
    background: rgb(30,87,153);
    background: -moz-linear-gradient(45deg, rgba(30,87,153,1) 0%, rgba(239,127,127,1) 100%);
    background: -webkit-linear-gradient(45deg, rgba(30,87,153,1) 0%,rgba(239,127,127,1) 100%);
    background: linear-gradient(45deg, rgba(30,87,153,1) 0%,rgba(239,127,127,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1e5799', endColorstr='#ef7f7f',GradientType=1 );

}
.advantages-bg-holder{
    background:
        url(../images/fors/left-linear-bg.png) 0 100% no-repeat,
        url(../images/fors/right-linear-bg.png) 100% 0 no-repeat;
}
.advantages-list{
    color:#fff;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    justify-content: space-around;
    align-items: stretch;
    flex-wrap: wrap;
}
.advantage-item{
    width: 30%;
    margin-bottom: 40px;
}
.advantage-item-name{
    font-size: 18px;
    text-transform: uppercase;
    position: relative;
    box-sizing: border-box;
    padding: 0 40px 20px;
    text-align: center;
    margin-bottom: 20px;
}
.advantage-item-name:after{
    content:'';
    width: 220px;
    height: 1px;
    background: #fff;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
}
.advantage-item-descr{
    font-size: 16px;
    text-align: center;
}
.how-we-work{position: relative;}
.how-fors{
    position: absolute;
    left: 0;
    top: -20%;
}
.fors-service-list-item-image img{
    max-width: 100%;
    height: auto;
    display: block;
}
.how-we-work-list{
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    padding-bottom: 80px;
    border-bottom: 1px solid #eee;
}
.how-we-work-item{
    width: calc(20% - 20px);
    margin:0 10px;
    text-align: center;
}
.modal-close{
    font-size: 36px;
    position: absolute;
    top: 0px;
    right: 10px;

}
.how-we-work-item-desc{font-size: 14px;}
.how-we-work-item-name{
    font-size: 18px;
    font-family: 'Roboto-Bold', sans-serif;
    margin-bottom: 35px;
}
.how-we-work-item-icon{margin-bottom: 30px;}
.service-modal{
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
}
.fors-modal-inner{
    padding: 40px 0;
    text-align: center;
    position: relative;
}
.fors-modal-inner .input-skew{
    width: 48%;
    margin-bottom: 15px;
}
.mfp-content{
    max-width: 600px;
    background: #fff;
}
.fors-modal-header{
    font-family: 'Roboto-Bold', sans-serif;
    margin-bottom: 40px;
    font-size: 32px;
    color: #1c65a8;
}

/* ============ BEGIN tuning ============ */

.main-banner {
    background: url(../img/main_banner.jpg) center no-repeat;
    background-size: cover;
    position: relative;
    padding: 90px 0;
}

.main-banner .container {
    position: relative;
}

.main-banner .container:before {
    content: '';
    position: absolute;
    right: -390px;
    bottom: -90px;
    width: 890px;
    height: 424px;
    background: url(../img/2312.png) center no-repeat;
}

.main-banner__block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    cursor: pointer;
}

.main-banner__block:not(:last-child) {
    margin-bottom: 45px;
}

.main-banner__img {
    height: auto;
    margin-top: 5px;
    max-width: 60px;
    width: 100%;
}

.main-banner__img img {
    width: 100%;
    max-width: 60px;
    height: auto;
}

.main-banner__p {
    font: 28px/40px 'Roboto-Bold', sans-serif;
    color: #fff;
    margin: 0;
    width: 550px;
    margin-left: 20px;
}

.main-banner__bg {
    position: absolute;
    bottom: 2px;
    right: 0;
}

    /* ============ BEGIN short-descrip ============ */

.short-descrip {
    padding: 150px 0 90px;
}

.short-descrip .section-heading {
    color: #0D4475;
    margin-bottom: 80px;
}
.short-desc__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    position: relative;
}

.short-desc__block {
    border: 8px solid #0D4475;
    background: #fff;
    padding: 30px 40px;
    width: 508px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 30px;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
}

.short-desc__img {
    overflow: hidden;
}

.short-desc__img img {
    max-width: 893px;
    height: auto;
    width: 100%;
}

.short-desc__h2 {
    font: 24px/36px 'Roboto-Bold', sans-serif;
    color: #0D4475;
    margin: 0 0 15px 0;
}

.short-desc__p {
    font-size: 16px;
    line-height: 28px;
    margin: 0;
}

    /* ============ END short-descrip ============ */
    /* ============ BEGIN long-descrip ============ */

.long-descrip {
    padding: 80px 0 90px;
    background: #0D4475;
}

.long-descrip h3 {
    margin: 0 0 30px 0;
    color: #fff;
    font-size: 1.5em;
}

.long-descrip p {
    color: #fff;
    line-height: 28px;
    margin: 0;
}

.long-descrip p:not(:last-child) {
    margin: 0 0 30px 0;
}

.long-descrip__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.long-descrip img {
    padding: 32px 20px;
    background: transparent;
    margin-right: 25px;
}

.long-descrip__wrap ul {
    padding: 0;
    margin: 0 0 30px 0;
}

.long-descrip__wrap li {
    color: #fff;
    line-height: 28px;
    margin: 0 0 5px 20px;
}

    /* ============ END long-descrip ============ */
    /* ============ BEGIN content-descrip ============ */

.content-descrip {
    padding: 90px 0 95px;
    background: url(../img/bg-content.png) center no-repeat, #F2F1F1;
}

.content-descrip__wrap {
    width: 100%;
    max-width: 790px;
    margin: 0 auto;
}

.content-descrip__wrap ul {
    width: 80%;
    margin: 20px auto;
    padding: 30px 40px;
    border: 2px solid #1c65a8;
    -webkit-box-shadow: 5px 5px 25px -2px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 5px 5px 25px -2px rgba(0, 0, 0, 0.2);
    box-shadow: 5px 5px 25px -2px rgba(0, 0, 0, 0.2);
}

.content-descrip__wrap li {
    margin-bottom: 15px;
}

.content-descrip h3 {
    margin: 0 0 30px 0;
    color: #0D4475;
    font-size: 1.5em;
}

.content-descrip p {
    color: #6D6D6D;
    line-height: 28px;
    margin: 0;
}

.content-descrip p:not(:last-child) {
    margin: 0 0 30px 0;
}

    /* ============ END content-descrip ============ */
    /* ============ BEGIN tuning-callback ============ */

.tuning-callback {
    background: url(../img/bg-form.jpg) center no-repeat;
    background-size: cover;
}

.tuning-callback .callback-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column wrap;
            flex-flow: column wrap;
    background: transparent;
    padding: 80px 0 110px;
}

.tuning-callback .callback-text {
    text-align: center;
    width: 100%;
    margin: 0;
}

.tuning-callback .callback-text p {
    line-height: 26px;
    color: #fff;
    margin: 0 0 40px 0;
}

.tuning-callback .callback_form {
    margin: 0 -26px;
}

.tuning-callback .main-button {
    padding: 12px 60px;
}

.tuning-callback .callback-heading {
    color: #fff;
    margin: 0 0 30px 0;
    font: 30px/40px 'Roboto-Bold', sans-serif;
}

.tuning-callback .callback-form {
    width: 100%;
}

    /* ============ END tuning-callback ============ */
/* ============ END tuning ============ */

@media screen and (max-width:1366px) {
    .header-right {
        width: inherit;
    }
    .callback-wrapper {
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 40px 15px;
        box-sizing: border-box;
    }
    .callback-text {
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
        margin-right: 0;
    }
}
@media screen and (max-width: 1100px) {
    .full-post .post-text img {
        width: 100% !important;
        height: auto !important;
    }
    .aside-newslist .news-item {
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .aside-newslist .news-image {
        width: 100%;
    }
}
@media screen and (max-width: 1024px) {
    .cars-service {
        min-height: 0;
        background: url(../img/background/dotted-bg.png) no-repeat 0% 50%;
    }
    .service-inner {
        opacity: 1;
        border: none;
        background: transparent;
        color: #fff;
        width: 100%;
        height: 100%;
        box-sizing: border-box;
        padding: 20px;
        left: 0;
        top: 0;
        display: -webkit-flex;
        display: -ms-flex;
        display: flex;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .service-name {
        color: #fff;
        width: 100%;
        box-sizing: border-box;
        font-size: 20px;
    }
    .service-img img {
        filter: brightness(.85)
    }
    .service-item>a:hover .service-inner {
        left: 0;
        opacity: .85;
    }
    .service-inner .main-button {
        position: absolute;
        bottom: 60px;
    }
    .brands-list {
        width: 100%;
        justify-content: space-between;
        max-width: none;
    }
    .brand-logo {
        text-align: center;
    }
    .order_form .input-skew {
        width: 45%;
    }
    .drop-item:hover>.drop-menu {
        display: none;
    }
    .menu-item {
        font-size: 16px;
    }
    .header .main-button {
        padding: 7px 15px;
    }
}
@media screen and (min-width:980px) {
    .main-nav>ul {
        display: -webkit-flex;
        display: -ms-flex;
        display: flex;
        align-items: center;
    }
}
@media screen and (max-width:1440px){
    .engine {
        top: 60%;
        width: 25%;
    }
    .main-fors{width: 15%;}
}
@media screen and (max-width:1280px){
    .advantages-bg-holder {
        background: url(../images/fors/left-linear-bg.png) -10% 100% no-repeat, url(../images/fors/right-linear-bg.png) 100% 0 no-repeat;
    }
}
@media screen and (max-width:1200px) {
    .main-banner .container:before {
        right: -450px;
        bottom: -120px;
        background-size: 800px 380px;
    }
    .main-banner__block:not(:last-child) {
        margin-bottom: 40px;
    }
    .main-banner__list {
        margin-left: 50px;
    }
    .main-banner__p {
        font-size: 24px;
        line-height: 36px;
    }
    .long-descrip, .content-descrip {
        padding: 80px 30px 90px;
    }
    .tuning-callback .callback_form {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: distribute;
            justify-content: space-around;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-flow: row wrap;
                flex-flow: row wrap;
        margin: 0;
    }
    .tuning-callback .callback_form .input-skewб
    .tuning-callback .main-button {
        margin: 0;
    }
}
@media screen and (max-width:991px) {
    .main-banner .container:before {
        display: none;
    }
    .main-banner {
        background: #004177;
    }
    .main-banner__block {
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }
    .main-banner {
        padding: 70px 0;
    }
    .short-desc__block {
        left: 0;
        position: static;
        -webkit-transform: none;
            -ms-transform: none;
                transform: none;
        width: 100%;
        margin: 0 auto;
        -webkit-box-ordinal-group: 3;
            -ms-flex-order: 2;
                order: 2;
    }
    .short-desc__wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-flow: column wrap;
                flex-flow: column wrap;
    }
    .short-desc__img {
        -webkit-box-ordinal-group: 2;
            -ms-flex-order: 1;
                order: 1;
        text-align: center;
    }
    .short-desc__h2 {
        width: 100%;
    }
    .short-descrip .section-heading {
        margin-bottom: 50px;
    }
    .short-descrip {
        padding: 90px 0;
    }
    .long-descrip__wrap li {
        list-style-position: inside;
        margin: 0 0 5px 0;
    }
    .content-descrip {
        background: #F2F1F1;
    }
    .main-banner__img {
        margin-top: 5px;
    }
    .long-descrip__wrap {
        display: block;
    }
    .tuning-callback .callback_form .input-skew {
        margin: 0 0 20px;
    }
    .tuning-callback .main-button {
        margin: 0 20%;
    }
}
@media screen and (max-width:980px) {
    .advantage-item{width: 45%;}
    .breadcrumbs {display: none;}
    .header-right {
        width: 70%;
        justify-content: space-around;
    }
    .logo {width: 20%;}
    .logo img {
        width: 100%;
        height: auto;
    }
    .header_phone{
        width: 30%;
    }
    .main-nav {
        display: flex;
        position: absolute;
        align-items: center;
        justify-content: space-around;
        top: 0;
        right: -500px;
        z-index: 10;
        background: #fff;
        width: 320px;
        height: 100vh;
        transition: all .4s ease-in-out;
    }
    .main-nav.menu-active {
        right: 0;
        -webkit-box-shadow: -2px 5px 12px 1px rgba(28, 100, 168, 0.61);
        -moz-box-shadow: -2px 5px 12px 1px rgba(28, 100, 168, 0.61);
        box-shadow: -2px 5px 12px 1px rgba(28, 100, 168, 0.61);
    }
    .burger {
        display: inline-block;
        width: 50px;
        height: 50px;
        position: absolute;
        right: 10px;
        border: 1px solid #1c65a8;
        overflow: hidden;
        border-radius: 3px;
        z-index: 30;
    }
    .lines,
    .cross {
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        right: 0;
        box-sizing: border-box;
        padding: 5px;
        display: -webkit-flex;
        display: -ms-flex;
        display: flex;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        justify-content: space-around;
    }
    .lines span {
        display: block;
        height: 3px;
        border-radius: 2px;
        background: #4a8dcb;
        transition: all .2s ease-in-out;
    }
    .lines span:first-of-type {transition: all .15s ease-in-out;}
    .lines span:nth-child(2) {transition: all .35s ease-in-out;}
    .burger-active .lines span:last-of-type {transition: all .2s ease-in-out;}
    .burger-active .lines span:first-of-type {transform: translateX(-120px);}
    .burger-active .lines span:nth-child(2) {transform: translateX(-90px);}
    .burger-active .lines span:last-of-type {transform: translateX(-60px);}
    .how-we-work-list{
        flex-wrap: wrap;
        justify-content: space-around;
    }
    .how-we-work-item{
        width: calc(33% - 20px);
        margin: 0 10px 50px;
    }
    .cross span:first-of-type {
        position: absolute;
        display: block;
        height: 3px;
        border-radius: 2px;
        background: #4d1ca8;
        transition: all .3s ease-in-out;
        top: -20px;
        transform: rotateZ(45deg);
        z-index: 10;
        width: 100%;
        left: 0;
    }
    .cross span:last-of-type {
        position: absolute;
        display: block;
        height: 3px;
        border-radius: 2px;
        background: #4d1ca8;
        transition: all .1s ease-in-out;
        bottom: -20px;
        transform: rotateZ(-45deg);
        z-index: 10;
        width: 100%;
        left: 0;
    }
    .burger-active .cross span:first-of-type {
        top: calc(50% - 2px);
    }
    .burger-active .cross span:last-of-type {
        bottom: calc(50% - 1px);
    }
    .main-nav li {
        display: block;
        margin: 0;
        text-align: center;
    }
    .menu-item {
        display: block;
        padding: 15px 0;
        text-align: center;
        position: relative;
    }
    .menu-item:focus {
        background: #1c65a8;
        color: #fff;
    }
    ul.drop-menu {
        display: none;
        position: static;
        transform: none;
        box-shadow: none;
        box-sizing: border-box;
        padding-left: 20px;
        padding: 0 !important;
        -webkit-box-shadow: inset 0px 0px 18px 0px rgba(28, 100, 168, 0.41);
        -moz-box-shadow: inset 0px 0px 18px 0px rgba(28, 100, 168, 0.41);
        box-shadow: inset 0px 0px 18px 0px rgba(28, 100, 168, 0.41);
    }
    .drop-menu span {
        transform: none;
    }
    .drop-menu a {
        display: block;
        width: 100%;
        font-size: 13px;
    }
    .drop-caret {
        display: flex;
        position: absolute;
        height: 50px;
        width: 50px;
        background: red;
        z-index: 20;
        top: 0;
        right: 0;
        justify-content: space-around;
        align-items: center;
        background: #1c65a82e;
    }
    .arr {
        transform: rotateX(0);
        transition: all .35s linear;
    }
    .arr.active {
        transform: rotateX(180deg);
    }
    .main-nav ul {
        width: 100%;
    }
    .article-wrapper {
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .full-post {
        width: 100%;
    }
    .aside-right {
        width: 100%;
    }
    .aside-newslist {
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        justify-content: flex-start;
        width: 100%;
        padding: 0
    }
    .aside-newslist .news-item {
        width: 30%;
        margin-right: 10px;
    }
    .news-list {
        display: -webkit-flex;
        display: -ms-flex;
        display: flex;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        justify-content: space-between;
        -ms-align-items: stretch;
        align-items: stretch;
        flex-wrap: wrap;
    }
    .news-item {
        width: 48%;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .news-preview{width: 100%;}
    .news-image {
        width: 100%;
        margin-bottom: 20px;
    }
    .news-title a {font-size: 18px;}
    .news-title {margin-bottom: 10px;}
    .more_link {bottom: 0;}
    .offices-list {
        flex-wrap: wrap;
        justify-content: center;
    }
    .contacts-block .offices-list {
      justify-content: center;
    }
    .contacts-block .office-item {
      margin-right: 0;
    }
    .office-item {
        width: 45%;
        margin-right: 20px;
        margin-bottom: 20px;
    }
    .cars-list-item {width: 30%;}
    .mark-list-item {width: 30%;}
    .fors-services-list{justify-content: space-around;}
    .fors-service-list-item{
        width: 45%;
        margin-right: 0;
    }
    .fors-main-heading{
        max-width: 640px;
        margin: 0 auto;
        text-align: center;
    }
}
@media screen and (max-width:860px) {
    .advantage-item{
        width: 50%;
        max-width: 280px;
        margin-top:0;
        margin-left: auto;
        margin-right: auto;
    }
    .callback-form .main-button {margin: 0 10px;}
    .callback-form .input-skew {margin: 0 10px}
    .prefers-list {
        flex-wrap: wrap;
        justify-content: center;
        padding: 35px 0;
    }
    .prefer-item {
        width: 40%;
        margin-bottom: 40px;
    }
    .service-first-text {
        -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }
    .block-content {
        width: 100%;
        margin: 0;
        padding: 0 15px;
        box-sizing: border-box;
    }
    .service-first-text>p {
        width: 100%;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        padding: 0 15px;
    }
    .services-list {
        flex-wrap: wrap;
        justify-content: space-around;
    }
    .service-item {
        width: 45%;
        margin-bottom: 30px;
    }
    .service-name {
        font-size: 26px;
    }
    .main-nav li {margin: 0;}
    .main-nav li:last-of-type {margin: 0;}
    .desk{display: none;}
    .fors-service{background: none}
}
@media screen and (max-width: 768px) {
    .logo {width: 30%;}
    .page-image {display: none;}
    .order_form .input-skew {
        width: 60%;
        margin-left: auto;
        margin-right: auto;
    }
    .order_form .textarea-skew {
        width: 60%;
        margin-left: auto;
        margin-right: auto;
        margin: 0 auto 40px;
    }
    .header_phone{
        width: 40%;
        padding: 5px 10px;
    }
    .order_form {
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .pretty-form .main-button {margin: 0 auto;}
    .callback-form {width: 100%;}
    .callback_form {
        display: -webkit-flex;
        display: -ms-flex;
        display: flex;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        width: 100%;
        justify-content: space-around;
        align-items: center;
    }
    .callback_form .input-skew {
        margin: 0 0 20px;
        width: 40%;
    }
    .callback-text {font-size: 16px;}
    .callback-heading {font-size: 18px;}
    .blue-heading {
        margin: 15px 0 30px;
        font-size: 30px;
    }
    .service-inner .main-button {bottom: 40px;}
    .price-row {
        flex-wrap: wrap;
        border: 1px solid #eee;
        border-bottom: 2px solid #ccc;
        border-top: 0;
    }
    .price-value {
        width: 100%;
        text-align: center;
        border-top: 1px solid #eee;
    }
    .mark {width: 30%;}
    .models {
        width: 70%;
        border-right: 0;
    }
    .news-list {
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .news-item {width: 100%;}
    .cars-list-item {width: 40%;}
    .fors-main-heading{font-size: 32px;}
    .fors-main-heading div{font-size: 24px;}
    .main-banner__p {
        font-size: 22px;
        line-height: 32px;
        width: 100%;
    }
    .main-banner__block:not(:last-child),
    .content-descrip p:not(:last-child) {
        margin-bottom: 20px;
    }
    .main-banner__list {
        margin: 0 20px;
    }
    .main-banner {
        padding: 60px 0;
    }
    .short-descrip {
        padding: 70px 0;
    }
    .section-heading {
        margin-bottom: 40px;
        font-size: 26px;
    }
    .short-desc__block {
        padding: 30px 20px;
    }
    .long-descrip, .content-descrip {
        padding: 60px 30px;
    }
    .tuning-callback .callback_form {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-flow: column wrap;
                flex-flow: column wrap;
    }
    .tuning-callback .callback_form .input-skew {
        width: 70%;
        max-width: 350px;
        margin: 0 auto 20px;
    }
    .tuning-callback .callback-wrapper {
        padding: 60px 0 80px;
    }
    .content-descrip__wrap ul {
        width: 100%;
        -webkit-box-sizing: border-box;
                box-sizing: border-box;
    }
}
@media screen and (max-width: 700px) {
    .pWithImg {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }
    .pWithImg img {
        margin: 0 0 30px 0;
    }
}
@media screen and (max-width:680px){
    .how-we-work-item {
        width: calc(50% - 20px);
        margin: 0 10px 50px;
    }
    .fors-service-list-item{
        width: 100%;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    .fors-section-heading{font-size: 36px;}
    .fors-section-subheading{font-size: 18px;}
    .advantages-bg-holder{background: none;}
    .advantage-item{width: 100%;max-width: 340px;}
    .fors-main-heading:before,
    .fors-main-heading:after{content:none;}
}
@media screen and (max-width:580px) {
    .price-row {
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        border-top: 1px solid #eee;
    }
    .mark {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #eee;
    }
    .models {
        width: 100%;
    }
    .header .main-button {
        padding: 5px 10px;
        font-size: 12px;
    }
    .burger {
        width: 36px;
        height: 36px;
    }
    .pretty-form .main-button {
        width: calc(60% + 16px);
        margin-left: auto;
        margin-right: auto;
    }
    .descr h2:after {
        left: 90%;
    }
    .service-full-text h2 {
        margin: 20px 0;
    }
    .block-content h2:after {
        left: 80%;
    }
    .services-list {
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        justify-content: space-around;
        -ms-align-items: center;
        align-items: center;
    }
    .service-item {
        width: 60%;
    }
    .office-item {
        width: 100%;
        margin-right: 0;
        margin-bottom: 30px;
    }
    .mark-list-item {
        width: 50%;
    }
    .aside-newslist{-webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;}
    .aside-newslist .news-item{
        width: 100%;
        margin:0 auto 20px;
        max-width: 280px
    }
}
@media screen and (max-width: 480px) {
    .how-we-work-item {width: calc(100% - 20px);}
    .fors-modal-header{
        font-size: 24px;
        margin-bottom: 20px;
    }
    .callback_form .input-skew {width: 85%;}
    .prefer-item {width: 100%;}
    .prefer-ico {padding-bottom: 20px;}
    .brands-list {justify-content: space-around;}
    .brand-logo {width: 45%;}
    .order_form .input-skew,
    .order_form .textarea-skew {
        width: 80%;
        margin-bottom: 30px;
    }
    .header_phone{
        width: 65%;
    }
    .service-full-text ul {
        width: 98%;
        box-sizing: border-box;
        padding: 20px 20px 20px 30px;
    }
    .fors-modal-inner .input-skew{width: 75%;}

    .service-full-text a,
    .service-first-text a {font-size: 14px;}
    .service-full-text a:after,
    .service-first-text a:after {content: none;}
    .service-item {width: 80%;}
    .logo {width: 20%;}
    .header-right {
        width: 70%;
        justify-content: flex-start;
    }
    .cars-list {
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        align-items: center;
        justify-content: space-around;
    }
    .cars-list-item {width: 60%;}
    .mark-list {
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .mark-list-item {width: 50%;}
    .models-list-item {width: 50%;}
    .main-banner__list {
        margin: 0;
    }
    .main-banner__p {
        font-size: 18px;
        line-height: 28px;
    }
    .short-descrip {
        padding: 40px 0;
    }
    .short-descrip .section-heading {
        margin-bottom: 30px;
    }
    .short-desc__block {
        border-width: 3px;
    }
    .short-descrip .section-heading {
        font-size: 22px;
    }
    .short-desc__h2 {
        font-size: 22px;
        line-height: 32px;
        width: 100%;
    }
    .short-desc__p, .long-descrip p,
    .content-descrip p {
        font-size: 14px;
        line-height: 26px;
    }
    .long-descrip, .content-descrip {
        padding: 40px 0px;
    }
    .long-descrip p:not(:last-child),
    .content-descrip p:not(:last-child) {
        margin: 0 0 15px 0;
    }
    .long-descrip h3,
    .content-descrip h3 {
        margin: 0 0 20px 0;
    }
    .tuning-callback .callback-text p {
        margin: 0 0 25px 0;
    }
    .tuning-callback .callback-heading {
        margin: 0 0 20px 0;
        font: 26px/36px 'Roboto-Bold', sans-serif;
    }
    .tuning-callback .callback-wrapper {
        padding: 40px 0 60px;
    }
    .content-descrip__wrap ul {
        width: 100%;
        padding: 20px 20px 10px;
        -webkit-box-sizing: border-box;
                box-sizing: border-box;
    }
    .content-descrip__wrap li {
        margin-bottom: 10px;
        list-style-type: none;
    }
}

.form-thanks {font-size: 18px;}
