.cars {
  padding: 60px 0 100px;
}

.car-type {
  margin-top: 30px;
  padding: 10px 0;
}

.car-type-slider .outline-btn {
  width: 100%;
  background: transparent;
  cursor: pointer;
  font-size: 17px;
  padding:0;
}

.car-type-slider .outline-btn a{
    padding:21px 40px;
        width:100%;
        text-align:center;
}

.car-type::-webkit-scrollbar {
  display: none;
}

.selected {
  background: var(--active-color) !important;
  color: #fff;
}

.car {
  margin-top: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--active-color);
  gap: 30px;
}

.car-img {
  width: 100%;
  max-width: 400px;
}

.car-img img {
  width: 100%;
  height: auto;
  max-height:330px;
  border-radius: 10px;
  object-fit: fill;
}

.car-desc {
  flex-shrink: 1;
}

.car-desc h2 {
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 27px */
}

.car-desc ul {
  gap: 30px;
  margin: 40px 0 50px !important;
}

.car-desc ul li {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 24px */
}

.form-img{
    background-image: url(../../assets/form-car-img.jpeg);
}

.swiper-pagination-bullet {
  width: 20px !important;
  height: 4px !important;
  border-radius: 0 !important;
  background-color: #000 !important;
  opacity: 0.75 !important;
}

.swiper-pagination-bullet-active {
  background-color: var(--active-color) !important;
  opacity: 1 !important;
}

.car-img-next,
.car-img-prev{
  width: 36px !important;
  height: 36px !important;
  border-radius: 8px;
  background-color: #01162785;
  position: absolute;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.12);
}

.car-img-next path,.car-img-prev path{
    fill: var(--active-color);
}

.car-img-next:hover,.car-img-prev:hover{
    background-color:#011627;
}

.car-img-next,
.car-img-prev {
  top: 50%;
  opacity: 0;
  transition: all .3s ease;
}

.car-img-next {
  right: 5px;
}

.car-img-prev {
  left: 5px;
}
.car-img:hover .car-img-next,
.car-img:hover .car-img-prev {
  opacity: 1;
}

.swiper-button-lock{
    display:none !important;
}

@media screen and (min-width: 768px) {
  .swiper-wrapper {
  }
}

@media screen and (min-width: 1024px) {
    .car-desc h2{
        font-size: 22px;
    }

    .car-desc ul li{
        font-size: 18px;
    }

    .car-type-slider .outline-btn{
        font-size: 20px;
    }
}