.recommended-offers {
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  background: #1d1d1b;
  margin-top: -11px;
  margin-bottom: -11px;
}
.recommended-offers__container {
  width: 100%;
  padding: 96px 0px;
  z-index: 2;
  position: relative;
  margin: 0px auto;
  max-width: 100vw;
  overflow: hidden;
}
.recommended-offers__container h2 {
  font-family: "Archivo Black";
  font-size: 40px;
  color: white;
  font-weight: 900;
  line-height: 1em;
  font-style: italic;
  width: 100%;
  text-align: center;
  margin-bottom: 32px;
}
@media (max-width: 1500px) {
  .recommended-offers__container {
    padding: 64px 0px;
  }
}

@media (max-width: 1300px) {
  .recommended-offers__container {
    padding: 48px 0px;
  }
}
@media (max-width: 768px) {
  .recommended-offers__container h2 {
    font-size: 28px;
  }
}

.recommended-offers__container.loading .recommended-offers__items .loader {
  visibility: visible;
  opacity: 1;
}

.recommended-offers__header {
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .recommended-offers__header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 24px;
  }
}

.recommended-offers__header-text {
  margin-right: 32px;
}

@media (max-width: 768px) {
  .recommended-offers__header-text {
    margin-right: 0;
    margin-bottom: 10px;
  }
}

.recommended-offers__items {
  display: flex;
  transition: 0.3s;
  scroll-behavior: smooth;
  min-height: 300px;
  position: relative;
  margin-left: 32px;
}

.recommended-offers__items .loader {
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.recommended-offers__items .loader .circle {
  width: 25px;
  height: 25px;
  margin: 5px;
  border-radius: 50%;
  animation: circleAnimation 1.2s infinite ease-in-out;
  border: 10px solid #e3020e;
}

.recommended-offers__items .loader .circle:nth-child(1) {
  animation-delay: -0.32s;
}

.recommended-offers__items .loader .circle:nth-child(2) {
  animation-delay: -0.16s;
}

@keyframes circleAnimation {
  0%,
  80%,
  100% {
    transform: scale(0.7);
    opacity: 0.8;
    border: 10px solid #e3020e;
  }
  40% {
    transform: scale(1);
    opacity: 1;
    border: 7px solid #e3020e;
  }
}

.recommended-offers__item {
  width: 378px;
  min-width: 378px;
  margin-right: 32px;
  background-color: white;
  position: relative;
  text-decoration: none;
  transition: 0.3s;
  cursor: grab;
}

@media (max-width: 768px) {
  .recommended-offers__item {
    width: 310px;
    min-width: 310px;
  }
}

.recommended-offers__item-image {
  width: 100%;
  height: 333px;
  display: flex;
  position: relative;
}

@media (max-width: 768px) {
  .recommended-offers__item-image {
    height: 270px;
  }
}

.recommended-offers__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recommended-offers__item-text {
  padding: 32px;
}

.recommended-offers__item-text p.title {
  font-family: "Archivo Black";
  font-size: 26px;
  color: #30363a;
  font-weight: 900;
  line-height: 1.3;
  font-style: italic;
  margin-bottom: 4px;
  text-transform: uppercase;
  width: 100%;
}

@media (max-width: 768px) {
  .recommended-offers__item-text p.title {
    font-size: 20px;
  }
}

.recommended-offers__item-text p.price {
  font-size: 19px;
  font-weight: 700;
  color: #e13740;
  margin-bottom: 16px;
  font-family: "Work Sans";
}

@media (max-width: 768px) {
  .recommended-offers__item-text p.price {
    font-size: 16px;
  }
}
.recommended-offers__item-text .lowest-price {
  font-size: 11px;
  margin-bottom: 4px;
  display: flex;
  font-weight: 400;
}


.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.slider-dots .slider-dot {
  background: #ffffff;
  outline: 0;
  opacity: 0.15;
  height: 16px;
  border: 0;
  cursor: pointer;

  width: 16px;
  border-radius: 50%;
  transition: 0.3s;
}

@media (max-width: 768px) {
  .slider-dots .slider-dot {
   max-width: 12px;
   max-height: 12px;
   width: 12px;
   height: 12px;
  }
}

.slider-dots .slider-dot.active {
  opacity: 0.8;
}
.recommended-offers__item-info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.recommended-offers__item-info span {
  font-size: 13px;
  color: #30363abf;
  font-weight: 400;
  transition: 0.3s;
  display: flex;
  font-family: "Work Sans";
  align-items: center;
  margin-bottom: 4px;
}

.recommended-offers__item-info span::after {
  content: "";
  background-color: #30363abf;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  display: flex;
  margin: 0px 7px;
}

.recommended-offers a.button {
  padding: 12px;
  background-color: #e13740;
  border-radius: 50px;
  font-family: "Work Sans";
  text-decoration: none;
  color: white;
  font-weight: 600;
  margin: 0px auto;
  margin-top: 32px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-family: "Work Sans";
  display: flex;
  justify-content: center;
  width: fit-content;
  transition: 0.3s;
}
.recommended-offers a.button:hover {
  background-color: #acafad;
  color: #30363a;
}

.recommended-offers__item-info span:last-child::after {
  display: none;
}

.recommended-offers__item:hover p.title {
  text-decoration: underline;
}

.ads-page__results {
  position: relative;
}

.ads-page__items {
  display: flex;
  transition: 0.3s;
  scroll-behavior: smooth;
  min-height: 300px;
  position: relative;
  flex-wrap: wrap;
}

.ads-page__item {
  width: calc(33.33% - 32px);
  min-width: calc(33.33% - 32px);
  margin-right: 32px;
  margin-bottom: 32px;
  background-color: white;
  position: relative;
  text-decoration: none;
  transition: 0.3s;
  cursor: grab;
}

@media (max-width: 768px) {
  .ads-page__item {
    width: 100%;
    min-width: 100%;
  }
}

.ads-page__item-image {
  width: 100%;
  height: 333px;
  display: flex;
  position: relative;
}

@media (max-width: 768px) {
  .ads-page__item-image {
    height: 270px;
  }
}

.ads-page__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ads-page__item-text {
  padding: 32px;
}

.ads-page__item-text p.title {
  font-family: "Archivo Black";
  font-size: 26px;
  color: #30363a;
  font-weight: 900;
  line-height: 1.3;
  font-style: italic;
  margin-bottom: 4px;
  text-transform: uppercase;
  width: 100%;
}
a:hover {
	color:#30363a!important;
}

@media (max-width: 768px) {
  .ads-page__item-text p.title {
    font-size: 20px;
  }
}

.ads-page__item-text p.price {
  font-size: 19px;
  font-weight: 700;
  color: #e13740;
  margin-bottom: 4px;
  font-family: "Work Sans";
}

@media (max-width: 768px) {
  .ads-page__item-text p.price {
    font-size: 16px;
  }
}
.ads-page__item-text .lowest-price {
  font-size: 11px;
  margin-bottom: 16px;
  display: flex;
  font-weight: 400;
}

.ads-page__item-info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.ads-page__item-info span {
  font-size: 13px;
  color: #30363abf;
  font-weight: 400;
  transition: 0.3s;
  display: flex;
  font-family: "Work Sans";
  align-items: center;
  margin-bottom: 4px;
}

.ads-page__item-info span::after {
  content: "";
  background-color: #30363abf;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  display: flex;
  margin: 0px 7px;
}

.ads-page__item-info span:last-child::after {
  display: none;
}

.ads-page__item:hover p.title {
  text-decoration: underline;
}

.ads-page__results .loader {
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.ads-page__results .loader .circle {
  width: 25px;
  height: 25px;
  margin: 5px;
  border-radius: 50%;
  animation: circleAnimation 1.2s infinite ease-in-out;
  border: 10px solid #e3020e;
}

.ads-page__results .loader .circle:nth-child(1) {
  animation-delay: -0.32s;
}

.ads-page__results .loader .circle:nth-child(2) {
  animation-delay: -0.16s;
}

@keyframes circleAnimation {
  0%,
  80%,
  100% {
    transform: scale(0.7);
    opacity: 0.8;
    border: 10px solid #e3020e;
  }
  40% {
    transform: scale(1);
    opacity: 1;
    border: 7px solid #e3020e;
  }
}

.ads-page__results.loading .loader {
  visibility: visible;
  opacity: 1;
}

.ads-page__pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 48px;
}

.ads-page__pagination .page-number {
  font-size: 16px;
  border-radius: 2px;
  color: white;
  background-color: transparent;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px 4px;
  text-decoration: none;
  opacity: 0.8;
  border-bottom: 2px solid transparent;
}
.ads-page__pagination span {
  color: white;
}

.ads-page__pagination .page-number:hover {
  opacity: 1;
}
.ads-page__pagination .page-number.active {
  border-bottom: 2px solid #e13740;
  opacity: 1;
}

.ads-page__pagination .page-number svg {
  width: 23px;
}
.ads-page__pagination .page-number svg path {
  stroke: white;
}
.ads-page__pagination .page-number.prev {
  transform: rotate(180deg);
}

.filters__tabs {
  display: flex;
  margin-top: 64px;
  flex-wrap: wrap;
  margin-bottom: 58px;
}

.filters__tabs .filter-tab {
  background-color: transparent;
  border: 0;
  font-family: "Work Sans";
  text-transform: uppercase;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1.5px;
  display: flex;
  text-align: center;
  padding: 12px;
  transition: 0.3s;
  cursor: pointer;
  margin-bottom: 8px;
  margin-right: 4px;
  color: white;
  opacity: 0.8;
  outline: 0;
  border-bottom: 2px solid transparent;
}
.filters__tabs .filter-tab:hover {
  opacity: 1;
}
.filters__tabs .filter-tab.active {
  border-bottom: 2px solid #e13740;
  opacity: 1;
}

.single-car {
  padding-top: 80px;
  position: relative;
  margin: -10px;
  font-family: "Work Sans";
}

.single-car::after {
  content: "";
  width: 100vw;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #14181b;
  position: absolute;
  top: 0;
}

@media (max-width: 1000px) {
  .single-car {
    padding-top: 0;
  }
}

.single-car .popup-gallery {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
  padding-top: 93px;
}

@media (max-width: 1000px) {
  .single-car .popup-gallery {
    margin: auto;
    padding: 0px;
    width: 100%;
    max-width: 100vw;
    max-height: 100vh;
    height: 100vh;
    align-items: center;
  }
}

.single-car .popup-content {
  position: relative;
  margin: auto;
  padding: 20px;
  width: 80%;
  max-width: 80vw;
  max-height: 70vh;
  height: 70vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 93px;
}

@media (max-width: 1000px) {
  .single-car .popup-content {
    padding: 0;
    max-width: 100vw;
    width: 100%;
  }
}

.single-car .popup-content .popup-thumbnails-slider {
  position: relative;
  margin-top: 6px;
}

.single-car .popup-content .popup-thumbnails-slider .popup-thumbnails {
  display: flex;
  transition: 0.3s;
}

.single-car .popup-content .popup-thumbnails-slider .popup-thumbnails img {
  width: 20%;
  min-width: calc(20% - 6px);
  margin-right: 6px;
  object-fit: cover;
  opacity: 0.6;
  cursor: pointer;
  transition: 0.3s;
  height: 140px;
}

@media (max-width: 768px) {
  .single-car .popup-content .popup-thumbnails-slider .popup-thumbnails img {
    width: 33.33%;
    height: 110px;
    min-width: calc(33.33% - 6px);
  }
}

@media (min-width: 1000px) {
  .single-car
    .popup-content
    .popup-thumbnails-slider
    .popup-thumbnails
    img:hover {
    opacity: 1;
  }
}

.single-car
  .popup-content
  .popup-thumbnails-slider
  .popup-thumbnails
  img.active {
  opacity: 1;
}

.single-car .popup-content .popup-thumbnails-slider .popup-thumbnail-prev {
  background: white;
  border-radius: 50%;
  cursor: pointer;
  user-select: none;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  opacity: 0.6;
  color: var(--primarycolor);
  z-index: 2;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
}

.single-car
  .popup-content
  .popup-thumbnails-slider
  .popup-thumbnail-prev:hover {
  background: rgba(255, 255, 255, 1);
  opacity: 1;
}

.single-car .popup-content .popup-thumbnails-slider .popup-thumbnail-next {
  background: white;
  border-radius: 50%;
  cursor: pointer;
  user-select: none;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  opacity: 0.6;
  color: var(--primarycolor);
  z-index: 2;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
}

.single-car
  .popup-content
  .popup-thumbnails-slider
  .popup-thumbnail-next:hover {
  background: rgba(255, 255, 255, 1);
  opacity: 1;
}

.single-car .popup-content img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
}

.single-car .close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #ffffffbf;
  font-size: 40px;
  font-weight: 400;
  transition: 0.3s;
  cursor: pointer;
}

@media (max-width: 1000px) {
  .single-car .close {
    top: -3px;
    right: 15px;
  }
}

.single-car .close:hover,
.single-car .close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

.single-car .popup-arrows .popup-prev,
.single-car .popup-arrows .popup-next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: 30px;
  height: 30px;
  margin-top: -22px;
  padding: 16px;
  color: var(--primarycolor);
  font-weight: bold;
  transition: 0.3s;
  user-select: none;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
}

.single-car .popup-arrows .popup-prev {
  left: 0;
}

.single-car .popup-arrows .popup-next {
  right: 0;
}

.single-car__container {
  width: 100%;
  z-index: 2;
  position: relative;
  margin: 0px auto;
}

@media (max-width: 1500px) {
  .single-car__container {
    padding: 0px 50px;
  }
}

@media (max-width: 1000px) {
  .single-car__container {
    padding: 0px 16px;
  }
}

.single-car__content {
  display: flex;
  justify-content: space-between;
  gap: 64px;
}

@media (max-width: 1000px) {
  .single-car__content {
    flex-direction: column;
    position: relative;
    
  }
}

@media (max-width: 768px) {
  .single-car__content {
  gap: 0;
    
  }
}

.single-car__info {
  width: 32%;
  margin-left: auto;
  padding: 32px 0px;
}

@media (max-width: 1000px) {
  .single-car__info {
    width: 100%;
    padding-bottom: 0;
  }
}

.single-car__info h1 {
  font-family: "Archivo Black";
  font-size: 40px;
  color: white;
  font-weight: 900;
  line-height: 1em;
  font-style: italic;
  width: 100%;
  text-align: left;
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .single-car__info h1 {
    font-size: 28px;
  }
}

.single-car__info ul.lister {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
}

.single-car__info ul.lister li {
  margin-bottom: 0;
  color: #ffffff80;
  font-size: 13px;
  display: flex;
  align-items: center;
}

.single-car__info ul.lister li::after {
  content: "";
  display: block;
  margin: 0px 6px;
  width: 3px;
  height: 3px;
  background-color: #ffffff80;
}

.single-car__info ul.lister li:last-child::after {
  display: none;
}

.single-car__price {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
}
.single-car a.button {
  padding: 12px;
  background-color: #e13740;
  border-radius: 50px;
  font-family: "Work Sans";
  text-decoration: none;
  color: white;
  font-weight: 600;
  margin: 0px auto;
  margin-top: 32px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-family: "Work Sans";
  display: flex;
  justify-content: center;
  width: 100%;
  transition: 0.3s;
}

.single-car a.button a.button:hover {
  background-color: #acafad;
  color: #30363a;
}

.single-car__price-info {
  min-width: max-content;
  margin-bottom: 16px;
	display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.single-car__price-info p {
  font-family: "Archivo Black";
  font-size: 27px;
  color: #e13740;
  font-weight: 900;
  line-height: 1em;
  font-style: italic;
 
  text-align: center;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .single-car__price-info p {
    font-size: 20px;
  }
}

.single-car__price-info span {
  margin-bottom: 0;
  color: #ffffff80;
  font-size: 13px;
}

.single-car__details {
  margin-top: 32px;
}

.single-car__details p.title {
  font-size: 16px;
  color: #ffffffcc;
  font-weight: 400;
}

.single-car__details ul {
  list-style: none;
  padding: 0;
}

.single-car__details ul li {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.single-car__details ul li p {
  margin-bottom: 0;
  font-size: 13px;
  color: #ffffff;
}

.single-car__details ul li p::first-letter {
  text-transform: capitalize;
}

.single-car__details ul li span {
  color: #ffffff80;
  font-weight: 400;
  min-width: 40%;
  display: flex;
  font-size: 13px;
  margin-right: 16px;
}

@media (max-width: 1000px) {
  .single-car__details ul li span {
    min-width: 40%;
  }
}

.single-car__images {
  width: 66%;
}

@media (max-width: 1000px) {
  .single-car__images {
    width: 100%;
    margin-bottom: 32px;
    width: calc(100% + 32px);
    left: -16px;
    position: relative;
  }
}

.single-car__images .slider {
  position: relative;
  width: 100%;
  margin: auto;
  overflow: hidden;
}

.single-car__images .slider .slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.single-car__images .slider .slides img {
  width: 100%;
  flex-shrink: 0;
  object-fit: contain;
  height: 556px;
  cursor: zoom-in;
  object-position: bottom;
}

@media (max-width: 1000px) {
  .single-car__images .slider .slides img {
    height: 320px;
  }
}

.single-car__images .thumbnails-slider {
  position: relative;
  margin-top: 16px;
}

.single-car__images .thumbnails-slider .thumbnails {
  display: flex;
  transition: 0.3s;
}

.single-car__images .thumbnails-slider .thumbnails img {
  width: 12%;
  min-width: calc(13% - 16px);
  margin-right: 16px;
  object-fit: cover;
  opacity: 0.6;
  cursor: pointer;
  transition: 0.3s;
  height: 80px;
}

@media (max-width: 768px) {
  .single-car__images .thumbnails-slider .thumbnails img {
    width: 33.33%;
    height: 110px;
    min-width: calc(33.33% - 6px);
  }
}

@media (min-width: 1000px) {
  .single-car__images .thumbnails-slider .thumbnails img:hover {
    opacity: 1;
  }
}

.single-car__images .thumbnails-slider .thumbnails img.active {
  opacity: 1;
}

.single-car__images .thumbnails-slider .thumbnail-prev {
  background: white;
  border-radius: 50%;
  cursor: pointer;
  user-select: none;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  opacity: 0.6;
  color: var(--primarycolor);
  z-index: 2;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
}

.single-car__images .thumbnails-slider .thumbnail-prev:hover {
  background: rgba(255, 255, 255, 1);
  opacity: 1;
}

.single-car__images .thumbnails-slider .thumbnail-next {
  background: white;
  border-radius: 50%;
  cursor: pointer;
  user-select: none;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  opacity: 0.6;
  color: var(--primarycolor);
  z-index: 2;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
}

.single-car__images .thumbnails-slider .thumbnail-next:hover {
  background: rgba(255, 255, 255, 1);
  opacity: 1;
}

.single-car__images .arrows {
  width: 100%;
  display: flex;
  align-items: center;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  justify-content: space-between;
  padding: 0px 10px;
}

@media (max-width: 1000px) {
  .single-car__images .arrows {
    display: none;
  }
}

.single-car__images .arrows div {
  background: white;
  border-radius: 50%;
  cursor: pointer;
  user-select: none;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
  transition: 0.3s;
  color: var(--primarycolor);
}

.single-car__images .arrows div:hover,
.single-car__images .dots span:hover {
  background: rgba(255, 255, 255, 1);
  opacity: 1;
}

.single-car__images .dots {
  display: flex;
  margin-top: 32px;
  justify-content: center;
}

@media (max-width: 1000px) {
  .single-car__images .dots {
    bottom: 15px;
    margin-top: 0;
    width: 100%;
    padding: 0px 16px;
    position: absolute;
  }
}

.single-car__images .dots span {
  background: #e0e0e0;
  width: 100%;
  max-width: 53px;
  height: 2px;
  cursor: pointer;
  user-select: none;
  display: flex;
  transition: 0.3s;
  margin: 0 3px;
}

.single-car__images .dots span.active {
  background: var(--primarycolor);
  height: 4px;
}

.more-info__container {
  display: flex;
  justify-content: space-between;
  padding: 96px 0px;
  max-width: 996px;
  margin: auto;
}

@media (max-width: 1500px) {
  .more-info__container {
    padding: 64px 0px;
  }
}

@media (max-width: 1000px) {
  .more-info__container {
    padding: 48px 0px;
  }
}

@media (max-width: 768px) {
  .more-info__container {
    flex-direction: column;
  }
}

.more-info__blocks {
  display: flex;
  flex-direction: column;
  width: 32%;
}

@media (max-width: 768px) {
  .more-info__blocks {
    width: 100%;
  }
}

.more-info__item {
  height: 240px;
  background-size: cover;
  background-position: center;
  display: flex;
  padding: 32px;
  margin-bottom: 24px;
  text-decoration: none;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
}

@media (max-width: 768px) {
  .more-info__item {
    width: calc(100% + 32px);
    left: -16px;
    margin-bottom: 8px;
  }
}

.more-info__item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(24, 27, 31, 0) 0%,
    rgba(24, 27, 31, 1) 100%
  );
}

.more-info__item p {
  margin-bottom: 0;
  color: #ffffff;
  position: relative;
  z-index: 1;
}

.more-info__item p.title {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .more-info__item p.title {
    font-size: 18px;
  }
}

.more-info__eq {
  width: 66%;
}

@media (max-width: 768px) {
  .more-info__eq {
    width: 100%;
    margin-bottom: 32px;
  }
}

.more-info__description {
  overflow: hidden;
}

.more-info__description.active .more-info__description-header span::after {
  transform: translate(-50%);
}

.more-info__description-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  cursor: pointer;
}

.more-info__description-header h2 {
  margin-bottom: 0;
  font-weight: 600;
  font-size: 28px;
  line-height: 1.3;
  color: #181b1f;
}

@media (max-width: 1500px) {
  .more-info__description-header h2 {
    font-size: 24px;
  }
}

@media (max-width: 1000px) {
  .more-info__description-header h2 {
    font-size: 18px;
  }
}

.more-info__description-header span {
  width: 23px;
  height: 3px;
  background-color: #181b1f;
  position: relative;
}

.more-info__description-header span::after {
  content: "";
  position: absolute;
  width: 23px;
  height: 3px;
  background-color: #181b1f;
  transform: translate(-50%) rotate(90deg);
  transition: 0.3s;
  left: 50%;
}

.more-info__description-text p {
  line-height: 1.4;
  color: #ffffffcc;
  margin-bottom: 0;
}

.more-info__description-text p:last-child {
  margin-bottom: 24px;
}
.car-equipment__info {
  color: white;
  border: 1px solid #ffffff26;
  margin-bottom: 16px;
}

.more-info .car-equipment.active .car-equipment__items {
  opacity: 1;
  visibility: visible;
  height: auto;
}

.car-equipment__info.active .car-equipment__header span::after {
  transform: translate(-50%);
}

.car-equipment__content {
  opacity: 0;
  height: 0;
  padding:0;
  transition: 0.3s;
  visibility: hidden;
}

.car-equipment__info.active .car-equipment__content {
  padding: 24px;
  opacity: 1;
  height: auto;
  visibility: visible;
}
.car-equipment__content .car-equipment__content-basic {
  list-style: none;
  padding: 0;
  margin:0;
}

.car-equipment__content .car-equipment__content-basic li {
  display: flex;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #FFFFFF26;
}
.car-equipment__content .car-equipment__content-basic li:last-child {
  margin-bottom: 0px;
  padding-bottom: 0px;
  border-bottom: 0px solid #FFFFFF26;
}

.car-equipment__content .car-equipment__content-basic li span {
  width: 45%;
  display: flex;
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
}
.car-equipment__content .car-equipment__content-basic li p {
  display: flex;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0;
}
.more-info .car-equipment__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 24px;
  border-bottom: 1px solid #ffffff26;
}
.more-info .car-equipment__header p.title {
  margin-bottom: 0;
  font-weight: 700;
  color: white;
}

.more-info .car-equipment__header h2 {
  margin-bottom: 0;
  font-weight: 600;
  font-size: 28px;
  line-height: 1.3;
  color: #181b1f;
}

@media (max-width: 1500px) {
  .more-info .car-equipment__header h2 {
    font-size: 24px;
  }
}

@media (max-width: 1000px) {
  .more-info .car-equipment__header h2 {
    font-size: 18px;
  }
}

.more-info .car-equipment__header span {
  width: 14px;
  height: 3px;
  background-color: white;
  position: relative;
}

.more-info .car-equipment__header span::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 3px;
  background-color: white;
  transform: translate(-50%) rotate(90deg);
  transition: 0.3s;
  left: 50%;
}

.tabs__contents .tab-content {
  display: none;
}

.tabs__contents .tab-content.active {
  display: block;
}

.tabs__headers {
  display: flex;
  cursor: pointer;
  margin-bottom: 32px;
  justify-content: center;
}

.tabs__headers .tab-header {
  background-color: transparent;
  border: 0;
  font-family: "Work Sans";
  text-transform: uppercase;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1.5px;
  display: flex;
  text-align: center;
  padding: 12px;
  transition: 0.3s;
  cursor: pointer;
  margin-bottom: 8px;
  margin-right: 4px;
  color: white;
  opacity: 0.8;
  outline: 0;
  border-bottom: 2px solid transparent;
}

.tabs__headers .tab-header:hover {
  opacity: 1;
}
.tabs__headers .tab-header.active {
  border-bottom: 2px solid #e13740;
  opacity: 1;
}

.more-info .car-equipment__item {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #FFFFFF26;
}

.more-info .car-equipment__item ul{
margin-bottom: 0;
}
@media (max-width:768px) {
  .more-info .car-equipment__item ul{
  padding-left: 10px;
    }
}
.more-info .car-equipment__item:last-child {
  margin-bottom:0;
  padding-bottom: 0;
  border-bottom: 0px solid #FFFFFF26;
}
.more-info .car-equipment__item.active .car-equipment__item-header span::after {
  transform: translate(-50%);
}

.more-info .car-equipment__item-header {
  margin-bottom: 16px;
  width: 100%;
  cursor: pointer;
}

.more-info .car-equipment__item-header p.title {
  font-size: 16px;
  font-weight: 600;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}

.more-info .car-equipment__item-header span {
  width: 14px;
  height: 2px;
  background-color: #181b1f;
  position: relative;
  display: flex;
}

.more-info .car-equipment__item-header span::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 2px;
  background-color: #181b1f;
  transform: translate(-50%) rotate(90deg);
  transition: 0.3s;
  left: 50%;
}

.more-info .car-equipment__item ul {
  display: flex;
  width: 102%;
  flex-wrap: wrap;
  list-style: none;

  transition: 0.3s;
}

.more-info .car-equipment__item ul li {
  width: 31.33%;
  margin-right: 2%;
  font-size: 16px;
  color: white;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
}

@media (max-width: 768px) {
  .more-info .car-equipment__item ul li {
    width: 100%;
  }
}
