.BG-product {
  background-image: url("../images/product-BG2.png");
  background-size: contain;
}
.product {
  padding: 8rem 0;
}
.product .title,
.product-detail .title,
.manufacturing .title,
.innovation .title,
.news .title {
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 1rem;
  position: relative;
}
.product-customer .text-title {
  font-size: 34px;
  font-weight: 500;
}
.product-detail .title::after,
.manufacturing .title::after,
.innovation .title::after,
.news .title::after {
  content: "";
  height: 2px;
  width: 85px;
  background-color: #004496;
  position: absolute;
  bottom: -15px;
  right: 47%;
}

.product .right .title,
.product .right .detail {
  text-align: start;
}
.product .left .title::before {
  content: " ";
  height: 2px;
  width: 85px;
  background-color: #004496;
  position: absolute;
  top: -15px;
}
.product .right .title::before {
  content: " ";
  height: 2px;
  width: 85px;
  background-color: #004496;
  position: absolute;
  top: -15px;
  left: 0;
}
.product .left,
.product .right {
  position: relative;
  margin-top: 6rem;
}
.product .text-zone {
  height: 55%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
.product .text-zone.center {
  height: 100%;
  justify-content: center;
}
.product .text-zone.center .viewmore {
  margin-top: 2rem;
}
.product .right .text-zone {
  align-items: flex-end;
}
.product .detail,
.product-detail .detail,
.innovation .detail,
.news .detail {
  font-size: 18px;
  font-weight: 300;
  color: #969696;
}
.product-detail .detail {
  margin-top: 2.5rem;
}
.innovation .detail,
.news .detail {
  margin: 2.5rem 0;
}
.product .viewmore {
  font-size: 16px;
  color: #6a6a6a;
  border: 1px #6a6a6a solid;
  padding: 0.35rem 1.2rem;
  border-radius: 50px;
}
.product .viewmore:hover {
  background-color: #6a6a6a;
  color: white;
  border-color: white;
  transition: 0.3s ease-in-out;
}
.product .img-set {
  display: flex;
  position: absolute;
  bottom: 6%;
}
.product .right .img-set {
  right: 0;
  justify-content: flex-end;
}
.product .left .img-set {
  left: 0;
}
.product .img-set img {
  margin: 0 0.25rem;
  width: 240px;
}
.product-customer {
  padding: 0 0 4rem 0;
}

.product-customer .content {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.product-customer .content .box {
  width: 220px;
  height: 130px;
  border: 1px #f2f2f2 solid;
  display: grid;
  place-items: center;
  margin: 0.5rem;
  border-radius: 10px;
}
.product-customer .content .box img {
  width: 150px;
}
/* --------------------------- product detail --------------------------- */
.product-detail,
.manufacturing {
  padding: 10rem 0 4rem 0;
}

.product-detail .pad,
.innovation .pad,
.manufacturing .pad {
  margin-top: 4rem;
}
.product-detail .content,
.manufacturing .content {
  height: 100%;
  display: grid;
  place-content: center;
}
.product-detail .heading {
  font-size: 30px;
  font-weight: 500;
  position: relative;
  margin-bottom: 2rem;
}
.product-detail .heading::after {
  content: "";
  height: 2px;
  width: 85px;
  background-color: #004496;
  position: absolute;
  bottom: -10px;
  left: 0;
}
.product-detail .left .content,
.manufacturing .left .content {
  padding-left: 3rem;
}
.product-detail .right .content,
.manufacturing .right .content {
  padding-right: 3rem;
}

/* --------------------------- manufacturing--------------------------- */
.manufacturing .detail {
  font-size: 26px;
  font-weight: 500;
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}
.manufacturing .detail ul {
  padding: 0 5rem;
}
.manufacturing .content .heading {
  font-size: 40px;
  font-weight: 500;
}
.manufacturing .content .subheading {
  font-size: 30px;
  padding: 0.5rem 0;
}
@media (max-width: 991px) {
  .BG-product {
    background-size: cover;
  }
  .product {
    padding: 8rem 0 2rem 0;
    background-size: cover;
    background-position: top right;
  }
  .product .text-zone {
    height: auto;
    margin: 1.5rem 0;
  }
  .product .text-zone.center {
    height: auto;
  }
  .product .left,
  .product .right {
    margin-top: 0;
    margin-bottom: 2rem;
  }
  .product .title {
    font-size: 24px;
    margin: 0;
  }
  .product .detail {
    font-size: 16px;
  }
  .product .viewmore {
    font-size: 14px;
    margin-top: 0.5rem;
  }
  .product .img-set,
  .product .right .img-set {
    position: relative;
    justify-content: space-between;
    margin: 0.75rem 0;
  }
  .product .img-set img {
    width: 32%;
    margin: 0;
  }
  .product .right .title,
  .product .right .detail {
    text-align: start;
  }
  .product .right .title::before {
    left: 0;
    right: unset;
  }
  .product .right .text-zone {
    align-items: flex-start;
  }

  .product-customer {
    padding: 2rem 0;
  }
  .product-customer .content .box {
    width: 150px;
    height: 80px;
  }
  .product-customer .content .box img {
    width: 95px;
  }
  .product-detail,
  .manufacturing {
    padding: 6rem 0 2rem 0;
  }
  .product .title,
  .product-detail .title,
  .manufacturing .title,
  .innovation .title,
  .news .title {
    font-size: 24px;
  }
  .product-detail .title::after,
  .manufacturing .title::after,
  .innovation .title::after,
  .news .title::after {
    right: 40%;
  }
  .product-detail .heading {
    font-size: 20px;
    margin: 1rem 0;
  }
  .product-detail .detail,
  .innovation .detail,
  .news .detail {
    margin-top: 2rem;
  }
  .product .detail,
  .product-detail .detail,
  .innovation .detail,
  .news .detail {
    font-size: 16px;
  }
  .product-detail .pad,
  .innovation .pad,
  .manufacturing .pad {
    margin-top: 3rem;
  }
  .product-detail .left .content,
  .manufacturing .left .content,
  .product-detail .right .content,
  .manufacturing .right .content {
    padding: 0;
    font-size: 14px;
  }
  .manufacturing .detail {
    font-size: 16px;
    flex-direction: column;
  }
  .manufacturing .detail ul {
    margin: 0;
  }
  .manufacturing .content .heading {
    font-size: 28px;
  }
  .manufacturing .content .subheading {
    font-size: 16px;
    padding: 0;
  }
  /* --------------------------- product detail --------------------------- */
}
