:root {
  --logo-size-height: 80px;
  --space-block: 50px;
  --time-animation-change-vehicles-css: 750ms;
  --time-animation-change-vehicles-js: 750;
}
@media only screen and (max-width: 868px) {
  :root {
    --logo-size-height: 65px;
    --space-block: 35px;
  }
}

#main.vehicles-page section .vehicles {
  margin-top: calc(var(--space-block));
  display: flex;
  flex-direction: column;
  align-items: center;
}
#main.vehicles-page section .vehicles-type {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 12px;
}
#main.vehicles-page section .vehicles-type__item {
  display: inline-block;
  font-family: "Lexend", sans-serif;
  margin: 0 35px;
  font-size: 1.7rem;
  cursor: pointer;
  position: relative;
  text-transform: uppercase;
}
#main.vehicles-page section .vehicles-type__item.active {
  font-weight: bold;
  color: #cba567;
  cursor: default;
}
#main.vehicles-page section .vehicles-type__item.active::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  height: 5px;
  width: 43px;
  background-color: #cba567;
}
#main.vehicles-page section .vehicles-info {
  width: 100%;
  position: relative;
}
#main.vehicles-page section .vehicles-info-car {
  display: none;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  margin-top: 50px;
  row-gap: 45px;
  column-gap: 3%;
}
#main.vehicles-page section .vehicles-info-car__detail {
  width: 31%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#main.vehicles-page section .vehicles-info-car__detail div {
  aspect-ratio: 5/3;
  width: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}
#main.vehicles-page section .vehicles-info-car__detail div > a {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 10px 30px;
  background-color: transparent;
  border: 1px solid #cba567;
}
#main.vehicles-page section .vehicles-info-car__detail div > a svg path {
  stroke: #cba567;
  fill: #cba567;
}
#main.vehicles-page section .vehicles-info-car__detail div > a:hover {
  background-color: #cba567;
}
#main.vehicles-page section .vehicles-info-car__detail div > a:hover svg path {
  stroke: #ffffff;
  fill: #ffffff;
}
#main.vehicles-page section .vehicles-info-car__detail label {
  font-family: "Genos", sans-serif;
  font-weight: 500;
  color: #000000;
  margin-top: 12px;
  font-size: 2.6rem;
  line-height: 3rem;
  height: 3rem;
  overflow: hidden;
  display: block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  text-transform: uppercase;
}
#main.vehicles-page section .vehicles-info-car.active {
  display: flex;
  position: relative;
  opacity: 0;
  animation: effect_change_show var(--time-animation-change-vehicles-css) 350ms linear forwards;
}
#main.vehicles-page section .vehicles-info-car.hide-animation {
  position: absolute;
  top: 0;
  left: 0;
  animation: effect_change_hide var(--time-animation-change-vehicles-css) linear forwards;
}
@keyframes effect_change_show {
  from {
    opacity: 0;
    transform: translate(3%, -5%);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes effect_change_hide {
  from {
    opacity: 1;
    transform: translate(0, 0);
  }
  to {
    opacity: 0;
    transform: translate(10%, -20%);
  }
}
#main.vehicles-page section .vehicles__watch-all {
  margin-top: 105px;
  margin-bottom: 100px;
  padding: 10px 32px;
  border: 1px solid #cba567;
  font-family: "Lexend", sans-serif;
  font-weight: bold;
  font-size: 1.6rem;
  text-decoration: none;
  color: #000000;
  cursor: pointer;
  text-transform: uppercase;
}
#main.vehicles-page section .vehicles__watch-all:hover {
  color: #ffffff;
  background-color: #cba567;
}
@media screen and (max-width: 868px) {
  #main.vehicles-page section .vehicles-type {
    list-style: none;
    justify-content: flex-start;
    overflow-x: auto;
    width: 100%;
    padding: 12px 0;
  }
  #main.vehicles-page section .vehicles-type__item {
    white-space: pre;
    margin: 0;
    margin-right: 25px;
  }
  #main.vehicles-page section .vehicles-type::-webkit-scrollbar {
    width: 0;
    height: 0;
  }
  #main.vehicles-page section .vehicles-type::-webkit-scrollbar-thumb {
    background: transparent;
  }
  #main.vehicles-page section .vehicles-info-car {
    row-gap: 35px;
  }
  #main.vehicles-page section .vehicles-info-car__detail {
    width: 48%;
  }
}
@media screen and (max-width: 868px) and (max-width: 565px) {
  #main.vehicles-page section .vehicles-info-car {
    flex-direction: column;
  }
  #main.vehicles-page section .vehicles-info-car__detail {
    width: 100%;
  }
}
@media screen and (max-width: 868px) {
  #main.vehicles-page section .vehicles-info-car.active {
    animation: effect_change_show var(--time-animation-change-vehicles-css) 350ms linear forwards;
  }
  #main.vehicles-page section .vehicles-info-car.hide-animation {
    animation: effect_change_hide var(--time-animation-change-vehicles-css) linear forwards;
  }
  @keyframes effect_change_show {
    from {
      opacity: 0;
      transform: translate(10%, -4%);
    }
    to {
      opacity: 1;
      transform: translate(0, 0);
    }
  }
  @keyframes effect_change_hide {
    from {
      opacity: 1;
      transform: translate(0, 0);
    }
    to {
      opacity: 0;
      transform: translate(16%, -7%);
    }
  }
}

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