html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: "NotoSans", Arial, sans-serif;
  font-size: 16px;
  color: #363e40;
  position: relative;
  font-weight: 400;
  padding: 0;
  overflow-x: hidden;
  max-width: 1920px;
  margin: 0 auto;
  /* background-position: 38% 0px; */
}
.mobile-wrapper {
  display: none;
}
.compensate-for-scrollbar {
  margin: 0 auto !important;
  overflow: auto !important;
}

* {
  box-sizing: border-box;
}
h2,
p {
  margin: 0;
  padding: 0;
}
ul {
  list-style: none;
  padding: 0;
}

input[type="file"] {
  display: none;
}

.resp_table {
  width: 100%;
}

.resp_table tr td:before {
  display: none;
}

.resp_table img {
  max-width: unset;
  width: unset;
  display: block;
  width: 100%;
  /* height: 50px; */
}

img {
  border-style: none;
  vertical-align: middle;
  max-width: 100%;
  transition: 0.5s;
}

select::-ms-expand {
  display: none;
}

select {
  appearance: none;
  -moz-appearance: none; /* Firefox */
  -webkit-appearance: none; /* Safari and Chrome */
  background: url(../img/icon/ico_select.png) 100% 50% no-repeat;
  font-family: "NotoSans", Arial, sans-serif;
  outline: none;
}

a {
  text-decoration: none;
}

.container {
  margin: 0 auto;
  padding: 0 15px;
  max-width: 1420px;
  position: relative;
}
@media (max-width: 576px) {
  .container {
    width: 540px;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .container {
    width: 720px;
    max-width: 100%;
  }
  .mobile-wrapper {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    position: fixed;
    top: 0;
    left: auto;
    right: 0;
    z-index: 33;
  }
  .mobile-wrapper .mobile-container {
    /* background: #fff0; */
    /* border-bottom-width: 80px; */
    border-radius: 20px;
    /* box-shadow: 0 0 10px 10px rgba(0, 0, 0, 0.1); */
    display: inline-block;
    /*height: 500px;*/
    /* margin: 0 30px; */
    position: relative;
    width: 300px;
    float: right;
  }

  .content {
    /* background: aliceblue; */
    display: block;
    height: 100%;
    /*overflow: hidden;*/
    width: 100%;
  }
  .content nav {
    /* background: #fff; */
    /* border-bottom: 1px solid #ddd; */
    height: 75px;
    position: relative;
  }
  .content .nav-links {
    display: block;
    position: absolute;
    top: 92px;
    left: auto;
    width: 100%;
    height: 0;
    right: 0px;
    z-index: 9;
    background: white;
  }
  .content .nav-links::before {
    content: "";
    height: 100vh;
    left: 0;
    top: 0;
    position: absolute;
    opacity: 0;
    visibility: hidden;
    width: 100%;
    transition: all 0.3s;
  }
  .content .nav-links li {
    border-bottom: 1px solid #ddd;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.3s;
  }
  .content .nav-links li a {
    background: #fff;
    color: #404040;
    display: block;
    font-size: 18px;
    font-weight: 700;
    padding: 12px 20px;
    text-align: left;
    width: 100%;
    transition: all 0.3s;
  }
  .content .nav-links li a:hover {
    color: #00329b;
  }

  .mobile-wrapper input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    visibility: hidden;
  }

  .mobile-wrapper input[type="checkbox"]:checked + label {
  }
  .mobile-wrapper input[type="checkbox"]:checked + label::before {
    transform: rotate(-45deg) translate(-3px, 3px);
    width: 35px;
  }
  .mobile-wrapper input[type="checkbox"]:checked + label::after {
    transform: rotate(45deg) translate(-5px, -7px);
    width: 35px;
  }
  .mobile-wrapper input[type="checkbox"]:checked + label {
    border-top: 0;
  }
  .mobile-wrapper input[type="checkbox"]:checked + label:hover::after {
  }

  .mobile-wrapper input[type="checkbox"]:checked ~ .nav-links {
  }

  .mobile-wrapper input[type="checkbox"]:checked ~ .nav-links::before {
    opacity: 1;
    visibility: visible;
  }
  .mobile-wrapper input[type="checkbox"]:checked ~ .nav-links li {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .mobile-wrapper input[type="checkbox"]:checked ~ .nav-links li:nth-child(1) {
    transition-delay: 0s;
  }
  .mobile-wrapper input[type="checkbox"]:checked ~ .nav-links li:nth-child(2) {
    transition-delay: 0.1s;
  }
  .mobile-wrapper input[type="checkbox"]:checked ~ .nav-links li:nth-child(3) {
    transition-delay: 0.2s;
  }
  .mobile-wrapper input[type="checkbox"]:checked ~ .nav-links li:nth-child(4) {
    transition-delay: 0.3s;
  }
  .mobile-wrapper input[type="checkbox"]:checked ~ .nav-links li:nth-child(5) {
    transition-delay: 0.4s;
  }
  .mobile-wrapper input[type="checkbox"]:checked ~ .nav-links li:nth-child(6) {
    transition-delay: 0.5s;
  }
  .mobile-wrapper input[type="checkbox"]:checked ~ .nav-links li:nth-child(7) {
    transition-delay: 0.6s;
  }

  .mobile-wrapper label.checkbox_label {
    background: none transparent;
    border-top: 2px solid #00329b;
    cursor: pointer;
    display: block;
    height: 24px;
    position: absolute;
    top: 18px;
    left: auto;
    right: 20px;
    width: 32px;
    transition: all 0.2s;
  }
  .mobile-wrapper label.checkbox_label::before {
    background: #00329b;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    top: 11px;
    width: 24px;
    transition: all 0.2s;
  }
  .mobile-wrapper label.checkbox_label::after {
    background: #00329b;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    top: 24px;
    opacity: 1;
    width: 32px;
    transition: all 0.2s;
  }
}

@media (max-width: 992px) {
  .container {
    width: 960px;
    max-width: 100%;
  }
}

@media (max-width: 1200px) {
  .container {
    width: 1140px;
    max-width: 100%;
  }
}

input[type="text"],
input[type="tel"] {
  color: #939393;
}

.has-danger input,
.has-danger select,
.has-danger textarea {
  border-width: 2px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #eba5a3;
}

#form_popup_tradein,
#form_popup_credit,
#form_popup {
  display: none;
}

.popup_container {
  width: 520px;
  max-width: 100%;
  padding: 5px 29px;
  overflow: hidden !important;
  position: relative;
  box-sizing: border-box; /* border: 2px solid black; */
  background: white;
  text-align: center;
  padding-bottom: 30px;
}
.timer_content_form form {
  padding: 0;
  background: transparent;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.timer_content_form .form-group {
  margin-bottom: 0;
}
.popup_container .agree_field {
  color: black;
  font-size: 12px;
  text-align: left;
}
.popup_container .agree_field a {
  color: black;
}

.popup_container h2 {
  font-size: 24px;
  font-weight: 700;
  padding: 0px;
  margin: 0px;
  padding-bottom: 29px;
  text-align: center;
  padding-top: 25px;
  color: black;
}

.popup_container .form_comment {
  text-align: center;
  font-size: 20px;
  color: #414141;
  padding-bottom: 15px;
}

.popup_container .form_comment a {
  display: block;
  color: #414141;
  text-decoration: none;
}

.popup_container .form-group {
  margin-bottom: 19px;
}

.popup_container .form-group input[type="text"],
.popup_container .form-group input[type="tel"] {
  color: #939393;
  display: block;
  height: 50px;
  line-height: 100%;
  text-decoration: none;
  text-align: left;
  /* text-transform: uppercase; */
  margin-bottom: 10px;
  width: 100%;
  box-sizing: border-box;
  outline: none;
  background: white;
  border: 1px solid #293337;
  padding: 10px 16px;
}

.popup_container .form-group ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #939393;
}

.popup_container .form-group ::-moz-placeholder {
  /* Firefox 19+ */
  color: #939393;
}

.popup_container .form-group :-ms-input-placeholder {
  /* IE 10+ */
  color: #939393;
}

.popup_container .form-group :-moz-placeholder {
  /* Firefox 18- */
  color: #939393;
}

.popup_container .form-group textarea {
  color: black;
  display: block;
  height: 100px;
  text-decoration: none;
  text-align: left;
  /* text-transform: uppercase; */
  margin-bottom: 10px;
  width: 100%;
  box-sizing: border-box;
  outline: none;
  background: none;
  border: 1px solid #c0c6c9;
  padding: 10px;
  resize: none;
  font-size: 16px;
}

.popup_container .form-group select {
  color: #939393;
  height: 50px;
  width: 100%;
  font-size: 16px;
  font-weight: 300;
  padding-left: 10px;
  background-color: white;
  border: 1px solid #293337;
}

.popup_container .form-group button {
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  height: 50px;
}

.alert.fancybox-content {
  overflow: hidden;
}

.not_agree button {
  background-color: #cccccc !important;
  cursor: auto !important;
  color: white !important;
}

.agree_field {
  font-size: 10px;
  line-height: 100%;
  position: relative;
  display: inline-block;
  padding-left: 20px;
  top: 5px;
  font-weight: 300;
}

.agree_field a {
  color: white;
  text-decoration: underline;
}

.agree_field input {
  position: absolute;
  top: -1px;
  left: 0px;
  margin: -0px;
}

.agree_field span {
  padding-left: 25px;
  display: inline-block;
}

.popup_container .form-disclamer {
  color: #b8b8b8;
  font-size: 10px;
  padding-top: 10px;
  text-align: center;
}

form .form-group {
  position: relative;
  width: 100%;
}
.timer form .form-group {
  width: 48.5%;
  margin-bottom: 0;
}
.timer form .form-group input[type="text"],
.timer form .form-group input[type="tel"] {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}
.timer form .form-group input[type="text"]::placeholder,
.timer form .form-group input[type="tel"]::placeholder {
  color: #fff;
}
.contacts_cont form .form-group {
  padding-right: 20px;
}
.popup_container .form-group {
  position: relative;
  width: 100%;
}
form .form-group input[type="text"],
form .form-group input[type="tel"] {
  height: 50px;
  width: 100%;
  color: #fff;
  font-size: 14px;
  box-sizing: border-box;
  font-weight: 400;
  text-align: left;
  border: 1px solid #fff;
  padding: 0px 20px;
  outline: none;
  background: transparent;
  font-family: "NotoSans", Arial, sans-serif;
}

select {
  display: block;
  color: #ffffff;
  height: 50px;
  width: 100%;
  padding-left: 15px;
  padding-right: 35px;
  font-size: 14px;
  font-weight: 400;
  outline: none;
  background: url(../img/icon/ico_select.png) right 20px center no-repeat;
  border: 1px solid #fff;
}

form .form-group button {
  width: 100%;
  height: 50px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 300;
  outline: none;
}

form ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #fff;
}

form ::-moz-placeholder {
  /* Firefox 19+ */
  color: #fff;
}

form :-ms-input-placeholder {
  /* IE 10+ */
  color: #fff;
}

form :-moz-placeholder {
  /* Firefox 18- */
  color: #fff;
}

.form_title {
  color: black;
  font-size: 36px; /* text-transform: uppercase; */
  padding: 0px;
  margin: 0px;
  text-align: center;
  padding-bottom: 47px;
}

.form_title span {
  display: block;
  white-space: nowrap;
}

.btn {
  background: #293337;
  color: white;
  /* text-transform:uppercase; */
  text-align: center;
  height: 50px;
  width: 250px;
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 14px;
  border: 1px solid #293337;
  position: relative;
  text-decoration: none;
  transition: all 0.2s linear;
}

.btn span {
  display: inline-block;
  width: 100%;
  position: relative;
  z-index: 2;
  text-transform: uppercase;
}

.btn:before {
  content: "";
  width: 0;
  left: 50%;
  height: 50px;
  position: absolute;
  z-index: 1;
  background: #00359a;
  transition: all 0.3s linear;
}

.btn:hover:before {
  width: 100%;
  left: 0;
}

.btn:hover {
  /* background: none; */
  border: 1px solid #00359a;
}

.btn.glass {
  background: transparent;
  border: 1px solid #293337;
  color: #293337;
  font-weight: 400;
}

.btn.glass:hover {
  /* background: none; */
  border: 1px solid #00359a;
  color: white;
}

.btn.glass:before {
  background: #00359a;
}

.btn.blue {
  background: #00359a;
  border: 1px solid #00359a;
}

.btn.blue:hover {
  /* background: none; */
  border: 1px solid #293337;
}

.btn.blue:before {
  background: #293337;
}
.btn.white {
  background: #fff;
  border: none;
}
.btn.white span {
  color: #363e40;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.btn.white:hover span {
  color: #fff;
}

.btn.btn_tr {
  background: transparent;
  color: #363e40;
}
.btn.btn_tr:hover {
  color: #363e40;
  background: rgba(54, 62, 64, 0.2);
  border-color: #363e40;
}
.btn.btn_tr::before {
  background: rgba(54, 62, 64, 0.2);
}
.page_title {
  line-height: 50px;
  font-size: 48px;
  text-align: center;
  font-weight: 300;
  text-transform: uppercase;
}

/*************************************************************************************************************************/

header {
  padding: 23px 0 15px;
  background: #f7f7f7;
}

header .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 20px;
}

header .header .logo_wrap {
  display: flex;
  align-items: center;
}

header .header .logo_wrap .logo {
}

header .header .logo_wrap .logo.logo1 {
  padding: 7px 0;
  padding-right: 18px;
  margin-right: 18px;
  border-right: 1px solid #363e40;
}
header .header .logo_wrap .logo.logo2 {
  text-align: center;
}
header .header .logo_wrap .logo.logo2 p {
  color: #000;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: 12px;
}
header .header .logo_wrap .logo.logo2 p span {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  text-transform: uppercase;
}

header .header .top_phone {
  color: #363e40;
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
  margin-right: 20px;
}

header .header .top_addr {
}
header .header .btn {
  color: #fff;
  border-color: #363e40;
  background: #363e40;
}
.header .btn {
  color: #fff;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.header .m_btn {
  display: none;
}
/**************************************************************************************************************/
.header_menu {
  padding: 0;
  background: #363e40;
}
.header_menu_nav {
  padding-top: 2px;
  padding-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header_menu_nav ul {
  display: flex;
  padding: 0;
  margin: 0;
}
.header_menu_nav ul li {
  margin-right: 55px;
}
.header_menu_nav ul:nth-child(2) li {
  margin-right: 0;
  margin-left: 55px;
}
.header_menu_nav ul li a {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  transition: all 0.2s linear;
}
.header_menu_nav ul li a:hover {
  border-bottom: 1px solid #fff;
}
.select_container select option {
  color: #000;
  font-weight: 600;
}
/**************************************************************************************************************/

.timer {
  background: #363e40;
  padding-top: 13px;
  padding-bottom: 28px;
}
.timer_content {
  display: flex;
  justify-content: space-between;
}
.timer_content_date,
.timer_content_form {
  width: 50%;
  text-align: left;
}
.timer_content_item {
  color: #fff;
  font-size: 25px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}
.timer_content_date > div[id] {
  margin-top: 8px;
  min-width: auto !important;
  float: left;
  display: flex;
  justify-content: left;
  width: 100%;
}
.timer_content_form {
  margin-top: 10px;
  display: grid;
}
.form_block {
  display: flex;
  margin-top: 15px;
  justify-content: space-between;
}
.form_title2 {
  color: #ffffff;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: left;
}
.timer .btn span {
  color: #363e40;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.timer .agree_field {
  color: #fff;
}
.timer .agree_field a {
  color: #fff;
}
/**************************************************************************************************************/

.avantages {
  margin-top: 23px;
  margin-bottom: 70px;
}
.avantages_cont {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  grid-gap: 10px;
  list-style-type: none;
}
.avantages_cont_block {
  padding: 15px 13px;
  background: #f7f7f7;
  display: grid;
  transition: all 0.2s linear;
}
.avantages_cont_block p {
  color: #363e40;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  margin-top: 12px;
  transition: all 0.2s linear;
}
.avantages_cont_block img {
  transition: all 0.2s linear;
}
.avantages_cont_block img:nth-child(1) {
  display: block;
}
.avantages_cont_block img:nth-child(2) {
  display: none;
}
.avantages_cont_block:hover {
  background: rgba(0, 50, 155, 1);
}
.avantages_cont_block:hover p {
  color: #fff;
}
.avantages_cont_block:hover img:nth-child(2) {
  display: block;
}
.avantages_cont_block:hover img:nth-child(1) {
  display: none;
}

/**************************************************************************************************************/

.car_title {
  width: 100%;
  display: flex;
  justify-content: space-between;
  background: #363e40;
  height: 110px;
}
.car_item {
  display: flex;
  flex-flow: wrap;
  justify-content: space-between;
}

.car_image_wrap {
  position: relative;
  width: 100%;
}

.car_name {
  display: flex;
  color: #fff;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  align-items: center;
  padding-left: 43px;
}
.car_name span {
  font-weight: 700;
}
.car_price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #00329b;
  border-radius: 50px 0 0 50px;
  height: 100%;
  padding-right: 105px;
  padding-left: 46px;
}
.car_price_text {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  text-align: right;
}
.car_price_text p {
  color: #fff;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.car_price_text span {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.car_price_text p span {
  color: #fff;
  font-size: 26px;
  font-style: normal;
  line-height: normal;
  font-weight: 800;
}
.car_price_icon {
  margin-right: 10px;
}
.car_item_block {
  display: flex;
  flex-wrap: wrap;
  background: #f7f7f7;
  padding: 50px 38px 117px;
}
.car_image_wrap,
.advant_group {
  width: 50%;
}
.advant_group {
  display: flex;
  flex-wrap: wrap;
}
.advant_group ul li a {
  display: flex;
  align-items: center;
}
.advant_group ul {
  width: 50%;
  display: flex;
  flex-direction: column;
}
.advant_group ul li {
  margin-bottom: 26px;
  flex-grow: 1;
  display: flex;
  align-items: center;
}
.advant_group ul li a p {
  color: #363e40;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-left: 20px;
}
.advant_group ul li a p span {
  font-weight: 800;
}
.car_colors {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
}
.car_colors span {
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.car_colors > div {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  /* width: 36px; */
  /* height: 36px; */
  /* border-radius: 50%; */
  cursor: pointer;
  position: relative;
  margin-left: 16px;
}

.car_colors > div span {
  display: block;
  box-sizing: border-box;
  width: 27px;
  height: 27px;
  border: 1px solid transparent;
}

.car_colors > div:before {
  content: "";
  box-sizing: border-box;
  width: 35px;
  height: 33px;
  /* border: 1px solid #ff874a; */
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.car_colors > div.active span {
  width: 34px;
  height: 34px;
}

.car_colors > div.active:before {
  opacity: 1;
}

.car_gallery {
  width: 132px;
  margin-right: 90px;
  margin-top: -65px;
}

.car_gallery a {
  display: block;
  position: relative;
  /*width: 132px !important;
    height: 132px !important;*/
  margin: 3px 0 !important;
  border: none !important;
}

.car_gallery a:nth-child(n + 4) {
  /* display:none; */
}

.car_gallery a img {
  width: 100%;
}

.car_gallery a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  border: 2px solid #ce8968;
  opacity: 0;
  transition: all 0.3s;
}

.car_gallery a:hover:before {
  opacity: 1;
}

.car_btns {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.car_btns .btn {
  margin-top: 10px;
  width: 48%;
  height: 50px;
  justify-content: center;
}

.car_btns .btn.mob {
  display: none;
}

/************************************************************************************************************************/

.mySwiperThumbGallery1,
.mySwiperThumbGallery2,
.mySwiperThumbGallery3 {
  height: 175px;
}
.mySwiperThumbGallery1 .swiper-slide a img,
.mySwiperThumbGallery2 .swiper-slide a img,
.mySwiperThumbGallery3 .swiper-slide a img {
  width: 100%;
  height: auto;
}
.car_image_thumb {
  margin-top: 0;
  width: 94%;
  position: relative;
  top: -88px;
  left: 3%;
}
.mySwiperThumbGallery1 .swiper-slide a:hover img,
.mySwiperThumbGallery2 .swiper-slide a:hover img,
.mySwiperThumbGallery3 .swiper-slide a:hover img {
  transform: scale(1.1);
}
.mySwiperThumbGallery1 .swiper-slide,
.mySwiperThumbGallery2 .swiper-slide,
.mySwiperThumbGallery3 .swiper-slide {
  overflow: hidden;
}
.swiper-button-prev.btn-prev1.swiper-button-disabled,
.swiper-button-prev.btn-prev2.swiper-button-disabled,
.swiper-button-prev.btn-prev3.swiper-button-disabled {
  opacity: 1 !important;
}
.swiper-button-next.btn-next1.swiper-button-disabled,
.swiper-button-next.btn-next2.swiper-button-disabled,
.swiper-button-next.btn-next3.swiper-button-disabled {
  opacity: 1 !important;
}

.car_image_thumb .swiper-button-next,
.car_image_thumb .swiper-button-prev {
  display: none;
}

/************************************************************************************************************************/

.main_widget {
  /* display: none; */
  position: fixed;
  z-index: 4;
  right: 85px;
  top: 155px;
}

.widget_btn {
  /* display: none; */
}

.btn_text {
  background: #203896;
  color: #fff;
  border-radius: 50%;
  position: relative;
  text-align: center;
  font-size: 14px;
  line-height: 16px;
  width: 100px;
  height: 100px;
  box-shadow: 0 0 6px 4px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  padding-top: 34px;
}

.close_widget_btn {
  position: absolute;
  width: 12px;
  height: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -3px;
  right: -3px;
  cursor: pointer;
  z-index: 5;
}

.close_widget_btn span {
  width: 1px;
  height: 100%;
  background: #ccc;
  transform: rotate(-45deg);
}

.close_widget_btn span:nth-child(2) {
  transform: rotate(45deg);
  margin-left: -1px;
}

.widget_content {
  display: none;
  padding-top: 70px;
  color: #fff;
  position: relative;
}

.close_widget {
  width: 54px;
  height: 54px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 6px 4px rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}

.close_widget span {
  width: 1px;
  height: 16px;
  background: #000;
  transform: rotate(-45deg);
}

.close_widget span:nth-child(2) {
  transform: rotate(45deg);
  margin-left: -1px;
}

.widget_btns {
  background: #203896;
  padding: 15px 20px;
}

.btn_wrap {
  display: flex;
  align-items: center;
}

.btn_wrap .btn {
  border-color: #fff;
  color: #fff;
}

.btn_wrap .btn:before {
  background: #00359a;
}

.btn_wrap .btn:hover {
  /* background: #293337; */
  /* border-color: #293337; */
}

.btn_wrap.ico1 {
  background: url(../img/main_widget_ico1.png) 100% 50% no-repeat;
}

.btn_wrap.ico2 {
  background: url(../img/main_widget_ico2.png) 100% 50% no-repeat;
}

.btn_wrap.ico3 {
  background: url(../img/main_widget_ico3.png) 100% 50% no-repeat;
}

.btn_wrap.ico4 {
  margin: 0;
  background: url(../img/main_widget_ico4.png) 100% 50% no-repeat;
}

/**************************************************************************************************************/

.banner {
  position: relative;
  height: 680px;
  background: url(../img/banner.jpg) 50% 0 no-repeat;
  background-size: cover;
}
/*.banner:before {
    content: "";
    position: absolute;
    width: 1420px;
    height: 400px;
    background: url(../img/banner_img.png) no-repeat center top;
    background-size: contain;
    left: 50%;
    margin-left: -705px;
    top: 39%;
    z-index: 1;
}*/
.banner .container {
  display: flex;
  justify-content: center;
}
.banner_cont {
  padding-top: 57px;
  display: flex;
  /* margin: 0 auto; */
  justify-content: left;
  text-align: center;
  /* width: 100%; */
}

.banner .title_container {
  position: relative;
  width: 100%;
  padding: 0 54px 0 42px;
  z-index: 2;
}

/* .banner .title_container:before {
  content: "";
  position: absolute;
  top: 16px;
  left: 0%;
  width: 100%;
  height: 92%;
  background: url(../img/title_container_dec.png) no-repeat;
  background-size: 100% 100%;
  z-index: 1;
} */
/* 
.banner .title_container:after {
  content: "";
  position: absolute;
  top: -2vw;
  left: -18%;
  width: 136%;
  height: 77%;
  background: url(../img/title_container_dec_b.png) no-repeat;
  background-size: 100% 100%;
  z-index: -1;
} */

.title_container .title1 {
  position: relative;
  /* margin-top: 60px;
  margin-bottom: 43px; */
  font-size: 38px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
}
.title_container .title1 .br_mob {
  display: none;
}
.title_container .title1 span {
  color: #00329b;
}
.title_container .title1 .br_mob {
  display: none;
}
.title_container .title2 {
  margin-top: 12px;
  position: relative;
  font-size: 20px;
  font-weight: 400;
  color: #ffffff;
}
.title_container .title2 .br_mob {
  display: none;
}

.title_container .title2 span {
  font-size: 40px;
  font-size: 50px;
  font-weight: 700;
  color: #00329b;
  letter-spacing: -1px;
  position: relative;
  width: fit-content;
}

.title_container .title2 span sup {
  position: relative;
  top: 2px;
  padding-left: 2px;
  font-size: 48px;
  position: absolute;
  right: -32px;
}

.title_container .title3 {
  position: relative;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 400;
  padding-left: 6px;
}

.banner .title_container .sub_title {
  color: rgba(54, 62, 64, 1);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 10px;
}

.banner .title_container .sub_title b {
  display: block;
  font-weight: 400;
  font-size: 46px;
  margin-bottom: 30px;
}

.banner .title_container .sub_title span {
  display: block;
  font-size: 26px;
  font-weight: 700;
  padding-left: 27px;
  background: url("../img/dot.png") 0 50% no-repeat;
  margin-bottom: 15px;
  margin-right: 30px;
}

.banner .btn {
  width: 250px;
  max-width: 100%;
  margin-top: 12px;
  margin: 0 auto;
}
.banner .banner_btn {
  position: absolute;
  display: grid;
  justify-content: center;
  width: 116px;
  height: 106px;
  right: 12px;
  top: 100px;
}
.banner .banner_btn span {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  text-transform: uppercase;
  position: absolute;
  bottom: 10px;
  z-index: 5;
  width: 100%;
  text-align: center;
}
.banner .banner_btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -27px;
  width: 54px;
  height: 54px;
  background: url(../img/banner_btn_before.svg) no-repeat;
  background-size: contain;
}
.banner .banner_btn:after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 71px;
  background: url(../img/banner_btn_after.png) no-repeat;
}

.timer {
}
.title_pl {
  box-sizing: border-box;
  position: absolute;
  display: flex;
  align-items: center;
  /* justify-content: center; */
  top: -10px;
  right: 0;
  width: 435px;
  height: 135px;
  background: url("../img/title_pl2.png") 50% 0 no-repeat;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  font-size: 52px;
  font-weight: 300;
  line-height: 55%;
  padding-top: 20px;
  padding-left: 70px;
  transition: all 0.4s linear;
}

.title_pl.anim {
  right: -600px;
}

.title_pl b {
  font-weight: 900;
  font-size: 21px;
}

.car_of_the_year {
  position: absolute;
  bottom: -25%;
  right: 0;
}

/**************************************************************************************************************/

.model_block {
  margin-top: 260px;
}

.model_block .content {
}

.model_block .title {
}

.model_block .model_tech {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  text-align: center;
  position: relative;
}

.model_block .model_tech .tech_item {
}

.model_block .model_tech .tech_title {
  color: #a0b8c0;
}

.model_block .model_tech .tech_param {
  font-size: 72px;
  line-height: 75px;
  font-weight: 300;
  margin-top: 5px;
}

.model_block .model_tech .car_new {
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
  color: #293337;
  padding: 3px 0;
  padding-left: 50px;
  background: url(../img/car_new.png) 0 50% no-repeat;
  position: absolute;
  top: 120%;
  right: 0;
}

.car_props {
  position: absolute;
  top: 230px;
  left: 20px;
  z-index: 1;
}

.car_props a {
  display: flex;
  align-items: center;
  min-height: 67px;
  font-size: 24px;
  font-weight: 300;
  color: #000000;
  text-decoration: none;
  padding-left: 80px;
  margin-bottom: 10px;
  transition: all 0.3s;
  line-height: 100%;
}

.car_props a.ico1 {
  background: url("../img/prop_ico1.png") 0 50% no-repeat;
}

.car_props a.ico1:hover {
  background: url("../img/prop_ico1_hov.png") 0 50% no-repeat;
}

.car_props a.ico2 {
  background: url("../img/prop_ico2.png") 0 50% no-repeat;
}

#c5 .car_props a.ico2 {
  margin-top: 300px;
}

.car_props a.ico2:hover {
  background: url("../img/prop_ico2_hov.png") 0 50% no-repeat;
}

.car_props a.ico3 {
  background: url("../img/prop_ico3.png") 0 50% no-repeat;
}

.car_props a.ico3:hover {
  background: url("../img/prop_ico3_hover.png") 0 50% no-repeat;
}

.car_props a.ico2 b {
  font-size: 18px;
}

.model_block .model_slider {
  margin-top: 40px;
  padding-bottom: 80px;
}

.model_block .model_slider .model_img {
  display: flex;
  justify-content: center;
}

.model_block .model_btns {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
}

.model_block .model_btns .btn {
  width: 32%;
}

.model_block .model_slider .slick-arrow {
  position: absolute;
  top: calc(50% - 45px);
  display: block;
  width: 45px;
  height: 45px;
  background: none;
  border: 1px solid #293337;
  border-radius: 50%;
  cursor: pointer;
  color: transparent;
  font-size: 0;
  z-index: 1;
}

.model_block .model_slider .slick-arrow:hover {
  border-color: #a0b8c0;
}

.model_block .model_slider .slick-next {
  right: 0;
  background: url(../img/banner_arrow_next.png) 50% no-repeat;
}

.model_block .model_slider .slick-next:hover {
  background: url(../img/banner_arrow_next_hover.png) 50% no-repeat;
}

.model_block .model_slider .slick-prev {
  left: 0;
  background: url(../img/banner_arrow_prev.png) 50% no-repeat;
}

.model_block .model_slider .slick-prev:hover {
  background: url(../img/banner_arrow_prev_hover.png) 50% no-repeat;
}

.model_block .model_slider .slick-dots {
  position: absolute;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: center;
}

.model_block .model_slider .slick-dots li {
  margin: 0 20px;
  display: block;
  background: #a0b8c0;
  width: 60px;
  height: 2px;
  transition: all 0.3s linear;
  cursor: pointer;
}

.model_block .model_slider .slick-dots li button {
  display: none;
}

.model_block .model_slider .slick-dots li.slick-active {
  width: 160px;
}

/**************************************************************************************************************/

.model_desc {
}

.model_desc.exterior {
  margin-top: 80px;
  overflow: hidden;
}

.model_desc .container {
  width: 100%;
  padding: 0;
}

.model_desc .content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.model_desc.img_left .content {
  justify-content: flex-start;
}

.model_desc.img_right .content {
  justify-content: flex-end;
}

.model_desc .model_desc_slider {
  width: 50%;
  position: relative;
  transition: all 0.3s linear;
  overflow: hidden;
}

.model_desc .model_desc_slider .model_desc_img {
}

.model_desc .model_desc_text {
  width: 505px;
}

.model_desc .model_desc_text .title {
  font-size: 30px;
  text-transform: uppercase;
  line-height: 30px;
}

.model_desc .model_desc_text .description {
  font-size: 18px;
  padding-top: 20px;
  padding-right: 15px;
}

.model_desc .model_desc_text .btn {
  margin-top: 25px;
  width: 370px;
  max-width: 100%;
}

.model_desc.img_left .model_desc_text {
  padding-left: 55px;
}

.model_desc.img_right .model_desc_text {
  margin-left: auto;
  margin-right: 55px;
  padding-left: 15px;
}

.model_desc .model_desc_slider .slick-arrow {
  position: absolute;
  top: calc(50% - 45px);
  display: block;
  width: 45px;
  height: 45px;
  background: none;
  border: 1px solid #293337;
  border-radius: 50%;
  cursor: pointer;
  color: transparent;
  font-size: 0;
  z-index: 1;
}

.model_desc .model_desc_slider .slick-arrow:hover {
  border-color: #a0b8c0;
}

.model_desc .model_desc_slider .slick-next {
  right: 0;
  background: url(../img/banner_arrow_next.png) 50% no-repeat;
}

.model_desc .model_desc_slider .slick-next:hover {
  background: url(../img/banner_arrow_next_hover.png) 50% no-repeat;
}

.model_desc .model_desc_slider .slick-prev {
  left: 0;
  background: url(../img/banner_arrow_prev.png) 50% no-repeat;
}

.model_desc .model_desc_slider .slick-prev:hover {
  background: url(../img/banner_arrow_prev_hover.png) 50% no-repeat;
}

.model_desc .model_desc_slider .slick-dots {
  position: absolute;
  bottom: 20px;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  right: 30px;
}

/* anim */

/* .model_desc.img_left .model_desc_slider {
    width: 50%;
    position: relative;
    transition: all .3s linear;
    left: -1000px;
}
.model_desc.img_right .model_desc_slider {
    width: 50%;
    position: relative;
    transition: all .3s linear;
    right: -1000px;
} */

.model_desc .model_desc_slider:before {
  content: "";
  width: 100%;
  height: 800px;
  display: block;
  background: #fff;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  transition: all 0.8s linear;
}

.model_desc.img_left .model_desc_slider:before {
  right: 0;
}

.model_desc.img_right .model_desc_slider:before {
  left: 0;
}

/* .model_desc .model_desc_text {
    top: 160px;
    position: relative;
    transition: all .5s linear;
} */

.model_desc .model_desc_text .title {
  top: 160px;
  position: relative;
  opacity: 0;
  transition: all 0.4s linear;
  /* transition: top .6s linear; */
}

.model_desc .model_desc_text .description {
  top: 260px;
  position: relative;
  transition: all 0.7s linear;
  /* transition: top .7s linear; */
  opacity: 0;
}

.model_desc .model_desc_text .btn {
  top: 360px;
  position: relative;
  transition: all 1s linear;
  /* transition: top .8s linear; */
  opacity: 0;
}

/* .model_desc.img_left.anim .model_desc_slider {
    left: 0;
}
.model_desc.img_right.anim .model_desc_slider {
    right: 0;
} */

.model_desc.img_left.anim .model_desc_slider:before {
  width: 0;
}

.model_desc.img_right.anim .model_desc_slider:before {
  width: 0;
}

/* .model_desc.anim .model_desc_text {
    top: 0;
} */

.model_desc.anim .model_desc_text .title {
  opacity: 1;
  top: 0;
}

.model_desc.anim .model_desc_text .description {
  opacity: 1;
  top: 0;
}

.model_desc.anim .model_desc_text .btn {
  opacity: 1;
  top: 0;
}

/* anim end */

.model_desc.img_right .model_desc_slider .slick-dots {
  justify-content: flex-start;
  left: 30px;
}

.model_desc .model_desc_slider .slick-dots li {
  margin: 0 20px;
  display: block;
  background: #a0b8c0;
  width: 60px;
  height: 2px;
  transition: all 0.3s linear;
  cursor: pointer;
}

.model_desc .model_desc_slider .slick-dots li button {
  display: none;
}

.model_desc .model_desc_slider .slick-dots li.slick-active {
  width: 160px;
}

/**********************
       COMPLECTS
**********************/

#instock {
  position: relative;
  padding: 50px 0 118px;
}

#instock .container {
  z-index: 1;
}

.compl_items:before {
  content: "";
  display: block;
  width: 445px;
  height: 110%;
  background: url("../img/compl_fade_l.png") 100% 50% no-repeat;
  position: absolute;
  top: -5%;
  left: -37%;
  z-index: 2;
}

.compl_items:after {
  content: "";
  display: block;
  width: 445px;
  height: 110%;
  background: url("../img/compl_fade_r.png") 0 50% no-repeat;
  position: absolute;
  top: -5%;
  right: -37%;
  z-index: 2;
}

.compl_items .slick-list {
  overflow: visible !important;
}

#instock .compl_title {
  color: #363e40;
  font-size: 45px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}

#instock .models_wrap {
  margin-top: 30px;
  margin-bottom: 20px;
}

#instock .models {
  display: flex;
  column-gap: 136px;
  background: #363e40;
  padding: 0 40px 6px;
}

#instock .model_name {
  color: #fff;
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  text-transform: uppercase;
  transition: all 0.3s;
  cursor: pointer;
}

#instock .model_name.active span,
#instock .model_name:hover span {
  border-bottom: 1px solid #fff;
}

#instock .compl_items {
}

.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
}

#instock .compl_items .slick-prev {
  width: 49px !important;
  height: 49px !important;
  background: url("../img/icon/icon_button_prev.png") 50% no-repeat !important;
  left: 0px !important;
  z-index: 3;
}

#instock .compl_items .slick-next {
  width: 49px !important;
  height: 49px !important;
  background: url("../img/icon/icon_button_next.png") 50% no-repeat !important;
  right: 0px !important;
  z-index: 3;
}

#instock .compl_items .slick-prev:before,
#instock .compl_items .slick-next:before {
  display: none;
}

#instock .compl_items .slick-prev.slick-disabled,
#instock .compl_items .slick-next.slick-disabled {
  display: none !important;
}

#instock .compl_items .item {
  background: #ffffff;
  width: 100%;
  /* margin: 0 13px; */
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}

#instock .compl_items .item .item_wrap {
  /* padding: 25px; */
  width: 50%;
}

#instock .compl_items .item.show {
  display: flex;
}

#instock .compl_items .compl_image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 49%;
  text-align: center;
  background: #e9e9e9;
  min-height: 112px;
  position: absolute;
  right: 0;
  top: 20px;
  display: none;
}

#instock .compl_items .compl_image_slider {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 49%;
  text-align: center;
  background: #e9e9e9;
  min-height: 112px;
  position: absolute;
  right: 0;
  top: 20px;
}
#instock .compl_items .compl_image_slider > img:nth-child(n + 2) {
  display: none;
}
#instock .compl_items .compl_image_slider .slick-list {
  overflow: hidden !important;
}
#instock .compl_items .compl_image_slider .slick-track {
  display: flex;
}

#instock .compl_items .item .item_name {
  color: #363e40;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  margin-left: 90px;
}

#instock .compl_items .item .item_compl {
  display: flex;
  align-items: center;
  font-size: 15px;
  margin-bottom: 20px;
  min-height: 40px;
}

#instock .compl_items .item .item_specs div {
  padding-left: 24px;
  margin-bottom: 7px;
  display: flex;
  align-items: center;
}
#instock .compl_items .item .item_specs p {
  color: #000;
  font-size: 14px;
  margin-left: 10px;
}
#instock .compl_items .compl_btns {
  width: 100%;
  margin-top: 25px;
  display: flex;
  justify-content: space-between;
}
#instock .compl_items .compl_btns .btn {
  width: 49%;
}
#instock .compl_items .item_specs {
  display: flex;
  margin-top: 20px;
}
#instock .compl_items .compl_btns .btn:nth-child(1) {
  margin-bottom: 10px;
}

.item_cont {
  display: flex;
  justify-content: space-between;
}
.item_wrap_price {
  display: flex;
  align-items: center;
  position: relative;
  left: -20px;
  margin-top: 20px;
  width: 107%;
}
.item_wrap_price_ico1 {
  background: url(../img/item_wrap_price_ico1.svg) no-repeat #00359a;
  height: 50px;
  border-radius: 0px 50px 50px 0px;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  text-align: left;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  color: #fff;
  width: 50%;
  padding-left: 65px;
  padding-right: 20px;
  background-position: 20px;
  position: relative;
  z-index: 2;
}
.item_wrap_price_ico2 {
  width: 50%;
  background: url(../img/item_wrap_price_ico2.svg) no-repeat #00359a80;
  height: 50px;
  border-radius: 0px 50px 50px 0px;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  text-align: left;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  color: #fff;
  padding-left: 80px;
  padding-right: 20px;
  background-position: 38px 14px;
  position: relative;
  left: -26px;
}
.beefup__head::after {
  background: url("../img/icon/beef_down.svg") no-repeat;
  background-size: cover;
  margin-top: 0 !important;
  border-width: 0 !important;
  width: 40px;
  height: 40px;
}
.beefup.is-open > .beefup__head::after {
  background: url("../img/icon/beef_up.svg") no-repeat;
  transform: translate(0, -50%) rotate(225deg);
  margin-top: 0 !important;
  background-size: cover;
  border-width: 0 !important;
  width: 40px;
  height: 40px;
}
.beefup {
}
#instock .beefup:before {
  content: "";
  display: block;
  position: relative;
  top: 0;
  height: 1px;
  width: 50%;
  background: #000;
}
.beefup:nth-child(1):before,
.beefup:last-child:before {
  opacity: 0;
}
.beefup__head,
.beefup__body {
  padding: 11.8px 20px;
}
.beefup_content {
  display: flex;
  justify-content: space-between;
}

/**************************************************************************************************************/

.services {
  margin: 120px 0 0;
}
.services .br_mob {
  display: none;
}
.services_title {
  font-size: 45px;
  font-weight: 500;
  color: #363e40;
  text-transform: uppercase;
  padding-bottom: 35px;
  border-bottom: 1px solid #363e40;
}
.services_cont {
  padding-top: 20px;
}
.services_des_cont span {
  position: absolute;
  bottom: 20px;
}
.services_des_cont .services_des2 {
  font-size: 12px;
  margin-top: 10px;
  margin-bottom: 0;
}
.services_slide .services_items {
  padding: 30px 28px;
  min-height: 480px;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  height: 100%;
}
.services_block1 b {
  font-weight: 700;
}
.services_items.services_block1 {
  background: url(../img/services/services_block1.jpg) 50% 0 no-repeat;
  background-size: cover;
}
.services_items.services_block2 {
  background: url(../img/services/services_block2.jpg) 50% 0 no-repeat;
  background-size: cover;
}
.services_items.services_block3 {
  background: url(../img/services/services_block3.jpg) 50% 0 no-repeat;
  background-size: cover;
}
.services_items.services_block4 {
  background: url(../img/services/services_block4.jpg) 50% 0 no-repeat;
  background-size: cover;
}
.services_items.services_block5 {
  background: url(../img/services/services_block5.jpg) 50% 0 no-repeat;
  background-size: cover;
}
.services_items.services_block6 {
  background: url(../img/services/services_block6.jpg) 50% 0 no-repeat;
  background-size: cover;
}
.services_items.services_block7 {
  background: url(../img/services/services_block7.jpg) 50% 0 no-repeat;
  background-size: cover;
}
.services_items.services_block8 {
  background: url(../img/services/services_block8.jpg) 50% 0 no-repeat;
  background-size: cover;
}
.services_items.services_block9 {
  background: url(../img/services/services_block9.jpg) 50% 0 no-repeat;
  background-size: cover;
}
.services_des {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000b2;
  transition: all 0.2s linear;
}
.services_des_cont b {
  margin-bottom: 15px;
  font-size: 14px;
}
.services_des_cont p {
  margin-bottom: 10px;
  font-size: 12px;
}
.services_des_cont ul {
  margin: 0;
  list-style-type: disc;
  padding-left: 20px;
  font-size: 12px;
}
.services_des_cont {
  position: absolute;
  bottom: 0;
  padding: 28px 28px;
  display: grid;
}
.services_items:hover .services_des {
  top: 0;
}
.services_items:hover .services_items_text {
  opacity: 0;
}
.services .swiper-button-next,
.services .swiper-button-prev {
  top: 50%;
}
.services .swiper-button-next:hover,
.services .swiper-button-prev:hover {
  cursor: pointer;
}
.services .swiper-button-prev {
  left: -46px;
}
.services .swiper-button-next {
  right: -46px;
}
.services_slide {
  padding-bottom: 50px !important;
}
.services .swiper-pagination {
  bottom: 12px !important;
}
.services_form form {
  width: 100%;
  max-width: 690px;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  padding-bottom: 20px;
  gap: 10px;
}
.services_form .popup_container .form-group input[type="text"],
.services_form .popup_container .form-group input[type="tel"] {
  margin: 0;
}
.services .popup_container .form-group {
  width: 48%;
  margin-bottom: 0;
}

.services .swiper-pagination-bullet-active {
  background: #00329b;
}

/**************************************************************************************************************/

.benefit {
  margin-top: 120px;
  height: 730px;
  background: url(../img/benefit_bg.png) no-repeat center top;
  background-size: cover;
  padding-top: 40px;
}
.benefit_mob {
  display: none;
}
.benefit_cont {
  display: flex;
  flex-wrap: wrap;
}
.benefit_cont_block {
  padding: 20px;
}
.benefit_cont_block:nth-child(1) {
  padding-left: 0;
  padding-top: 0;
  border-right: 1px solid #c9c9c9;
  border-bottom: 1px solid #c9c9c9;
}
.benefit_cont_block:nth-child(2) {
  padding-top: 0;
  display: flex;
  align-items: end;
  border-bottom: 1px solid #c9c9c9;
}
.benefit_cont_block:nth-child(2) p {
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  margin-left: 20px;
  margin-bottom: 0;
}
.benefit_cont_block:nth-child(3) {
  padding-top: 43px;
  padding-left: 0;
  border-right: 1px solid #c9c9c9;
}
.benefit_cont_block:nth-child(3) p {
  color: #fff;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.benefit_cont_block:nth-child(3) p span {
  color: #fff;
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}
.benefit_cont_block:nth-child(4) {
}
.benefit_cont_block:nth-child(1),
.benefit_cont_block:nth-child(3) {
  width: 100%;
}
.benefit_cont_block:nth-child(2),
.benefit_cont_block:nth-child(4) {
  width: 60%;
}
.benefit .compl_title {
  color: #fff;
  font-size: 45px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
.benefit select,
.benefit input {
  width: 340px;
  background-color: rgb(255 255 255 / 20%);
  backdrop-filter: blur(2px);
}
.benefit_cont_block select option {
  color: #000;
  font-weight: 600;
}
.benefit form .form-group input[type="text"],
.benefit form .form-group input[type="tel"] {
  width: 340px;
  background-color: rgb(255 255 255 / 20%);
  backdrop-filter: blur(2px);
}
form .form-group button {
  width: 100%;
}
.benefit form .form-group {
  margin-bottom: 5px;
}
.benefit form .form-group:nth-last-child(-n + 2) {
  margin-top: 20px;
}
.benefit .agree_field input {
  width: auto;
}
.benefit .agree_field {
  color: #fff;
  font-size: 10px;
}
.benefit .agree_field a {
  color: white;
  text-decoration: underline;
}
.benefit form .form-group button {
  width: 340px;
}
.benefit_cont_block:nth-child(1),
.benefit_cont_block:nth-child(3) {
  width: 40%;
}
/**************************************************************************************************************/
.designe {
  padding-top: 120px;
}
.designe .compl_title {
  color: #363e40;
  font-size: 45px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}

.tabs {
  position: relative;
  top: -20px;
  display: flex;
  flex-wrap: wrap;
  background: transparent;
  justify-content: right;
  /* box-shadow: 0 48px 80px -32px rgba(0,0,0,0.3); */
}
.input {
  position: absolute;
  opacity: 0;
}
.label {
  margin-left: 20px;
  cursor: pointer;
  width: 160px;
  height: 45px;
  display: flex;
  justify-content: center;
  font-size: 14px;
  transition: background 0.1s, color 0.1s;
  align-items: center;
  border: 1px solid #363e40;
}
.label:hover {
  background: #d8d8d8;
}
.label:active {
  background: #ccc;
}
.input:focus + .label {
  z-index: 1;
}
.input:checked + .label {
  background: #363e40;
  color: #fff;
}
@media (min-width: 600px) {
  .label {
  }
}
.panel {
  display: none;
  padding: 0px 0px 0px;
  background: #fff;
  width: 100%;
}

.panel {
  order: 99;
  margin-top: 10px;
}

.input:checked + .label + .panel {
  display: block;
}
.designe .beefup__head::after {
  left: auto;
  right: 0;
}
.designe .beefup__head {
  padding: 10px 0;
}
.designe .beefup__body {
  padding: 20px 0;
}
.designe .beefup.example-opensingle4,
.designe .beefup.example-opensingle5 {
  border-top: 1px solid #363e40;
}
.designe .beefup__head > button {
  color: #363e40;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
.designe .beefup_content {
  display: flex;
  justify-content: space-between;
}
.designe_block img {
  width: 100%;
}
.designe_block:nth-child(1) {
  width: 50%;
  padding-right: 20px;
}
.designe_block:nth-child(2) {
  width: 21%;
}
.designe_block:nth-child(2) .designe_block_title {
  margin-top: 20px;
  color: #363e40;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  border-right: 1px solid #363e40;
  border-bottom: 1px solid #363e40;
}
.designe_block_title .btn {
  width: 100%;
  max-width: 340px;
}
.designe_block:nth-child(3) {
  position: relative;
  width: 29%;
  /* padding-left: 20px; */
}
.designe_block:nth-child(3) .designe_block_title {
  margin-top: 39px;
  border-top: 1px solid #000;
  padding-top: 10px;
  padding-left: 20px;
}
.designe_block:nth-child(3) .designe_block_title:before {
  content: "";
  width: 1px;
  height: 180px;
  background: #222222;
  position: absolute;
  left: -1px;
  /* top: 0; */
  bottom: -20px;
}
.designe_block:nth-child(3) .designe_block_title p {
  color: #363e40;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 10px;
}
/**************************************************************************************************************/

.service {
  position: relative;
  background: url(../img/servise_bg.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
.service_mob {
  display: none;
}
.service .container {
  position: relative;
  height: 730px;
}
.service_block {
  position: absolute;
  bottom: 68px;
}
.service .compl_title {
  margin-bottom: 10px;
  color: #fff;
  font-size: 45px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
.service_cont {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #c9c9c9;
  width: 98%;
}
.service_cont_block {
  display: flex;
  align-items: center;
  padding-top: 24px;
  padding-right: 21px;
}
.service_cont_block:nth-child(1),
.service_cont_block:nth-child(2) {
  width: 440px;
  position: relative;
}
.service_cont_block:nth-child(1):before,
.service_cont_block:nth-child(2):before {
  content: "";
  position: absolute;
  top: -51px;
  right: 0;
  width: 1px;
  height: 145px;
  background: #c9c9c9;
}
.service_cont_block:nth-child(2),
.service_cont_block:nth-child(3) {
  margin-left: 20px;
}
.service_cont_block p {
  margin-left: 20px;
  color: #fff;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.service_cont .popup.btn {
  min-width: 340px;
  margin-top: 25px;
}
.service_cont {
}
.designe_block_title a {
  margin-top: 20px;
}
.designe_block:nth-child(2) img,
.designe_block:nth-child(3) img {
  height: 180px;
}
.designe_block:nth-child(3) img {
  padding-left: 20px;
}
/**************************************************************************************************************/

.conditions {
  margin-top: 130px;
}

.conditions .container {
  width: 100%;
  padding: 0;
}

.conditions .title {
}

.conditions .content {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.conditions .conditions_item {
  width: 50%;
  color: #fff;
  padding-top: 200px;
  padding-bottom: 190px;
  transition: all 0.3s linear;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #000;
}

.conditions .conditions_item:before {
  content: "";
  display: block;
  width: 100%;
  height: 568px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.3s linear;
  opacity: 1;
}

.conditions .conditions_item.credit:before {
  background: url(../img/credit_bg.jpg) 50% no-repeat;
}

.conditions .conditions_item.tradein:before {
  background: url(../img/tradein_bg.jpg) 50% no-repeat;
}

.conditions .conditions_item:hover {
  width: 60%;
}

.conditions .conditions_item:hover:before {
  transform: scale(1.15);
  opacity: 0.7;
}

.conditions .conditions_item .condition_item_wrap {
  z-index: 1;
}

.conditions .conditions_item.credit .condition_item_wrap {
  width: 370px;
  margin-left: auto;
  margin-right: 185px;
}

.conditions .conditions_item.credit {
  padding-left: 15px; /* background: url(../img/credit_bg.jpg) 50% no-repeat; */
}

.conditions .conditions_item.tradein {
  padding-left: 50px;
  padding-right: 15px;
  /* background: url(../img/tradein_bg.jpg) 50% no-repeat; */
}

.conditions .item_title {
  font-size: 30px;
  text-transform: uppercase;
  font-weight: 300;
  line-height: 30px;
}

.conditions .desc {
  font-size: 18px;
  padding-top: 20px;
}

.conditions .btn {
  width: 370px;
  border-color: #fff;
  color: #fff;
  margin-top: 30px;
}

/**************************************************************************************************************/

.have_offer {
  padding: 180px 0;
  /* background: url(../img/have_offer_bg.jpg) 50% no-repeat; */
  background: #000;
  transition: all 0.3s linear;
  position: relative;
  overflow: hidden;
}

.have_offer:before {
  content: "";
  display: block;
  width: 100%;
  height: 600px;
  position: absolute;
  background: url(../img/have_offer_bg.jpg) 50% 0 no-repeat;
  top: 0;
  transition: all 0.3s linear;
  opacity: 1;
}

.have_offer:hover:before {
  transform: scale(1.15);
  opacity: 0.7;
}

.have_offer .content {
  color: #fff;
}

.have_offer .title {
  font-size: 30px;
  text-transform: uppercase;
  line-height: 30px;
  font-weight: 300;
}

.have_offer .desc {
  font-size: 18px;
  padding-top: 25px;
  font-weight: 400;
}

.have_offer form {
  margin-top: 30px;
}

.have_offer form .form-group_wrapper {
  display: flex;
  justify-content: space-between;
}

.have_offer form .form-group {
  width: 32.5%;
}

.have_offer form .btn {
  color: #fff;
  border-color: #fff;
}

.have_offer form .agree_field,
.have_offer form .agree_field a {
  color: #fff;
}

.have_offer .btn {
  width: 370px;
  border-color: #fff;
  color: #fff;
  margin-top: 30px;
  max-width: 100%;
}

/**************************************************************************************************************/
footer .switch {
  display: block;
  color: #000000;
  font-size: 16px;
  text-decoration: none;
  padding-bottom: 15px;
}

footer .disclamer {
  color: #000000;
  font-size: 12px;
  text-align: left;
  font-weight: 300;
  display: none;
}

footer .disclamer p {
  padding-top: 8px;
  padding-bottom: 8px;
}

footer {
  padding-top: 225px;
  background: url("../img/contact_bg.png") no-repeat center top;
  margin-top: -400px;
  position: relative;
}
.contacts {
  margin-top: 130px;
  background: linear-gradient(180deg, #fff 0%, #363e40 100%);
}
.contacts_cont_block:nth-child(1) {
  width: 35%;
  padding-left: 20px;
  border-left: 1px dashed;
  border-right: 1px dashed;
}
.contacts_cont_block:nth-child(2) {
  width: 30%;
  padding-left: 20px;
}
.contacts_cont_block:nth-child(3) {
  width: 35%;
  padding-left: 20px;
  border-left: 1px dashed;
  border-right: 1px dashed;
}
.contacts_cont_block form .form-group_input {
  position: relative;
}
.contacts_cont_block form .form-group_input:before {
  content: "";
  position: absolute;
  display: block;
  height: 2px;
  bottom: 0;
  left: -4%;
  width: 104%;
  border-bottom: 1px dashed #000;
  z-index: 19;
}
.ÃÂ¾perating_mode {
  margin-bottom: 20px;
}
.contacts_cont_block .btn {
  border: 0;
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.contacts_cont_block .btn.white span {
  width: auto;
  text-decoration: underline;
}
.contacts_cont_block .btn svg {
  margin-left: 10px;
  transition: all 0.2s linear;
  position: relative;
  z-index: 5;
}
.contacts_cont_block .btn:hover svg {
  transform: rotate(45deg);
}
.ÃÂ¾perating_mode {
  margin-top: 30px;
}
.contacts_cont_block .agree_field a {
  color: #000;
}
.contact_phone {
  color: #363e40;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.ÃÂ¾perating_mode span {
  color: #363e40;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.ÃÂ¾perating_mode p {
  color: #363e40;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.contacts_cont_block .btn:hover svg path {
  stroke: #fff;
}
.contacts .title {
  text-align: left;
  color: #363e40;
  font-size: 45px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.contacts_cont .container {
  display: flex;
  justify-content: space-between;
}

.contacts_title {
  color: #282828;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 20px;
}
.contacts_title p {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}
.addr_bottom {
  color: #363e40;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.contacts_cont_block form .form-group input[type="text"],
.contacts_cont_block form .form-group input[type="tel"] {
  border: none;
  color: #000;
  font-size: 18px;
  position: relative;
  padding-left: 0;
}
.contacts_cont_block form .form-group input[type="text"]:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  border-bottom: 1px dashed;
}
.contacts_cont_block form .form-group input[type="text"]::placeholder,
.contacts_cont_block form .form-group input[type="tel"]::placeholder {
  color: #000;
}

/**************************************************************************************************************/

#map1 {
  height: 600px;
  width: 100%;
  max-width: 100%;
  background: url(../img/map.jpg) 50% 0% no-repeat;
}

footer .footer_wrapper {
  display: flex;
  justify-content: left;
  align-items: center;
  margin-top: 2px;
}
.logo_wrap_bottom {
  display: flex;
  align-items: center;
  padding-left: 20px;
  border-right: 1px dashed;
  padding-top: 37px;
  padding-bottom: 26px;
}
.logo_wrap_bottom:nth-child(1) {
  width: 35%;
}
.logo_wrap_bottom:nth-child(2) {
  position: relative;
  width: 30%;
  padding: 60px 0;
  border: none;
}
.logo_wrap_bottom:nth-child(2):before {
  position: absolute;
  width: 2px;
  content: "";
  left: auto;
  right: -1px;
  height: 100%;
  border-right: 1px dashed;
}
.logo_wrap_bottom:nth-child(3) {
  width: 34%;
  border-right: 0;
}
footer .footer_wrapper .logo_wrap_bottom .logo_bottom {
}

footer .footer_wrapper .logo_wrap_bottom .logo_bottom.logo2 {
}

.yurinfo {
  color: #363e40;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding-bottom: 30px;
}
.footer_cont {
  background: #e1dcdd;
}
.footer_cont .logo_bottom.logo1 {
  padding-right: 14px;
  display: flex;
  align-items: center;
  height: 56px;
  border-right: 2px solid #000;
}
.footer_cont .logo_bottom.logo2 {
  margin-left: 14px;
  padding-right: 14px;
}
.footer_cont .footer_bottom {
  border-top: 1px dashed #000;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
}
.footer_bottom a {
  color: #363e40;
  font-size: 14px;
  font-style: normal;
  font-weight: 200;
  line-height: normal;
}

/*------------------------------------------------------------------------------------------------------------------------*/

@media (max-width: 1900px) {
  .main_widget {
  }

  .widget_btn {
  }

  .btn_text {
  }

  .close_widget_btn {
  }

  .close_widget_btn span {
  }

  .close_widget_btn span:nth-child(2) {
  }

  .widget_content {
  }

  .close_widget {
  }

  .close_widget span {
  }

  .widget_btns {
  }

  .btn_wrap {
  }

  .btn_wrap .btn {
  }

  .btn_wrap.ico1 {
  }

  .btn_wrap.ico1 {
  }

  .btn_wrap.ico2 {
  }

  .btn_wrap.ico4 {
  }
}

@media (max-width: 1600px) {
  .main_widget {
    right: 15px;
  }

  .widget_btn {
  }

  .btn_text {
  }

  .close_widget_btn {
  }

  .close_widget_btn span {
  }

  .close_widget_btn span:nth-child(2) {
  }

  .widget_content {
  }

  .close_widget {
  }

  .close_widget span {
  }

  .widget_btns {
  }

  .btn_wrap {
  }

  .btn_wrap .btn {
  }

  .btn_wrap.ico1 {
  }

  .btn_wrap.ico1 {
  }

  .btn_wrap.ico2 {
  }

  .btn_wrap.ico4 {
  }
}

@media (max-width: 1440px) {
  .banner .title_container:before {
    display: none;
  }
  /* .banner .title_container:after {
    content: "";
    position: absolute;
    top: -8%;
    left: -8%;
    width: 123%;
    height: 77%;
  } */
  .item_wrap_price_ico1,
  .item_wrap_price_ico2 {
    font-size: 12px;
  }
  .banner .content {
    margin-left: 0;
  }
  .service_cont_block:nth-child(1),
  .service_cont_block:nth-child(2) {
    width: 30%;
    position: relative;
  }
  .service_cont_block:nth-child(3) {
    width: 100%;
    border-top: 1px solid #c9c9c9;
  }
  .main_widget {
  }

  .widget_btn {
  }

  .btn_text {
  }

  .close_widget_btn {
  }

  .close_widget_btn span {
  }

  .close_widget_btn span:nth-child(2) {
  }

  .widget_content {
  }

  .close_widget {
  }

  .close_widget span {
  }

  .widget_btns {
  }

  .btn_wrap {
  }

  .btn_wrap .btn {
  }

  .btn_wrap.ico1 {
  }

  .btn_wrap.ico1 {
  }

  .btn_wrap.ico2 {
  }

  .btn_wrap.ico4 {
  }
}

@media (max-width: 1280px) {
  .title_container .title2 {
    font-size: 18px;
  }
  .title_container .title2 span {
    font-size: 38px;
  }
  .title_container .title1 {
    position: relative;
    margin-top: 10px;
    /* margin-bottom: 32vw; */
    margin-bottom: 5px;
    font-size: 4vw;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
  }
  /* .banner .title_container:after {
    content: "";
    position: absolute;
    top: -19%;
    left: 8%;
    width: 100%;
    height: 77%;
  } */
  .banner {
    height: 60vw;
    /* background-position: 63% 0; */
    background-position: center 0;
    /* background-size: 134%; */
    background-size: 173%;
  }
  .title_container .title3 {
    font-size: 2vw;
  }
  .banner_cont {
    padding-top: 4vw;
  }
  .banner_cont {
    /* padding-top: 50px; */
    padding-top: 15px;
  }
  .item_wrap_price {
    display: block;
  }
  .item_wrap_price_ico1,
  .item_wrap_price_ico2 {
    max-width: 290px;
  }
  .item_wrap_price_ico2 {
    padding-left: 65px;
    background-position: 20px 14px;
    left: 0;
    margin-top: 10px;
  }
  .main_widget {
  }
  .service_cont {
    flex-wrap: wrap;
    justify-content: left;
  }
  .widget_btn {
  }

  .btn_text {
  }

  .close_widget_btn {
  }

  .close_widget_btn span {
  }

  .close_widget_btn span:nth-child(2) {
  }

  .widget_content {
  }

  .close_widget {
  }

  .close_widget span {
  }

  .widget_btns {
  }

  .btn_wrap {
  }

  .btn_wrap .btn {
  }

  .btn_wrap.ico1 {
  }

  .btn_wrap.ico1 {
  }

  .btn_wrap.ico2 {
  }

  .btn_wrap.ico4 {
  }
}
@media (max-width: 1024px) {
  .service_cont_block:nth-child(3) {
    margin-left: 0;
  }
  .service_cont_block:nth-child(1),
  .service_cont_block:nth-child(2) {
    padding-bottom: 16px;
  }
  .service_cont_block:nth-child(1):before,
  .service_cont_block:nth-child(2):before {
    top: -28px;
    display: none;
  }
  .service_cont_block:nth-child(1),
  .service_cont_block:nth-child(2) {
    width: 100%;
  }
  .service_cont_block:nth-child(2),
  .service_cont_block:nth-child(3) {
    margin-left: 0px;
  }
  .service_cont_block:nth-child(2) {
    border-top: 1px solid #c9c9c9;
  }
  .car_item_block {
    display: grid;
  }
  .car_image_wrap {
    order: 1;
  }
  .advant_group {
    order: 2;
    margin-top: 30px;
  }
  .car_image_wrap,
  .advant_group {
    width: 100%;
  }
  .car_img {
    text-align: center;
  }
  .mySwiperThumbGallery {
    height: 110px;
  }
  .car_name {
    font-size: 30px;
  }
  .car_price_text p {
    font-size: 20px;
  }
  .car_price {
    padding-right: 40px;
  }
  .car_price_text p span {
    font-size: 20px;
  }
  #instock {
    position: relative;
    padding: 0px 0 70px;
  }
}
/*IPAD PRO BEGIN*/
@media (max-width: 991px) {
  .services_slide .services_items {
    padding: 30px 18px;
  }
  .item_wrap_price {
    left: 0;
  }
  .contacts_cont .container {
    flex-wrap: wrap;
    justify-content: left;
  }
  .contacts_cont_block:nth-child(3) {
    width: 100%;
    margin-top: 20px;
    padding-left: 0;
    border-left: 0;
  }
  footer {
    background-size: cover;
    margin-top: -400px;
    padding-top: 315px;
  }
  .contacts_cont_block:nth-child(1) {
    border-left: 0;
    padding-left: 0;
    padding-right: 16px;
  }
  .contacts_cont_block:nth-child(3) {
    border-right: 0;
  }
  .logo_wrap_bottom {
    border-right: 0;
  }
  .contacts_cont_block:nth-child(1),
  .contacts_cont_block:nth-child(2) {
    width: 50%;
  }
  .logo_wrap_bottom:nth-child(1) {
    width: 100%;
  }
  .logo_wrap_bottom:nth-child(2),
  .logo_wrap_bottom:nth-child(3) {
    display: none;
  }
  .item_cont {
    display: block;
  }
  #instock .compl_items .item .item_wrap {
    width: 100%;
  }
  #instock .compl_items .compl_image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 49%;
    text-align: center;
    background: #e9e9e9;
    /* min-height: 97px; */
    position: relative;
    right: 0;
    top: 10px;
  }
  .beefup__body {
    padding: 11.8px 0px 30px !important;
  }
  .beefup__head {
    padding: 11.8px 0px !important;
  }
  .beefup__head::after {
    left: 20px !important;
  }
  #instock .beefup:before {
    width: 100%;
  }
  .designe .beefup__head::after {
    left: auto !important;
    right: 20px !important;
  }
  .designe .beefup_content {
    flex-wrap: wrap;
  }
  .designe_block:nth-child(1) {
    width: 100%;
    padding-right: 0;
  }
  .designe_block:nth-child(2),
  .designe_block:nth-child(3) {
    width: 50%;
    margin-top: 20px;
  }
  .designe_block:nth-child(3) .designe_block_title:before {
    bottom: 0;
  }
}
@media (max-width: 868px) {
  .benefit .compl_title {
    color: #fff;
    font-size: 26px;
  }
  .benefit_cont_block:nth-child(2) p {
    margin-bottom: 0;
  }
  .benefit_cont {
    display: block;
  }
  .benefit_cont_block {
    padding-left: 0px;
  }
  .benefit_cont_block:nth-child(2) {
    padding-top: 20px;
  }
  .benefit_cont_block:nth-child(1),
  .benefit_cont_block:nth-child(3) {
    width: 100%;
    border-right: 0;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  header {
  }
  form .form-group button {
    width: 100%;
  }
  .timer_content_date > div[id] {
    transform: scale(0.6) translatex(-200px) !important;
    width: 600px;
  }
  header .header .logo_wrap {
  }

  header .header .logo_wrap .logo {
  }

  header .header .logo_wrap .logo.logo1 {
  }

  header .header .logo_wrap .logo.logo2 {
  }

  header .header .top_phone {
  }

  header .header .top_addr {
    display: none;
  }

  header .header .btn {
    color: #fff;
    border-color: #363e40;
    background: #363e40;
  }

  /**************************************************************************************************************/
  .main_widget {
  }

  .widget_btn {
  }

  .btn_text {
  }

  .close_widget_btn {
  }

  .close_widget_btn span {
  }

  .close_widget_btn span:nth-child(2) {
  }

  .widget_content {
  }

  .close_widget {
  }

  .close_widget span {
  }

  .widget_btns {
  }

  .btn_wrap {
  }

  .btn_wrap .btn {
  }

  .btn_wrap.ico1 {
  }

  .btn_wrap.ico1 {
  }

  .btn_wrap.ico2 {
  }

  .btn_wrap.ico4 {
  }

  /**************************************************************************************************************/
  .banner {
  }

  .banner .content {
    margin-left: 0;
  }

  .banner .title_container {
  }

  .banner .title_container .date {
    color: #ffffff;
    font-weight: 400;
    font-size: 24px;
  }

  .banner .title_container .title {
    font-size: 34px;
    line-height: 150%;
    margin-bottom: 15px;
  }

  .banner .title_container .sub_title b {
    font-size: 46px;
    margin-bottom: 30px;
  }

  .banner .title_container .sub_title span {
    font-size: 23px;
    padding-left: 27px;
    margin-bottom: 15px;
    margin-right: 30px;
  }

  .banner .title_container .title b {
  }

  .banner .title_container .sub_title {
  }

  .banner .btn {
  }

  /**************************************************************************************************************/
  .model_block {
  }

  .model_block .content {
  }

  .model_block .title {
  }

  #c5 .car_props a.ico2 {
    margin-top: 260px;
  }

  .model_block .model_tech {
  }

  .model_block .model_tech .tech_item {
  }

  .model_block .model_tech .tech_title {
  }

  .model_block .model_tech .tech_param {
  }

  .model_block .model_tech .car_new {
  }

  .model_block .model_slider {
  }

  .model_block .model_slider .model_img {
  }

  .model_block .model_btns {
  }

  .model_block .model_btns .btn {
  }

  .model_block .model_slider .slick-arrow {
  }

  .model_block .model_slider .slick-next {
  }

  .model_block .model_slider .slick-prev {
  }

  .model_block .model_slider .slick-dots {
  }

  .model_block .model_slider .slick-dots li {
  }

  .model_block .model_slider .slick-dots li button {
  }

  .model_block .model_slider .slick-active {
  }

  /**************************************************************************************************************/
  .model_desc {
  }

  .model_desc .container {
  }

  .model_desc .content {
  }

  .model_desc.img_left .content {
  }

  .model_desc.img_right .content {
  }

  .model_desc .model_desc_slider {
  }

  .model_desc .model_desc_slider .model_desc_img {
  }

  .model_desc .model_desc_text {
  }

  .model_desc .model_desc_text .title {
  }

  .model_desc .model_desc_text .description {
    font-size: 16px;
  }

  .model_desc .model_desc_text .btn {
  }

  .model_desc.img_left .model_desc_text {
    /* padding-left: 15px; */
  }

  .model_desc.img_right .model_desc_text {
    margin: 0 auto;
  }

  .model_desc .model_desc_slider .slick-arrow {
  }

  .model_desc .model_desc_slider .slick-next {
  }

  .model_desc .model_desc_slider .slick-prev {
  }

  .model_desc .model_desc_slider .slick-dots {
  }

  .model_desc .model_desc_slider .slick-dots li {
  }

  .model_desc .model_desc_slider .slick-dots li button {
  }

  .model_desc .model_desc_slider .slick-active {
  }

  /**************************************************************************************************************/
  .compl_items:before,
  .compl_items:after {
    display: none;
  }

  #instock .compl_items .slick-prev {
    left: -20px !important;
  }

  #instock .compl_items .slick-next {
    right: -20px !important;
  }

  #instock .models_wrap {
    /* margin: 0 13px 15px; */
  }

  #instock .models {
    justify-content: space-between;
  }

  #instock .model_name {
    width: 48%;
    margin-right: 0;
  }

  /**************************************************************************************************************/
  .conditions {
  }

  .conditions .container {
  }

  .conditions .title {
  }

  .conditions .content {
  }

  .conditions .conditions_item {
  }

  .conditions .conditions_item .condition_item_wrap {
  }

  .conditions .conditions_item.credit .condition_item_wrap {
  }

  .conditions .conditions_item.credit {
  }

  .conditions .conditions_item.tradein {
  }

  .conditions .item_title {
  }

  .conditions .desc {
  }

  .conditions .btn {
  }

  /**************************************************************************************************************/
  .have_offer {
  }

  .have_offer .content {
  }

  .have_offer .title {
  }

  .have_offer .desc {
  }

  .have_offer form {
  }

  .have_offer form .form-group_wrapper {
  }

  .have_offer form .form-group {
  }

  .have_offer form .agree_field,
  .have_offer form .agree_field a {
  }

  /**************************************************************************************************************/
  .contacts {
  }
  .contacts .content {
    margin-top: 30px;
  }
  .contacts .title {
  }

  .contacts .container {
  }

  .contacts .content {
  }

  .contacts .contacts_container {
  }

  .contacts .contacts_title {
  }

  .contacts .contacts_title b {
  }

  .contacts .phone_bottom {
  }

  .contacts .addr_bottom {
  }

  .contacts .clock_bottom {
  }

  .contacts .clock_bottom b {
  }

  .contacts .contacts_questions {
  }

  .contacts .quest_title {
  }

  .contacts .btn {
  }

  footer .footer_wrapper {
  }

  footer .footer_wrapper .logo_wrap_bottom {
  }

  footer .footer_wrapper .logo_wrap_bottom .logo_bottom {
  }

  footer .footer_wrapper .logo_wrap_bottom .logo_bottom.logo1 {
  }

  footer .footer_wrapper .logo_wrap_bottom .logo_bottom.logo2 {
  }
}

/*IPAD PRO BEGIN*/

/*IPAD BEGIN*/

@media (min-width: 768px) and (max-width: 991px) {
  header {
  }
  .header_menu_nav ul li {
    margin-right: 20px;
  }
  header .header .logo_wrap {
    max-width: 40%;
  }
  .header_menu_nav ul li a {
    font-size: 14px;
  }
  header .header .logo_wrap .logo.logo2 p span {
    font-size: 16px;
  }
  header .header .logo_wrap .logo {
  }

  header .header .logo_wrap .logo.logo1 {
  }

  header .header .logo_wrap .logo.logo2 {
  }

  header .header .top_phone {
  }

  header .header .top_addr {
  }

  header .header .btn {
  }

  /**************************************************************************************************************/
  .main_widget {
  }

  .widget_btn {
  }

  .btn_text {
  }

  .close_widget_btn {
  }

  .close_widget_btn span {
  }

  .close_widget_btn span:nth-child(2) {
  }

  .widget_content {
  }

  .close_widget {
  }

  .close_widget span {
  }

  .widget_btns {
  }

  .btn_wrap {
  }

  .btn_wrap .btn {
  }

  .btn_wrap.ico1 {
  }

  .btn_wrap.ico1 {
  }

  .btn_wrap.ico2 {
  }

  .btn_wrap.ico4 {
  }

  /**************************************************************************************************************/
  .banner {
  }

  .banner .content {
  }

  .banner .title_container {
  }

  .title_pl {
    display: none;
  }

  .banner .title_container .date {
    font-size: 23px;
  }

  .banner .title_container .title {
    font-size: 27px;
  }

  .banner .title_container .sub_title b {
    font-size: 46px;
  }

  .banner .title_container .sub_title span {
    font-size: 20px;
  }
  .banner .btn {
  }

  /**************************************************************************************************************/
  .model_block {
  }

  .model_block .content {
  }

  .model_block .title {
  }

  .model_block .model_tech {
  }

  .model_block .model_tech .tech_item {
  }

  .model_block .model_tech .tech_title {
    font-size: 14px;
  }

  .model_block .model_tech .tech_param {
    font-size: 48px;
  }

  .model_block .model_tech .car_new {
  }

  .model_block .model_slider {
    margin-top: 0;
  }

  .model_block .model_slider .model_img {
  }

  .model_block .model_btns {
  }

  .model_block .model_btns .btn {
  }

  .model_block .model_slider .slick-arrow {
  }

  .model_block .model_slider .slick-next {
  }

  .model_block .model_slider .slick-prev {
  }

  .model_block .model_slider .slick-dots {
  }

  .model_block .model_slider .slick-dots li {
  }

  .model_block .model_slider .slick-dots li button {
  }

  .model_block .model_slider .slick-active {
  }

  .car_props {
    position: relative;
    top: 0;
    left: 0;
  }

  #c5 .car_props a.ico2 {
    margin-top: 0;
  }

  /**************************************************************************************************************/
  .model_desc {
  }

  .model_desc .container {
  }

  .model_desc .content {
    flex-wrap: wrap;
  }

  .model_desc.img_left .content {
  }

  .model_desc.img_right .content {
  }

  .model_desc .model_desc_slider {
    width: 100%;
    margin: 0 auto;
  }

  .model_desc .model_desc_slider .model_desc_img {
  }

  .model_desc .model_desc_text {
    width: 100%;
    padding: 40px 20px !important;
  }

  .model_desc .model_desc_text .title {
  }

  .model_desc .model_desc_text .description {
  }

  .model_desc .model_desc_text .btn {
  }

  .model_desc.img_left .model_desc_text {
  }

  .model_desc.img_right .model_desc_text {
    order: 1;
  }

  .model_desc .model_desc_slider .slick-arrow {
  }

  .model_desc .model_desc_slider .slick-next {
  }

  .model_desc .model_desc_slider .slick-prev {
  }

  .model_desc .model_desc_slider .slick-dots {
  }

  .model_desc .model_desc_slider .slick-dots li {
  }

  .model_desc .model_desc_slider .slick-dots li button {
  }

  .model_desc .model_desc_slider .slick-active {
  }

  /**************************************************************************************************************/
  .instock {
  }

  .instock .instock_title {
  }

  .instock .content {
  }

  .instock .complect_item {
  }

  .instock .compl_image {
  }

  .instock .info_container {
  }

  .instock .compl_name {
    font-size: 22px;
  }

  .instock .compl_tech {
  }

  .instock .tech_param {
    flex-wrap: wrap;
    margin-top: 10px;
  }

  .instock .tech_param .name {
    width: 100%;
  }

  .instock .tech_param .val {
    width: 100%;
  }

  .instock .btn {
    margin-top: 20px;
  }

  /**************************************************************************************************************/
  .conditions {
  }

  .conditions .container {
  }

  .conditions .title {
  }

  .conditions .content {
    flex-wrap: wrap;
  }

  .conditions .conditions_item {
    width: 100% !important;
    margin: 0 auto;
  }

  .conditions .conditions_item .condition_item_wrap {
  }

  .conditions .conditions_item.credit .condition_item_wrap {
    width: 100%;
    /* padding-left: 20px; */
  }

  .conditions .conditions_item.credit {
  }

  .conditions .conditions_item.tradein {
    padding-left: 20px;
  }

  .conditions .item_title {
  }

  .conditions .desc {
  }

  .conditions .btn {
  }

  /**************************************************************************************************************/
  .have_offer {
    padding-top: 100px;
  }

  .have_offer .content {
  }

  .have_offer .title {
  }

  .have_offer .desc {
  }

  .have_offer form {
  }

  .have_offer form .form-group_wrapper {
  }

  .have_offer form .form-group {
  }

  .have_offer form .agree_field,
  .have_offer form .agree_field a {
  }

  /**************************************************************************************************************/
  .contacts {
  }

  .contacts .title {
  }

  .contacts .content {
    flex-wrap: wrap;
  }

  .contacts .container {
  }

  .contacts .contacts_container {
    order: -1;
    width: 100%;
    margin-bottom: 40px;
  }

  .contacts .contacts_title {
  }

  .contacts .contacts_title b {
  }

  .contacts .phone_bottom {
  }

  .contacts .addr_bottom {
  }

  .contacts .clock_bottom {
  }

  .contacts .clock_bottom b {
  }

  .contacts .contacts_questions {
  }

  .contacts .quest_title {
  }

  .contacts .btn {
  }

  footer .footer_wrapper {
  }

  footer .footer_wrapper .logo_wrap_bottom {
  }

  footer .footer_wrapper .logo_wrap_bottom .logo_bottom {
  }

  footer .footer_wrapper .logo_wrap_bottom .logo_bottom.logo1 {
  }

  footer .footer_wrapper .logo_wrap_bottom .logo_bottom.logo2 {
  }
}

/*IPAD END*/

/*MOBILE BEGIN*/
@media (max-width: 767px) {
  .services .br_mob {
    display: block;
  }
  .services_slide .services_items {
    padding: 25px 15px;
  }
  .services {
    margin: 70px 0 0;
  }
  .timer_content_form form {
    padding-bottom: 10px;
  }
  .banner {
    /* height: 92vw; */
    height: 94vw;
    /* background-position: center -47vw; */
    background-position: 50% 100%;
    /* background-position: center; */
    /* background-size: 134%; */
    background-size: 207%;
    /* background-image: url(../img/banner_mob.jpg); */
    background-color: #363e40;
  }
  .banner .title_container:after {
    content: "";
    position: absolute;
    top: 10vw;
    left: 0;
    width: 100%;
    height: 75%;
  }
  .title_container .title1 {
    margin-bottom: 0;
  }
  .title_container .title1 br {
    display: none;
  }
  .title_container .title1 .br_mob {
    display: block;
  }
  .banner_cont {
    justify-content: center;
    width: 100%;
  }
  .title_container .title2 .br_mob {
    display: block;
  }
  .item_wrap_price_ico1,
  .item_wrap_price_ico2 {
    width: unset;
  }
  .service {
    background: transparent;
  }
  .service .container {
    height: auto;
  }
  .service_mob {
    display: block;
  }
  .service_block {
    position: relative;
    bottom: 0px;
    margin-top: 20px;
  }
  .service_cont_block p {
    color: #363e40;
  }
  .service_cont .popup.btn {
    width: 340px;
    background: #363e40;
  }
  .service_cont .popup.btn span {
    color: #fff;
  }
  .benefit {
    height: auto;
    margin-top: 0;
    background: transparent;
  }
  .benefit_mob {
    display: block;
  }
  .benefit_cont {
    margin-top: 20px;
  }
  .benefit .compl_title {
    color: #363e40;
    font-size: 42px;
  }
  .benefit_cont_block p {
    color: #363e40;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
  .benefit_cont_block:nth-child(2) p {
    color: #363e40;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
  .benefit_cont_block:nth-child(3) p {
    color: #363e40;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
  .benefit_cont_block:nth-child(3) p span {
    color: #363e40;
    font-size: 24px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
  }
  .benefit_cont_block:nth-child(3) {
    padding-top: 20px;
  }
  .benefit_cont_block:nth-child(2),
  .benefit_cont_block:nth-child(4) {
    width: 100%;
  }
  .benefit select,
  .benefit input {
    border: 1px solid #363e40;
    color: #363e40;
  }
  .benefit form .form-group input[type="text"],
  .benefit form .form-group input[type="tel"] {
    border: 1px solid #363e40;
    color: #363e40;
  }
  .benefit form .form-group input[type="text"]::placeholder,
  .benefit form .form-group input[type="tel"]::placeholder {
    color: #363e40;
  }
  select {
    background: url(../img/icon/ico_select_mob.svg) right 20px center no-repeat;
  }
  .benefit form .form-group button {
    background: #363e40;
  }
  .benefit form .form-group button:hover {
    background: #00329b;
  }
  .benefit .agree_field {
    color: #363e40;
  }
  .benefit .agree_field a {
    color: #363e40;
    text-decoration: underline;
  }
  .benefit form .form-group button span {
    color: #fff;
  }
  .designe {
    padding-top: 44px;
  }
  .service_cont .popup.btn:hover {
    background: #00329b;
  }
  .service .compl_title {
    color: #363e40;
  }
  #instock .compl_items .compl_image_slider {
    position: relative;
    width: 100%;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
  }
  #instock .compl_items .compl_image {
    display: none;
  }
  .beefup__body {
    padding: 11.8px 0px 0px !important;
  }
  #instock .compl_items {
    padding-bottom: 26px;
  }
  .timer_content_item {
    /* position: absolute; */
    top: -80px;
    text-align: center;
    padding-bottom: 10px;
  }
  .timer form .form-group {
    width: 100%;
  }
  .timer_content {
    display: block;
  }
  .timer_content_date,
  .timer_content_form {
    width: 100%;
  }

  .timer_content_date > div[id] {
    top: -14px;
    width: 500px;
    left: 252px;
    position: relative;
    margin-left: -250px;
    transform: scale(1) !important;
  }
  form .form-group button {
    width: 100%;
  }
  .form_block {
    display: block;
  }
  form .form-group {
    position: relative;
    width: 100%;
  }
  .timer_content_form .form-group {
    margin-bottom: 10px;
  }
  .timer_content_form {
  }
  .form_title2 {
    float: left;
    margin-bottom: 10px;
    text-align: left;
  }
  .fancybox-type-image {
    width: 100% !important;
    margin: 0px !important;
    left: 0px !important;
  }
  .avantages_cont_block {
    display: flex;
    align-items: center;
  }
  .avantages_cont_block p {
    margin-top: 0;
    margin-left: 20px;
  }
  .fancybox-close {
    right: 9px !important;
    top: 9px !important;
  }

  .fancybox-inner {
    width: 100% !important;
    margin: 0px !important;
    padding: 0px !important;
  }

  .fancybox-wrap {
    margin: 0px !important;
    width: 100% !important;
    left: 0px !important;
    top: 20px !important;
  }

  .fancybox-type-image .fancybox-close {
    top: -8px !important;
  }

  .simple_slider .btn_left {
    display: none !important;
  }

  .simple_slider .btn_right {
    display: none !important;
  }

  .popup_container {
    width: 100%;
  }
  .timer {
    position: relative;
    /*margin-top: 10px;*/
    margin-top: 0;
  }
  .page_title {
    font-size: 28px;
    line-height: 32px;
  }

  /************************************************************************/
  .btn {
    width: 97%;
  }

  header {
    padding: 10px 0;
    background: #fff;
    position: fixed;
    top: 0;
    z-index: 33;
    width: 100%;
  }

  body {
    background: none;
    padding-top: 85px;
  }

  header .header {
    flex-wrap: wrap;
  }

  header .header .logo_wrap {
    width: 100%;
  }

  header .header .logo_wrap .logo {
  }
  header .header .logo_wrap .logo.logo2 {
    max-width: 48%;
  }

  header .header .logo_wrap .logo.logo2 p span {
    font-size: 16px;
  }

  header .header .top_phone {
    text-align: center;
    /* padding: 12px 20px; */
    font-size: 14px;
    width: 100%;
    margin-top: 5px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    /* left: 50%; */
    margin-right: 0;
  }
  .header_menu {
    display: none;
  }
  .banner_cont {
    padding-top: 0;
    justify-content: center;
  }
  header .header .top_addr {
    display: none;
  }

  header .header .btn {
    width: 165px;
    height: 33px;
    margin-top: 10px;
  }
  header .header .btn {
    font-size: 10px;
    display: none;
  }
  .header .m_btn {
    display: block;
    position: relative;
    width: 30px;
    height: 22px;
    z-index: 1;
  }

  .header .m_btn span {
    position: absolute;
    display: block;
    width: 30px;
    height: 3px;
    background: #00359a;
    transition: all 0.2s linear;
  }

  .header .m_btn span:nth-child(1) {
    top: 0;
  }

  .header .m_btn span:nth-child(2) {
    top: calc(50% - 1px);
    opacity: 1;
  }

  .header .m_btn span:nth-child(3) {
    bottom: 0;
  }

  .header .m_btn.active span:nth-child(1) {
    transform-origin: top right;
    transform: rotate(-45deg);
    top: -1px;
  }

  .header .m_btn.active span:nth-child(2) {
    opacity: 0;
  }

  .header .m_btn.active span:nth-child(3) {
    transform-origin: bottom right;
    transform: rotate(45deg);
    bottom: -1px;
  }

  /**************************************************************************************************************/
  .main_widget {
    width: 100%;
    left: 0;
    top: unset;
    bottom: 0;
    transition: all 0.3s linear;
  }

  .main_widget.hidden {
    bottom: -82px;
  }

  .widget_btn {
    display: none;
  }

  .btn_text {
  }

  .close_widget_btn {
  }

  .close_widget_btn span {
  }

  .close_widget_btn span:nth-child(2) {
  }

  .widget_content {
    display: block;
    padding-top: 14px;
  }

  .close_widget {
    box-shadow: none;
    width: 115px;
    height: 15px;
    left: 0;
    right: 0;
    margin: 0 auto;
    border-radius: 50px 50px 0 0;
    background: #30363a;
    z-index: 5;
  }

  .close_widget span {
    background: #fff;
    border-radius: 50px;
    transform: rotate(90deg);
    width: 2px;
    height: 82px;
  }

  .close_widget span:nth-child(2) {
    display: none;
  }

  .widget_btns {
    display: flex;
    padding: 10px 15px;
  }

  .btn_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0;
    padding: 0;
    background-position: 50% 0% !important;
  }

  .btn_wrap .btn:before {
    display: none;
  }

  .btn_wrap.ico1 {
  }

  .btn_wrap.ico1 {
  }

  .btn_wrap.ico2 {
  }

  .btn_wrap.ico4 {
  }

  /**************************************************************************************************************/
  .banner {
  }
  .title_container .title1 {
    font-size: 5vw;
    text-align: center;
    color: #ffffff;
  }
  .title_container .title3 {
    font-size: 2.6vw;
    text-align: center;
  }
  .banner:before {
    width: 720px;
    margin-left: -360px;
    top: 50%;
    z-index: 0;
    display: none;
  }
  .banner .title_container:before {
    height: 110%;
  }
  .banner .content {
    margin-left: 0;
  }

  .banner .title_container {
    margin-top: 0;
    padding: 10px 0;
    width: 100%;
    margin-bottom: 50vw;
  }

  .banner .title_container .date {
    color: #ffffff;
    font-weight: 400;
    font-size: 3.9vw;
  }
  .title_container .title1 img {
    width: 48%;
    margin-top: -1%;
    margin-left: 1%;
    filter: drop-shadow(1px 1px 6px black);
  }
  .title_container .title2 span sup {
    position: relative;
    top: 2px;
    padding-left: 2px;
    font-size: 2vw;
    position: relative;
    right: 0px;
  }
  .title_container .title2 {
    margin-top: 0;
    font-size: 4.5vw;
    margin-top: 12vw;
    margin-bottom: 0;
    position: absolute;
    /* top: 60vw; */
    top: 11vw;
    text-align: center;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    color: #000000;
  }
  .title_container .title2 b {
    margin-left: 4px;
    width: 100%;
  }
  .title_container .title2 br {
    display: none;
  }
  .title_container .title2 span {
    white-space: nowrap;
    font-size: inherit;
    width: 100%;
    text-align: center;
  }

  .banner .title_container .sub_title {
    color: #363e40;
    font-size: 3.8vw;
    flex-wrap: wrap;
    margin-top: 0;
    text-align: center;
  }
  .banner .btn {
    background: #363e40 !important;
  }
  .banner .btn span {
    color: #fff !important;
  }
  .banner .title_container .title br {
    display: inline;
  }

  .banner .title_container .sub_title {
    font-size: 4vw;
    flex-wrap: wrap;
    margin-top: 7px;
  }

  .banner .title_container .sub_title span {
    font-size: 4vw;
    margin-bottom: 5px;
    width: 100%;
    background: none;
  }

  .banner .title_container .title span {
    font-size: 9.5vw;
  }

  .banner .title_container .sub_title br {
    display: none;
  }

  .banner .btn {
    margin: 0 auto;
    margin-top: 10px;
    width: 100%;
    max-width: 320px;
    left: 0;
    top: 0;
  }

  .title_pl {
    position: relative;
    margin-top: 232px;
    /* transform: scale(0.6); */
    /* transform-origin: 60%; */
    bottom: 0px;
    right: 0;
    width: 100%;
    background-size: 100%;
    padding-left: 0;
    justify-content: center;
    font-size: 12vw;
    padding: 0;
  }

  .car_of_the_year {
    position: static;
    margin-bottom: 10px;
    margin-left: calc(50% - 121px);
    padding: 15px 0;
  }

  .title_pl b {
    font-size: 4vw;
  }

  /**************************************************************************************************************/
  .model_block {
    margin-top: 40px;
  }

  .model_block .content {
  }

  .model_block .title {
    font-size: 28px;
    line-height: 30px;
  }

  .model_block .model_tech {
    flex-wrap: wrap;
    margin: 0;
  }

  .car_props {
    position: relative;
    top: 0;
    left: 0;
    margin-top: 15px;
  }

  .car_props a {
    font-size: 20px;
  }

  #c5 .car_props a.ico2 {
    margin-top: 0;
  }

  .model_block .model_tech .tech_item {
    width: 50%;
    margin-top: 25px;
  }

  .model_block .model_tech .tech_title {
    font-size: 13px;
  }

  .model_block .model_tech .tech_param {
    font-size: 42px;
    line-height: 50px;
  }

  .model_block .model_tech .car_new {
    position: static;
    margin-top: 20px;
    /* order: -1; */
    margin-left: auto;
    transform: scale(0.8);
  }

  .model_block .model_slider {
    padding-bottom: 30px;
    margin-top: 20px;
  }

  .model_block .model_slider .model_img {
  }

  .model_block .model_btns {
    margin-top: 10px;
    flex-wrap: wrap;
  }

  .model_block .model_btns .btn {
    width: 100%;
    margin-top: 10px;
  }

  .model_block .model_slider .slick-arrow {
    width: 25px;
    height: 25px;
    display: none !important;
  }

  .model_block .model_slider .slick-next {
    right: -15px;
    background-size: 50%;
  }

  .model_block .model_slider .slick-prev {
    left: -15px;
    background-size: 50%;
  }

  .model_block .model_slider .slick-dots {
  }

  .model_block .model_slider .slick-dots li {
    width: 30px;
    margin: 0 10px;
  }

  .model_block .model_slider .slick-dots li.slick-active {
    width: 90px;
  }

  .model_block .model_slider .slick-dots li button {
  }

  .model_block .model_slider .slick-active {
  }

  /**************************************************************************************************************/
  .model_desc {
    margin-top: 40px !important;
  }

  .model_desc .container {
  }

  .model_desc .content {
    flex-wrap: wrap;
  }

  .model_desc.img_left .content {
  }

  .model_desc.img_right .content {
  }

  .model_desc .model_desc_slider {
    width: 100%;
  }

  .model_desc .model_desc_slider .model_desc_img {
  }

  .model_desc .model_desc_text {
    width: 100% !important;
    padding: 0 15px !important;
    margin: 0 !important;
  }

  .model_desc .model_desc_text .title {
    font-size: 22px;
    padding-top: 20px;
  }

  .model_desc .model_desc_text .description {
    font-size: 16px;
  }

  .model_desc .model_desc_text .btn {
    width: 100%;
  }

  .model_desc.img_left .model_desc_text {
  }

  .model_desc.img_right .model_desc_text {
    order: 1;
  }

  .model_desc .model_desc_slider .slick-arrow {
  }

  .model_desc .model_desc_slider .slick-next {
  }

  .model_desc .model_desc_slider .slick-prev {
  }

  .model_desc .model_desc_slider .slick-dots {
    right: unset !important;
    left: unset !important;
    justify-content: center !important;
  }

  .model_desc .model_desc_slider .slick-dots li {
    width: 30px;
  }

  .model_desc .model_desc_slider .slick-dots li.slick-active {
    width: 90px;
  }

  .model_desc .model_desc_slider .slick-dots li button {
  }

  .model_desc .model_desc_slider .slick-active {
  }

  /**************************************************************************************************************/
  #instock .models {
    justify-content: space-between;
    column-gap: 5px;
  }

  #instock .model_name {
    width: 33%;
    margin-right: 0;
    font-size: 16px;
    padding: 10px 0;
  }

  /* INSTOCK */
  #instock {
    margin-top: 30px;
    padding: 30px 0;
    /*margin-bottom: 70px;*/
  }

  .compl_items:after,
  .compl_items:before {
    display: none;
  }

  .compl_items {
    padding: 0 15px;
  }

  .compl_items .slick-list {
    overflow: hidden !important;
  }

  #instock .compl_items .slick-prev {
    left: 10px !important;
  }

  #instock .compl_items .slick-next {
    right: 10px !important;
  }

  #instock .compl_title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 20px;
  }

  #instock .compl_items .item {
    padding-top: 0;
    margin: 0;
  }

  #instock .compl_items .item.show {
    display: flex;
    flex-wrap: wrap;
  }

  #instock .compl_items .compl_image {
    width: 100%;
  }

  #instock .compl_items .compl_image img {
    margin: 0 auto;
    padding: 0;
  }

  #instock .compl_items .compl_btns {
    width: 100%;
    margin-top: 15px;
  }

  #instock .compl_items .compl_btns .btn {
    font-size: 14px;
  }

  #instock .compl_items .item .item_wrap {
    padding: 0;
  }

  /**************************************************************************************************************/
  .conditions {
    margin-top: 40px;
  }

  .conditions .container {
  }

  .conditions .title {
  }

  .conditions .content {
    margin-top: 35px;
    flex-wrap: wrap;
  }

  .conditions .conditions_item {
    width: 100% !important;
  }

  .conditions .conditions_item .condition_item_wrap {
    margin: 0 !important;
    width: 100% !important;
    padding: 0 15px !important;
  }

  .conditions .conditions_item.credit .condition_item_wrap {
  }

  .conditions .conditions_item.credit {
    padding: 100px 0;
  }

  .conditions .conditions_item.credit:before {
    background: url(../img/credit_bg_mob.jpg) 50% no-repeat;
    background-size: 420px auto;
    background-position: 50% 0;
  }

  .conditions .conditions_item.tradein:before {
    background: url(../img/tradein_bg_mob.jpg) 50% no-repeat;
    background-size: 420px auto;
    background-position: 50% 0;
  }

  .conditions .conditions_item.tradein {
    padding: 100px 0;
  }

  .conditions .item_title {
    font-size: 22px;
  }

  .conditions .desc {
    font-size: 16px;
  }

  .conditions .desc br {
    display: none;
  }

  .conditions .btn {
    width: 100%;
  }

  /**************************************************************************************************************/
  .have_offer {
    padding: 17px 0;
    margin-top: 0;
    background: #293337;
  }

  .have_offer:before {
    background: url(../img/have_offer_bg_mob.jpg) 50% 0 no-repeat;
    background-size: 420px auto;
  }

  .have_offer:hover:before {
    display: none;
  }

  .have_offer .content {
    /* color: inherit; */
  }

  .have_offer .title {
    font-size: 22px;
  }

  .have_offer .desc {
    padding-top: 15px;
  }

  .have_offer .desc br {
    display: none;
  }

  .have_offer form {
  }

  .have_offer form .form-group_wrapper {
    flex-wrap: wrap;
  }

  .have_offer form .form-group {
    width: 100%;
  }

  .have_offer form .agree_field,
  .have_offer form .agree_field a {
    font-size: 9px;
  }

  /**************************************************************************************************************/
  .contacts {
    margin-top: 60px;
  }

  .contacts .content {
    margin-top: 30px;
    flex-wrap: wrap;
  }

  .contacts .container {
  }

  .contacts .contacts_container {
    order: -1;
    width: 100%;
    padding: 0 15px;
    padding-bottom: 35px;
  }

  .contacts .contacts_title {
    font-size: 22px;
  }

  .contacts .contacts_title b {
    /* display: block; */
  }

  .contacts .phone_bottom {
    font-size: 22px;
  }

  .contacts .addr_bottom {
    font-size: 14px;
  }

  .contacts .clock_bottom {
    font-size: 14px;
  }

  .contacts .clock_bottom b {
  }

  .contacts .contacts_questions {
  }

  .contacts .quest_title {
    font-size: 22px;
    margin-top: 20px;
  }

  .contacts .btn {
    width: 100%;
    margin-top: 10px;
  }

  footer .footer_wrapper {
    flex-wrap: wrap;
  }

  .disclamer_switch_bg {
    width: 100%;
    text-align: center;
    margin-top: 20px;
  }

  footer .footer_wrapper .logo_wrap_bottom {
  }

  footer .footer_wrapper .logo_wrap_bottom .logo_bottom {
  }

  footer .footer_wrapper .logo_wrap_bottom .logo_bottom.logo1 {
  }

  footer .footer_wrapper .logo_wrap_bottom .logo_bottom.logo2 {
  }

  #map1 {
    margin-left: 0;
    width: 100%;
    max-width: none;
    height: 350px;
    background-position: 48% -67px !important;
  }

  .copyright {
    position: relative;
    left: 0px;
    padding-bottom: 15px;
  }
  footer {
    padding-top: 170px;
    background: url(../img/bg_footer_mob.png) no-repeat center top;
    margin-top: -170px;
    position: relative;
    background-size: cover;
  }
}
@media (max-width: 680px) {
  .services br {
    display: none;
  }
  .services .br_mob {
    display: block;
  }

  .timer {
    /* margin-top: 84px; */
  }
}
@media (max-width: 580px) {
  .banner .banner_btn {
    right: auto;
    left: 12px;
    top: 120px;
  }
  .services_form form {
    display: grid;
  }
  .services .popup_container .form-group {
    width: 100%;
  }
  .form_title2 {
    display: none;
  }
  .avantages_cont {
    display: none;
  }
  .car_btns .popup.btn.blue[data-title="ЗАБРОНИРОВАТЬ"] {
    display: none;
  }
  .timer {
    /* margin-top: 0px; */
  }
  .benefit .compl_title {
    color: #363e40;
    font-size: 32px;
  }
}
/*MOBILE END*/

/* Portrait phones and smaller */
@media (max-width: 560px) {
  header .header .logo_wrap .logo.logo2 p span {
    font-size: 14px;
  }

  #instock .compl_items .item_specs {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #instock .compl_items .item .item_specs div {
    margin-bottom: 14px;
    width: 33%;
  }
  #instock .compl_items .item .item_specs div:nth-child(1) {
    width: 24%;
    min-width: 80px;
  }
  .form_title2 {
    font-size: 14px;
    max-width: 422px;
  }
  .banner .title_container {
    margin-top: 0;
  }
  .timer {
    /* margin-top: -66px; */
  }
  .timer_content_item {
    font-size: 20px;
  }
  .timer_content_item {
    /* position: absolute; */
    top: -64px;
  }

  .timer_content_date > div[id] {
    top: -14px;
    width: 500px;
    left: 50%;
    position: relative;
    margin-left: -250px;
    transform: scale(0.8) !important;
  }
  .car_title {
    display: block;
    height: auto;
  }
  .car_name {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
  }
  .car_price {
    height: 70px;
    position: relative;
    right: 0px;
    top: 32px;
    justify-content: right;
    padding-right: 20px;
  }
  .car_colors {
    flex-wrap: wrap;
  }
  .car_colors span {
    width: 100%;
    text-align: center;
    font-size: 16px;
    margin-bottom: 10px;
  }
  .car_image_thumb {
    width: 91%;
    top: -88px;
    left: 4%;
  }
  .mySwiperThumbGallery1,
  .mySwiperThumbGallery2,
  .mySwiperThumbGallery3 {
    height: auto;
  }
  .car_image_thumb .swiper-button-next, .car_image_thumb .swiper-button-prev {
    display: block;
  }
  .advant_group ul {
    width: 50%;
  }
  .advant_group ul li a p {
    color: #363e40;
    font-size: 12px;
    margin-left: 8px;
  }
  .advant_group {
    justify-content: space-between;
  }
  .advant_group ul:nth-child(1) {
    width: 60%;
  }
  .advant_group ul:nth-child(2) {
    width: 39%;
  }
  .advant_group ul {
    width: 50%;
    margin-bottom: 0;
    margin-top: 0;
  }
  .advant_group ul li a {
    align-items: start;
  }
  .advant_group ul li {
    margin-bottom: 10px;
    height: 40px;
  }
  .car_btns {
    display: block;
  }
  .car_item_block {
    padding: 50px 20px 117px;
  }
  .car_btns .btn {
    width: 100%;
  }
  .designe .beefup__head::after {
    left: auto !important;
    right: 0px !important;
  }
  footer .footer_wrapper .logo_wrap_bottom {
    padding-left: 0;
  }
  .car_price_icon {
    margin-right: 0;
    position: absolute;
    left: 14px;
  }
  .tabs {
    top: 0;
    margin-top: 20px;
    justify-content: left;
  }
  .label {
    margin-left: 0;
    margin-right: 20px;
  }
  .designe .beefup__head > button {
    font-size: 18px;
  }
}
@media (max-width: 460px) {
  .popup_container .agree_field,
  .popup_container .agree_field a {
    font-size: 10px;
  }
  .services_title {
    font-size: 30px;
    padding-bottom: 18px;
  }

  .beefup_content .designe_block:nth-child(3) {
    padding-bottom: 20px;
  }
  .beefup_content .designe_block:nth-child(2) img {
    display: none;
  }
  .beefup_content .designe_block:nth-child(3) img {
    display: none;
  }
  .designe_block:nth-child(2) .designe_block_title {
    border-bottom: 0;
  }
  .designe_block:nth-child(2),
  .designe_block:nth-child(3) {
    margin-top: 0;
  }
  .timer {
    /* margin-top: -145px; */
  }
  header .header .logo_wrap .logo.logo2 p {
    font-size: 10px;
    line-height: 5px;
  }
  header .header .logo_wrap .logo.logo2 p span {
    font-size: 11px;
  }
  header .header .logo_wrap .logo.logo1 img {
    height: 13px;
  }
  .benefit_cont_block:nth-child(3) p,
  .benefit_cont_block:nth-child(3) p span {
    font-size: 18px;
  }
  .contacts_cont_block:nth-child(1),
  .contacts_cont_block:nth-child(2) {
    width: 100%;
  }
  .contacts_cont_block:nth-child(1) {
    border-right: 0;
  }
  .contacts_cont_block:nth-child(2) {
    padding-left: 0;
    padding-top: 20px;
  }
  .yurinfo {
    padding-bottom: 10px;
  }
  .footer_cont .footer_bottom {
    display: block;
    padding-bottom: 30px;
  }
  .designe .beefup__head > button {
    font-size: 14px;
  }
  .designe_block:nth-child(2),
  .designe_block:nth-child(3) {
    width: 100%;
  }
  .designe_block:nth-child(2) .designe_block_title {
    border-right: 0;
  }
  .designe_block:nth-child(3) img {
    padding-left: 0;
    width: 100%;
    height: auto;
  }
  .designe_block:nth-child(3) .designe_block_title {
    margin-top: 20px;
    padding-left: 0;
  }
  .designe_block:nth-child(2) img,
  .designe_block:nth-child(3) img {
    height: auto;
  }
  #instock .compl_items .item_specs {
  }
  #instock .compl_items .item_specs > div {
    margin-bottom: 20px !important;
    padding-left: 0 !important;
  }
  .benefit_cont_block:nth-child(2),
  .benefit_cont_block:nth-child(4) {
    width: 100%;
    padding-right: 0;
  }
  .designe {
    padding-top: 40px;
  }
  .benefit select,
  .benefit input {
    width: 100%;
  }
  .benefit form .form-group input[type="text"],
  .benefit form .form-group input[type="tel"] {
    width: 100%;
  }
  .benefit form .form-group button {
    width: 100%;
  }
  #instock {
    margin-top: 0;
    padding: 0 0;
  }
  #instock .models {
    padding-left: 14px;
    justify-content: space-between;
    padding-right: 14px;
  }
  .beefup__head::after {
    left: 0 !important;
  }
  #instock .compl_items .item .item_name {
    margin-left: 60px;
    font-size: 20px;
  }
  #instock .compl_items .compl_btns {
    display: block;
  }
  #instock .compl_items .compl_btns .btn {
    width: 100%;
  }
  .benefit {
    margin-top: 50px;
  }
  footer {
    background-size: cover;
    margin-top: -180px;
    padding-top: 200px;
  }
  .benefit .compl_title,
  .service .compl_title {
    font-size: 32px;
  }
  .service_cont .popup.btn {
    width: 100%;
    min-width: inherit;
  }
}
@media (max-width: 420px) {
  .services_slide .services_items {
    font-size: 13px;
  }
  .banner .banner_btn {
    right: auto;
    left: 0px;
    transform: scale(0.8);
  }

  .benefit .compl_title,
  .service .compl_title {
    font-size: 26px;
  }
  form .form-group button {
  }
  .timer_content_date > div[id] {
    transform: scale(0.6) !important;
  }
  .timer {
    /* margin-top: -180px; */
  }
  .banner .title_container {
  }
  .label {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    margin-bottom: 10px;
  }
  .designe .beefup__head::after {
    left: auto !important;
    right: 0px !important;
  }
  .title_pl {
    /* margin-top: 164px; */
    /* transform: scale(0.7); */
    /* transform-origin: 45%; */
    /* font-size: 34px; */
    /* padding: 0; */
    height: auto;
    min-height: 100px;
  }

  .title_pl b {
    /* font-size: 14px; */
  }

  .banner .btn {
    max-width: 100%;
    height: 50px;
  }
}

@media (max-width: 378px) {
  header .header .logo_wrap .logo.logo2 p span {
    font-size: 9px;
  }

  #instock .model_name {
    font-size: 14px;
  }
  .timer_content_item {
    font-size: 16px;
  }
  .timer {
    /* margin-top: -206px; */
  }
  /* .banner {
        padding-bottom: 10px;
    } */

  .banner .title_container .sub_title {
    /* font-size: 17px; */
  }
}

@media (max-width: 360px) {
  .popup_container .agree_field {
    margin-top: 5px;
    font-size: 9px;
  }
  header .header .logo_wrap .logo.logo2 p span {
    font-size: 7px;
  }

  .benefit .compl_title,
  .service .compl_title {
    font-size: 24px;
  }
  #instock .compl_items .item .item_specs div {
    width: 60%;
  }
  header .header .logo_wrap {
    justify-content: left;
  }
  .avantages_cont_block p {
    font-size: 16px;
  }
  .contacts .contacts_title {
    font-size: 19px;
  }

  .banner .title_container .sub_title span {
    /* font-size: 4vw; */
  }

  .title_pl {
    margin-top: 215px;
    transform-origin: 30%;
  }
}

@media (max-width: 320px) {
  .banner .banner_btn {
    top: 70px;
    transform: scale(0.6);
  }
  .services_slide .services_items,
  .services_des_cont {
    padding: 20px 12px;
  }
  .benefit .compl_title,
  .service .compl_title {
    font-size: 20px;
  }
  #instock .model_name {
    font-size: 12px;
  }
  .banner .title_container {
  }

  .banner .title_container .date {
    font-size: 4.9vw;
  }

  .banner .title_container .title {
    font-size: 6vw;
  }

  .banner .title_container .sub_title {
    font-size: 5vw;
  }

  .banner .title_container .sub_title span {
    font-size: 4vw;
  }

  .conditions .conditions_item {
    padding: 60px 0 !important;
  }
}
