.homeBanner{
     position: relative;
  width: 100%;
  height: 100vh;
}

.heroBanner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: translateZ(0);
  will-change: transform;
}
.card {
  margin-bottom: 6rem;
}
.card img {
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 2rem;
  margin-bottom: 2rem;
}

.rightVE {
  position: absolute;
  right: -300px;
  top: 20%;
  width: 500px;
  z-index: -1;
}
.serviceList {
  border-top: 1px solid rgba(240, 74, 12, 0.4);
  margin-block: 8rem;
}
.serviceList .serviceListItem {
  border-bottom: 1px solid rgba(240, 74, 12, 0.4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3rem 2rem;
  margin-bottom: 0;
  color: var(--gray);
  font-weight: 400;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}

.serviceList .serviceListItem:hover {
  background-color: var(--primary);
  color: var(--white);
  padding: 3rem 5rem;
}

.serviceList .serviceListItem > div {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.serviceList .serviceListItem > div p {
  margin-bottom: 0;
  font-size: 2rem;
}

.serviceLeftImg {
  transform: scale(1.6) translateY(60%);
  transform-origin: right bottom;
  width: 100%;
}

.scroll-container {
  overflow: hidden;
  white-space: nowrap;
  padding: 3rem 0;
}
.scroll-content,
.scroll-content-reverse {
  display: flex;
  width: max-content;
}

.scroll-inner {
  display: flex;
}

.scroll-content {
  animation: scroll 30s linear infinite;
}

.scroll-content-reverse {
  animation: scrollReverse 30s linear infinite;
}

.scroll-container img {
  height: 10rem;
  width: auto;
  aspect-ratio: 2/1;
  margin: 0 6rem;
  object-fit: contain;
}

.expertLeftImg {
  position: absolute;
  left: -200px;
  top: -100px;
  width: 500px;
  z-index: 2;
}

.expertRightImg {
  position: absolute;
  right: -270px;
  bottom: 0;
  width: 500px;
  z-index: -1;
}

.swiper-button-custom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
  margin-top: 2rem;
  width: 80%;
  align-self: center;
  margin: 0 auto;
  margin-top: 4rem;
}

.swiper-button-custom .custom-prev,
.swiper-button-custom .custom-next {
  cursor: pointer;
}

.swiper-button-custom .customDivide {
  width: 100%;
  height: 2px;
  background-color: var(--primary);
}

.blogImg {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
  border-radius: 2rem;
  margin-bottom: 2rem;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes scrollReverse {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

@media screen and (max-width: 768px) {
  .serviceLeftImg {
    transform: scale(1.3) translateY(0%);
    transform-origin: center bottom;
  }

  .expertLeftImg,
  .expertRightImg,
  .rightVE {
    transform: scale(0.3);
  }
  .expertLeftImg {
    top: -160px;
    left: -240px;
  }
}
