: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.home-page section .banner .banner-slider {
  width: 100%;
  aspect-ratio: 2/1;
  display: none;
}
#main.home-page section .banner .banner-slider img {
  width: 100%;
  aspect-ratio: 2/1;
  object-fit: cover;
}
#main.home-page section .banner .banner-slider .slick-arrow {
  position: absolute;
  bottom: calc((70px + 10vw) / 2 * -1);
  color: transparent;
  background-color: transparent;
  border: none;
  width: 50px;
  background-repeat: no-repeat;
  cursor: pointer;
}
#main.home-page section .banner .banner-slider .slick-dots {
  position: absolute;
  bottom: -26px;
  right: 0;
  display: flex;
  list-style: none;
}
#main.home-page section .banner .banner-slider .slick-dots > li {
  display: inline-block;
  margin-left: 7px;
  cursor: pointer;
}
#main.home-page section .banner .banner-slider .slick-dots > li button {
  border: 1px solid #7d4e13;
  color: transparent;
  height: 9px;
  width: 9px;
  border-radius: 100rem;
  cursor: pointer;
}
#main.home-page section .banner .banner-slider .slick-dots > li.slick-active button {
  background-color: #7d4e13;
}
#main.home-page section .banner .banner-slider .slick-next {
  background-image: url("../../assets/images/symbols/arrow_right.png");
  background-position: right;
  right: -4px;
}
#main.home-page section .banner .banner-slider .slick-prev {
  background-image: url("../../assets/images/symbols/arrow_left.png");
  background-position: left;
  right: 36px;
}
#main.home-page section .banner .banner-title {
  background-color: #cba567;
  width: calc((100vw - 60px) / 2);
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-text-stroke: 1px #ffffff;
  font-family: "Genos", sans-serif;
  font-size: 6vw;
  font-weight: 900;
  line-height: 5vw;
  color: transparent;
  padding: 35px 30px;
  position: absolute;
  transform: translateY(-50%);
  text-transform: uppercase;
}
#main.home-page section .banner .banner-con {
  position: relative;
}
#main.home-page section .banner .text-banner {
  position: absolute;
  bottom: calc(20% + 50px);
  left: 15px;
  transform: translate(0px, 0);
  color: #fff;
  width: calc((100vw - 60px) / 3);
  font-family: "Lexend", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* number of lines to show */
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
#main.home-page section .banner .about-watch-more {
  bottom: 20%;
  left: 15px;
  transform: translate(0, 0);
}
#main.home-page section .vehicles {
  margin-top: calc((70px + 10vw) / 2 + var(--space-block));
  flex-direction: column;
  align-items: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
#main.home-page section .vehicles-info {
  width: 100%;
  position: relative;
  z-index: 10;
}
#main.home-page section .vehicles-info-car {
  display: none;
  align-items: center;
  column-gap: 3%;
  width: 100%;
  margin-top: 50px;
  position: relative;
  flex-wrap: wrap;
  row-gap: 16px;
}
#main.home-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.home-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_hide {
  from {
    opacity: 1;
    transform: translate(0, 0);
  }
  to {
    opacity: 0;
    transform: translate(10%, -20%);
  }
}
#main.home-page section .vehicles-type {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 12px;
}
#main.home-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.home-page section .vehicles-type__item:not(.active) {
  border: 2px solid #cba567;
  padding: 4px 8px;
  transition: 0.2s;
}
#main.home-page section .vehicles-type__item:not(.active):hover {
  background-color: #cba567;
  color: #fff;
}
#main.home-page section .vehicles-type__item.active {
  font-weight: bold;
  color: #cba567;
  cursor: default;
}
#main.home-page section .vehicles-type__item.active::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  height: 5px;
  width: 43px;
  background-color: #cba567;
}
#main.home-page section .vehicles__watch-all {
  margin-top: 36px;
  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;
  display: block;
  width: max-content;
}
#main.home-page section .vehicles__watch-all:hover {
  color: #ffffff;
  background-color: #cba567;
}
@keyframes effect_change_show {
  from {
    opacity: 0;
    transform: translate(3%, -5%);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
#main.home-page section .about-dcar {
  margin-top: var(--space-block);
  background-color: #f4f4f4;
  position: relative;
  padding-top: 32px;
  padding-bottom: 60px;
}
@media screen and (max-width: 868px) {
  #main.home-page section .banner .text-banner {
    width: calc((100vw - 60px) / 2);
    bottom: calc(24% + 50px);
  }
  #main.home-page section .banner .about-watch-more {
    bottom: 24%;
  }
}
@media screen and (max-width: 868px) and (max-width: 636px) {
  #main.home-page section .banner .text-banner {
    width: calc(100% - 60px);
    bottom: calc(28% + 50px);
  }
  #main.home-page section .banner .about-watch-more {
    bottom: 28%;
  }
}
@media screen and (max-width: 868px) {
  #main.home-page section .banner .banner-slider .slick-arrow {
    bottom: calc((60px + 10vw) / 2 * -1);
    width: 35px;
    transform: scale(0.9);
  }
  #main.home-page section .banner .banner-slider .slick-prev {
    right: 40px;
  }
  #main.home-page section .banner .banner-title {
    padding: 20px 10px;
    font-size: 7.5vw;
    line-height: 7vw;
    box-sizing: content-box;
  }
  #main.home-page section .vehicles-type {
    list-style: none;
    justify-content: flex-start;
    overflow-x: auto;
    width: 100%;
    padding: 12px 0;
  }
  #main.home-page section .vehicles-type__item {
    white-space: pre;
    margin: 0;
    margin-right: 25px;
  }
  #main.home-page section .vehicles-type::-webkit-scrollbar {
    width: 0;
    height: 0;
  }
  #main.home-page section .vehicles-type::-webkit-scrollbar-thumb {
    background: transparent;
  }
  #main.home-page section .vehicles-info-car {
    justify-content: flex-start;
    margin-top: 35px;
    overflow-x: auto;
    flex-wrap: nowrap;
    column-gap: 0;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: 16px;
  }
  #main.home-page section .vehicles-info-car::-webkit-scrollbar {
    height: 6px;
  }
  #main.home-page section .vehicles-info-car::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  #main.home-page section .vehicles-info-car::-webkit-scrollbar-thumb {
    background: #cba567;
    border-radius: 10px;
    opacity: 0.8;
    cursor: pointer;
  }
  #main.home-page section .vehicles-info-car::-webkit-scrollbar-thumb:hover {
    opacity: 1;
  }
  #main.home-page section .vehicles-info-car__detail {
    width: 350px;
    margin-right: 24px;
    max-width: 90vw;
    scroll-snap-align: start;
  }
  #main.home-page section .vehicles-info-car__detail div {
    aspect-ratio: 5/3;
    width: 350px;
    max-width: 90vw;
  }
  #main.home-page section .vehicles-info-car__detail div img {
    width: 350px;
    max-width: 90vw;
    aspect-ratio: 5/3;
  }
  #main.home-page section .about-dcar-info {
    flex-direction: column;
  }
  #main.home-page section .about-dcar-info .history-begin {
    margin-bottom: 24px;
  }
  #main.home-page section .about-dcar-info .history-begin,
  #main.home-page section .about-dcar-info .vision-mission {
    width: 100%;
  }
  #main.home-page section .about-dcar-info .history-begin label,
  #main.home-page section .about-dcar-info .vision-mission label {
    font-size: 24px;
  }
  #main.home-page section .news-dcar {
    border-top: 0.5px solid rgba(112, 112, 112, 0.2);
  }
}

.logo-animation {
  display: none;
}

canvas {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -75%) scale(0.8);
  transition: all 1s;
  z-index: 16;
}

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