@charset "UTF-8";
/*  Цвет текста  */
/*  фон сайта  */
/*  Шрифты  */
.main-title {
  text-align: center;
  margin: 15px 0 0;
}
@media (max-width: 480px) {
  .main-title {
    font-size: 18px;
  }
}

.banner {
  background-repeat: no-repeat;
  background-size: cover;
  height: 384px;
  background-position: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  position: relative;
  color: #fff;
}
.banner__link {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.banner__title {
  font-size: 53px;
  line-height: 1;
}
@media (max-width: 550px) {
  .banner__title {
    font-size: 30px;
    text-align: center;
  }
}
.banner__subtitle {
  margin-top: 34px;
  font-size: 20px;
}
@media (max-width: 550px) {
  .banner__subtitle {
    margin-top: 20px;
    font-size: 18px;
  }
}
.banner__list {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 49px;
}
.banner__list ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  flex-wrap: wrap;
}
.banner__list ul li {
  font-size: 14px;
  color: #fff;
  padding: 0 15px;
}
@media (max-width: 550px) {
  .banner__list ul li {
    font-size: 13px;
    padding: 0 10px;
    text-align: center;
  }
}

.category-tile {
  margin: 30px 0 0;
}
.category-tile .flex {
  margin: 0 -10px;
}
@media (max-width: 1200px) {
  .category-tile .flex {
    justify-content: center;
  }
}
.category-tile__item {
  flex: 0 0 calc(10% - 20px);
  margin: 0 10px;
  color: #262626;
  font-size: 15px;
  background-position: top center;
  background-repeat: no-repeat;
  padding-top: 85px;
  text-align: center;
  word-break: break-word;
  background-size: auto 80px;
}
@media (max-width: 1200px) {
  .category-tile__item {
    flex: 0 0 calc(16.666% - 20px);
    margin: 0 10px 10px;
  }
}
@media (max-width: 991px) {
  .category-tile__item {
    flex: 0 0 calc(25% - 20px);
  }
}
@media (max-width: 765px) {
  .category-tile__item {
    font-size: 13px;
    padding-top: 90px;
    flex: 0 0 calc(33.333% - 20px);
  }
}

.b-catalog {
  margin: 60px 0;
}
.b-catalog__list {
  background-color: #333333;
  padding: 30px 35px;
  flex: 0 0 320px;
}
.b-catalog__list ul {
  list-style: none;
  padding: 0;
  max-height: 310px;
  overflow-x: auto;
  margin-bottom: 0;
  width: 250px;
  height: 100%;
}
.b-catalog__list ul::-webkit-scrollbar-track {
  background-color: #333333;
}
.b-catalog__list ul::-webkit-scrollbar {
  width: 6px;
  background-color: #333333;
}
.b-catalog__list ul::-webkit-scrollbar-thumb {
  background-color: #999;
}
.b-catalog__list ul li {
  line-height: 1;
}
.b-catalog__list ul li:not(:last-child) {
  margin-bottom: 25px;
}
.b-catalog__list ul li a {
  color: #999;
  font-size: 15px;
  line-height: 1;
  transition: all 0.2s linear;
}
.b-catalog__list ul li a:hover {
  color: #fff;
}
.b-catalog__tile {
  display: grid;
  flex: 1;
  grid-gap: 2px;
  padding-left: 2px;
  grid-template-columns: 33.333% 33.333% 33.333%;
}
.b-catalog__tile__item {
  padding: 20px 18px;
  color: #fff;
  min-height: 170px;
  background-position: center;
  background-size: cover;
  position: relative;
  display: block;
}
.b-catalog__tile__item:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.55);
}
.b-catalog__tile__item__content {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  z-index: 9;
}
.b-catalog__tile__item__count {
  font-size: 14px;
  font-weight: 300;
  margin-top: 15px;
}
.b-catalog__tile__item__icon {
  width: 40px;
  height: 50px;
  background-size: contain;
  background-position: bottom;
  flex: 1;
  background-repeat: no-repeat;
}

.tabs {
  margin: 60px 0;
}
.tabs__title {
  font-size: 20px;
  font-weight: 500;
  line-height: 150%;
  margin: 0;
  position: relative;
  padding-bottom: 22px;
  margin-bottom: 20px;
}
.tabs__title:after {
  content: "";
  width: 50px;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #4066B0;
}
.tabs__buttons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 -12px 40px;
}
@media (max-width: 600px) {
  .tabs__buttons {
    flex-wrap: nowrap;
    margin: 0 -12px 10px;
    padding-bottom: 5px;
    overflow: auto;
  }
}
.tabs__buttons__item {
  font-size: 15px;
  color: #262626;
  cursor: pointer;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: all 0.2s linear;
  margin: 6px 12px;
}
.tabs__buttons__item.active, .tabs__buttons__item:hover {
  border-bottom-color: #262626;
}
@media (max-width: 600px) {
  .tabs__buttons__item {
    white-space: nowrap;
    margin: 6px 9px;
  }
}
.tabs__content__item {
  display: none;
}
.tabs__content__item.active {
  display: block;
  animation: showBlock 0.5s linear forwards;
}
.tabs__content__product {
  flex: 0 0 20%;
  text-align: center;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .tabs__content__product {
    margin-bottom: 10px;
    padding: 0 10px;
  }
}
@media (max-width: 765px) {
  .tabs__content__product {
    flex: 0 0 33.333%;
  }
}
@media (max-width: 450px) {
  .tabs__content__product {
    padding: 0 4px;
  }
}
@media (max-width: 350px) {
  .tabs__content__product {
    flex: 0 0 50%;
  }
}
.tabs__content__product__image {
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
@media (max-width: 991px) {
  .tabs__content__product__image {
    height: 115px;
  }
}
@media (max-width: 400px) {
  .tabs__content__product__image {
    height: 90px;
  }
}
.tabs__content__product__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.tabs__content__product span {
  display: block;
  font-size: 15px;
  margin-top: 25px;
  color: #262626;
}
@media (max-width: 991px) {
  .tabs__content__product span {
    font-size: 13px;
    margin-top: 10px;
  }
}
.tabs__content .flex-model {
  margin: 0 -7px;
}
.tabs__content__brand {
  flex: 0 0 16.666%;
  font-size: 16px;
  color: #464646;
  border: 1px solid #fff;
  transition: all 0.2s linear;
  cursor: pointer;
  background-color: #f7f7f7;
  height: 55px;
  padding: 0 38px;
  display: flex;
  align-items: center;
}
.tabs__content__brand span {
  padding-left: 50px;
  min-height: 35px;
  display: flex;
  align-items: center;
  background-repeat: no-repeat;
  background-position: left center;
}
@media (max-width: 992px) {
  .tabs__content__brand {
    flex: 0 0 33.333%;
    font-size: 14px;
    border: 1px solid #fff;
    padding: 0 20px;
  }
}
.tabs__content__model {
  flex: 0 0 calc(16.666% - 14px);
  padding: 10px 10px;
  font-size: 13px;
  color: #464646;
  border: 2px solid #f0f0f0;
  margin: 0 7px 14px;
  cursor: pointer;
  border-radius: 3px;
  transition: all 0.2s linear;
  background-repeat: no-repeat;
  background-position: 95% center;
  background-size: 45px;
}
.tabs__content__model:hover {
  border-color: #cb1818;
}
@media (max-width: 1200px) {
  .tabs__content__model {
    flex: 0 0 calc(25% - 14px);
  }
}
@media (max-width: 991px) {
  .tabs__content__model {
    flex: 0 0 calc(33.333% - 14px);
    padding: 10px;
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .tabs__content__model {
    flex: 0 0 calc(50% - 14px);
  }
}

.recommend {
  margin-bottom: 60px;
}
.recommend .flex {
  margin: 0 -7px;
}
.recommend__item {
  flex: 0 0 calc(20% - 14px);
  margin: 70px 7px 0;
  position: relative;
}
.recommend__item__background {
  background-color: #f8f8f8;
  padding: 40px 24px 25px;
  display: block;
}
.recommend__item__icon {
  display: block;
  width: 100px;
  height: 50px;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: -30px;
  left: 24px;
}
.recommend__item__name {
  display: block;
  font-size: 15px;
  margin-bottom: 10px;
  color: #262626;
}
.recommend__item__text {
  font-size: 12px;
  color: #464646;
}

.service {
  margin-bottom: 60px;
}
.service .h1 {
  margin-bottom: 30px;
}
.service__item {
  flex: 0 0 20%;
  text-align: center;
  margin-top: 20px;
}
.service__item span {
  display: block;
  margin-top: 35px;
  font-size: 16px;
  color: #262626;
}
.service__link {
  width: 365px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s linear;
  background-color: #3761bf;
  margin: 70px auto 0;
  border-radius: 5px;
}
.service__link:hover {
  color: #fff;
  opacity: 0.8;
}

.selecting {
  margin-bottom: 60px;
}
.selecting_flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
}
.selecting__container {
  background-color: #f8f8f8;
  padding: 72px 104px;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .selecting__container {
    padding: 40px 40px;
  }
}
@media (max-width: 480px) {
  .selecting__container {
    padding: 0;
    background-color: transparent;
  }
}
.selecting__column-left {
  flex: 1;
  padding-right: 50px;
}
@media (max-width: 1200px) {
  .selecting__column-left {
    padding-left: 0;
    margin-bottom: 20px;
  }
}
.selecting__column-right {
  flex: 0 0 70%;
}
@media (max-width: 1200px) {
  .selecting__column-right {
    flex: 0 0 100%;
  }
}
.selecting__title {
  font-size: 33px;
  line-height: 40px;
  margin-bottom: 16px;
}
@media (max-width: 480px) {
  .selecting__title {
    font-size: 20px;
    font-weight: 500;
    line-height: 150%;
    margin: 0 0 20px;
    position: relative;
    padding-bottom: 22px;
  }
  .selecting__title:after {
    content: "";
    width: 50px;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #4066B0;
  }
}
.selecting__desc {
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
}
@media (max-width: 480px) {
  .selecting__desc {
    font-size: 16px;
    line-height: 24px;
  }
}
.selecting__vin {
  flex: 1;
  padding-right: 50px;
}
@media (max-width: 766px) {
  .selecting__vin {
    padding-right: 0;
    margin-bottom: 20px;
  }
}
.selecting__vin input {
  width: 100%;
}
.selecting__vin__toggle {
  margin-bottom: 8px;
  color: #444;
  font-size: 13px;
  line-height: 16px;
  background: 0 0;
  border: 0;
  border-bottom: 1px dashed;
  outline: 0;
  cursor: pointer;
  width: max-content;
}
.selecting__callback {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.selecting__callback__list {
  position: relative;
}
.selecting__callback__list__item-selected {
  border-radius: 4px;
  line-height: 24px;
  background-color: #fff;
  border: 1px solid #E0E0E0;
  color: #222;
  display: flex;
  align-items: center;
  height: 49px;
  padding: 0 32px 0 16px;
  position: relative;
  cursor: pointer;
  width: 115px;
  margin-right: 8px;
}
.selecting__callback__list__item-selected:after, .selecting__callback__list__item-selected:before {
  content: "";
  width: 6px;
  height: 1.5px;
  background-color: #222;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  margin: auto;
}
.selecting__callback__list__item-selected:before {
  right: 14px;
  transform: rotate(45deg);
}
.selecting__callback__list__item-selected:after {
  transform: rotate(-45deg);
}
.selecting__callback__list ul {
  position: absolute;
  left: 0;
  right: 8px;
  top: 57px;
  border-radius: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
  background-color: #fff;
  border: 1px solid #E0E0E0;
  transition: all 0.2s linear;
  opacity: 0;
  visibility: hidden;
}
.selecting__callback__list ul.active {
  opacity: 1;
  visibility: visible;
}
.selecting__callback__list ul li {
  padding: 5px 16px;
  cursor: pointer;
}
.selecting__callback__list ul li.active {
  background-color: #eaeaea;
}
.selecting__footer {
  display: flex;
}
@media (max-width: 767px) {
  .selecting__footer {
    flex-direction: column-reverse;
  }
}
.selecting__footer__text {
  padding: 8px 64px 0 0;
  color: #999;
  font-size: 11px;
  line-height: 16px;
}
@media (max-width: 767px) {
  .selecting__footer__text {
    padding: 8px 0 0;
  }
}
.selecting__footer button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: 400;
  border-radius: 8px;
  outline: 0;
  cursor: pointer;
  transition: background-color 0.25s linear, border-color 0.25s linear, box-shadow 0.25s linear, color 0.25s linear;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 13px 24px;
  white-space: nowrap;
  font-size: 18px;
  line-height: 24px;
  background-color: #C42D27;
  border: 0;
}
.selecting textarea {
  width: 100%;
  margin: 20px 0;
  height: 140px;
}
.selecting input,
.selecting textarea {
  padding: 12px 16px;
  font-size: 18px;
  border-radius: 4px;
  line-height: 24px;
  background-color: #fff;
  border: 1px solid #E0E0E0;
}
.selecting input::placeholder,
.selecting textarea::placeholder {
  color: #999;
}
.selecting input {
  padding: 0 16px;
  height: 49px;
}

@keyframes showBlock {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media (max-width: 992px) {
  .service__item {
    flex: 0 0 25%;
    text-align: center;
    margin-top: 0;
    margin-right: 10px;
  }
  .service__item span {
    margin-top: 10px;
    font-size: 14px;
  }
  .service__link {
    width: 250px;
    height: 44px;
    font-size: 14px;
    margin: 20px auto 0;
  }
  .service > .container > .flex {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 10px;
  }
  .recommend .flex {
    margin: 0 -7px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 11px;
  }
  .recommend__item__background {
    background-color: #f8f8f8;
    padding: 35px 20px 20px;
    display: block;
  }
  .recommend__item__text {
    font-size: 12px;
    color: #464646;
    line-height: 18px !important;
    display: block;
  }
}

/*# sourceMappingURL=homepage.css.map */
