@charset "UTF-8";
@import "../fonts/fonts.css";
body{
    box-sizing: border-box;
    font-family: "Ubuntu", sans-serif;
    color: #898989;
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 1.5;
    --red: #C62D27;
    --silver: #DFDFDF;
    --text: #898989;
    --light-bl: #1C1F22;
    --font-ttl: "Syncopate", sans-serif;
    background: #151719;
}
a, a:hover{
    text-decoration: none;
    transition: 0.3s;
    cursor: pointer;
}
p{
  font-size: 16px;
  line-height: 1.5;
  font-weight: 300;
}
h1, h2, h3, h4, p, ul, ol{
    margin: 0;
}
ul, ol{
    list-style: none;
    margin: 0;
    padding: 0;
}
img{
    max-width: 100%;
}
input, button, textarea{
  outline: none;
}

@media (min-width: 1300px){
  .container {max-width: 1210px;}
}
@media (min-width: 1500px){
  .container {max-width: 1450px;}
}
.flex{
  display: flex;
  flex-wrap: wrap;
}
.flex.between{
    justify-content: space-between;
}
.flex.align-center{
  align-items: center;
}
.d-none{
  display: none;
}
.ttl.lg{
  font-weight: 700;
  font-family: var(--font-ttl);
  font-size: 64px;
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--silver);
}
.ttl.md{
  font-weight: 700;
  font-family: var(--font-ttl);
  font-size: 40px;
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--silver);
}
.ttl.sm{  
  font-size: 22px;
  text-transform: uppercase;
  color: var(--silver);
}
.fz14{font-size: 14px;}
.fz12{font-size: 12px;}
.fw300{font-weight: 300;}
.upper{text-transform: uppercase;}
.grad{
  background: linear-gradient(#fff, rgba(255, 255, 255, 0));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.subttl{
  width: 550px;
  padding: 5px 30px;
  background: linear-gradient(90deg, #C62D27 56.25%, rgba(198, 45, 39, 0) 100%);
  font-weight: 500;
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #FFF;
}
.centered{
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.subttl.centered{
  background: linear-gradient(90deg, rgba(198, 45, 39, 0) 0%, #C62D27 52.73%, rgba(198, 45, 39, 0) 100%);
}
.silver{
  color: var(--silver);
}

.mt100{margin-top: 100px;}
.mt50{margin-top: 50px;}
.pt150{padding-top: 150px;}
.pb150{padding-bottom: 150px;}
.mb150{margin-bottom: 150px;}
.mb110{margin-bottom: 110px;}
.mb80{margin-bottom: 80px;}
.mb60{margin-bottom: 60px;}
.mb50{margin-bottom: 50px;}
.mb40{margin-bottom: 40px;}
.mb35{margin-bottom: 35px;}
.mb30{margin-bottom: 30px;}
.mb25{margin-bottom: 25px;}
.mb20{margin-bottom: 20px;}
.mb15{margin-bottom: 15px;}
.mb10{margin-bottom: 10px;}

.padding-section{
  padding: 5% 0;
}
@media(min-width: 1700px){
  .padding-section{padding: 80px 0;}
}

.modal {
  display: none;
  position: fixed; 
  top: 0;
  left: 0;
  z-index: 1200;  
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  outline: 0;
}
.modal-inner{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0,0,0,.9);
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal-wrapper{
  background: #000;
  padding: 40px;
  position: relative;
  width: calc(100% - 30px);
  max-width: 550px;
  box-shadow: 0 0 10px var(--red);  
}
.modal-wrapper .close{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 40px;
  line-height: .5;
  color: var(--silver);
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
  transition: .3s;
}
.modal-wrapper .close:hover{
  color: var(--red);
}
.uForm__preload {
    display: none;
    position: absolute;
    z-index: 999;
    left: 0;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url(/images/loading.svg) no-repeat center / contain #151719;
    margin: 0 auto;
}

.btn{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    color: var(--silver);
    width: 220px;
    height: 50px;    
    cursor: pointer;
    transition: 0.4s;
    text-transform: uppercase;
    outline: none;
    border: 1px solid #5A5A5A;
    background: transparent;
    position: relative; 
}
.btn:before, .btn:after{
  content: '';
  position: absolute;
  top: -1px;
  height: calc(100% + 2px);
  width: 50px;
  transition: inherit;
}
.btn:before{  
  left: -1px;
  border-top: 2px solid var(--red);
  border-left: 2px solid var(--red);
}
.btn:after{
  right: -1px;
  border-right: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
}
.btn:hover{
  box-shadow: 2px 2px 10px var(--red);
}
.btn:hover:before, .btn:hover:after {
  width: 100%;
}
button.btn{
  max-width: 100%;
}

ol{
    counter-reset: list;
}
.pagination-list{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.pagination-list li a, .pagination-list li span{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    font-size: 12px;
    line-height: 1; 
    margin: 4px;
    transition: 0.5s;
    background: var(--light-bl);
}

.pagination-list li a{
    color: var(--text);
}

.pagination-list li span{
    color: var(--text);
}

.pagination-list li.active span, .pagination-list li:hover a{
    background: var(--red);
    color: var(--silver);
}
.pagination-list li.arrow a, .pagination-list li.arrow span{
  background: transparent;
  width: 20px;
}
.pagination-list li.arrow a path{
  transition: .4s;
}
.pagination-list li.arrow a:hover svg path{  
  stroke: var(--silver);
}

::-webkit-scrollbar {width: 6px; height: 4px;}
::-webkit-scrollbar-track {background: #000;}
::-webkit-scrollbar-thumb {background-color:  var(--red); border-radius: 3px;}
html, body, div, * {scrollbar-width: thin; scrollbar-height: thin; scrollbar-color: var(--red) #000;}

.burger-menu {
    width: 48px;
    height: 48px;
    position: relative;
    z-index: 1200;
    background: var(--light-bl);
}

.burger-menu span {
    display: block;
    width: 20px;
    height: 2px;
    background: linear-gradient(90deg, #FFF 0%, rgba(255, 255, 255, 0) 100%);
    position: absolute;
    left: 14px;
    opacity: 1;
    transition: all linear 0.3s;
}
.burger-menu span:first-child {
    top: 17px;
}
.burger-menu span:nth-child(2), .burger-menu span:nth-child(3) {
    top: 23px;
}
.burger-menu span:last-child {
    top: 29px;
}
.active .burger-menu span{
  background: #fff;
}
.active .burger-menu span:first-child {
    top: 0;
    opacity: 0;
}
.active .burger-menu span:nth-child(2) {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
}
.active .burger-menu span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
}
.active .burger-menu span:last-child {
    top: 40px;
    opacity: 0;
}

.body-wrapper{
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
}
.main{flex: 1;}
.header .logo{
  display: flex;
  align-items: center;
  width: 290px;
  margin-right: 15px;
}
.header .menu-box {
  position: relative;
}
.header-menu, .hidden-phones {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  width: 295px;
  right: 0;
  top: calc(100% + 25px);
  padding: 35px 0 30px;
  background: var(--light-bl);
  transform: translateY(10px);
  transition: .5s;
}
.hidden-phones{
  right: -15px;
  width: 250px;
}
.header-menu:before, .hidden-phones:before {
  content: '';
  border: 12px solid transparent;
  border-bottom: 15px solid var(--light-bl);
  position: absolute;
  bottom: 100%;
  right: 12px;
}
.active .header-menu, .active .hidden-phones {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header-menu a{
  display: block;
  color: var(--silver);
  padding: 16px 0 18px;
  text-align: center;
  font-size: 12px;
  text-transform: uppercase;
  opacity: .5;
}
.header-menu a:hover {
  opacity: 1;
}
.header-menu > li:not(:last-child) a{
  border-bottom: 1px solid #2B2E32; 
}
.header .icon-tel{
  display: flex;
  justify-content: center;
  align-items: center;  
  font-size: 16px;
  color: var(--silver);
}
.header .icon-tel:before {
  font-size: 20px;
  margin-right: 7px;
}
.header .icon-tel:hover{
  color: var(--red);
}
.header .phones{
  margin-right: 45px;
}
.phone-menu {
  display: flex;
  align-items: center;
  position: relative;
  margin-left: 10px;
  height: 48px;  
}
.phone-menu .icon-tel{
  margin-bottom: 10px;
}
.phone-menu .more{
  transition: .4s;
  cursor: pointer;
  transform: rotate(0);
}
.phone-menu.active .more{
  transform: rotate(180deg);
}
.header .indicators{
  display: flex;
  align-items: center;
  padding: 9px 35px;
  background: var(--light-bl);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  margin: 0 35px 0 auto;
}
.header .indicators .item{
  display: flex;
  align-items: center;
}
.header .indicators .separator:before {
  content: '/';
}
.header .indicators span{
  color: var(--silver);
  font-size: 14px;
  margin: 0 4px;
}
.header .indicators .value{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90px;
  height: 30px;
  border-radius: 4px;
}
#indBuy{
  background: #213F9A;
  box-shadow: 2px 2px 10px #213F9A;
}
#indTransit{
  background: var(--red);
  box-shadow: 2px 2px 10px var(--red);
} 
#indGiven{
  background: #3EA855;
  box-shadow: 2px 2px 10px #3EA855;
}



#toTop {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  color: #E44A51;
  background: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #004671;
  box-shadow: 0 0 5px #004671;
  position: fixed;
  right: 15px;
  bottom: 15px;
  z-index: 20;
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s;
}
#toTop.show {
  visibility: visible;
  opacity: 1;
}
.header{
  position: absolute;    
  width: 100%;    
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  background: rgba(21,23,28,0.8);
  padding: 20px 0;
}
.header.sticky{
  position: fixed;
  animation: flash 0.5s linear 1;
  background: rgba(21,23,28,.95);
  padding: 10px 0;
}
@keyframes flash {
  from{opacity: 0; transform: translateY(-100%);}
  to {opacity: 1; transform: translateY(0);}
}


/*--------------------------------------------------------------------------------------------------------------------*/
.main-page{
  counter-reset: title;
}
.ttl.counter{
  margin-top: 1.7em;
  position: relative;
  z-index: 1;
}
.ttl.counter:before{
  counter-increment: title;
  content: '0'counter(title)'/';
  font-size: 2em;
  font-family: var(--font-ttl);
  font-weight: 700;
  background: linear-gradient(#fff, rgba(255, 255, 255, 0));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: .05;
  position: absolute;
  top: -0.68em;
  left: 0;
  z-index: 0;
}
.ttl.counter.centered:before{
  right: 0;
  margin: 0 auto;
}
.main-screen{
  padding-bottom: 56.25%;
  position: relative;
}
.main-screen .wrapper{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 15% 0 50px;
}
.main-vid{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
}
.main-vid source{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-screen .subttl{
  width: 620px;
  margin-left: auto;
}
.main-screen .ttl.lg{
  font-size: 148px;
}
.main-screen .bottom{
  align-items: flex-end;
  position: relative;
}
.main-screen .video-link img{
  display: block;
  width: 220px;
  margin-bottom: 8px;
}
.main-screen .video-link span{
  font-size: 12px;
  color: var(--silver);
  margin-left: 10px;
}
.social a{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  background: #1D1E20;
  color: #44484B;
  font-size: 20px;
  margin-left: 15px;
}
.social a:hover {
  color: var(--red);
}
.main-screen .bottom .arrow{
  position: absolute;
  width: 30px;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
}
.main-screen .text{
  max-width: 930px;
}
.main-content{
  background-image: url(/images/main-bg.jpg);
  background-repeat: repeat-y;
  background-size: 100% auto;
  background-position: right;
  animation: bg 10s linear infinite;
}
@keyframes bg {0% {background-position: 0px 0px;} 100% {background-position: 0 5000px;}}
.main-adv {
  padding: 50px 25px 0 40px;
}
.main-adv .item{
  width: calc(25% - 35px);
  display: flex;
  background: var(--light-bl);
  padding: 35px 15px 40px 0;
  transition: background 0.5s;
  position: relative;
}
.main-adv .item:nth-of-type(even){
  bottom: 50px;
}
.main-adv .item:hover {
  background: var(--red);
}
.main-adv .item .img-box{
  width: 170px;
  height: 190px;
  position: relative;
  right: 30px;
}
.main-adv .item .text-box{
  width: calc(100% - 170px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.main-adv .item .title{
  min-height: 42px;
}
.main-adv .item .text{
  color: var(--silver);
}
.main-stages {
  background: url(/images/main-stages-bg.png) no-repeat left bottom / 40%;
}
.title-flex{
  align-items: flex-end;
}
.title-flex .title-box{
  width: 550px;
}
.main-stages .title-flex .ttl.lg{
  width: 350px;
}
.main-stages .title-flex .text-box{
  width: calc(100% - 780px);
  margin-right: 60px;
}
.main-stages .title-flex .text-box .title{
  display: block;
  font-size: 22px;
  color: var(--silver);
}
.main-stages .stages-list li{
  margin-bottom: 50px;
}
.main-stages .stages-list .item{
  width: calc(33.3% - 33px);
  padding: 110px 35px 55px;
  position: relative;
  background: var(--light-bl);
  transition: 0.4s;
}
.main-stages .stages-list .item:hover {
  background:  #151719;
  box-shadow: 0px 15px 35px rgba(198, 45, 39, 0.2);
}
.main-stages .stages-list .item:before {
  font-size: 70px;
  color: #25282C;
  text-shadow: -3px -3px 2px rgba(19, 22, 24, 0.5), 3px 3px 2px rgba(41, 44, 47, 0.5);
  position: absolute;
  top: 40px;
  right: 35px;
  transition: inherit;
}
.main-stages .stages-list .item:hover:before {
  color: var(--red);
}
.main-stages .stages-list .item:after{
  counter-increment: list;
  content: '0'counter(list)'/';
  position: absolute;
  top: 40px;
  left: 35px;
  font-size: 12px;
  color: var(--red);
}
.main-stages .stages-list .item a{
  color: var(--text);
  text-decoration: underline;
}
.main-stages .stages-list .item a:hover {
  color: var(--red);
}
.messenger a{
  display: flex;
  align-items: center;
  margin-right: 15px;

}
.main-cars{
  background-image: url(/images/ellipse3.png), url(/images/ellipse4.png);
  background-repeat: no-repeat;
  background-size: 30%, 30%;
  background-position: right 48%, left 85%;
}
.cars{
  margin-left: -10px;
  margin-right: -10px;
}
.cars .item{
  width: calc(25% - 20px);
  margin: 0 10px 20px;
  position: relative;
  overflow: hidden;
}
.cars .item .swiper-container{
  overflow: hidden;
}
.cars .item .swiper-slide{
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-bottom: 100%;
}
.cars .item .img-box{
  position: relative;
  padding-left: 20px;
}
.cars .item .price{
  width: 150px;
  height: 37px;
  padding: 9px 17px;
  position: absolute;
  top: 28px;
  left: 0;
  background: linear-gradient(-90deg, rgba(198, 45, 39, 0) 0%, #C62D27 61.98%);
  font-size: 20px;
  line-height: 1;
  text-transform: uppercase;
  color: #FFF;
}
.cars .item .img-box .bottom{
  width: calc(100% - 20px);
  position: absolute;
  right: 0;
  bottom: 0;
}
.cars .item .city{
  display: flex;
  align-items: center;
  width: 150px;
  height: 37px;
  padding: 9px 16px;
  background: linear-gradient(-90deg, rgba(21, 23, 25, 0) 0%, #151719 61.98%);
  color: #898989;
  font-weight: 300;
  font-size: 16px;  
}
.cars .item .city:before {
  color: var(--red);
  margin-right: 9px;
}
.cars-slider-nav{
  display: flex;
  margin-left: auto;
}
.cars-slider-prev, .cars-slider-next,
.gallery-slider-prev, .gallery-slider-next
{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 37px;
  height: 37px;
  background: rgba(28, 31, 34, .5);
  margin-left: 8px;
  cursor: pointer;
  transition: .4s;
}
.cars-slider-prev:hover, .cars-slider-next:hover,
.gallery-slider-prev:hover, .gallery-slider-next:hover
 {
  background: rgba(28, 31, 34, .8);
}
.cars .item .text-box{
  padding: 37px 35px 50px;
}
.cars .item .title{
  font-size: 20px;
  text-transform: uppercase;
  color: var(--silver);
}
.cars .text-box .info{
  display: flex;
}
.cars .text-box .info:before {
  margin-right: 15px;
}
.cars .text-box .hidden-info{
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  background: rgba(28, 31, 34, .8);
  transform: translateY(100%);
  transition: .4s;
  padding: 50px 40px;
}
.cars .text-box:hover .hidden-info{
  transform: translateY(0);
}
.cars .text-box .hidden-info .title{
  display: flex;
  font-size: 18px;
  font-weight: 300;
}
.cars .text-box .hidden-info .title:before {
  font-size: 14px;
  color: var(--text);
  margin: 7px 10px 0 0;
}
.cars .text-box .hidden-info .parameters-list{
  padding-left: 32px;
}
.cars .text-box .hidden-info .parameters-list li{
  color: var(--silver);
  margin-bottom: 10px;
}
/*====================================*/

.consult-form-section{
  background: url(/images/ellipse2.png) no-repeat center / contain;
}
.consult-form-section .form-wrapper{
  background: #151719;
  box-shadow: 4px 4px 20px #131517;
  padding: 95px 15px;
}
.consult-form{
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}
.consult-form .form-group{
  width: calc(50% - 10px);
  margin-bottom: 20px;
}
.consult-form .btn-box{
  width: 220px;
  margin-top: 30px;
  position: relative;
}
.input{
  width: 100%;
  height: 50px;
  padding: 10px 25px;
  background: #1A1C1E;
  font-weight: 300;
  font-size: 16px;
  color: #666;
  border: 1px solid transparent;
  outline: none;
  transition: .4s;
}
.input:focus {
  border-color: var(--red);
}
.consult-form .text{
  font-weight: 300;
  font-size: 12px;
  margin-bottom: 10px;
}
.radio-label {
  position: relative;
  padding-left: 16px;
  cursor: pointer;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--silver);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin-right: 30px;
}
.radio-label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto 0;
  height: 8px;
  width: 8px;
  background-color: #272B2F;
  border-radius: 50%;
  transition: .3s;
}
.radio-label:hover input ~ .checkmark {
  background-color: var(--red);
}
.radio-label input:checked ~ .checkmark {
  background-color: var(--red);
  box-shadow: 2px 2px 10px #C62D27;
}

.main-auto{
  background: url(/images/auto-bg.jpg) no-repeat center bottom / cover;
  padding: 120px 0 90px;
}
.main-auto .subttl{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1050px;
  height: 48px;
  background: linear-gradient(90deg, rgba(21, 23, 25, 0) 0%, #151719 52.6%, rgba(21, 23, 25, 0) 100%);
}
.main-auto .info-flex{
  align-items: flex-start;
}
.main-auto .info-flex .item{
  width: 340px;
  padding: 50px 80px 50px 65px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(24px);
  overflow: hidden;
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}
.main-auto .info-flex .item:nth-child(1){
  padding: 55px 40px;
}
.main-auto .info-flex .item:after {
  content: '';
  position: absolute;
  border-top: 1px solid rgba(255,255,255,.2);
}
.main-auto .info-flex .item:nth-child(1):after {
  width: 80px;  
  transform: rotate(-45deg);
  right: -10px;
  bottom: 0;
}
.main-auto .info-flex .item:nth-child(2):after {
  width: 140px;
  height: 20px;
  border-bottom: 1px solid rgba(255,255,255,.5);
  transform: rotate(-45deg);
  top: 0;
  left: -30px;
}
.gallery-slider .swiper-slide{
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-bottom: 50%;
  opacity: 0!important;
}
.gallery-slider .swiper-slide.swiper-slide-active{
  opacity: 1!important;
}
.gallery-slider .swiper-slide.swiper-slide-next{
  z-index: 100!important;
  opacity: 1!important;
}
.gallery-slider .swiper-slide.swiper-slide-prev{
  opacity: .5!important;
}
.gallery-block .text{
  width: calc(100% - 250px);
  max-width: 1040px`;
}
.main-reviews{
  background: url(/images/ellipse5.png) no-repeat right center / 20%;
}
.reviews-slider{
  overflow: hidden;
}
.reviews-slider .swiper-slide{
  height: auto;
  box-sizing: border-box;
}
.review-item{
  height: 100%;
  position: relative;
  padding: 20px 60px 20px 20px;
  background: var(--light-bl);
}
.review-item .rating{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 440px;
  height: 45px;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 19% 100%);
  background: #151719;
  position: absolute;
  top: -1px;
  right: -1px;
  padding: 5px 40px 5px 105px;
}
.review-item .rating .stars{
  width: 120px;
  height: 20px;
  background: url(/images/stars4.svg) no-repeat center / cover;
  margin-left: 20px;
}
.review-item .img-box{
  width: 36.6%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.review-item .text-box{
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 54%;
  padding: 60px 0 20px;
}
.review-item .text-box .text{
  flex: 1;
  max-width: 745px;
}
.review-item .auto{
  width: 205px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--red);
  font-weight: 300;
  color: var(--red);
}
.review-item .icon-clock{
  font-weight: 300;
  font-size: 12px;
}
.review-item .icon-clock:before {
  margin-right: 10px;
}
.swiper-pagination-bullet{
  width: 40px;
  height: 3px;
  border-radius: 0;
  background: #DFDFDF;
  opacity: 0.2;
  transition: .4s;
  margin: 0 1px 5px;
}
.swiper-pagination-bullet-active,
.swiper-pagination-bullet:hover{
  opacity: .5;
}
.footer{
  background-image:  
  linear-gradient(to bottom, transparent 35%, #131517 35%), url(/images/ellipse6.png);
  background-repeat: no-repeat;
  background-position: top left;
  background-size: 100%, 25%;
}
.footer .form-wrapper{
  background: #151719;
  box-shadow: 4px 4px 20px 0 #131517;
  padding: 30px;
}
.footer .form-box{
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 53%;
  padding: 60px 80px;
}
.footer .form-wrapper .img-box{
  width: 44%;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
}
.footer .form-wrapper .img-box:before {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  background: var(--red);
  font-size: 32px;
  color: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
}
.footer-contacts .item{
  width: 25%;
}
.footer-contacts .map-box{
  height: 200px;
  filter: grayscale(100%) sepia(5%) brightness(0.24);
  transition: .5s ease-in;
}
.footer-contacts .map-box:hover {
  filter: grayscale(0);
}
.footer-contacts .title{
  color: var(--silver);
  text-transform: uppercase;
}
.footer-contacts .icon-tel{
  display: flex;
  align-items: center;
  color: var(--silver);
}
.footer-contacts .icon-tel:hover {
  color: var(--red);
}
.footer-contacts .icon-tel:before{
  font-size: 22px;
  margin-right: 10px;
}
.footer .bottom{
  padding: 30px 0;
  border-top: 1px solid #232628;
}
.footer .logo{
  width: 290px;
}
.footer .copyright{
  font-size: 10px;
  text-transform: uppercase;
  color: #3F4244;
}
.footer-menu{
  margin: 0 auto;
}
.footer-menu a{
  font-size: 14px;
  text-transform: uppercase;
  color: #3F4244;
  margin: 0 24px;
}
.footer-menu a:hover {
  color: var(--silver);
}
.footer .messenger{
  margin: 0 50px;
}
.page-header{
  min-height: 285px;
  padding: 170px 15px 15px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid #232628;
  position: relative;
}
.page-header:after {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--red);
  box-shadow: 2px 2px 10px var(--red);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
}
.page-header .text{
  color: #A0A0A0;
}
.news-wrapper{
  padding: 50px 120px 75px;
  background: var(--light-bl);
}
.articleBody p{
  margin-bottom: 40px;
}
.articleBody ul{
  margin-bottom: 40px;
}
.articleBody ul li{
  display: flex;
  margin-bottom: 25px;
}
.articleBody ul li:before {
  content: '';
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 2px 2px 10px var(--red);
  margin: 6px 25px 0 0;
}
.publication-date{
  display: flex;
  justify-content: flex-end;
  align-items: center;  
}
.publication-date:after {
  content: '';
  width: 30px;
  height: 1px;
  flex-shrink: 0;
  background: var(--red);
  margin-left: 20px;
}
.news-page .btn{
  margin-left: auto;
}
.news-flex{
  margin-left: -11px;
  margin-right: -11px;
}
.news-item{
  width: calc(33.33% - 22px);
  display: flex;
  background: var(--light-bl);
  transition: 0.4s;
  margin: 0 11px 30px;
}
.news-item:hover {
  background: var(--red);
  box-shadow: 0px 15px 35px rgba(198, 45, 39, 0.2);
}
.news-item .item-image{
  width: 22%;
}
.news-item .item-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-item .text-box{
  display: flex;
  flex-direction: column;
  width: 78%;
  padding: 55px 25px 20px 35px;
}
.news-item .title{
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--silver);
}
.news-item .text{
  font-size: 14px;
  transition: inherit;
}
.news-item:hover .text{
  color: var(--silver);
}
.news-item .readmore{
  display: flex;
  align-items: center;
  font-size: 12px;
  color: var(--silver);
  visibility: hidden;
  opacity: 0;
  transform: translateY(20px);
}
.news-item:hover .readmore{
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.news-item .readmore:after {
  content: '>';
  transition: inherit;
  margin-left: 10px;
}
.news-item .readmore:hover:after {
  transform: translateX(5px);
}
.news-item .publication-date{
  color: var(--silver);
  font-size: 12px;
  margin-right: -25px;
}
.news.category{
  padding-top: 80px;
  background: url(/images/ellipse7.png) no-repeat right 25% / 40%;
}
/*=======================*/
.vin-form{
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url(/images/your/bg.jpg) no-repeat center / cover;
}
.vin-form .wrapper{
  width: 100%;
  max-width: 730px;
  padding: 0 15px;
}
.vin-form .title{
  font-size: 24px;
  color: var(--silver);
  font-weight: 300;
}
.vin-number{
  justify-content: center;
}
.vin-number .label{
  font-size: 24px;
  color: var(--silver);
  margin-right: 24px; 
}
.vin-number .input{
  max-width: 300px;
}
.vin-number .input:focus {
  border-color: transparent;
}
.vin-number button{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 50px;
  background: #1A1C1E;
  border: none;
  font-size: 14px;
  color: #A0A0A0;
  cursor: pointer;
}
.vin-number button:before {
  font-size: 18px;
  margin-right: 9px;
  color: #393C3F;
  transition: .4s;
}
.vin-number button:hover:before {
  color: var(--red);
}
.stages-scale{
  display: flex;
  overflow-x: auto;
  padding-bottom: 20px;
}
.stages-scale .item{
  width: 120px;
  position: relative;
  text-align: center;
  padding: 110px 10px 0;
}
.stages-scale .item:before,
.stages-scale .item:after{
  content: '';
  width: 60px;
  height: 4px;
  background: var(--red);
  position: absolute;
  top: 80px;
}
.stages-scale .item:before{
  left: 0;
}
.stages-scale .item:after{
  right: 0;
}
.stages-scale .item .name{
  font-size: 14px;
  line-height: 1.3;
  color: var(--silver);
}
.stages-scale .item .marker{
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #1A1C1E;
  border: 1px solid var(--red); 
  position: absolute;
  top: 74px;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 2;
}
.stages-scale .item .marker:before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.stages-scale .item.active:after{
  background: #272A2D;
}
.stages-scale .item.active .marker{
  width: 36px;
  height: 36px;
  top: 65px;
}
.stages-scale .item.active .marker:before {
  width: 12px;
  height: 12px;
}
.stages-scale .item.active .name{
  position: absolute;
  top: 0;
  left: -15px;
  width: calc(100% + 30px);
  font-size: 18px;
}
.stages-scale .item.active ~ .item:before,
.stages-scale .item.active ~ .item:after{
  background: #272A2D;
}
.stages-scale .item.active ~ .item .marker{  
  border-color: #383A3D;
}
.stages-scale .item.active ~ .item .marker:before {
  background: #383A3D;
}
.stages-scale .item.active ~ .item .name{
  color: var(--text);
}
.your-car .info .item{
  width: 31%;
  display: flex;
  flex-direction: column;
}
.your-car .info .text-box{
  flex: 1;
  border: 1px solid #2A2D31;
  padding: 50px 40px;
}
.your-car .info .text-box .title{
  font-size: 16px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--silver);
}
.your-car .info .text-box .title:after {
  display: block;
  content: '';
  width: 38px;
  height: 1px;
  background: var(--red);
  margin-top: 18px;
}
.your-car .info-list li{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 15px;
}
.your-car .info .key{
  font-size: 14px; 
  margin-right: 15px;
}
.your-car .info .value{
  font-size: 14px;
  color: var(--silver);
}
.your-car .info .img-box{
  padding-bottom: 73%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.your-car .info .fot-quan{
  margin-bottom: 10px;
}
.your-car .ports .ttl-box{
  width: 400px;
}
.your-car .ports .ttl-box .subttl{
  max-width: 100%;
}
.your-car .is-video .column{
  width: calc(50% - 5px);
}
.your-car .is-video .btn{
  width: 100%;
  max-width: 220px;
}



.your-car .map-box{
  width: calc(100% - 540px);
  padding-bottom: 35%;
  position: relative;
  z-index: -1;
}
.your-car .map-box img{
  position: absolute;
  width: 150%;
  max-width: 150%;
  top: 0;
  left: -25%;
  bottom: 0;
  margin: auto; 
}
.your-car .map-box .state{
  position: absolute;
  width: 11.36%;
  text-align: center;
  color: var(--silver);
  z-index: 1;
  font-size: 16px;
}
.your-car .map-box .marker{
  display: block;
  position: relative;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #1A1C1E;
  border: 1px solid var(--red); 
  margin: 0 auto;
  z-index: 2;
  animation: pulse 3s infinite;
  animation-delay: inherit;
  font-size: ;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0px rgba(198, 45, 39, 0.5);
  }
 
  30% {
    box-shadow: 0 0 10px 20px rgba(198, 45, 39, 0.1);
  }
}
.your-car .map-box .marker:before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.your-car .map-box .california{
  left: 1%;
  top: 52%;
}
.your-car .map-box .texas{
  left: 40%;
  top: 80%;
  animation-delay: .3s;
}
.your-car .map-box .jersey{
  right: 4%;
  top: 43%;
  animation-delay: .6s;
}
.your-car .map-box .georgia{
  right: 14%;
  top: 77%;
  animation-delay: .9s;
}
.your-car .map-box .florida{
  right: 12%;
  top: 90%;
  animation-delay: 1.2s;
}

.calc-form{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.calc-form .form-col{
  width: calc(50% - 10px);
}
.calc-form .form-col:first-child {
  padding-top: 29px;
}
.radio-box{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 59px;
}
.rad-name{
  width: 90px;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--silver);
}
.radio-group{
  width: calc(100% - 120px);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 50px;
  border: 1px solid #1F2123;  
}
.radio-label {
  padding-left: 25px;
  font-size: 14px;
  color: var(--text);
  margin-right: 30px;
  min-width: 60px;
  transition: .3s;
  text-transform: none;
}
.calc-form .radio-label:last-child {
  min-width: 120px;
}
.calc-form .radio-label:nth-last-child(2){
  min-width: 90px;
}
.radio-label.checked, .radio-label:hover {
  color: var(--silver);
}
.checkmark {
  height: 15px;
  width: 15px;
  background-color: #1A1C1E;
  border-radius: 50%;
  border: 1px solid #393939;

}
.checkmark:before{
  content: '';
  width: .1px;
  height: .1px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background: var(--red);
  border-radius: 50%;
  opacity: 0;
  transition: inherit;
}
.radio-label:hover  .checkmark {
  background-color: #1A1C1E;
}
.radio-label input:checked ~ .checkmark {
  background-color: #1A1C1E;
  border-color: var(--red);
  box-shadow: none;
}
.radio-label input:checked ~ .checkmark:before {
  opacity: 1;
  width: 5px;
  height: 5px;
}
.calc-form .select {
  position: relative;
  width: 100%;
  height: 50px;
}

.calc-form .select.active .select-title:before{
  transform: translate(-4px, -50%) rotate(-45deg);
} 

.calc-form .select.active .select-title:after{
  transform: translate(4px, -50%) rotate(45deg);
}

.calc-form .select.active .select-content {
  opacity: 1;
  visibility: visible;
}

.calc-form .select.active .select-label {
  max-height: 50px;
  border-top-width: 1px;
}
.calc-form .select-label.checked{
  display: none;
}   

.calc-form .select-title {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  cursor: pointer;
  padding: 0 60px 0 15px;
  font-size: 16px;
  color: #666;
  background: linear-gradient(to left, #1F2123 50px, #1A1C1E 50px);
  transition: 0.4s;
  border: 1px solid transparent;
  border-bottom: none;
}
.calc-form .select.active .select-title{
  border-color: var(--red);
}
.calc-form .select-title:before, .calc-form .select-title:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  display: block;
  width: 12px;
  height: 1px;
  transition: all 0.3s ease-out;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
  transform: translate(-4px, -50%) rotate(45deg);
}

.calc-form .select-title:after {
  transform: translate(4px, -50%) rotate(-45deg);
  background: linear-gradient(to left, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
}

.calc-form .select-content {
  position: absolute;
  top: 50px;
  left: 0;
  width: 100%;
  max-height: 285px;
  overflow-y: scroll;
  background-color: #1A1C1E;
  transition: all 0.4s ease-out;
  opacity: 0;
  visibility: hidden;
  z-index: 8;
  border: 1px solid var(--red);
  border-top: none;
}

.calc-form .select-input {
  display: none;
}
.calc-form .select-label {
  display: flex;
  align-items: center;
  height: 40px;
  max-height: 0;
  padding: 0 16px;  
  transition: all 0.2s ease-out;
  cursor: pointer;  
  overflow: hidden;
  font-size: 14px;
  color: #666;
}
.calc-form .select-label:hover {
  color: var(--silver);
}
.calc-form .label, .calc-result .label{
  font-weight: 300;
  font-size: 14px;
  display: block;
  color: var(--silver);
  margin-bottom: 8px;
}
.calc-form .btn{
  margin-left: auto;
}
.calc-result{
  padding-top: 35px;
  border-top: 1px solid #232628;
}

.calc-result li{
  width: calc(25% - 15px);
  margin: 0 7.5px 15px;
}
.calc-result li.group_total{
  width: calc(100% - 15px);  
}
.calc-result .input{
  display: block;
  color: var(--red);
}
.uForm__error-msg{
  color: var(--red);
}

.cat-tabs .tab.active{
  color: var(--silver);
}

.cat-tabs .tab.active .checkmark {
  background-color: #1A1C1E;
  border-color: var(--red);
  box-shadow: none;
}
.cat-tabs .tab.active .checkmark:before {
  opacity: 1;
  width: 5px;
  height: 5px;
}
.filter-form .input-box{
  width: calc(50% - 10px);
}
.cat-results{
  margin-left: -25px;
  margin-right: -25px;
}
.cat-results .result-item{
  display: flex;
  flex-direction: column;
  width: calc(33.33% - 50px);
  position: relative;
  margin: 0 25px 50px;  
}
.cat-results .img-box{
  display: block;
  position: relative;
  padding-bottom: 72%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.cat-results .price{
  width: 150px;
  height: 37px;
  padding: 9px 17px;
  position: absolute;
  top: 28px;
  left: 0;
  background: linear-gradient(-90deg, rgba(198, 45, 39, 0) 0%, #C62D27 61.98%);
  font-size: 20px;
  line-height: 1;
  text-transform: uppercase;
  color: #FFF;
}
.cat-results .text-box{
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 50px 40px 30px;
  border: 1px solid #2A2D31;
  margin-bottom: 20px;
}
.cat-results .result-item .title{
  flex: 1;
  font-size: 16px;
  text-transform: uppercase;
  color: var(--silver);
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.cat-results .result-item .title:after {
  content: '';
  width: 38px;
  height: 1px;
  background: var(--red);
  position: absolute;
  left: 0;
  bottom: 0;
}
.cat-results .result-item .info{
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}
.cat-results .result-item .info:before {
  margin-right: 15px;
}
.cat-results .btn-box{
  max-width: max-content;
  margin-left: auto;
}
.cat-results .hidden-info{
  position: absolute;
  width: 100%;
  top: 30px;
  right: 30%;
  padding: 40px;
  transition: .3s;
  background: rgba(28, 31, 34, .95);
  transform: translateX(-10px);
  opacity: 0;
  visibility: hidden;
}
.cat-results .hidden-info li{
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: 300;
  color: var(--silver);
}
.cat-results .hidden-info .key{
  margin-right: 10px;
}
.cat-results .hidden-info .group_total{
  font-weight: 500;
}
.cat-results .btn-box:hover .hidden-info{
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}




/*=====================================*/
@media screen and (min-width: 1700px){
  /*.main-screen{padding: 290px 0 50px;}*/
}
@media screen and (max-width: 1700px){
  .stages-scale .item{flex-shrink: 0;}
}
@media screen and (max-width: 1500px){ 
  .header .indicators {padding: 9px 20px;}
  .main-screen .ttl.lg{font-size: 96px;}
  .main-adv .item .img-box {width: 120px; height: 135px;}
  .main-adv .item .text-box {width: calc(100% - 120px);}
  .main-stages .title-flex .text-box {width: calc(100% - 580px); margin-right: 0;}
  .main-stages .stages-list li{margin-bottom: 15px;}
  .main-stages .stages-list .item{width: calc(33.3% - 10px); padding: 110px 15px 20px;}
  .cars .item .text-box{padding: 20px 15px 30px;}
  .cars .text-box .hidden-info{padding: 30px 10px;}
  .main-auto{padding: 7% 0 5%;}
  .footer .form-box{padding: 0;}
  .footer-contacts .item{width: calc(33.3% - 15px);}
  .footer-menu a{margin: 0 12px;}
  .footer .messenger{margin: 0 20px;}
  .news-wrapper{padding: 50px;}
  .news-item .text-box{padding: 30px 15px 15px;}
  .news-item .publication-date{margin-right: -15px;}
  .your-car .info .text-box{padding: 25px 15px;}
  .your-car .ports .map-box{width: calc(100% - 420px);}
  .calc-form .radio-label {margin-right: 15px;}
  .your-car .map-box .state{font-size: 12px;}
  .cat-results{margin-left: -10px; margin-right: -10px;}
  .cat-results .result-item{width: calc(33.33% - 20px); margin: 0 10px 20px;}
}
@media screen and (max-width: 1300px){
  .header .logo{width: 250px;} 
  .header .indicators, .header .phones {
    margin-right: 15px;
  }
  .main-screen{
    background: url(/images/main-scr-bg.jpg) no-repeat center / cover;
    padding: 0;
  }
  .main-vid{display: none;}
  .main-screen .wrapper{position: static;}
  .calc-form .radio-group {width: calc(100% - 100px);}
  
  .cat-results .hidden-info{right: 40px; padding: 15px;}
  .cat-results .text-box {padding: 15px;}
}
@media screen and (max-width: 1200px){
  .mt100{margin-top: 70px;}
  .mt50{margin-top: 35px;}
  .pt150{padding-top: 100px;}
  .pb150{padding-bottom: 100px;}
  .mb150{margin-bottom: 100px;}
  .mb110{margin-bottom: 80px;}
  .mb80{margin-bottom: 55px;}
  .mb60{margin-bottom: 40px;}
  .mb50{margin-bottom: 35px;}
  .mb40{margin-bottom: 30px;}
  .mb35{margin-bottom: 25px;}
  .mb30{margin-bottom: 20px;}
  .mb25{margin-bottom: 17px;}
  .mb20{margin-bottom: 15px;}
  .ttl.lg{font-size: 36px;}
  .ttl.md{font-size: 24px;}
  .ttl.sm{font-size: 18px;}  
  .header .indicators{order: 2; margin: 5px auto 0;}
  .header.sticky .indicators{display: none;} 
  .header .phones {margin-left: auto;}
  .main-screen{padding-top: 180px;}
  .main-adv .item{width: calc(50% - 35px); margin-bottom: 15px;}
  .main-adv .item:nth-of-type(even){bottom: 0;}
  .title-flex .title-box{width: 100%; margin-bottom: 15px;}
  .main-stages .title-flex .text-box{width: 100%;}
  .main-stages .stages-list .item{width: 100%;}
  .cars .item{width: calc(50% - 20px);}
  .consult-form-section .form-wrapper {padding: 30px 15px;}
  .footer-menu{display: none;}
  .page-header{min-height: 240px;}
  .news-item{width: calc(50% - 22px);}
  .calc-form .form-col{width: 100%; max-width: 700px; margin: 0 auto;}
  .calc-form .form-col:first-child {padding-top: 0;}
  .calc-form .radio-box{margin-bottom: 20px;}
}
@media screen and (max-width: 992px){
  .header .container {height: auto;}
  .main-screen .ttl.lg{font-size: 72px;}
  .main-auto .info-flex .item, .main-auto .info-flex .item:nth-child(1){width: 100%;margin-bottom: 10px; padding: 30px 15px; text-align: center;}
  .main-auto .btn{margin-left: auto; margin-right: auto;}
  .review-item .img-box{display: none;}
  .review-item .text-box{width: 100%; padding: 40px 0 0;}
  .footer .form-box{width: 100%;}
  .footer .img-box{display: none;}
  .footer-contacts .item{width: 100%; margin-bottom: 30px;}
  .your-car .info .item{width: 100%; margin-bottom: 30px;}
  .vin-number .label {font-size: 16px;}
  .vin-number .input {max-width: 230px;}
  .vin-number button{width: 130px;}
  .your-car .ports .ttl-box{width: 100%; margin-bottom: 50px;}
  .your-car .ports .map-box{width: 100%;}
  .your-car .map-box .texas{top: 94%;}
  .your-car .map-box .jersey{top: 35%;}
  .your-car .map-box .georgia{top: 92%;}
  .your-car .map-box .florida{top: 125%; right: 10%;}
  .calc-result li{width: calc(33.33% - 8px);}
  .cat-results .hidden-info{display: none;}
}
@media screen and (max-width: 768px){
  .mobile-hide{display: none;}
  .header {padding: 5px 0;}
  .header .logo{width: 200px;}
  .header .indicators{align-items: flex-end;}
  .header .indicators .item{flex-direction: column; align-items: flex-start;}
  .header .indicators .separator{margin-bottom: 4px;}
  .main-screen .subttl {width: 100%;}
  .main-adv{padding-right: 15px;}
  .main-adv .item{width: 100%;}
  .cars .item{width: calc(100% - 20px);}
  .consult-form .form-group{width: 100%; margin-bottom: 10px;}
  .gallery-block .text{width: 100%; margin-bottom: 30px;}
  .footer .bottom{flex-direction: column; align-items: center; padding: 15px 0;}
  .footer .logo-box{order: 2;}
  .footer .messenger, .footer .social{margin: 0 0 20px;}
  .footer .social a{margin: 0 8px;}
  .footer .copyright{text-align: center;}
  .news-wrapper{padding: 25px 15px;}
  .articleBody p{margin-bottom: 20px;}
  .articleBody ul{margin-bottom: 20px;}
  .articleBody ul li{margin-bottom: 15px;}
  .articleBody ul li:before {margin-right: 10px;}
  .news-item{width: calc(100% - 22px);}
  .vin-number .label {width: 100%; margin-bottom: 10px; text-align: center;}
  .calc-form .radio-group{height: auto; flex-direction: column; align-items: flex-start; padding: 10px 10px 0;}
  .calc-form .radio-label{margin: 0 0 10px;}
  .calc-result li{width: calc(50% - 8px);}
  .your-car .map-box .state{font-size: 10px;}
  .filter-form .input-box{width: 100%;}
  .cat-results .result-item{width: calc(50% - 20px);}
}
@media screen and (max-width: 550px){
  .mt100{margin-top: 50px;}
  .mt50{margin-top: 25px;}
  .pt150{padding-top: 70px;}
  .pb150{padding-bottom: 70px;}
  .mb150{margin-bottom: 70px;}
  .mb110{margin-bottom: 50px;}
  .mb80{margin-bottom: 40px;}
  .mb60{margin-bottom: 30px;}
  .mb50{margin-bottom: 25px;}
  .mb40{margin-bottom: 20px;}
  .mb35{margin-bottom: 17px;}
  .mb30{margin-bottom: 15px;}
  .mb20{margin-bottom: 12px;}
  .mb20{margin-bottom: 10px;}
  .mb15{margin-bottom: 8px;}
  .mb15{margin-bottom: 7px;}
  .ttl.lg{font-size: 30px;}
  .ttl.md{font-size: 20px;}
  .ttl.sm{font-size: 16px;}
  .subttl {width: 100%; padding: 5px 10px; font-size: 10px;}
  .header .phones{display: none;}
  .header .logo{width: 250px;}
  .header .indicators{width: calc(100% + 30px); margin: 5px -15px 0; border-top: 1px solid #3F4247; justify-content: center;}
  .main-screen .ttl.lg {font-size: 60px;}
  .main-screen .bottom {flex-direction: column; align-items: center;}
  .main-screen .bottom .arrow {display: none;}
  .main-screen .video-link span{display: block; margin: 0 auto 15px; text-align: center;}
  .main-content {background-size: 160% auto; animation-duration: 20s;}
  .cars .item .text-box {padding: 10px;}
  .consult-form-section .form-wrapper {padding: 10px;}
  .footer .form-wrapper {padding: 10px;}
  .input {padding: 10px;}
  .gallery-slider{width: 95%; margin-left: auto; margin-right: auto;}
  .pagination-list{justify-content: center;}
  .vin-number .input {max-width: calc(100% - 130px);}
  
}
@media (max-width: 480px){
  .review-item{padding-right: 20px;}
  .review-item .rating{width: 100%;}
  .review-item .rating .title{display: none;}
  .news-item {flex-wrap: wrap;}
  .news-item .item-image{width: 100%; max-height: 200px;}
  .news-item .text-box{width: 100%;}
  .cat-results .result-item{width: calc(100% - 20px); margin-bottom: 15px;}
}

@media screen and (max-width: 425px){
  .ttl.lg{font-size: 24px;}
  .ttl.md{font-size: 18px;}
  .main-screen .ttl.lg {font-size: 48px;}
  .subttl{font-size: 9px;}
  .review-item .auto{width: 100%; margin-bottom: 10px;}
  .calc-result li{width: calc(100% - 8px);}
}
@media screen and (max-width: 360px){
  .header .logo{width: 218px;}
  .header .indicators span{font-size: 12px;}
  .header .indicators .value{width: 80px;}
  .vin-number .input {max-width: 100%; margin-bottom: 10px; text-align: center;}
  .vin-number button{width: 100%;}
}