.keshiou-feature-product-section {
  padding-top: 50px;
}

.keshiou-feature-product-title {
  color: var(--text-color);
  text-align: center;
  font-family: var(--font-family);
  font-size: var(--font-title-size);
  font-style: var(--font-style);
  font-weight: var(--font-title-weight);
  line-height: var(--line-height); /* 150% */
  text-transform: capitalize;
  padding-bottom: 100px;
}

.keshiou-feature-product-swiper.swiper {
  padding-bottom: 80px;
  position: relative;
}

.keshiou-feature-product-swiper .swiper-slide {
  /* height: 890px; */
  height:730px;
  display: flex;
  flex-direction: column-reverse;
}

.feature-item-box {
  /* height: 750px; */
  border-radius: var(--border-radius);
  background: #232323;
  padding: 0 50px;
  padding-bottom: 20px;
  position: relative;
  transition: all 0.3s ease;
}
.feature-item-box:hover {
  background-color: var(--second-color) !important;
}
.feature-item-box:hover .feature-item-content_title {
  color: #232323 !important;
}
.feature-item-box:hover .feature-item-highlight_title {
  color: var(--text-color) !important;
}
.feature-item-box:hover .feature-item-button {
  background-color: var(--text-color);
  color: var(--second-color) !important;
}

.feature-item-img {
  width: 280px;
  height: 280px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin-top: -40%;
}

.feature-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-item-content {
  margin-top: 46px;
  /* display: -webkit-box; 
  -webkit-box-orient: vertical; 
  -webkit-line-clamp: 8; 
  text-overflow: ellipsis; */
  overflow: scroll;
  word-break: break-all;
  line-height: var(--line-height);
  font-family: var(--font-family);
  font-size: var(--font-label-size);
  font-style: var(--font-style);
  font-weight: var(--font-title-weight);
  max-height: 180px;
}

.feature-item-content_title {
  color: var(--second-color);
  font-family: var(--font-family);
  font-size: var(--font-content-size);
  font-style: var(--font-style);
  font-weight: var(--font-title-weight);
  text-transform: capitalize;
}
.feature-item-content_desc {
  color: var(--text-color);
}

.feature-item-highlight {
  margin-top: 26px;
  min-height: 125px;
}

.feature-item-highlight_title {
  color: var(--second-color);
  font-family: var(--font-family);
  font-size: var(--font-content-size);
  font-style: var(--font-style);
  font-weight: var(--font-sub-title-weight);
  line-height: var(--line-height); /* 150% */
  text-transform: capitalize;
  margin-bottom: 8px;
}

.feature-item-highlight_desc {
  color: var(--text-color);
  font-family: var(--font-family);
  font-size: 14px;
  font-style: var(--font-style);
  line-height: var(--line-height); /* 150% */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  text-overflow: ellipsis;
}

.feature-item-highlight_desc ul {
  padding-inline-start: 2em;
  list-style: disc;
  list-style-type: disc;
}

.feature-item-highlight_desc ul li {
  list-style: inherit !important;
}

.feature-item-highlight_desc p {
  color: var(--text-color);
  font-family: var(--font-family);
  font-size: 14px;
  font-style: var(--font-style);
  line-height: var(--line-height); /* 150% */
}

.feature-item-button {
  margin-top: 80px;
  display: flex;
  width: 100%;
  height: 68.756px;
  padding: 10px;
  justify-content: center;
  align-items: center;
  border-radius: var(--border-radius);
  background: var(--second-color);
  font-family: var(--font-family);
  font-size: var(--font-label-size);
  font-style: var(--font-style);
  font-weight: var(--font-sub-title-weight);
  line-height: var(--line-height); /* 150% */
  text-transform: capitalize;
}

.keshiou-feature-product-swiper .swiper-pagination-bullet {
  --bullet-size: 10px;
  width: var(--bullet-size);
  height: var(--bullet-size);
  background: rgba(255, 255, 255, 1);
  opacity: 1 !important;
  margin: 0 15px !important;
}

@media screen and (max-width: 768px) {
  .keshiou-feature-product-swiper .swiper-pagination-bullet {
    --bullet-size: 8px;
    margin: 0 5px !important;
  }
}

.swiper-pagination-bullet-active {
  transform: scale(1.6);
  background-color: var(--primary-color) !important;
}

.swiper-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: absolute;
  bottom: -10px;
}

.swiper-pagination {
  position: relative;
  width: auto !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  display: none; /* Hide default arrows */
}

.swiper-button-prev,
.swiper-button-next {
  position: relative;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 10px solid rgba(217, 217, 217, 1); /* Triangle color */
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  border-bottom-color: var(--primary-color); /* Change color on hover */
}

.swiper-button-prev {
  margin-right: 50px;
  transform: rotate(-90deg) translateY(-50%);
}

.swiper-button-next {
  margin-left: 50px;
  transform: rotate(90deg) translateY(-50%);
}

@media screen and (max-width: 552px) {
  .keshiou-feature-product-swiper .swiper-slide {
    height: auto;
    overflow: hidden;
  }

  .keshiou-feature-product-section {
    padding-top: 0px;
  }

  .keshiou-feature-product-title {
    padding-bottom: 0px;
    margin: var(--title-padding-y) 0px;
  }
  .feature-item-box {
    height: auto;
  }
  .feature-item-content,
  .feature-item-highlight {
    min-height: 0px;
    margin: 0px;
    padding: 15px;
  }

  .feature-item-img {
    transform: none;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    position: relative;
    left: 0px;
    top: 0px;
    margin: 0px;
  }

  .feature-item-box {
    padding: 0px;
  }
  .feature-item-img img {
    object-fit: contain;
    background-color: #fff;
  }

  .feature-item-box {
    background-color: #e3ecfa;
  }

  .feature-item-content_title {
    display: block;
    margin-bottom: 4px;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .feature-item-content_desc {
    color: #2f2f2f;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .feature-item-box:hover {
    background-color: #e3ecfa !important;
  }
  .feature-item-box:hover .feature-item-content_title {
    color: var(--second-color) !important;
  }
  .feature-item-box:hover .feature-item-highlight_title {
    color: var(--second-color) !important;
  }
  .feature-item-box .feature-item-button {
    background-color: var(--third-color);
    text-transform: uppercase;
    font-size: 16px;
  }
  .feature-item-box:hover .feature-item-button {
    background-color: var(--third-color) !important;
    color: #fff !important;
  }

  .keshiou-feature-product-swiper .swiper-slide {
    flex-direction: column;
  }

  .feature-item-button {
    margin-top: 0px;
  }


.feature-item-highlight_desc p {
    color: #000;
 
}
  .feature-item-highlight_desc ul {
    color: #000;
  }
}
