.about_factory {
  background: var(--bg-page);
  padding-bottom: 60px;
}
.about_factory .certificate-title h2 {
  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: normal;
  text-transform: capitalize;
  padding: 100px 0 60px 0;
}
.about_factory .list {
  position: relative;
  padding-bottom: 80px;
}
.about_factory .swiper-slide {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.about_factory .swiper-slide img {
  width: 100%;
  height: 100%;
  aspect-ratio: 337 / 244;
  object-fit: cover;
}
.about_factory .swiper-slide img:first-child {
  grid-column-start: span 2;
  grid-row-start: span 2;
}

.about_factory .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;
}

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

.about_factory .swiper-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: absolute;
  bottom: var(--banner-navigation-offset);
}

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

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

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

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

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

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

@media screen and (max-width: 768px) {
  .about_factory .certificate-title h2 {
    font-size: 20px;
    padding: 50px 0 30px 0;
  }
  .about_factory .swiper-slide {
    gap: 5px;
  }
  .about_factory {
    padding-bottom: 30px;
  }
}

@media screen and (max-width: 552px) {
  .about_factory .swiper-slide {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .about_factory {
    padding-bottom: 0px;
  }
  .about_factory .certificate-title h2 {
    font-size: 24px;
    font-weight: 700;
  }
}
