.filter__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 20px;
}

.brand__list {
  width: 100%;
  grid-template-columns: repeat(5, 1fr);
}

.brand__item {
  min-width: 120px;
  height: 100px;
  background: #fff;
  -webkit-box-shadow: 10px 10px 10px rgba(237, 237, 238, 0.52), 5px 5px 4px rgba(237, 237, 238, 0.68);
  box-shadow: 10px 10px 10px rgba(237, 237, 238, 0.52), 5px 5px 4px rgba(237, 237, 238, 0.68);
  border-radius: 15px;
}

.brand__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: 100%;
  padding: 0 10px;
}

.brand__img {
  width: 48px;
  height: 48px;
  -o-object-fit: contain;
  object-fit: contain;
}

.brand__item p {
  font-weight: 500;
  font-size: 16px;
  line-height: 18px;
}

.filter {
  gap: 12px;
}

.inputs__row {
  gap: 10px;
}

.china__info {
  background: var(--main-background);
  -webkit-box-shadow: var(--main-shadow);
  box-shadow: var(--main-shadow);
  border-radius: 12px;
  padding: 20px 30px;
  margin-bottom: 30px;
}

.china__info h2 {
  font-weight: 700;
  font-size: 22px;
  line-height: 24px;
  border-bottom: 2px solid #d9d9d9;
  padding-bottom: 15px;
  margin-bottom: 5px;
}

.china__info h2 span {
  font-weight: 700;
  color: var(--secondary-color);
}

.china__info p {
  font-size: 18px;
  line-height: 20px;
  margin: 15px 0;
  text-indent: 20px;
}

.china__info p span {
  font-weight: 600;
  color: var(--secondary-color);
}

.cars__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border-radius: 10px;
  border: 1px solid #E1E1E1;
  background: #FFF;
  -webkit-box-shadow: 5px 5px 4px 0px rgba(237, 237, 238, 0.68), 10px 10px 10px 0px rgba(237, 237, 238, 0.52);
  box-shadow: 5px 5px 4px 0px rgba(237, 237, 238, 0.68), 10px 10px 10px 0px rgba(237, 237, 238, 0.52);
  padding: 20px;
  padding-bottom: 0;
  margin-bottom: 20px;
}

.cars__bottom-text {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 20px;
  text-indent: 10px;
}

.cars__bottom-text span {
  font-weight: 700;
  color: var(--secondary-color);
}

/* ------------------------ @media ------------------------ */

@media screen and (max-width: 1024px) {
  .brand__list {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media screen and (max-width: 940px) {
  .brand__list {
    grid-template-columns: repeat(3, 1fr);
  }

  .brand__item {
    height: auto;
  }

  .brand__item a {
    padding: 5px;
  }
}

@media screen and (max-width: 768px) {
  .china__info {
    padding: 10px 15px;
  }
}

@media screen and (max-width: 767px) {
  .brand__list {
    grid-template-columns: repeat(2, 1fr);
  }

  .brand__item {
    min-width: auto;
  }

  .brand__item a {
    padding: 5px;
    gap: 0;
  }

  .brand__img {
    width: 35px;
    height: 35px;
  }

  .brand__item p {
    font-size: 14px;
    line-height: 16px;
  }

  .cars__bottom-text {
    font-size: 16px;
    line-height: 20px;
  }
}

@media screen and (max-width: 580px) {
  .filter__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .brand__list {
    grid-template-columns: repeat(3, 1fr);
  }

  .filter {
    max-width: 580px;
  }
}

@media screen and (max-width: 425px) {
  .china__info h2 {
    font-size: 20px;
    line-height: 22px;
  }

  .china__info p {
    font-size: 16px;
    line-height: 18px;
    text-indent: 5px;
  }

  .cars__bottom {
    padding: 10px;
    padding-bottom: 0;
  }

  .cars__bottom-text {
    font-size: 14px;
    line-height: 18px;
    text-align: justify;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 375px) {
  .brand__list {
    grid-template-columns: repeat(2, 1fr);
  }
}