.home-page section .heading {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (max-width: 600px) {
  .home-page section .heading {
    gap: 15px;
  }
}

.home-page .home-slider .swiper .swiper-slide {
  height: 750px;
}

.home-page .home-slider .swiper .swiper-slide img,
.home-page .home-slider .swiper .swiper-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-page .home-slider .swiper .swiper-pagination {
  position: relative;
  top: 0;
  height: max-content;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.home-page .import-info {
  padding: 70px 0;
}

@media (max-width: 600px) {
  .home-page .import-info {
    padding: 30px 0;
  }
}

.home-page .import-info .content-area {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-right: 23px;
}

.home-page .import-info .content-area p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 213.3%;
  letter-spacing: -0.32px;
  margin-bottom: 0;
}

@media (max-width: 600px) {
  .home-page .import-info .content-area {
    padding-right: 0;
  }

  .home-page .import-info .content-area p {
    line-height: 139.3%;
  }
}

.home-page .import-info .content-area .see-more {
  background-color: var(--neutral-green-2);
  color: #fff;
  width: max-content;
  padding: 8px 20px;
  border-radius: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 162px;
}

.home-page .import-info .box-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding-left: 23px;
}

@media (max-width: 1170px) {
  .home-page .import-info .box-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .home-page .import-info .box-container {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .home-page .import-info .box-container {
    padding-left: 0;
  }

  .home-page .import-info .box-container {
    grid-template-columns: 1fr 1fr;
  }
}

.home-page .import-info .box-container .box-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--neutral-green-1, #007478);
  background: var(--light-100, #fff);
  gap: 20px;
  aspect-ratio: 1/1;
}

.home-page .import-info .box-container .box-item div {
  margin: 0 17px;
  text-align: center;
}

.home-page .import-info .box-container .box-item div.main-text {
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: 113.8%;
  color: var(--neutral-green-1);
  text-transform: uppercase;
}

.home-page .import-info .box-container .box-item div.sub-text {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: var(--neutral-black);
}

.home-page .import-info .box-container .box-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 600px) {
  .home-page .import-info .box-container .box-item {
    gap: 15px;
  }

  .home-page .import-info .box-container .box-item:nth-child(2n) {
    border-left: 0;
  }

  .home-page .import-info .box-container .box-item div {
    margin: 0 13px;
  }

  .home-page .import-info .box-container .box-item div.main-text {
    font-size: 38px;
  }

  .home-page .import-info .box-container .box-item div.sub-text {
    font-size: 15px;
    line-height: 140%;
  }
}

.home-page .truck-list-section {
  background-color: #e7f1f1;
  padding-top: 102px;
}

@media (max-width: 767px) {
  .home-page .truck-list-section {
    padding-top: 20px;
  }
}

.home-page .truck-list-section .truck-type span:hover,
.home-page .truck-list-section .truck-type span.active {
  color: var(--neutral-green-2);
}

.home-page .truck-list-section .trucks {
  margin-bottom: 126px;
}

@media (max-width: 767px) {
  .home-page .truck-list-section .trucks {
    margin-bottom: 30px;
  }
}

.home-page .truck-list-section .trucks .truck-list-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 12px;
}

@media (max-width: 700px) {
  .home-page .truck-list-section .trucks .truck-list-heading {
    margin-bottom: 12px;
  }
}

.home-page .truck-list-section .trucks .truck-list-heading .truck-type {
  display: flex;
  flex-direction: row;
  gap: 12px;
}

@media (max-width: 600px) {
  .home-page .truck-list-section .trucks .truck-list-heading .truck-type {
    gap: 6px;
  }
}

.home-page .truck-list-section .trucks .truck-list-heading .truck-type span {
  padding: 10px 20px;
  cursor: pointer;
}

.home-page .truck-list-section .trucks .truck-list .truck-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--light-20, #d4d4d4);
  background-color: #fff;
}

.home-page .truck-list-section .trucks .truck-list .truck-card .truck-img {
  aspect-ratio: 1.6/1;
}

.home-page .truck-list-section .trucks .truck-list .truck-card .truck-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-page .truck-list-section .trucks .truck-list .truck-card .truck-content {
  padding: 16px 18px 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.home-page .truck-list-section .trucks .truck-list .truck-card .truck-content .content-heading {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.home-page .truck-list-section .trucks .truck-list .truck-card .truck-content .content-heading>p {
  max-height: 22px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.home-page .truck-list-section .trucks .truck-list .truck-card .truck-content .desc ul {
  list-style-type: disc;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.home-page .truck-list-section .emphasized-truck {
  padding-bottom: 40px;
}

@media (max-width: 600px) {
  .home-page .truck-list-section .emphasized-truck {
    padding-bottom: 30px;
  }
}

.home-page .truck-list-section .emphasized-truck .demo-truck-box {
  position: relative;
  padding-bottom: 80px;
}

@media (max-width: 600px) {
  .home-page .truck-list-section .emphasized-truck .demo-truck-box {
    padding-bottom: 47px;
  }
}

.home-page .truck-list-section .emphasized-truck .demo-truck-box .box-bg {
  position: absolute;
  z-index: 1;
  border-radius: 0px 0px 30px 30px;
  background: linear-gradient(191deg, rgba(1, 111, 115, 0) 26.35%, #041954 71.15%);
  height: 100%;
  width: 83%;
}

.home-page .truck-list-section .emphasized-truck .demo-truck-box .demo-img {
  position: relative;
  z-index: 2;
}

.home-page .truck-list-section .emphasized-truck .demo-truck-box .demo-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.home-page .truck-list-section .emphasized-truck .demo-truck-box .box-text {
  position: absolute;
  bottom: 32px;
  left: 40px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  gap: 8px;
}

@media (max-width: 600px) {
  .home-page .truck-list-section .emphasized-truck .demo-truck-box .box-text {
    font-size: 20px;
    bottom: 18px;
    left: 17px;
  }
}

.home-page .truck-list-section .emphasized-truck .demo-truck-box .box-text span:nth-child(2) {
  color: #f2f2f2;
}

.home-page .truck-list-section .emphasized-truck .text-content {
  display: flex;
  flex-direction: column;
  gap: 37px;
}

@media (max-width: 600px) {
  .home-page .truck-list-section .emphasized-truck .text-content {
    gap: 20px;
  }
}

.home-page .truck-list-section .emphasized-truck .text-content .advantage-item {
  display: flex;
  flex-direction: row;
  align-items: start;
  gap: 20px;
}

.home-page .truck-list-section .emphasized-truck .text-content .advantage-item .number {
  border-radius: 50%;
  height: 45px;
  width: 45px !important;
  font-size: 24px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--neutral-green-2);
  color: var(--neutral-green-2);
}

.home-page .truck-list-section .emphasized-truck .text-content .advantage-item p {
  flex: 1;
}

.home-page .truck-customize,
.home-page .section-services,
.home-page .section-testimonials,
.home-page .section-news {
  padding: 70px 0;
  padding-bottom: 140px;
}

.home-page .truck-customize {
  margin-top: 70px;
}

.home-page .truck-customize .truck-model-wrapper {
  width: 1200px;
  height: 600px;
  position: relative;
}

.home-page .truck-customize .feature-point--body {
  top: 100px;
  left: 200px;
}

.home-page .truck-customize .feature-point--engine {
  bottom: 170px;
  left: 660px;
}

.home-page .truck-customize .feature-point--head {
  bottom: 220px;
  left: 830px;
}

.home-page .truck-customize .feature-point {
  position: absolute;
  padding-bottom: 60px;
}

.home-page .truck-customize .feature-point button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 7px 12px 0px rgba(0, 0, 0, 0.25);
}

.home-page .truck-customize .feature-point path {
  stroke: var(--neutral-green-1);
}

.home-page .truck-customize .feature-point:hover button,
.home-page .truck-customize .feature-point.active button {
  background-color: var(--neutral-green-1);
}

.home-page .truck-customize .feature-point.active path,
.home-page .truck-customize .feature-point:hover path {
  stroke: white;
}

.home-page .truck-customize .link-list {
  position: absolute;
  left: -100px;
  top: 60px;
  width: max-content;
  padding: 1rem;
  flex-direction: column;
  border-radius: 12px;
  border: 1px solid var(--neutral-green-1, #007478);
  background: #FFF;
  box-shadow: 0px 16px 34px 0px rgba(0, 0, 0, 0.25);
  display: none;
}

.home-page .truck-customize .link-list a img {
  margin-right: 1rem;
  width: 110px;
  height: 60px;
  border-radius: 6px;
  border: 1px solid var(--neutral-green-1, #007478);
}

/*.home-page .truck-customize .feature-point:hover .link-list,*/
.home-page .truck-customize .feature-point.active .link-list {
  display: flex;
}

.home-page .truck-customize .heading,
.home-page .section-services .heading {
  max-width: 740px;
  margin: 0 auto;
}

.home-page .section-services .service-item {
  transition: box-shadow 0.2s ease-in-out;
}

.home-page .section-services .service-item:hover {
  box-shadow: 7px 14px 26px 0px rgba(0, 0, 0, 0.25);
}

.home-page .section-testimonials .swiper {
  padding: 15px;
  margin: 0 -15px;
}

.home-page .section-testimonials .testimonial-card {
  padding: 30px 20px;
  min-height: 260px;
  border-radius: 20px;
  box-shadow: 0px 4px 69px 0px rgba(0, 0, 0, 0.10);
}

.home-page .section-testimonials .author-avatar {
  width: 70px;
  height: 70px;
  margin-right: 20px;
}

.home-page .section-news .news-card .news-img img {
  aspect-ratio: 2/1;
}

.home-page .section-news .news-card .content-heading {
  min-height: 4.5em;
}

.home-page .section-news .desc {
  max-height: 160px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
}

@media screen and (max-width: 600px) {

  .home-page .truck-customize,
  .home-page .section-services,
  .home-page .section-testimonials,
  .home-page .section-news {
    padding: 15px 0;
  }

  .home-page .truck-customize {
    margin-top: 15px;
  }

  .home-page .truck-customize .section-content {
    padding: 30px 0;
  }

  .home-page .truck-customize .feature-point button {
    width: 30px;
    height: 30px;
  }

  .home-page .truck-customize .link-list a img {
    width: 50px;
    height: 30px;
  }

  .home-page .truck-customize .truck-model-wrapper {
    width: 400px;
    height: 180px;
    position: relative;
  }

  .home-page .truck-customize .link-list {
    top: 40px;
    left: -60px;
    z-index: 2;
  }

  .home-page .truck-customize .feature-point {
    padding-bottom: 10px;
  }

  .home-page .truck-customize .feature-point--body {
    top: 20px;
    left: 60px;
  }

  .home-page .truck-customize .feature-point--engine {
    top: 80px;
    left: 210px;
  }

  .home-page .truck-customize .feature-point--head {
    top: 70px;
    left: 260px;
  }

  .home-page .section-news .desc {
    max-height: 83px;
    -webkit-line-clamp: 4;
    line-clamp: 4;
  }

  .home-page .home-slider .swiper .swiper-slide {
    height: 230px;
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1)
  }

  50% {
    -webkit-transform: scale3d(1.15, 1.15, 1);
    transform: scale3d(1.15, 1.15, 1);
  }

  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1)
  }
}

.section-testimonial-contact {
  padding: 80px 0;
  background-color: #f8fafc;
}

.section-testimonial-contact .testimonial-side,
.section-testimonial-contact .contact-side {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.section-testimonial-contact .testimonial-card {
  padding: 30px;
  border-radius: 20px;
  background: #fff;
  transition: all 0.3s ease;
}

.section-testimonial-contact .testimonial-card:hover {
  transform: translateY(-5px);
}

.section-testimonial-contact .wpcf7-form {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.section-testimonial-contact .wpcf7-form-control-wrap {
  display: block;
  margin-bottom: 15px;
}

.section-testimonial-contact label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--neutral-green-1);
  margin-bottom: 6px;
}

.section-testimonial-contact input[type="text"],
.section-testimonial-contact input[type="email"],
.section-testimonial-contact input[type="tel"],
.section-testimonial-contact textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--neutral-green-3);
  border-radius: 10px;
  font-size: 15px;
  background-color: #fdfdfd;
  transition: all 0.2s ease;
}

.section-testimonial-contact input:focus,
.section-testimonial-contact textarea:focus {
  outline: none;
  border-color: var(--neutral-green-2);
  box-shadow: 0 0 0 3px rgba(4, 25, 84, 0.05);
}

.section-testimonial-contact .wpcf7-submit {
  background-color: var(--neutral-green-2);
  color: #fff;
  border: none;
  border-radius: 32px;
  padding: 10px 30px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  text-transform: uppercase;
}

.section-testimonial-contact .wpcf7-submit:hover {
  background-color: var(--neutral-green-1);
  box-shadow: 0 4px 12px rgba(4, 25, 84, 0.2);
}

@media (min-width: 992px) {
  .section-testimonial-contact .border-end-lg {
    border-right: 1px solid #e2e8f0;
  }
}

@media (max-width: 991px) {
  .section-testimonial-contact {
    padding: 50px 0;
  }

  .section-testimonial-contact .testimonial-side {
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e2e8f0;
  }
}