/* Popular-Vechicles */
.popular-vechicles {
  width: 100%;
  height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* Title-Box */
.popular-vechicles .title-box {
  width: 100%;
  height: 15%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.popular-vechicles .title-box .title {
  width: 400px;
  position: relative;
}
.popular-vechicles .title h1 {
  font-family: thin;
  font-size: 45px;
}
.popular-vechicles .title span {
  position: absolute;
  bottom: 1rem;
  left: 0;
  height: 100%;
  width: 100%;
  background: var(--light_yellow);
  z-index: -1;
  clip-path: polygon(0 90%, 100% 80%, 100% 100%, 0% 100%);
}
/* Slider */
.popular-vechicles .slider {
  width: 100%;
  height: 85%;
}
.swiper {
  width: 100%;
  height: 100%;
}
/* Slide-description */
.popular-vechicles .swiper-slide .description {
  width: 50%;
  height: 100%;
  float: left;
  display: flex;
  justify-content: center;
}
.popular-vechicles .description .description-box {
  width: 90%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 30px;
}
.popular-vechicles .description-box h1 {
  color: var(--yellow);
  font-size: 20px;
}
.popular-vechicles .description-box span {
  color: var(--yellow);
  font-family: thin;
  font-size: 14px;
}
.popular-vechicles .description-box p {
  font-family: thin;
  font-size: 18px;
}
.popular-vechicles .description-box .star i {
  color: var(--yellow);
  font-size: 14px;
}
/* Slide-slider_img */
.popular-vechicles .swiper-slide .slide-img {
  width: 50%;
  height: 100%;
  float: right;
}